code
stringlengths 0
56.1M
| repo_name
stringlengths 3
57
| path
stringlengths 2
176
| language
stringclasses 672
values | license
stringclasses 8
values | size
int64 0
56.8M
|
|---|---|---|---|---|---|
# imgui_freetype
Build font atlases using FreeType instead of stb_truetype (which is the default font rasterizer).
<br>by @vuhdo, @mikesart, @ocornut.
### Usage
1. Get latest FreeType binaries or build yourself (under Windows you may use vcpkg with `vcpkg install freetype --triplet=x64-windows`, `vcpkg integrate install`).
2. Add imgui_freetype.h/cpp alongside your project files.
3. Add `#define IMGUI_ENABLE_FREETYPE` in your [imconfig.h](https://github.com/ocornut/imgui/blob/master/imconfig.h) file
### About Gamma Correct Blending
FreeType assumes blending in linear space rather than gamma space.
See FreeType note for [FT_Render_Glyph](https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Render_Glyph).
For correct results you need to be using sRGB and convert to linear space in the pixel shader output.
The default Dear ImGui styles will be impacted by this change (alpha values will need tweaking).
### Testbed for toying with settings (for developers)
See https://gist.github.com/ocornut/b3a9ecf13502fd818799a452969649ad
### Known issues
- Oversampling settins are ignored but also not so much necessary with the higher quality rendering.
### Comparaison
Small, thin anti-aliased fonts typically benefit a lot from FreeType's hinting:

### Colorful glyphs/emojis
You can use the `ImGuiFreeTypeBuilderFlags_LoadColor` flag to load certain colorful glyphs. See the
["Using Colorful Glyphs/Emojis"](https://github.com/ocornut/imgui/blob/master/docs/FONTS.md#using-colorful-glyphsemojis) section of FONTS.md.

|
whupdup/frame
|
real/third_party/tracy/imgui/misc/freetype/README.md
|
Markdown
|
gpl-3.0
| 1,808
|
// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder)
// (code)
// Get the latest version at https://github.com/ocornut/imgui/tree/master/misc/freetype
// Original code by @vuhdo (Aleksei Skriabin). Improvements by @mikesart. Maintained since 2019 by @ocornut.
// CHANGELOG
// (minor and older changes stripped away, please see git history for details)
// 2021/08/23: fixed crash when FT_Render_Glyph() fails to render a glyph and returns NULL.
// 2021/03/05: added ImGuiFreeTypeBuilderFlags_Bitmap to load bitmap glyphs.
// 2021/03/02: set 'atlas->TexPixelsUseColors = true' to help some backends with deciding of a prefered texture format.
// 2021/01/28: added support for color-layered glyphs via ImGuiFreeTypeBuilderFlags_LoadColor (require Freetype 2.10+).
// 2021/01/26: simplified integration by using '#define IMGUI_ENABLE_FREETYPE'.
// renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. removed ImGuiFreeType::BuildFontAtlas().
// 2020/06/04: fix for rare case where FT_Get_Char_Index() succeed but FT_Load_Glyph() fails.
// 2019/02/09: added RasterizerFlags::Monochrome flag to disable font anti-aliasing (combine with ::MonoHinting for best results!)
// 2019/01/15: added support for imgui allocators + added FreeType only override function SetAllocatorFunctions().
// 2019/01/10: re-factored to match big update in STB builder. fixed texture height waste. fixed redundant glyphs when merging. support for glyph padding.
// 2018/06/08: added support for ImFontConfig::GlyphMinAdvanceX, GlyphMaxAdvanceX.
// 2018/02/04: moved to main imgui repository (away from http://www.github.com/ocornut/imgui_club)
// 2018/01/22: fix for addition of ImFontAtlas::TexUvscale member.
// 2017/10/22: minor inconsequential change to match change in master (removed an unnecessary statement).
// 2017/09/26: fixes for imgui internal changes.
// 2017/08/26: cleanup, optimizations, support for ImFontConfig::RasterizerFlags, ImFontConfig::RasterizerMultiply.
// 2017/08/16: imported from https://github.com/Vuhdo/imgui_freetype into http://www.github.com/ocornut/imgui_club, updated for latest changes in ImFontAtlas, minor tweaks.
// About Gamma Correct Blending:
// - FreeType assumes blending in linear space rather than gamma space.
// - See https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Render_Glyph
// - For correct results you need to be using sRGB and convert to linear space in the pixel shader output.
// - The default dear imgui styles will be impacted by this change (alpha values will need tweaking).
// FIXME: cfg.OversampleH, OversampleV are not supported (but perhaps not so necessary with this rasterizer).
#include "imgui_freetype.h"
#include "imgui_internal.h" // ImMin,ImMax,ImFontAtlasBuild*,
#include <stdint.h>
#include <ft2build.h>
#include FT_FREETYPE_H // <freetype/freetype.h>
#include FT_MODULE_H // <freetype/ftmodapi.h>
#include FT_GLYPH_H // <freetype/ftglyph.h>
#include FT_SYNTHESIS_H // <freetype/ftsynth.h>
#ifdef _MSC_VER
#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
#endif
#if defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind
#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
#endif
//-------------------------------------------------------------------------
// Data
//-------------------------------------------------------------------------
// Default memory allocators
static void* ImGuiFreeTypeDefaultAllocFunc(size_t size, void* user_data) { IM_UNUSED(user_data); return IM_ALLOC(size); }
static void ImGuiFreeTypeDefaultFreeFunc(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_FREE(ptr); }
// Current memory allocators
static void* (*GImGuiFreeTypeAllocFunc)(size_t size, void* user_data) = ImGuiFreeTypeDefaultAllocFunc;
static void (*GImGuiFreeTypeFreeFunc)(void* ptr, void* user_data) = ImGuiFreeTypeDefaultFreeFunc;
static void* GImGuiFreeTypeAllocatorUserData = NULL;
//-------------------------------------------------------------------------
// Code
//-------------------------------------------------------------------------
namespace
{
// Glyph metrics:
// --------------
//
// xmin xmax
// | |
// |<-------- width -------->|
// | |
// | +-------------------------+----------------- ymax
// | | ggggggggg ggggg | ^ ^
// | | g:::::::::ggg::::g | | |
// | | g:::::::::::::::::g | | |
// | | g::::::ggggg::::::gg | | |
// | | g:::::g g:::::g | | |
// offsetX -|-------->| g:::::g g:::::g | offsetY |
// | | g:::::g g:::::g | | |
// | | g::::::g g:::::g | | |
// | | g:::::::ggggg:::::g | | |
// | | g::::::::::::::::g | | height
// | | gg::::::::::::::g | | |
// baseline ---*---------|---- gggggggg::::::g-----*-------- |
// / | | g:::::g | |
// origin | | gggggg g:::::g | |
// | | g:::::gg gg:::::g | |
// | | g::::::ggg:::::::g | |
// | | gg:::::::::::::g | |
// | | ggg::::::ggg | |
// | | gggggg | v
// | +-------------------------+----------------- ymin
// | |
// |------------- advanceX ----------->|
// A structure that describe a glyph.
struct GlyphInfo
{
int Width; // Glyph's width in pixels.
int Height; // Glyph's height in pixels.
FT_Int OffsetX; // The distance from the origin ("pen position") to the left of the glyph.
FT_Int OffsetY; // The distance from the origin to the top of the glyph. This is usually a value < 0.
float AdvanceX; // The distance from the origin to the origin of the next glyph. This is usually a value > 0.
bool IsColored; // The glyph is colored
};
// Font parameters and metrics.
struct FontInfo
{
uint32_t PixelHeight; // Size this font was generated with.
float Ascender; // The pixel extents above the baseline in pixels (typically positive).
float Descender; // The extents below the baseline in pixels (typically negative).
float LineSpacing; // The baseline-to-baseline distance. Note that it usually is larger than the sum of the ascender and descender taken as absolute values. There is also no guarantee that no glyphs extend above or below subsequent baselines when using this distance. Think of it as a value the designer of the font finds appropriate.
float LineGap; // The spacing in pixels between one row's descent and the next row's ascent.
float MaxAdvanceWidth; // This field gives the maximum horizontal cursor advance for all glyphs in the font.
};
// FreeType glyph rasterizer.
// NB: No ctor/dtor, explicitly call Init()/Shutdown()
struct FreeTypeFont
{
bool InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_user_flags); // Initialize from an external data buffer. Doesn't copy data, and you must ensure it stays valid up to this object lifetime.
void CloseFont();
void SetPixelHeight(int pixel_height); // Change font pixel size. All following calls to RasterizeGlyph() will use this size
const FT_Glyph_Metrics* LoadGlyph(uint32_t in_codepoint);
const FT_Bitmap* RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info);
void BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table = NULL);
~FreeTypeFont() { CloseFont(); }
// [Internals]
FontInfo Info; // Font descriptor of the current font.
FT_Face Face;
unsigned int UserFlags; // = ImFontConfig::RasterizerFlags
FT_Int32 LoadFlags;
FT_Render_Mode RenderMode;
};
// From SDL_ttf: Handy routines for converting from fixed point
#define FT_CEIL(X) (((X + 63) & -64) / 64)
bool FreeTypeFont::InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_font_builder_flags)
{
FT_Error error = FT_New_Memory_Face(ft_library, (uint8_t*)cfg.FontData, (uint32_t)cfg.FontDataSize, (uint32_t)cfg.FontNo, &Face);
if (error != 0)
return false;
error = FT_Select_Charmap(Face, FT_ENCODING_UNICODE);
if (error != 0)
return false;
// Convert to FreeType flags (NB: Bold and Oblique are processed separately)
UserFlags = cfg.FontBuilderFlags | extra_font_builder_flags;
LoadFlags = 0;
if ((UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) == 0)
LoadFlags |= FT_LOAD_NO_BITMAP;
if (UserFlags & ImGuiFreeTypeBuilderFlags_NoHinting)
LoadFlags |= FT_LOAD_NO_HINTING;
if (UserFlags & ImGuiFreeTypeBuilderFlags_NoAutoHint)
LoadFlags |= FT_LOAD_NO_AUTOHINT;
if (UserFlags & ImGuiFreeTypeBuilderFlags_ForceAutoHint)
LoadFlags |= FT_LOAD_FORCE_AUTOHINT;
if (UserFlags & ImGuiFreeTypeBuilderFlags_LightHinting)
LoadFlags |= FT_LOAD_TARGET_LIGHT;
else if (UserFlags & ImGuiFreeTypeBuilderFlags_MonoHinting)
LoadFlags |= FT_LOAD_TARGET_MONO;
else
LoadFlags |= FT_LOAD_TARGET_NORMAL;
if (UserFlags & ImGuiFreeTypeBuilderFlags_Monochrome)
RenderMode = FT_RENDER_MODE_MONO;
else
RenderMode = FT_RENDER_MODE_NORMAL;
if (UserFlags & ImGuiFreeTypeBuilderFlags_LoadColor)
LoadFlags |= FT_LOAD_COLOR;
memset(&Info, 0, sizeof(Info));
SetPixelHeight((uint32_t)cfg.SizePixels);
return true;
}
void FreeTypeFont::CloseFont()
{
if (Face)
{
FT_Done_Face(Face);
Face = NULL;
}
}
void FreeTypeFont::SetPixelHeight(int pixel_height)
{
// Vuhdo: I'm not sure how to deal with font sizes properly. As far as I understand, currently ImGui assumes that the 'pixel_height'
// is a maximum height of an any given glyph, i.e. it's the sum of font's ascender and descender. Seems strange to me.
// NB: FT_Set_Pixel_Sizes() doesn't seem to get us the same result.
FT_Size_RequestRec req;
req.type = (UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) ? FT_SIZE_REQUEST_TYPE_NOMINAL : FT_SIZE_REQUEST_TYPE_REAL_DIM;
req.width = 0;
req.height = (uint32_t)pixel_height * 64;
req.horiResolution = 0;
req.vertResolution = 0;
FT_Request_Size(Face, &req);
// Update font info
FT_Size_Metrics metrics = Face->size->metrics;
Info.PixelHeight = (uint32_t)pixel_height;
Info.Ascender = (float)FT_CEIL(metrics.ascender);
Info.Descender = (float)FT_CEIL(metrics.descender);
Info.LineSpacing = (float)FT_CEIL(metrics.height);
Info.LineGap = (float)FT_CEIL(metrics.height - metrics.ascender + metrics.descender);
Info.MaxAdvanceWidth = (float)FT_CEIL(metrics.max_advance);
}
const FT_Glyph_Metrics* FreeTypeFont::LoadGlyph(uint32_t codepoint)
{
uint32_t glyph_index = FT_Get_Char_Index(Face, codepoint);
if (glyph_index == 0)
return NULL;
// If this crash for you: FreeType 2.11.0 has a crash bug on some bitmap/colored fonts.
// - https://gitlab.freedesktop.org/freetype/freetype/-/issues/1076
// - https://github.com/ocornut/imgui/issues/4567
// - https://github.com/ocornut/imgui/issues/4566
// You can use FreeType 2.10, or the patched version of 2.11.0 in VcPkg, or probably any upcoming FreeType version.
FT_Error error = FT_Load_Glyph(Face, glyph_index, LoadFlags);
if (error)
return NULL;
// Need an outline for this to work
FT_GlyphSlot slot = Face->glyph;
IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP);
// Apply convenience transform (this is not picking from real "Bold"/"Italic" fonts! Merely applying FreeType helper transform. Oblique == Slanting)
if (UserFlags & ImGuiFreeTypeBuilderFlags_Bold)
FT_GlyphSlot_Embolden(slot);
if (UserFlags & ImGuiFreeTypeBuilderFlags_Oblique)
{
FT_GlyphSlot_Oblique(slot);
//FT_BBox bbox;
//FT_Outline_Get_BBox(&slot->outline, &bbox);
//slot->metrics.width = bbox.xMax - bbox.xMin;
//slot->metrics.height = bbox.yMax - bbox.yMin;
}
return &slot->metrics;
}
const FT_Bitmap* FreeTypeFont::RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info)
{
FT_GlyphSlot slot = Face->glyph;
FT_Error error = FT_Render_Glyph(slot, RenderMode);
if (error != 0)
return NULL;
FT_Bitmap* ft_bitmap = &Face->glyph->bitmap;
out_glyph_info->Width = (int)ft_bitmap->width;
out_glyph_info->Height = (int)ft_bitmap->rows;
out_glyph_info->OffsetX = Face->glyph->bitmap_left;
out_glyph_info->OffsetY = -Face->glyph->bitmap_top;
out_glyph_info->AdvanceX = (float)FT_CEIL(slot->advance.x);
out_glyph_info->IsColored = (ft_bitmap->pixel_mode == FT_PIXEL_MODE_BGRA);
return ft_bitmap;
}
void FreeTypeFont::BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table)
{
IM_ASSERT(ft_bitmap != NULL);
const uint32_t w = ft_bitmap->width;
const uint32_t h = ft_bitmap->rows;
const uint8_t* src = ft_bitmap->buffer;
const uint32_t src_pitch = ft_bitmap->pitch;
switch (ft_bitmap->pixel_mode)
{
case FT_PIXEL_MODE_GRAY: // Grayscale image, 1 byte per pixel.
{
if (multiply_table == NULL)
{
for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
for (uint32_t x = 0; x < w; x++)
dst[x] = IM_COL32(255, 255, 255, src[x]);
}
else
{
for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
for (uint32_t x = 0; x < w; x++)
dst[x] = IM_COL32(255, 255, 255, multiply_table[src[x]]);
}
break;
}
case FT_PIXEL_MODE_MONO: // Monochrome image, 1 bit per pixel. The bits in each byte are ordered from MSB to LSB.
{
uint8_t color0 = multiply_table ? multiply_table[0] : 0;
uint8_t color1 = multiply_table ? multiply_table[255] : 255;
for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
{
uint8_t bits = 0;
const uint8_t* bits_ptr = src;
for (uint32_t x = 0; x < w; x++, bits <<= 1)
{
if ((x & 7) == 0)
bits = *bits_ptr++;
dst[x] = IM_COL32(255, 255, 255, (bits & 0x80) ? color1 : color0);
}
}
break;
}
case FT_PIXEL_MODE_BGRA:
{
// FIXME: Converting pre-multiplied alpha to straight. Doesn't smell good.
#define DE_MULTIPLY(color, alpha) (ImU32)(255.0f * (float)color / (float)alpha + 0.5f)
if (multiply_table == NULL)
{
for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
for (uint32_t x = 0; x < w; x++)
{
uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3];
dst[x] = IM_COL32(DE_MULTIPLY(r, a), DE_MULTIPLY(g, a), DE_MULTIPLY(b, a), a);
}
}
else
{
for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
{
for (uint32_t x = 0; x < w; x++)
{
uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3];
dst[x] = IM_COL32(multiply_table[DE_MULTIPLY(r, a)], multiply_table[DE_MULTIPLY(g, a)], multiply_table[DE_MULTIPLY(b, a)], multiply_table[a]);
}
}
}
#undef DE_MULTIPLY
break;
}
default:
IM_ASSERT(0 && "FreeTypeFont::BlitGlyph(): Unknown bitmap pixel mode!");
}
}
}
#ifndef STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds)
#ifndef IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION
#define STBRP_ASSERT(x) do { IM_ASSERT(x); } while (0)
#define STBRP_STATIC
#define STB_RECT_PACK_IMPLEMENTATION
#endif
#ifdef IMGUI_STB_RECT_PACK_FILENAME
#include IMGUI_STB_RECT_PACK_FILENAME
#else
#include "imstb_rectpack.h"
#endif
#endif
struct ImFontBuildSrcGlyphFT
{
GlyphInfo Info;
uint32_t Codepoint;
unsigned int* BitmapData; // Point within one of the dst_tmp_bitmap_buffers[] array
ImFontBuildSrcGlyphFT() { memset((void*)this, 0, sizeof(*this)); }
};
struct ImFontBuildSrcDataFT
{
FreeTypeFont Font;
stbrp_rect* Rects; // Rectangle to pack. We first fill in their size and the packer will give us their position.
const ImWchar* SrcRanges; // Ranges as requested by user (user is allowed to request too much, e.g. 0x0020..0xFFFF)
int DstIndex; // Index into atlas->Fonts[] and dst_tmp_array[]
int GlyphsHighest; // Highest requested codepoint
int GlyphsCount; // Glyph count (excluding missing glyphs and glyphs already set by an earlier source font)
ImBitVector GlyphsSet; // Glyph bit map (random access, 1-bit per codepoint. This will be a maximum of 8KB)
ImVector<ImFontBuildSrcGlyphFT> GlyphsList;
};
// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont)
struct ImFontBuildDstDataFT
{
int SrcCount; // Number of source fonts targeting this destination font.
int GlyphsHighest;
int GlyphsCount;
ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font.
};
bool ImFontAtlasBuildWithFreeTypeEx(FT_Library ft_library, ImFontAtlas* atlas, unsigned int extra_flags)
{
IM_ASSERT(atlas->ConfigData.Size > 0);
ImFontAtlasBuildInit(atlas);
// Clear atlas
atlas->TexID = (ImTextureID)NULL;
atlas->TexWidth = atlas->TexHeight = 0;
atlas->TexUvScale = ImVec2(0.0f, 0.0f);
atlas->TexUvWhitePixel = ImVec2(0.0f, 0.0f);
atlas->ClearTexData();
// Temporary storage for building
bool src_load_color = false;
ImVector<ImFontBuildSrcDataFT> src_tmp_array;
ImVector<ImFontBuildDstDataFT> dst_tmp_array;
src_tmp_array.resize(atlas->ConfigData.Size);
dst_tmp_array.resize(atlas->Fonts.Size);
memset((void*)src_tmp_array.Data, 0, (size_t)src_tmp_array.size_in_bytes());
memset((void*)dst_tmp_array.Data, 0, (size_t)dst_tmp_array.size_in_bytes());
// 1. Initialize font loading structure, check font data validity
for (int src_i = 0; src_i < atlas->ConfigData.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
ImFontConfig& cfg = atlas->ConfigData[src_i];
FreeTypeFont& font_face = src_tmp.Font;
IM_ASSERT(cfg.DstFont && (!cfg.DstFont->IsLoaded() || cfg.DstFont->ContainerAtlas == atlas));
// Find index from cfg.DstFont (we allow the user to set cfg.DstFont. Also it makes casual debugging nicer than when storing indices)
src_tmp.DstIndex = -1;
for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++)
if (cfg.DstFont == atlas->Fonts[output_i])
src_tmp.DstIndex = output_i;
IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array?
if (src_tmp.DstIndex == -1)
return false;
// Load font
if (!font_face.InitFont(ft_library, cfg, extra_flags))
return false;
// Measure highest codepoints
src_load_color |= (cfg.FontBuilderFlags & ImGuiFreeTypeBuilderFlags_LoadColor) != 0;
ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex];
src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault();
for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2)
src_tmp.GlyphsHighest = ImMax(src_tmp.GlyphsHighest, (int)src_range[1]);
dst_tmp.SrcCount++;
dst_tmp.GlyphsHighest = ImMax(dst_tmp.GlyphsHighest, src_tmp.GlyphsHighest);
}
// 2. For every requested codepoint, check for their presence in the font data, and handle redundancy or overlaps between source fonts to avoid unused glyphs.
int total_glyphs_count = 0;
for (int src_i = 0; src_i < src_tmp_array.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex];
src_tmp.GlyphsSet.Create(src_tmp.GlyphsHighest + 1);
if (dst_tmp.GlyphsSet.Storage.empty())
dst_tmp.GlyphsSet.Create(dst_tmp.GlyphsHighest + 1);
for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2)
for (int codepoint = src_range[0]; codepoint <= (int)src_range[1]; codepoint++)
{
if (dst_tmp.GlyphsSet.TestBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite)
continue;
uint32_t glyph_index = FT_Get_Char_Index(src_tmp.Font.Face, codepoint); // It is actually in the font? (FIXME-OPT: We are not storing the glyph_index..)
if (glyph_index == 0)
continue;
// Add to avail set/counters
src_tmp.GlyphsCount++;
dst_tmp.GlyphsCount++;
src_tmp.GlyphsSet.SetBit(codepoint);
dst_tmp.GlyphsSet.SetBit(codepoint);
total_glyphs_count++;
}
}
// 3. Unpack our bit map into a flat list (we now have all the Unicode points that we know are requested _and_ available _and_ not overlapping another)
for (int src_i = 0; src_i < src_tmp_array.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount);
IM_ASSERT(sizeof(src_tmp.GlyphsSet.Storage.Data[0]) == sizeof(ImU32));
const ImU32* it_begin = src_tmp.GlyphsSet.Storage.begin();
const ImU32* it_end = src_tmp.GlyphsSet.Storage.end();
for (const ImU32* it = it_begin; it < it_end; it++)
if (ImU32 entries_32 = *it)
for (ImU32 bit_n = 0; bit_n < 32; bit_n++)
if (entries_32 & ((ImU32)1 << bit_n))
{
ImFontBuildSrcGlyphFT src_glyph;
src_glyph.Codepoint = (ImWchar)(((it - it_begin) << 5) + bit_n);
//src_glyph.GlyphIndex = 0; // FIXME-OPT: We had this info in the previous step and lost it..
src_tmp.GlyphsList.push_back(src_glyph);
}
src_tmp.GlyphsSet.Clear();
IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount);
}
for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++)
dst_tmp_array[dst_i].GlyphsSet.Clear();
dst_tmp_array.clear();
// Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0)
// (We technically don't need to zero-clear buf_rects, but let's do it for the sake of sanity)
ImVector<stbrp_rect> buf_rects;
buf_rects.resize(total_glyphs_count);
memset(buf_rects.Data, 0, (size_t)buf_rects.size_in_bytes());
// Allocate temporary rasterization data buffers.
// We could not find a way to retrieve accurate glyph size without rendering them.
// (e.g. slot->metrics->width not always matching bitmap->width, especially considering the Oblique transform)
// We allocate in chunks of 256 KB to not waste too much extra memory ahead. Hopefully users of FreeType won't find the temporary allocations.
const int BITMAP_BUFFERS_CHUNK_SIZE = 256 * 1024;
int buf_bitmap_current_used_bytes = 0;
ImVector<unsigned char*> buf_bitmap_buffers;
buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE));
// 4. Gather glyphs sizes so we can pack them in our virtual canvas.
// 8. Render/rasterize font characters into the texture
int total_surface = 0;
int buf_rects_out_n = 0;
for (int src_i = 0; src_i < src_tmp_array.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
ImFontConfig& cfg = atlas->ConfigData[src_i];
if (src_tmp.GlyphsCount == 0)
continue;
src_tmp.Rects = &buf_rects[buf_rects_out_n];
buf_rects_out_n += src_tmp.GlyphsCount;
// Compute multiply table if requested
const bool multiply_enabled = (cfg.RasterizerMultiply != 1.0f);
unsigned char multiply_table[256];
if (multiply_enabled)
ImFontAtlasBuildMultiplyCalcLookupTable(multiply_table, cfg.RasterizerMultiply);
// Gather the sizes of all rectangles we will need to pack
const int padding = atlas->TexGlyphPadding;
for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++)
{
ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i];
const FT_Glyph_Metrics* metrics = src_tmp.Font.LoadGlyph(src_glyph.Codepoint);
if (metrics == NULL)
continue;
// Render glyph into a bitmap (currently held by FreeType)
const FT_Bitmap* ft_bitmap = src_tmp.Font.RenderGlyphAndGetInfo(&src_glyph.Info);
if (ft_bitmap == NULL)
continue;
// Allocate new temporary chunk if needed
const int bitmap_size_in_bytes = src_glyph.Info.Width * src_glyph.Info.Height * 4;
if (buf_bitmap_current_used_bytes + bitmap_size_in_bytes > BITMAP_BUFFERS_CHUNK_SIZE)
{
buf_bitmap_current_used_bytes = 0;
buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE));
}
// Blit rasterized pixels to our temporary buffer and keep a pointer to it.
src_glyph.BitmapData = (unsigned int*)(buf_bitmap_buffers.back() + buf_bitmap_current_used_bytes);
buf_bitmap_current_used_bytes += bitmap_size_in_bytes;
src_tmp.Font.BlitGlyph(ft_bitmap, src_glyph.BitmapData, src_glyph.Info.Width, multiply_enabled ? multiply_table : NULL);
src_tmp.Rects[glyph_i].w = (stbrp_coord)(src_glyph.Info.Width + padding);
src_tmp.Rects[glyph_i].h = (stbrp_coord)(src_glyph.Info.Height + padding);
total_surface += src_tmp.Rects[glyph_i].w * src_tmp.Rects[glyph_i].h;
}
}
// We need a width for the skyline algorithm, any width!
// The exact width doesn't really matter much, but some API/GPU have texture size limitations and increasing width can decrease height.
// User can override TexDesiredWidth and TexGlyphPadding if they wish, otherwise we use a simple heuristic to select the width based on expected surface.
const int surface_sqrt = (int)ImSqrt((float)total_surface) + 1;
atlas->TexHeight = 0;
if (atlas->TexDesiredWidth > 0)
atlas->TexWidth = atlas->TexDesiredWidth;
else
atlas->TexWidth = (surface_sqrt >= 4096 * 0.7f) ? 4096 : (surface_sqrt >= 2048 * 0.7f) ? 2048 : (surface_sqrt >= 1024 * 0.7f) ? 1024 : 512;
// 5. Start packing
// Pack our extra data rectangles first, so it will be on the upper-left corner of our texture (UV will have small values).
const int TEX_HEIGHT_MAX = 1024 * 32;
const int num_nodes_for_packing_algorithm = atlas->TexWidth - atlas->TexGlyphPadding;
ImVector<stbrp_node> pack_nodes;
pack_nodes.resize(num_nodes_for_packing_algorithm);
stbrp_context pack_context;
stbrp_init_target(&pack_context, atlas->TexWidth, TEX_HEIGHT_MAX, pack_nodes.Data, pack_nodes.Size);
ImFontAtlasBuildPackCustomRects(atlas, &pack_context);
// 6. Pack each source font. No rendering yet, we are working with rectangles in an infinitely tall texture at this point.
for (int src_i = 0; src_i < src_tmp_array.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
if (src_tmp.GlyphsCount == 0)
continue;
stbrp_pack_rects(&pack_context, src_tmp.Rects, src_tmp.GlyphsCount);
// Extend texture height and mark missing glyphs as non-packed so we won't render them.
// FIXME: We are not handling packing failure here (would happen if we got off TEX_HEIGHT_MAX or if a single if larger than TexWidth?)
for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++)
if (src_tmp.Rects[glyph_i].was_packed)
atlas->TexHeight = ImMax(atlas->TexHeight, src_tmp.Rects[glyph_i].y + src_tmp.Rects[glyph_i].h);
}
// 7. Allocate texture
atlas->TexHeight = (atlas->Flags & ImFontAtlasFlags_NoPowerOfTwoHeight) ? (atlas->TexHeight + 1) : ImUpperPowerOfTwo(atlas->TexHeight);
atlas->TexUvScale = ImVec2(1.0f / atlas->TexWidth, 1.0f / atlas->TexHeight);
if (src_load_color)
{
size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 4;
atlas->TexPixelsRGBA32 = (unsigned int*)IM_ALLOC(tex_size);
memset(atlas->TexPixelsRGBA32, 0, tex_size);
}
else
{
size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 1;
atlas->TexPixelsAlpha8 = (unsigned char*)IM_ALLOC(tex_size);
memset(atlas->TexPixelsAlpha8, 0, tex_size);
}
// 8. Copy rasterized font characters back into the main texture
// 9. Setup ImFont and glyphs for runtime
bool tex_use_colors = false;
for (int src_i = 0; src_i < src_tmp_array.Size; src_i++)
{
ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i];
if (src_tmp.GlyphsCount == 0)
continue;
// When merging fonts with MergeMode=true:
// - We can have multiple input fonts writing into a same destination font.
// - dst_font->ConfigData is != from cfg which is our source configuration.
ImFontConfig& cfg = atlas->ConfigData[src_i];
ImFont* dst_font = cfg.DstFont;
const float ascent = src_tmp.Font.Info.Ascender;
const float descent = src_tmp.Font.Info.Descender;
ImFontAtlasBuildSetupFont(atlas, dst_font, &cfg, ascent, descent);
const float font_off_x = cfg.GlyphOffset.x;
const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent);
const int padding = atlas->TexGlyphPadding;
for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++)
{
ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i];
stbrp_rect& pack_rect = src_tmp.Rects[glyph_i];
IM_ASSERT(pack_rect.was_packed);
if (pack_rect.w == 0 && pack_rect.h == 0)
continue;
GlyphInfo& info = src_glyph.Info;
IM_ASSERT(info.Width + padding <= pack_rect.w);
IM_ASSERT(info.Height + padding <= pack_rect.h);
const int tx = pack_rect.x + padding;
const int ty = pack_rect.y + padding;
// Register glyph
float x0 = info.OffsetX + font_off_x;
float y0 = info.OffsetY + font_off_y;
float x1 = x0 + info.Width;
float y1 = y0 + info.Height;
float u0 = (tx) / (float)atlas->TexWidth;
float v0 = (ty) / (float)atlas->TexHeight;
float u1 = (tx + info.Width) / (float)atlas->TexWidth;
float v1 = (ty + info.Height) / (float)atlas->TexHeight;
dst_font->AddGlyph(&cfg, (ImWchar)src_glyph.Codepoint, x0, y0, x1, y1, u0, v0, u1, v1, info.AdvanceX);
ImFontGlyph* dst_glyph = &dst_font->Glyphs.back();
IM_ASSERT(dst_glyph->Codepoint == src_glyph.Codepoint);
if (src_glyph.Info.IsColored)
dst_glyph->Colored = tex_use_colors = true;
// Blit from temporary buffer to final texture
size_t blit_src_stride = (size_t)src_glyph.Info.Width;
size_t blit_dst_stride = (size_t)atlas->TexWidth;
unsigned int* blit_src = src_glyph.BitmapData;
if (atlas->TexPixelsAlpha8 != NULL)
{
unsigned char* blit_dst = atlas->TexPixelsAlpha8 + (ty * blit_dst_stride) + tx;
for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride)
for (int x = 0; x < info.Width; x++)
blit_dst[x] = (unsigned char)((blit_src[x] >> IM_COL32_A_SHIFT) & 0xFF);
}
else
{
unsigned int* blit_dst = atlas->TexPixelsRGBA32 + (ty * blit_dst_stride) + tx;
for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride)
for (int x = 0; x < info.Width; x++)
blit_dst[x] = blit_src[x];
}
}
src_tmp.Rects = NULL;
}
atlas->TexPixelsUseColors = tex_use_colors;
// Cleanup
for (int buf_i = 0; buf_i < buf_bitmap_buffers.Size; buf_i++)
IM_FREE(buf_bitmap_buffers[buf_i]);
src_tmp_array.clear_destruct();
ImFontAtlasBuildFinish(atlas);
return true;
}
// FreeType memory allocation callbacks
static void* FreeType_Alloc(FT_Memory /*memory*/, long size)
{
return GImGuiFreeTypeAllocFunc((size_t)size, GImGuiFreeTypeAllocatorUserData);
}
static void FreeType_Free(FT_Memory /*memory*/, void* block)
{
GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
}
static void* FreeType_Realloc(FT_Memory /*memory*/, long cur_size, long new_size, void* block)
{
// Implement realloc() as we don't ask user to provide it.
if (block == NULL)
return GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData);
if (new_size == 0)
{
GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
return NULL;
}
if (new_size > cur_size)
{
void* new_block = GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData);
memcpy(new_block, block, (size_t)cur_size);
GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
return new_block;
}
return block;
}
static bool ImFontAtlasBuildWithFreeType(ImFontAtlas* atlas)
{
// FreeType memory management: https://www.freetype.org/freetype2/docs/design/design-4.html
FT_MemoryRec_ memory_rec = {};
memory_rec.user = NULL;
memory_rec.alloc = &FreeType_Alloc;
memory_rec.free = &FreeType_Free;
memory_rec.realloc = &FreeType_Realloc;
// https://www.freetype.org/freetype2/docs/reference/ft2-module_management.html#FT_New_Library
FT_Library ft_library;
FT_Error error = FT_New_Library(&memory_rec, &ft_library);
if (error != 0)
return false;
// If you don't call FT_Add_Default_Modules() the rest of code may work, but FreeType won't use our custom allocator.
FT_Add_Default_Modules(ft_library);
bool ret = ImFontAtlasBuildWithFreeTypeEx(ft_library, atlas, atlas->FontBuilderFlags);
FT_Done_Library(ft_library);
return ret;
}
const ImFontBuilderIO* ImGuiFreeType::GetBuilderForFreeType()
{
static ImFontBuilderIO io;
io.FontBuilder_Build = ImFontAtlasBuildWithFreeType;
return &io;
}
void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data)
{
GImGuiFreeTypeAllocFunc = alloc_func;
GImGuiFreeTypeFreeFunc = free_func;
GImGuiFreeTypeAllocatorUserData = user_data;
}
|
whupdup/frame
|
real/third_party/tracy/imgui/misc/freetype/imgui_freetype.cpp
|
C++
|
gpl-3.0
| 38,152
|
// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder)
// (headers)
#pragma once
#include "imgui.h" // IMGUI_API
// Forward declarations
struct ImFontAtlas;
struct ImFontBuilderIO;
// Hinting greatly impacts visuals (and glyph sizes).
// - By default, hinting is enabled and the font's native hinter is preferred over the auto-hinter.
// - When disabled, FreeType generates blurrier glyphs, more or less matches the stb_truetype.h
// - The Default hinting mode usually looks good, but may distort glyphs in an unusual way.
// - The Light hinting mode generates fuzzier glyphs but better matches Microsoft's rasterizer.
// You can set those flags globaly in ImFontAtlas::FontBuilderFlags
// You can set those flags on a per font basis in ImFontConfig::FontBuilderFlags
enum ImGuiFreeTypeBuilderFlags
{
ImGuiFreeTypeBuilderFlags_NoHinting = 1 << 0, // Disable hinting. This generally generates 'blurrier' bitmap glyphs when the glyph are rendered in any of the anti-aliased modes.
ImGuiFreeTypeBuilderFlags_NoAutoHint = 1 << 1, // Disable auto-hinter.
ImGuiFreeTypeBuilderFlags_ForceAutoHint = 1 << 2, // Indicates that the auto-hinter is preferred over the font's native hinter.
ImGuiFreeTypeBuilderFlags_LightHinting = 1 << 3, // A lighter hinting algorithm for gray-level modes. Many generated glyphs are fuzzier but better resemble their original shape. This is achieved by snapping glyphs to the pixel grid only vertically (Y-axis), as is done by Microsoft's ClearType and Adobe's proprietary font renderer. This preserves inter-glyph spacing in horizontal text.
ImGuiFreeTypeBuilderFlags_MonoHinting = 1 << 4, // Strong hinting algorithm that should only be used for monochrome output.
ImGuiFreeTypeBuilderFlags_Bold = 1 << 5, // Styling: Should we artificially embolden the font?
ImGuiFreeTypeBuilderFlags_Oblique = 1 << 6, // Styling: Should we slant the font, emulating italic style?
ImGuiFreeTypeBuilderFlags_Monochrome = 1 << 7, // Disable anti-aliasing. Combine this with MonoHinting for best results!
ImGuiFreeTypeBuilderFlags_LoadColor = 1 << 8, // Enable FreeType color-layered glyphs
ImGuiFreeTypeBuilderFlags_Bitmap = 1 << 9 // Enable FreeType bitmap glyphs
};
namespace ImGuiFreeType
{
// This is automatically assigned when using '#define IMGUI_ENABLE_FREETYPE'.
// If you need to dynamically select between multiple builders:
// - you can manually assign this builder with 'atlas->FontBuilderIO = ImGuiFreeType::GetBuilderForFreeType()'
// - prefer deep-copying this into your own ImFontBuilderIO instance if you use hot-reloading that messes up static data.
IMGUI_API const ImFontBuilderIO* GetBuilderForFreeType();
// Override allocators. By default ImGuiFreeType will use IM_ALLOC()/IM_FREE()
// However, as FreeType does lots of allocations we provide a way for the user to redirect it to a separate memory heap if desired.
IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = NULL);
// Obsolete names (will be removed soon)
// Prefer using '#define IMGUI_ENABLE_FREETYPE'
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
static inline bool BuildFontAtlas(ImFontAtlas* atlas, unsigned int flags = 0) { atlas->FontBuilderIO = GetBuilderForFreeType(); atlas->FontBuilderFlags = flags; return atlas->Build(); }
#endif
}
|
whupdup/frame
|
real/third_party/tracy/imgui/misc/freetype/imgui_freetype.h
|
C++
|
gpl-3.0
| 3,544
|
#ifdef _WIN32
# include <windows.h>
#endif
#include <fstream>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unordered_map>
#include <sys/stat.h>
#ifdef _MSC_VER
# define stat64 _stat64
#endif
#if defined __APPLE__
# define stat64 stat
#endif
#include "json.hpp"
#include "../../server/TracyFileWrite.hpp"
#include "../../server/TracyMmap.hpp"
#include "../../server/TracyWorker.hpp"
#include "../../zstd/zstd.h"
using json = nlohmann::json;
void Usage()
{
printf( "Usage: import-chrome input.json output.tracy\n\n" );
exit( 1 );
}
int main( int argc, char** argv )
{
#ifdef _WIN32
if( !AttachConsole( ATTACH_PARENT_PROCESS ) )
{
AllocConsole();
SetConsoleMode( GetStdHandle( STD_OUTPUT_HANDLE ), 0x07 );
}
#endif
tracy::FileWrite::Compression clev = tracy::FileWrite::Compression::Fast;
if( argc != 3 ) Usage();
const char* input = argv[1];
const char* output = argv[2];
printf( "Loading...\r" );
fflush( stdout );
json j;
const auto fnsz = strlen( input );
if( fnsz > 4 && memcmp( input+fnsz-4, ".zst", 4 ) == 0 )
{
FILE* f = fopen( input, "rb" );
if( !f )
{
fprintf( stderr, "Cannot open input file!\n" );
exit( 1 );
}
struct stat64 sb;
if( stat64( input, &sb ) != 0 )
{
fprintf( stderr, "Cannot open input file!\n" );
fclose( f );
exit( 1 );
}
const auto zsz = sb.st_size;
auto zbuf = (char*)mmap( nullptr, zsz, PROT_READ, MAP_SHARED, fileno( f ), 0 );
fclose( f );
if( !zbuf )
{
fprintf( stderr, "Cannot mmap input file!\n" );
exit( 1 );
}
auto zctx = ZSTD_createDStream();
ZSTD_initDStream( zctx );
enum { tmpSize = 64*1024 };
auto tmp = new char[tmpSize];
ZSTD_inBuffer_s zin = { zbuf, (size_t)zsz };
ZSTD_outBuffer_s zout = { tmp, (size_t)tmpSize };
std::vector<uint8_t> buf;
buf.reserve( 1024*1024 );
while( zin.pos < zin.size )
{
const auto res = ZSTD_decompressStream( zctx, &zout, &zin );
if( ZSTD_isError( res ) )
{
ZSTD_freeDStream( zctx );
delete[] tmp;
fprintf( stderr, "Couldn't decompress input file (%s)!\n", ZSTD_getErrorName( res ) );
exit( 1 );
}
if( zout.pos > 0 )
{
const auto bsz = buf.size();
buf.resize( bsz + zout.pos );
memcpy( buf.data() + bsz, tmp, zout.pos );
zout.pos = 0;
}
}
ZSTD_freeDStream( zctx );
delete[] tmp;
munmap( zbuf, zsz );
j = json::parse( buf.begin(), buf.end() );
}
else
{
std::ifstream is( input );
if( !is.is_open() )
{
fprintf( stderr, "Cannot open input file!\n" );
exit( 1 );
}
is >> j;
is.close();
}
printf( "\33[2KParsing...\r" );
fflush( stdout );
// encode a pair of "real pid, real tid" from a trace into a
// pseudo thread ID living in the single namespace of Tracy threads.
struct PidTidEncoder
{
uint64_t tid;
uint64_t pid;
uint64_t pseudo_tid; // fake thread id, unique within Tracy
};
std::vector<PidTidEncoder> tid_encoders;
std::vector<tracy::Worker::ImportEventTimeline> timeline;
std::vector<tracy::Worker::ImportEventMessages> messages;
std::vector<tracy::Worker::ImportEventPlots> plots;
std::unordered_map<uint64_t, std::string> threadNames;
const auto getPseudoTid = [&](json& val) -> uint64_t {
const auto real_tid = val["tid"].get<uint64_t>();
if( val.contains( "pid" ) )
{
// there might be multiple processes so we allocate a pseudo-tid
// for each pair (pid, real_tid)
const auto pid = val["pid"].get<uint64_t>();
for ( auto &pair : tid_encoders)
{
if( pair.pid == pid && pair.tid == real_tid ) return pair.pseudo_tid;
}
assert( pid <= std::numeric_limits<uint32_t>::max() );
assert( real_tid <= std::numeric_limits<uint32_t>::max() );
const auto pseudo_tid = ( real_tid & 0xFFFFFFFF ) | ( pid << 32 );
tid_encoders.emplace_back(PidTidEncoder {real_tid, pid, pseudo_tid});
return pseudo_tid;
}
else
{
return real_tid;
}
};
if( j.is_object() && j.contains( "traceEvents" ) )
{
j = j["traceEvents"];
}
if( !j.is_array() )
{
fprintf( stderr, "Input must be either an array of events or an object containing an array of events under \"traceEvents\" key.\n" );
exit( 1 );
}
for( auto& v : j )
{
const auto type = v["ph"].get<std::string>();
std::string zoneText = "";
if( v.contains( "args" ) )
{
for( auto& kv : v["args"].items() )
{
const auto val = kv.value();
const std::string s = val.is_string() ? val.get<std::string>() : val.dump();
zoneText += kv.key() + ": " + s + "\n";
}
}
std::string locFile;
uint32_t locLine = 0;
if( v.contains( "loc" ) )
{
auto loc = v["loc"].get<std::string>();
const auto lpos = loc.find_last_of( ':' );
if( lpos == std::string::npos )
{
std::swap( loc, locFile );
}
else
{
locFile = loc.substr( 0, lpos );
locLine = atoi( loc.c_str() + lpos + 1 );
}
}
if( type == "b" || type == "B" )
{
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
getPseudoTid(v),
uint64_t( v["ts"].get<double>() * 1000. ),
v["name"].get<std::string>(),
std::move(zoneText),
false,
std::move(locFile),
locLine
} );
}
else if( type == "e" || type == "E" )
{
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
getPseudoTid(v),
uint64_t( v["ts"].get<double>() * 1000. ),
"",
std::move(zoneText),
true
} );
}
else if( type == "X" )
{
const auto tid = getPseudoTid(v);
const auto ts0 = uint64_t( v["ts"].get<double>() * 1000. );
const auto ts1 = ts0 + uint64_t( v["dur"].get<double>() * 1000. );
const auto name = v["name"].get<std::string>();
timeline.emplace_back( tracy::Worker::ImportEventTimeline { tid, ts0, name, std::move(zoneText), false, std::move(locFile), locLine } );
timeline.emplace_back( tracy::Worker::ImportEventTimeline { tid, ts1, "", "", true } );
}
else if( type == "i" || type == "I" )
{
messages.emplace_back( tracy::Worker::ImportEventMessages {
getPseudoTid(v),
uint64_t( v["ts"].get<double>() * 1000. ),
v["name"].get<std::string>()
} );
}
else if( type == "C" )
{
auto timestamp = int64_t( v["ts"].get<double>() * 1000 );
for( auto& kv : v["args"].items() )
{
bool plotFound = false;
auto& metricName = kv.key();
auto dataPoint = std::make_pair( timestamp, kv.value().get<double>() );
// The input file is assumed to have only very few metrics,
// so iterating through plots is not a problem.
for( auto& plot : plots )
{
if( plot.name == metricName )
{
plot.data.emplace_back( dataPoint );
plotFound = true;
break;
}
}
if( !plotFound )
{
auto formatting = tracy::PlotValueFormatting::Number;
// NOTE: With C++20 one could say metricName.ends_with( "_bytes" ) instead of rfind
auto metricNameLen = metricName.size();
if ( metricNameLen >= 6 && metricName.rfind( "_bytes" ) == metricNameLen - 6 ) {
formatting = tracy::PlotValueFormatting::Memory;
}
plots.emplace_back( tracy::Worker::ImportEventPlots {
std::move( metricName ),
formatting,
{ dataPoint }
} );
}
}
}
else if (type == "M")
{
if (v.contains("name") && v["name"] == "thread_name" && v.contains("args") && v["args"].is_object() && v["args"].contains("name"))
{
const auto tid = getPseudoTid(v);
threadNames[tid] = v["args"]["name"].get<std::string>();
}
}
}
std::stable_sort( timeline.begin(), timeline.end(), [] ( const auto& l, const auto& r ) { return l.timestamp < r.timestamp; } );
std::stable_sort( messages.begin(), messages.end(), [] ( const auto& l, const auto& r ) { return l.timestamp < r.timestamp; } );
for( auto& v : plots ) std::stable_sort( v.data.begin(), v.data.end(), [] ( const auto& l, const auto& r ) { return l.first < r.first; } );
uint64_t mts = 0;
if( !timeline.empty() )
{
mts = timeline[0].timestamp;
}
if( !messages.empty() )
{
if( mts > messages[0].timestamp ) mts = messages[0].timestamp;
}
for( auto& plot : plots )
{
if( mts > plot.data[0].first ) mts = plot.data[0].first;
}
for( auto& v : timeline ) v.timestamp -= mts;
for( auto& v : messages ) v.timestamp -= mts;
for( auto& plot : plots )
{
for( auto& v : plot.data ) v.first -= mts;
}
printf( "\33[2KProcessing...\r" );
fflush( stdout );
auto&& getFilename = [](const char* in) {
auto out = in;
while (*out) ++out;
--out;
while (out > in && (*out != '/' || *out != '\\')) out--;
return out;
};
tracy::Worker worker( getFilename(output), getFilename(input), timeline, messages, plots, threadNames );
auto w = std::unique_ptr<tracy::FileWrite>( tracy::FileWrite::Open( output, clev ) );
if( !w )
{
fprintf( stderr, "Cannot open output file!\n" );
exit( 1 );
}
printf( "\33[2KSaving...\r" );
fflush( stdout );
worker.Write( *w, false );
printf( "\33[2KCleanup...\n" );
fflush( stdout );
return 0;
}
|
whupdup/frame
|
real/third_party/tracy/import-chrome/src/import-chrome.cpp
|
C++
|
gpl-3.0
| 11,025
|
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++
| | |__ | | | | | | version 3.7.3
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
Copyright (c) 2013-2019 Niels Lohmann <http://nlohmann.me>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef INCLUDE_NLOHMANN_JSON_HPP_
#define INCLUDE_NLOHMANN_JSON_HPP_
#define NLOHMANN_JSON_VERSION_MAJOR 3
#define NLOHMANN_JSON_VERSION_MINOR 7
#define NLOHMANN_JSON_VERSION_PATCH 3
#include <algorithm> // all_of, find, for_each
#include <cassert> // assert
#include <ciso646> // and, not, or
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <functional> // hash, less
#include <initializer_list> // initializer_list
#include <iosfwd> // istream, ostream
#include <iterator> // random_access_iterator_tag
#include <memory> // unique_ptr
#include <numeric> // accumulate
#include <string> // string, stoi, to_string
#include <utility> // declval, forward, move, pair, swap
#include <vector> // vector
// #include <nlohmann/adl_serializer.hpp>
#include <utility>
// #include <nlohmann/detail/conversions/from_json.hpp>
#include <algorithm> // transform
#include <array> // array
#include <ciso646> // and, not
#include <forward_list> // forward_list
#include <iterator> // inserter, front_inserter, end
#include <map> // map
#include <string> // string
#include <tuple> // tuple, make_tuple
#include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible
#include <unordered_map> // unordered_map
#include <utility> // pair, declval
#include <valarray> // valarray
// #include <nlohmann/detail/exceptions.hpp>
#include <exception> // exception
#include <stdexcept> // runtime_error
#include <string> // to_string
// #include <nlohmann/detail/input/position_t.hpp>
#include <cstddef> // size_t
namespace nlohmann
{
namespace detail
{
/// struct to capture the start position of the current token
struct position_t
{
/// the total number of characters read
std::size_t chars_read_total = 0;
/// the number of characters read in the current line
std::size_t chars_read_current_line = 0;
/// the number of lines read
std::size_t lines_read = 0;
/// conversion to size_t to preserve SAX interface
constexpr operator size_t() const
{
return chars_read_total;
}
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/macro_scope.hpp>
#include <utility> // pair
// #include <nlohmann/thirdparty/hedley/hedley.hpp>
/* Hedley - https://nemequ.github.io/hedley
* Created by Evan Nemerson <evan@nemerson.com>
*
* To the extent possible under law, the author(s) have dedicated all
* copyright and related and neighboring rights to this software to
* the public domain worldwide. This software is distributed without
* any warranty.
*
* For details, see <http://creativecommons.org/publicdomain/zero/1.0/>.
* SPDX-License-Identifier: CC0-1.0
*/
#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 11)
#if defined(JSON_HEDLEY_VERSION)
#undef JSON_HEDLEY_VERSION
#endif
#define JSON_HEDLEY_VERSION 11
#if defined(JSON_HEDLEY_STRINGIFY_EX)
#undef JSON_HEDLEY_STRINGIFY_EX
#endif
#define JSON_HEDLEY_STRINGIFY_EX(x) #x
#if defined(JSON_HEDLEY_STRINGIFY)
#undef JSON_HEDLEY_STRINGIFY
#endif
#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x)
#if defined(JSON_HEDLEY_CONCAT_EX)
#undef JSON_HEDLEY_CONCAT_EX
#endif
#define JSON_HEDLEY_CONCAT_EX(a,b) a##b
#if defined(JSON_HEDLEY_CONCAT)
#undef JSON_HEDLEY_CONCAT
#endif
#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b)
#if defined(JSON_HEDLEY_VERSION_ENCODE)
#undef JSON_HEDLEY_VERSION_ENCODE
#endif
#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision))
#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR)
#undef JSON_HEDLEY_VERSION_DECODE_MAJOR
#endif
#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000)
#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR)
#undef JSON_HEDLEY_VERSION_DECODE_MINOR
#endif
#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000)
#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION)
#undef JSON_HEDLEY_VERSION_DECODE_REVISION
#endif
#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000)
#if defined(JSON_HEDLEY_GNUC_VERSION)
#undef JSON_HEDLEY_GNUC_VERSION
#endif
#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__)
#define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
#elif defined(__GNUC__)
#define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0)
#endif
#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK)
#undef JSON_HEDLEY_GNUC_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_GNUC_VERSION)
#define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_MSVC_VERSION)
#undef JSON_HEDLEY_MSVC_VERSION
#endif
#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000)
#define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100)
#elif defined(_MSC_FULL_VER)
#define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10)
#elif defined(_MSC_VER)
#define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0)
#endif
#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK)
#undef JSON_HEDLEY_MSVC_VERSION_CHECK
#endif
#if !defined(_MSC_VER)
#define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0)
#elif defined(_MSC_VER) && (_MSC_VER >= 1400)
#define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch)))
#elif defined(_MSC_VER) && (_MSC_VER >= 1200)
#define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch)))
#else
#define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor)))
#endif
#if defined(JSON_HEDLEY_INTEL_VERSION)
#undef JSON_HEDLEY_INTEL_VERSION
#endif
#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE)
#define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE)
#elif defined(__INTEL_COMPILER)
#define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0)
#endif
#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK)
#undef JSON_HEDLEY_INTEL_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_INTEL_VERSION)
#define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_PGI_VERSION)
#undef JSON_HEDLEY_PGI_VERSION
#endif
#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__)
#define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__)
#endif
#if defined(JSON_HEDLEY_PGI_VERSION_CHECK)
#undef JSON_HEDLEY_PGI_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_PGI_VERSION)
#define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_SUNPRO_VERSION)
#undef JSON_HEDLEY_SUNPRO_VERSION
#endif
#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000)
#define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10)
#elif defined(__SUNPRO_C)
#define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf)
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000)
#define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10)
#elif defined(__SUNPRO_CC)
#define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf)
#endif
#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK)
#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_SUNPRO_VERSION)
#define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION)
#undef JSON_HEDLEY_EMSCRIPTEN_VERSION
#endif
#if defined(__EMSCRIPTEN__)
#define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__)
#endif
#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK)
#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION)
#define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_ARM_VERSION)
#undef JSON_HEDLEY_ARM_VERSION
#endif
#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION)
#define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100)
#elif defined(__CC_ARM) && defined(__ARMCC_VERSION)
#define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100)
#endif
#if defined(JSON_HEDLEY_ARM_VERSION_CHECK)
#undef JSON_HEDLEY_ARM_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_ARM_VERSION)
#define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_IBM_VERSION)
#undef JSON_HEDLEY_IBM_VERSION
#endif
#if defined(__ibmxl__)
#define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__)
#elif defined(__xlC__) && defined(__xlC_ver__)
#define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff)
#elif defined(__xlC__)
#define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0)
#endif
#if defined(JSON_HEDLEY_IBM_VERSION_CHECK)
#undef JSON_HEDLEY_IBM_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_IBM_VERSION)
#define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_TI_VERSION)
#undef JSON_HEDLEY_TI_VERSION
#endif
#if defined(__TI_COMPILER_VERSION__)
#define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000))
#endif
#if defined(JSON_HEDLEY_TI_VERSION_CHECK)
#undef JSON_HEDLEY_TI_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_TI_VERSION)
#define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_CRAY_VERSION)
#undef JSON_HEDLEY_CRAY_VERSION
#endif
#if defined(_CRAYC)
#if defined(_RELEASE_PATCHLEVEL)
#define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL)
#else
#define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0)
#endif
#endif
#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK)
#undef JSON_HEDLEY_CRAY_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_CRAY_VERSION)
#define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_IAR_VERSION)
#undef JSON_HEDLEY_IAR_VERSION
#endif
#if defined(__IAR_SYSTEMS_ICC__)
#if __VER__ > 1000
#define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000))
#else
#define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(VER / 100, __VER__ % 100, 0)
#endif
#endif
#if defined(JSON_HEDLEY_IAR_VERSION_CHECK)
#undef JSON_HEDLEY_IAR_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_IAR_VERSION)
#define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_TINYC_VERSION)
#undef JSON_HEDLEY_TINYC_VERSION
#endif
#if defined(__TINYC__)
#define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100)
#endif
#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK)
#undef JSON_HEDLEY_TINYC_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_TINYC_VERSION)
#define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_DMC_VERSION)
#undef JSON_HEDLEY_DMC_VERSION
#endif
#if defined(__DMC__)
#define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf)
#endif
#if defined(JSON_HEDLEY_DMC_VERSION_CHECK)
#undef JSON_HEDLEY_DMC_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_DMC_VERSION)
#define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_COMPCERT_VERSION)
#undef JSON_HEDLEY_COMPCERT_VERSION
#endif
#if defined(__COMPCERT_VERSION__)
#define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100)
#endif
#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK)
#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_COMPCERT_VERSION)
#define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_PELLES_VERSION)
#undef JSON_HEDLEY_PELLES_VERSION
#endif
#if defined(__POCC__)
#define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0)
#endif
#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK)
#undef JSON_HEDLEY_PELLES_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_PELLES_VERSION)
#define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_GCC_VERSION)
#undef JSON_HEDLEY_GCC_VERSION
#endif
#if \
defined(JSON_HEDLEY_GNUC_VERSION) && \
!defined(__clang__) && \
!defined(JSON_HEDLEY_INTEL_VERSION) && \
!defined(JSON_HEDLEY_PGI_VERSION) && \
!defined(JSON_HEDLEY_ARM_VERSION) && \
!defined(JSON_HEDLEY_TI_VERSION) && \
!defined(__COMPCERT__)
#define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION
#endif
#if defined(JSON_HEDLEY_GCC_VERSION_CHECK)
#undef JSON_HEDLEY_GCC_VERSION_CHECK
#endif
#if defined(JSON_HEDLEY_GCC_VERSION)
#define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch))
#else
#define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0)
#endif
#if defined(JSON_HEDLEY_HAS_ATTRIBUTE)
#undef JSON_HEDLEY_HAS_ATTRIBUTE
#endif
#if defined(__has_attribute)
#define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute)
#else
#define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE)
#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE
#endif
#if defined(__has_attribute)
#define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute)
#else
#define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE)
#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE
#endif
#if defined(__has_attribute)
#define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute)
#else
#define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE)
#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE
#endif
#if \
defined(__has_cpp_attribute) && \
defined(__cplusplus) && \
(!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0))
#define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute)
#else
#define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0)
#endif
#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS)
#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS
#endif
#if !defined(__cplusplus) || !defined(__has_cpp_attribute)
#define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0)
#elif \
!defined(JSON_HEDLEY_PGI_VERSION) && \
(!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \
(!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0))
#define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute)
#else
#define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE)
#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE
#endif
#if defined(__has_cpp_attribute) && defined(__cplusplus)
#define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute)
#else
#define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE)
#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE
#endif
#if defined(__has_cpp_attribute) && defined(__cplusplus)
#define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute)
#else
#define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_BUILTIN)
#undef JSON_HEDLEY_HAS_BUILTIN
#endif
#if defined(__has_builtin)
#define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin)
#else
#define JSON_HEDLEY_HAS_BUILTIN(builtin) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN)
#undef JSON_HEDLEY_GNUC_HAS_BUILTIN
#endif
#if defined(__has_builtin)
#define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin)
#else
#define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN)
#undef JSON_HEDLEY_GCC_HAS_BUILTIN
#endif
#if defined(__has_builtin)
#define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin)
#else
#define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_FEATURE)
#undef JSON_HEDLEY_HAS_FEATURE
#endif
#if defined(__has_feature)
#define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature)
#else
#define JSON_HEDLEY_HAS_FEATURE(feature) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE)
#undef JSON_HEDLEY_GNUC_HAS_FEATURE
#endif
#if defined(__has_feature)
#define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature)
#else
#define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_FEATURE)
#undef JSON_HEDLEY_GCC_HAS_FEATURE
#endif
#if defined(__has_feature)
#define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature)
#else
#define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_EXTENSION)
#undef JSON_HEDLEY_HAS_EXTENSION
#endif
#if defined(__has_extension)
#define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension)
#else
#define JSON_HEDLEY_HAS_EXTENSION(extension) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION)
#undef JSON_HEDLEY_GNUC_HAS_EXTENSION
#endif
#if defined(__has_extension)
#define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension)
#else
#define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION)
#undef JSON_HEDLEY_GCC_HAS_EXTENSION
#endif
#if defined(__has_extension)
#define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension)
#else
#define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE)
#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE
#endif
#if defined(__has_declspec_attribute)
#define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute)
#else
#define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE)
#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE
#endif
#if defined(__has_declspec_attribute)
#define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute)
#else
#define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE)
#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE
#endif
#if defined(__has_declspec_attribute)
#define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute)
#else
#define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_HAS_WARNING)
#undef JSON_HEDLEY_HAS_WARNING
#endif
#if defined(__has_warning)
#define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning)
#else
#define JSON_HEDLEY_HAS_WARNING(warning) (0)
#endif
#if defined(JSON_HEDLEY_GNUC_HAS_WARNING)
#undef JSON_HEDLEY_GNUC_HAS_WARNING
#endif
#if defined(__has_warning)
#define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning)
#else
#define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_GCC_HAS_WARNING)
#undef JSON_HEDLEY_GCC_HAS_WARNING
#endif
#if defined(__has_warning)
#define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning)
#else
#define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for
HEDLEY INTERNAL USE ONLY. API subject to change without notice. */
#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_)
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_
#endif
#if defined(__cplusplus) && JSON_HEDLEY_HAS_WARNING("-Wc++98-compat")
# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
_Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \
xpr \
JSON_HEDLEY_DIAGNOSTIC_POP
#else
# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x
#endif
#if \
(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \
defined(__clang__) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \
JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(6,0,0) || \
JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \
JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR))
#define JSON_HEDLEY_PRAGMA(value) _Pragma(#value)
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0)
#define JSON_HEDLEY_PRAGMA(value) __pragma(value)
#else
#define JSON_HEDLEY_PRAGMA(value)
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH)
#undef JSON_HEDLEY_DIAGNOSTIC_PUSH
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_POP)
#undef JSON_HEDLEY_DIAGNOSTIC_POP
#endif
#if defined(__clang__)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop")
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)")
#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push))
#define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop))
#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop")
#elif JSON_HEDLEY_TI_VERSION_CHECK(8,1,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop")
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0)
#define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)")
#define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)")
#else
#define JSON_HEDLEY_DIAGNOSTIC_PUSH
#define JSON_HEDLEY_DIAGNOSTIC_POP
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED)
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations")
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)")
#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444")
#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996))
#elif JSON_HEDLEY_TI_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718")
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)")
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)")
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215")
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)")
#else
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS)
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas")
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"")
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)")
#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675")
#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068))
#elif JSON_HEDLEY_TI_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163")
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161")
#else
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES)
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes")
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"")
#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030))
#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097")
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)")
#elif JSON_HEDLEY_TI_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173")
#else
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES
#endif
#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL)
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual")
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"")
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)")
#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0)
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"")
#else
#define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL
#endif
#if defined(JSON_HEDLEY_DEPRECATED)
#undef JSON_HEDLEY_DEPRECATED
#endif
#if defined(JSON_HEDLEY_DEPRECATED_FOR)
#undef JSON_HEDLEY_DEPRECATED_FOR
#endif
#if defined(__cplusplus) && (__cplusplus >= 201402L)
#define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]])
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]])
#elif \
JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \
JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,3,0)
#define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since)))
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement)))
#elif \
JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__))
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__))
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0)
#define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since))
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement))
#elif \
JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \
JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0)
#define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated)
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated)
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated")
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated")
#else
#define JSON_HEDLEY_DEPRECATED(since)
#define JSON_HEDLEY_DEPRECATED_FOR(since, replacement)
#endif
#if defined(JSON_HEDLEY_UNAVAILABLE)
#undef JSON_HEDLEY_UNAVAILABLE
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since)))
#else
#define JSON_HEDLEY_UNAVAILABLE(available_since)
#endif
#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT)
#undef JSON_HEDLEY_WARN_UNUSED_RESULT
#endif
#if defined(__cplusplus) && (__cplusplus >= 201703L)
#define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]])
#elif \
JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \
(JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \
JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
#elif defined(_Check_return_) /* SAL */
#define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_
#else
#define JSON_HEDLEY_WARN_UNUSED_RESULT
#endif
#if defined(JSON_HEDLEY_SENTINEL)
#undef JSON_HEDLEY_SENTINEL
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0)
#define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position)))
#else
#define JSON_HEDLEY_SENTINEL(position)
#endif
#if defined(JSON_HEDLEY_NO_RETURN)
#undef JSON_HEDLEY_NO_RETURN
#endif
#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_NO_RETURN __noreturn
#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__))
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
#define JSON_HEDLEY_NO_RETURN _Noreturn
#elif defined(__cplusplus) && (__cplusplus >= 201103L)
#define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]])
#elif \
JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(18,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(17,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__))
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0)
#define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0)
#define JSON_HEDLEY_NO_RETURN __declspec(noreturn)
#elif JSON_HEDLEY_TI_VERSION_CHECK(6,0,0) && defined(__cplusplus)
#define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;")
#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0)
#define JSON_HEDLEY_NO_RETURN __attribute((noreturn))
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0)
#define JSON_HEDLEY_NO_RETURN __declspec(noreturn)
#else
#define JSON_HEDLEY_NO_RETURN
#endif
#if defined(JSON_HEDLEY_NO_ESCAPE)
#undef JSON_HEDLEY_NO_ESCAPE
#endif
#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape)
#define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__))
#else
#define JSON_HEDLEY_NO_ESCAPE
#endif
#if defined(JSON_HEDLEY_UNREACHABLE)
#undef JSON_HEDLEY_UNREACHABLE
#endif
#if defined(JSON_HEDLEY_UNREACHABLE_RETURN)
#undef JSON_HEDLEY_UNREACHABLE_RETURN
#endif
#if \
(JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5)
#define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable()
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0)
#define JSON_HEDLEY_UNREACHABLE() __assume(0)
#elif JSON_HEDLEY_TI_VERSION_CHECK(6,0,0)
#if defined(__cplusplus)
#define JSON_HEDLEY_UNREACHABLE() std::_nassert(0)
#else
#define JSON_HEDLEY_UNREACHABLE() _nassert(0)
#endif
#define JSON_HEDLEY_UNREACHABLE_RETURN(value) return value
#elif defined(EXIT_FAILURE)
#define JSON_HEDLEY_UNREACHABLE() abort()
#else
#define JSON_HEDLEY_UNREACHABLE()
#define JSON_HEDLEY_UNREACHABLE_RETURN(value) return value
#endif
#if !defined(JSON_HEDLEY_UNREACHABLE_RETURN)
#define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE()
#endif
#if defined(JSON_HEDLEY_ASSUME)
#undef JSON_HEDLEY_ASSUME
#endif
#if \
JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_ASSUME(expr) __assume(expr)
#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume)
#define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr)
#elif JSON_HEDLEY_TI_VERSION_CHECK(6,0,0)
#if defined(__cplusplus)
#define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr)
#else
#define JSON_HEDLEY_ASSUME(expr) _nassert(expr)
#endif
#elif \
(JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && !defined(JSON_HEDLEY_ARM_VERSION)) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5)
#define JSON_HEDLEY_ASSUME(expr) ((void) ((expr) ? 1 : (__builtin_unreachable(), 1)))
#else
#define JSON_HEDLEY_ASSUME(expr) ((void) (expr))
#endif
JSON_HEDLEY_DIAGNOSTIC_PUSH
#if JSON_HEDLEY_HAS_WARNING("-Wpedantic")
#pragma clang diagnostic ignored "-Wpedantic"
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus)
#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
#endif
#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0)
#if defined(__clang__)
#pragma clang diagnostic ignored "-Wvariadic-macros"
#elif defined(JSON_HEDLEY_GCC_VERSION)
#pragma GCC diagnostic ignored "-Wvariadic-macros"
#endif
#endif
#if defined(JSON_HEDLEY_NON_NULL)
#undef JSON_HEDLEY_NON_NULL
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0)
#define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__)))
#else
#define JSON_HEDLEY_NON_NULL(...)
#endif
JSON_HEDLEY_DIAGNOSTIC_POP
#if defined(JSON_HEDLEY_PRINTF_FORMAT)
#undef JSON_HEDLEY_PRINTF_FORMAT
#endif
#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO)
#define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check)))
#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO)
#define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check)))
#elif \
JSON_HEDLEY_HAS_ATTRIBUTE(format) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check)))
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0)
#define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check))
#else
#define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check)
#endif
#if defined(JSON_HEDLEY_CONSTEXPR)
#undef JSON_HEDLEY_CONSTEXPR
#endif
#if defined(__cplusplus)
#if __cplusplus >= 201103L
#define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr)
#endif
#endif
#if !defined(JSON_HEDLEY_CONSTEXPR)
#define JSON_HEDLEY_CONSTEXPR
#endif
#if defined(JSON_HEDLEY_PREDICT)
#undef JSON_HEDLEY_PREDICT
#endif
#if defined(JSON_HEDLEY_LIKELY)
#undef JSON_HEDLEY_LIKELY
#endif
#if defined(JSON_HEDLEY_UNLIKELY)
#undef JSON_HEDLEY_UNLIKELY
#endif
#if defined(JSON_HEDLEY_UNPREDICTABLE)
#undef JSON_HEDLEY_UNPREDICTABLE
#endif
#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable)
#define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable(!!(expr))
#endif
#if \
JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) || \
JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0)
# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability(expr, value, probability)
# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1, probability)
# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0, probability)
# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1)
# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0)
#if !defined(JSON_HEDLEY_BUILTIN_UNPREDICTABLE)
#define JSON_HEDLEY_BUILTIN_UNPREDICTABLE(expr) __builtin_expect_with_probability(!!(expr), 1, 0.5)
#endif
#elif \
JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
(JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(6,1,0) || \
JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27)
# define JSON_HEDLEY_PREDICT(expr, expected, probability) \
(((probability) >= 0.9) ? __builtin_expect(!!(expr), (expected)) : (((void) (expected)), !!(expr)))
# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \
(__extension__ ({ \
JSON_HEDLEY_CONSTEXPR double hedley_probability_ = (probability); \
((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \
}))
# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \
(__extension__ ({ \
JSON_HEDLEY_CONSTEXPR double hedley_probability_ = (probability); \
((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \
}))
# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1)
# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0)
#else
# define JSON_HEDLEY_PREDICT(expr, expected, probability) (((void) (expected)), !!(expr))
# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr))
# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr))
# define JSON_HEDLEY_LIKELY(expr) (!!(expr))
# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr))
#endif
#if !defined(JSON_HEDLEY_UNPREDICTABLE)
#define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5)
#endif
#if defined(JSON_HEDLEY_MALLOC)
#undef JSON_HEDLEY_MALLOC
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_MALLOC __attribute__((__malloc__))
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0)
#define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory")
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14, 0, 0)
#define JSON_HEDLEY_MALLOC __declspec(restrict)
#else
#define JSON_HEDLEY_MALLOC
#endif
#if defined(JSON_HEDLEY_PURE)
#undef JSON_HEDLEY_PURE
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \
JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \
JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_PURE __attribute__((__pure__))
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0)
#define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data")
#elif JSON_HEDLEY_TI_VERSION_CHECK(6,0,0) && defined(__cplusplus)
#define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;")
#else
#define JSON_HEDLEY_PURE
#endif
#if defined(JSON_HEDLEY_CONST)
#undef JSON_HEDLEY_CONST
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(const) || \
JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \
JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0)
#define JSON_HEDLEY_CONST __attribute__((__const__))
#elif \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0)
#define JSON_HEDLEY_CONST _Pragma("no_side_effect")
#else
#define JSON_HEDLEY_CONST JSON_HEDLEY_PURE
#endif
#if defined(JSON_HEDLEY_RESTRICT)
#undef JSON_HEDLEY_RESTRICT
#endif
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus)
#define JSON_HEDLEY_RESTRICT restrict
#elif \
JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \
JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \
JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \
defined(__clang__)
#define JSON_HEDLEY_RESTRICT __restrict
#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus)
#define JSON_HEDLEY_RESTRICT _Restrict
#else
#define JSON_HEDLEY_RESTRICT
#endif
#if defined(JSON_HEDLEY_INLINE)
#undef JSON_HEDLEY_INLINE
#endif
#if \
(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \
(defined(__cplusplus) && (__cplusplus >= 199711L))
#define JSON_HEDLEY_INLINE inline
#elif \
defined(JSON_HEDLEY_GCC_VERSION) || \
JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0)
#define JSON_HEDLEY_INLINE __inline__
#elif \
JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_INLINE __inline
#else
#define JSON_HEDLEY_INLINE
#endif
#if defined(JSON_HEDLEY_ALWAYS_INLINE)
#undef JSON_HEDLEY_ALWAYS_INLINE
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0)
#define JSON_HEDLEY_ALWAYS_INLINE __forceinline
#elif JSON_HEDLEY_TI_VERSION_CHECK(7,0,0) && defined(__cplusplus)
#define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;")
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced")
#else
#define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE
#endif
#if defined(JSON_HEDLEY_NEVER_INLINE)
#undef JSON_HEDLEY_NEVER_INLINE
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__))
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0)
#define JSON_HEDLEY_NEVER_INLINE __declspec(noinline)
#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0)
#define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline")
#elif JSON_HEDLEY_TI_VERSION_CHECK(6,0,0) && defined(__cplusplus)
#define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;")
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
#define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never")
#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0)
#define JSON_HEDLEY_NEVER_INLINE __attribute((noinline))
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0)
#define JSON_HEDLEY_NEVER_INLINE __declspec(noinline)
#else
#define JSON_HEDLEY_NEVER_INLINE
#endif
#if defined(JSON_HEDLEY_PRIVATE)
#undef JSON_HEDLEY_PRIVATE
#endif
#if defined(JSON_HEDLEY_PUBLIC)
#undef JSON_HEDLEY_PUBLIC
#endif
#if defined(JSON_HEDLEY_IMPORT)
#undef JSON_HEDLEY_IMPORT
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
#define JSON_HEDLEY_PRIVATE
#define JSON_HEDLEY_PUBLIC __declspec(dllexport)
#define JSON_HEDLEY_IMPORT __declspec(dllimport)
#else
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \
JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(8,0,0) || \
(JSON_HEDLEY_TI_VERSION_CHECK(7,3,0) && defined(__TI_EABI__) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__))
#define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden")))
#define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default")))
#else
#define JSON_HEDLEY_PRIVATE
#define JSON_HEDLEY_PUBLIC
#endif
#define JSON_HEDLEY_IMPORT extern
#endif
#if defined(JSON_HEDLEY_NO_THROW)
#undef JSON_HEDLEY_NO_THROW
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
#define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__))
#elif \
JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0)
#define JSON_HEDLEY_NO_THROW __declspec(nothrow)
#else
#define JSON_HEDLEY_NO_THROW
#endif
#if defined(JSON_HEDLEY_FALL_THROUGH)
#undef JSON_HEDLEY_FALL_THROUGH
#endif
#if JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(fallthrough,7,0,0) && !defined(JSON_HEDLEY_PGI_VERSION)
#define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__))
#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough)
#define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]])
#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough)
#define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]])
#elif defined(__fallthrough) /* SAL */
#define JSON_HEDLEY_FALL_THROUGH __fallthrough
#else
#define JSON_HEDLEY_FALL_THROUGH
#endif
#if defined(JSON_HEDLEY_RETURNS_NON_NULL)
#undef JSON_HEDLEY_RETURNS_NON_NULL
#endif
#if \
JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0)
#define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__))
#elif defined(_Ret_notnull_) /* SAL */
#define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_
#else
#define JSON_HEDLEY_RETURNS_NON_NULL
#endif
#if defined(JSON_HEDLEY_ARRAY_PARAM)
#undef JSON_HEDLEY_ARRAY_PARAM
#endif
#if \
defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
!defined(__STDC_NO_VLA__) && \
!defined(__cplusplus) && \
!defined(JSON_HEDLEY_PGI_VERSION) && \
!defined(JSON_HEDLEY_TINYC_VERSION)
#define JSON_HEDLEY_ARRAY_PARAM(name) (name)
#else
#define JSON_HEDLEY_ARRAY_PARAM(name)
#endif
#if defined(JSON_HEDLEY_IS_CONSTANT)
#undef JSON_HEDLEY_IS_CONSTANT
#endif
#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR)
#undef JSON_HEDLEY_REQUIRE_CONSTEXPR
#endif
/* JSON_HEDLEY_IS_CONSTEXPR_ is for
HEDLEY INTERNAL USE ONLY. API subject to change without notice. */
#if defined(JSON_HEDLEY_IS_CONSTEXPR_)
#undef JSON_HEDLEY_IS_CONSTEXPR_
#endif
#if \
JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \
JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \
JSON_HEDLEY_TI_VERSION_CHECK(6,1,0) || \
(JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \
JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0)
#define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr)
#endif
#if !defined(__cplusplus)
# if \
JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \
JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \
JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \
JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24)
#if defined(__INTPTR_TYPE__)
#define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*)
#else
#include <stdint.h>
#define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*)
#endif
# elif \
(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && !defined(JSON_HEDLEY_SUNPRO_VERSION) && !defined(JSON_HEDLEY_PGI_VERSION)) || \
JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \
JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \
JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0)
#if defined(__INTPTR_TYPE__)
#define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0)
#else
#include <stdint.h>
#define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0)
#endif
# elif \
defined(JSON_HEDLEY_GCC_VERSION) || \
defined(JSON_HEDLEY_INTEL_VERSION) || \
defined(JSON_HEDLEY_TINYC_VERSION) || \
defined(JSON_HEDLEY_TI_VERSION) || \
defined(__clang__)
# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \
sizeof(void) != \
sizeof(*( \
1 ? \
((void*) ((expr) * 0L) ) : \
((struct { char v[sizeof(void) * 2]; } *) 1) \
) \
) \
)
# endif
#endif
#if defined(JSON_HEDLEY_IS_CONSTEXPR_)
#if !defined(JSON_HEDLEY_IS_CONSTANT)
#define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr)
#endif
#define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1))
#else
#if !defined(JSON_HEDLEY_IS_CONSTANT)
#define JSON_HEDLEY_IS_CONSTANT(expr) (0)
#endif
#define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr)
#endif
#if defined(JSON_HEDLEY_BEGIN_C_DECLS)
#undef JSON_HEDLEY_BEGIN_C_DECLS
#endif
#if defined(JSON_HEDLEY_END_C_DECLS)
#undef JSON_HEDLEY_END_C_DECLS
#endif
#if defined(JSON_HEDLEY_C_DECL)
#undef JSON_HEDLEY_C_DECL
#endif
#if defined(__cplusplus)
#define JSON_HEDLEY_BEGIN_C_DECLS extern "C" {
#define JSON_HEDLEY_END_C_DECLS }
#define JSON_HEDLEY_C_DECL extern "C"
#else
#define JSON_HEDLEY_BEGIN_C_DECLS
#define JSON_HEDLEY_END_C_DECLS
#define JSON_HEDLEY_C_DECL
#endif
#if defined(JSON_HEDLEY_STATIC_ASSERT)
#undef JSON_HEDLEY_STATIC_ASSERT
#endif
#if \
!defined(__cplusplus) && ( \
(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \
JSON_HEDLEY_HAS_FEATURE(c_static_assert) || \
JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
defined(_Static_assert) \
)
# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message)
#elif \
(defined(__cplusplus) && (__cplusplus >= 201103L)) || \
JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) || \
(defined(__cplusplus) && JSON_HEDLEY_TI_VERSION_CHECK(8,3,0))
# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message))
#else
# define JSON_HEDLEY_STATIC_ASSERT(expr, message)
#endif
#if defined(JSON_HEDLEY_CONST_CAST)
#undef JSON_HEDLEY_CONST_CAST
#endif
#if defined(__cplusplus)
# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast<T>(expr))
#elif \
JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \
JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \
((T) (expr)); \
JSON_HEDLEY_DIAGNOSTIC_POP \
}))
#else
# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr))
#endif
#if defined(JSON_HEDLEY_REINTERPRET_CAST)
#undef JSON_HEDLEY_REINTERPRET_CAST
#endif
#if defined(__cplusplus)
#define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast<T>(expr))
#else
#define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (*((T*) &(expr)))
#endif
#if defined(JSON_HEDLEY_STATIC_CAST)
#undef JSON_HEDLEY_STATIC_CAST
#endif
#if defined(__cplusplus)
#define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast<T>(expr))
#else
#define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr))
#endif
#if defined(JSON_HEDLEY_CPP_CAST)
#undef JSON_HEDLEY_CPP_CAST
#endif
#if defined(__cplusplus)
#define JSON_HEDLEY_CPP_CAST(T, expr) static_cast<T>(expr)
#else
#define JSON_HEDLEY_CPP_CAST(T, expr) (expr)
#endif
#if defined(JSON_HEDLEY_NULL)
#undef JSON_HEDLEY_NULL
#endif
#if defined(__cplusplus)
#if __cplusplus >= 201103L
#define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr)
#elif defined(NULL)
#define JSON_HEDLEY_NULL NULL
#else
#define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0)
#endif
#elif defined(NULL)
#define JSON_HEDLEY_NULL NULL
#else
#define JSON_HEDLEY_NULL ((void*) 0)
#endif
#if defined(JSON_HEDLEY_MESSAGE)
#undef JSON_HEDLEY_MESSAGE
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas")
# define JSON_HEDLEY_MESSAGE(msg) \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \
JSON_HEDLEY_PRAGMA(message msg) \
JSON_HEDLEY_DIAGNOSTIC_POP
#elif \
JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \
JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0)
# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg)
#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0)
# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg)
#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0)
# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg))
#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0)
# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg))
#else
# define JSON_HEDLEY_MESSAGE(msg)
#endif
#if defined(JSON_HEDLEY_WARNING)
#undef JSON_HEDLEY_WARNING
#endif
#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas")
# define JSON_HEDLEY_WARNING(msg) \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \
JSON_HEDLEY_PRAGMA(clang warning msg) \
JSON_HEDLEY_DIAGNOSTIC_POP
#elif \
JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \
JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0)
# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg)
#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0)
# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg))
#else
# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg)
#endif
#if defined(JSON_HEDLEY_REQUIRE)
#undef JSON_HEDLEY_REQUIRE
#endif
#if defined(JSON_HEDLEY_REQUIRE_MSG)
#undef JSON_HEDLEY_REQUIRE_MSG
#endif
#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if)
# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat")
# define JSON_HEDLEY_REQUIRE(expr) \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
_Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \
__attribute__((diagnose_if(!(expr), #expr, "error"))) \
JSON_HEDLEY_DIAGNOSTIC_POP
# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
_Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \
__attribute__((diagnose_if(!(expr), msg, "error"))) \
JSON_HEDLEY_DIAGNOSTIC_POP
# else
# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error")))
# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error")))
# endif
#else
# define JSON_HEDLEY_REQUIRE(expr)
# define JSON_HEDLEY_REQUIRE_MSG(expr,msg)
#endif
#if defined(JSON_HEDLEY_FLAGS)
#undef JSON_HEDLEY_FLAGS
#endif
#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum)
#define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__))
#endif
#if defined(JSON_HEDLEY_FLAGS_CAST)
#undef JSON_HEDLEY_FLAGS_CAST
#endif
#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0)
# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \
JSON_HEDLEY_DIAGNOSTIC_PUSH \
_Pragma("warning(disable:188)") \
((T) (expr)); \
JSON_HEDLEY_DIAGNOSTIC_POP \
}))
#else
# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr)
#endif
#if defined(JSON_HEDLEY_EMPTY_BASES)
#undef JSON_HEDLEY_EMPTY_BASES
#endif
#if JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0)
#define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases)
#else
#define JSON_HEDLEY_EMPTY_BASES
#endif
/* Remaining macros are deprecated. */
#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK)
#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK
#endif
#if defined(__clang__)
#define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0)
#else
#define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch)
#endif
#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE)
#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE
#endif
#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute)
#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE)
#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE
#endif
#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute)
#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN)
#undef JSON_HEDLEY_CLANG_HAS_BUILTIN
#endif
#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin)
#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE)
#undef JSON_HEDLEY_CLANG_HAS_FEATURE
#endif
#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature)
#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION)
#undef JSON_HEDLEY_CLANG_HAS_EXTENSION
#endif
#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension)
#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE)
#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE
#endif
#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute)
#if defined(JSON_HEDLEY_CLANG_HAS_WARNING)
#undef JSON_HEDLEY_CLANG_HAS_WARNING
#endif
#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning)
#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */
// This file contains all internal macro definitions
// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them
// exclude unsupported compilers
#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK)
#if defined(__clang__)
#if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400
#error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers"
#endif
#elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER))
#if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800
#error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers"
#endif
#endif
#endif
// C++ language standard detection
#if (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464
#define JSON_HAS_CPP_17
#define JSON_HAS_CPP_14
#elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1)
#define JSON_HAS_CPP_14
#endif
// disable float-equal warnings on GCC/clang
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wfloat-equal"
#endif
// disable documentation warnings on clang
#if defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdocumentation"
#endif
// allow to disable exceptions
#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION)
#define JSON_THROW(exception) throw exception
#define JSON_TRY try
#define JSON_CATCH(exception) catch(exception)
#define JSON_INTERNAL_CATCH(exception) catch(exception)
#else
#include <cstdlib>
#define JSON_THROW(exception) std::abort()
#define JSON_TRY if(true)
#define JSON_CATCH(exception) if(false)
#define JSON_INTERNAL_CATCH(exception) if(false)
#endif
// override exception macros
#if defined(JSON_THROW_USER)
#undef JSON_THROW
#define JSON_THROW JSON_THROW_USER
#endif
#if defined(JSON_TRY_USER)
#undef JSON_TRY
#define JSON_TRY JSON_TRY_USER
#endif
#if defined(JSON_CATCH_USER)
#undef JSON_CATCH
#define JSON_CATCH JSON_CATCH_USER
#undef JSON_INTERNAL_CATCH
#define JSON_INTERNAL_CATCH JSON_CATCH_USER
#endif
#if defined(JSON_INTERNAL_CATCH_USER)
#undef JSON_INTERNAL_CATCH
#define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER
#endif
/*!
@brief macro to briefly define a mapping between an enum and JSON
@def NLOHMANN_JSON_SERIALIZE_ENUM
@since version 3.4.0
*/
#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \
template<typename BasicJsonType> \
inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[e](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.first == e; \
}); \
j = ((it != std::end(m)) ? it : std::begin(m))->second; \
} \
template<typename BasicJsonType> \
inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[&j](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.second == j; \
}); \
e = ((it != std::end(m)) ? it : std::begin(m))->first; \
}
// Ugly macros to avoid uglier copy-paste when specializing basic_json. They
// may be removed in the future once the class is split.
#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \
template<template<typename, typename, typename...> class ObjectType, \
template<typename, typename...> class ArrayType, \
class StringType, class BooleanType, class NumberIntegerType, \
class NumberUnsignedType, class NumberFloatType, \
template<typename> class AllocatorType, \
template<typename, typename = void> class JSONSerializer>
#define NLOHMANN_BASIC_JSON_TPL \
basic_json<ObjectType, ArrayType, StringType, BooleanType, \
NumberIntegerType, NumberUnsignedType, NumberFloatType, \
AllocatorType, JSONSerializer>
namespace nlohmann
{
namespace detail
{
////////////////
// exceptions //
////////////////
/*!
@brief general exception of the @ref basic_json class
This class is an extension of `std::exception` objects with a member @a id for
exception ids. It is used as the base class for all exceptions thrown by the
@ref basic_json class. This class can hence be used as "wildcard" to catch
exceptions.
Subclasses:
- @ref parse_error for exceptions indicating a parse error
- @ref invalid_iterator for exceptions indicating errors with iterators
- @ref type_error for exceptions indicating executing a member function with
a wrong type
- @ref out_of_range for exceptions indicating access out of the defined range
- @ref other_error for exceptions indicating other library errors
@internal
@note To have nothrow-copy-constructible exceptions, we internally use
`std::runtime_error` which can cope with arbitrary-length error messages.
Intermediate strings are built with static functions and then passed to
the actual constructor.
@endinternal
@liveexample{The following code shows how arbitrary library exceptions can be
caught.,exception}
@since version 3.0.0
*/
class exception : public std::exception
{
public:
/// returns the explanatory string
JSON_HEDLEY_RETURNS_NON_NULL
const char* what() const noexcept override
{
return m.what();
}
/// the id of the exception
const int id;
protected:
JSON_HEDLEY_NON_NULL(3)
exception(int id_, const char* what_arg) : id(id_), m(what_arg) {}
static std::string name(const std::string& ename, int id_)
{
return "[json.exception." + ename + "." + std::to_string(id_) + "] ";
}
private:
/// an exception object as storage for error messages
std::runtime_error m;
};
/*!
@brief exception indicating a parse error
This exception is thrown by the library when a parse error occurs. Parse errors
can occur during the deserialization of JSON text, CBOR, MessagePack, as well
as when using JSON Patch.
Member @a byte holds the byte index of the last read character in the input
file.
Exceptions have ids 1xx.
name / id | example message | description
------------------------------ | --------------- | -------------------------
json.exception.parse_error.101 | parse error at 2: unexpected end of input; expected string literal | This error indicates a syntax error while deserializing a JSON text. The error message describes that an unexpected token (character) was encountered, and the member @a byte indicates the error position.
json.exception.parse_error.102 | parse error at 14: missing or wrong low surrogate | JSON uses the `\uxxxx` format to describe Unicode characters. Code points above above 0xFFFF are split into two `\uxxxx` entries ("surrogate pairs"). This error indicates that the surrogate pair is incomplete or contains an invalid code point.
json.exception.parse_error.103 | parse error: code points above 0x10FFFF are invalid | Unicode supports code points up to 0x10FFFF. Code points above 0x10FFFF are invalid.
json.exception.parse_error.104 | parse error: JSON patch must be an array of objects | [RFC 6902](https://tools.ietf.org/html/rfc6902) requires a JSON Patch document to be a JSON document that represents an array of objects.
json.exception.parse_error.105 | parse error: operation must have string member 'op' | An operation of a JSON Patch document must contain exactly one "op" member, whose value indicates the operation to perform. Its value must be one of "add", "remove", "replace", "move", "copy", or "test"; other values are errors.
json.exception.parse_error.106 | parse error: array index '01' must not begin with '0' | An array index in a JSON Pointer ([RFC 6901](https://tools.ietf.org/html/rfc6901)) may be `0` or any number without a leading `0`.
json.exception.parse_error.107 | parse error: JSON pointer must be empty or begin with '/' - was: 'foo' | A JSON Pointer must be a Unicode string containing a sequence of zero or more reference tokens, each prefixed by a `/` character.
json.exception.parse_error.108 | parse error: escape character '~' must be followed with '0' or '1' | In a JSON Pointer, only `~0` and `~1` are valid escape sequences.
json.exception.parse_error.109 | parse error: array index 'one' is not a number | A JSON Pointer array index must be a number.
json.exception.parse_error.110 | parse error at 1: cannot read 2 bytes from vector | When parsing CBOR or MessagePack, the byte vector ends before the complete value has been read.
json.exception.parse_error.112 | parse error at 1: error reading CBOR; last byte: 0xF8 | Not all types of CBOR or MessagePack are supported. This exception occurs if an unsupported byte was read.
json.exception.parse_error.113 | parse error at 2: expected a CBOR string; last byte: 0x98 | While parsing a map key, a value that is not a string has been read.
json.exception.parse_error.114 | parse error: Unsupported BSON record type 0x0F | The parsing of the corresponding BSON record type is not implemented (yet).
@note For an input with n bytes, 1 is the index of the first character and n+1
is the index of the terminating null byte or the end of file. This also
holds true when reading a byte vector (CBOR or MessagePack).
@liveexample{The following code shows how a `parse_error` exception can be
caught.,parse_error}
@sa - @ref exception for the base class of the library exceptions
@sa - @ref invalid_iterator for exceptions indicating errors with iterators
@sa - @ref type_error for exceptions indicating executing a member function with
a wrong type
@sa - @ref out_of_range for exceptions indicating access out of the defined range
@sa - @ref other_error for exceptions indicating other library errors
@since version 3.0.0
*/
class parse_error : public exception
{
public:
/*!
@brief create a parse error exception
@param[in] id_ the id of the exception
@param[in] pos the position where the error occurred (or with
chars_read_total=0 if the position cannot be
determined)
@param[in] what_arg the explanatory string
@return parse_error object
*/
static parse_error create(int id_, const position_t& pos, const std::string& what_arg)
{
std::string w = exception::name("parse_error", id_) + "parse error" +
position_string(pos) + ": " + what_arg;
return parse_error(id_, pos.chars_read_total, w.c_str());
}
static parse_error create(int id_, std::size_t byte_, const std::string& what_arg)
{
std::string w = exception::name("parse_error", id_) + "parse error" +
(byte_ != 0 ? (" at byte " + std::to_string(byte_)) : "") +
": " + what_arg;
return parse_error(id_, byte_, w.c_str());
}
/*!
@brief byte index of the parse error
The byte index of the last read character in the input file.
@note For an input with n bytes, 1 is the index of the first character and
n+1 is the index of the terminating null byte or the end of file.
This also holds true when reading a byte vector (CBOR or MessagePack).
*/
const std::size_t byte;
private:
parse_error(int id_, std::size_t byte_, const char* what_arg)
: exception(id_, what_arg), byte(byte_) {}
static std::string position_string(const position_t& pos)
{
return " at line " + std::to_string(pos.lines_read + 1) +
", column " + std::to_string(pos.chars_read_current_line);
}
};
/*!
@brief exception indicating errors with iterators
This exception is thrown if iterators passed to a library function do not match
the expected semantics.
Exceptions have ids 2xx.
name / id | example message | description
----------------------------------- | --------------- | -------------------------
json.exception.invalid_iterator.201 | iterators are not compatible | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid.
json.exception.invalid_iterator.202 | iterator does not fit current value | In an erase or insert function, the passed iterator @a pos does not belong to the JSON value for which the function was called. It hence does not define a valid position for the deletion/insertion.
json.exception.invalid_iterator.203 | iterators do not fit current value | Either iterator passed to function @ref erase(IteratorType first, IteratorType last) does not belong to the JSON value from which values shall be erased. It hence does not define a valid range to delete values from.
json.exception.invalid_iterator.204 | iterators out of range | When an iterator range for a primitive type (number, boolean, or string) is passed to a constructor or an erase function, this range has to be exactly (@ref begin(), @ref end()), because this is the only way the single stored value is expressed. All other ranges are invalid.
json.exception.invalid_iterator.205 | iterator out of range | When an iterator for a primitive type (number, boolean, or string) is passed to an erase function, the iterator has to be the @ref begin() iterator, because it is the only way to address the stored value. All other iterators are invalid.
json.exception.invalid_iterator.206 | cannot construct with iterators from null | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) belong to a JSON null value and hence to not define a valid range.
json.exception.invalid_iterator.207 | cannot use key() for non-object iterators | The key() member function can only be used on iterators belonging to a JSON object, because other types do not have a concept of a key.
json.exception.invalid_iterator.208 | cannot use operator[] for object iterators | The operator[] to specify a concrete offset cannot be used on iterators belonging to a JSON object, because JSON objects are unordered.
json.exception.invalid_iterator.209 | cannot use offsets with object iterators | The offset operators (+, -, +=, -=) cannot be used on iterators belonging to a JSON object, because JSON objects are unordered.
json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid.
json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to.
json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container.
json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered.
json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin().
@liveexample{The following code shows how an `invalid_iterator` exception can be
caught.,invalid_iterator}
@sa - @ref exception for the base class of the library exceptions
@sa - @ref parse_error for exceptions indicating a parse error
@sa - @ref type_error for exceptions indicating executing a member function with
a wrong type
@sa - @ref out_of_range for exceptions indicating access out of the defined range
@sa - @ref other_error for exceptions indicating other library errors
@since version 3.0.0
*/
class invalid_iterator : public exception
{
public:
static invalid_iterator create(int id_, const std::string& what_arg)
{
std::string w = exception::name("invalid_iterator", id_) + what_arg;
return invalid_iterator(id_, w.c_str());
}
private:
JSON_HEDLEY_NON_NULL(3)
invalid_iterator(int id_, const char* what_arg)
: exception(id_, what_arg) {}
};
/*!
@brief exception indicating executing a member function with a wrong type
This exception is thrown in case of a type error; that is, a library function is
executed on a JSON value whose type does not match the expected semantics.
Exceptions have ids 3xx.
name / id | example message | description
----------------------------- | --------------- | -------------------------
json.exception.type_error.301 | cannot create object from initializer list | To create an object from an initializer list, the initializer list must consist only of a list of pairs whose first element is a string. When this constraint is violated, an array is created instead.
json.exception.type_error.302 | type must be object, but is array | During implicit or explicit value conversion, the JSON type must be compatible to the target type. For instance, a JSON string can only be converted into string types, but not into numbers or boolean types.
json.exception.type_error.303 | incompatible ReferenceType for get_ref, actual type is object | To retrieve a reference to a value stored in a @ref basic_json object with @ref get_ref, the type of the reference must match the value type. For instance, for a JSON array, the @a ReferenceType must be @ref array_t &.
json.exception.type_error.304 | cannot use at() with string | The @ref at() member functions can only be executed for certain JSON types.
json.exception.type_error.305 | cannot use operator[] with string | The @ref operator[] member functions can only be executed for certain JSON types.
json.exception.type_error.306 | cannot use value() with string | The @ref value() member functions can only be executed for certain JSON types.
json.exception.type_error.307 | cannot use erase() with string | The @ref erase() member functions can only be executed for certain JSON types.
json.exception.type_error.308 | cannot use push_back() with string | The @ref push_back() and @ref operator+= member functions can only be executed for certain JSON types.
json.exception.type_error.309 | cannot use insert() with | The @ref insert() member functions can only be executed for certain JSON types.
json.exception.type_error.310 | cannot use swap() with number | The @ref swap() member functions can only be executed for certain JSON types.
json.exception.type_error.311 | cannot use emplace_back() with string | The @ref emplace_back() member function can only be executed for certain JSON types.
json.exception.type_error.312 | cannot use update() with string | The @ref update() member functions can only be executed for certain JSON types.
json.exception.type_error.313 | invalid value to unflatten | The @ref unflatten function converts an object whose keys are JSON Pointers back into an arbitrary nested JSON value. The JSON Pointers must not overlap, because then the resulting value would not be well defined.
json.exception.type_error.314 | only objects can be unflattened | The @ref unflatten function only works for an object whose keys are JSON Pointers.
json.exception.type_error.315 | values in object must be primitive | The @ref unflatten function only works for an object whose keys are JSON Pointers and whose values are primitive.
json.exception.type_error.316 | invalid UTF-8 byte at index 10: 0x7E | The @ref dump function only works with UTF-8 encoded strings; that is, if you assign a `std::string` to a JSON value, make sure it is UTF-8 encoded. |
json.exception.type_error.317 | JSON value cannot be serialized to requested format | The dynamic type of the object cannot be represented in the requested serialization format (e.g. a raw `true` or `null` JSON object cannot be serialized to BSON) |
@liveexample{The following code shows how a `type_error` exception can be
caught.,type_error}
@sa - @ref exception for the base class of the library exceptions
@sa - @ref parse_error for exceptions indicating a parse error
@sa - @ref invalid_iterator for exceptions indicating errors with iterators
@sa - @ref out_of_range for exceptions indicating access out of the defined range
@sa - @ref other_error for exceptions indicating other library errors
@since version 3.0.0
*/
class type_error : public exception
{
public:
static type_error create(int id_, const std::string& what_arg)
{
std::string w = exception::name("type_error", id_) + what_arg;
return type_error(id_, w.c_str());
}
private:
JSON_HEDLEY_NON_NULL(3)
type_error(int id_, const char* what_arg) : exception(id_, what_arg) {}
};
/*!
@brief exception indicating access out of the defined range
This exception is thrown in case a library function is called on an input
parameter that exceeds the expected range, for instance in case of array
indices or nonexisting object keys.
Exceptions have ids 4xx.
name / id | example message | description
------------------------------- | --------------- | -------------------------
json.exception.out_of_range.401 | array index 3 is out of range | The provided array index @a i is larger than @a size-1.
json.exception.out_of_range.402 | array index '-' (3) is out of range | The special array index `-` in a JSON Pointer never describes a valid element of the array, but the index past the end. That is, it can only be used to add elements at this position, but not to read it.
json.exception.out_of_range.403 | key 'foo' not found | The provided key was not found in the JSON object.
json.exception.out_of_range.404 | unresolved reference token 'foo' | A reference token in a JSON Pointer could not be resolved.
json.exception.out_of_range.405 | JSON pointer has no parent | The JSON Patch operations 'remove' and 'add' can not be applied to the root element of the JSON value.
json.exception.out_of_range.406 | number overflow parsing '10E1000' | A parsed number could not be stored as without changing it to NaN or INF.
json.exception.out_of_range.407 | number overflow serializing '9223372036854775808' | UBJSON and BSON only support integer numbers up to 9223372036854775807. |
json.exception.out_of_range.408 | excessive array size: 8658170730974374167 | The size (following `#`) of an UBJSON array or object exceeds the maximal capacity. |
json.exception.out_of_range.409 | BSON key cannot contain code point U+0000 (at byte 2) | Key identifiers to be serialized to BSON cannot contain code point U+0000, since the key is stored as zero-terminated c-string |
@liveexample{The following code shows how an `out_of_range` exception can be
caught.,out_of_range}
@sa - @ref exception for the base class of the library exceptions
@sa - @ref parse_error for exceptions indicating a parse error
@sa - @ref invalid_iterator for exceptions indicating errors with iterators
@sa - @ref type_error for exceptions indicating executing a member function with
a wrong type
@sa - @ref other_error for exceptions indicating other library errors
@since version 3.0.0
*/
class out_of_range : public exception
{
public:
static out_of_range create(int id_, const std::string& what_arg)
{
std::string w = exception::name("out_of_range", id_) + what_arg;
return out_of_range(id_, w.c_str());
}
private:
JSON_HEDLEY_NON_NULL(3)
out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {}
};
/*!
@brief exception indicating other library errors
This exception is thrown in case of errors that cannot be classified with the
other exception types.
Exceptions have ids 5xx.
name / id | example message | description
------------------------------ | --------------- | -------------------------
json.exception.other_error.501 | unsuccessful: {"op":"test","path":"/baz", "value":"bar"} | A JSON Patch operation 'test' failed. The unsuccessful operation is also printed.
@sa - @ref exception for the base class of the library exceptions
@sa - @ref parse_error for exceptions indicating a parse error
@sa - @ref invalid_iterator for exceptions indicating errors with iterators
@sa - @ref type_error for exceptions indicating executing a member function with
a wrong type
@sa - @ref out_of_range for exceptions indicating access out of the defined range
@liveexample{The following code shows how an `other_error` exception can be
caught.,other_error}
@since version 3.0.0
*/
class other_error : public exception
{
public:
static other_error create(int id_, const std::string& what_arg)
{
std::string w = exception::name("other_error", id_) + what_arg;
return other_error(id_, w.c_str());
}
private:
JSON_HEDLEY_NON_NULL(3)
other_error(int id_, const char* what_arg) : exception(id_, what_arg) {}
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/cpp_future.hpp>
#include <ciso646> // not
#include <cstddef> // size_t
#include <type_traits> // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type
namespace nlohmann
{
namespace detail
{
// alias templates to reduce boilerplate
template<bool B, typename T = void>
using enable_if_t = typename std::enable_if<B, T>::type;
template<typename T>
using uncvref_t = typename std::remove_cv<typename std::remove_reference<T>::type>::type;
// implementation of C++14 index_sequence and affiliates
// source: https://stackoverflow.com/a/32223343
template<std::size_t... Ints>
struct index_sequence
{
using type = index_sequence;
using value_type = std::size_t;
static constexpr std::size_t size() noexcept
{
return sizeof...(Ints);
}
};
template<class Sequence1, class Sequence2>
struct merge_and_renumber;
template<std::size_t... I1, std::size_t... I2>
struct merge_and_renumber<index_sequence<I1...>, index_sequence<I2...>>
: index_sequence < I1..., (sizeof...(I1) + I2)... > {};
template<std::size_t N>
struct make_index_sequence
: merge_and_renumber < typename make_index_sequence < N / 2 >::type,
typename make_index_sequence < N - N / 2 >::type > {};
template<> struct make_index_sequence<0> : index_sequence<> {};
template<> struct make_index_sequence<1> : index_sequence<0> {};
template<typename... Ts>
using index_sequence_for = make_index_sequence<sizeof...(Ts)>;
// dispatch utility (taken from ranges-v3)
template<unsigned N> struct priority_tag : priority_tag < N - 1 > {};
template<> struct priority_tag<0> {};
// taken from ranges-v3
template<typename T>
struct static_const
{
static constexpr T value{};
};
template<typename T>
constexpr T static_const<T>::value;
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/meta/type_traits.hpp>
#include <ciso646> // not
#include <limits> // numeric_limits
#include <type_traits> // false_type, is_constructible, is_integral, is_same, true_type
#include <utility> // declval
// #include <nlohmann/detail/iterators/iterator_traits.hpp>
#include <iterator> // random_access_iterator_tag
// #include <nlohmann/detail/meta/void_t.hpp>
namespace nlohmann
{
namespace detail
{
template <typename ...Ts> struct make_void
{
using type = void;
};
template <typename ...Ts> using void_t = typename make_void<Ts...>::type;
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/meta/cpp_future.hpp>
namespace nlohmann
{
namespace detail
{
template <typename It, typename = void>
struct iterator_types {};
template <typename It>
struct iterator_types <
It,
void_t<typename It::difference_type, typename It::value_type, typename It::pointer,
typename It::reference, typename It::iterator_category >>
{
using difference_type = typename It::difference_type;
using value_type = typename It::value_type;
using pointer = typename It::pointer;
using reference = typename It::reference;
using iterator_category = typename It::iterator_category;
};
// This is required as some compilers implement std::iterator_traits in a way that
// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341.
template <typename T, typename = void>
struct iterator_traits
{
};
template <typename T>
struct iterator_traits < T, enable_if_t < !std::is_pointer<T>::value >>
: iterator_types<T>
{
};
template <typename T>
struct iterator_traits<T*, enable_if_t<std::is_object<T>::value>>
{
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = ptrdiff_t;
using pointer = T*;
using reference = T&;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/cpp_future.hpp>
// #include <nlohmann/detail/meta/detected.hpp>
#include <type_traits>
// #include <nlohmann/detail/meta/void_t.hpp>
// http://en.cppreference.com/w/cpp/experimental/is_detected
namespace nlohmann
{
namespace detail
{
struct nonesuch
{
nonesuch() = delete;
~nonesuch() = delete;
nonesuch(nonesuch const&) = delete;
nonesuch(nonesuch const&&) = delete;
void operator=(nonesuch const&) = delete;
void operator=(nonesuch&&) = delete;
};
template <class Default,
class AlwaysVoid,
template <class...> class Op,
class... Args>
struct detector
{
using value_t = std::false_type;
using type = Default;
};
template <class Default, template <class...> class Op, class... Args>
struct detector<Default, void_t<Op<Args...>>, Op, Args...>
{
using value_t = std::true_type;
using type = Op<Args...>;
};
template <template <class...> class Op, class... Args>
using is_detected = typename detector<nonesuch, void, Op, Args...>::value_t;
template <template <class...> class Op, class... Args>
using detected_t = typename detector<nonesuch, void, Op, Args...>::type;
template <class Default, template <class...> class Op, class... Args>
using detected_or = detector<Default, void, Op, Args...>;
template <class Default, template <class...> class Op, class... Args>
using detected_or_t = typename detected_or<Default, Op, Args...>::type;
template <class Expected, template <class...> class Op, class... Args>
using is_detected_exact = std::is_same<Expected, detected_t<Op, Args...>>;
template <class To, template <class...> class Op, class... Args>
using is_detected_convertible =
std::is_convertible<detected_t<Op, Args...>, To>;
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/json_fwd.hpp>
#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_
#define INCLUDE_NLOHMANN_JSON_FWD_HPP_
#include <cstdint> // int64_t, uint64_t
#include <map> // map
#include <memory> // allocator
#include <string> // string
#include <vector> // vector
/*!
@brief namespace for Niels Lohmann
@see https://github.com/nlohmann
@since version 1.0.0
*/
namespace nlohmann
{
/*!
@brief default JSONSerializer template argument
This serializer ignores the template arguments and uses ADL
([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl))
for serialization.
*/
template<typename T = void, typename SFINAE = void>
struct adl_serializer;
template<template<typename U, typename V, typename... Args> class ObjectType =
std::map,
template<typename U, typename... Args> class ArrayType = std::vector,
class StringType = std::string, class BooleanType = bool,
class NumberIntegerType = std::int64_t,
class NumberUnsignedType = std::uint64_t,
class NumberFloatType = double,
template<typename U> class AllocatorType = std::allocator,
template<typename T, typename SFINAE = void> class JSONSerializer =
adl_serializer>
class basic_json;
/*!
@brief JSON Pointer
A JSON pointer defines a string syntax for identifying a specific value
within a JSON document. It can be used with functions `at` and
`operator[]`. Furthermore, JSON pointers are the base for JSON patches.
@sa [RFC 6901](https://tools.ietf.org/html/rfc6901)
@since version 2.0.0
*/
template<typename BasicJsonType>
class json_pointer;
/*!
@brief default JSON class
This type is the default specialization of the @ref basic_json class which
uses the standard template types.
@since version 1.0.0
*/
using json = basic_json<>;
} // namespace nlohmann
#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_
namespace nlohmann
{
/*!
@brief detail namespace with internal helper functions
This namespace collects functions that should not be exposed,
implementations of some @ref basic_json methods, and meta-programming helpers.
@since version 2.1.0
*/
namespace detail
{
/////////////
// helpers //
/////////////
// Note to maintainers:
//
// Every trait in this file expects a non CV-qualified type.
// The only exceptions are in the 'aliases for detected' section
// (i.e. those of the form: decltype(T::member_function(std::declval<T>())))
//
// In this case, T has to be properly CV-qualified to constraint the function arguments
// (e.g. to_json(BasicJsonType&, const T&))
template<typename> struct is_basic_json : std::false_type {};
NLOHMANN_BASIC_JSON_TPL_DECLARATION
struct is_basic_json<NLOHMANN_BASIC_JSON_TPL> : std::true_type {};
//////////////////////////
// aliases for detected //
//////////////////////////
template <typename T>
using mapped_type_t = typename T::mapped_type;
template <typename T>
using key_type_t = typename T::key_type;
template <typename T>
using value_type_t = typename T::value_type;
template <typename T>
using difference_type_t = typename T::difference_type;
template <typename T>
using pointer_t = typename T::pointer;
template <typename T>
using reference_t = typename T::reference;
template <typename T>
using iterator_category_t = typename T::iterator_category;
template <typename T>
using iterator_t = typename T::iterator;
template <typename T, typename... Args>
using to_json_function = decltype(T::to_json(std::declval<Args>()...));
template <typename T, typename... Args>
using from_json_function = decltype(T::from_json(std::declval<Args>()...));
template <typename T, typename U>
using get_template_function = decltype(std::declval<T>().template get<U>());
// trait checking if JSONSerializer<T>::from_json(json const&, udt&) exists
template <typename BasicJsonType, typename T, typename = void>
struct has_from_json : std::false_type {};
template <typename BasicJsonType, typename T>
struct has_from_json<BasicJsonType, T,
enable_if_t<not is_basic_json<T>::value>>
{
using serializer = typename BasicJsonType::template json_serializer<T, void>;
static constexpr bool value =
is_detected_exact<void, from_json_function, serializer,
const BasicJsonType&, T&>::value;
};
// This trait checks if JSONSerializer<T>::from_json(json const&) exists
// this overload is used for non-default-constructible user-defined-types
template <typename BasicJsonType, typename T, typename = void>
struct has_non_default_from_json : std::false_type {};
template<typename BasicJsonType, typename T>
struct has_non_default_from_json<BasicJsonType, T, enable_if_t<not is_basic_json<T>::value>>
{
using serializer = typename BasicJsonType::template json_serializer<T, void>;
static constexpr bool value =
is_detected_exact<T, from_json_function, serializer,
const BasicJsonType&>::value;
};
// This trait checks if BasicJsonType::json_serializer<T>::to_json exists
// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion.
template <typename BasicJsonType, typename T, typename = void>
struct has_to_json : std::false_type {};
template <typename BasicJsonType, typename T>
struct has_to_json<BasicJsonType, T, enable_if_t<not is_basic_json<T>::value>>
{
using serializer = typename BasicJsonType::template json_serializer<T, void>;
static constexpr bool value =
is_detected_exact<void, to_json_function, serializer, BasicJsonType&,
T>::value;
};
///////////////////
// is_ functions //
///////////////////
template <typename T, typename = void>
struct is_iterator_traits : std::false_type {};
template <typename T>
struct is_iterator_traits<iterator_traits<T>>
{
private:
using traits = iterator_traits<T>;
public:
static constexpr auto value =
is_detected<value_type_t, traits>::value &&
is_detected<difference_type_t, traits>::value &&
is_detected<pointer_t, traits>::value &&
is_detected<iterator_category_t, traits>::value &&
is_detected<reference_t, traits>::value;
};
// source: https://stackoverflow.com/a/37193089/4116453
template <typename T, typename = void>
struct is_complete_type : std::false_type {};
template <typename T>
struct is_complete_type<T, decltype(void(sizeof(T)))> : std::true_type {};
template <typename BasicJsonType, typename CompatibleObjectType,
typename = void>
struct is_compatible_object_type_impl : std::false_type {};
template <typename BasicJsonType, typename CompatibleObjectType>
struct is_compatible_object_type_impl <
BasicJsonType, CompatibleObjectType,
enable_if_t<is_detected<mapped_type_t, CompatibleObjectType>::value and
is_detected<key_type_t, CompatibleObjectType>::value >>
{
using object_t = typename BasicJsonType::object_t;
// macOS's is_constructible does not play well with nonesuch...
static constexpr bool value =
std::is_constructible<typename object_t::key_type,
typename CompatibleObjectType::key_type>::value and
std::is_constructible<typename object_t::mapped_type,
typename CompatibleObjectType::mapped_type>::value;
};
template <typename BasicJsonType, typename CompatibleObjectType>
struct is_compatible_object_type
: is_compatible_object_type_impl<BasicJsonType, CompatibleObjectType> {};
template <typename BasicJsonType, typename ConstructibleObjectType,
typename = void>
struct is_constructible_object_type_impl : std::false_type {};
template <typename BasicJsonType, typename ConstructibleObjectType>
struct is_constructible_object_type_impl <
BasicJsonType, ConstructibleObjectType,
enable_if_t<is_detected<mapped_type_t, ConstructibleObjectType>::value and
is_detected<key_type_t, ConstructibleObjectType>::value >>
{
using object_t = typename BasicJsonType::object_t;
static constexpr bool value =
(std::is_default_constructible<ConstructibleObjectType>::value and
(std::is_move_assignable<ConstructibleObjectType>::value or
std::is_copy_assignable<ConstructibleObjectType>::value) and
(std::is_constructible<typename ConstructibleObjectType::key_type,
typename object_t::key_type>::value and
std::is_same <
typename object_t::mapped_type,
typename ConstructibleObjectType::mapped_type >::value)) or
(has_from_json<BasicJsonType,
typename ConstructibleObjectType::mapped_type>::value or
has_non_default_from_json <
BasicJsonType,
typename ConstructibleObjectType::mapped_type >::value);
};
template <typename BasicJsonType, typename ConstructibleObjectType>
struct is_constructible_object_type
: is_constructible_object_type_impl<BasicJsonType,
ConstructibleObjectType> {};
template <typename BasicJsonType, typename CompatibleStringType,
typename = void>
struct is_compatible_string_type_impl : std::false_type {};
template <typename BasicJsonType, typename CompatibleStringType>
struct is_compatible_string_type_impl <
BasicJsonType, CompatibleStringType,
enable_if_t<is_detected_exact<typename BasicJsonType::string_t::value_type,
value_type_t, CompatibleStringType>::value >>
{
static constexpr auto value =
std::is_constructible<typename BasicJsonType::string_t, CompatibleStringType>::value;
};
template <typename BasicJsonType, typename ConstructibleStringType>
struct is_compatible_string_type
: is_compatible_string_type_impl<BasicJsonType, ConstructibleStringType> {};
template <typename BasicJsonType, typename ConstructibleStringType,
typename = void>
struct is_constructible_string_type_impl : std::false_type {};
template <typename BasicJsonType, typename ConstructibleStringType>
struct is_constructible_string_type_impl <
BasicJsonType, ConstructibleStringType,
enable_if_t<is_detected_exact<typename BasicJsonType::string_t::value_type,
value_type_t, ConstructibleStringType>::value >>
{
static constexpr auto value =
std::is_constructible<ConstructibleStringType,
typename BasicJsonType::string_t>::value;
};
template <typename BasicJsonType, typename ConstructibleStringType>
struct is_constructible_string_type
: is_constructible_string_type_impl<BasicJsonType, ConstructibleStringType> {};
template <typename BasicJsonType, typename CompatibleArrayType, typename = void>
struct is_compatible_array_type_impl : std::false_type {};
template <typename BasicJsonType, typename CompatibleArrayType>
struct is_compatible_array_type_impl <
BasicJsonType, CompatibleArrayType,
enable_if_t<is_detected<value_type_t, CompatibleArrayType>::value and
is_detected<iterator_t, CompatibleArrayType>::value and
// This is needed because json_reverse_iterator has a ::iterator type...
// Therefore it is detected as a CompatibleArrayType.
// The real fix would be to have an Iterable concept.
not is_iterator_traits<
iterator_traits<CompatibleArrayType>>::value >>
{
static constexpr bool value =
std::is_constructible<BasicJsonType,
typename CompatibleArrayType::value_type>::value;
};
template <typename BasicJsonType, typename CompatibleArrayType>
struct is_compatible_array_type
: is_compatible_array_type_impl<BasicJsonType, CompatibleArrayType> {};
template <typename BasicJsonType, typename ConstructibleArrayType, typename = void>
struct is_constructible_array_type_impl : std::false_type {};
template <typename BasicJsonType, typename ConstructibleArrayType>
struct is_constructible_array_type_impl <
BasicJsonType, ConstructibleArrayType,
enable_if_t<std::is_same<ConstructibleArrayType,
typename BasicJsonType::value_type>::value >>
: std::true_type {};
template <typename BasicJsonType, typename ConstructibleArrayType>
struct is_constructible_array_type_impl <
BasicJsonType, ConstructibleArrayType,
enable_if_t<not std::is_same<ConstructibleArrayType,
typename BasicJsonType::value_type>::value and
std::is_default_constructible<ConstructibleArrayType>::value and
(std::is_move_assignable<ConstructibleArrayType>::value or
std::is_copy_assignable<ConstructibleArrayType>::value) and
is_detected<value_type_t, ConstructibleArrayType>::value and
is_detected<iterator_t, ConstructibleArrayType>::value and
is_complete_type<
detected_t<value_type_t, ConstructibleArrayType>>::value >>
{
static constexpr bool value =
// This is needed because json_reverse_iterator has a ::iterator type,
// furthermore, std::back_insert_iterator (and other iterators) have a
// base class `iterator`... Therefore it is detected as a
// ConstructibleArrayType. The real fix would be to have an Iterable
// concept.
not is_iterator_traits<iterator_traits<ConstructibleArrayType>>::value and
(std::is_same<typename ConstructibleArrayType::value_type,
typename BasicJsonType::array_t::value_type>::value or
has_from_json<BasicJsonType,
typename ConstructibleArrayType::value_type>::value or
has_non_default_from_json <
BasicJsonType, typename ConstructibleArrayType::value_type >::value);
};
template <typename BasicJsonType, typename ConstructibleArrayType>
struct is_constructible_array_type
: is_constructible_array_type_impl<BasicJsonType, ConstructibleArrayType> {};
template <typename RealIntegerType, typename CompatibleNumberIntegerType,
typename = void>
struct is_compatible_integer_type_impl : std::false_type {};
template <typename RealIntegerType, typename CompatibleNumberIntegerType>
struct is_compatible_integer_type_impl <
RealIntegerType, CompatibleNumberIntegerType,
enable_if_t<std::is_integral<RealIntegerType>::value and
std::is_integral<CompatibleNumberIntegerType>::value and
not std::is_same<bool, CompatibleNumberIntegerType>::value >>
{
// is there an assert somewhere on overflows?
using RealLimits = std::numeric_limits<RealIntegerType>;
using CompatibleLimits = std::numeric_limits<CompatibleNumberIntegerType>;
static constexpr auto value =
std::is_constructible<RealIntegerType,
CompatibleNumberIntegerType>::value and
CompatibleLimits::is_integer and
RealLimits::is_signed == CompatibleLimits::is_signed;
};
template <typename RealIntegerType, typename CompatibleNumberIntegerType>
struct is_compatible_integer_type
: is_compatible_integer_type_impl<RealIntegerType,
CompatibleNumberIntegerType> {};
template <typename BasicJsonType, typename CompatibleType, typename = void>
struct is_compatible_type_impl: std::false_type {};
template <typename BasicJsonType, typename CompatibleType>
struct is_compatible_type_impl <
BasicJsonType, CompatibleType,
enable_if_t<is_complete_type<CompatibleType>::value >>
{
static constexpr bool value =
has_to_json<BasicJsonType, CompatibleType>::value;
};
template <typename BasicJsonType, typename CompatibleType>
struct is_compatible_type
: is_compatible_type_impl<BasicJsonType, CompatibleType> {};
// https://en.cppreference.com/w/cpp/types/conjunction
template<class...> struct conjunction : std::true_type { };
template<class B1> struct conjunction<B1> : B1 { };
template<class B1, class... Bn>
struct conjunction<B1, Bn...>
: std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {};
template <typename T1, typename T2>
struct is_constructible_tuple : std::false_type {};
template <typename T1, typename... Args>
struct is_constructible_tuple<T1, std::tuple<Args...>> : conjunction<std::is_constructible<T1, Args>...> {};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/value_t.hpp>
#include <array> // array
#include <ciso646> // and
#include <cstddef> // size_t
#include <cstdint> // uint8_t
#include <string> // string
namespace nlohmann
{
namespace detail
{
///////////////////////////
// JSON type enumeration //
///////////////////////////
/*!
@brief the JSON type enumeration
This enumeration collects the different JSON types. It is internally used to
distinguish the stored values, and the functions @ref basic_json::is_null(),
@ref basic_json::is_object(), @ref basic_json::is_array(),
@ref basic_json::is_string(), @ref basic_json::is_boolean(),
@ref basic_json::is_number() (with @ref basic_json::is_number_integer(),
@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()),
@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and
@ref basic_json::is_structured() rely on it.
@note There are three enumeration entries (number_integer, number_unsigned, and
number_float), because the library distinguishes these three types for numbers:
@ref basic_json::number_unsigned_t is used for unsigned integers,
@ref basic_json::number_integer_t is used for signed integers, and
@ref basic_json::number_float_t is used for floating-point numbers or to
approximate integers which do not fit in the limits of their respective type.
@sa @ref basic_json::basic_json(const value_t value_type) -- create a JSON
value with the default value for a given type
@since version 1.0.0
*/
enum class value_t : std::uint8_t
{
null, ///< null value
object, ///< object (unordered set of name/value pairs)
array, ///< array (ordered collection of values)
string, ///< string value
boolean, ///< boolean value
number_integer, ///< number value (signed integer)
number_unsigned, ///< number value (unsigned integer)
number_float, ///< number value (floating-point)
discarded ///< discarded by the the parser callback function
};
/*!
@brief comparison operator for JSON types
Returns an ordering that is similar to Python:
- order: null < boolean < number < object < array < string
- furthermore, each type is not smaller than itself
- discarded values are not comparable
@since version 1.0.0
*/
inline bool operator<(const value_t lhs, const value_t rhs) noexcept
{
static constexpr std::array<std::uint8_t, 8> order = {{
0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */,
1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */
}
};
const auto l_index = static_cast<std::size_t>(lhs);
const auto r_index = static_cast<std::size_t>(rhs);
return l_index < order.size() and r_index < order.size() and order[l_index] < order[r_index];
}
} // namespace detail
} // namespace nlohmann
namespace nlohmann
{
namespace detail
{
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename std::nullptr_t& n)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_null()))
{
JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name())));
}
n = nullptr;
}
// overloads for basic_json template parameters
template<typename BasicJsonType, typename ArithmeticType,
enable_if_t<std::is_arithmetic<ArithmeticType>::value and
not std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value,
int> = 0>
void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val)
{
switch (static_cast<value_t>(j))
{
case value_t::number_unsigned:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>());
break;
}
case value_t::number_integer:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer_t*>());
break;
}
case value_t::number_float:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t*>());
break;
}
default:
JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name())));
}
}
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_boolean()))
{
JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(j.type_name())));
}
b = *j.template get_ptr<const typename BasicJsonType::boolean_t*>();
}
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_string()))
{
JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name())));
}
s = *j.template get_ptr<const typename BasicJsonType::string_t*>();
}
template <
typename BasicJsonType, typename ConstructibleStringType,
enable_if_t <
is_constructible_string_type<BasicJsonType, ConstructibleStringType>::value and
not std::is_same<typename BasicJsonType::string_t,
ConstructibleStringType>::value,
int > = 0 >
void from_json(const BasicJsonType& j, ConstructibleStringType& s)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_string()))
{
JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name())));
}
s = *j.template get_ptr<const typename BasicJsonType::string_t*>();
}
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val)
{
get_arithmetic_value(j, val);
}
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val)
{
get_arithmetic_value(j, val);
}
template<typename BasicJsonType>
void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val)
{
get_arithmetic_value(j, val);
}
template<typename BasicJsonType, typename EnumType,
enable_if_t<std::is_enum<EnumType>::value, int> = 0>
void from_json(const BasicJsonType& j, EnumType& e)
{
typename std::underlying_type<EnumType>::type val;
get_arithmetic_value(j, val);
e = static_cast<EnumType>(val);
}
// forward_list doesn't have an insert method
template<typename BasicJsonType, typename T, typename Allocator,
enable_if_t<std::is_convertible<BasicJsonType, T>::value, int> = 0>
void from_json(const BasicJsonType& j, std::forward_list<T, Allocator>& l)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name())));
}
l.clear();
std::transform(j.rbegin(), j.rend(),
std::front_inserter(l), [](const BasicJsonType & i)
{
return i.template get<T>();
});
}
// valarray doesn't have an insert method
template<typename BasicJsonType, typename T,
enable_if_t<std::is_convertible<BasicJsonType, T>::value, int> = 0>
void from_json(const BasicJsonType& j, std::valarray<T>& l)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name())));
}
l.resize(j.size());
std::copy(j.begin(), j.end(), std::begin(l));
}
template <typename BasicJsonType, typename T, std::size_t N>
auto from_json(const BasicJsonType& j, T (&arr)[N])
-> decltype(j.template get<T>(), void())
{
for (std::size_t i = 0; i < N; ++i)
{
arr[i] = j.at(i).template get<T>();
}
}
template<typename BasicJsonType>
void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/)
{
arr = *j.template get_ptr<const typename BasicJsonType::array_t*>();
}
template <typename BasicJsonType, typename T, std::size_t N>
auto from_json_array_impl(const BasicJsonType& j, std::array<T, N>& arr,
priority_tag<2> /*unused*/)
-> decltype(j.template get<T>(), void())
{
for (std::size_t i = 0; i < N; ++i)
{
arr[i] = j.at(i).template get<T>();
}
}
template<typename BasicJsonType, typename ConstructibleArrayType>
auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/)
-> decltype(
arr.reserve(std::declval<typename ConstructibleArrayType::size_type>()),
j.template get<typename ConstructibleArrayType::value_type>(),
void())
{
using std::end;
ConstructibleArrayType ret;
ret.reserve(j.size());
std::transform(j.begin(), j.end(),
std::inserter(ret, end(ret)), [](const BasicJsonType & i)
{
// get<BasicJsonType>() returns *this, this won't call a from_json
// method when value_type is BasicJsonType
return i.template get<typename ConstructibleArrayType::value_type>();
});
arr = std::move(ret);
}
template <typename BasicJsonType, typename ConstructibleArrayType>
void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr,
priority_tag<0> /*unused*/)
{
using std::end;
ConstructibleArrayType ret;
std::transform(
j.begin(), j.end(), std::inserter(ret, end(ret)),
[](const BasicJsonType & i)
{
// get<BasicJsonType>() returns *this, this won't call a from_json
// method when value_type is BasicJsonType
return i.template get<typename ConstructibleArrayType::value_type>();
});
arr = std::move(ret);
}
template <typename BasicJsonType, typename ConstructibleArrayType,
enable_if_t <
is_constructible_array_type<BasicJsonType, ConstructibleArrayType>::value and
not is_constructible_object_type<BasicJsonType, ConstructibleArrayType>::value and
not is_constructible_string_type<BasicJsonType, ConstructibleArrayType>::value and
not is_basic_json<ConstructibleArrayType>::value,
int > = 0 >
auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr)
-> decltype(from_json_array_impl(j, arr, priority_tag<3> {}),
j.template get<typename ConstructibleArrayType::value_type>(),
void())
{
if (JSON_HEDLEY_UNLIKELY(not j.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " +
std::string(j.type_name())));
}
from_json_array_impl(j, arr, priority_tag<3> {});
}
template<typename BasicJsonType, typename ConstructibleObjectType,
enable_if_t<is_constructible_object_type<BasicJsonType, ConstructibleObjectType>::value, int> = 0>
void from_json(const BasicJsonType& j, ConstructibleObjectType& obj)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_object()))
{
JSON_THROW(type_error::create(302, "type must be object, but is " + std::string(j.type_name())));
}
ConstructibleObjectType ret;
auto inner_object = j.template get_ptr<const typename BasicJsonType::object_t*>();
using value_type = typename ConstructibleObjectType::value_type;
std::transform(
inner_object->begin(), inner_object->end(),
std::inserter(ret, ret.begin()),
[](typename BasicJsonType::object_t::value_type const & p)
{
return value_type(p.first, p.second.template get<typename ConstructibleObjectType::mapped_type>());
});
obj = std::move(ret);
}
// overload for arithmetic types, not chosen for basic_json template arguments
// (BooleanType, etc..); note: Is it really necessary to provide explicit
// overloads for boolean_t etc. in case of a custom BooleanType which is not
// an arithmetic type?
template<typename BasicJsonType, typename ArithmeticType,
enable_if_t <
std::is_arithmetic<ArithmeticType>::value and
not std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value and
not std::is_same<ArithmeticType, typename BasicJsonType::number_integer_t>::value and
not std::is_same<ArithmeticType, typename BasicJsonType::number_float_t>::value and
not std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value,
int> = 0>
void from_json(const BasicJsonType& j, ArithmeticType& val)
{
switch (static_cast<value_t>(j))
{
case value_t::number_unsigned:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>());
break;
}
case value_t::number_integer:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer_t*>());
break;
}
case value_t::number_float:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t*>());
break;
}
case value_t::boolean:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::boolean_t*>());
break;
}
default:
JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name())));
}
}
template<typename BasicJsonType, typename A1, typename A2>
void from_json(const BasicJsonType& j, std::pair<A1, A2>& p)
{
p = {j.at(0).template get<A1>(), j.at(1).template get<A2>()};
}
template<typename BasicJsonType, typename Tuple, std::size_t... Idx>
void from_json_tuple_impl(const BasicJsonType& j, Tuple& t, index_sequence<Idx...> /*unused*/)
{
t = std::make_tuple(j.at(Idx).template get<typename std::tuple_element<Idx, Tuple>::type>()...);
}
template<typename BasicJsonType, typename... Args>
void from_json(const BasicJsonType& j, std::tuple<Args...>& t)
{
from_json_tuple_impl(j, t, index_sequence_for<Args...> {});
}
template <typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator,
typename = enable_if_t<not std::is_constructible<
typename BasicJsonType::string_t, Key>::value>>
void from_json(const BasicJsonType& j, std::map<Key, Value, Compare, Allocator>& m)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name())));
}
m.clear();
for (const auto& p : j)
{
if (JSON_HEDLEY_UNLIKELY(not p.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name())));
}
m.emplace(p.at(0).template get<Key>(), p.at(1).template get<Value>());
}
}
template <typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator,
typename = enable_if_t<not std::is_constructible<
typename BasicJsonType::string_t, Key>::value>>
void from_json(const BasicJsonType& j, std::unordered_map<Key, Value, Hash, KeyEqual, Allocator>& m)
{
if (JSON_HEDLEY_UNLIKELY(not j.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name())));
}
m.clear();
for (const auto& p : j)
{
if (JSON_HEDLEY_UNLIKELY(not p.is_array()))
{
JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name())));
}
m.emplace(p.at(0).template get<Key>(), p.at(1).template get<Value>());
}
}
struct from_json_fn
{
template<typename BasicJsonType, typename T>
auto operator()(const BasicJsonType& j, T& val) const
noexcept(noexcept(from_json(j, val)))
-> decltype(from_json(j, val), void())
{
return from_json(j, val);
}
};
} // namespace detail
/// namespace to hold default `from_json` function
/// to see why this is required:
/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html
namespace
{
constexpr const auto& from_json = detail::static_const<detail::from_json_fn>::value;
} // namespace
} // namespace nlohmann
// #include <nlohmann/detail/conversions/to_json.hpp>
#include <algorithm> // copy
#include <ciso646> // or, and, not
#include <iterator> // begin, end
#include <string> // string
#include <tuple> // tuple, get
#include <type_traits> // is_same, is_constructible, is_floating_point, is_enum, underlying_type
#include <utility> // move, forward, declval, pair
#include <valarray> // valarray
#include <vector> // vector
// #include <nlohmann/detail/iterators/iteration_proxy.hpp>
#include <cstddef> // size_t
#include <iterator> // input_iterator_tag
#include <string> // string, to_string
#include <tuple> // tuple_size, get, tuple_element
// #include <nlohmann/detail/meta/type_traits.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
template<typename string_type>
void int_to_string( string_type& target, std::size_t value )
{
target = std::to_string(value);
}
template <typename IteratorType> class iteration_proxy_value
{
public:
using difference_type = std::ptrdiff_t;
using value_type = iteration_proxy_value;
using pointer = value_type * ;
using reference = value_type & ;
using iterator_category = std::input_iterator_tag;
using string_type = typename std::remove_cv< typename std::remove_reference<decltype( std::declval<IteratorType>().key() ) >::type >::type;
private:
/// the iterator
IteratorType anchor;
/// an index for arrays (used to create key names)
std::size_t array_index = 0;
/// last stringified array index
mutable std::size_t array_index_last = 0;
/// a string representation of the array index
mutable string_type array_index_str = "0";
/// an empty string (to return a reference for primitive values)
const string_type empty_str = "";
public:
explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {}
/// dereference operator (needed for range-based for)
iteration_proxy_value& operator*()
{
return *this;
}
/// increment operator (needed for range-based for)
iteration_proxy_value& operator++()
{
++anchor;
++array_index;
return *this;
}
/// equality operator (needed for InputIterator)
bool operator==(const iteration_proxy_value& o) const
{
return anchor == o.anchor;
}
/// inequality operator (needed for range-based for)
bool operator!=(const iteration_proxy_value& o) const
{
return anchor != o.anchor;
}
/// return key of the iterator
const string_type& key() const
{
assert(anchor.m_object != nullptr);
switch (anchor.m_object->type())
{
// use integer array index as key
case value_t::array:
{
if (array_index != array_index_last)
{
int_to_string( array_index_str, array_index );
array_index_last = array_index;
}
return array_index_str;
}
// use key from the object
case value_t::object:
return anchor.key();
// use an empty key for all primitive types
default:
return empty_str;
}
}
/// return value of the iterator
typename IteratorType::reference value() const
{
return anchor.value();
}
};
/// proxy class for the items() function
template<typename IteratorType> class iteration_proxy
{
private:
/// the container to iterate
typename IteratorType::reference container;
public:
/// construct iteration proxy from a container
explicit iteration_proxy(typename IteratorType::reference cont) noexcept
: container(cont) {}
/// return iterator begin (needed for range-based for)
iteration_proxy_value<IteratorType> begin() noexcept
{
return iteration_proxy_value<IteratorType>(container.begin());
}
/// return iterator end (needed for range-based for)
iteration_proxy_value<IteratorType> end() noexcept
{
return iteration_proxy_value<IteratorType>(container.end());
}
};
// Structured Bindings Support
// For further reference see https://blog.tartanllama.xyz/structured-bindings/
// And see https://github.com/nlohmann/json/pull/1391
template <std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0>
auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key())
{
return i.key();
}
// Structured Bindings Support
// For further reference see https://blog.tartanllama.xyz/structured-bindings/
// And see https://github.com/nlohmann/json/pull/1391
template <std::size_t N, typename IteratorType, enable_if_t<N == 1, int> = 0>
auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.value())
{
return i.value();
}
} // namespace detail
} // namespace nlohmann
// The Addition to the STD Namespace is required to add
// Structured Bindings Support to the iteration_proxy_value class
// For further reference see https://blog.tartanllama.xyz/structured-bindings/
// And see https://github.com/nlohmann/json/pull/1391
namespace std
{
#if defined(__clang__)
// Fix: https://github.com/nlohmann/json/issues/1401
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
template <typename IteratorType>
class tuple_size<::nlohmann::detail::iteration_proxy_value<IteratorType>>
: public std::integral_constant<std::size_t, 2> {};
template <std::size_t N, typename IteratorType>
class tuple_element<N, ::nlohmann::detail::iteration_proxy_value<IteratorType >>
{
public:
using type = decltype(
get<N>(std::declval <
::nlohmann::detail::iteration_proxy_value<IteratorType >> ()));
};
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
} // namespace std
// #include <nlohmann/detail/meta/cpp_future.hpp>
// #include <nlohmann/detail/meta/type_traits.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
//////////////////
// constructors //
//////////////////
template<value_t> struct external_constructor;
template<>
struct external_constructor<value_t::boolean>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept
{
j.m_type = value_t::boolean;
j.m_value = b;
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::string>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s)
{
j.m_type = value_t::string;
j.m_value = s;
j.assert_invariant();
}
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s)
{
j.m_type = value_t::string;
j.m_value = std::move(s);
j.assert_invariant();
}
template<typename BasicJsonType, typename CompatibleStringType,
enable_if_t<not std::is_same<CompatibleStringType, typename BasicJsonType::string_t>::value,
int> = 0>
static void construct(BasicJsonType& j, const CompatibleStringType& str)
{
j.m_type = value_t::string;
j.m_value.string = j.template create<typename BasicJsonType::string_t>(str);
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::number_float>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::number_float_t val) noexcept
{
j.m_type = value_t::number_float;
j.m_value = val;
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::number_unsigned>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept
{
j.m_type = value_t::number_unsigned;
j.m_value = val;
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::number_integer>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::number_integer_t val) noexcept
{
j.m_type = value_t::number_integer;
j.m_value = val;
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::array>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, const typename BasicJsonType::array_t& arr)
{
j.m_type = value_t::array;
j.m_value = arr;
j.assert_invariant();
}
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::array_t&& arr)
{
j.m_type = value_t::array;
j.m_value = std::move(arr);
j.assert_invariant();
}
template<typename BasicJsonType, typename CompatibleArrayType,
enable_if_t<not std::is_same<CompatibleArrayType, typename BasicJsonType::array_t>::value,
int> = 0>
static void construct(BasicJsonType& j, const CompatibleArrayType& arr)
{
using std::begin;
using std::end;
j.m_type = value_t::array;
j.m_value.array = j.template create<typename BasicJsonType::array_t>(begin(arr), end(arr));
j.assert_invariant();
}
template<typename BasicJsonType>
static void construct(BasicJsonType& j, const std::vector<bool>& arr)
{
j.m_type = value_t::array;
j.m_value = value_t::array;
j.m_value.array->reserve(arr.size());
for (const bool x : arr)
{
j.m_value.array->push_back(x);
}
j.assert_invariant();
}
template<typename BasicJsonType, typename T,
enable_if_t<std::is_convertible<T, BasicJsonType>::value, int> = 0>
static void construct(BasicJsonType& j, const std::valarray<T>& arr)
{
j.m_type = value_t::array;
j.m_value = value_t::array;
j.m_value.array->resize(arr.size());
if (arr.size() > 0)
{
std::copy(std::begin(arr), std::end(arr), j.m_value.array->begin());
}
j.assert_invariant();
}
};
template<>
struct external_constructor<value_t::object>
{
template<typename BasicJsonType>
static void construct(BasicJsonType& j, const typename BasicJsonType::object_t& obj)
{
j.m_type = value_t::object;
j.m_value = obj;
j.assert_invariant();
}
template<typename BasicJsonType>
static void construct(BasicJsonType& j, typename BasicJsonType::object_t&& obj)
{
j.m_type = value_t::object;
j.m_value = std::move(obj);
j.assert_invariant();
}
template<typename BasicJsonType, typename CompatibleObjectType,
enable_if_t<not std::is_same<CompatibleObjectType, typename BasicJsonType::object_t>::value, int> = 0>
static void construct(BasicJsonType& j, const CompatibleObjectType& obj)
{
using std::begin;
using std::end;
j.m_type = value_t::object;
j.m_value.object = j.template create<typename BasicJsonType::object_t>(begin(obj), end(obj));
j.assert_invariant();
}
};
/////////////
// to_json //
/////////////
template<typename BasicJsonType, typename T,
enable_if_t<std::is_same<T, typename BasicJsonType::boolean_t>::value, int> = 0>
void to_json(BasicJsonType& j, T b) noexcept
{
external_constructor<value_t::boolean>::construct(j, b);
}
template<typename BasicJsonType, typename CompatibleString,
enable_if_t<std::is_constructible<typename BasicJsonType::string_t, CompatibleString>::value, int> = 0>
void to_json(BasicJsonType& j, const CompatibleString& s)
{
external_constructor<value_t::string>::construct(j, s);
}
template<typename BasicJsonType>
void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s)
{
external_constructor<value_t::string>::construct(j, std::move(s));
}
template<typename BasicJsonType, typename FloatType,
enable_if_t<std::is_floating_point<FloatType>::value, int> = 0>
void to_json(BasicJsonType& j, FloatType val) noexcept
{
external_constructor<value_t::number_float>::construct(j, static_cast<typename BasicJsonType::number_float_t>(val));
}
template<typename BasicJsonType, typename CompatibleNumberUnsignedType,
enable_if_t<is_compatible_integer_type<typename BasicJsonType::number_unsigned_t, CompatibleNumberUnsignedType>::value, int> = 0>
void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept
{
external_constructor<value_t::number_unsigned>::construct(j, static_cast<typename BasicJsonType::number_unsigned_t>(val));
}
template<typename BasicJsonType, typename CompatibleNumberIntegerType,
enable_if_t<is_compatible_integer_type<typename BasicJsonType::number_integer_t, CompatibleNumberIntegerType>::value, int> = 0>
void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept
{
external_constructor<value_t::number_integer>::construct(j, static_cast<typename BasicJsonType::number_integer_t>(val));
}
template<typename BasicJsonType, typename EnumType,
enable_if_t<std::is_enum<EnumType>::value, int> = 0>
void to_json(BasicJsonType& j, EnumType e) noexcept
{
using underlying_type = typename std::underlying_type<EnumType>::type;
external_constructor<value_t::number_integer>::construct(j, static_cast<underlying_type>(e));
}
template<typename BasicJsonType>
void to_json(BasicJsonType& j, const std::vector<bool>& e)
{
external_constructor<value_t::array>::construct(j, e);
}
template <typename BasicJsonType, typename CompatibleArrayType,
enable_if_t<is_compatible_array_type<BasicJsonType,
CompatibleArrayType>::value and
not is_compatible_object_type<
BasicJsonType, CompatibleArrayType>::value and
not is_compatible_string_type<BasicJsonType, CompatibleArrayType>::value and
not is_basic_json<CompatibleArrayType>::value,
int> = 0>
void to_json(BasicJsonType& j, const CompatibleArrayType& arr)
{
external_constructor<value_t::array>::construct(j, arr);
}
template<typename BasicJsonType, typename T,
enable_if_t<std::is_convertible<T, BasicJsonType>::value, int> = 0>
void to_json(BasicJsonType& j, const std::valarray<T>& arr)
{
external_constructor<value_t::array>::construct(j, std::move(arr));
}
template<typename BasicJsonType>
void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr)
{
external_constructor<value_t::array>::construct(j, std::move(arr));
}
template<typename BasicJsonType, typename CompatibleObjectType,
enable_if_t<is_compatible_object_type<BasicJsonType, CompatibleObjectType>::value and not is_basic_json<CompatibleObjectType>::value, int> = 0>
void to_json(BasicJsonType& j, const CompatibleObjectType& obj)
{
external_constructor<value_t::object>::construct(j, obj);
}
template<typename BasicJsonType>
void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj)
{
external_constructor<value_t::object>::construct(j, std::move(obj));
}
template <
typename BasicJsonType, typename T, std::size_t N,
enable_if_t<not std::is_constructible<typename BasicJsonType::string_t,
const T(&)[N]>::value,
int> = 0 >
void to_json(BasicJsonType& j, const T(&arr)[N])
{
external_constructor<value_t::array>::construct(j, arr);
}
template < typename BasicJsonType, typename T1, typename T2, enable_if_t < std::is_constructible<BasicJsonType, T1>::value&& std::is_constructible<BasicJsonType, T2>::value, int > = 0 >
void to_json(BasicJsonType& j, const std::pair<T1, T2>& p)
{
j = { p.first, p.second };
}
// for https://github.com/nlohmann/json/pull/1134
template < typename BasicJsonType, typename T,
enable_if_t<std::is_same<T, iteration_proxy_value<typename BasicJsonType::iterator>>::value, int> = 0>
void to_json(BasicJsonType& j, const T& b)
{
j = { {b.key(), b.value()} };
}
template<typename BasicJsonType, typename Tuple, std::size_t... Idx>
void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence<Idx...> /*unused*/)
{
j = { std::get<Idx>(t)... };
}
template<typename BasicJsonType, typename T, enable_if_t<is_constructible_tuple<BasicJsonType, T>::value, int > = 0>
void to_json(BasicJsonType& j, const T& t)
{
to_json_tuple_impl(j, t, make_index_sequence<std::tuple_size<T>::value> {});
}
struct to_json_fn
{
template<typename BasicJsonType, typename T>
auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward<T>(val))))
-> decltype(to_json(j, std::forward<T>(val)), void())
{
return to_json(j, std::forward<T>(val));
}
};
} // namespace detail
/// namespace to hold default `to_json` function
namespace
{
constexpr const auto& to_json = detail::static_const<detail::to_json_fn>::value;
} // namespace
} // namespace nlohmann
namespace nlohmann
{
template<typename, typename>
struct adl_serializer
{
/*!
@brief convert a JSON value to any value type
This function is usually called by the `get()` function of the
@ref basic_json class (either explicit or via conversion operators).
@param[in] j JSON value to read from
@param[in,out] val value to write to
*/
template<typename BasicJsonType, typename ValueType>
static auto from_json(BasicJsonType&& j, ValueType& val) noexcept(
noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val)))
-> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
{
::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
}
/*!
@brief convert any value type to a JSON value
This function is usually called by the constructors of the @ref basic_json
class.
@param[in,out] j JSON value to write to
@param[in] val value to read from
*/
template <typename BasicJsonType, typename ValueType>
static auto to_json(BasicJsonType& j, ValueType&& val) noexcept(
noexcept(::nlohmann::to_json(j, std::forward<ValueType>(val))))
-> decltype(::nlohmann::to_json(j, std::forward<ValueType>(val)), void())
{
::nlohmann::to_json(j, std::forward<ValueType>(val));
}
};
} // namespace nlohmann
// #include <nlohmann/detail/conversions/from_json.hpp>
// #include <nlohmann/detail/conversions/to_json.hpp>
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/input/binary_reader.hpp>
#include <algorithm> // generate_n
#include <array> // array
#include <cassert> // assert
#include <cmath> // ldexp
#include <cstddef> // size_t
#include <cstdint> // uint8_t, uint16_t, uint32_t, uint64_t
#include <cstdio> // snprintf
#include <cstring> // memcpy
#include <iterator> // back_inserter
#include <limits> // numeric_limits
#include <string> // char_traits, string
#include <utility> // make_pair, move
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/input/input_adapters.hpp>
#include <array> // array
#include <cassert> // assert
#include <cstddef> // size_t
#include <cstdio> //FILE *
#include <cstring> // strlen
#include <istream> // istream
#include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
#include <memory> // shared_ptr, make_shared, addressof
#include <numeric> // accumulate
#include <string> // string, char_traits
#include <type_traits> // enable_if, is_base_of, is_pointer, is_integral, remove_pointer
#include <utility> // pair, declval
// #include <nlohmann/detail/iterators/iterator_traits.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
namespace nlohmann
{
namespace detail
{
/// the supported input formats
enum class input_format_t { json, cbor, msgpack, ubjson, bson };
////////////////////
// input adapters //
////////////////////
/*!
@brief abstract input adapter interface
Produces a stream of std::char_traits<char>::int_type characters from a
std::istream, a buffer, or some other input type. Accepts the return of
exactly one non-EOF character for future input. The int_type characters
returned consist of all valid char values as positive values (typically
unsigned char), plus an EOF value outside that range, specified by the value
of the function std::char_traits<char>::eof(). This value is typically -1, but
could be any arbitrary value which is not a valid char value.
*/
struct input_adapter_protocol
{
/// get a character [0,255] or std::char_traits<char>::eof().
virtual std::char_traits<char>::int_type get_character() = 0;
virtual ~input_adapter_protocol() = default;
};
/// a type to simplify interfaces
using input_adapter_t = std::shared_ptr<input_adapter_protocol>;
/*!
Input adapter for stdio file access. This adapter read only 1 byte and do not use any
buffer. This adapter is a very low level adapter.
*/
class file_input_adapter : public input_adapter_protocol
{
public:
JSON_HEDLEY_NON_NULL(2)
explicit file_input_adapter(std::FILE* f) noexcept
: m_file(f)
{}
// make class move-only
file_input_adapter(const file_input_adapter&) = delete;
file_input_adapter(file_input_adapter&&) = default;
file_input_adapter& operator=(const file_input_adapter&) = delete;
file_input_adapter& operator=(file_input_adapter&&) = default;
~file_input_adapter() override = default;
std::char_traits<char>::int_type get_character() noexcept override
{
return std::fgetc(m_file);
}
private:
/// the file pointer to read from
std::FILE* m_file;
};
/*!
Input adapter for a (caching) istream. Ignores a UFT Byte Order Mark at
beginning of input. Does not support changing the underlying std::streambuf
in mid-input. Maintains underlying std::istream and std::streambuf to support
subsequent use of standard std::istream operations to process any input
characters following those used in parsing the JSON input. Clears the
std::istream flags; any input errors (e.g., EOF) will be detected by the first
subsequent call for input from the std::istream.
*/
class input_stream_adapter : public input_adapter_protocol
{
public:
~input_stream_adapter() override
{
// clear stream flags; we use underlying streambuf I/O, do not
// maintain ifstream flags, except eof
is.clear(is.rdstate() & std::ios::eofbit);
}
explicit input_stream_adapter(std::istream& i)
: is(i), sb(*i.rdbuf())
{}
// delete because of pointer members
input_stream_adapter(const input_stream_adapter&) = delete;
input_stream_adapter& operator=(input_stream_adapter&) = delete;
input_stream_adapter(input_stream_adapter&&) = delete;
input_stream_adapter& operator=(input_stream_adapter&&) = delete;
// std::istream/std::streambuf use std::char_traits<char>::to_int_type, to
// ensure that std::char_traits<char>::eof() and the character 0xFF do not
// end up as the same value, eg. 0xFFFFFFFF.
std::char_traits<char>::int_type get_character() override
{
auto res = sb.sbumpc();
// set eof manually, as we don't use the istream interface.
if (res == EOF)
{
is.clear(is.rdstate() | std::ios::eofbit);
}
return res;
}
private:
/// the associated input stream
std::istream& is;
std::streambuf& sb;
};
/// input adapter for buffer input
class input_buffer_adapter : public input_adapter_protocol
{
public:
input_buffer_adapter(const char* b, const std::size_t l) noexcept
: cursor(b), limit(b == nullptr ? nullptr : (b + l))
{}
// delete because of pointer members
input_buffer_adapter(const input_buffer_adapter&) = delete;
input_buffer_adapter& operator=(input_buffer_adapter&) = delete;
input_buffer_adapter(input_buffer_adapter&&) = delete;
input_buffer_adapter& operator=(input_buffer_adapter&&) = delete;
~input_buffer_adapter() override = default;
std::char_traits<char>::int_type get_character() noexcept override
{
if (JSON_HEDLEY_LIKELY(cursor < limit))
{
assert(cursor != nullptr and limit != nullptr);
return std::char_traits<char>::to_int_type(*(cursor++));
}
return std::char_traits<char>::eof();
}
private:
/// pointer to the current character
const char* cursor;
/// pointer past the last character
const char* const limit;
};
template<typename WideStringType, size_t T>
struct wide_string_input_helper
{
// UTF-32
static void fill_buffer(const WideStringType& str,
size_t& current_wchar,
std::array<std::char_traits<char>::int_type, 4>& utf8_bytes,
size_t& utf8_bytes_index,
size_t& utf8_bytes_filled)
{
utf8_bytes_index = 0;
if (current_wchar == str.size())
{
utf8_bytes[0] = std::char_traits<char>::eof();
utf8_bytes_filled = 1;
}
else
{
// get the current character
const auto wc = static_cast<unsigned int>(str[current_wchar++]);
// UTF-32 to UTF-8 encoding
if (wc < 0x80)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(wc);
utf8_bytes_filled = 1;
}
else if (wc <= 0x7FF)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xC0u | ((wc >> 6u) & 0x1Fu));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | (wc & 0x3Fu));
utf8_bytes_filled = 2;
}
else if (wc <= 0xFFFF)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xE0u | ((wc >> 12u) & 0x0Fu));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | ((wc >> 6u) & 0x3Fu));
utf8_bytes[2] = static_cast<std::char_traits<char>::int_type>(0x80u | (wc & 0x3Fu));
utf8_bytes_filled = 3;
}
else if (wc <= 0x10FFFF)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xF0u | ((wc >> 18u) & 0x07u));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | ((wc >> 12u) & 0x3Fu));
utf8_bytes[2] = static_cast<std::char_traits<char>::int_type>(0x80u | ((wc >> 6u) & 0x3Fu));
utf8_bytes[3] = static_cast<std::char_traits<char>::int_type>(0x80u | (wc & 0x3Fu));
utf8_bytes_filled = 4;
}
else
{
// unknown character
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(wc);
utf8_bytes_filled = 1;
}
}
}
};
template<typename WideStringType>
struct wide_string_input_helper<WideStringType, 2>
{
// UTF-16
static void fill_buffer(const WideStringType& str,
size_t& current_wchar,
std::array<std::char_traits<char>::int_type, 4>& utf8_bytes,
size_t& utf8_bytes_index,
size_t& utf8_bytes_filled)
{
utf8_bytes_index = 0;
if (current_wchar == str.size())
{
utf8_bytes[0] = std::char_traits<char>::eof();
utf8_bytes_filled = 1;
}
else
{
// get the current character
const auto wc = static_cast<unsigned int>(str[current_wchar++]);
// UTF-16 to UTF-8 encoding
if (wc < 0x80)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(wc);
utf8_bytes_filled = 1;
}
else if (wc <= 0x7FF)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xC0u | ((wc >> 6u)));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | (wc & 0x3Fu));
utf8_bytes_filled = 2;
}
else if (0xD800 > wc or wc >= 0xE000)
{
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xE0u | ((wc >> 12u)));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | ((wc >> 6u) & 0x3Fu));
utf8_bytes[2] = static_cast<std::char_traits<char>::int_type>(0x80u | (wc & 0x3Fu));
utf8_bytes_filled = 3;
}
else
{
if (current_wchar < str.size())
{
const auto wc2 = static_cast<unsigned int>(str[current_wchar++]);
const auto charcode = 0x10000u + (((wc & 0x3FFu) << 10u) | (wc2 & 0x3FFu));
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(0xF0u | (charcode >> 18u));
utf8_bytes[1] = static_cast<std::char_traits<char>::int_type>(0x80u | ((charcode >> 12u) & 0x3Fu));
utf8_bytes[2] = static_cast<std::char_traits<char>::int_type>(0x80u | ((charcode >> 6u) & 0x3Fu));
utf8_bytes[3] = static_cast<std::char_traits<char>::int_type>(0x80u | (charcode & 0x3Fu));
utf8_bytes_filled = 4;
}
else
{
// unknown character
++current_wchar;
utf8_bytes[0] = static_cast<std::char_traits<char>::int_type>(wc);
utf8_bytes_filled = 1;
}
}
}
}
};
template<typename WideStringType>
class wide_string_input_adapter : public input_adapter_protocol
{
public:
explicit wide_string_input_adapter(const WideStringType& w) noexcept
: str(w)
{}
std::char_traits<char>::int_type get_character() noexcept override
{
// check if buffer needs to be filled
if (utf8_bytes_index == utf8_bytes_filled)
{
fill_buffer<sizeof(typename WideStringType::value_type)>();
assert(utf8_bytes_filled > 0);
assert(utf8_bytes_index == 0);
}
// use buffer
assert(utf8_bytes_filled > 0);
assert(utf8_bytes_index < utf8_bytes_filled);
return utf8_bytes[utf8_bytes_index++];
}
private:
template<size_t T>
void fill_buffer()
{
wide_string_input_helper<WideStringType, T>::fill_buffer(str, current_wchar, utf8_bytes, utf8_bytes_index, utf8_bytes_filled);
}
/// the wstring to process
const WideStringType& str;
/// index of the current wchar in str
std::size_t current_wchar = 0;
/// a buffer for UTF-8 bytes
std::array<std::char_traits<char>::int_type, 4> utf8_bytes = {{0, 0, 0, 0}};
/// index to the utf8_codes array for the next valid byte
std::size_t utf8_bytes_index = 0;
/// number of valid bytes in the utf8_codes array
std::size_t utf8_bytes_filled = 0;
};
class input_adapter
{
public:
// native support
JSON_HEDLEY_NON_NULL(2)
input_adapter(std::FILE* file)
: ia(std::make_shared<file_input_adapter>(file)) {}
/// input adapter for input stream
input_adapter(std::istream& i)
: ia(std::make_shared<input_stream_adapter>(i)) {}
/// input adapter for input stream
input_adapter(std::istream&& i)
: ia(std::make_shared<input_stream_adapter>(i)) {}
input_adapter(const std::wstring& ws)
: ia(std::make_shared<wide_string_input_adapter<std::wstring>>(ws)) {}
input_adapter(const std::u16string& ws)
: ia(std::make_shared<wide_string_input_adapter<std::u16string>>(ws)) {}
input_adapter(const std::u32string& ws)
: ia(std::make_shared<wide_string_input_adapter<std::u32string>>(ws)) {}
/// input adapter for buffer
template<typename CharT,
typename std::enable_if<
std::is_pointer<CharT>::value and
std::is_integral<typename std::remove_pointer<CharT>::type>::value and
sizeof(typename std::remove_pointer<CharT>::type) == 1,
int>::type = 0>
input_adapter(CharT b, std::size_t l)
: ia(std::make_shared<input_buffer_adapter>(reinterpret_cast<const char*>(b), l)) {}
// derived support
/// input adapter for string literal
template<typename CharT,
typename std::enable_if<
std::is_pointer<CharT>::value and
std::is_integral<typename std::remove_pointer<CharT>::type>::value and
sizeof(typename std::remove_pointer<CharT>::type) == 1,
int>::type = 0>
input_adapter(CharT b)
: input_adapter(reinterpret_cast<const char*>(b),
std::strlen(reinterpret_cast<const char*>(b))) {}
/// input adapter for iterator range with contiguous storage
template<class IteratorType,
typename std::enable_if<
std::is_same<typename iterator_traits<IteratorType>::iterator_category, std::random_access_iterator_tag>::value,
int>::type = 0>
input_adapter(IteratorType first, IteratorType last)
{
#ifndef NDEBUG
// assertion to check that the iterator range is indeed contiguous,
// see http://stackoverflow.com/a/35008842/266378 for more discussion
const auto is_contiguous = std::accumulate(
first, last, std::pair<bool, int>(true, 0),
[&first](std::pair<bool, int> res, decltype(*first) val)
{
res.first &= (val == *(std::next(std::addressof(*first), res.second++)));
return res;
}).first;
assert(is_contiguous);
#endif
// assertion to check that each element is 1 byte long
static_assert(
sizeof(typename iterator_traits<IteratorType>::value_type) == 1,
"each element in the iterator range must have the size of 1 byte");
const auto len = static_cast<size_t>(std::distance(first, last));
if (JSON_HEDLEY_LIKELY(len > 0))
{
// there is at least one element: use the address of first
ia = std::make_shared<input_buffer_adapter>(reinterpret_cast<const char*>(&(*first)), len);
}
else
{
// the address of first cannot be used: use nullptr
ia = std::make_shared<input_buffer_adapter>(nullptr, len);
}
}
/// input adapter for array
template<class T, std::size_t N>
input_adapter(T (&array)[N])
: input_adapter(std::begin(array), std::end(array)) {}
/// input adapter for contiguous container
template<class ContiguousContainer, typename
std::enable_if<not std::is_pointer<ContiguousContainer>::value and
std::is_base_of<std::random_access_iterator_tag, typename iterator_traits<decltype(std::begin(std::declval<ContiguousContainer const>()))>::iterator_category>::value,
int>::type = 0>
input_adapter(const ContiguousContainer& c)
: input_adapter(std::begin(c), std::end(c)) {}
operator input_adapter_t()
{
return ia;
}
private:
/// the actual adapter
input_adapter_t ia = nullptr;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/input/json_sax.hpp>
#include <cassert> // assert
#include <cstddef>
#include <string> // string
#include <utility> // move
#include <vector> // vector
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
namespace nlohmann
{
/*!
@brief SAX interface
This class describes the SAX interface used by @ref nlohmann::json::sax_parse.
Each function is called in different situations while the input is parsed. The
boolean return value informs the parser whether to continue processing the
input.
*/
template<typename BasicJsonType>
struct json_sax
{
/// type for (signed) integers
using number_integer_t = typename BasicJsonType::number_integer_t;
/// type for unsigned integers
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
/// type for floating-point numbers
using number_float_t = typename BasicJsonType::number_float_t;
/// type for strings
using string_t = typename BasicJsonType::string_t;
/*!
@brief a null value was read
@return whether parsing should proceed
*/
virtual bool null() = 0;
/*!
@brief a boolean value was read
@param[in] val boolean value
@return whether parsing should proceed
*/
virtual bool boolean(bool val) = 0;
/*!
@brief an integer number was read
@param[in] val integer value
@return whether parsing should proceed
*/
virtual bool number_integer(number_integer_t val) = 0;
/*!
@brief an unsigned integer number was read
@param[in] val unsigned integer value
@return whether parsing should proceed
*/
virtual bool number_unsigned(number_unsigned_t val) = 0;
/*!
@brief an floating-point number was read
@param[in] val floating-point value
@param[in] s raw token value
@return whether parsing should proceed
*/
virtual bool number_float(number_float_t val, const string_t& s) = 0;
/*!
@brief a string was read
@param[in] val string value
@return whether parsing should proceed
@note It is safe to move the passed string.
*/
virtual bool string(string_t& val) = 0;
/*!
@brief the beginning of an object was read
@param[in] elements number of object elements or -1 if unknown
@return whether parsing should proceed
@note binary formats may report the number of elements
*/
virtual bool start_object(std::size_t elements) = 0;
/*!
@brief an object key was read
@param[in] val object key
@return whether parsing should proceed
@note It is safe to move the passed string.
*/
virtual bool key(string_t& val) = 0;
/*!
@brief the end of an object was read
@return whether parsing should proceed
*/
virtual bool end_object() = 0;
/*!
@brief the beginning of an array was read
@param[in] elements number of array elements or -1 if unknown
@return whether parsing should proceed
@note binary formats may report the number of elements
*/
virtual bool start_array(std::size_t elements) = 0;
/*!
@brief the end of an array was read
@return whether parsing should proceed
*/
virtual bool end_array() = 0;
/*!
@brief a parse error occurred
@param[in] position the position in the input where the error occurs
@param[in] last_token the last read token
@param[in] ex an exception object describing the error
@return whether parsing should proceed (must return false)
*/
virtual bool parse_error(std::size_t position,
const std::string& last_token,
const detail::exception& ex) = 0;
virtual ~json_sax() = default;
};
namespace detail
{
/*!
@brief SAX implementation to create a JSON value from SAX events
This class implements the @ref json_sax interface and processes the SAX events
to create a JSON value which makes it basically a DOM parser. The structure or
hierarchy of the JSON value is managed by the stack `ref_stack` which contains
a pointer to the respective array or object for each recursion depth.
After successful parsing, the value that is passed by reference to the
constructor contains the parsed value.
@tparam BasicJsonType the JSON type
*/
template<typename BasicJsonType>
class json_sax_dom_parser
{
public:
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
/*!
@param[in, out] r reference to a JSON value that is manipulated while
parsing
@param[in] allow_exceptions_ whether parse errors yield exceptions
*/
explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true)
: root(r), allow_exceptions(allow_exceptions_)
{}
// make class move-only
json_sax_dom_parser(const json_sax_dom_parser&) = delete;
json_sax_dom_parser(json_sax_dom_parser&&) = default;
json_sax_dom_parser& operator=(const json_sax_dom_parser&) = delete;
json_sax_dom_parser& operator=(json_sax_dom_parser&&) = default;
~json_sax_dom_parser() = default;
bool null()
{
handle_value(nullptr);
return true;
}
bool boolean(bool val)
{
handle_value(val);
return true;
}
bool number_integer(number_integer_t val)
{
handle_value(val);
return true;
}
bool number_unsigned(number_unsigned_t val)
{
handle_value(val);
return true;
}
bool number_float(number_float_t val, const string_t& /*unused*/)
{
handle_value(val);
return true;
}
bool string(string_t& val)
{
handle_value(val);
return true;
}
bool start_object(std::size_t len)
{
ref_stack.push_back(handle_value(BasicJsonType::value_t::object));
if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) and len > ref_stack.back()->max_size()))
{
JSON_THROW(out_of_range::create(408,
"excessive object size: " + std::to_string(len)));
}
return true;
}
bool key(string_t& val)
{
// add null at given key and store the reference for later
object_element = &(ref_stack.back()->m_value.object->operator[](val));
return true;
}
bool end_object()
{
ref_stack.pop_back();
return true;
}
bool start_array(std::size_t len)
{
ref_stack.push_back(handle_value(BasicJsonType::value_t::array));
if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) and len > ref_stack.back()->max_size()))
{
JSON_THROW(out_of_range::create(408,
"excessive array size: " + std::to_string(len)));
}
return true;
}
bool end_array()
{
ref_stack.pop_back();
return true;
}
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
const detail::exception& ex)
{
errored = true;
if (allow_exceptions)
{
// determine the proper exception type from the id
switch ((ex.id / 100) % 100)
{
case 1:
JSON_THROW(*static_cast<const detail::parse_error*>(&ex));
case 4:
JSON_THROW(*static_cast<const detail::out_of_range*>(&ex));
// LCOV_EXCL_START
case 2:
JSON_THROW(*static_cast<const detail::invalid_iterator*>(&ex));
case 3:
JSON_THROW(*static_cast<const detail::type_error*>(&ex));
case 5:
JSON_THROW(*static_cast<const detail::other_error*>(&ex));
default:
assert(false);
// LCOV_EXCL_STOP
}
}
return false;
}
constexpr bool is_errored() const
{
return errored;
}
private:
/*!
@invariant If the ref stack is empty, then the passed value will be the new
root.
@invariant If the ref stack contains a value, then it is an array or an
object to which we can add elements
*/
template<typename Value>
JSON_HEDLEY_RETURNS_NON_NULL
BasicJsonType* handle_value(Value&& v)
{
if (ref_stack.empty())
{
root = BasicJsonType(std::forward<Value>(v));
return &root;
}
assert(ref_stack.back()->is_array() or ref_stack.back()->is_object());
if (ref_stack.back()->is_array())
{
ref_stack.back()->m_value.array->emplace_back(std::forward<Value>(v));
return &(ref_stack.back()->m_value.array->back());
}
assert(ref_stack.back()->is_object());
assert(object_element);
*object_element = BasicJsonType(std::forward<Value>(v));
return object_element;
}
/// the parsed JSON value
BasicJsonType& root;
/// stack to model hierarchy of values
std::vector<BasicJsonType*> ref_stack {};
/// helper to hold the reference for the next object element
BasicJsonType* object_element = nullptr;
/// whether a syntax error occurred
bool errored = false;
/// whether to throw exceptions in case of errors
const bool allow_exceptions = true;
};
template<typename BasicJsonType>
class json_sax_dom_callback_parser
{
public:
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
using parser_callback_t = typename BasicJsonType::parser_callback_t;
using parse_event_t = typename BasicJsonType::parse_event_t;
json_sax_dom_callback_parser(BasicJsonType& r,
const parser_callback_t cb,
const bool allow_exceptions_ = true)
: root(r), callback(cb), allow_exceptions(allow_exceptions_)
{
keep_stack.push_back(true);
}
// make class move-only
json_sax_dom_callback_parser(const json_sax_dom_callback_parser&) = delete;
json_sax_dom_callback_parser(json_sax_dom_callback_parser&&) = default;
json_sax_dom_callback_parser& operator=(const json_sax_dom_callback_parser&) = delete;
json_sax_dom_callback_parser& operator=(json_sax_dom_callback_parser&&) = default;
~json_sax_dom_callback_parser() = default;
bool null()
{
handle_value(nullptr);
return true;
}
bool boolean(bool val)
{
handle_value(val);
return true;
}
bool number_integer(number_integer_t val)
{
handle_value(val);
return true;
}
bool number_unsigned(number_unsigned_t val)
{
handle_value(val);
return true;
}
bool number_float(number_float_t val, const string_t& /*unused*/)
{
handle_value(val);
return true;
}
bool string(string_t& val)
{
handle_value(val);
return true;
}
bool start_object(std::size_t len)
{
// check callback for object start
const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::object_start, discarded);
keep_stack.push_back(keep);
auto val = handle_value(BasicJsonType::value_t::object, true);
ref_stack.push_back(val.second);
// check object limit
if (ref_stack.back() and JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) and len > ref_stack.back()->max_size()))
{
JSON_THROW(out_of_range::create(408, "excessive object size: " + std::to_string(len)));
}
return true;
}
bool key(string_t& val)
{
BasicJsonType k = BasicJsonType(val);
// check callback for key
const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::key, k);
key_keep_stack.push_back(keep);
// add discarded value at given key and store the reference for later
if (keep and ref_stack.back())
{
object_element = &(ref_stack.back()->m_value.object->operator[](val) = discarded);
}
return true;
}
bool end_object()
{
if (ref_stack.back() and not callback(static_cast<int>(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back()))
{
// discard object
*ref_stack.back() = discarded;
}
assert(not ref_stack.empty());
assert(not keep_stack.empty());
ref_stack.pop_back();
keep_stack.pop_back();
if (not ref_stack.empty() and ref_stack.back() and ref_stack.back()->is_object())
{
// remove discarded value
for (auto it = ref_stack.back()->begin(); it != ref_stack.back()->end(); ++it)
{
if (it->is_discarded())
{
ref_stack.back()->erase(it);
break;
}
}
}
return true;
}
bool start_array(std::size_t len)
{
const bool keep = callback(static_cast<int>(ref_stack.size()), parse_event_t::array_start, discarded);
keep_stack.push_back(keep);
auto val = handle_value(BasicJsonType::value_t::array, true);
ref_stack.push_back(val.second);
// check array limit
if (ref_stack.back() and JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) and len > ref_stack.back()->max_size()))
{
JSON_THROW(out_of_range::create(408, "excessive array size: " + std::to_string(len)));
}
return true;
}
bool end_array()
{
bool keep = true;
if (ref_stack.back())
{
keep = callback(static_cast<int>(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back());
if (not keep)
{
// discard array
*ref_stack.back() = discarded;
}
}
assert(not ref_stack.empty());
assert(not keep_stack.empty());
ref_stack.pop_back();
keep_stack.pop_back();
// remove discarded value
if (not keep and not ref_stack.empty() and ref_stack.back()->is_array())
{
ref_stack.back()->m_value.array->pop_back();
}
return true;
}
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/,
const detail::exception& ex)
{
errored = true;
if (allow_exceptions)
{
// determine the proper exception type from the id
switch ((ex.id / 100) % 100)
{
case 1:
JSON_THROW(*static_cast<const detail::parse_error*>(&ex));
case 4:
JSON_THROW(*static_cast<const detail::out_of_range*>(&ex));
// LCOV_EXCL_START
case 2:
JSON_THROW(*static_cast<const detail::invalid_iterator*>(&ex));
case 3:
JSON_THROW(*static_cast<const detail::type_error*>(&ex));
case 5:
JSON_THROW(*static_cast<const detail::other_error*>(&ex));
default:
assert(false);
// LCOV_EXCL_STOP
}
}
return false;
}
constexpr bool is_errored() const
{
return errored;
}
private:
/*!
@param[in] v value to add to the JSON value we build during parsing
@param[in] skip_callback whether we should skip calling the callback
function; this is required after start_array() and
start_object() SAX events, because otherwise we would call the
callback function with an empty array or object, respectively.
@invariant If the ref stack is empty, then the passed value will be the new
root.
@invariant If the ref stack contains a value, then it is an array or an
object to which we can add elements
@return pair of boolean (whether value should be kept) and pointer (to the
passed value in the ref_stack hierarchy; nullptr if not kept)
*/
template<typename Value>
std::pair<bool, BasicJsonType*> handle_value(Value&& v, const bool skip_callback = false)
{
assert(not keep_stack.empty());
// do not handle this value if we know it would be added to a discarded
// container
if (not keep_stack.back())
{
return {false, nullptr};
}
// create value
auto value = BasicJsonType(std::forward<Value>(v));
// check callback
const bool keep = skip_callback or callback(static_cast<int>(ref_stack.size()), parse_event_t::value, value);
// do not handle this value if we just learnt it shall be discarded
if (not keep)
{
return {false, nullptr};
}
if (ref_stack.empty())
{
root = std::move(value);
return {true, &root};
}
// skip this value if we already decided to skip the parent
// (https://github.com/nlohmann/json/issues/971#issuecomment-413678360)
if (not ref_stack.back())
{
return {false, nullptr};
}
// we now only expect arrays and objects
assert(ref_stack.back()->is_array() or ref_stack.back()->is_object());
// array
if (ref_stack.back()->is_array())
{
ref_stack.back()->m_value.array->push_back(std::move(value));
return {true, &(ref_stack.back()->m_value.array->back())};
}
// object
assert(ref_stack.back()->is_object());
// check if we should store an element for the current key
assert(not key_keep_stack.empty());
const bool store_element = key_keep_stack.back();
key_keep_stack.pop_back();
if (not store_element)
{
return {false, nullptr};
}
assert(object_element);
*object_element = std::move(value);
return {true, object_element};
}
/// the parsed JSON value
BasicJsonType& root;
/// stack to model hierarchy of values
std::vector<BasicJsonType*> ref_stack {};
/// stack to manage which values to keep
std::vector<bool> keep_stack {};
/// stack to manage which object keys to keep
std::vector<bool> key_keep_stack {};
/// helper to hold the reference for the next object element
BasicJsonType* object_element = nullptr;
/// whether a syntax error occurred
bool errored = false;
/// callback function
const parser_callback_t callback = nullptr;
/// whether to throw exceptions in case of errors
const bool allow_exceptions = true;
/// a discarded value for the callback
BasicJsonType discarded = BasicJsonType::value_t::discarded;
};
template<typename BasicJsonType>
class json_sax_acceptor
{
public:
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
bool null()
{
return true;
}
bool boolean(bool /*unused*/)
{
return true;
}
bool number_integer(number_integer_t /*unused*/)
{
return true;
}
bool number_unsigned(number_unsigned_t /*unused*/)
{
return true;
}
bool number_float(number_float_t /*unused*/, const string_t& /*unused*/)
{
return true;
}
bool string(string_t& /*unused*/)
{
return true;
}
bool start_object(std::size_t /*unused*/ = std::size_t(-1))
{
return true;
}
bool key(string_t& /*unused*/)
{
return true;
}
bool end_object()
{
return true;
}
bool start_array(std::size_t /*unused*/ = std::size_t(-1))
{
return true;
}
bool end_array()
{
return true;
}
bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const detail::exception& /*unused*/)
{
return false;
}
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/is_sax.hpp>
#include <cstdint> // size_t
#include <utility> // declval
#include <string> // string
// #include <nlohmann/detail/meta/detected.hpp>
// #include <nlohmann/detail/meta/type_traits.hpp>
namespace nlohmann
{
namespace detail
{
template <typename T>
using null_function_t = decltype(std::declval<T&>().null());
template <typename T>
using boolean_function_t =
decltype(std::declval<T&>().boolean(std::declval<bool>()));
template <typename T, typename Integer>
using number_integer_function_t =
decltype(std::declval<T&>().number_integer(std::declval<Integer>()));
template <typename T, typename Unsigned>
using number_unsigned_function_t =
decltype(std::declval<T&>().number_unsigned(std::declval<Unsigned>()));
template <typename T, typename Float, typename String>
using number_float_function_t = decltype(std::declval<T&>().number_float(
std::declval<Float>(), std::declval<const String&>()));
template <typename T, typename String>
using string_function_t =
decltype(std::declval<T&>().string(std::declval<String&>()));
template <typename T>
using start_object_function_t =
decltype(std::declval<T&>().start_object(std::declval<std::size_t>()));
template <typename T, typename String>
using key_function_t =
decltype(std::declval<T&>().key(std::declval<String&>()));
template <typename T>
using end_object_function_t = decltype(std::declval<T&>().end_object());
template <typename T>
using start_array_function_t =
decltype(std::declval<T&>().start_array(std::declval<std::size_t>()));
template <typename T>
using end_array_function_t = decltype(std::declval<T&>().end_array());
template <typename T, typename Exception>
using parse_error_function_t = decltype(std::declval<T&>().parse_error(
std::declval<std::size_t>(), std::declval<const std::string&>(),
std::declval<const Exception&>()));
template <typename SAX, typename BasicJsonType>
struct is_sax
{
private:
static_assert(is_basic_json<BasicJsonType>::value,
"BasicJsonType must be of type basic_json<...>");
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
using exception_t = typename BasicJsonType::exception;
public:
static constexpr bool value =
is_detected_exact<bool, null_function_t, SAX>::value &&
is_detected_exact<bool, boolean_function_t, SAX>::value &&
is_detected_exact<bool, number_integer_function_t, SAX,
number_integer_t>::value &&
is_detected_exact<bool, number_unsigned_function_t, SAX,
number_unsigned_t>::value &&
is_detected_exact<bool, number_float_function_t, SAX, number_float_t,
string_t>::value &&
is_detected_exact<bool, string_function_t, SAX, string_t>::value &&
is_detected_exact<bool, start_object_function_t, SAX>::value &&
is_detected_exact<bool, key_function_t, SAX, string_t>::value &&
is_detected_exact<bool, end_object_function_t, SAX>::value &&
is_detected_exact<bool, start_array_function_t, SAX>::value &&
is_detected_exact<bool, end_array_function_t, SAX>::value &&
is_detected_exact<bool, parse_error_function_t, SAX, exception_t>::value;
};
template <typename SAX, typename BasicJsonType>
struct is_sax_static_asserts
{
private:
static_assert(is_basic_json<BasicJsonType>::value,
"BasicJsonType must be of type basic_json<...>");
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
using exception_t = typename BasicJsonType::exception;
public:
static_assert(is_detected_exact<bool, null_function_t, SAX>::value,
"Missing/invalid function: bool null()");
static_assert(is_detected_exact<bool, boolean_function_t, SAX>::value,
"Missing/invalid function: bool boolean(bool)");
static_assert(is_detected_exact<bool, boolean_function_t, SAX>::value,
"Missing/invalid function: bool boolean(bool)");
static_assert(
is_detected_exact<bool, number_integer_function_t, SAX,
number_integer_t>::value,
"Missing/invalid function: bool number_integer(number_integer_t)");
static_assert(
is_detected_exact<bool, number_unsigned_function_t, SAX,
number_unsigned_t>::value,
"Missing/invalid function: bool number_unsigned(number_unsigned_t)");
static_assert(is_detected_exact<bool, number_float_function_t, SAX,
number_float_t, string_t>::value,
"Missing/invalid function: bool number_float(number_float_t, const string_t&)");
static_assert(
is_detected_exact<bool, string_function_t, SAX, string_t>::value,
"Missing/invalid function: bool string(string_t&)");
static_assert(is_detected_exact<bool, start_object_function_t, SAX>::value,
"Missing/invalid function: bool start_object(std::size_t)");
static_assert(is_detected_exact<bool, key_function_t, SAX, string_t>::value,
"Missing/invalid function: bool key(string_t&)");
static_assert(is_detected_exact<bool, end_object_function_t, SAX>::value,
"Missing/invalid function: bool end_object()");
static_assert(is_detected_exact<bool, start_array_function_t, SAX>::value,
"Missing/invalid function: bool start_array(std::size_t)");
static_assert(is_detected_exact<bool, end_array_function_t, SAX>::value,
"Missing/invalid function: bool end_array()");
static_assert(
is_detected_exact<bool, parse_error_function_t, SAX, exception_t>::value,
"Missing/invalid function: bool parse_error(std::size_t, const "
"std::string&, const exception&)");
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
///////////////////
// binary reader //
///////////////////
/*!
@brief deserialization of CBOR, MessagePack, and UBJSON values
*/
template<typename BasicJsonType, typename SAX = json_sax_dom_parser<BasicJsonType>>
class binary_reader
{
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
using json_sax_t = SAX;
public:
/*!
@brief create a binary reader
@param[in] adapter input adapter to read from
*/
explicit binary_reader(input_adapter_t adapter) : ia(std::move(adapter))
{
(void)detail::is_sax_static_asserts<SAX, BasicJsonType> {};
assert(ia);
}
// make class move-only
binary_reader(const binary_reader&) = delete;
binary_reader(binary_reader&&) = default;
binary_reader& operator=(const binary_reader&) = delete;
binary_reader& operator=(binary_reader&&) = default;
~binary_reader() = default;
/*!
@param[in] format the binary format to parse
@param[in] sax_ a SAX event processor
@param[in] strict whether to expect the input to be consumed completed
@return
*/
JSON_HEDLEY_NON_NULL(3)
bool sax_parse(const input_format_t format,
json_sax_t* sax_,
const bool strict = true)
{
sax = sax_;
bool result = false;
switch (format)
{
case input_format_t::bson:
result = parse_bson_internal();
break;
case input_format_t::cbor:
result = parse_cbor_internal();
break;
case input_format_t::msgpack:
result = parse_msgpack_internal();
break;
case input_format_t::ubjson:
result = parse_ubjson_internal();
break;
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
// strict mode: next byte must be EOF
if (result and strict)
{
if (format == input_format_t::ubjson)
{
get_ignore_noop();
}
else
{
get();
}
if (JSON_HEDLEY_UNLIKELY(current != std::char_traits<char>::eof()))
{
return sax->parse_error(chars_read, get_token_string(),
parse_error::create(110, chars_read, exception_message(format, "expected end of input; last byte: 0x" + get_token_string(), "value")));
}
}
return result;
}
/*!
@brief determine system byte order
@return true if and only if system's byte order is little endian
@note from http://stackoverflow.com/a/1001328/266378
*/
static constexpr bool little_endianess(int num = 1) noexcept
{
return *reinterpret_cast<char*>(&num) == 1;
}
private:
//////////
// BSON //
//////////
/*!
@brief Reads in a BSON-object and passes it to the SAX-parser.
@return whether a valid BSON-value was passed to the SAX parser
*/
bool parse_bson_internal()
{
std::int32_t document_size;
get_number<std::int32_t, true>(input_format_t::bson, document_size);
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(std::size_t(-1))))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_bson_element_list(/*is_array*/false)))
{
return false;
}
return sax->end_object();
}
/*!
@brief Parses a C-style string from the BSON input.
@param[in, out] result A reference to the string variable where the read
string is to be stored.
@return `true` if the \x00-byte indicating the end of the string was
encountered before the EOF; false` indicates an unexpected EOF.
*/
bool get_bson_cstr(string_t& result)
{
auto out = std::back_inserter(result);
while (true)
{
get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::bson, "cstring")))
{
return false;
}
if (current == 0x00)
{
return true;
}
*out++ = static_cast<char>(current);
}
return true;
}
/*!
@brief Parses a zero-terminated string of length @a len from the BSON
input.
@param[in] len The length (including the zero-byte at the end) of the
string to be read.
@param[in, out] result A reference to the string variable where the read
string is to be stored.
@tparam NumberType The type of the length @a len
@pre len >= 1
@return `true` if the string was successfully parsed
*/
template<typename NumberType>
bool get_bson_string(const NumberType len, string_t& result)
{
if (JSON_HEDLEY_UNLIKELY(len < 1))
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "string length must be at least 1, is " + std::to_string(len), "string")));
}
return get_string(input_format_t::bson, len - static_cast<NumberType>(1), result) and get() != std::char_traits<char>::eof();
}
/*!
@brief Read a BSON document element of the given @a element_type.
@param[in] element_type The BSON element type, c.f. http://bsonspec.org/spec.html
@param[in] element_type_parse_position The position in the input stream,
where the `element_type` was read.
@warning Not all BSON element types are supported yet. An unsupported
@a element_type will give rise to a parse_error.114:
Unsupported BSON record type 0x...
@return whether a valid BSON-object/array was passed to the SAX parser
*/
bool parse_bson_element_internal(const int element_type,
const std::size_t element_type_parse_position)
{
switch (element_type)
{
case 0x01: // double
{
double number;
return get_number<double, true>(input_format_t::bson, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 0x02: // string
{
std::int32_t len;
string_t value;
return get_number<std::int32_t, true>(input_format_t::bson, len) and get_bson_string(len, value) and sax->string(value);
}
case 0x03: // object
{
return parse_bson_internal();
}
case 0x04: // array
{
return parse_bson_array();
}
case 0x08: // boolean
{
return sax->boolean(get() != 0);
}
case 0x0A: // null
{
return sax->null();
}
case 0x10: // int32
{
std::int32_t value;
return get_number<std::int32_t, true>(input_format_t::bson, value) and sax->number_integer(value);
}
case 0x12: // int64
{
std::int64_t value;
return get_number<std::int64_t, true>(input_format_t::bson, value) and sax->number_integer(value);
}
default: // anything else not supported (yet)
{
std::array<char, 3> cr{{}};
(std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast<unsigned char>(element_type));
return sax->parse_error(element_type_parse_position, std::string(cr.data()), parse_error::create(114, element_type_parse_position, "Unsupported BSON record type 0x" + std::string(cr.data())));
}
}
}
/*!
@brief Read a BSON element list (as specified in the BSON-spec)
The same binary layout is used for objects and arrays, hence it must be
indicated with the argument @a is_array which one is expected
(true --> array, false --> object).
@param[in] is_array Determines if the element list being read is to be
treated as an object (@a is_array == false), or as an
array (@a is_array == true).
@return whether a valid BSON-object/array was passed to the SAX parser
*/
bool parse_bson_element_list(const bool is_array)
{
string_t key;
while (int element_type = get())
{
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::bson, "element list")))
{
return false;
}
const std::size_t element_type_parse_position = chars_read;
if (JSON_HEDLEY_UNLIKELY(not get_bson_cstr(key)))
{
return false;
}
if (not is_array and not sax->key(key))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_bson_element_internal(element_type, element_type_parse_position)))
{
return false;
}
// get_bson_cstr only appends
key.clear();
}
return true;
}
/*!
@brief Reads an array from the BSON input and passes it to the SAX-parser.
@return whether a valid BSON-array was passed to the SAX parser
*/
bool parse_bson_array()
{
std::int32_t document_size;
get_number<std::int32_t, true>(input_format_t::bson, document_size);
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(std::size_t(-1))))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_bson_element_list(/*is_array*/true)))
{
return false;
}
return sax->end_array();
}
//////////
// CBOR //
//////////
/*!
@param[in] get_char whether a new character should be retrieved from the
input (true, default) or whether the last read
character should be considered instead
@return whether a valid CBOR value was passed to the SAX parser
*/
bool parse_cbor_internal(const bool get_char = true)
{
switch (get_char ? get() : current)
{
// EOF
case std::char_traits<char>::eof():
return unexpect_eof(input_format_t::cbor, "value");
// Integer 0x00..0x17 (0..23)
case 0x00:
case 0x01:
case 0x02:
case 0x03:
case 0x04:
case 0x05:
case 0x06:
case 0x07:
case 0x08:
case 0x09:
case 0x0A:
case 0x0B:
case 0x0C:
case 0x0D:
case 0x0E:
case 0x0F:
case 0x10:
case 0x11:
case 0x12:
case 0x13:
case 0x14:
case 0x15:
case 0x16:
case 0x17:
return sax->number_unsigned(static_cast<number_unsigned_t>(current));
case 0x18: // Unsigned integer (one-byte uint8_t follows)
{
std::uint8_t number;
return get_number(input_format_t::cbor, number) and sax->number_unsigned(number);
}
case 0x19: // Unsigned integer (two-byte uint16_t follows)
{
std::uint16_t number;
return get_number(input_format_t::cbor, number) and sax->number_unsigned(number);
}
case 0x1A: // Unsigned integer (four-byte uint32_t follows)
{
std::uint32_t number;
return get_number(input_format_t::cbor, number) and sax->number_unsigned(number);
}
case 0x1B: // Unsigned integer (eight-byte uint64_t follows)
{
std::uint64_t number;
return get_number(input_format_t::cbor, number) and sax->number_unsigned(number);
}
// Negative integer -1-0x00..-1-0x17 (-1..-24)
case 0x20:
case 0x21:
case 0x22:
case 0x23:
case 0x24:
case 0x25:
case 0x26:
case 0x27:
case 0x28:
case 0x29:
case 0x2A:
case 0x2B:
case 0x2C:
case 0x2D:
case 0x2E:
case 0x2F:
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
return sax->number_integer(static_cast<std::int8_t>(0x20 - 1 - current));
case 0x38: // Negative integer (one-byte uint8_t follows)
{
std::uint8_t number;
return get_number(input_format_t::cbor, number) and sax->number_integer(static_cast<number_integer_t>(-1) - number);
}
case 0x39: // Negative integer -1-n (two-byte uint16_t follows)
{
std::uint16_t number;
return get_number(input_format_t::cbor, number) and sax->number_integer(static_cast<number_integer_t>(-1) - number);
}
case 0x3A: // Negative integer -1-n (four-byte uint32_t follows)
{
std::uint32_t number;
return get_number(input_format_t::cbor, number) and sax->number_integer(static_cast<number_integer_t>(-1) - number);
}
case 0x3B: // Negative integer -1-n (eight-byte uint64_t follows)
{
std::uint64_t number;
return get_number(input_format_t::cbor, number) and sax->number_integer(static_cast<number_integer_t>(-1)
- static_cast<number_integer_t>(number));
}
// UTF-8 string (0x00..0x17 bytes follow)
case 0x60:
case 0x61:
case 0x62:
case 0x63:
case 0x64:
case 0x65:
case 0x66:
case 0x67:
case 0x68:
case 0x69:
case 0x6A:
case 0x6B:
case 0x6C:
case 0x6D:
case 0x6E:
case 0x6F:
case 0x70:
case 0x71:
case 0x72:
case 0x73:
case 0x74:
case 0x75:
case 0x76:
case 0x77:
case 0x78: // UTF-8 string (one-byte uint8_t for n follows)
case 0x79: // UTF-8 string (two-byte uint16_t for n follow)
case 0x7A: // UTF-8 string (four-byte uint32_t for n follow)
case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow)
case 0x7F: // UTF-8 string (indefinite length)
{
string_t s;
return get_cbor_string(s) and sax->string(s);
}
// array (0x00..0x17 data items follow)
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
return get_cbor_array(static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x1Fu));
case 0x98: // array (one-byte uint8_t for n follows)
{
std::uint8_t len;
return get_number(input_format_t::cbor, len) and get_cbor_array(static_cast<std::size_t>(len));
}
case 0x99: // array (two-byte uint16_t for n follow)
{
std::uint16_t len;
return get_number(input_format_t::cbor, len) and get_cbor_array(static_cast<std::size_t>(len));
}
case 0x9A: // array (four-byte uint32_t for n follow)
{
std::uint32_t len;
return get_number(input_format_t::cbor, len) and get_cbor_array(static_cast<std::size_t>(len));
}
case 0x9B: // array (eight-byte uint64_t for n follow)
{
std::uint64_t len;
return get_number(input_format_t::cbor, len) and get_cbor_array(static_cast<std::size_t>(len));
}
case 0x9F: // array (indefinite length)
return get_cbor_array(std::size_t(-1));
// map (0x00..0x17 pairs of data items follow)
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
return get_cbor_object(static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x1Fu));
case 0xB8: // map (one-byte uint8_t for n follows)
{
std::uint8_t len;
return get_number(input_format_t::cbor, len) and get_cbor_object(static_cast<std::size_t>(len));
}
case 0xB9: // map (two-byte uint16_t for n follow)
{
std::uint16_t len;
return get_number(input_format_t::cbor, len) and get_cbor_object(static_cast<std::size_t>(len));
}
case 0xBA: // map (four-byte uint32_t for n follow)
{
std::uint32_t len;
return get_number(input_format_t::cbor, len) and get_cbor_object(static_cast<std::size_t>(len));
}
case 0xBB: // map (eight-byte uint64_t for n follow)
{
std::uint64_t len;
return get_number(input_format_t::cbor, len) and get_cbor_object(static_cast<std::size_t>(len));
}
case 0xBF: // map (indefinite length)
return get_cbor_object(std::size_t(-1));
case 0xF4: // false
return sax->boolean(false);
case 0xF5: // true
return sax->boolean(true);
case 0xF6: // null
return sax->null();
case 0xF9: // Half-Precision Float (two-byte IEEE 754)
{
const int byte1_raw = get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::cbor, "number")))
{
return false;
}
const int byte2_raw = get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::cbor, "number")))
{
return false;
}
const auto byte1 = static_cast<unsigned char>(byte1_raw);
const auto byte2 = static_cast<unsigned char>(byte2_raw);
// code from RFC 7049, Appendix D, Figure 3:
// As half-precision floating-point numbers were only added
// to IEEE 754 in 2008, today's programming platforms often
// still only have limited support for them. It is very
// easy to include at least decoding support for them even
// without such support. An example of a small decoder for
// half-precision floating-point numbers in the C language
// is shown in Fig. 3.
const auto half = static_cast<unsigned int>((byte1 << 8u) + byte2);
const double val = [&half]
{
const int exp = (half >> 10u) & 0x1Fu;
const unsigned int mant = half & 0x3FFu;
assert(0 <= exp and exp <= 32);
assert(mant <= 1024);
switch (exp)
{
case 0:
return std::ldexp(mant, -24);
case 31:
return (mant == 0)
? std::numeric_limits<double>::infinity()
: std::numeric_limits<double>::quiet_NaN();
default:
return std::ldexp(mant + 1024, exp - 25);
}
}();
return sax->number_float((half & 0x8000u) != 0
? static_cast<number_float_t>(-val)
: static_cast<number_float_t>(val), "");
}
case 0xFA: // Single-Precision Float (four-byte IEEE 754)
{
float number;
return get_number(input_format_t::cbor, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 0xFB: // Double-Precision Float (eight-byte IEEE 754)
{
double number;
return get_number(input_format_t::cbor, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
default: // anything else (0xFF is handled inside the other types)
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value")));
}
}
}
/*!
@brief reads a CBOR string
This function first reads starting bytes to determine the expected
string length and then copies this number of bytes into a string.
Additionally, CBOR's strings with indefinite lengths are supported.
@param[out] result created string
@return whether string creation completed
*/
bool get_cbor_string(string_t& result)
{
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::cbor, "string")))
{
return false;
}
switch (current)
{
// UTF-8 string (0x00..0x17 bytes follow)
case 0x60:
case 0x61:
case 0x62:
case 0x63:
case 0x64:
case 0x65:
case 0x66:
case 0x67:
case 0x68:
case 0x69:
case 0x6A:
case 0x6B:
case 0x6C:
case 0x6D:
case 0x6E:
case 0x6F:
case 0x70:
case 0x71:
case 0x72:
case 0x73:
case 0x74:
case 0x75:
case 0x76:
case 0x77:
{
return get_string(input_format_t::cbor, static_cast<unsigned int>(current) & 0x1Fu, result);
}
case 0x78: // UTF-8 string (one-byte uint8_t for n follows)
{
std::uint8_t len;
return get_number(input_format_t::cbor, len) and get_string(input_format_t::cbor, len, result);
}
case 0x79: // UTF-8 string (two-byte uint16_t for n follow)
{
std::uint16_t len;
return get_number(input_format_t::cbor, len) and get_string(input_format_t::cbor, len, result);
}
case 0x7A: // UTF-8 string (four-byte uint32_t for n follow)
{
std::uint32_t len;
return get_number(input_format_t::cbor, len) and get_string(input_format_t::cbor, len, result);
}
case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow)
{
std::uint64_t len;
return get_number(input_format_t::cbor, len) and get_string(input_format_t::cbor, len, result);
}
case 0x7F: // UTF-8 string (indefinite length)
{
while (get() != 0xFF)
{
string_t chunk;
if (not get_cbor_string(chunk))
{
return false;
}
result.append(chunk);
}
return true;
}
default:
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x60-0x7B) or indefinite string type (0x7F); last byte: 0x" + last_token, "string")));
}
}
}
/*!
@param[in] len the length of the array or std::size_t(-1) for an
array of indefinite size
@return whether array creation completed
*/
bool get_cbor_array(const std::size_t len)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(len)))
{
return false;
}
if (len != std::size_t(-1))
{
for (std::size_t i = 0; i < len; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not parse_cbor_internal()))
{
return false;
}
}
}
else
{
while (get() != 0xFF)
{
if (JSON_HEDLEY_UNLIKELY(not parse_cbor_internal(false)))
{
return false;
}
}
}
return sax->end_array();
}
/*!
@param[in] len the length of the object or std::size_t(-1) for an
object of indefinite size
@return whether object creation completed
*/
bool get_cbor_object(const std::size_t len)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(len)))
{
return false;
}
string_t key;
if (len != std::size_t(-1))
{
for (std::size_t i = 0; i < len; ++i)
{
get();
if (JSON_HEDLEY_UNLIKELY(not get_cbor_string(key) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_cbor_internal()))
{
return false;
}
key.clear();
}
}
else
{
while (get() != 0xFF)
{
if (JSON_HEDLEY_UNLIKELY(not get_cbor_string(key) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_cbor_internal()))
{
return false;
}
key.clear();
}
}
return sax->end_object();
}
/////////////
// MsgPack //
/////////////
/*!
@return whether a valid MessagePack value was passed to the SAX parser
*/
bool parse_msgpack_internal()
{
switch (get())
{
// EOF
case std::char_traits<char>::eof():
return unexpect_eof(input_format_t::msgpack, "value");
// positive fixint
case 0x00:
case 0x01:
case 0x02:
case 0x03:
case 0x04:
case 0x05:
case 0x06:
case 0x07:
case 0x08:
case 0x09:
case 0x0A:
case 0x0B:
case 0x0C:
case 0x0D:
case 0x0E:
case 0x0F:
case 0x10:
case 0x11:
case 0x12:
case 0x13:
case 0x14:
case 0x15:
case 0x16:
case 0x17:
case 0x18:
case 0x19:
case 0x1A:
case 0x1B:
case 0x1C:
case 0x1D:
case 0x1E:
case 0x1F:
case 0x20:
case 0x21:
case 0x22:
case 0x23:
case 0x24:
case 0x25:
case 0x26:
case 0x27:
case 0x28:
case 0x29:
case 0x2A:
case 0x2B:
case 0x2C:
case 0x2D:
case 0x2E:
case 0x2F:
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
case 0x3A:
case 0x3B:
case 0x3C:
case 0x3D:
case 0x3E:
case 0x3F:
case 0x40:
case 0x41:
case 0x42:
case 0x43:
case 0x44:
case 0x45:
case 0x46:
case 0x47:
case 0x48:
case 0x49:
case 0x4A:
case 0x4B:
case 0x4C:
case 0x4D:
case 0x4E:
case 0x4F:
case 0x50:
case 0x51:
case 0x52:
case 0x53:
case 0x54:
case 0x55:
case 0x56:
case 0x57:
case 0x58:
case 0x59:
case 0x5A:
case 0x5B:
case 0x5C:
case 0x5D:
case 0x5E:
case 0x5F:
case 0x60:
case 0x61:
case 0x62:
case 0x63:
case 0x64:
case 0x65:
case 0x66:
case 0x67:
case 0x68:
case 0x69:
case 0x6A:
case 0x6B:
case 0x6C:
case 0x6D:
case 0x6E:
case 0x6F:
case 0x70:
case 0x71:
case 0x72:
case 0x73:
case 0x74:
case 0x75:
case 0x76:
case 0x77:
case 0x78:
case 0x79:
case 0x7A:
case 0x7B:
case 0x7C:
case 0x7D:
case 0x7E:
case 0x7F:
return sax->number_unsigned(static_cast<number_unsigned_t>(current));
// fixmap
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
return get_msgpack_object(static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x0Fu));
// fixarray
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
return get_msgpack_array(static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x0Fu));
// fixstr
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF:
case 0xD9: // str 8
case 0xDA: // str 16
case 0xDB: // str 32
{
string_t s;
return get_msgpack_string(s) and sax->string(s);
}
case 0xC0: // nil
return sax->null();
case 0xC2: // false
return sax->boolean(false);
case 0xC3: // true
return sax->boolean(true);
case 0xCA: // float 32
{
float number;
return get_number(input_format_t::msgpack, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 0xCB: // float 64
{
double number;
return get_number(input_format_t::msgpack, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 0xCC: // uint 8
{
std::uint8_t number;
return get_number(input_format_t::msgpack, number) and sax->number_unsigned(number);
}
case 0xCD: // uint 16
{
std::uint16_t number;
return get_number(input_format_t::msgpack, number) and sax->number_unsigned(number);
}
case 0xCE: // uint 32
{
std::uint32_t number;
return get_number(input_format_t::msgpack, number) and sax->number_unsigned(number);
}
case 0xCF: // uint 64
{
std::uint64_t number;
return get_number(input_format_t::msgpack, number) and sax->number_unsigned(number);
}
case 0xD0: // int 8
{
std::int8_t number;
return get_number(input_format_t::msgpack, number) and sax->number_integer(number);
}
case 0xD1: // int 16
{
std::int16_t number;
return get_number(input_format_t::msgpack, number) and sax->number_integer(number);
}
case 0xD2: // int 32
{
std::int32_t number;
return get_number(input_format_t::msgpack, number) and sax->number_integer(number);
}
case 0xD3: // int 64
{
std::int64_t number;
return get_number(input_format_t::msgpack, number) and sax->number_integer(number);
}
case 0xDC: // array 16
{
std::uint16_t len;
return get_number(input_format_t::msgpack, len) and get_msgpack_array(static_cast<std::size_t>(len));
}
case 0xDD: // array 32
{
std::uint32_t len;
return get_number(input_format_t::msgpack, len) and get_msgpack_array(static_cast<std::size_t>(len));
}
case 0xDE: // map 16
{
std::uint16_t len;
return get_number(input_format_t::msgpack, len) and get_msgpack_object(static_cast<std::size_t>(len));
}
case 0xDF: // map 32
{
std::uint32_t len;
return get_number(input_format_t::msgpack, len) and get_msgpack_object(static_cast<std::size_t>(len));
}
// negative fixint
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4:
case 0xF5:
case 0xF6:
case 0xF7:
case 0xF8:
case 0xF9:
case 0xFA:
case 0xFB:
case 0xFC:
case 0xFD:
case 0xFE:
case 0xFF:
return sax->number_integer(static_cast<std::int8_t>(current));
default: // anything else
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::msgpack, "invalid byte: 0x" + last_token, "value")));
}
}
}
/*!
@brief reads a MessagePack string
This function first reads starting bytes to determine the expected
string length and then copies this number of bytes into a string.
@param[out] result created string
@return whether string creation completed
*/
bool get_msgpack_string(string_t& result)
{
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::msgpack, "string")))
{
return false;
}
switch (current)
{
// fixstr
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF:
{
return get_string(input_format_t::msgpack, static_cast<unsigned int>(current) & 0x1Fu, result);
}
case 0xD9: // str 8
{
std::uint8_t len;
return get_number(input_format_t::msgpack, len) and get_string(input_format_t::msgpack, len, result);
}
case 0xDA: // str 16
{
std::uint16_t len;
return get_number(input_format_t::msgpack, len) and get_string(input_format_t::msgpack, len, result);
}
case 0xDB: // str 32
{
std::uint32_t len;
return get_number(input_format_t::msgpack, len) and get_string(input_format_t::msgpack, len, result);
}
default:
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::msgpack, "expected length specification (0xA0-0xBF, 0xD9-0xDB); last byte: 0x" + last_token, "string")));
}
}
}
/*!
@param[in] len the length of the array
@return whether array creation completed
*/
bool get_msgpack_array(const std::size_t len)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(len)))
{
return false;
}
for (std::size_t i = 0; i < len; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not parse_msgpack_internal()))
{
return false;
}
}
return sax->end_array();
}
/*!
@param[in] len the length of the object
@return whether object creation completed
*/
bool get_msgpack_object(const std::size_t len)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(len)))
{
return false;
}
string_t key;
for (std::size_t i = 0; i < len; ++i)
{
get();
if (JSON_HEDLEY_UNLIKELY(not get_msgpack_string(key) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_msgpack_internal()))
{
return false;
}
key.clear();
}
return sax->end_object();
}
////////////
// UBJSON //
////////////
/*!
@param[in] get_char whether a new character should be retrieved from the
input (true, default) or whether the last read
character should be considered instead
@return whether a valid UBJSON value was passed to the SAX parser
*/
bool parse_ubjson_internal(const bool get_char = true)
{
return get_ubjson_value(get_char ? get_ignore_noop() : current);
}
/*!
@brief reads a UBJSON string
This function is either called after reading the 'S' byte explicitly
indicating a string, or in case of an object key where the 'S' byte can be
left out.
@param[out] result created string
@param[in] get_char whether a new character should be retrieved from the
input (true, default) or whether the last read
character should be considered instead
@return whether string creation completed
*/
bool get_ubjson_string(string_t& result, const bool get_char = true)
{
if (get_char)
{
get(); // TODO(niels): may we ignore N here?
}
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::ubjson, "value")))
{
return false;
}
switch (current)
{
case 'U':
{
std::uint8_t len;
return get_number(input_format_t::ubjson, len) and get_string(input_format_t::ubjson, len, result);
}
case 'i':
{
std::int8_t len;
return get_number(input_format_t::ubjson, len) and get_string(input_format_t::ubjson, len, result);
}
case 'I':
{
std::int16_t len;
return get_number(input_format_t::ubjson, len) and get_string(input_format_t::ubjson, len, result);
}
case 'l':
{
std::int32_t len;
return get_number(input_format_t::ubjson, len) and get_string(input_format_t::ubjson, len, result);
}
case 'L':
{
std::int64_t len;
return get_number(input_format_t::ubjson, len) and get_string(input_format_t::ubjson, len, result);
}
default:
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L); last byte: 0x" + last_token, "string")));
}
}
/*!
@param[out] result determined size
@return whether size determination completed
*/
bool get_ubjson_size_value(std::size_t& result)
{
switch (get_ignore_noop())
{
case 'U':
{
std::uint8_t number;
if (JSON_HEDLEY_UNLIKELY(not get_number(input_format_t::ubjson, number)))
{
return false;
}
result = static_cast<std::size_t>(number);
return true;
}
case 'i':
{
std::int8_t number;
if (JSON_HEDLEY_UNLIKELY(not get_number(input_format_t::ubjson, number)))
{
return false;
}
result = static_cast<std::size_t>(number);
return true;
}
case 'I':
{
std::int16_t number;
if (JSON_HEDLEY_UNLIKELY(not get_number(input_format_t::ubjson, number)))
{
return false;
}
result = static_cast<std::size_t>(number);
return true;
}
case 'l':
{
std::int32_t number;
if (JSON_HEDLEY_UNLIKELY(not get_number(input_format_t::ubjson, number)))
{
return false;
}
result = static_cast<std::size_t>(number);
return true;
}
case 'L':
{
std::int64_t number;
if (JSON_HEDLEY_UNLIKELY(not get_number(input_format_t::ubjson, number)))
{
return false;
}
result = static_cast<std::size_t>(number);
return true;
}
default:
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L) after '#'; last byte: 0x" + last_token, "size")));
}
}
}
/*!
@brief determine the type and size for a container
In the optimized UBJSON format, a type and a size can be provided to allow
for a more compact representation.
@param[out] result pair of the size and the type
@return whether pair creation completed
*/
bool get_ubjson_size_type(std::pair<std::size_t, int>& result)
{
result.first = string_t::npos; // size
result.second = 0; // type
get_ignore_noop();
if (current == '$')
{
result.second = get(); // must not ignore 'N', because 'N' maybe the type
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::ubjson, "type")))
{
return false;
}
get_ignore_noop();
if (JSON_HEDLEY_UNLIKELY(current != '#'))
{
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::ubjson, "value")))
{
return false;
}
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "expected '#' after type information; last byte: 0x" + last_token, "size")));
}
return get_ubjson_size_value(result.first);
}
if (current == '#')
{
return get_ubjson_size_value(result.first);
}
return true;
}
/*!
@param prefix the previously read or set type prefix
@return whether value creation completed
*/
bool get_ubjson_value(const int prefix)
{
switch (prefix)
{
case std::char_traits<char>::eof(): // EOF
return unexpect_eof(input_format_t::ubjson, "value");
case 'T': // true
return sax->boolean(true);
case 'F': // false
return sax->boolean(false);
case 'Z': // null
return sax->null();
case 'U':
{
std::uint8_t number;
return get_number(input_format_t::ubjson, number) and sax->number_unsigned(number);
}
case 'i':
{
std::int8_t number;
return get_number(input_format_t::ubjson, number) and sax->number_integer(number);
}
case 'I':
{
std::int16_t number;
return get_number(input_format_t::ubjson, number) and sax->number_integer(number);
}
case 'l':
{
std::int32_t number;
return get_number(input_format_t::ubjson, number) and sax->number_integer(number);
}
case 'L':
{
std::int64_t number;
return get_number(input_format_t::ubjson, number) and sax->number_integer(number);
}
case 'd':
{
float number;
return get_number(input_format_t::ubjson, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 'D':
{
double number;
return get_number(input_format_t::ubjson, number) and sax->number_float(static_cast<number_float_t>(number), "");
}
case 'C': // char
{
get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(input_format_t::ubjson, "char")))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(current > 127))
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "byte after 'C' must be in range 0x00..0x7F; last byte: 0x" + last_token, "char")));
}
string_t s(1, static_cast<char>(current));
return sax->string(s);
}
case 'S': // string
{
string_t s;
return get_ubjson_string(s) and sax->string(s);
}
case '[': // array
return get_ubjson_array();
case '{': // object
return get_ubjson_object();
default: // anything else
{
auto last_token = get_token_string();
return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "invalid byte: 0x" + last_token, "value")));
}
}
}
/*!
@return whether array creation completed
*/
bool get_ubjson_array()
{
std::pair<std::size_t, int> size_and_type;
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_size_type(size_and_type)))
{
return false;
}
if (size_and_type.first != string_t::npos)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(size_and_type.first)))
{
return false;
}
if (size_and_type.second != 0)
{
if (size_and_type.second != 'N')
{
for (std::size_t i = 0; i < size_and_type.first; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_value(size_and_type.second)))
{
return false;
}
}
}
}
else
{
for (std::size_t i = 0; i < size_and_type.first; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not parse_ubjson_internal()))
{
return false;
}
}
}
}
else
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(std::size_t(-1))))
{
return false;
}
while (current != ']')
{
if (JSON_HEDLEY_UNLIKELY(not parse_ubjson_internal(false)))
{
return false;
}
get_ignore_noop();
}
}
return sax->end_array();
}
/*!
@return whether object creation completed
*/
bool get_ubjson_object()
{
std::pair<std::size_t, int> size_and_type;
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_size_type(size_and_type)))
{
return false;
}
string_t key;
if (size_and_type.first != string_t::npos)
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(size_and_type.first)))
{
return false;
}
if (size_and_type.second != 0)
{
for (std::size_t i = 0; i < size_and_type.first; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_string(key) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_value(size_and_type.second)))
{
return false;
}
key.clear();
}
}
else
{
for (std::size_t i = 0; i < size_and_type.first; ++i)
{
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_string(key) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_ubjson_internal()))
{
return false;
}
key.clear();
}
}
}
else
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(std::size_t(-1))))
{
return false;
}
while (current != '}')
{
if (JSON_HEDLEY_UNLIKELY(not get_ubjson_string(key, false) or not sax->key(key)))
{
return false;
}
if (JSON_HEDLEY_UNLIKELY(not parse_ubjson_internal()))
{
return false;
}
get_ignore_noop();
key.clear();
}
}
return sax->end_object();
}
///////////////////////
// Utility functions //
///////////////////////
/*!
@brief get next character from the input
This function provides the interface to the used input adapter. It does
not throw in case the input reached EOF, but returns a -'ve valued
`std::char_traits<char>::eof()` in that case.
@return character read from the input
*/
int get()
{
++chars_read;
return current = ia->get_character();
}
/*!
@return character read from the input after ignoring all 'N' entries
*/
int get_ignore_noop()
{
do
{
get();
}
while (current == 'N');
return current;
}
/*
@brief read a number from the input
@tparam NumberType the type of the number
@param[in] format the current format (for diagnostics)
@param[out] result number of type @a NumberType
@return whether conversion completed
@note This function needs to respect the system's endianess, because
bytes in CBOR, MessagePack, and UBJSON are stored in network order
(big endian) and therefore need reordering on little endian systems.
*/
template<typename NumberType, bool InputIsLittleEndian = false>
bool get_number(const input_format_t format, NumberType& result)
{
// step 1: read input into array with system's byte order
std::array<std::uint8_t, sizeof(NumberType)> vec;
for (std::size_t i = 0; i < sizeof(NumberType); ++i)
{
get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(format, "number")))
{
return false;
}
// reverse byte order prior to conversion if necessary
if (is_little_endian != InputIsLittleEndian)
{
vec[sizeof(NumberType) - i - 1] = static_cast<std::uint8_t>(current);
}
else
{
vec[i] = static_cast<std::uint8_t>(current); // LCOV_EXCL_LINE
}
}
// step 2: convert array into number of type T and return
std::memcpy(&result, vec.data(), sizeof(NumberType));
return true;
}
/*!
@brief create a string by reading characters from the input
@tparam NumberType the type of the number
@param[in] format the current format (for diagnostics)
@param[in] len number of characters to read
@param[out] result string created by reading @a len bytes
@return whether string creation completed
@note We can not reserve @a len bytes for the result, because @a len
may be too large. Usually, @ref unexpect_eof() detects the end of
the input before we run out of string memory.
*/
template<typename NumberType>
bool get_string(const input_format_t format,
const NumberType len,
string_t& result)
{
bool success = true;
std::generate_n(std::back_inserter(result), len, [this, &success, &format]()
{
get();
if (JSON_HEDLEY_UNLIKELY(not unexpect_eof(format, "string")))
{
success = false;
}
return static_cast<char>(current);
});
return success;
}
/*!
@param[in] format the current format (for diagnostics)
@param[in] context further context information (for diagnostics)
@return whether the last read character is not EOF
*/
JSON_HEDLEY_NON_NULL(3)
bool unexpect_eof(const input_format_t format, const char* context) const
{
if (JSON_HEDLEY_UNLIKELY(current == std::char_traits<char>::eof()))
{
return sax->parse_error(chars_read, "<end of file>",
parse_error::create(110, chars_read, exception_message(format, "unexpected end of input", context)));
}
return true;
}
/*!
@return a string representation of the last read byte
*/
std::string get_token_string() const
{
std::array<char, 3> cr{{}};
(std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast<unsigned char>(current));
return std::string{cr.data()};
}
/*!
@param[in] format the current format
@param[in] detail a detailed error message
@param[in] context further context information
@return a message string to use in the parse_error exceptions
*/
std::string exception_message(const input_format_t format,
const std::string& detail,
const std::string& context) const
{
std::string error_msg = "syntax error while parsing ";
switch (format)
{
case input_format_t::cbor:
error_msg += "CBOR";
break;
case input_format_t::msgpack:
error_msg += "MessagePack";
break;
case input_format_t::ubjson:
error_msg += "UBJSON";
break;
case input_format_t::bson:
error_msg += "BSON";
break;
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
return error_msg + " " + context + ": " + detail;
}
private:
/// input adapter
input_adapter_t ia = nullptr;
/// the current character
int current = std::char_traits<char>::eof();
/// the number of characters read
std::size_t chars_read = 0;
/// whether we can assume little endianess
const bool is_little_endian = little_endianess();
/// the SAX parser
json_sax_t* sax = nullptr;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/input/input_adapters.hpp>
// #include <nlohmann/detail/input/lexer.hpp>
#include <array> // array
#include <clocale> // localeconv
#include <cstddef> // size_t
#include <cstdio> // snprintf
#include <cstdlib> // strtof, strtod, strtold, strtoll, strtoull
#include <initializer_list> // initializer_list
#include <string> // char_traits, string
#include <utility> // move
#include <vector> // vector
// #include <nlohmann/detail/input/input_adapters.hpp>
// #include <nlohmann/detail/input/position_t.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
namespace nlohmann
{
namespace detail
{
///////////
// lexer //
///////////
/*!
@brief lexical analysis
This class organizes the lexical analysis during JSON deserialization.
*/
template<typename BasicJsonType>
class lexer
{
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
public:
/// token types for the parser
enum class token_type
{
uninitialized, ///< indicating the scanner is uninitialized
literal_true, ///< the `true` literal
literal_false, ///< the `false` literal
literal_null, ///< the `null` literal
value_string, ///< a string -- use get_string() for actual value
value_unsigned, ///< an unsigned integer -- use get_number_unsigned() for actual value
value_integer, ///< a signed integer -- use get_number_integer() for actual value
value_float, ///< an floating point number -- use get_number_float() for actual value
begin_array, ///< the character for array begin `[`
begin_object, ///< the character for object begin `{`
end_array, ///< the character for array end `]`
end_object, ///< the character for object end `}`
name_separator, ///< the name separator `:`
value_separator, ///< the value separator `,`
parse_error, ///< indicating a parse error
end_of_input, ///< indicating the end of the input buffer
literal_or_value ///< a literal or the begin of a value (only for diagnostics)
};
/// return name of values of type token_type (only used for errors)
JSON_HEDLEY_RETURNS_NON_NULL
JSON_HEDLEY_CONST
static const char* token_type_name(const token_type t) noexcept
{
switch (t)
{
case token_type::uninitialized:
return "<uninitialized>";
case token_type::literal_true:
return "true literal";
case token_type::literal_false:
return "false literal";
case token_type::literal_null:
return "null literal";
case token_type::value_string:
return "string literal";
case lexer::token_type::value_unsigned:
case lexer::token_type::value_integer:
case lexer::token_type::value_float:
return "number literal";
case token_type::begin_array:
return "'['";
case token_type::begin_object:
return "'{'";
case token_type::end_array:
return "']'";
case token_type::end_object:
return "'}'";
case token_type::name_separator:
return "':'";
case token_type::value_separator:
return "','";
case token_type::parse_error:
return "<parse error>";
case token_type::end_of_input:
return "end of input";
case token_type::literal_or_value:
return "'[', '{', or a literal";
// LCOV_EXCL_START
default: // catch non-enum values
return "unknown token";
// LCOV_EXCL_STOP
}
}
explicit lexer(detail::input_adapter_t&& adapter)
: ia(std::move(adapter)), decimal_point_char(get_decimal_point()) {}
// delete because of pointer members
lexer(const lexer&) = delete;
lexer(lexer&&) = delete;
lexer& operator=(lexer&) = delete;
lexer& operator=(lexer&&) = delete;
~lexer() = default;
private:
/////////////////////
// locales
/////////////////////
/// return the locale-dependent decimal point
JSON_HEDLEY_PURE
static char get_decimal_point() noexcept
{
const auto loc = localeconv();
assert(loc != nullptr);
return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point);
}
/////////////////////
// scan functions
/////////////////////
/*!
@brief get codepoint from 4 hex characters following `\u`
For input "\u c1 c2 c3 c4" the codepoint is:
(c1 * 0x1000) + (c2 * 0x0100) + (c3 * 0x0010) + c4
= (c1 << 12) + (c2 << 8) + (c3 << 4) + (c4 << 0)
Furthermore, the possible characters '0'..'9', 'A'..'F', and 'a'..'f'
must be converted to the integers 0x0..0x9, 0xA..0xF, 0xA..0xF, resp. The
conversion is done by subtracting the offset (0x30, 0x37, and 0x57)
between the ASCII value of the character and the desired integer value.
@return codepoint (0x0000..0xFFFF) or -1 in case of an error (e.g. EOF or
non-hex character)
*/
int get_codepoint()
{
// this function only makes sense after reading `\u`
assert(current == 'u');
int codepoint = 0;
const auto factors = { 12u, 8u, 4u, 0u };
for (const auto factor : factors)
{
get();
if (current >= '0' and current <= '9')
{
codepoint += static_cast<int>((static_cast<unsigned int>(current) - 0x30u) << factor);
}
else if (current >= 'A' and current <= 'F')
{
codepoint += static_cast<int>((static_cast<unsigned int>(current) - 0x37u) << factor);
}
else if (current >= 'a' and current <= 'f')
{
codepoint += static_cast<int>((static_cast<unsigned int>(current) - 0x57u) << factor);
}
else
{
return -1;
}
}
assert(0x0000 <= codepoint and codepoint <= 0xFFFF);
return codepoint;
}
/*!
@brief check if the next byte(s) are inside a given range
Adds the current byte and, for each passed range, reads a new byte and
checks if it is inside the range. If a violation was detected, set up an
error message and return false. Otherwise, return true.
@param[in] ranges list of integers; interpreted as list of pairs of
inclusive lower and upper bound, respectively
@pre The passed list @a ranges must have 2, 4, or 6 elements; that is,
1, 2, or 3 pairs. This precondition is enforced by an assertion.
@return true if and only if no range violation was detected
*/
bool next_byte_in_range(std::initializer_list<int> ranges)
{
assert(ranges.size() == 2 or ranges.size() == 4 or ranges.size() == 6);
add(current);
for (auto range = ranges.begin(); range != ranges.end(); ++range)
{
get();
if (JSON_HEDLEY_LIKELY(*range <= current and current <= *(++range)))
{
add(current);
}
else
{
error_message = "invalid string: ill-formed UTF-8 byte";
return false;
}
}
return true;
}
/*!
@brief scan a string literal
This function scans a string according to Sect. 7 of RFC 7159. While
scanning, bytes are escaped and copied into buffer token_buffer. Then the
function returns successfully, token_buffer is *not* null-terminated (as it
may contain \0 bytes), and token_buffer.size() is the number of bytes in the
string.
@return token_type::value_string if string could be successfully scanned,
token_type::parse_error otherwise
@note In case of errors, variable error_message contains a textual
description.
*/
token_type scan_string()
{
// reset token_buffer (ignore opening quote)
reset();
// we entered the function by reading an open quote
assert(current == '\"');
while (true)
{
// get next character
switch (get())
{
// end of file while parsing string
case std::char_traits<char>::eof():
{
error_message = "invalid string: missing closing quote";
return token_type::parse_error;
}
// closing quote
case '\"':
{
return token_type::value_string;
}
// escapes
case '\\':
{
switch (get())
{
// quotation mark
case '\"':
add('\"');
break;
// reverse solidus
case '\\':
add('\\');
break;
// solidus
case '/':
add('/');
break;
// backspace
case 'b':
add('\b');
break;
// form feed
case 'f':
add('\f');
break;
// line feed
case 'n':
add('\n');
break;
// carriage return
case 'r':
add('\r');
break;
// tab
case 't':
add('\t');
break;
// unicode escapes
case 'u':
{
const int codepoint1 = get_codepoint();
int codepoint = codepoint1; // start with codepoint1
if (JSON_HEDLEY_UNLIKELY(codepoint1 == -1))
{
error_message = "invalid string: '\\u' must be followed by 4 hex digits";
return token_type::parse_error;
}
// check if code point is a high surrogate
if (0xD800 <= codepoint1 and codepoint1 <= 0xDBFF)
{
// expect next \uxxxx entry
if (JSON_HEDLEY_LIKELY(get() == '\\' and get() == 'u'))
{
const int codepoint2 = get_codepoint();
if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1))
{
error_message = "invalid string: '\\u' must be followed by 4 hex digits";
return token_type::parse_error;
}
// check if codepoint2 is a low surrogate
if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 and codepoint2 <= 0xDFFF))
{
// overwrite codepoint
codepoint = static_cast<int>(
// high surrogate occupies the most significant 22 bits
(static_cast<unsigned int>(codepoint1) << 10u)
// low surrogate occupies the least significant 15 bits
+ static_cast<unsigned int>(codepoint2)
// there is still the 0xD800, 0xDC00 and 0x10000 noise
// in the result so we have to subtract with:
// (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00
- 0x35FDC00u);
}
else
{
error_message = "invalid string: surrogate U+DC00..U+DFFF must be followed by U+DC00..U+DFFF";
return token_type::parse_error;
}
}
else
{
error_message = "invalid string: surrogate U+DC00..U+DFFF must be followed by U+DC00..U+DFFF";
return token_type::parse_error;
}
}
else
{
if (JSON_HEDLEY_UNLIKELY(0xDC00 <= codepoint1 and codepoint1 <= 0xDFFF))
{
error_message = "invalid string: surrogate U+DC00..U+DFFF must follow U+D800..U+DBFF";
return token_type::parse_error;
}
}
// result of the above calculation yields a proper codepoint
assert(0x00 <= codepoint and codepoint <= 0x10FFFF);
// translate codepoint into bytes
if (codepoint < 0x80)
{
// 1-byte characters: 0xxxxxxx (ASCII)
add(codepoint);
}
else if (codepoint <= 0x7FF)
{
// 2-byte characters: 110xxxxx 10xxxxxx
add(static_cast<int>(0xC0u | (static_cast<unsigned int>(codepoint) >> 6u)));
add(static_cast<int>(0x80u | (static_cast<unsigned int>(codepoint) & 0x3Fu)));
}
else if (codepoint <= 0xFFFF)
{
// 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
add(static_cast<int>(0xE0u | (static_cast<unsigned int>(codepoint) >> 12u)));
add(static_cast<int>(0x80u | ((static_cast<unsigned int>(codepoint) >> 6u) & 0x3Fu)));
add(static_cast<int>(0x80u | (static_cast<unsigned int>(codepoint) & 0x3Fu)));
}
else
{
// 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
add(static_cast<int>(0xF0u | (static_cast<unsigned int>(codepoint) >> 18u)));
add(static_cast<int>(0x80u | ((static_cast<unsigned int>(codepoint) >> 12u) & 0x3Fu)));
add(static_cast<int>(0x80u | ((static_cast<unsigned int>(codepoint) >> 6u) & 0x3Fu)));
add(static_cast<int>(0x80u | (static_cast<unsigned int>(codepoint) & 0x3Fu)));
}
break;
}
// other characters after escape
default:
error_message = "invalid string: forbidden character after backslash";
return token_type::parse_error;
}
break;
}
// invalid control characters
case 0x00:
{
error_message = "invalid string: control character U+0000 (NUL) must be escaped to \\u0000";
return token_type::parse_error;
}
case 0x01:
{
error_message = "invalid string: control character U+0001 (SOH) must be escaped to \\u0001";
return token_type::parse_error;
}
case 0x02:
{
error_message = "invalid string: control character U+0002 (STX) must be escaped to \\u0002";
return token_type::parse_error;
}
case 0x03:
{
error_message = "invalid string: control character U+0003 (ETX) must be escaped to \\u0003";
return token_type::parse_error;
}
case 0x04:
{
error_message = "invalid string: control character U+0004 (EOT) must be escaped to \\u0004";
return token_type::parse_error;
}
case 0x05:
{
error_message = "invalid string: control character U+0005 (ENQ) must be escaped to \\u0005";
return token_type::parse_error;
}
case 0x06:
{
error_message = "invalid string: control character U+0006 (ACK) must be escaped to \\u0006";
return token_type::parse_error;
}
case 0x07:
{
error_message = "invalid string: control character U+0007 (BEL) must be escaped to \\u0007";
return token_type::parse_error;
}
case 0x08:
{
error_message = "invalid string: control character U+0008 (BS) must be escaped to \\u0008 or \\b";
return token_type::parse_error;
}
case 0x09:
{
error_message = "invalid string: control character U+0009 (HT) must be escaped to \\u0009 or \\t";
return token_type::parse_error;
}
case 0x0A:
{
error_message = "invalid string: control character U+000A (LF) must be escaped to \\u000A or \\n";
return token_type::parse_error;
}
case 0x0B:
{
error_message = "invalid string: control character U+000B (VT) must be escaped to \\u000B";
return token_type::parse_error;
}
case 0x0C:
{
error_message = "invalid string: control character U+000C (FF) must be escaped to \\u000C or \\f";
return token_type::parse_error;
}
case 0x0D:
{
error_message = "invalid string: control character U+000D (CR) must be escaped to \\u000D or \\r";
return token_type::parse_error;
}
case 0x0E:
{
error_message = "invalid string: control character U+000E (SO) must be escaped to \\u000E";
return token_type::parse_error;
}
case 0x0F:
{
error_message = "invalid string: control character U+000F (SI) must be escaped to \\u000F";
return token_type::parse_error;
}
case 0x10:
{
error_message = "invalid string: control character U+0010 (DLE) must be escaped to \\u0010";
return token_type::parse_error;
}
case 0x11:
{
error_message = "invalid string: control character U+0011 (DC1) must be escaped to \\u0011";
return token_type::parse_error;
}
case 0x12:
{
error_message = "invalid string: control character U+0012 (DC2) must be escaped to \\u0012";
return token_type::parse_error;
}
case 0x13:
{
error_message = "invalid string: control character U+0013 (DC3) must be escaped to \\u0013";
return token_type::parse_error;
}
case 0x14:
{
error_message = "invalid string: control character U+0014 (DC4) must be escaped to \\u0014";
return token_type::parse_error;
}
case 0x15:
{
error_message = "invalid string: control character U+0015 (NAK) must be escaped to \\u0015";
return token_type::parse_error;
}
case 0x16:
{
error_message = "invalid string: control character U+0016 (SYN) must be escaped to \\u0016";
return token_type::parse_error;
}
case 0x17:
{
error_message = "invalid string: control character U+0017 (ETB) must be escaped to \\u0017";
return token_type::parse_error;
}
case 0x18:
{
error_message = "invalid string: control character U+0018 (CAN) must be escaped to \\u0018";
return token_type::parse_error;
}
case 0x19:
{
error_message = "invalid string: control character U+0019 (EM) must be escaped to \\u0019";
return token_type::parse_error;
}
case 0x1A:
{
error_message = "invalid string: control character U+001A (SUB) must be escaped to \\u001A";
return token_type::parse_error;
}
case 0x1B:
{
error_message = "invalid string: control character U+001B (ESC) must be escaped to \\u001B";
return token_type::parse_error;
}
case 0x1C:
{
error_message = "invalid string: control character U+001C (FS) must be escaped to \\u001C";
return token_type::parse_error;
}
case 0x1D:
{
error_message = "invalid string: control character U+001D (GS) must be escaped to \\u001D";
return token_type::parse_error;
}
case 0x1E:
{
error_message = "invalid string: control character U+001E (RS) must be escaped to \\u001E";
return token_type::parse_error;
}
case 0x1F:
{
error_message = "invalid string: control character U+001F (US) must be escaped to \\u001F";
return token_type::parse_error;
}
// U+0020..U+007F (except U+0022 (quote) and U+005C (backspace))
case 0x20:
case 0x21:
case 0x23:
case 0x24:
case 0x25:
case 0x26:
case 0x27:
case 0x28:
case 0x29:
case 0x2A:
case 0x2B:
case 0x2C:
case 0x2D:
case 0x2E:
case 0x2F:
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
case 0x3A:
case 0x3B:
case 0x3C:
case 0x3D:
case 0x3E:
case 0x3F:
case 0x40:
case 0x41:
case 0x42:
case 0x43:
case 0x44:
case 0x45:
case 0x46:
case 0x47:
case 0x48:
case 0x49:
case 0x4A:
case 0x4B:
case 0x4C:
case 0x4D:
case 0x4E:
case 0x4F:
case 0x50:
case 0x51:
case 0x52:
case 0x53:
case 0x54:
case 0x55:
case 0x56:
case 0x57:
case 0x58:
case 0x59:
case 0x5A:
case 0x5B:
case 0x5D:
case 0x5E:
case 0x5F:
case 0x60:
case 0x61:
case 0x62:
case 0x63:
case 0x64:
case 0x65:
case 0x66:
case 0x67:
case 0x68:
case 0x69:
case 0x6A:
case 0x6B:
case 0x6C:
case 0x6D:
case 0x6E:
case 0x6F:
case 0x70:
case 0x71:
case 0x72:
case 0x73:
case 0x74:
case 0x75:
case 0x76:
case 0x77:
case 0x78:
case 0x79:
case 0x7A:
case 0x7B:
case 0x7C:
case 0x7D:
case 0x7E:
case 0x7F:
{
add(current);
break;
}
// U+0080..U+07FF: bytes C2..DF 80..BF
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
{
if (JSON_HEDLEY_UNLIKELY(not next_byte_in_range({0x80, 0xBF})))
{
return token_type::parse_error;
}
break;
}
// U+0800..U+0FFF: bytes E0 A0..BF 80..BF
case 0xE0:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0xA0, 0xBF, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// U+1000..U+CFFF: bytes E1..EC 80..BF 80..BF
// U+E000..U+FFFF: bytes EE..EF 80..BF 80..BF
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xEE:
case 0xEF:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0x80, 0xBF, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// U+D000..U+D7FF: bytes ED 80..9F 80..BF
case 0xED:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0x80, 0x9F, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// U+10000..U+3FFFF F0 90..BF 80..BF 80..BF
case 0xF0:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0x90, 0xBF, 0x80, 0xBF, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF
case 0xF1:
case 0xF2:
case 0xF3:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// U+100000..U+10FFFF F4 80..8F 80..BF 80..BF
case 0xF4:
{
if (JSON_HEDLEY_UNLIKELY(not (next_byte_in_range({0x80, 0x8F, 0x80, 0xBF, 0x80, 0xBF}))))
{
return token_type::parse_error;
}
break;
}
// remaining bytes (80..C1 and F5..FF) are ill-formed
default:
{
error_message = "invalid string: ill-formed UTF-8 byte";
return token_type::parse_error;
}
}
}
}
JSON_HEDLEY_NON_NULL(2)
static void strtof(float& f, const char* str, char** endptr) noexcept
{
f = std::strtof(str, endptr);
}
JSON_HEDLEY_NON_NULL(2)
static void strtof(double& f, const char* str, char** endptr) noexcept
{
f = std::strtod(str, endptr);
}
JSON_HEDLEY_NON_NULL(2)
static void strtof(long double& f, const char* str, char** endptr) noexcept
{
f = std::strtold(str, endptr);
}
/*!
@brief scan a number literal
This function scans a string according to Sect. 6 of RFC 7159.
The function is realized with a deterministic finite state machine derived
from the grammar described in RFC 7159. Starting in state "init", the
input is read and used to determined the next state. Only state "done"
accepts the number. State "error" is a trap state to model errors. In the
table below, "anything" means any character but the ones listed before.
state | 0 | 1-9 | e E | + | - | . | anything
---------|----------|----------|----------|---------|---------|----------|-----------
init | zero | any1 | [error] | [error] | minus | [error] | [error]
minus | zero | any1 | [error] | [error] | [error] | [error] | [error]
zero | done | done | exponent | done | done | decimal1 | done
any1 | any1 | any1 | exponent | done | done | decimal1 | done
decimal1 | decimal2 | [error] | [error] | [error] | [error] | [error] | [error]
decimal2 | decimal2 | decimal2 | exponent | done | done | done | done
exponent | any2 | any2 | [error] | sign | sign | [error] | [error]
sign | any2 | any2 | [error] | [error] | [error] | [error] | [error]
any2 | any2 | any2 | done | done | done | done | done
The state machine is realized with one label per state (prefixed with
"scan_number_") and `goto` statements between them. The state machine
contains cycles, but any cycle can be left when EOF is read. Therefore,
the function is guaranteed to terminate.
During scanning, the read bytes are stored in token_buffer. This string is
then converted to a signed integer, an unsigned integer, or a
floating-point number.
@return token_type::value_unsigned, token_type::value_integer, or
token_type::value_float if number could be successfully scanned,
token_type::parse_error otherwise
@note The scanner is independent of the current locale. Internally, the
locale's decimal point is used instead of `.` to work with the
locale-dependent converters.
*/
token_type scan_number() // lgtm [cpp/use-of-goto]
{
// reset token_buffer to store the number's bytes
reset();
// the type of the parsed number; initially set to unsigned; will be
// changed if minus sign, decimal point or exponent is read
token_type number_type = token_type::value_unsigned;
// state (init): we just found out we need to scan a number
switch (current)
{
case '-':
{
add(current);
goto scan_number_minus;
}
case '0':
{
add(current);
goto scan_number_zero;
}
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any1;
}
// all other characters are rejected outside scan_number()
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
scan_number_minus:
// state: we just parsed a leading minus sign
number_type = token_type::value_integer;
switch (get())
{
case '0':
{
add(current);
goto scan_number_zero;
}
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any1;
}
default:
{
error_message = "invalid number; expected digit after '-'";
return token_type::parse_error;
}
}
scan_number_zero:
// state: we just parse a zero (maybe with a leading minus sign)
switch (get())
{
case '.':
{
add(decimal_point_char);
goto scan_number_decimal1;
}
case 'e':
case 'E':
{
add(current);
goto scan_number_exponent;
}
default:
goto scan_number_done;
}
scan_number_any1:
// state: we just parsed a number 0-9 (maybe with a leading minus sign)
switch (get())
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any1;
}
case '.':
{
add(decimal_point_char);
goto scan_number_decimal1;
}
case 'e':
case 'E':
{
add(current);
goto scan_number_exponent;
}
default:
goto scan_number_done;
}
scan_number_decimal1:
// state: we just parsed a decimal point
number_type = token_type::value_float;
switch (get())
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_decimal2;
}
default:
{
error_message = "invalid number; expected digit after '.'";
return token_type::parse_error;
}
}
scan_number_decimal2:
// we just parsed at least one number after a decimal point
switch (get())
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_decimal2;
}
case 'e':
case 'E':
{
add(current);
goto scan_number_exponent;
}
default:
goto scan_number_done;
}
scan_number_exponent:
// we just parsed an exponent
number_type = token_type::value_float;
switch (get())
{
case '+':
case '-':
{
add(current);
goto scan_number_sign;
}
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any2;
}
default:
{
error_message =
"invalid number; expected '+', '-', or digit after exponent";
return token_type::parse_error;
}
}
scan_number_sign:
// we just parsed an exponent sign
switch (get())
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any2;
}
default:
{
error_message = "invalid number; expected digit after exponent sign";
return token_type::parse_error;
}
}
scan_number_any2:
// we just parsed a number after the exponent or exponent sign
switch (get())
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
add(current);
goto scan_number_any2;
}
default:
goto scan_number_done;
}
scan_number_done:
// unget the character after the number (we only read it to know that
// we are done scanning a number)
unget();
char* endptr = nullptr;
errno = 0;
// try to parse integers first and fall back to floats
if (number_type == token_type::value_unsigned)
{
const auto x = std::strtoull(token_buffer.data(), &endptr, 10);
// we checked the number format before
assert(endptr == token_buffer.data() + token_buffer.size());
if (errno == 0)
{
value_unsigned = static_cast<number_unsigned_t>(x);
if (value_unsigned == x)
{
return token_type::value_unsigned;
}
}
}
else if (number_type == token_type::value_integer)
{
const auto x = std::strtoll(token_buffer.data(), &endptr, 10);
// we checked the number format before
assert(endptr == token_buffer.data() + token_buffer.size());
if (errno == 0)
{
value_integer = static_cast<number_integer_t>(x);
if (value_integer == x)
{
return token_type::value_integer;
}
}
}
// this code is reached if we parse a floating-point number or if an
// integer conversion above failed
strtof(value_float, token_buffer.data(), &endptr);
// we checked the number format before
assert(endptr == token_buffer.data() + token_buffer.size());
return token_type::value_float;
}
/*!
@param[in] literal_text the literal text to expect
@param[in] length the length of the passed literal text
@param[in] return_type the token type to return on success
*/
JSON_HEDLEY_NON_NULL(2)
token_type scan_literal(const char* literal_text, const std::size_t length,
token_type return_type)
{
assert(current == literal_text[0]);
for (std::size_t i = 1; i < length; ++i)
{
if (JSON_HEDLEY_UNLIKELY(get() != literal_text[i]))
{
error_message = "invalid literal";
return token_type::parse_error;
}
}
return return_type;
}
/////////////////////
// input management
/////////////////////
/// reset token_buffer; current character is beginning of token
void reset() noexcept
{
token_buffer.clear();
token_string.clear();
token_string.push_back(std::char_traits<char>::to_char_type(current));
}
/*
@brief get next character from the input
This function provides the interface to the used input adapter. It does
not throw in case the input reached EOF, but returns a
`std::char_traits<char>::eof()` in that case. Stores the scanned characters
for use in error messages.
@return character read from the input
*/
std::char_traits<char>::int_type get()
{
++position.chars_read_total;
++position.chars_read_current_line;
if (next_unget)
{
// just reset the next_unget variable and work with current
next_unget = false;
}
else
{
current = ia->get_character();
}
if (JSON_HEDLEY_LIKELY(current != std::char_traits<char>::eof()))
{
token_string.push_back(std::char_traits<char>::to_char_type(current));
}
if (current == '\n')
{
++position.lines_read;
position.chars_read_current_line = 0;
}
return current;
}
/*!
@brief unget current character (read it again on next get)
We implement unget by setting variable next_unget to true. The input is not
changed - we just simulate ungetting by modifying chars_read_total,
chars_read_current_line, and token_string. The next call to get() will
behave as if the unget character is read again.
*/
void unget()
{
next_unget = true;
--position.chars_read_total;
// in case we "unget" a newline, we have to also decrement the lines_read
if (position.chars_read_current_line == 0)
{
if (position.lines_read > 0)
{
--position.lines_read;
}
}
else
{
--position.chars_read_current_line;
}
if (JSON_HEDLEY_LIKELY(current != std::char_traits<char>::eof()))
{
assert(not token_string.empty());
token_string.pop_back();
}
}
/// add a character to token_buffer
void add(int c)
{
token_buffer.push_back(std::char_traits<char>::to_char_type(c));
}
public:
/////////////////////
// value getters
/////////////////////
/// return integer value
constexpr number_integer_t get_number_integer() const noexcept
{
return value_integer;
}
/// return unsigned integer value
constexpr number_unsigned_t get_number_unsigned() const noexcept
{
return value_unsigned;
}
/// return floating-point value
constexpr number_float_t get_number_float() const noexcept
{
return value_float;
}
/// return current string value (implicitly resets the token; useful only once)
string_t& get_string()
{
return token_buffer;
}
/////////////////////
// diagnostics
/////////////////////
/// return position of last read token
constexpr position_t get_position() const noexcept
{
return position;
}
/// return the last read token (for errors only). Will never contain EOF
/// (an arbitrary value that is not a valid char value, often -1), because
/// 255 may legitimately occur. May contain NUL, which should be escaped.
std::string get_token_string() const
{
// escape control characters
std::string result;
for (const auto c : token_string)
{
if ('\x00' <= c and c <= '\x1F')
{
// escape control characters
std::array<char, 9> cs{{}};
(std::snprintf)(cs.data(), cs.size(), "<U+%.4X>", static_cast<unsigned char>(c));
result += cs.data();
}
else
{
// add character as is
result.push_back(c);
}
}
return result;
}
/// return syntax error message
JSON_HEDLEY_RETURNS_NON_NULL
constexpr const char* get_error_message() const noexcept
{
return error_message;
}
/////////////////////
// actual scanner
/////////////////////
/*!
@brief skip the UTF-8 byte order mark
@return true iff there is no BOM or the correct BOM has been skipped
*/
bool skip_bom()
{
if (get() == 0xEF)
{
// check if we completely parse the BOM
return get() == 0xBB and get() == 0xBF;
}
// the first character is not the beginning of the BOM; unget it to
// process is later
unget();
return true;
}
token_type scan()
{
// initially, skip the BOM
if (position.chars_read_total == 0 and not skip_bom())
{
error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given";
return token_type::parse_error;
}
// read next character and ignore whitespace
do
{
get();
}
while (current == ' ' or current == '\t' or current == '\n' or current == '\r');
switch (current)
{
// structural characters
case '[':
return token_type::begin_array;
case ']':
return token_type::end_array;
case '{':
return token_type::begin_object;
case '}':
return token_type::end_object;
case ':':
return token_type::name_separator;
case ',':
return token_type::value_separator;
// literals
case 't':
return scan_literal("true", 4, token_type::literal_true);
case 'f':
return scan_literal("false", 5, token_type::literal_false);
case 'n':
return scan_literal("null", 4, token_type::literal_null);
// string
case '\"':
return scan_string();
// number
case '-':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return scan_number();
// end of input (the null byte is needed when parsing from
// string literals)
case '\0':
case std::char_traits<char>::eof():
return token_type::end_of_input;
// error
default:
error_message = "invalid literal";
return token_type::parse_error;
}
}
private:
/// input adapter
detail::input_adapter_t ia = nullptr;
/// the current character
std::char_traits<char>::int_type current = std::char_traits<char>::eof();
/// whether the next get() call should just return current
bool next_unget = false;
/// the start position of the current token
position_t position {};
/// raw input token string (for error messages)
std::vector<char> token_string {};
/// buffer for variable-length tokens (numbers, strings)
string_t token_buffer {};
/// a description of occurred lexer errors
const char* error_message = "";
// number values
number_integer_t value_integer = 0;
number_unsigned_t value_unsigned = 0;
number_float_t value_float = 0;
/// the decimal point
const char decimal_point_char = '.';
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/input/parser.hpp>
#include <cassert> // assert
#include <cmath> // isfinite
#include <cstdint> // uint8_t
#include <functional> // function
#include <string> // string
#include <utility> // move
#include <vector> // vector
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/input/input_adapters.hpp>
// #include <nlohmann/detail/input/json_sax.hpp>
// #include <nlohmann/detail/input/lexer.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/is_sax.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
////////////
// parser //
////////////
/*!
@brief syntax analysis
This class implements a recursive decent parser.
*/
template<typename BasicJsonType>
class parser
{
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using number_float_t = typename BasicJsonType::number_float_t;
using string_t = typename BasicJsonType::string_t;
using lexer_t = lexer<BasicJsonType>;
using token_type = typename lexer_t::token_type;
public:
enum class parse_event_t : uint8_t
{
/// the parser read `{` and started to process a JSON object
object_start,
/// the parser read `}` and finished processing a JSON object
object_end,
/// the parser read `[` and started to process a JSON array
array_start,
/// the parser read `]` and finished processing a JSON array
array_end,
/// the parser read a key of a value in an object
key,
/// the parser finished reading a JSON value
value
};
using parser_callback_t =
std::function<bool(int depth, parse_event_t event, BasicJsonType& parsed)>;
/// a parser reading from an input adapter
explicit parser(detail::input_adapter_t&& adapter,
const parser_callback_t cb = nullptr,
const bool allow_exceptions_ = true)
: callback(cb), m_lexer(std::move(adapter)), allow_exceptions(allow_exceptions_)
{
// read first token
get_token();
}
/*!
@brief public parser interface
@param[in] strict whether to expect the last token to be EOF
@param[in,out] result parsed JSON value
@throw parse_error.101 in case of an unexpected token
@throw parse_error.102 if to_unicode fails or surrogate error
@throw parse_error.103 if to_unicode fails
*/
void parse(const bool strict, BasicJsonType& result)
{
if (callback)
{
json_sax_dom_callback_parser<BasicJsonType> sdp(result, callback, allow_exceptions);
sax_parse_internal(&sdp);
result.assert_invariant();
// in strict mode, input must be completely read
if (strict and (get_token() != token_type::end_of_input))
{
sdp.parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::end_of_input, "value")));
}
// in case of an error, return discarded value
if (sdp.is_errored())
{
result = value_t::discarded;
return;
}
// set top-level value to null if it was discarded by the callback
// function
if (result.is_discarded())
{
result = nullptr;
}
}
else
{
json_sax_dom_parser<BasicJsonType> sdp(result, allow_exceptions);
sax_parse_internal(&sdp);
result.assert_invariant();
// in strict mode, input must be completely read
if (strict and (get_token() != token_type::end_of_input))
{
sdp.parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::end_of_input, "value")));
}
// in case of an error, return discarded value
if (sdp.is_errored())
{
result = value_t::discarded;
return;
}
}
}
/*!
@brief public accept interface
@param[in] strict whether to expect the last token to be EOF
@return whether the input is a proper JSON text
*/
bool accept(const bool strict = true)
{
json_sax_acceptor<BasicJsonType> sax_acceptor;
return sax_parse(&sax_acceptor, strict);
}
template <typename SAX>
JSON_HEDLEY_NON_NULL(2)
bool sax_parse(SAX* sax, const bool strict = true)
{
(void)detail::is_sax_static_asserts<SAX, BasicJsonType> {};
const bool result = sax_parse_internal(sax);
// strict mode: next byte must be EOF
if (result and strict and (get_token() != token_type::end_of_input))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::end_of_input, "value")));
}
return result;
}
private:
template <typename SAX>
JSON_HEDLEY_NON_NULL(2)
bool sax_parse_internal(SAX* sax)
{
// stack to remember the hierarchy of structured values we are parsing
// true = array; false = object
std::vector<bool> states;
// value to avoid a goto (see comment where set to true)
bool skip_to_state_evaluation = false;
while (true)
{
if (not skip_to_state_evaluation)
{
// invariant: get_token() was called before each iteration
switch (last_token)
{
case token_type::begin_object:
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_object(std::size_t(-1))))
{
return false;
}
// closing } -> we are done
if (get_token() == token_type::end_object)
{
if (JSON_HEDLEY_UNLIKELY(not sax->end_object()))
{
return false;
}
break;
}
// parse key
if (JSON_HEDLEY_UNLIKELY(last_token != token_type::value_string))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::value_string, "object key")));
}
if (JSON_HEDLEY_UNLIKELY(not sax->key(m_lexer.get_string())))
{
return false;
}
// parse separator (:)
if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::name_separator, "object separator")));
}
// remember we are now inside an object
states.push_back(false);
// parse values
get_token();
continue;
}
case token_type::begin_array:
{
if (JSON_HEDLEY_UNLIKELY(not sax->start_array(std::size_t(-1))))
{
return false;
}
// closing ] -> we are done
if (get_token() == token_type::end_array)
{
if (JSON_HEDLEY_UNLIKELY(not sax->end_array()))
{
return false;
}
break;
}
// remember we are now inside an array
states.push_back(true);
// parse values (no need to call get_token)
continue;
}
case token_type::value_float:
{
const auto res = m_lexer.get_number_float();
if (JSON_HEDLEY_UNLIKELY(not std::isfinite(res)))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
out_of_range::create(406, "number overflow parsing '" + m_lexer.get_token_string() + "'"));
}
if (JSON_HEDLEY_UNLIKELY(not sax->number_float(res, m_lexer.get_string())))
{
return false;
}
break;
}
case token_type::literal_false:
{
if (JSON_HEDLEY_UNLIKELY(not sax->boolean(false)))
{
return false;
}
break;
}
case token_type::literal_null:
{
if (JSON_HEDLEY_UNLIKELY(not sax->null()))
{
return false;
}
break;
}
case token_type::literal_true:
{
if (JSON_HEDLEY_UNLIKELY(not sax->boolean(true)))
{
return false;
}
break;
}
case token_type::value_integer:
{
if (JSON_HEDLEY_UNLIKELY(not sax->number_integer(m_lexer.get_number_integer())))
{
return false;
}
break;
}
case token_type::value_string:
{
if (JSON_HEDLEY_UNLIKELY(not sax->string(m_lexer.get_string())))
{
return false;
}
break;
}
case token_type::value_unsigned:
{
if (JSON_HEDLEY_UNLIKELY(not sax->number_unsigned(m_lexer.get_number_unsigned())))
{
return false;
}
break;
}
case token_type::parse_error:
{
// using "uninitialized" to avoid "expected" message
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::uninitialized, "value")));
}
default: // the last token was unexpected
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::literal_or_value, "value")));
}
}
}
else
{
skip_to_state_evaluation = false;
}
// we reached this line after we successfully parsed a value
if (states.empty())
{
// empty stack: we reached the end of the hierarchy: done
return true;
}
if (states.back()) // array
{
// comma -> next value
if (get_token() == token_type::value_separator)
{
// parse a new value
get_token();
continue;
}
// closing ]
if (JSON_HEDLEY_LIKELY(last_token == token_type::end_array))
{
if (JSON_HEDLEY_UNLIKELY(not sax->end_array()))
{
return false;
}
// We are done with this array. Before we can parse a
// new value, we need to evaluate the new state first.
// By setting skip_to_state_evaluation to false, we
// are effectively jumping to the beginning of this if.
assert(not states.empty());
states.pop_back();
skip_to_state_evaluation = true;
continue;
}
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::end_array, "array")));
}
else // object
{
// comma -> next value
if (get_token() == token_type::value_separator)
{
// parse key
if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::value_string))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::value_string, "object key")));
}
if (JSON_HEDLEY_UNLIKELY(not sax->key(m_lexer.get_string())))
{
return false;
}
// parse separator (:)
if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator))
{
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::name_separator, "object separator")));
}
// parse values
get_token();
continue;
}
// closing }
if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object))
{
if (JSON_HEDLEY_UNLIKELY(not sax->end_object()))
{
return false;
}
// We are done with this object. Before we can parse a
// new value, we need to evaluate the new state first.
// By setting skip_to_state_evaluation to false, we
// are effectively jumping to the beginning of this if.
assert(not states.empty());
states.pop_back();
skip_to_state_evaluation = true;
continue;
}
return sax->parse_error(m_lexer.get_position(),
m_lexer.get_token_string(),
parse_error::create(101, m_lexer.get_position(),
exception_message(token_type::end_object, "object")));
}
}
}
/// get next token from lexer
token_type get_token()
{
return last_token = m_lexer.scan();
}
std::string exception_message(const token_type expected, const std::string& context)
{
std::string error_msg = "syntax error ";
if (not context.empty())
{
error_msg += "while parsing " + context + " ";
}
error_msg += "- ";
if (last_token == token_type::parse_error)
{
error_msg += std::string(m_lexer.get_error_message()) + "; last read: '" +
m_lexer.get_token_string() + "'";
}
else
{
error_msg += "unexpected " + std::string(lexer_t::token_type_name(last_token));
}
if (expected != token_type::uninitialized)
{
error_msg += "; expected " + std::string(lexer_t::token_type_name(expected));
}
return error_msg;
}
private:
/// callback function
const parser_callback_t callback = nullptr;
/// the type of the last read token
token_type last_token = token_type::uninitialized;
/// the lexer
lexer_t m_lexer;
/// whether to throw exceptions in case of errors
const bool allow_exceptions = true;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/iterators/internal_iterator.hpp>
// #include <nlohmann/detail/iterators/primitive_iterator.hpp>
#include <cstddef> // ptrdiff_t
#include <limits> // numeric_limits
namespace nlohmann
{
namespace detail
{
/*
@brief an iterator for primitive JSON types
This class models an iterator for primitive JSON types (boolean, number,
string). It's only purpose is to allow the iterator/const_iterator classes
to "iterate" over primitive values. Internally, the iterator is modeled by
a `difference_type` variable. Value begin_value (`0`) models the begin,
end_value (`1`) models past the end.
*/
class primitive_iterator_t
{
private:
using difference_type = std::ptrdiff_t;
static constexpr difference_type begin_value = 0;
static constexpr difference_type end_value = begin_value + 1;
/// iterator as signed integer type
difference_type m_it = (std::numeric_limits<std::ptrdiff_t>::min)();
public:
constexpr difference_type get_value() const noexcept
{
return m_it;
}
/// set iterator to a defined beginning
void set_begin() noexcept
{
m_it = begin_value;
}
/// set iterator to a defined past the end
void set_end() noexcept
{
m_it = end_value;
}
/// return whether the iterator can be dereferenced
constexpr bool is_begin() const noexcept
{
return m_it == begin_value;
}
/// return whether the iterator is at end
constexpr bool is_end() const noexcept
{
return m_it == end_value;
}
friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept
{
return lhs.m_it == rhs.m_it;
}
friend constexpr bool operator<(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept
{
return lhs.m_it < rhs.m_it;
}
primitive_iterator_t operator+(difference_type n) noexcept
{
auto result = *this;
result += n;
return result;
}
friend constexpr difference_type operator-(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept
{
return lhs.m_it - rhs.m_it;
}
primitive_iterator_t& operator++() noexcept
{
++m_it;
return *this;
}
primitive_iterator_t const operator++(int) noexcept
{
auto result = *this;
++m_it;
return result;
}
primitive_iterator_t& operator--() noexcept
{
--m_it;
return *this;
}
primitive_iterator_t const operator--(int) noexcept
{
auto result = *this;
--m_it;
return result;
}
primitive_iterator_t& operator+=(difference_type n) noexcept
{
m_it += n;
return *this;
}
primitive_iterator_t& operator-=(difference_type n) noexcept
{
m_it -= n;
return *this;
}
};
} // namespace detail
} // namespace nlohmann
namespace nlohmann
{
namespace detail
{
/*!
@brief an iterator value
@note This structure could easily be a union, but MSVC currently does not allow
unions members with complex constructors, see https://github.com/nlohmann/json/pull/105.
*/
template<typename BasicJsonType> struct internal_iterator
{
/// iterator for JSON objects
typename BasicJsonType::object_t::iterator object_iterator {};
/// iterator for JSON arrays
typename BasicJsonType::array_t::iterator array_iterator {};
/// generic iterator for all other types
primitive_iterator_t primitive_iterator {};
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/iterators/iter_impl.hpp>
#include <ciso646> // not
#include <iterator> // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next
#include <type_traits> // conditional, is_const, remove_const
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/iterators/internal_iterator.hpp>
// #include <nlohmann/detail/iterators/primitive_iterator.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/cpp_future.hpp>
// #include <nlohmann/detail/meta/type_traits.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
// forward declare, to be able to friend it later on
template<typename IteratorType> class iteration_proxy;
template<typename IteratorType> class iteration_proxy_value;
/*!
@brief a template for a bidirectional iterator for the @ref basic_json class
This class implements a both iterators (iterator and const_iterator) for the
@ref basic_json class.
@note An iterator is called *initialized* when a pointer to a JSON value has
been set (e.g., by a constructor or a copy assignment). If the iterator is
default-constructed, it is *uninitialized* and most methods are undefined.
**The library uses assertions to detect calls on uninitialized iterators.**
@requirement The class satisfies the following concept requirements:
-
[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator):
The iterator that can be moved can be moved in both directions (i.e.
incremented and decremented).
@since version 1.0.0, simplified in version 2.0.9, change to bidirectional
iterators in version 3.0.0 (see https://github.com/nlohmann/json/issues/593)
*/
template<typename BasicJsonType>
class iter_impl
{
/// allow basic_json to access private members
friend iter_impl<typename std::conditional<std::is_const<BasicJsonType>::value, typename std::remove_const<BasicJsonType>::type, const BasicJsonType>::type>;
friend BasicJsonType;
friend iteration_proxy<iter_impl>;
friend iteration_proxy_value<iter_impl>;
using object_t = typename BasicJsonType::object_t;
using array_t = typename BasicJsonType::array_t;
// make sure BasicJsonType is basic_json or const basic_json
static_assert(is_basic_json<typename std::remove_const<BasicJsonType>::type>::value,
"iter_impl only accepts (const) basic_json");
public:
/// The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17.
/// The C++ Standard has never required user-defined iterators to derive from std::iterator.
/// A user-defined iterator should provide publicly accessible typedefs named
/// iterator_category, value_type, difference_type, pointer, and reference.
/// Note that value_type is required to be non-const, even for constant iterators.
using iterator_category = std::bidirectional_iterator_tag;
/// the type of the values when the iterator is dereferenced
using value_type = typename BasicJsonType::value_type;
/// a type to represent differences between iterators
using difference_type = typename BasicJsonType::difference_type;
/// defines a pointer to the type iterated over (value_type)
using pointer = typename std::conditional<std::is_const<BasicJsonType>::value,
typename BasicJsonType::const_pointer,
typename BasicJsonType::pointer>::type;
/// defines a reference to the type iterated over (value_type)
using reference =
typename std::conditional<std::is_const<BasicJsonType>::value,
typename BasicJsonType::const_reference,
typename BasicJsonType::reference>::type;
/// default constructor
iter_impl() = default;
/*!
@brief constructor for a given JSON instance
@param[in] object pointer to a JSON object for this iterator
@pre object != nullptr
@post The iterator is initialized; i.e. `m_object != nullptr`.
*/
explicit iter_impl(pointer object) noexcept : m_object(object)
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
m_it.object_iterator = typename object_t::iterator();
break;
}
case value_t::array:
{
m_it.array_iterator = typename array_t::iterator();
break;
}
default:
{
m_it.primitive_iterator = primitive_iterator_t();
break;
}
}
}
/*!
@note The conventional copy constructor and copy assignment are implicitly
defined. Combined with the following converting constructor and
assignment, they support: (1) copy from iterator to iterator, (2)
copy from const iterator to const iterator, and (3) conversion from
iterator to const iterator. However conversion from const iterator
to iterator is not defined.
*/
/*!
@brief const copy constructor
@param[in] other const iterator to copy from
@note This copy constructor had to be defined explicitly to circumvent a bug
occurring on msvc v19.0 compiler (VS 2015) debug build. For more
information refer to: https://github.com/nlohmann/json/issues/1608
*/
iter_impl(const iter_impl<const BasicJsonType>& other) noexcept
: m_object(other.m_object), m_it(other.m_it)
{}
/*!
@brief converting assignment
@param[in] other const iterator to copy from
@return const/non-const iterator
@note It is not checked whether @a other is initialized.
*/
iter_impl& operator=(const iter_impl<const BasicJsonType>& other) noexcept
{
m_object = other.m_object;
m_it = other.m_it;
return *this;
}
/*!
@brief converting constructor
@param[in] other non-const iterator to copy from
@note It is not checked whether @a other is initialized.
*/
iter_impl(const iter_impl<typename std::remove_const<BasicJsonType>::type>& other) noexcept
: m_object(other.m_object), m_it(other.m_it)
{}
/*!
@brief converting assignment
@param[in] other non-const iterator to copy from
@return const/non-const iterator
@note It is not checked whether @a other is initialized.
*/
iter_impl& operator=(const iter_impl<typename std::remove_const<BasicJsonType>::type>& other) noexcept
{
m_object = other.m_object;
m_it = other.m_it;
return *this;
}
private:
/*!
@brief set the iterator to the first value
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
void set_begin() noexcept
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
m_it.object_iterator = m_object->m_value.object->begin();
break;
}
case value_t::array:
{
m_it.array_iterator = m_object->m_value.array->begin();
break;
}
case value_t::null:
{
// set to end so begin()==end() is true: null is empty
m_it.primitive_iterator.set_end();
break;
}
default:
{
m_it.primitive_iterator.set_begin();
break;
}
}
}
/*!
@brief set the iterator past the last value
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
void set_end() noexcept
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
m_it.object_iterator = m_object->m_value.object->end();
break;
}
case value_t::array:
{
m_it.array_iterator = m_object->m_value.array->end();
break;
}
default:
{
m_it.primitive_iterator.set_end();
break;
}
}
}
public:
/*!
@brief return a reference to the value pointed to by the iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
reference operator*() const
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
assert(m_it.object_iterator != m_object->m_value.object->end());
return m_it.object_iterator->second;
}
case value_t::array:
{
assert(m_it.array_iterator != m_object->m_value.array->end());
return *m_it.array_iterator;
}
case value_t::null:
JSON_THROW(invalid_iterator::create(214, "cannot get value"));
default:
{
if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin()))
{
return *m_object;
}
JSON_THROW(invalid_iterator::create(214, "cannot get value"));
}
}
}
/*!
@brief dereference the iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
pointer operator->() const
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
assert(m_it.object_iterator != m_object->m_value.object->end());
return &(m_it.object_iterator->second);
}
case value_t::array:
{
assert(m_it.array_iterator != m_object->m_value.array->end());
return &*m_it.array_iterator;
}
default:
{
if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin()))
{
return m_object;
}
JSON_THROW(invalid_iterator::create(214, "cannot get value"));
}
}
}
/*!
@brief post-increment (it++)
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl const operator++(int)
{
auto result = *this;
++(*this);
return result;
}
/*!
@brief pre-increment (++it)
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl& operator++()
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
std::advance(m_it.object_iterator, 1);
break;
}
case value_t::array:
{
std::advance(m_it.array_iterator, 1);
break;
}
default:
{
++m_it.primitive_iterator;
break;
}
}
return *this;
}
/*!
@brief post-decrement (it--)
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl const operator--(int)
{
auto result = *this;
--(*this);
return result;
}
/*!
@brief pre-decrement (--it)
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl& operator--()
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
{
std::advance(m_it.object_iterator, -1);
break;
}
case value_t::array:
{
std::advance(m_it.array_iterator, -1);
break;
}
default:
{
--m_it.primitive_iterator;
break;
}
}
return *this;
}
/*!
@brief comparison: equal
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator==(const iter_impl& other) const
{
// if objects are not the same, the comparison is undefined
if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object))
{
JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers"));
}
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
return (m_it.object_iterator == other.m_it.object_iterator);
case value_t::array:
return (m_it.array_iterator == other.m_it.array_iterator);
default:
return (m_it.primitive_iterator == other.m_it.primitive_iterator);
}
}
/*!
@brief comparison: not equal
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator!=(const iter_impl& other) const
{
return not operator==(other);
}
/*!
@brief comparison: smaller
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator<(const iter_impl& other) const
{
// if objects are not the same, the comparison is undefined
if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object))
{
JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers"));
}
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
JSON_THROW(invalid_iterator::create(213, "cannot compare order of object iterators"));
case value_t::array:
return (m_it.array_iterator < other.m_it.array_iterator);
default:
return (m_it.primitive_iterator < other.m_it.primitive_iterator);
}
}
/*!
@brief comparison: less than or equal
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator<=(const iter_impl& other) const
{
return not other.operator < (*this);
}
/*!
@brief comparison: greater than
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator>(const iter_impl& other) const
{
return not operator<=(other);
}
/*!
@brief comparison: greater than or equal
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
bool operator>=(const iter_impl& other) const
{
return not operator<(other);
}
/*!
@brief add to iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl& operator+=(difference_type i)
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators"));
case value_t::array:
{
std::advance(m_it.array_iterator, i);
break;
}
default:
{
m_it.primitive_iterator += i;
break;
}
}
return *this;
}
/*!
@brief subtract from iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl& operator-=(difference_type i)
{
return operator+=(-i);
}
/*!
@brief add to iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl operator+(difference_type i) const
{
auto result = *this;
result += i;
return result;
}
/*!
@brief addition of distance and iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
friend iter_impl operator+(difference_type i, const iter_impl& it)
{
auto result = it;
result += i;
return result;
}
/*!
@brief subtract from iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
iter_impl operator-(difference_type i) const
{
auto result = *this;
result -= i;
return result;
}
/*!
@brief return difference
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
difference_type operator-(const iter_impl& other) const
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators"));
case value_t::array:
return m_it.array_iterator - other.m_it.array_iterator;
default:
return m_it.primitive_iterator - other.m_it.primitive_iterator;
}
}
/*!
@brief access to successor
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
reference operator[](difference_type n) const
{
assert(m_object != nullptr);
switch (m_object->m_type)
{
case value_t::object:
JSON_THROW(invalid_iterator::create(208, "cannot use operator[] for object iterators"));
case value_t::array:
return *std::next(m_it.array_iterator, n);
case value_t::null:
JSON_THROW(invalid_iterator::create(214, "cannot get value"));
default:
{
if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.get_value() == -n))
{
return *m_object;
}
JSON_THROW(invalid_iterator::create(214, "cannot get value"));
}
}
}
/*!
@brief return the key of an object iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
const typename object_t::key_type& key() const
{
assert(m_object != nullptr);
if (JSON_HEDLEY_LIKELY(m_object->is_object()))
{
return m_it.object_iterator->first;
}
JSON_THROW(invalid_iterator::create(207, "cannot use key() for non-object iterators"));
}
/*!
@brief return the value of an iterator
@pre The iterator is initialized; i.e. `m_object != nullptr`.
*/
reference value() const
{
return operator*();
}
private:
/// associated JSON instance
pointer m_object = nullptr;
/// the actual iterator of the associated instance
internal_iterator<typename std::remove_const<BasicJsonType>::type> m_it {};
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/iterators/iteration_proxy.hpp>
// #include <nlohmann/detail/iterators/json_reverse_iterator.hpp>
#include <cstddef> // ptrdiff_t
#include <iterator> // reverse_iterator
#include <utility> // declval
namespace nlohmann
{
namespace detail
{
//////////////////////
// reverse_iterator //
//////////////////////
/*!
@brief a template for a reverse iterator class
@tparam Base the base iterator type to reverse. Valid types are @ref
iterator (to create @ref reverse_iterator) and @ref const_iterator (to
create @ref const_reverse_iterator).
@requirement The class satisfies the following concept requirements:
-
[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator):
The iterator that can be moved can be moved in both directions (i.e.
incremented and decremented).
- [OutputIterator](https://en.cppreference.com/w/cpp/named_req/OutputIterator):
It is possible to write to the pointed-to element (only if @a Base is
@ref iterator).
@since version 1.0.0
*/
template<typename Base>
class json_reverse_iterator : public std::reverse_iterator<Base>
{
public:
using difference_type = std::ptrdiff_t;
/// shortcut to the reverse iterator adapter
using base_iterator = std::reverse_iterator<Base>;
/// the reference type for the pointed-to element
using reference = typename Base::reference;
/// create reverse iterator from iterator
explicit json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept
: base_iterator(it) {}
/// create reverse iterator from base class
explicit json_reverse_iterator(const base_iterator& it) noexcept : base_iterator(it) {}
/// post-increment (it++)
json_reverse_iterator const operator++(int)
{
return static_cast<json_reverse_iterator>(base_iterator::operator++(1));
}
/// pre-increment (++it)
json_reverse_iterator& operator++()
{
return static_cast<json_reverse_iterator&>(base_iterator::operator++());
}
/// post-decrement (it--)
json_reverse_iterator const operator--(int)
{
return static_cast<json_reverse_iterator>(base_iterator::operator--(1));
}
/// pre-decrement (--it)
json_reverse_iterator& operator--()
{
return static_cast<json_reverse_iterator&>(base_iterator::operator--());
}
/// add to iterator
json_reverse_iterator& operator+=(difference_type i)
{
return static_cast<json_reverse_iterator&>(base_iterator::operator+=(i));
}
/// add to iterator
json_reverse_iterator operator+(difference_type i) const
{
return static_cast<json_reverse_iterator>(base_iterator::operator+(i));
}
/// subtract from iterator
json_reverse_iterator operator-(difference_type i) const
{
return static_cast<json_reverse_iterator>(base_iterator::operator-(i));
}
/// return difference
difference_type operator-(const json_reverse_iterator& other) const
{
return base_iterator(*this) - base_iterator(other);
}
/// access to successor
reference operator[](difference_type n) const
{
return *(this->operator+(n));
}
/// return the key of an object iterator
auto key() const -> decltype(std::declval<Base>().key())
{
auto it = --this->base();
return it.key();
}
/// return the value of an iterator
reference value() const
{
auto it = --this->base();
return it.operator * ();
}
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/iterators/primitive_iterator.hpp>
// #include <nlohmann/detail/json_pointer.hpp>
#include <algorithm> // all_of
#include <cassert> // assert
#include <cctype> // isdigit
#include <numeric> // accumulate
#include <string> // string
#include <utility> // move
#include <vector> // vector
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
template<typename BasicJsonType>
class json_pointer
{
// allow basic_json to access private members
NLOHMANN_BASIC_JSON_TPL_DECLARATION
friend class basic_json;
public:
/*!
@brief create JSON pointer
Create a JSON pointer according to the syntax described in
[Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3).
@param[in] s string representing the JSON pointer; if omitted, the empty
string is assumed which references the whole JSON value
@throw parse_error.107 if the given JSON pointer @a s is nonempty and does
not begin with a slash (`/`); see example below
@throw parse_error.108 if a tilde (`~`) in the given JSON pointer @a s is
not followed by `0` (representing `~`) or `1` (representing `/`); see
example below
@liveexample{The example shows the construction several valid JSON pointers
as well as the exceptional behavior.,json_pointer}
@since version 2.0.0
*/
explicit json_pointer(const std::string& s = "")
: reference_tokens(split(s))
{}
/*!
@brief return a string representation of the JSON pointer
@invariant For each JSON pointer `ptr`, it holds:
@code {.cpp}
ptr == json_pointer(ptr.to_string());
@endcode
@return a string representation of the JSON pointer
@liveexample{The example shows the result of `to_string`.,json_pointer__to_string}
@since version 2.0.0
*/
std::string to_string() const
{
return std::accumulate(reference_tokens.begin(), reference_tokens.end(),
std::string{},
[](const std::string & a, const std::string & b)
{
return a + "/" + escape(b);
});
}
/// @copydoc to_string()
operator std::string() const
{
return to_string();
}
/*!
@brief append another JSON pointer at the end of this JSON pointer
@param[in] ptr JSON pointer to append
@return JSON pointer with @a ptr appended
@liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add}
@complexity Linear in the length of @a ptr.
@sa @ref operator/=(std::string) to append a reference token
@sa @ref operator/=(std::size_t) to append an array index
@sa @ref operator/(const json_pointer&, const json_pointer&) for a binary operator
@since version 3.6.0
*/
json_pointer& operator/=(const json_pointer& ptr)
{
reference_tokens.insert(reference_tokens.end(),
ptr.reference_tokens.begin(),
ptr.reference_tokens.end());
return *this;
}
/*!
@brief append an unescaped reference token at the end of this JSON pointer
@param[in] token reference token to append
@return JSON pointer with @a token appended without escaping @a token
@liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add}
@complexity Amortized constant.
@sa @ref operator/=(const json_pointer&) to append a JSON pointer
@sa @ref operator/=(std::size_t) to append an array index
@sa @ref operator/(const json_pointer&, std::size_t) for a binary operator
@since version 3.6.0
*/
json_pointer& operator/=(std::string token)
{
push_back(std::move(token));
return *this;
}
/*!
@brief append an array index at the end of this JSON pointer
@param[in] array_index array index to append
@return JSON pointer with @a array_index appended
@liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add}
@complexity Amortized constant.
@sa @ref operator/=(const json_pointer&) to append a JSON pointer
@sa @ref operator/=(std::string) to append a reference token
@sa @ref operator/(const json_pointer&, std::string) for a binary operator
@since version 3.6.0
*/
json_pointer& operator/=(std::size_t array_index)
{
return *this /= std::to_string(array_index);
}
/*!
@brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer
@param[in] lhs JSON pointer
@param[in] rhs JSON pointer
@return a new JSON pointer with @a rhs appended to @a lhs
@liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary}
@complexity Linear in the length of @a lhs and @a rhs.
@sa @ref operator/=(const json_pointer&) to append a JSON pointer
@since version 3.6.0
*/
friend json_pointer operator/(const json_pointer& lhs,
const json_pointer& rhs)
{
return json_pointer(lhs) /= rhs;
}
/*!
@brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer
@param[in] ptr JSON pointer
@param[in] token reference token
@return a new JSON pointer with unescaped @a token appended to @a ptr
@liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary}
@complexity Linear in the length of @a ptr.
@sa @ref operator/=(std::string) to append a reference token
@since version 3.6.0
*/
friend json_pointer operator/(const json_pointer& ptr, std::string token)
{
return json_pointer(ptr) /= std::move(token);
}
/*!
@brief create a new JSON pointer by appending the array-index-token at the end of the JSON pointer
@param[in] ptr JSON pointer
@param[in] array_index array index
@return a new JSON pointer with @a array_index appended to @a ptr
@liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary}
@complexity Linear in the length of @a ptr.
@sa @ref operator/=(std::size_t) to append an array index
@since version 3.6.0
*/
friend json_pointer operator/(const json_pointer& ptr, std::size_t array_index)
{
return json_pointer(ptr) /= array_index;
}
/*!
@brief returns the parent of this JSON pointer
@return parent of this JSON pointer; in case this JSON pointer is the root,
the root itself is returned
@complexity Linear in the length of the JSON pointer.
@liveexample{The example shows the result of `parent_pointer` for different
JSON Pointers.,json_pointer__parent_pointer}
@since version 3.6.0
*/
json_pointer parent_pointer() const
{
if (empty())
{
return *this;
}
json_pointer res = *this;
res.pop_back();
return res;
}
/*!
@brief remove last reference token
@pre not `empty()`
@liveexample{The example shows the usage of `pop_back`.,json_pointer__pop_back}
@complexity Constant.
@throw out_of_range.405 if JSON pointer has no parent
@since version 3.6.0
*/
void pop_back()
{
if (JSON_HEDLEY_UNLIKELY(empty()))
{
JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent"));
}
reference_tokens.pop_back();
}
/*!
@brief return last reference token
@pre not `empty()`
@return last reference token
@liveexample{The example shows the usage of `back`.,json_pointer__back}
@complexity Constant.
@throw out_of_range.405 if JSON pointer has no parent
@since version 3.6.0
*/
const std::string& back() const
{
if (JSON_HEDLEY_UNLIKELY(empty()))
{
JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent"));
}
return reference_tokens.back();
}
/*!
@brief append an unescaped token at the end of the reference pointer
@param[in] token token to add
@complexity Amortized constant.
@liveexample{The example shows the result of `push_back` for different
JSON Pointers.,json_pointer__push_back}
@since version 3.6.0
*/
void push_back(const std::string& token)
{
reference_tokens.push_back(token);
}
/// @copydoc push_back(const std::string&)
void push_back(std::string&& token)
{
reference_tokens.push_back(std::move(token));
}
/*!
@brief return whether pointer points to the root document
@return true iff the JSON pointer points to the root document
@complexity Constant.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example shows the result of `empty` for different JSON
Pointers.,json_pointer__empty}
@since version 3.6.0
*/
bool empty() const noexcept
{
return reference_tokens.empty();
}
private:
/*!
@param[in] s reference token to be converted into an array index
@return integer representation of @a s
@throw out_of_range.404 if string @a s could not be converted to an integer
*/
static int array_index(const std::string& s)
{
std::size_t processed_chars = 0;
const int res = std::stoi(s, &processed_chars);
// check if the string was completely read
if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size()))
{
JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'"));
}
return res;
}
json_pointer top() const
{
if (JSON_HEDLEY_UNLIKELY(empty()))
{
JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent"));
}
json_pointer result = *this;
result.reference_tokens = {reference_tokens[0]};
return result;
}
/*!
@brief create and return a reference to the pointed to value
@complexity Linear in the number of reference tokens.
@throw parse_error.109 if array index is not a number
@throw type_error.313 if value cannot be unflattened
*/
BasicJsonType& get_and_create(BasicJsonType& j) const
{
using size_type = typename BasicJsonType::size_type;
auto result = &j;
// in case no reference tokens exist, return a reference to the JSON value
// j which will be overwritten by a primitive value
for (const auto& reference_token : reference_tokens)
{
switch (result->type())
{
case detail::value_t::null:
{
if (reference_token == "0")
{
// start a new array if reference token is 0
result = &result->operator[](0);
}
else
{
// start a new object otherwise
result = &result->operator[](reference_token);
}
break;
}
case detail::value_t::object:
{
// create an entry in the object
result = &result->operator[](reference_token);
break;
}
case detail::value_t::array:
{
// create an entry in the array
JSON_TRY
{
result = &result->operator[](static_cast<size_type>(array_index(reference_token)));
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
break;
}
/*
The following code is only reached if there exists a reference
token _and_ the current value is primitive. In this case, we have
an error situation, because primitive values may only occur as
single value; that is, with an empty list of reference tokens.
*/
default:
JSON_THROW(detail::type_error::create(313, "invalid value to unflatten"));
}
}
return *result;
}
/*!
@brief return a reference to the pointed to value
@note This version does not throw if a value is not present, but tries to
create nested values instead. For instance, calling this function
with pointer `"/this/that"` on a null value is equivalent to calling
`operator[]("this").operator[]("that")` on that value, effectively
changing the null value to an object.
@param[in] ptr a JSON value
@return reference to the JSON value pointed to by the JSON pointer
@complexity Linear in the length of the JSON pointer.
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.404 if the JSON pointer can not be resolved
*/
BasicJsonType& get_unchecked(BasicJsonType* ptr) const
{
using size_type = typename BasicJsonType::size_type;
for (const auto& reference_token : reference_tokens)
{
// convert null values to arrays or objects before continuing
if (ptr->is_null())
{
// check if reference token is a number
const bool nums =
std::all_of(reference_token.begin(), reference_token.end(),
[](const unsigned char x)
{
return std::isdigit(x);
});
// change value to array for numbers or "-" or to object otherwise
*ptr = (nums or reference_token == "-")
? detail::value_t::array
: detail::value_t::object;
}
switch (ptr->type())
{
case detail::value_t::object:
{
// use unchecked object access
ptr = &ptr->operator[](reference_token);
break;
}
case detail::value_t::array:
{
// error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0'))
{
JSON_THROW(detail::parse_error::create(106, 0,
"array index '" + reference_token +
"' must not begin with '0'"));
}
if (reference_token == "-")
{
// explicitly treat "-" as index beyond the end
ptr = &ptr->operator[](ptr->m_value.array->size());
}
else
{
// convert array index to number; unchecked access
JSON_TRY
{
ptr = &ptr->operator[](
static_cast<size_type>(array_index(reference_token)));
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
}
break;
}
default:
JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'"));
}
}
return *ptr;
}
/*!
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.402 if the array index '-' is used
@throw out_of_range.404 if the JSON pointer can not be resolved
*/
BasicJsonType& get_checked(BasicJsonType* ptr) const
{
using size_type = typename BasicJsonType::size_type;
for (const auto& reference_token : reference_tokens)
{
switch (ptr->type())
{
case detail::value_t::object:
{
// note: at performs range check
ptr = &ptr->at(reference_token);
break;
}
case detail::value_t::array:
{
if (JSON_HEDLEY_UNLIKELY(reference_token == "-"))
{
// "-" always fails the range check
JSON_THROW(detail::out_of_range::create(402,
"array index '-' (" + std::to_string(ptr->m_value.array->size()) +
") is out of range"));
}
// error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0'))
{
JSON_THROW(detail::parse_error::create(106, 0,
"array index '" + reference_token +
"' must not begin with '0'"));
}
// note: at performs range check
JSON_TRY
{
ptr = &ptr->at(static_cast<size_type>(array_index(reference_token)));
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
break;
}
default:
JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'"));
}
}
return *ptr;
}
/*!
@brief return a const reference to the pointed to value
@param[in] ptr a JSON value
@return const reference to the JSON value pointed to by the JSON
pointer
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.402 if the array index '-' is used
@throw out_of_range.404 if the JSON pointer can not be resolved
*/
const BasicJsonType& get_unchecked(const BasicJsonType* ptr) const
{
using size_type = typename BasicJsonType::size_type;
for (const auto& reference_token : reference_tokens)
{
switch (ptr->type())
{
case detail::value_t::object:
{
// use unchecked object access
ptr = &ptr->operator[](reference_token);
break;
}
case detail::value_t::array:
{
if (JSON_HEDLEY_UNLIKELY(reference_token == "-"))
{
// "-" cannot be used for const access
JSON_THROW(detail::out_of_range::create(402,
"array index '-' (" + std::to_string(ptr->m_value.array->size()) +
") is out of range"));
}
// error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0'))
{
JSON_THROW(detail::parse_error::create(106, 0,
"array index '" + reference_token +
"' must not begin with '0'"));
}
// use unchecked array access
JSON_TRY
{
ptr = &ptr->operator[](
static_cast<size_type>(array_index(reference_token)));
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
break;
}
default:
JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'"));
}
}
return *ptr;
}
/*!
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.402 if the array index '-' is used
@throw out_of_range.404 if the JSON pointer can not be resolved
*/
const BasicJsonType& get_checked(const BasicJsonType* ptr) const
{
using size_type = typename BasicJsonType::size_type;
for (const auto& reference_token : reference_tokens)
{
switch (ptr->type())
{
case detail::value_t::object:
{
// note: at performs range check
ptr = &ptr->at(reference_token);
break;
}
case detail::value_t::array:
{
if (JSON_HEDLEY_UNLIKELY(reference_token == "-"))
{
// "-" always fails the range check
JSON_THROW(detail::out_of_range::create(402,
"array index '-' (" + std::to_string(ptr->m_value.array->size()) +
") is out of range"));
}
// error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0'))
{
JSON_THROW(detail::parse_error::create(106, 0,
"array index '" + reference_token +
"' must not begin with '0'"));
}
// note: at performs range check
JSON_TRY
{
ptr = &ptr->at(static_cast<size_type>(array_index(reference_token)));
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
break;
}
default:
JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'"));
}
}
return *ptr;
}
/*!
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
*/
bool contains(const BasicJsonType* ptr) const
{
using size_type = typename BasicJsonType::size_type;
for (const auto& reference_token : reference_tokens)
{
switch (ptr->type())
{
case detail::value_t::object:
{
if (not ptr->contains(reference_token))
{
// we did not find the key in the object
return false;
}
ptr = &ptr->operator[](reference_token);
break;
}
case detail::value_t::array:
{
if (JSON_HEDLEY_UNLIKELY(reference_token == "-"))
{
// "-" always fails the range check
return false;
}
// error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1 and reference_token[0] == '0'))
{
JSON_THROW(detail::parse_error::create(106, 0,
"array index '" + reference_token +
"' must not begin with '0'"));
}
JSON_TRY
{
const auto idx = static_cast<size_type>(array_index(reference_token));
if (idx >= ptr->size())
{
// index out of range
return false;
}
ptr = &ptr->operator[](idx);
break;
}
JSON_CATCH(std::invalid_argument&)
{
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + reference_token + "' is not a number"));
}
break;
}
default:
{
// we do not expect primitive values if there is still a
// reference token to process
return false;
}
}
}
// no reference token left means we found a primitive value
return true;
}
/*!
@brief split the string input to reference tokens
@note This function is only called by the json_pointer constructor.
All exceptions below are documented there.
@throw parse_error.107 if the pointer is not empty or begins with '/'
@throw parse_error.108 if character '~' is not followed by '0' or '1'
*/
static std::vector<std::string> split(const std::string& reference_string)
{
std::vector<std::string> result;
// special case: empty reference string -> no reference tokens
if (reference_string.empty())
{
return result;
}
// check if nonempty reference string begins with slash
if (JSON_HEDLEY_UNLIKELY(reference_string[0] != '/'))
{
JSON_THROW(detail::parse_error::create(107, 1,
"JSON pointer must be empty or begin with '/' - was: '" +
reference_string + "'"));
}
// extract the reference tokens:
// - slash: position of the last read slash (or end of string)
// - start: position after the previous slash
for (
// search for the first slash after the first character
std::size_t slash = reference_string.find_first_of('/', 1),
// set the beginning of the first reference token
start = 1;
// we can stop if start == 0 (if slash == std::string::npos)
start != 0;
// set the beginning of the next reference token
// (will eventually be 0 if slash == std::string::npos)
start = (slash == std::string::npos) ? 0 : slash + 1,
// find next slash
slash = reference_string.find_first_of('/', start))
{
// use the text between the beginning of the reference token
// (start) and the last slash (slash).
auto reference_token = reference_string.substr(start, slash - start);
// check reference tokens are properly escaped
for (std::size_t pos = reference_token.find_first_of('~');
pos != std::string::npos;
pos = reference_token.find_first_of('~', pos + 1))
{
assert(reference_token[pos] == '~');
// ~ must be followed by 0 or 1
if (JSON_HEDLEY_UNLIKELY(pos == reference_token.size() - 1 or
(reference_token[pos + 1] != '0' and
reference_token[pos + 1] != '1')))
{
JSON_THROW(detail::parse_error::create(108, 0, "escape character '~' must be followed with '0' or '1'"));
}
}
// finally, store the reference token
unescape(reference_token);
result.push_back(reference_token);
}
return result;
}
/*!
@brief replace all occurrences of a substring by another string
@param[in,out] s the string to manipulate; changed so that all
occurrences of @a f are replaced with @a t
@param[in] f the substring to replace with @a t
@param[in] t the string to replace @a f
@pre The search string @a f must not be empty. **This precondition is
enforced with an assertion.**
@since version 2.0.0
*/
static void replace_substring(std::string& s, const std::string& f,
const std::string& t)
{
assert(not f.empty());
for (auto pos = s.find(f); // find first occurrence of f
pos != std::string::npos; // make sure f was found
s.replace(pos, f.size(), t), // replace with t, and
pos = s.find(f, pos + t.size())) // find next occurrence of f
{}
}
/// escape "~" to "~0" and "/" to "~1"
static std::string escape(std::string s)
{
replace_substring(s, "~", "~0");
replace_substring(s, "/", "~1");
return s;
}
/// unescape "~1" to tilde and "~0" to slash (order is important!)
static void unescape(std::string& s)
{
replace_substring(s, "~1", "/");
replace_substring(s, "~0", "~");
}
/*!
@param[in] reference_string the reference string to the current value
@param[in] value the value to consider
@param[in,out] result the result object to insert values to
@note Empty objects or arrays are flattened to `null`.
*/
static void flatten(const std::string& reference_string,
const BasicJsonType& value,
BasicJsonType& result)
{
switch (value.type())
{
case detail::value_t::array:
{
if (value.m_value.array->empty())
{
// flatten empty array as null
result[reference_string] = nullptr;
}
else
{
// iterate array and use index as reference string
for (std::size_t i = 0; i < value.m_value.array->size(); ++i)
{
flatten(reference_string + "/" + std::to_string(i),
value.m_value.array->operator[](i), result);
}
}
break;
}
case detail::value_t::object:
{
if (value.m_value.object->empty())
{
// flatten empty object as null
result[reference_string] = nullptr;
}
else
{
// iterate object and use keys as reference string
for (const auto& element : *value.m_value.object)
{
flatten(reference_string + "/" + escape(element.first), element.second, result);
}
}
break;
}
default:
{
// add primitive value with its reference string
result[reference_string] = value;
break;
}
}
}
/*!
@param[in] value flattened JSON
@return unflattened JSON
@throw parse_error.109 if array index is not a number
@throw type_error.314 if value is not an object
@throw type_error.315 if object values are not primitive
@throw type_error.313 if value cannot be unflattened
*/
static BasicJsonType
unflatten(const BasicJsonType& value)
{
if (JSON_HEDLEY_UNLIKELY(not value.is_object()))
{
JSON_THROW(detail::type_error::create(314, "only objects can be unflattened"));
}
BasicJsonType result;
// iterate the JSON object values
for (const auto& element : *value.m_value.object)
{
if (JSON_HEDLEY_UNLIKELY(not element.second.is_primitive()))
{
JSON_THROW(detail::type_error::create(315, "values in object must be primitive"));
}
// assign value to reference pointed to by JSON pointer; Note that if
// the JSON pointer is "" (i.e., points to the whole value), function
// get_and_create returns a reference to result itself. An assignment
// will then create a primitive value.
json_pointer(element.first).get_and_create(result) = element.second;
}
return result;
}
/*!
@brief compares two JSON pointers for equality
@param[in] lhs JSON pointer to compare
@param[in] rhs JSON pointer to compare
@return whether @a lhs is equal to @a rhs
@complexity Linear in the length of the JSON pointer
@exceptionsafety No-throw guarantee: this function never throws exceptions.
*/
friend bool operator==(json_pointer const& lhs,
json_pointer const& rhs) noexcept
{
return lhs.reference_tokens == rhs.reference_tokens;
}
/*!
@brief compares two JSON pointers for inequality
@param[in] lhs JSON pointer to compare
@param[in] rhs JSON pointer to compare
@return whether @a lhs is not equal @a rhs
@complexity Linear in the length of the JSON pointer
@exceptionsafety No-throw guarantee: this function never throws exceptions.
*/
friend bool operator!=(json_pointer const& lhs,
json_pointer const& rhs) noexcept
{
return not (lhs == rhs);
}
/// the reference tokens
std::vector<std::string> reference_tokens;
};
} // namespace nlohmann
// #include <nlohmann/detail/json_ref.hpp>
#include <initializer_list>
#include <utility>
// #include <nlohmann/detail/meta/type_traits.hpp>
namespace nlohmann
{
namespace detail
{
template<typename BasicJsonType>
class json_ref
{
public:
using value_type = BasicJsonType;
json_ref(value_type&& value)
: owned_value(std::move(value)), value_ref(&owned_value), is_rvalue(true)
{}
json_ref(const value_type& value)
: value_ref(const_cast<value_type*>(&value)), is_rvalue(false)
{}
json_ref(std::initializer_list<json_ref> init)
: owned_value(init), value_ref(&owned_value), is_rvalue(true)
{}
template <
class... Args,
enable_if_t<std::is_constructible<value_type, Args...>::value, int> = 0 >
json_ref(Args && ... args)
: owned_value(std::forward<Args>(args)...), value_ref(&owned_value),
is_rvalue(true) {}
// class should be movable only
json_ref(json_ref&&) = default;
json_ref(const json_ref&) = delete;
json_ref& operator=(const json_ref&) = delete;
json_ref& operator=(json_ref&&) = delete;
~json_ref() = default;
value_type moved_or_copied() const
{
if (is_rvalue)
{
return std::move(*value_ref);
}
return *value_ref;
}
value_type const& operator*() const
{
return *static_cast<value_type const*>(value_ref);
}
value_type const* operator->() const
{
return static_cast<value_type const*>(value_ref);
}
private:
mutable value_type owned_value = nullptr;
value_type* value_ref = nullptr;
const bool is_rvalue;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/cpp_future.hpp>
// #include <nlohmann/detail/meta/type_traits.hpp>
// #include <nlohmann/detail/output/binary_writer.hpp>
#include <algorithm> // reverse
#include <array> // array
#include <cstdint> // uint8_t, uint16_t, uint32_t, uint64_t
#include <cstring> // memcpy
#include <limits> // numeric_limits
#include <string> // string
// #include <nlohmann/detail/input/binary_reader.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/output/output_adapters.hpp>
#include <algorithm> // copy
#include <cstddef> // size_t
#include <ios> // streamsize
#include <iterator> // back_inserter
#include <memory> // shared_ptr, make_shared
#include <ostream> // basic_ostream
#include <string> // basic_string
#include <vector> // vector
// #include <nlohmann/detail/macro_scope.hpp>
namespace nlohmann
{
namespace detail
{
/// abstract output adapter interface
template<typename CharType> struct output_adapter_protocol
{
virtual void write_character(CharType c) = 0;
virtual void write_characters(const CharType* s, std::size_t length) = 0;
virtual ~output_adapter_protocol() = default;
};
/// a type to simplify interfaces
template<typename CharType>
using output_adapter_t = std::shared_ptr<output_adapter_protocol<CharType>>;
/// output adapter for byte vectors
template<typename CharType>
class output_vector_adapter : public output_adapter_protocol<CharType>
{
public:
explicit output_vector_adapter(std::vector<CharType>& vec) noexcept
: v(vec)
{}
void write_character(CharType c) override
{
v.push_back(c);
}
JSON_HEDLEY_NON_NULL(2)
void write_characters(const CharType* s, std::size_t length) override
{
std::copy(s, s + length, std::back_inserter(v));
}
private:
std::vector<CharType>& v;
};
/// output adapter for output streams
template<typename CharType>
class output_stream_adapter : public output_adapter_protocol<CharType>
{
public:
explicit output_stream_adapter(std::basic_ostream<CharType>& s) noexcept
: stream(s)
{}
void write_character(CharType c) override
{
stream.put(c);
}
JSON_HEDLEY_NON_NULL(2)
void write_characters(const CharType* s, std::size_t length) override
{
stream.write(s, static_cast<std::streamsize>(length));
}
private:
std::basic_ostream<CharType>& stream;
};
/// output adapter for basic_string
template<typename CharType, typename StringType = std::basic_string<CharType>>
class output_string_adapter : public output_adapter_protocol<CharType>
{
public:
explicit output_string_adapter(StringType& s) noexcept
: str(s)
{}
void write_character(CharType c) override
{
str.push_back(c);
}
JSON_HEDLEY_NON_NULL(2)
void write_characters(const CharType* s, std::size_t length) override
{
str.append(s, length);
}
private:
StringType& str;
};
template<typename CharType, typename StringType = std::basic_string<CharType>>
class output_adapter
{
public:
output_adapter(std::vector<CharType>& vec)
: oa(std::make_shared<output_vector_adapter<CharType>>(vec)) {}
output_adapter(std::basic_ostream<CharType>& s)
: oa(std::make_shared<output_stream_adapter<CharType>>(s)) {}
output_adapter(StringType& s)
: oa(std::make_shared<output_string_adapter<CharType, StringType>>(s)) {}
operator output_adapter_t<CharType>()
{
return oa;
}
private:
output_adapter_t<CharType> oa = nullptr;
};
} // namespace detail
} // namespace nlohmann
namespace nlohmann
{
namespace detail
{
///////////////////
// binary writer //
///////////////////
/*!
@brief serialization to CBOR and MessagePack values
*/
template<typename BasicJsonType, typename CharType>
class binary_writer
{
using string_t = typename BasicJsonType::string_t;
public:
/*!
@brief create a binary writer
@param[in] adapter output adapter to write to
*/
explicit binary_writer(output_adapter_t<CharType> adapter) : oa(adapter)
{
assert(oa);
}
/*!
@param[in] j JSON value to serialize
@pre j.type() == value_t::object
*/
void write_bson(const BasicJsonType& j)
{
switch (j.type())
{
case value_t::object:
{
write_bson_object(*j.m_value.object);
break;
}
default:
{
JSON_THROW(type_error::create(317, "to serialize to BSON, top-level type must be object, but is " + std::string(j.type_name())));
}
}
}
/*!
@param[in] j JSON value to serialize
*/
void write_cbor(const BasicJsonType& j)
{
switch (j.type())
{
case value_t::null:
{
oa->write_character(to_char_type(0xF6));
break;
}
case value_t::boolean:
{
oa->write_character(j.m_value.boolean
? to_char_type(0xF5)
: to_char_type(0xF4));
break;
}
case value_t::number_integer:
{
if (j.m_value.number_integer >= 0)
{
// CBOR does not differentiate between positive signed
// integers and unsigned integers. Therefore, we used the
// code from the value_t::number_unsigned case here.
if (j.m_value.number_integer <= 0x17)
{
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0x18));
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0x19));
write_number(static_cast<std::uint16_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0x1A));
write_number(static_cast<std::uint32_t>(j.m_value.number_integer));
}
else
{
oa->write_character(to_char_type(0x1B));
write_number(static_cast<std::uint64_t>(j.m_value.number_integer));
}
}
else
{
// The conversions below encode the sign in the first
// byte, and the value is converted to a positive number.
const auto positive_number = -1 - j.m_value.number_integer;
if (j.m_value.number_integer >= -24)
{
write_number(static_cast<std::uint8_t>(0x20 + positive_number));
}
else if (positive_number <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0x38));
write_number(static_cast<std::uint8_t>(positive_number));
}
else if (positive_number <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0x39));
write_number(static_cast<std::uint16_t>(positive_number));
}
else if (positive_number <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0x3A));
write_number(static_cast<std::uint32_t>(positive_number));
}
else
{
oa->write_character(to_char_type(0x3B));
write_number(static_cast<std::uint64_t>(positive_number));
}
}
break;
}
case value_t::number_unsigned:
{
if (j.m_value.number_unsigned <= 0x17)
{
write_number(static_cast<std::uint8_t>(j.m_value.number_unsigned));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0x18));
write_number(static_cast<std::uint8_t>(j.m_value.number_unsigned));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0x19));
write_number(static_cast<std::uint16_t>(j.m_value.number_unsigned));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0x1A));
write_number(static_cast<std::uint32_t>(j.m_value.number_unsigned));
}
else
{
oa->write_character(to_char_type(0x1B));
write_number(static_cast<std::uint64_t>(j.m_value.number_unsigned));
}
break;
}
case value_t::number_float:
{
oa->write_character(get_cbor_float_prefix(j.m_value.number_float));
write_number(j.m_value.number_float);
break;
}
case value_t::string:
{
// step 1: write control byte and the string length
const auto N = j.m_value.string->size();
if (N <= 0x17)
{
write_number(static_cast<std::uint8_t>(0x60 + N));
}
else if (N <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0x78));
write_number(static_cast<std::uint8_t>(N));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0x79));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0x7A));
write_number(static_cast<std::uint32_t>(N));
}
// LCOV_EXCL_START
else if (N <= (std::numeric_limits<std::uint64_t>::max)())
{
oa->write_character(to_char_type(0x7B));
write_number(static_cast<std::uint64_t>(N));
}
// LCOV_EXCL_STOP
// step 2: write the string
oa->write_characters(
reinterpret_cast<const CharType*>(j.m_value.string->c_str()),
j.m_value.string->size());
break;
}
case value_t::array:
{
// step 1: write control byte and the array size
const auto N = j.m_value.array->size();
if (N <= 0x17)
{
write_number(static_cast<std::uint8_t>(0x80 + N));
}
else if (N <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0x98));
write_number(static_cast<std::uint8_t>(N));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0x99));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0x9A));
write_number(static_cast<std::uint32_t>(N));
}
// LCOV_EXCL_START
else if (N <= (std::numeric_limits<std::uint64_t>::max)())
{
oa->write_character(to_char_type(0x9B));
write_number(static_cast<std::uint64_t>(N));
}
// LCOV_EXCL_STOP
// step 2: write each element
for (const auto& el : *j.m_value.array)
{
write_cbor(el);
}
break;
}
case value_t::object:
{
// step 1: write control byte and the object size
const auto N = j.m_value.object->size();
if (N <= 0x17)
{
write_number(static_cast<std::uint8_t>(0xA0 + N));
}
else if (N <= (std::numeric_limits<std::uint8_t>::max)())
{
oa->write_character(to_char_type(0xB8));
write_number(static_cast<std::uint8_t>(N));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
oa->write_character(to_char_type(0xB9));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
oa->write_character(to_char_type(0xBA));
write_number(static_cast<std::uint32_t>(N));
}
// LCOV_EXCL_START
else if (N <= (std::numeric_limits<std::uint64_t>::max)())
{
oa->write_character(to_char_type(0xBB));
write_number(static_cast<std::uint64_t>(N));
}
// LCOV_EXCL_STOP
// step 2: write each element
for (const auto& el : *j.m_value.object)
{
write_cbor(el.first);
write_cbor(el.second);
}
break;
}
default:
break;
}
}
/*!
@param[in] j JSON value to serialize
*/
void write_msgpack(const BasicJsonType& j)
{
switch (j.type())
{
case value_t::null: // nil
{
oa->write_character(to_char_type(0xC0));
break;
}
case value_t::boolean: // true and false
{
oa->write_character(j.m_value.boolean
? to_char_type(0xC3)
: to_char_type(0xC2));
break;
}
case value_t::number_integer:
{
if (j.m_value.number_integer >= 0)
{
// MessagePack does not differentiate between positive
// signed integers and unsigned integers. Therefore, we used
// the code from the value_t::number_unsigned case here.
if (j.m_value.number_unsigned < 128)
{
// positive fixnum
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint8_t>::max)())
{
// uint 8
oa->write_character(to_char_type(0xCC));
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint16_t>::max)())
{
// uint 16
oa->write_character(to_char_type(0xCD));
write_number(static_cast<std::uint16_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint32_t>::max)())
{
// uint 32
oa->write_character(to_char_type(0xCE));
write_number(static_cast<std::uint32_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint64_t>::max)())
{
// uint 64
oa->write_character(to_char_type(0xCF));
write_number(static_cast<std::uint64_t>(j.m_value.number_integer));
}
}
else
{
if (j.m_value.number_integer >= -32)
{
// negative fixnum
write_number(static_cast<std::int8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer >= (std::numeric_limits<std::int8_t>::min)() and
j.m_value.number_integer <= (std::numeric_limits<std::int8_t>::max)())
{
// int 8
oa->write_character(to_char_type(0xD0));
write_number(static_cast<std::int8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer >= (std::numeric_limits<std::int16_t>::min)() and
j.m_value.number_integer <= (std::numeric_limits<std::int16_t>::max)())
{
// int 16
oa->write_character(to_char_type(0xD1));
write_number(static_cast<std::int16_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer >= (std::numeric_limits<std::int32_t>::min)() and
j.m_value.number_integer <= (std::numeric_limits<std::int32_t>::max)())
{
// int 32
oa->write_character(to_char_type(0xD2));
write_number(static_cast<std::int32_t>(j.m_value.number_integer));
}
else if (j.m_value.number_integer >= (std::numeric_limits<std::int64_t>::min)() and
j.m_value.number_integer <= (std::numeric_limits<std::int64_t>::max)())
{
// int 64
oa->write_character(to_char_type(0xD3));
write_number(static_cast<std::int64_t>(j.m_value.number_integer));
}
}
break;
}
case value_t::number_unsigned:
{
if (j.m_value.number_unsigned < 128)
{
// positive fixnum
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint8_t>::max)())
{
// uint 8
oa->write_character(to_char_type(0xCC));
write_number(static_cast<std::uint8_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint16_t>::max)())
{
// uint 16
oa->write_character(to_char_type(0xCD));
write_number(static_cast<std::uint16_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint32_t>::max)())
{
// uint 32
oa->write_character(to_char_type(0xCE));
write_number(static_cast<std::uint32_t>(j.m_value.number_integer));
}
else if (j.m_value.number_unsigned <= (std::numeric_limits<std::uint64_t>::max)())
{
// uint 64
oa->write_character(to_char_type(0xCF));
write_number(static_cast<std::uint64_t>(j.m_value.number_integer));
}
break;
}
case value_t::number_float:
{
oa->write_character(get_msgpack_float_prefix(j.m_value.number_float));
write_number(j.m_value.number_float);
break;
}
case value_t::string:
{
// step 1: write control byte and the string length
const auto N = j.m_value.string->size();
if (N <= 31)
{
// fixstr
write_number(static_cast<std::uint8_t>(0xA0 | N));
}
else if (N <= (std::numeric_limits<std::uint8_t>::max)())
{
// str 8
oa->write_character(to_char_type(0xD9));
write_number(static_cast<std::uint8_t>(N));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
// str 16
oa->write_character(to_char_type(0xDA));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
// str 32
oa->write_character(to_char_type(0xDB));
write_number(static_cast<std::uint32_t>(N));
}
// step 2: write the string
oa->write_characters(
reinterpret_cast<const CharType*>(j.m_value.string->c_str()),
j.m_value.string->size());
break;
}
case value_t::array:
{
// step 1: write control byte and the array size
const auto N = j.m_value.array->size();
if (N <= 15)
{
// fixarray
write_number(static_cast<std::uint8_t>(0x90 | N));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
// array 16
oa->write_character(to_char_type(0xDC));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
// array 32
oa->write_character(to_char_type(0xDD));
write_number(static_cast<std::uint32_t>(N));
}
// step 2: write each element
for (const auto& el : *j.m_value.array)
{
write_msgpack(el);
}
break;
}
case value_t::object:
{
// step 1: write control byte and the object size
const auto N = j.m_value.object->size();
if (N <= 15)
{
// fixmap
write_number(static_cast<std::uint8_t>(0x80 | (N & 0xF)));
}
else if (N <= (std::numeric_limits<std::uint16_t>::max)())
{
// map 16
oa->write_character(to_char_type(0xDE));
write_number(static_cast<std::uint16_t>(N));
}
else if (N <= (std::numeric_limits<std::uint32_t>::max)())
{
// map 32
oa->write_character(to_char_type(0xDF));
write_number(static_cast<std::uint32_t>(N));
}
// step 2: write each element
for (const auto& el : *j.m_value.object)
{
write_msgpack(el.first);
write_msgpack(el.second);
}
break;
}
default:
break;
}
}
/*!
@param[in] j JSON value to serialize
@param[in] use_count whether to use '#' prefixes (optimized format)
@param[in] use_type whether to use '$' prefixes (optimized format)
@param[in] add_prefix whether prefixes need to be used for this value
*/
void write_ubjson(const BasicJsonType& j, const bool use_count,
const bool use_type, const bool add_prefix = true)
{
switch (j.type())
{
case value_t::null:
{
if (add_prefix)
{
oa->write_character(to_char_type('Z'));
}
break;
}
case value_t::boolean:
{
if (add_prefix)
{
oa->write_character(j.m_value.boolean
? to_char_type('T')
: to_char_type('F'));
}
break;
}
case value_t::number_integer:
{
write_number_with_ubjson_prefix(j.m_value.number_integer, add_prefix);
break;
}
case value_t::number_unsigned:
{
write_number_with_ubjson_prefix(j.m_value.number_unsigned, add_prefix);
break;
}
case value_t::number_float:
{
write_number_with_ubjson_prefix(j.m_value.number_float, add_prefix);
break;
}
case value_t::string:
{
if (add_prefix)
{
oa->write_character(to_char_type('S'));
}
write_number_with_ubjson_prefix(j.m_value.string->size(), true);
oa->write_characters(
reinterpret_cast<const CharType*>(j.m_value.string->c_str()),
j.m_value.string->size());
break;
}
case value_t::array:
{
if (add_prefix)
{
oa->write_character(to_char_type('['));
}
bool prefix_required = true;
if (use_type and not j.m_value.array->empty())
{
assert(use_count);
const CharType first_prefix = ubjson_prefix(j.front());
const bool same_prefix = std::all_of(j.begin() + 1, j.end(),
[this, first_prefix](const BasicJsonType & v)
{
return ubjson_prefix(v) == first_prefix;
});
if (same_prefix)
{
prefix_required = false;
oa->write_character(to_char_type('$'));
oa->write_character(first_prefix);
}
}
if (use_count)
{
oa->write_character(to_char_type('#'));
write_number_with_ubjson_prefix(j.m_value.array->size(), true);
}
for (const auto& el : *j.m_value.array)
{
write_ubjson(el, use_count, use_type, prefix_required);
}
if (not use_count)
{
oa->write_character(to_char_type(']'));
}
break;
}
case value_t::object:
{
if (add_prefix)
{
oa->write_character(to_char_type('{'));
}
bool prefix_required = true;
if (use_type and not j.m_value.object->empty())
{
assert(use_count);
const CharType first_prefix = ubjson_prefix(j.front());
const bool same_prefix = std::all_of(j.begin(), j.end(),
[this, first_prefix](const BasicJsonType & v)
{
return ubjson_prefix(v) == first_prefix;
});
if (same_prefix)
{
prefix_required = false;
oa->write_character(to_char_type('$'));
oa->write_character(first_prefix);
}
}
if (use_count)
{
oa->write_character(to_char_type('#'));
write_number_with_ubjson_prefix(j.m_value.object->size(), true);
}
for (const auto& el : *j.m_value.object)
{
write_number_with_ubjson_prefix(el.first.size(), true);
oa->write_characters(
reinterpret_cast<const CharType*>(el.first.c_str()),
el.first.size());
write_ubjson(el.second, use_count, use_type, prefix_required);
}
if (not use_count)
{
oa->write_character(to_char_type('}'));
}
break;
}
default:
break;
}
}
private:
//////////
// BSON //
//////////
/*!
@return The size of a BSON document entry header, including the id marker
and the entry name size (and its null-terminator).
*/
static std::size_t calc_bson_entry_header_size(const string_t& name)
{
const auto it = name.find(static_cast<typename string_t::value_type>(0));
if (JSON_HEDLEY_UNLIKELY(it != BasicJsonType::string_t::npos))
{
JSON_THROW(out_of_range::create(409,
"BSON key cannot contain code point U+0000 (at byte " + std::to_string(it) + ")"));
}
return /*id*/ 1ul + name.size() + /*zero-terminator*/1u;
}
/*!
@brief Writes the given @a element_type and @a name to the output adapter
*/
void write_bson_entry_header(const string_t& name,
const std::uint8_t element_type)
{
oa->write_character(to_char_type(element_type)); // boolean
oa->write_characters(
reinterpret_cast<const CharType*>(name.c_str()),
name.size() + 1u);
}
/*!
@brief Writes a BSON element with key @a name and boolean value @a value
*/
void write_bson_boolean(const string_t& name,
const bool value)
{
write_bson_entry_header(name, 0x08);
oa->write_character(value ? to_char_type(0x01) : to_char_type(0x00));
}
/*!
@brief Writes a BSON element with key @a name and double value @a value
*/
void write_bson_double(const string_t& name,
const double value)
{
write_bson_entry_header(name, 0x01);
write_number<double, true>(value);
}
/*!
@return The size of the BSON-encoded string in @a value
*/
static std::size_t calc_bson_string_size(const string_t& value)
{
return sizeof(std::int32_t) + value.size() + 1ul;
}
/*!
@brief Writes a BSON element with key @a name and string value @a value
*/
void write_bson_string(const string_t& name,
const string_t& value)
{
write_bson_entry_header(name, 0x02);
write_number<std::int32_t, true>(static_cast<std::int32_t>(value.size() + 1ul));
oa->write_characters(
reinterpret_cast<const CharType*>(value.c_str()),
value.size() + 1);
}
/*!
@brief Writes a BSON element with key @a name and null value
*/
void write_bson_null(const string_t& name)
{
write_bson_entry_header(name, 0x0A);
}
/*!
@return The size of the BSON-encoded integer @a value
*/
static std::size_t calc_bson_integer_size(const std::int64_t value)
{
return (std::numeric_limits<std::int32_t>::min)() <= value and value <= (std::numeric_limits<std::int32_t>::max)()
? sizeof(std::int32_t)
: sizeof(std::int64_t);
}
/*!
@brief Writes a BSON element with key @a name and integer @a value
*/
void write_bson_integer(const string_t& name,
const std::int64_t value)
{
if ((std::numeric_limits<std::int32_t>::min)() <= value and value <= (std::numeric_limits<std::int32_t>::max)())
{
write_bson_entry_header(name, 0x10); // int32
write_number<std::int32_t, true>(static_cast<std::int32_t>(value));
}
else
{
write_bson_entry_header(name, 0x12); // int64
write_number<std::int64_t, true>(static_cast<std::int64_t>(value));
}
}
/*!
@return The size of the BSON-encoded unsigned integer in @a j
*/
static constexpr std::size_t calc_bson_unsigned_size(const std::uint64_t value) noexcept
{
return (value <= static_cast<std::uint64_t>((std::numeric_limits<std::int32_t>::max)()))
? sizeof(std::int32_t)
: sizeof(std::int64_t);
}
/*!
@brief Writes a BSON element with key @a name and unsigned @a value
*/
void write_bson_unsigned(const string_t& name,
const std::uint64_t value)
{
if (value <= static_cast<std::uint64_t>((std::numeric_limits<std::int32_t>::max)()))
{
write_bson_entry_header(name, 0x10 /* int32 */);
write_number<std::int32_t, true>(static_cast<std::int32_t>(value));
}
else if (value <= static_cast<std::uint64_t>((std::numeric_limits<std::int64_t>::max)()))
{
write_bson_entry_header(name, 0x12 /* int64 */);
write_number<std::int64_t, true>(static_cast<std::int64_t>(value));
}
else
{
JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(value) + " cannot be represented by BSON as it does not fit int64"));
}
}
/*!
@brief Writes a BSON element with key @a name and object @a value
*/
void write_bson_object_entry(const string_t& name,
const typename BasicJsonType::object_t& value)
{
write_bson_entry_header(name, 0x03); // object
write_bson_object(value);
}
/*!
@return The size of the BSON-encoded array @a value
*/
static std::size_t calc_bson_array_size(const typename BasicJsonType::array_t& value)
{
std::size_t array_index = 0ul;
const std::size_t embedded_document_size = std::accumulate(std::begin(value), std::end(value), 0ul, [&array_index](std::size_t result, const typename BasicJsonType::array_t::value_type & el)
{
return result + calc_bson_element_size(std::to_string(array_index++), el);
});
return sizeof(std::int32_t) + embedded_document_size + 1ul;
}
/*!
@brief Writes a BSON element with key @a name and array @a value
*/
void write_bson_array(const string_t& name,
const typename BasicJsonType::array_t& value)
{
write_bson_entry_header(name, 0x04); // array
write_number<std::int32_t, true>(static_cast<std::int32_t>(calc_bson_array_size(value)));
std::size_t array_index = 0ul;
for (const auto& el : value)
{
write_bson_element(std::to_string(array_index++), el);
}
oa->write_character(to_char_type(0x00));
}
/*!
@brief Calculates the size necessary to serialize the JSON value @a j with its @a name
@return The calculated size for the BSON document entry for @a j with the given @a name.
*/
static std::size_t calc_bson_element_size(const string_t& name,
const BasicJsonType& j)
{
const auto header_size = calc_bson_entry_header_size(name);
switch (j.type())
{
case value_t::object:
return header_size + calc_bson_object_size(*j.m_value.object);
case value_t::array:
return header_size + calc_bson_array_size(*j.m_value.array);
case value_t::boolean:
return header_size + 1ul;
case value_t::number_float:
return header_size + 8ul;
case value_t::number_integer:
return header_size + calc_bson_integer_size(j.m_value.number_integer);
case value_t::number_unsigned:
return header_size + calc_bson_unsigned_size(j.m_value.number_unsigned);
case value_t::string:
return header_size + calc_bson_string_size(*j.m_value.string);
case value_t::null:
return header_size + 0ul;
// LCOV_EXCL_START
default:
assert(false);
return 0ul;
// LCOV_EXCL_STOP
}
}
/*!
@brief Serializes the JSON value @a j to BSON and associates it with the
key @a name.
@param name The name to associate with the JSON entity @a j within the
current BSON document
@return The size of the BSON entry
*/
void write_bson_element(const string_t& name,
const BasicJsonType& j)
{
switch (j.type())
{
case value_t::object:
return write_bson_object_entry(name, *j.m_value.object);
case value_t::array:
return write_bson_array(name, *j.m_value.array);
case value_t::boolean:
return write_bson_boolean(name, j.m_value.boolean);
case value_t::number_float:
return write_bson_double(name, j.m_value.number_float);
case value_t::number_integer:
return write_bson_integer(name, j.m_value.number_integer);
case value_t::number_unsigned:
return write_bson_unsigned(name, j.m_value.number_unsigned);
case value_t::string:
return write_bson_string(name, *j.m_value.string);
case value_t::null:
return write_bson_null(name);
// LCOV_EXCL_START
default:
assert(false);
return;
// LCOV_EXCL_STOP
}
}
/*!
@brief Calculates the size of the BSON serialization of the given
JSON-object @a j.
@param[in] j JSON value to serialize
@pre j.type() == value_t::object
*/
static std::size_t calc_bson_object_size(const typename BasicJsonType::object_t& value)
{
std::size_t document_size = std::accumulate(value.begin(), value.end(), 0ul,
[](size_t result, const typename BasicJsonType::object_t::value_type & el)
{
return result += calc_bson_element_size(el.first, el.second);
});
return sizeof(std::int32_t) + document_size + 1ul;
}
/*!
@param[in] j JSON value to serialize
@pre j.type() == value_t::object
*/
void write_bson_object(const typename BasicJsonType::object_t& value)
{
write_number<std::int32_t, true>(static_cast<std::int32_t>(calc_bson_object_size(value)));
for (const auto& el : value)
{
write_bson_element(el.first, el.second);
}
oa->write_character(to_char_type(0x00));
}
//////////
// CBOR //
//////////
static constexpr CharType get_cbor_float_prefix(float /*unused*/)
{
return to_char_type(0xFA); // Single-Precision Float
}
static constexpr CharType get_cbor_float_prefix(double /*unused*/)
{
return to_char_type(0xFB); // Double-Precision Float
}
/////////////
// MsgPack //
/////////////
static constexpr CharType get_msgpack_float_prefix(float /*unused*/)
{
return to_char_type(0xCA); // float 32
}
static constexpr CharType get_msgpack_float_prefix(double /*unused*/)
{
return to_char_type(0xCB); // float 64
}
////////////
// UBJSON //
////////////
// UBJSON: write number (floating point)
template<typename NumberType, typename std::enable_if<
std::is_floating_point<NumberType>::value, int>::type = 0>
void write_number_with_ubjson_prefix(const NumberType n,
const bool add_prefix)
{
if (add_prefix)
{
oa->write_character(get_ubjson_float_prefix(n));
}
write_number(n);
}
// UBJSON: write number (unsigned integer)
template<typename NumberType, typename std::enable_if<
std::is_unsigned<NumberType>::value, int>::type = 0>
void write_number_with_ubjson_prefix(const NumberType n,
const bool add_prefix)
{
if (n <= static_cast<std::uint64_t>((std::numeric_limits<std::int8_t>::max)()))
{
if (add_prefix)
{
oa->write_character(to_char_type('i')); // int8
}
write_number(static_cast<std::uint8_t>(n));
}
else if (n <= (std::numeric_limits<std::uint8_t>::max)())
{
if (add_prefix)
{
oa->write_character(to_char_type('U')); // uint8
}
write_number(static_cast<std::uint8_t>(n));
}
else if (n <= static_cast<std::uint64_t>((std::numeric_limits<std::int16_t>::max)()))
{
if (add_prefix)
{
oa->write_character(to_char_type('I')); // int16
}
write_number(static_cast<std::int16_t>(n));
}
else if (n <= static_cast<std::uint64_t>((std::numeric_limits<std::int32_t>::max)()))
{
if (add_prefix)
{
oa->write_character(to_char_type('l')); // int32
}
write_number(static_cast<std::int32_t>(n));
}
else if (n <= static_cast<std::uint64_t>((std::numeric_limits<std::int64_t>::max)()))
{
if (add_prefix)
{
oa->write_character(to_char_type('L')); // int64
}
write_number(static_cast<std::int64_t>(n));
}
else
{
JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(n) + " cannot be represented by UBJSON as it does not fit int64"));
}
}
// UBJSON: write number (signed integer)
template<typename NumberType, typename std::enable_if<
std::is_signed<NumberType>::value and
not std::is_floating_point<NumberType>::value, int>::type = 0>
void write_number_with_ubjson_prefix(const NumberType n,
const bool add_prefix)
{
if ((std::numeric_limits<std::int8_t>::min)() <= n and n <= (std::numeric_limits<std::int8_t>::max)())
{
if (add_prefix)
{
oa->write_character(to_char_type('i')); // int8
}
write_number(static_cast<std::int8_t>(n));
}
else if (static_cast<std::int64_t>((std::numeric_limits<std::uint8_t>::min)()) <= n and n <= static_cast<std::int64_t>((std::numeric_limits<std::uint8_t>::max)()))
{
if (add_prefix)
{
oa->write_character(to_char_type('U')); // uint8
}
write_number(static_cast<std::uint8_t>(n));
}
else if ((std::numeric_limits<std::int16_t>::min)() <= n and n <= (std::numeric_limits<std::int16_t>::max)())
{
if (add_prefix)
{
oa->write_character(to_char_type('I')); // int16
}
write_number(static_cast<std::int16_t>(n));
}
else if ((std::numeric_limits<std::int32_t>::min)() <= n and n <= (std::numeric_limits<std::int32_t>::max)())
{
if (add_prefix)
{
oa->write_character(to_char_type('l')); // int32
}
write_number(static_cast<std::int32_t>(n));
}
else if ((std::numeric_limits<std::int64_t>::min)() <= n and n <= (std::numeric_limits<std::int64_t>::max)())
{
if (add_prefix)
{
oa->write_character(to_char_type('L')); // int64
}
write_number(static_cast<std::int64_t>(n));
}
// LCOV_EXCL_START
else
{
JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(n) + " cannot be represented by UBJSON as it does not fit int64"));
}
// LCOV_EXCL_STOP
}
/*!
@brief determine the type prefix of container values
@note This function does not need to be 100% accurate when it comes to
integer limits. In case a number exceeds the limits of int64_t,
this will be detected by a later call to function
write_number_with_ubjson_prefix. Therefore, we return 'L' for any
value that does not fit the previous limits.
*/
CharType ubjson_prefix(const BasicJsonType& j) const noexcept
{
switch (j.type())
{
case value_t::null:
return 'Z';
case value_t::boolean:
return j.m_value.boolean ? 'T' : 'F';
case value_t::number_integer:
{
if ((std::numeric_limits<std::int8_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<std::int8_t>::max)())
{
return 'i';
}
if ((std::numeric_limits<std::uint8_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<std::uint8_t>::max)())
{
return 'U';
}
if ((std::numeric_limits<std::int16_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<std::int16_t>::max)())
{
return 'I';
}
if ((std::numeric_limits<std::int32_t>::min)() <= j.m_value.number_integer and j.m_value.number_integer <= (std::numeric_limits<std::int32_t>::max)())
{
return 'l';
}
// no check and assume int64_t (see note above)
return 'L';
}
case value_t::number_unsigned:
{
if (j.m_value.number_unsigned <= static_cast<std::uint64_t>((std::numeric_limits<std::int8_t>::max)()))
{
return 'i';
}
if (j.m_value.number_unsigned <= static_cast<std::uint64_t>((std::numeric_limits<std::uint8_t>::max)()))
{
return 'U';
}
if (j.m_value.number_unsigned <= static_cast<std::uint64_t>((std::numeric_limits<std::int16_t>::max)()))
{
return 'I';
}
if (j.m_value.number_unsigned <= static_cast<std::uint64_t>((std::numeric_limits<std::int32_t>::max)()))
{
return 'l';
}
// no check and assume int64_t (see note above)
return 'L';
}
case value_t::number_float:
return get_ubjson_float_prefix(j.m_value.number_float);
case value_t::string:
return 'S';
case value_t::array:
return '[';
case value_t::object:
return '{';
default: // discarded values
return 'N';
}
}
static constexpr CharType get_ubjson_float_prefix(float /*unused*/)
{
return 'd'; // float 32
}
static constexpr CharType get_ubjson_float_prefix(double /*unused*/)
{
return 'D'; // float 64
}
///////////////////////
// Utility functions //
///////////////////////
/*
@brief write a number to output input
@param[in] n number of type @a NumberType
@tparam NumberType the type of the number
@tparam OutputIsLittleEndian Set to true if output data is
required to be little endian
@note This function needs to respect the system's endianess, because bytes
in CBOR, MessagePack, and UBJSON are stored in network order (big
endian) and therefore need reordering on little endian systems.
*/
template<typename NumberType, bool OutputIsLittleEndian = false>
void write_number(const NumberType n)
{
// step 1: write number to array of length NumberType
std::array<CharType, sizeof(NumberType)> vec;
std::memcpy(vec.data(), &n, sizeof(NumberType));
// step 2: write array to output (with possible reordering)
if (is_little_endian != OutputIsLittleEndian)
{
// reverse byte order prior to conversion if necessary
std::reverse(vec.begin(), vec.end());
}
oa->write_characters(vec.data(), sizeof(NumberType));
}
public:
// The following to_char_type functions are implement the conversion
// between uint8_t and CharType. In case CharType is not unsigned,
// such a conversion is required to allow values greater than 128.
// See <https://github.com/nlohmann/json/issues/1286> for a discussion.
template < typename C = CharType,
enable_if_t < std::is_signed<C>::value and std::is_signed<char>::value > * = nullptr >
static constexpr CharType to_char_type(std::uint8_t x) noexcept
{
return *reinterpret_cast<char*>(&x);
}
template < typename C = CharType,
enable_if_t < std::is_signed<C>::value and std::is_unsigned<char>::value > * = nullptr >
static CharType to_char_type(std::uint8_t x) noexcept
{
static_assert(sizeof(std::uint8_t) == sizeof(CharType), "size of CharType must be equal to std::uint8_t");
static_assert(std::is_pod<CharType>::value, "CharType must be POD");
CharType result;
std::memcpy(&result, &x, sizeof(x));
return result;
}
template<typename C = CharType,
enable_if_t<std::is_unsigned<C>::value>* = nullptr>
static constexpr CharType to_char_type(std::uint8_t x) noexcept
{
return x;
}
template < typename InputCharType, typename C = CharType,
enable_if_t <
std::is_signed<C>::value and
std::is_signed<char>::value and
std::is_same<char, typename std::remove_cv<InputCharType>::type>::value
> * = nullptr >
static constexpr CharType to_char_type(InputCharType x) noexcept
{
return x;
}
private:
/// whether we can assume little endianess
const bool is_little_endian = binary_reader<BasicJsonType>::little_endianess();
/// the output
output_adapter_t<CharType> oa = nullptr;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/output/output_adapters.hpp>
// #include <nlohmann/detail/output/serializer.hpp>
#include <algorithm> // reverse, remove, fill, find, none_of
#include <array> // array
#include <cassert> // assert
#include <ciso646> // and, or
#include <clocale> // localeconv, lconv
#include <cmath> // labs, isfinite, isnan, signbit
#include <cstddef> // size_t, ptrdiff_t
#include <cstdint> // uint8_t
#include <cstdio> // snprintf
#include <limits> // numeric_limits
#include <string> // string
#include <type_traits> // is_same
#include <utility> // move
// #include <nlohmann/detail/conversions/to_chars.hpp>
#include <array> // array
#include <cassert> // assert
#include <ciso646> // or, and, not
#include <cmath> // signbit, isfinite
#include <cstdint> // intN_t, uintN_t
#include <cstring> // memcpy, memmove
#include <limits> // numeric_limits
#include <type_traits> // conditional
// #include <nlohmann/detail/macro_scope.hpp>
namespace nlohmann
{
namespace detail
{
/*!
@brief implements the Grisu2 algorithm for binary to decimal floating-point
conversion.
This implementation is a slightly modified version of the reference
implementation which may be obtained from
http://florian.loitsch.com/publications (bench.tar.gz).
The code is distributed under the MIT license, Copyright (c) 2009 Florian Loitsch.
For a detailed description of the algorithm see:
[1] Loitsch, "Printing Floating-Point Numbers Quickly and Accurately with
Integers", Proceedings of the ACM SIGPLAN 2010 Conference on Programming
Language Design and Implementation, PLDI 2010
[2] Burger, Dybvig, "Printing Floating-Point Numbers Quickly and Accurately",
Proceedings of the ACM SIGPLAN 1996 Conference on Programming Language
Design and Implementation, PLDI 1996
*/
namespace dtoa_impl
{
template <typename Target, typename Source>
Target reinterpret_bits(const Source source)
{
static_assert(sizeof(Target) == sizeof(Source), "size mismatch");
Target target;
std::memcpy(&target, &source, sizeof(Source));
return target;
}
struct diyfp // f * 2^e
{
static constexpr int kPrecision = 64; // = q
std::uint64_t f = 0;
int e = 0;
constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {}
/*!
@brief returns x - y
@pre x.e == y.e and x.f >= y.f
*/
static diyfp sub(const diyfp& x, const diyfp& y) noexcept
{
assert(x.e == y.e);
assert(x.f >= y.f);
return {x.f - y.f, x.e};
}
/*!
@brief returns x * y
@note The result is rounded. (Only the upper q bits are returned.)
*/
static diyfp mul(const diyfp& x, const diyfp& y) noexcept
{
static_assert(kPrecision == 64, "internal error");
// Computes:
// f = round((x.f * y.f) / 2^q)
// e = x.e + y.e + q
// Emulate the 64-bit * 64-bit multiplication:
//
// p = u * v
// = (u_lo + 2^32 u_hi) (v_lo + 2^32 v_hi)
// = (u_lo v_lo ) + 2^32 ((u_lo v_hi ) + (u_hi v_lo )) + 2^64 (u_hi v_hi )
// = (p0 ) + 2^32 ((p1 ) + (p2 )) + 2^64 (p3 )
// = (p0_lo + 2^32 p0_hi) + 2^32 ((p1_lo + 2^32 p1_hi) + (p2_lo + 2^32 p2_hi)) + 2^64 (p3 )
// = (p0_lo ) + 2^32 (p0_hi + p1_lo + p2_lo ) + 2^64 (p1_hi + p2_hi + p3)
// = (p0_lo ) + 2^32 (Q ) + 2^64 (H )
// = (p0_lo ) + 2^32 (Q_lo + 2^32 Q_hi ) + 2^64 (H )
//
// (Since Q might be larger than 2^32 - 1)
//
// = (p0_lo + 2^32 Q_lo) + 2^64 (Q_hi + H)
//
// (Q_hi + H does not overflow a 64-bit int)
//
// = p_lo + 2^64 p_hi
const std::uint64_t u_lo = x.f & 0xFFFFFFFFu;
const std::uint64_t u_hi = x.f >> 32u;
const std::uint64_t v_lo = y.f & 0xFFFFFFFFu;
const std::uint64_t v_hi = y.f >> 32u;
const std::uint64_t p0 = u_lo * v_lo;
const std::uint64_t p1 = u_lo * v_hi;
const std::uint64_t p2 = u_hi * v_lo;
const std::uint64_t p3 = u_hi * v_hi;
const std::uint64_t p0_hi = p0 >> 32u;
const std::uint64_t p1_lo = p1 & 0xFFFFFFFFu;
const std::uint64_t p1_hi = p1 >> 32u;
const std::uint64_t p2_lo = p2 & 0xFFFFFFFFu;
const std::uint64_t p2_hi = p2 >> 32u;
std::uint64_t Q = p0_hi + p1_lo + p2_lo;
// The full product might now be computed as
//
// p_hi = p3 + p2_hi + p1_hi + (Q >> 32)
// p_lo = p0_lo + (Q << 32)
//
// But in this particular case here, the full p_lo is not required.
// Effectively we only need to add the highest bit in p_lo to p_hi (and
// Q_hi + 1 does not overflow).
Q += std::uint64_t{1} << (64u - 32u - 1u); // round, ties up
const std::uint64_t h = p3 + p2_hi + p1_hi + (Q >> 32u);
return {h, x.e + y.e + 64};
}
/*!
@brief normalize x such that the significand is >= 2^(q-1)
@pre x.f != 0
*/
static diyfp normalize(diyfp x) noexcept
{
assert(x.f != 0);
while ((x.f >> 63u) == 0)
{
x.f <<= 1u;
x.e--;
}
return x;
}
/*!
@brief normalize x such that the result has the exponent E
@pre e >= x.e and the upper e - x.e bits of x.f must be zero.
*/
static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept
{
const int delta = x.e - target_exponent;
assert(delta >= 0);
assert(((x.f << delta) >> delta) == x.f);
return {x.f << delta, target_exponent};
}
};
struct boundaries
{
diyfp w;
diyfp minus;
diyfp plus;
};
/*!
Compute the (normalized) diyfp representing the input number 'value' and its
boundaries.
@pre value must be finite and positive
*/
template <typename FloatType>
boundaries compute_boundaries(FloatType value)
{
assert(std::isfinite(value));
assert(value > 0);
// Convert the IEEE representation into a diyfp.
//
// If v is denormal:
// value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1))
// If v is normalized:
// value = 1.F * 2^(E - bias) = (2^(p-1) + F) * 2^(E - bias - (p-1))
static_assert(std::numeric_limits<FloatType>::is_iec559,
"internal error: dtoa_short requires an IEEE-754 floating-point implementation");
constexpr int kPrecision = std::numeric_limits<FloatType>::digits; // = p (includes the hidden bit)
constexpr int kBias = std::numeric_limits<FloatType>::max_exponent - 1 + (kPrecision - 1);
constexpr int kMinExp = 1 - kBias;
constexpr std::uint64_t kHiddenBit = std::uint64_t{1} << (kPrecision - 1); // = 2^(p-1)
using bits_type = typename std::conditional<kPrecision == 24, std::uint32_t, std::uint64_t >::type;
const std::uint64_t bits = reinterpret_bits<bits_type>(value);
const std::uint64_t E = bits >> (kPrecision - 1);
const std::uint64_t F = bits & (kHiddenBit - 1);
const bool is_denormal = E == 0;
const diyfp v = is_denormal
? diyfp(F, kMinExp)
: diyfp(F + kHiddenBit, static_cast<int>(E) - kBias);
// Compute the boundaries m- and m+ of the floating-point value
// v = f * 2^e.
//
// Determine v- and v+, the floating-point predecessor and successor if v,
// respectively.
//
// v- = v - 2^e if f != 2^(p-1) or e == e_min (A)
// = v - 2^(e-1) if f == 2^(p-1) and e > e_min (B)
//
// v+ = v + 2^e
//
// Let m- = (v- + v) / 2 and m+ = (v + v+) / 2. All real numbers _strictly_
// between m- and m+ round to v, regardless of how the input rounding
// algorithm breaks ties.
//
// ---+-------------+-------------+-------------+-------------+--- (A)
// v- m- v m+ v+
//
// -----------------+------+------+-------------+-------------+--- (B)
// v- m- v m+ v+
const bool lower_boundary_is_closer = F == 0 and E > 1;
const diyfp m_plus = diyfp(2 * v.f + 1, v.e - 1);
const diyfp m_minus = lower_boundary_is_closer
? diyfp(4 * v.f - 1, v.e - 2) // (B)
: diyfp(2 * v.f - 1, v.e - 1); // (A)
// Determine the normalized w+ = m+.
const diyfp w_plus = diyfp::normalize(m_plus);
// Determine w- = m- such that e_(w-) = e_(w+).
const diyfp w_minus = diyfp::normalize_to(m_minus, w_plus.e);
return {diyfp::normalize(v), w_minus, w_plus};
}
// Given normalized diyfp w, Grisu needs to find a (normalized) cached
// power-of-ten c, such that the exponent of the product c * w = f * 2^e lies
// within a certain range [alpha, gamma] (Definition 3.2 from [1])
//
// alpha <= e = e_c + e_w + q <= gamma
//
// or
//
// f_c * f_w * 2^alpha <= f_c 2^(e_c) * f_w 2^(e_w) * 2^q
// <= f_c * f_w * 2^gamma
//
// Since c and w are normalized, i.e. 2^(q-1) <= f < 2^q, this implies
//
// 2^(q-1) * 2^(q-1) * 2^alpha <= c * w * 2^q < 2^q * 2^q * 2^gamma
//
// or
//
// 2^(q - 2 + alpha) <= c * w < 2^(q + gamma)
//
// The choice of (alpha,gamma) determines the size of the table and the form of
// the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well
// in practice:
//
// The idea is to cut the number c * w = f * 2^e into two parts, which can be
// processed independently: An integral part p1, and a fractional part p2:
//
// f * 2^e = ( (f div 2^-e) * 2^-e + (f mod 2^-e) ) * 2^e
// = (f div 2^-e) + (f mod 2^-e) * 2^e
// = p1 + p2 * 2^e
//
// The conversion of p1 into decimal form requires a series of divisions and
// modulos by (a power of) 10. These operations are faster for 32-bit than for
// 64-bit integers, so p1 should ideally fit into a 32-bit integer. This can be
// achieved by choosing
//
// -e >= 32 or e <= -32 := gamma
//
// In order to convert the fractional part
//
// p2 * 2^e = p2 / 2^-e = d[-1] / 10^1 + d[-2] / 10^2 + ...
//
// into decimal form, the fraction is repeatedly multiplied by 10 and the digits
// d[-i] are extracted in order:
//
// (10 * p2) div 2^-e = d[-1]
// (10 * p2) mod 2^-e = d[-2] / 10^1 + ...
//
// The multiplication by 10 must not overflow. It is sufficient to choose
//
// 10 * p2 < 16 * p2 = 2^4 * p2 <= 2^64.
//
// Since p2 = f mod 2^-e < 2^-e,
//
// -e <= 60 or e >= -60 := alpha
constexpr int kAlpha = -60;
constexpr int kGamma = -32;
struct cached_power // c = f * 2^e ~= 10^k
{
std::uint64_t f;
int e;
int k;
};
/*!
For a normalized diyfp w = f * 2^e, this function returns a (normalized) cached
power-of-ten c = f_c * 2^e_c, such that the exponent of the product w * c
satisfies (Definition 3.2 from [1])
alpha <= e_c + e + q <= gamma.
*/
inline cached_power get_cached_power_for_binary_exponent(int e)
{
// Now
//
// alpha <= e_c + e + q <= gamma (1)
// ==> f_c * 2^alpha <= c * 2^e * 2^q
//
// and since the c's are normalized, 2^(q-1) <= f_c,
//
// ==> 2^(q - 1 + alpha) <= c * 2^(e + q)
// ==> 2^(alpha - e - 1) <= c
//
// If c were an exact power of ten, i.e. c = 10^k, one may determine k as
//
// k = ceil( log_10( 2^(alpha - e - 1) ) )
// = ceil( (alpha - e - 1) * log_10(2) )
//
// From the paper:
// "In theory the result of the procedure could be wrong since c is rounded,
// and the computation itself is approximated [...]. In practice, however,
// this simple function is sufficient."
//
// For IEEE double precision floating-point numbers converted into
// normalized diyfp's w = f * 2^e, with q = 64,
//
// e >= -1022 (min IEEE exponent)
// -52 (p - 1)
// -52 (p - 1, possibly normalize denormal IEEE numbers)
// -11 (normalize the diyfp)
// = -1137
//
// and
//
// e <= +1023 (max IEEE exponent)
// -52 (p - 1)
// -11 (normalize the diyfp)
// = 960
//
// This binary exponent range [-1137,960] results in a decimal exponent
// range [-307,324]. One does not need to store a cached power for each
// k in this range. For each such k it suffices to find a cached power
// such that the exponent of the product lies in [alpha,gamma].
// This implies that the difference of the decimal exponents of adjacent
// table entries must be less than or equal to
//
// floor( (gamma - alpha) * log_10(2) ) = 8.
//
// (A smaller distance gamma-alpha would require a larger table.)
// NB:
// Actually this function returns c, such that -60 <= e_c + e + 64 <= -34.
constexpr int kCachedPowersMinDecExp = -300;
constexpr int kCachedPowersDecStep = 8;
static constexpr std::array<cached_power, 79> kCachedPowers =
{
{
{ 0xAB70FE17C79AC6CA, -1060, -300 },
{ 0xFF77B1FCBEBCDC4F, -1034, -292 },
{ 0xBE5691EF416BD60C, -1007, -284 },
{ 0x8DD01FAD907FFC3C, -980, -276 },
{ 0xD3515C2831559A83, -954, -268 },
{ 0x9D71AC8FADA6C9B5, -927, -260 },
{ 0xEA9C227723EE8BCB, -901, -252 },
{ 0xAECC49914078536D, -874, -244 },
{ 0x823C12795DB6CE57, -847, -236 },
{ 0xC21094364DFB5637, -821, -228 },
{ 0x9096EA6F3848984F, -794, -220 },
{ 0xD77485CB25823AC7, -768, -212 },
{ 0xA086CFCD97BF97F4, -741, -204 },
{ 0xEF340A98172AACE5, -715, -196 },
{ 0xB23867FB2A35B28E, -688, -188 },
{ 0x84C8D4DFD2C63F3B, -661, -180 },
{ 0xC5DD44271AD3CDBA, -635, -172 },
{ 0x936B9FCEBB25C996, -608, -164 },
{ 0xDBAC6C247D62A584, -582, -156 },
{ 0xA3AB66580D5FDAF6, -555, -148 },
{ 0xF3E2F893DEC3F126, -529, -140 },
{ 0xB5B5ADA8AAFF80B8, -502, -132 },
{ 0x87625F056C7C4A8B, -475, -124 },
{ 0xC9BCFF6034C13053, -449, -116 },
{ 0x964E858C91BA2655, -422, -108 },
{ 0xDFF9772470297EBD, -396, -100 },
{ 0xA6DFBD9FB8E5B88F, -369, -92 },
{ 0xF8A95FCF88747D94, -343, -84 },
{ 0xB94470938FA89BCF, -316, -76 },
{ 0x8A08F0F8BF0F156B, -289, -68 },
{ 0xCDB02555653131B6, -263, -60 },
{ 0x993FE2C6D07B7FAC, -236, -52 },
{ 0xE45C10C42A2B3B06, -210, -44 },
{ 0xAA242499697392D3, -183, -36 },
{ 0xFD87B5F28300CA0E, -157, -28 },
{ 0xBCE5086492111AEB, -130, -20 },
{ 0x8CBCCC096F5088CC, -103, -12 },
{ 0xD1B71758E219652C, -77, -4 },
{ 0x9C40000000000000, -50, 4 },
{ 0xE8D4A51000000000, -24, 12 },
{ 0xAD78EBC5AC620000, 3, 20 },
{ 0x813F3978F8940984, 30, 28 },
{ 0xC097CE7BC90715B3, 56, 36 },
{ 0x8F7E32CE7BEA5C70, 83, 44 },
{ 0xD5D238A4ABE98068, 109, 52 },
{ 0x9F4F2726179A2245, 136, 60 },
{ 0xED63A231D4C4FB27, 162, 68 },
{ 0xB0DE65388CC8ADA8, 189, 76 },
{ 0x83C7088E1AAB65DB, 216, 84 },
{ 0xC45D1DF942711D9A, 242, 92 },
{ 0x924D692CA61BE758, 269, 100 },
{ 0xDA01EE641A708DEA, 295, 108 },
{ 0xA26DA3999AEF774A, 322, 116 },
{ 0xF209787BB47D6B85, 348, 124 },
{ 0xB454E4A179DD1877, 375, 132 },
{ 0x865B86925B9BC5C2, 402, 140 },
{ 0xC83553C5C8965D3D, 428, 148 },
{ 0x952AB45CFA97A0B3, 455, 156 },
{ 0xDE469FBD99A05FE3, 481, 164 },
{ 0xA59BC234DB398C25, 508, 172 },
{ 0xF6C69A72A3989F5C, 534, 180 },
{ 0xB7DCBF5354E9BECE, 561, 188 },
{ 0x88FCF317F22241E2, 588, 196 },
{ 0xCC20CE9BD35C78A5, 614, 204 },
{ 0x98165AF37B2153DF, 641, 212 },
{ 0xE2A0B5DC971F303A, 667, 220 },
{ 0xA8D9D1535CE3B396, 694, 228 },
{ 0xFB9B7CD9A4A7443C, 720, 236 },
{ 0xBB764C4CA7A44410, 747, 244 },
{ 0x8BAB8EEFB6409C1A, 774, 252 },
{ 0xD01FEF10A657842C, 800, 260 },
{ 0x9B10A4E5E9913129, 827, 268 },
{ 0xE7109BFBA19C0C9D, 853, 276 },
{ 0xAC2820D9623BF429, 880, 284 },
{ 0x80444B5E7AA7CF85, 907, 292 },
{ 0xBF21E44003ACDD2D, 933, 300 },
{ 0x8E679C2F5E44FF8F, 960, 308 },
{ 0xD433179D9C8CB841, 986, 316 },
{ 0x9E19DB92B4E31BA9, 1013, 324 },
}
};
// This computation gives exactly the same results for k as
// k = ceil((kAlpha - e - 1) * 0.30102999566398114)
// for |e| <= 1500, but doesn't require floating-point operations.
// NB: log_10(2) ~= 78913 / 2^18
assert(e >= -1500);
assert(e <= 1500);
const int f = kAlpha - e - 1;
const int k = (f * 78913) / (1 << 18) + static_cast<int>(f > 0);
const int index = (-kCachedPowersMinDecExp + k + (kCachedPowersDecStep - 1)) / kCachedPowersDecStep;
assert(index >= 0);
assert(static_cast<std::size_t>(index) < kCachedPowers.size());
const cached_power cached = kCachedPowers[static_cast<std::size_t>(index)];
assert(kAlpha <= cached.e + e + 64);
assert(kGamma >= cached.e + e + 64);
return cached;
}
/*!
For n != 0, returns k, such that pow10 := 10^(k-1) <= n < 10^k.
For n == 0, returns 1 and sets pow10 := 1.
*/
inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10)
{
// LCOV_EXCL_START
if (n >= 1000000000)
{
pow10 = 1000000000;
return 10;
}
// LCOV_EXCL_STOP
else if (n >= 100000000)
{
pow10 = 100000000;
return 9;
}
else if (n >= 10000000)
{
pow10 = 10000000;
return 8;
}
else if (n >= 1000000)
{
pow10 = 1000000;
return 7;
}
else if (n >= 100000)
{
pow10 = 100000;
return 6;
}
else if (n >= 10000)
{
pow10 = 10000;
return 5;
}
else if (n >= 1000)
{
pow10 = 1000;
return 4;
}
else if (n >= 100)
{
pow10 = 100;
return 3;
}
else if (n >= 10)
{
pow10 = 10;
return 2;
}
else
{
pow10 = 1;
return 1;
}
}
inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta,
std::uint64_t rest, std::uint64_t ten_k)
{
assert(len >= 1);
assert(dist <= delta);
assert(rest <= delta);
assert(ten_k > 0);
// <--------------------------- delta ---->
// <---- dist --------->
// --------------[------------------+-------------------]--------------
// M- w M+
//
// ten_k
// <------>
// <---- rest ---->
// --------------[------------------+----+--------------]--------------
// w V
// = buf * 10^k
//
// ten_k represents a unit-in-the-last-place in the decimal representation
// stored in buf.
// Decrement buf by ten_k while this takes buf closer to w.
// The tests are written in this order to avoid overflow in unsigned
// integer arithmetic.
while (rest < dist
and delta - rest >= ten_k
and (rest + ten_k < dist or dist - rest > rest + ten_k - dist))
{
assert(buf[len - 1] != '0');
buf[len - 1]--;
rest += ten_k;
}
}
/*!
Generates V = buffer * 10^decimal_exponent, such that M- <= V <= M+.
M- and M+ must be normalized and share the same exponent -60 <= e <= -32.
*/
inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent,
diyfp M_minus, diyfp w, diyfp M_plus)
{
static_assert(kAlpha >= -60, "internal error");
static_assert(kGamma <= -32, "internal error");
// Generates the digits (and the exponent) of a decimal floating-point
// number V = buffer * 10^decimal_exponent in the range [M-, M+]. The diyfp's
// w, M- and M+ share the same exponent e, which satisfies alpha <= e <= gamma.
//
// <--------------------------- delta ---->
// <---- dist --------->
// --------------[------------------+-------------------]--------------
// M- w M+
//
// Grisu2 generates the digits of M+ from left to right and stops as soon as
// V is in [M-,M+].
assert(M_plus.e >= kAlpha);
assert(M_plus.e <= kGamma);
std::uint64_t delta = diyfp::sub(M_plus, M_minus).f; // (significand of (M+ - M-), implicit exponent is e)
std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e)
// Split M+ = f * 2^e into two parts p1 and p2 (note: e < 0):
//
// M+ = f * 2^e
// = ((f div 2^-e) * 2^-e + (f mod 2^-e)) * 2^e
// = ((p1 ) * 2^-e + (p2 )) * 2^e
// = p1 + p2 * 2^e
const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e);
auto p1 = static_cast<std::uint32_t>(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.)
std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e
// 1)
//
// Generate the digits of the integral part p1 = d[n-1]...d[1]d[0]
assert(p1 > 0);
std::uint32_t pow10;
const int k = find_largest_pow10(p1, pow10);
// 10^(k-1) <= p1 < 10^k, pow10 = 10^(k-1)
//
// p1 = (p1 div 10^(k-1)) * 10^(k-1) + (p1 mod 10^(k-1))
// = (d[k-1] ) * 10^(k-1) + (p1 mod 10^(k-1))
//
// M+ = p1 + p2 * 2^e
// = d[k-1] * 10^(k-1) + (p1 mod 10^(k-1)) + p2 * 2^e
// = d[k-1] * 10^(k-1) + ((p1 mod 10^(k-1)) * 2^-e + p2) * 2^e
// = d[k-1] * 10^(k-1) + ( rest) * 2^e
//
// Now generate the digits d[n] of p1 from left to right (n = k-1,...,0)
//
// p1 = d[k-1]...d[n] * 10^n + d[n-1]...d[0]
//
// but stop as soon as
//
// rest * 2^e = (d[n-1]...d[0] * 2^-e + p2) * 2^e <= delta * 2^e
int n = k;
while (n > 0)
{
// Invariants:
// M+ = buffer * 10^n + (p1 + p2 * 2^e) (buffer = 0 for n = k)
// pow10 = 10^(n-1) <= p1 < 10^n
//
const std::uint32_t d = p1 / pow10; // d = p1 div 10^(n-1)
const std::uint32_t r = p1 % pow10; // r = p1 mod 10^(n-1)
//
// M+ = buffer * 10^n + (d * 10^(n-1) + r) + p2 * 2^e
// = (buffer * 10 + d) * 10^(n-1) + (r + p2 * 2^e)
//
assert(d <= 9);
buffer[length++] = static_cast<char>('0' + d); // buffer := buffer * 10 + d
//
// M+ = buffer * 10^(n-1) + (r + p2 * 2^e)
//
p1 = r;
n--;
//
// M+ = buffer * 10^n + (p1 + p2 * 2^e)
// pow10 = 10^n
//
// Now check if enough digits have been generated.
// Compute
//
// p1 + p2 * 2^e = (p1 * 2^-e + p2) * 2^e = rest * 2^e
//
// Note:
// Since rest and delta share the same exponent e, it suffices to
// compare the significands.
const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2;
if (rest <= delta)
{
// V = buffer * 10^n, with M- <= V <= M+.
decimal_exponent += n;
// We may now just stop. But instead look if the buffer could be
// decremented to bring V closer to w.
//
// pow10 = 10^n is now 1 ulp in the decimal representation V.
// The rounding procedure works with diyfp's with an implicit
// exponent of e.
//
// 10^n = (10^n * 2^-e) * 2^e = ulp * 2^e
//
const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e;
grisu2_round(buffer, length, dist, delta, rest, ten_n);
return;
}
pow10 /= 10;
//
// pow10 = 10^(n-1) <= p1 < 10^n
// Invariants restored.
}
// 2)
//
// The digits of the integral part have been generated:
//
// M+ = d[k-1]...d[1]d[0] + p2 * 2^e
// = buffer + p2 * 2^e
//
// Now generate the digits of the fractional part p2 * 2^e.
//
// Note:
// No decimal point is generated: the exponent is adjusted instead.
//
// p2 actually represents the fraction
//
// p2 * 2^e
// = p2 / 2^-e
// = d[-1] / 10^1 + d[-2] / 10^2 + ...
//
// Now generate the digits d[-m] of p1 from left to right (m = 1,2,...)
//
// p2 * 2^e = d[-1]d[-2]...d[-m] * 10^-m
// + 10^-m * (d[-m-1] / 10^1 + d[-m-2] / 10^2 + ...)
//
// using
//
// 10^m * p2 = ((10^m * p2) div 2^-e) * 2^-e + ((10^m * p2) mod 2^-e)
// = ( d) * 2^-e + ( r)
//
// or
// 10^m * p2 * 2^e = d + r * 2^e
//
// i.e.
//
// M+ = buffer + p2 * 2^e
// = buffer + 10^-m * (d + r * 2^e)
// = (buffer * 10^m + d) * 10^-m + 10^-m * r * 2^e
//
// and stop as soon as 10^-m * r * 2^e <= delta * 2^e
assert(p2 > delta);
int m = 0;
for (;;)
{
// Invariant:
// M+ = buffer * 10^-m + 10^-m * (d[-m-1] / 10 + d[-m-2] / 10^2 + ...) * 2^e
// = buffer * 10^-m + 10^-m * (p2 ) * 2^e
// = buffer * 10^-m + 10^-m * (1/10 * (10 * p2) ) * 2^e
// = buffer * 10^-m + 10^-m * (1/10 * ((10*p2 div 2^-e) * 2^-e + (10*p2 mod 2^-e)) * 2^e
//
assert(p2 <= (std::numeric_limits<std::uint64_t>::max)() / 10);
p2 *= 10;
const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e
const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e
//
// M+ = buffer * 10^-m + 10^-m * (1/10 * (d * 2^-e + r) * 2^e
// = buffer * 10^-m + 10^-m * (1/10 * (d + r * 2^e))
// = (buffer * 10 + d) * 10^(-m-1) + 10^(-m-1) * r * 2^e
//
assert(d <= 9);
buffer[length++] = static_cast<char>('0' + d); // buffer := buffer * 10 + d
//
// M+ = buffer * 10^(-m-1) + 10^(-m-1) * r * 2^e
//
p2 = r;
m++;
//
// M+ = buffer * 10^-m + 10^-m * p2 * 2^e
// Invariant restored.
// Check if enough digits have been generated.
//
// 10^-m * p2 * 2^e <= delta * 2^e
// p2 * 2^e <= 10^m * delta * 2^e
// p2 <= 10^m * delta
delta *= 10;
dist *= 10;
if (p2 <= delta)
{
break;
}
}
// V = buffer * 10^-m, with M- <= V <= M+.
decimal_exponent -= m;
// 1 ulp in the decimal representation is now 10^-m.
// Since delta and dist are now scaled by 10^m, we need to do the
// same with ulp in order to keep the units in sync.
//
// 10^m * 10^-m = 1 = 2^-e * 2^e = ten_m * 2^e
//
const std::uint64_t ten_m = one.f;
grisu2_round(buffer, length, dist, delta, p2, ten_m);
// By construction this algorithm generates the shortest possible decimal
// number (Loitsch, Theorem 6.2) which rounds back to w.
// For an input number of precision p, at least
//
// N = 1 + ceil(p * log_10(2))
//
// decimal digits are sufficient to identify all binary floating-point
// numbers (Matula, "In-and-Out conversions").
// This implies that the algorithm does not produce more than N decimal
// digits.
//
// N = 17 for p = 53 (IEEE double precision)
// N = 9 for p = 24 (IEEE single precision)
}
/*!
v = buf * 10^decimal_exponent
len is the length of the buffer (number of decimal digits)
The buffer must be large enough, i.e. >= max_digits10.
*/
JSON_HEDLEY_NON_NULL(1)
inline void grisu2(char* buf, int& len, int& decimal_exponent,
diyfp m_minus, diyfp v, diyfp m_plus)
{
assert(m_plus.e == m_minus.e);
assert(m_plus.e == v.e);
// --------(-----------------------+-----------------------)-------- (A)
// m- v m+
//
// --------------------(-----------+-----------------------)-------- (B)
// m- v m+
//
// First scale v (and m- and m+) such that the exponent is in the range
// [alpha, gamma].
const cached_power cached = get_cached_power_for_binary_exponent(m_plus.e);
const diyfp c_minus_k(cached.f, cached.e); // = c ~= 10^-k
// The exponent of the products is = v.e + c_minus_k.e + q and is in the range [alpha,gamma]
const diyfp w = diyfp::mul(v, c_minus_k);
const diyfp w_minus = diyfp::mul(m_minus, c_minus_k);
const diyfp w_plus = diyfp::mul(m_plus, c_minus_k);
// ----(---+---)---------------(---+---)---------------(---+---)----
// w- w w+
// = c*m- = c*v = c*m+
//
// diyfp::mul rounds its result and c_minus_k is approximated too. w, w- and
// w+ are now off by a small amount.
// In fact:
//
// w - v * 10^k < 1 ulp
//
// To account for this inaccuracy, add resp. subtract 1 ulp.
//
// --------+---[---------------(---+---)---------------]---+--------
// w- M- w M+ w+
//
// Now any number in [M-, M+] (bounds included) will round to w when input,
// regardless of how the input rounding algorithm breaks ties.
//
// And digit_gen generates the shortest possible such number in [M-, M+].
// Note that this does not mean that Grisu2 always generates the shortest
// possible number in the interval (m-, m+).
const diyfp M_minus(w_minus.f + 1, w_minus.e);
const diyfp M_plus (w_plus.f - 1, w_plus.e );
decimal_exponent = -cached.k; // = -(-k) = k
grisu2_digit_gen(buf, len, decimal_exponent, M_minus, w, M_plus);
}
/*!
v = buf * 10^decimal_exponent
len is the length of the buffer (number of decimal digits)
The buffer must be large enough, i.e. >= max_digits10.
*/
template <typename FloatType>
JSON_HEDLEY_NON_NULL(1)
void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value)
{
static_assert(diyfp::kPrecision >= std::numeric_limits<FloatType>::digits + 3,
"internal error: not enough precision");
assert(std::isfinite(value));
assert(value > 0);
// If the neighbors (and boundaries) of 'value' are always computed for double-precision
// numbers, all float's can be recovered using strtod (and strtof). However, the resulting
// decimal representations are not exactly "short".
//
// The documentation for 'std::to_chars' (https://en.cppreference.com/w/cpp/utility/to_chars)
// says "value is converted to a string as if by std::sprintf in the default ("C") locale"
// and since sprintf promotes float's to double's, I think this is exactly what 'std::to_chars'
// does.
// On the other hand, the documentation for 'std::to_chars' requires that "parsing the
// representation using the corresponding std::from_chars function recovers value exactly". That
// indicates that single precision floating-point numbers should be recovered using
// 'std::strtof'.
//
// NB: If the neighbors are computed for single-precision numbers, there is a single float
// (7.0385307e-26f) which can't be recovered using strtod. The resulting double precision
// value is off by 1 ulp.
#if 0
const boundaries w = compute_boundaries(static_cast<double>(value));
#else
const boundaries w = compute_boundaries(value);
#endif
grisu2(buf, len, decimal_exponent, w.minus, w.w, w.plus);
}
/*!
@brief appends a decimal representation of e to buf
@return a pointer to the element following the exponent.
@pre -1000 < e < 1000
*/
JSON_HEDLEY_NON_NULL(1)
JSON_HEDLEY_RETURNS_NON_NULL
inline char* append_exponent(char* buf, int e)
{
assert(e > -1000);
assert(e < 1000);
if (e < 0)
{
e = -e;
*buf++ = '-';
}
else
{
*buf++ = '+';
}
auto k = static_cast<std::uint32_t>(e);
if (k < 10)
{
// Always print at least two digits in the exponent.
// This is for compatibility with printf("%g").
*buf++ = '0';
*buf++ = static_cast<char>('0' + k);
}
else if (k < 100)
{
*buf++ = static_cast<char>('0' + k / 10);
k %= 10;
*buf++ = static_cast<char>('0' + k);
}
else
{
*buf++ = static_cast<char>('0' + k / 100);
k %= 100;
*buf++ = static_cast<char>('0' + k / 10);
k %= 10;
*buf++ = static_cast<char>('0' + k);
}
return buf;
}
/*!
@brief prettify v = buf * 10^decimal_exponent
If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point
notation. Otherwise it will be printed in exponential notation.
@pre min_exp < 0
@pre max_exp > 0
*/
JSON_HEDLEY_NON_NULL(1)
JSON_HEDLEY_RETURNS_NON_NULL
inline char* format_buffer(char* buf, int len, int decimal_exponent,
int min_exp, int max_exp)
{
assert(min_exp < 0);
assert(max_exp > 0);
const int k = len;
const int n = len + decimal_exponent;
// v = buf * 10^(n-k)
// k is the length of the buffer (number of decimal digits)
// n is the position of the decimal point relative to the start of the buffer.
if (k <= n and n <= max_exp)
{
// digits[000]
// len <= max_exp + 2
std::memset(buf + k, '0', static_cast<size_t>(n - k));
// Make it look like a floating-point number (#362, #378)
buf[n + 0] = '.';
buf[n + 1] = '0';
return buf + (n + 2);
}
if (0 < n and n <= max_exp)
{
// dig.its
// len <= max_digits10 + 1
assert(k > n);
std::memmove(buf + (n + 1), buf + n, static_cast<size_t>(k - n));
buf[n] = '.';
return buf + (k + 1);
}
if (min_exp < n and n <= 0)
{
// 0.[000]digits
// len <= 2 + (-min_exp - 1) + max_digits10
std::memmove(buf + (2 + -n), buf, static_cast<size_t>(k));
buf[0] = '0';
buf[1] = '.';
std::memset(buf + 2, '0', static_cast<size_t>(-n));
return buf + (2 + (-n) + k);
}
if (k == 1)
{
// dE+123
// len <= 1 + 5
buf += 1;
}
else
{
// d.igitsE+123
// len <= max_digits10 + 1 + 5
std::memmove(buf + 2, buf + 1, static_cast<size_t>(k - 1));
buf[1] = '.';
buf += 1 + k;
}
*buf++ = 'e';
return append_exponent(buf, n - 1);
}
} // namespace dtoa_impl
/*!
@brief generates a decimal representation of the floating-point number value in [first, last).
The format of the resulting decimal representation is similar to printf's %g
format. Returns an iterator pointing past-the-end of the decimal representation.
@note The input number must be finite, i.e. NaN's and Inf's are not supported.
@note The buffer must be large enough.
@note The result is NOT null-terminated.
*/
template <typename FloatType>
JSON_HEDLEY_NON_NULL(1, 2)
JSON_HEDLEY_RETURNS_NON_NULL
char* to_chars(char* first, const char* last, FloatType value)
{
static_cast<void>(last); // maybe unused - fix warning
assert(std::isfinite(value));
// Use signbit(value) instead of (value < 0) since signbit works for -0.
if (std::signbit(value))
{
value = -value;
*first++ = '-';
}
if (value == 0) // +-0
{
*first++ = '0';
// Make it look like a floating-point number (#362, #378)
*first++ = '.';
*first++ = '0';
return first;
}
assert(last - first >= std::numeric_limits<FloatType>::max_digits10);
// Compute v = buffer * 10^decimal_exponent.
// The decimal digits are stored in the buffer, which needs to be interpreted
// as an unsigned decimal integer.
// len is the length of the buffer, i.e. the number of decimal digits.
int len = 0;
int decimal_exponent = 0;
dtoa_impl::grisu2(first, len, decimal_exponent, value);
assert(len <= std::numeric_limits<FloatType>::max_digits10);
// Format the buffer like printf("%.*g", prec, value)
constexpr int kMinExp = -4;
// Use digits10 here to increase compatibility with version 2.
constexpr int kMaxExp = std::numeric_limits<FloatType>::digits10;
assert(last - first >= kMaxExp + 2);
assert(last - first >= 2 + (-kMinExp - 1) + std::numeric_limits<FloatType>::max_digits10);
assert(last - first >= std::numeric_limits<FloatType>::max_digits10 + 6);
return dtoa_impl::format_buffer(first, len, decimal_exponent, kMinExp, kMaxExp);
}
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/meta/cpp_future.hpp>
// #include <nlohmann/detail/output/binary_writer.hpp>
// #include <nlohmann/detail/output/output_adapters.hpp>
// #include <nlohmann/detail/value_t.hpp>
namespace nlohmann
{
namespace detail
{
///////////////////
// serialization //
///////////////////
/// how to treat decoding errors
enum class error_handler_t
{
strict, ///< throw a type_error exception in case of invalid UTF-8
replace, ///< replace invalid UTF-8 sequences with U+FFFD
ignore ///< ignore invalid UTF-8 sequences
};
template<typename BasicJsonType>
class serializer
{
using string_t = typename BasicJsonType::string_t;
using number_float_t = typename BasicJsonType::number_float_t;
using number_integer_t = typename BasicJsonType::number_integer_t;
using number_unsigned_t = typename BasicJsonType::number_unsigned_t;
static constexpr std::uint8_t UTF8_ACCEPT = 0;
static constexpr std::uint8_t UTF8_REJECT = 1;
public:
/*!
@param[in] s output stream to serialize to
@param[in] ichar indentation character to use
@param[in] error_handler_ how to react on decoding errors
*/
serializer(output_adapter_t<char> s, const char ichar,
error_handler_t error_handler_ = error_handler_t::strict)
: o(std::move(s))
, loc(std::localeconv())
, thousands_sep(loc->thousands_sep == nullptr ? '\0' : * (loc->thousands_sep))
, decimal_point(loc->decimal_point == nullptr ? '\0' : * (loc->decimal_point))
, indent_char(ichar)
, indent_string(512, indent_char)
, error_handler(error_handler_)
{}
// delete because of pointer members
serializer(const serializer&) = delete;
serializer& operator=(const serializer&) = delete;
serializer(serializer&&) = delete;
serializer& operator=(serializer&&) = delete;
~serializer() = default;
/*!
@brief internal implementation of the serialization function
This function is called by the public member function dump and organizes
the serialization internally. The indentation level is propagated as
additional parameter. In case of arrays and objects, the function is
called recursively.
- strings and object keys are escaped using `escape_string()`
- integer numbers are converted implicitly via `operator<<`
- floating-point numbers are converted to a string using `"%g"` format
@param[in] val value to serialize
@param[in] pretty_print whether the output shall be pretty-printed
@param[in] indent_step the indent level
@param[in] current_indent the current indent level (only used internally)
*/
void dump(const BasicJsonType& val, const bool pretty_print,
const bool ensure_ascii,
const unsigned int indent_step,
const unsigned int current_indent = 0)
{
switch (val.m_type)
{
case value_t::object:
{
if (val.m_value.object->empty())
{
o->write_characters("{}", 2);
return;
}
if (pretty_print)
{
o->write_characters("{\n", 2);
// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent))
{
indent_string.resize(indent_string.size() * 2, ' ');
}
// first n-1 elements
auto i = val.m_value.object->cbegin();
for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i)
{
o->write_characters(indent_string.c_str(), new_indent);
o->write_character('\"');
dump_escaped(i->first, ensure_ascii);
o->write_characters("\": ", 3);
dump(i->second, true, ensure_ascii, indent_step, new_indent);
o->write_characters(",\n", 2);
}
// last element
assert(i != val.m_value.object->cend());
assert(std::next(i) == val.m_value.object->cend());
o->write_characters(indent_string.c_str(), new_indent);
o->write_character('\"');
dump_escaped(i->first, ensure_ascii);
o->write_characters("\": ", 3);
dump(i->second, true, ensure_ascii, indent_step, new_indent);
o->write_character('\n');
o->write_characters(indent_string.c_str(), current_indent);
o->write_character('}');
}
else
{
o->write_character('{');
// first n-1 elements
auto i = val.m_value.object->cbegin();
for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i)
{
o->write_character('\"');
dump_escaped(i->first, ensure_ascii);
o->write_characters("\":", 2);
dump(i->second, false, ensure_ascii, indent_step, current_indent);
o->write_character(',');
}
// last element
assert(i != val.m_value.object->cend());
assert(std::next(i) == val.m_value.object->cend());
o->write_character('\"');
dump_escaped(i->first, ensure_ascii);
o->write_characters("\":", 2);
dump(i->second, false, ensure_ascii, indent_step, current_indent);
o->write_character('}');
}
return;
}
case value_t::array:
{
if (val.m_value.array->empty())
{
o->write_characters("[]", 2);
return;
}
if (pretty_print)
{
o->write_characters("[\n", 2);
// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent))
{
indent_string.resize(indent_string.size() * 2, ' ');
}
// first n-1 elements
for (auto i = val.m_value.array->cbegin();
i != val.m_value.array->cend() - 1; ++i)
{
o->write_characters(indent_string.c_str(), new_indent);
dump(*i, true, ensure_ascii, indent_step, new_indent);
o->write_characters(",\n", 2);
}
// last element
assert(not val.m_value.array->empty());
o->write_characters(indent_string.c_str(), new_indent);
dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent);
o->write_character('\n');
o->write_characters(indent_string.c_str(), current_indent);
o->write_character(']');
}
else
{
o->write_character('[');
// first n-1 elements
for (auto i = val.m_value.array->cbegin();
i != val.m_value.array->cend() - 1; ++i)
{
dump(*i, false, ensure_ascii, indent_step, current_indent);
o->write_character(',');
}
// last element
assert(not val.m_value.array->empty());
dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent);
o->write_character(']');
}
return;
}
case value_t::string:
{
o->write_character('\"');
dump_escaped(*val.m_value.string, ensure_ascii);
o->write_character('\"');
return;
}
case value_t::boolean:
{
if (val.m_value.boolean)
{
o->write_characters("true", 4);
}
else
{
o->write_characters("false", 5);
}
return;
}
case value_t::number_integer:
{
dump_integer(val.m_value.number_integer);
return;
}
case value_t::number_unsigned:
{
dump_integer(val.m_value.number_unsigned);
return;
}
case value_t::number_float:
{
dump_float(val.m_value.number_float);
return;
}
case value_t::discarded:
{
o->write_characters("<discarded>", 11);
return;
}
case value_t::null:
{
o->write_characters("null", 4);
return;
}
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
}
private:
/*!
@brief dump escaped string
Escape a string by replacing certain special characters by a sequence of an
escape character (backslash) and another character and other control
characters by a sequence of "\u" followed by a four-digit hex
representation. The escaped string is written to output stream @a o.
@param[in] s the string to escape
@param[in] ensure_ascii whether to escape non-ASCII characters with
\uXXXX sequences
@complexity Linear in the length of string @a s.
*/
void dump_escaped(const string_t& s, const bool ensure_ascii)
{
std::uint32_t codepoint;
std::uint8_t state = UTF8_ACCEPT;
std::size_t bytes = 0; // number of bytes written to string_buffer
// number of bytes written at the point of the last valid byte
std::size_t bytes_after_last_accept = 0;
std::size_t undumped_chars = 0;
for (std::size_t i = 0; i < s.size(); ++i)
{
const auto byte = static_cast<uint8_t>(s[i]);
switch (decode(state, codepoint, byte))
{
case UTF8_ACCEPT: // decode found a new code point
{
switch (codepoint)
{
case 0x08: // backspace
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 'b';
break;
}
case 0x09: // horizontal tab
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 't';
break;
}
case 0x0A: // newline
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 'n';
break;
}
case 0x0C: // formfeed
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 'f';
break;
}
case 0x0D: // carriage return
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 'r';
break;
}
case 0x22: // quotation mark
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = '\"';
break;
}
case 0x5C: // reverse solidus
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = '\\';
break;
}
default:
{
// escape control characters (0x00..0x1F) or, if
// ensure_ascii parameter is used, non-ASCII characters
if ((codepoint <= 0x1F) or (ensure_ascii and (codepoint >= 0x7F)))
{
if (codepoint <= 0xFFFF)
{
(std::snprintf)(string_buffer.data() + bytes, 7, "\\u%04x",
static_cast<std::uint16_t>(codepoint));
bytes += 6;
}
else
{
(std::snprintf)(string_buffer.data() + bytes, 13, "\\u%04x\\u%04x",
static_cast<std::uint16_t>(0xD7C0u + (codepoint >> 10u)),
static_cast<std::uint16_t>(0xDC00u + (codepoint & 0x3FFu)));
bytes += 12;
}
}
else
{
// copy byte to buffer (all previous bytes
// been copied have in default case above)
string_buffer[bytes++] = s[i];
}
break;
}
}
// write buffer and reset index; there must be 13 bytes
// left, as this is the maximal number of bytes to be
// written ("\uxxxx\uxxxx\0") for one code point
if (string_buffer.size() - bytes < 13)
{
o->write_characters(string_buffer.data(), bytes);
bytes = 0;
}
// remember the byte position of this accept
bytes_after_last_accept = bytes;
undumped_chars = 0;
break;
}
case UTF8_REJECT: // decode found invalid UTF-8 byte
{
switch (error_handler)
{
case error_handler_t::strict:
{
std::string sn(3, '\0');
(std::snprintf)(&sn[0], sn.size(), "%.2X", byte);
JSON_THROW(type_error::create(316, "invalid UTF-8 byte at index " + std::to_string(i) + ": 0x" + sn));
}
case error_handler_t::ignore:
case error_handler_t::replace:
{
// in case we saw this character the first time, we
// would like to read it again, because the byte
// may be OK for itself, but just not OK for the
// previous sequence
if (undumped_chars > 0)
{
--i;
}
// reset length buffer to the last accepted index;
// thus removing/ignoring the invalid characters
bytes = bytes_after_last_accept;
if (error_handler == error_handler_t::replace)
{
// add a replacement character
if (ensure_ascii)
{
string_buffer[bytes++] = '\\';
string_buffer[bytes++] = 'u';
string_buffer[bytes++] = 'f';
string_buffer[bytes++] = 'f';
string_buffer[bytes++] = 'f';
string_buffer[bytes++] = 'd';
}
else
{
string_buffer[bytes++] = detail::binary_writer<BasicJsonType, char>::to_char_type('\xEF');
string_buffer[bytes++] = detail::binary_writer<BasicJsonType, char>::to_char_type('\xBF');
string_buffer[bytes++] = detail::binary_writer<BasicJsonType, char>::to_char_type('\xBD');
}
// write buffer and reset index; there must be 13 bytes
// left, as this is the maximal number of bytes to be
// written ("\uxxxx\uxxxx\0") for one code point
if (string_buffer.size() - bytes < 13)
{
o->write_characters(string_buffer.data(), bytes);
bytes = 0;
}
bytes_after_last_accept = bytes;
}
undumped_chars = 0;
// continue processing the string
state = UTF8_ACCEPT;
break;
}
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
break;
}
default: // decode found yet incomplete multi-byte code point
{
if (not ensure_ascii)
{
// code point will not be escaped - copy byte to buffer
string_buffer[bytes++] = s[i];
}
++undumped_chars;
break;
}
}
}
// we finished processing the string
if (JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT))
{
// write buffer
if (bytes > 0)
{
o->write_characters(string_buffer.data(), bytes);
}
}
else
{
// we finish reading, but do not accept: string was incomplete
switch (error_handler)
{
case error_handler_t::strict:
{
std::string sn(3, '\0');
(std::snprintf)(&sn[0], sn.size(), "%.2X", static_cast<std::uint8_t>(s.back()));
JSON_THROW(type_error::create(316, "incomplete UTF-8 string; last byte: 0x" + sn));
}
case error_handler_t::ignore:
{
// write all accepted bytes
o->write_characters(string_buffer.data(), bytes_after_last_accept);
break;
}
case error_handler_t::replace:
{
// write all accepted bytes
o->write_characters(string_buffer.data(), bytes_after_last_accept);
// add a replacement character
if (ensure_ascii)
{
o->write_characters("\\ufffd", 6);
}
else
{
o->write_characters("\xEF\xBF\xBD", 3);
}
break;
}
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
}
}
/*!
@brief count digits
Count the number of decimal (base 10) digits for an input unsigned integer.
@param[in] x unsigned integer number to count its digits
@return number of decimal digits
*/
inline unsigned int count_digits(number_unsigned_t x) noexcept
{
unsigned int n_digits = 1;
for (;;)
{
if (x < 10)
{
return n_digits;
}
if (x < 100)
{
return n_digits + 1;
}
if (x < 1000)
{
return n_digits + 2;
}
if (x < 10000)
{
return n_digits + 3;
}
x = x / 10000u;
n_digits += 4;
}
}
/*!
@brief dump an integer
Dump a given integer to output stream @a o. Works internally with
@a number_buffer.
@param[in] x integer number (signed or unsigned) to dump
@tparam NumberType either @a number_integer_t or @a number_unsigned_t
*/
template<typename NumberType, detail::enable_if_t<
std::is_same<NumberType, number_unsigned_t>::value or
std::is_same<NumberType, number_integer_t>::value,
int> = 0>
void dump_integer(NumberType x)
{
static constexpr std::array<std::array<char, 2>, 100> digits_to_99
{
{
{{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}},
{{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}},
{{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}},
{{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}},
{{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}},
{{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}},
{{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}},
{{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}},
{{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}},
{{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}},
}
};
// special case for "0"
if (x == 0)
{
o->write_character('0');
return;
}
// use a pointer to fill the buffer
auto buffer_ptr = number_buffer.begin();
const bool is_negative = std::is_same<NumberType, number_integer_t>::value and not(x >= 0); // see issue #755
number_unsigned_t abs_value;
unsigned int n_chars;
if (is_negative)
{
*buffer_ptr = '-';
abs_value = remove_sign(x);
// account one more byte for the minus sign
n_chars = 1 + count_digits(abs_value);
}
else
{
abs_value = static_cast<number_unsigned_t>(x);
n_chars = count_digits(abs_value);
}
// spare 1 byte for '\0'
assert(n_chars < number_buffer.size() - 1);
// jump to the end to generate the string from backward
// so we later avoid reversing the result
buffer_ptr += n_chars;
// Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu
// See: https://www.youtube.com/watch?v=o4-CwDo2zpg
while (abs_value >= 100)
{
const auto digits_index = static_cast<unsigned>((abs_value % 100));
abs_value /= 100;
*(--buffer_ptr) = digits_to_99[digits_index][1];
*(--buffer_ptr) = digits_to_99[digits_index][0];
}
if (abs_value >= 10)
{
const auto digits_index = static_cast<unsigned>(abs_value);
*(--buffer_ptr) = digits_to_99[digits_index][1];
*(--buffer_ptr) = digits_to_99[digits_index][0];
}
else
{
*(--buffer_ptr) = static_cast<char>('0' + abs_value);
}
o->write_characters(number_buffer.data(), n_chars);
}
/*!
@brief dump a floating-point number
Dump a given floating-point number to output stream @a o. Works internally
with @a number_buffer.
@param[in] x floating-point number to dump
*/
void dump_float(number_float_t x)
{
// NaN / inf
if (not std::isfinite(x))
{
o->write_characters("null", 4);
return;
}
// If number_float_t is an IEEE-754 single or double precision number,
// use the Grisu2 algorithm to produce short numbers which are
// guaranteed to round-trip, using strtof and strtod, resp.
//
// NB: The test below works if <long double> == <double>.
static constexpr bool is_ieee_single_or_double
= (std::numeric_limits<number_float_t>::is_iec559 and std::numeric_limits<number_float_t>::digits == 24 and std::numeric_limits<number_float_t>::max_exponent == 128) or
(std::numeric_limits<number_float_t>::is_iec559 and std::numeric_limits<number_float_t>::digits == 53 and std::numeric_limits<number_float_t>::max_exponent == 1024);
dump_float(x, std::integral_constant<bool, is_ieee_single_or_double>());
}
void dump_float(number_float_t x, std::true_type /*is_ieee_single_or_double*/)
{
char* begin = number_buffer.data();
char* end = ::nlohmann::detail::to_chars(begin, begin + number_buffer.size(), x);
o->write_characters(begin, static_cast<size_t>(end - begin));
}
void dump_float(number_float_t x, std::false_type /*is_ieee_single_or_double*/)
{
// get number of digits for a float -> text -> float round-trip
static constexpr auto d = std::numeric_limits<number_float_t>::max_digits10;
// the actual conversion
std::ptrdiff_t len = (std::snprintf)(number_buffer.data(), number_buffer.size(), "%.*g", d, x);
// negative value indicates an error
assert(len > 0);
// check if buffer was large enough
assert(static_cast<std::size_t>(len) < number_buffer.size());
// erase thousands separator
if (thousands_sep != '\0')
{
const auto end = std::remove(number_buffer.begin(),
number_buffer.begin() + len, thousands_sep);
std::fill(end, number_buffer.end(), '\0');
assert((end - number_buffer.begin()) <= len);
len = (end - number_buffer.begin());
}
// convert decimal point to '.'
if (decimal_point != '\0' and decimal_point != '.')
{
const auto dec_pos = std::find(number_buffer.begin(), number_buffer.end(), decimal_point);
if (dec_pos != number_buffer.end())
{
*dec_pos = '.';
}
}
o->write_characters(number_buffer.data(), static_cast<std::size_t>(len));
// determine if need to append ".0"
const bool value_is_int_like =
std::none_of(number_buffer.begin(), number_buffer.begin() + len + 1,
[](char c)
{
return c == '.' or c == 'e';
});
if (value_is_int_like)
{
o->write_characters(".0", 2);
}
}
/*!
@brief check whether a string is UTF-8 encoded
The function checks each byte of a string whether it is UTF-8 encoded. The
result of the check is stored in the @a state parameter. The function must
be called initially with state 0 (accept). State 1 means the string must
be rejected, because the current byte is not allowed. If the string is
completely processed, but the state is non-zero, the string ended
prematurely; that is, the last byte indicated more bytes should have
followed.
@param[in,out] state the state of the decoding
@param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT)
@param[in] byte next byte to decode
@return new state
@note The function has been edited: a std::array is used.
@copyright Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
@sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
*/
static std::uint8_t decode(std::uint8_t& state, std::uint32_t& codep, const std::uint8_t byte) noexcept
{
static const std::array<std::uint8_t, 400> utf8d =
{
{
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, // 00..1F
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, // 20..3F
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, // 40..5F
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, // 60..7F
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9F
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // A0..BF
8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0..DF
0xA, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3, 0x3, // E0..EF
0xB, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, // F0..FF
0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1, 0x1, // s0..s0
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2
1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4
1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6
1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // s7..s8
}
};
const std::uint8_t type = utf8d[byte];
codep = (state != UTF8_ACCEPT)
? (byte & 0x3fu) | (codep << 6u)
: (0xFFu >> type) & (byte);
state = utf8d[256u + state * 16u + type];
return state;
}
/*
* Overload to make the compiler happy while it is instantiating
* dump_integer for number_unsigned_t.
* Must never be called.
*/
number_unsigned_t remove_sign(number_unsigned_t x)
{
assert(false); // LCOV_EXCL_LINE
return x; // LCOV_EXCL_LINE
}
/*
* Helper function for dump_integer
*
* This function takes a negative signed integer and returns its absolute
* value as unsigned integer. The plus/minus shuffling is necessary as we can
* not directly remove the sign of an arbitrary signed integer as the
* absolute values of INT_MIN and INT_MAX are usually not the same. See
* #1708 for details.
*/
inline number_unsigned_t remove_sign(number_integer_t x) noexcept
{
assert(x < 0 and x < (std::numeric_limits<number_integer_t>::max)());
return static_cast<number_unsigned_t>(-(x + 1)) + 1;
}
private:
/// the output of the serializer
output_adapter_t<char> o = nullptr;
/// a (hopefully) large enough character buffer
std::array<char, 64> number_buffer{{}};
/// the locale
const std::lconv* loc = nullptr;
/// the locale's thousand separator character
const char thousands_sep = '\0';
/// the locale's decimal point character
const char decimal_point = '\0';
/// string buffer
std::array<char, 512> string_buffer{{}};
/// the indentation character
const char indent_char;
/// the indentation string
string_t indent_string;
/// error_handler how to react on decoding errors
const error_handler_t error_handler;
};
} // namespace detail
} // namespace nlohmann
// #include <nlohmann/detail/value_t.hpp>
// #include <nlohmann/json_fwd.hpp>
/*!
@brief namespace for Niels Lohmann
@see https://github.com/nlohmann
@since version 1.0.0
*/
namespace nlohmann
{
/*!
@brief a class to store JSON values
@tparam ObjectType type for JSON objects (`std::map` by default; will be used
in @ref object_t)
@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used
in @ref array_t)
@tparam StringType type for JSON strings and object keys (`std::string` by
default; will be used in @ref string_t)
@tparam BooleanType type for JSON booleans (`bool` by default; will be used
in @ref boolean_t)
@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by
default; will be used in @ref number_integer_t)
@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c
`uint64_t` by default; will be used in @ref number_unsigned_t)
@tparam NumberFloatType type for JSON floating-point numbers (`double` by
default; will be used in @ref number_float_t)
@tparam AllocatorType type of the allocator to use (`std::allocator` by
default)
@tparam JSONSerializer the serializer to resolve internal calls to `to_json()`
and `from_json()` (@ref adl_serializer by default)
@requirement The class satisfies the following concept requirements:
- Basic
- [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible):
JSON values can be default constructed. The result will be a JSON null
value.
- [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible):
A JSON value can be constructed from an rvalue argument.
- [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible):
A JSON value can be copy-constructed from an lvalue expression.
- [MoveAssignable](https://en.cppreference.com/w/cpp/named_req/MoveAssignable):
A JSON value van be assigned from an rvalue argument.
- [CopyAssignable](https://en.cppreference.com/w/cpp/named_req/CopyAssignable):
A JSON value can be copy-assigned from an lvalue expression.
- [Destructible](https://en.cppreference.com/w/cpp/named_req/Destructible):
JSON values can be destructed.
- Layout
- [StandardLayoutType](https://en.cppreference.com/w/cpp/named_req/StandardLayoutType):
JSON values have
[standard layout](https://en.cppreference.com/w/cpp/language/data_members#Standard_layout):
All non-static data members are private and standard layout types, the
class has no virtual functions or (virtual) base classes.
- Library-wide
- [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable):
JSON values can be compared with `==`, see @ref
operator==(const_reference,const_reference).
- [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable):
JSON values can be compared with `<`, see @ref
operator<(const_reference,const_reference).
- [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable):
Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of
other compatible types, using unqualified function call @ref swap().
- [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer):
JSON values can be compared against `std::nullptr_t` objects which are used
to model the `null` value.
- Container
- [Container](https://en.cppreference.com/w/cpp/named_req/Container):
JSON values can be used like STL containers and provide iterator access.
- [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer);
JSON values can be used like STL containers and provide reverse iterator
access.
@invariant The member variables @a m_value and @a m_type have the following
relationship:
- If `m_type == value_t::object`, then `m_value.object != nullptr`.
- If `m_type == value_t::array`, then `m_value.array != nullptr`.
- If `m_type == value_t::string`, then `m_value.string != nullptr`.
The invariants are checked by member function assert_invariant().
@internal
@note ObjectType trick from http://stackoverflow.com/a/9860911
@endinternal
@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange
Format](http://rfc7159.net/rfc7159)
@since version 1.0.0
@nosubgrouping
*/
NLOHMANN_BASIC_JSON_TPL_DECLARATION
class basic_json
{
private:
template<detail::value_t> friend struct detail::external_constructor;
friend ::nlohmann::json_pointer<basic_json>;
friend ::nlohmann::detail::parser<basic_json>;
friend ::nlohmann::detail::serializer<basic_json>;
template<typename BasicJsonType>
friend class ::nlohmann::detail::iter_impl;
template<typename BasicJsonType, typename CharType>
friend class ::nlohmann::detail::binary_writer;
template<typename BasicJsonType, typename SAX>
friend class ::nlohmann::detail::binary_reader;
template<typename BasicJsonType>
friend class ::nlohmann::detail::json_sax_dom_parser;
template<typename BasicJsonType>
friend class ::nlohmann::detail::json_sax_dom_callback_parser;
/// workaround type for MSVC
using basic_json_t = NLOHMANN_BASIC_JSON_TPL;
// convenience aliases for types residing in namespace detail;
using lexer = ::nlohmann::detail::lexer<basic_json>;
using parser = ::nlohmann::detail::parser<basic_json>;
using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t;
template<typename BasicJsonType>
using internal_iterator = ::nlohmann::detail::internal_iterator<BasicJsonType>;
template<typename BasicJsonType>
using iter_impl = ::nlohmann::detail::iter_impl<BasicJsonType>;
template<typename Iterator>
using iteration_proxy = ::nlohmann::detail::iteration_proxy<Iterator>;
template<typename Base> using json_reverse_iterator = ::nlohmann::detail::json_reverse_iterator<Base>;
template<typename CharType>
using output_adapter_t = ::nlohmann::detail::output_adapter_t<CharType>;
using binary_reader = ::nlohmann::detail::binary_reader<basic_json>;
template<typename CharType> using binary_writer = ::nlohmann::detail::binary_writer<basic_json, CharType>;
using serializer = ::nlohmann::detail::serializer<basic_json>;
public:
using value_t = detail::value_t;
/// JSON Pointer, see @ref nlohmann::json_pointer
using json_pointer = ::nlohmann::json_pointer<basic_json>;
template<typename T, typename SFINAE>
using json_serializer = JSONSerializer<T, SFINAE>;
/// how to treat decoding errors
using error_handler_t = detail::error_handler_t;
/// helper type for initializer lists of basic_json values
using initializer_list_t = std::initializer_list<detail::json_ref<basic_json>>;
using input_format_t = detail::input_format_t;
/// SAX interface type, see @ref nlohmann::json_sax
using json_sax_t = json_sax<basic_json>;
////////////////
// exceptions //
////////////////
/// @name exceptions
/// Classes to implement user-defined exceptions.
/// @{
/// @copydoc detail::exception
using exception = detail::exception;
/// @copydoc detail::parse_error
using parse_error = detail::parse_error;
/// @copydoc detail::invalid_iterator
using invalid_iterator = detail::invalid_iterator;
/// @copydoc detail::type_error
using type_error = detail::type_error;
/// @copydoc detail::out_of_range
using out_of_range = detail::out_of_range;
/// @copydoc detail::other_error
using other_error = detail::other_error;
/// @}
/////////////////////
// container types //
/////////////////////
/// @name container types
/// The canonic container types to use @ref basic_json like any other STL
/// container.
/// @{
/// the type of elements in a basic_json container
using value_type = basic_json;
/// the type of an element reference
using reference = value_type&;
/// the type of an element const reference
using const_reference = const value_type&;
/// a type to represent differences between iterators
using difference_type = std::ptrdiff_t;
/// a type to represent container sizes
using size_type = std::size_t;
/// the allocator type
using allocator_type = AllocatorType<basic_json>;
/// the type of an element pointer
using pointer = typename std::allocator_traits<allocator_type>::pointer;
/// the type of an element const pointer
using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer;
/// an iterator for a basic_json container
using iterator = iter_impl<basic_json>;
/// a const iterator for a basic_json container
using const_iterator = iter_impl<const basic_json>;
/// a reverse iterator for a basic_json container
using reverse_iterator = json_reverse_iterator<typename basic_json::iterator>;
/// a const reverse iterator for a basic_json container
using const_reverse_iterator = json_reverse_iterator<typename basic_json::const_iterator>;
/// @}
/*!
@brief returns the allocator associated with the container
*/
static allocator_type get_allocator()
{
return allocator_type();
}
/*!
@brief returns version information on the library
This function returns a JSON object with information about the library,
including the version number and information on the platform and compiler.
@return JSON object holding version information
key | description
----------- | ---------------
`compiler` | Information on the used compiler. It is an object with the following keys: `c++` (the used C++ standard), `family` (the compiler family; possible values are `clang`, `icc`, `gcc`, `ilecpp`, `msvc`, `pgcpp`, `sunpro`, and `unknown`), and `version` (the compiler version).
`copyright` | The copyright line for the library as string.
`name` | The name of the library as string.
`platform` | The used platform as string. Possible values are `win32`, `linux`, `apple`, `unix`, and `unknown`.
`url` | The URL of the project as string.
`version` | The version of the library. It is an object with the following keys: `major`, `minor`, and `patch` as defined by [Semantic Versioning](http://semver.org), and `string` (the version string).
@liveexample{The following code shows an example output of the `meta()`
function.,meta}
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@complexity Constant.
@since 2.1.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json meta()
{
basic_json result;
result["copyright"] = "(C) 2013-2017 Niels Lohmann";
result["name"] = "JSON for Modern C++";
result["url"] = "https://github.com/nlohmann/json";
result["version"]["string"] =
std::to_string(NLOHMANN_JSON_VERSION_MAJOR) + "." +
std::to_string(NLOHMANN_JSON_VERSION_MINOR) + "." +
std::to_string(NLOHMANN_JSON_VERSION_PATCH);
result["version"]["major"] = NLOHMANN_JSON_VERSION_MAJOR;
result["version"]["minor"] = NLOHMANN_JSON_VERSION_MINOR;
result["version"]["patch"] = NLOHMANN_JSON_VERSION_PATCH;
#ifdef _WIN32
result["platform"] = "win32";
#elif defined __linux__
result["platform"] = "linux";
#elif defined __APPLE__
result["platform"] = "apple";
#elif defined __unix__
result["platform"] = "unix";
#else
result["platform"] = "unknown";
#endif
#if defined(__ICC) || defined(__INTEL_COMPILER)
result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}};
#elif defined(__clang__)
result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}};
#elif defined(__GNUC__) || defined(__GNUG__)
result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}};
#elif defined(__HP_cc) || defined(__HP_aCC)
result["compiler"] = "hp"
#elif defined(__IBMCPP__)
result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}};
#elif defined(_MSC_VER)
result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}};
#elif defined(__PGI)
result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}};
#elif defined(__SUNPRO_CC)
result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}};
#else
result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}};
#endif
#ifdef __cplusplus
result["compiler"]["c++"] = std::to_string(__cplusplus);
#else
result["compiler"]["c++"] = "unknown";
#endif
return result;
}
///////////////////////////
// JSON value data types //
///////////////////////////
/// @name JSON value data types
/// The data types to store a JSON value. These types are derived from
/// the template arguments passed to class @ref basic_json.
/// @{
#if defined(JSON_HAS_CPP_14)
// Use transparent comparator if possible, combined with perfect forwarding
// on find() and count() calls prevents unnecessary string construction.
using object_comparator_t = std::less<>;
#else
using object_comparator_t = std::less<StringType>;
#endif
/*!
@brief a type for an object
[RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows:
> An object is an unordered collection of zero or more name/value pairs,
> where a name is a string and a value is a string, number, boolean, null,
> object, or array.
To store objects in C++, a type is defined by the template parameters
described below.
@tparam ObjectType the container to store objects (e.g., `std::map` or
`std::unordered_map`)
@tparam StringType the type of the keys or names (e.g., `std::string`).
The comparison function `std::less<StringType>` is used to order elements
inside the container.
@tparam AllocatorType the allocator to use for objects (e.g.,
`std::allocator`)
#### Default type
With the default values for @a ObjectType (`std::map`), @a StringType
(`std::string`), and @a AllocatorType (`std::allocator`), the default
value for @a object_t is:
@code {.cpp}
std::map<
std::string, // key_type
basic_json, // value_type
std::less<std::string>, // key_compare
std::allocator<std::pair<const std::string, basic_json>> // allocator_type
>
@endcode
#### Behavior
The choice of @a object_t influences the behavior of the JSON class. With
the default type, objects have the following behavior:
- When all names are unique, objects will be interoperable in the sense
that all software implementations receiving that object will agree on
the name-value mappings.
- When the names within an object are not unique, it is unspecified which
one of the values for a given key will be chosen. For instance,
`{"key": 2, "key": 1}` could be equal to either `{"key": 1}` or
`{"key": 2}`.
- Internally, name/value pairs are stored in lexicographical order of the
names. Objects will also be serialized (see @ref dump) in this order.
For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored
and serialized as `{"a": 2, "b": 1}`.
- When comparing objects, the order of the name/value pairs is irrelevant.
This makes objects interoperable in the sense that they will not be
affected by these differences. For instance, `{"b": 1, "a": 2}` and
`{"a": 2, "b": 1}` will be treated as equal.
#### Limits
[RFC 7159](http://rfc7159.net/rfc7159) specifies:
> An implementation may set limits on the maximum depth of nesting.
In this class, the object's limit of nesting is not explicitly constrained.
However, a maximum depth of nesting may be introduced by the compiler or
runtime environment. A theoretical limit can be queried by calling the
@ref max_size function of a JSON object.
#### Storage
Objects are stored as pointers in a @ref basic_json type. That is, for any
access to object values, a pointer of type `object_t*` must be
dereferenced.
@sa @ref array_t -- type for an array value
@since version 1.0.0
@note The order name/value pairs are added to the object is *not*
preserved by the library. Therefore, iterating an object may return
name/value pairs in a different order than they were originally stored. In
fact, keys will be traversed in alphabetical order as `std::map` with
`std::less` is used by default. Please note this behavior conforms to [RFC
7159](http://rfc7159.net/rfc7159), because any order implements the
specified "unordered" nature of JSON objects.
*/
using object_t = ObjectType<StringType,
basic_json,
object_comparator_t,
AllocatorType<std::pair<const StringType,
basic_json>>>;
/*!
@brief a type for an array
[RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows:
> An array is an ordered sequence of zero or more values.
To store objects in C++, a type is defined by the template parameters
explained below.
@tparam ArrayType container type to store arrays (e.g., `std::vector` or
`std::list`)
@tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`)
#### Default type
With the default values for @a ArrayType (`std::vector`) and @a
AllocatorType (`std::allocator`), the default value for @a array_t is:
@code {.cpp}
std::vector<
basic_json, // value_type
std::allocator<basic_json> // allocator_type
>
@endcode
#### Limits
[RFC 7159](http://rfc7159.net/rfc7159) specifies:
> An implementation may set limits on the maximum depth of nesting.
In this class, the array's limit of nesting is not explicitly constrained.
However, a maximum depth of nesting may be introduced by the compiler or
runtime environment. A theoretical limit can be queried by calling the
@ref max_size function of a JSON array.
#### Storage
Arrays are stored as pointers in a @ref basic_json type. That is, for any
access to array values, a pointer of type `array_t*` must be dereferenced.
@sa @ref object_t -- type for an object value
@since version 1.0.0
*/
using array_t = ArrayType<basic_json, AllocatorType<basic_json>>;
/*!
@brief a type for a string
[RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows:
> A string is a sequence of zero or more Unicode characters.
To store objects in C++, a type is defined by the template parameter
described below. Unicode values are split by the JSON class into
byte-sized characters during deserialization.
@tparam StringType the container to store strings (e.g., `std::string`).
Note this container is used for keys/names in objects, see @ref object_t.
#### Default type
With the default values for @a StringType (`std::string`), the default
value for @a string_t is:
@code {.cpp}
std::string
@endcode
#### Encoding
Strings are stored in UTF-8 encoding. Therefore, functions like
`std::string::size()` or `std::string::length()` return the number of
bytes in the string rather than the number of characters or glyphs.
#### String comparison
[RFC 7159](http://rfc7159.net/rfc7159) states:
> Software implementations are typically required to test names of object
> members for equality. Implementations that transform the textual
> representation into sequences of Unicode code units and then perform the
> comparison numerically, code unit by code unit, are interoperable in the
> sense that implementations will agree in all cases on equality or
> inequality of two strings. For example, implementations that compare
> strings with escaped characters unconverted may incorrectly find that
> `"a\\b"` and `"a\u005Cb"` are not equal.
This implementation is interoperable as it does compare strings code unit
by code unit.
#### Storage
String values are stored as pointers in a @ref basic_json type. That is,
for any access to string values, a pointer of type `string_t*` must be
dereferenced.
@since version 1.0.0
*/
using string_t = StringType;
/*!
@brief a type for a boolean
[RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a
type which differentiates the two literals `true` and `false`.
To store objects in C++, a type is defined by the template parameter @a
BooleanType which chooses the type to use.
#### Default type
With the default values for @a BooleanType (`bool`), the default value for
@a boolean_t is:
@code {.cpp}
bool
@endcode
#### Storage
Boolean values are stored directly inside a @ref basic_json type.
@since version 1.0.0
*/
using boolean_t = BooleanType;
/*!
@brief a type for a number (integer)
[RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
> The representation of numbers is similar to that used in most
> programming languages. A number is represented in base 10 using decimal
> digits. It contains an integer component that may be prefixed with an
> optional minus sign, which may be followed by a fraction part and/or an
> exponent part. Leading zeros are not allowed. (...) Numeric values that
> cannot be represented in the grammar below (such as Infinity and NaN)
> are not permitted.
This description includes both integer and floating-point numbers.
However, C++ allows more precise storage if it is known whether the number
is a signed integer, an unsigned integer or a floating-point number.
Therefore, three different types, @ref number_integer_t, @ref
number_unsigned_t and @ref number_float_t are used.
To store integer numbers in C++, a type is defined by the template
parameter @a NumberIntegerType which chooses the type to use.
#### Default type
With the default values for @a NumberIntegerType (`int64_t`), the default
value for @a number_integer_t is:
@code {.cpp}
int64_t
@endcode
#### Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead,
leading zeros in integer literals lead to an interpretation as octal
number. Internally, the value will be stored as decimal number. For
instance, the C++ integer literal `010` will be serialized to `8`.
During deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to `null`.
#### Limits
[RFC 7159](http://rfc7159.net/rfc7159) specifies:
> An implementation may set limits on the range and precision of numbers.
When the default type is used, the maximal integer number that can be
stored is `9223372036854775807` (INT64_MAX) and the minimal integer number
that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers
that are out of range will yield over/underflow when used in a
constructor. During deserialization, too large or small integer numbers
will be automatically be stored as @ref number_unsigned_t or @ref
number_float_t.
[RFC 7159](http://rfc7159.net/rfc7159) further states:
> Note that when such software is used, numbers that are integers and are
> in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense
> that implementations will agree exactly on their numeric values.
As this range is a subrange of the exactly supported range [INT64_MIN,
INT64_MAX], this class's integer type is interoperable.
#### Storage
Integer number values are stored directly inside a @ref basic_json type.
@sa @ref number_float_t -- type for number values (floating-point)
@sa @ref number_unsigned_t -- type for number values (unsigned integer)
@since version 1.0.0
*/
using number_integer_t = NumberIntegerType;
/*!
@brief a type for a number (unsigned)
[RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
> The representation of numbers is similar to that used in most
> programming languages. A number is represented in base 10 using decimal
> digits. It contains an integer component that may be prefixed with an
> optional minus sign, which may be followed by a fraction part and/or an
> exponent part. Leading zeros are not allowed. (...) Numeric values that
> cannot be represented in the grammar below (such as Infinity and NaN)
> are not permitted.
This description includes both integer and floating-point numbers.
However, C++ allows more precise storage if it is known whether the number
is a signed integer, an unsigned integer or a floating-point number.
Therefore, three different types, @ref number_integer_t, @ref
number_unsigned_t and @ref number_float_t are used.
To store unsigned integer numbers in C++, a type is defined by the
template parameter @a NumberUnsignedType which chooses the type to use.
#### Default type
With the default values for @a NumberUnsignedType (`uint64_t`), the
default value for @a number_unsigned_t is:
@code {.cpp}
uint64_t
@endcode
#### Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead,
leading zeros in integer literals lead to an interpretation as octal
number. Internally, the value will be stored as decimal number. For
instance, the C++ integer literal `010` will be serialized to `8`.
During deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to `null`.
#### Limits
[RFC 7159](http://rfc7159.net/rfc7159) specifies:
> An implementation may set limits on the range and precision of numbers.
When the default type is used, the maximal integer number that can be
stored is `18446744073709551615` (UINT64_MAX) and the minimal integer
number that can be stored is `0`. Integer numbers that are out of range
will yield over/underflow when used in a constructor. During
deserialization, too large or small integer numbers will be automatically
be stored as @ref number_integer_t or @ref number_float_t.
[RFC 7159](http://rfc7159.net/rfc7159) further states:
> Note that when such software is used, numbers that are integers and are
> in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense
> that implementations will agree exactly on their numeric values.
As this range is a subrange (when considered in conjunction with the
number_integer_t type) of the exactly supported range [0, UINT64_MAX],
this class's integer type is interoperable.
#### Storage
Integer number values are stored directly inside a @ref basic_json type.
@sa @ref number_float_t -- type for number values (floating-point)
@sa @ref number_integer_t -- type for number values (integer)
@since version 2.0.0
*/
using number_unsigned_t = NumberUnsignedType;
/*!
@brief a type for a number (floating-point)
[RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
> The representation of numbers is similar to that used in most
> programming languages. A number is represented in base 10 using decimal
> digits. It contains an integer component that may be prefixed with an
> optional minus sign, which may be followed by a fraction part and/or an
> exponent part. Leading zeros are not allowed. (...) Numeric values that
> cannot be represented in the grammar below (such as Infinity and NaN)
> are not permitted.
This description includes both integer and floating-point numbers.
However, C++ allows more precise storage if it is known whether the number
is a signed integer, an unsigned integer or a floating-point number.
Therefore, three different types, @ref number_integer_t, @ref
number_unsigned_t and @ref number_float_t are used.
To store floating-point numbers in C++, a type is defined by the template
parameter @a NumberFloatType which chooses the type to use.
#### Default type
With the default values for @a NumberFloatType (`double`), the default
value for @a number_float_t is:
@code {.cpp}
double
@endcode
#### Default behavior
- The restrictions about leading zeros is not enforced in C++. Instead,
leading zeros in floating-point literals will be ignored. Internally,
the value will be stored as decimal number. For instance, the C++
floating-point literal `01.2` will be serialized to `1.2`. During
deserialization, leading zeros yield an error.
- Not-a-number (NaN) values will be serialized to `null`.
#### Limits
[RFC 7159](http://rfc7159.net/rfc7159) states:
> This specification allows implementations to set limits on the range and
> precision of numbers accepted. Since software that implements IEEE
> 754-2008 binary64 (double precision) numbers is generally available and
> widely used, good interoperability can be achieved by implementations
> that expect no more precision or range than these provide, in the sense
> that implementations will approximate JSON numbers within the expected
> precision.
This implementation does exactly follow this approach, as it uses double
precision floating-point numbers. Note values smaller than
`-1.79769313486232e+308` and values greater than `1.79769313486232e+308`
will be stored as NaN internally and be serialized to `null`.
#### Storage
Floating-point number values are stored directly inside a @ref basic_json
type.
@sa @ref number_integer_t -- type for number values (integer)
@sa @ref number_unsigned_t -- type for number values (unsigned integer)
@since version 1.0.0
*/
using number_float_t = NumberFloatType;
/// @}
private:
/// helper for exception-safe object creation
template<typename T, typename... Args>
JSON_HEDLEY_RETURNS_NON_NULL
static T* create(Args&& ... args)
{
AllocatorType<T> alloc;
using AllocatorTraits = std::allocator_traits<AllocatorType<T>>;
auto deleter = [&](T * object)
{
AllocatorTraits::deallocate(alloc, object, 1);
};
std::unique_ptr<T, decltype(deleter)> object(AllocatorTraits::allocate(alloc, 1), deleter);
AllocatorTraits::construct(alloc, object.get(), std::forward<Args>(args)...);
assert(object != nullptr);
return object.release();
}
////////////////////////
// JSON value storage //
////////////////////////
/*!
@brief a JSON value
The actual storage for a JSON value of the @ref basic_json class. This
union combines the different storage types for the JSON value types
defined in @ref value_t.
JSON type | value_t type | used type
--------- | --------------- | ------------------------
object | object | pointer to @ref object_t
array | array | pointer to @ref array_t
string | string | pointer to @ref string_t
boolean | boolean | @ref boolean_t
number | number_integer | @ref number_integer_t
number | number_unsigned | @ref number_unsigned_t
number | number_float | @ref number_float_t
null | null | *no value is stored*
@note Variable-length types (objects, arrays, and strings) are stored as
pointers. The size of the union should not exceed 64 bits if the default
value types are used.
@since version 1.0.0
*/
union json_value
{
/// object (stored with pointer to save storage)
object_t* object;
/// array (stored with pointer to save storage)
array_t* array;
/// string (stored with pointer to save storage)
string_t* string;
/// boolean
boolean_t boolean;
/// number (integer)
number_integer_t number_integer;
/// number (unsigned integer)
number_unsigned_t number_unsigned;
/// number (floating-point)
number_float_t number_float;
/// default constructor (for null values)
json_value() = default;
/// constructor for booleans
json_value(boolean_t v) noexcept : boolean(v) {}
/// constructor for numbers (integer)
json_value(number_integer_t v) noexcept : number_integer(v) {}
/// constructor for numbers (unsigned)
json_value(number_unsigned_t v) noexcept : number_unsigned(v) {}
/// constructor for numbers (floating-point)
json_value(number_float_t v) noexcept : number_float(v) {}
/// constructor for empty values of a given type
json_value(value_t t)
{
switch (t)
{
case value_t::object:
{
object = create<object_t>();
break;
}
case value_t::array:
{
array = create<array_t>();
break;
}
case value_t::string:
{
string = create<string_t>("");
break;
}
case value_t::boolean:
{
boolean = boolean_t(false);
break;
}
case value_t::number_integer:
{
number_integer = number_integer_t(0);
break;
}
case value_t::number_unsigned:
{
number_unsigned = number_unsigned_t(0);
break;
}
case value_t::number_float:
{
number_float = number_float_t(0.0);
break;
}
case value_t::null:
{
object = nullptr; // silence warning, see #821
break;
}
default:
{
object = nullptr; // silence warning, see #821
if (JSON_HEDLEY_UNLIKELY(t == value_t::null))
{
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.3")); // LCOV_EXCL_LINE
}
break;
}
}
}
/// constructor for strings
json_value(const string_t& value)
{
string = create<string_t>(value);
}
/// constructor for rvalue strings
json_value(string_t&& value)
{
string = create<string_t>(std::move(value));
}
/// constructor for objects
json_value(const object_t& value)
{
object = create<object_t>(value);
}
/// constructor for rvalue objects
json_value(object_t&& value)
{
object = create<object_t>(std::move(value));
}
/// constructor for arrays
json_value(const array_t& value)
{
array = create<array_t>(value);
}
/// constructor for rvalue arrays
json_value(array_t&& value)
{
array = create<array_t>(std::move(value));
}
void destroy(value_t t) noexcept
{
// flatten the current json_value to a heap-allocated stack
std::vector<basic_json> stack;
// move the top-level items to stack
if (t == value_t::array)
{
stack.reserve(array->size());
std::move(array->begin(), array->end(), std::back_inserter(stack));
}
else if (t == value_t::object)
{
stack.reserve(object->size());
for (auto&& it : *object)
{
stack.push_back(std::move(it.second));
}
}
while (not stack.empty())
{
// move the last item to local variable to be processed
basic_json current_item(std::move(stack.back()));
stack.pop_back();
// if current_item is array/object, move
// its children to the stack to be processed later
if (current_item.is_array())
{
std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(),
std::back_inserter(stack));
current_item.m_value.array->clear();
}
else if (current_item.is_object())
{
for (auto&& it : *current_item.m_value.object)
{
stack.push_back(std::move(it.second));
}
current_item.m_value.object->clear();
}
// it's now safe that current_item get destructed
// since it doesn't have any children
}
switch (t)
{
case value_t::object:
{
AllocatorType<object_t> alloc;
std::allocator_traits<decltype(alloc)>::destroy(alloc, object);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, object, 1);
break;
}
case value_t::array:
{
AllocatorType<array_t> alloc;
std::allocator_traits<decltype(alloc)>::destroy(alloc, array);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, array, 1);
break;
}
case value_t::string:
{
AllocatorType<string_t> alloc;
std::allocator_traits<decltype(alloc)>::destroy(alloc, string);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, string, 1);
break;
}
default:
{
break;
}
}
}
};
/*!
@brief checks the class invariants
This function asserts the class invariants. It needs to be called at the
end of every constructor to make sure that created objects respect the
invariant. Furthermore, it has to be called each time the type of a JSON
value is changed, because the invariant expresses a relationship between
@a m_type and @a m_value.
*/
void assert_invariant() const noexcept
{
assert(m_type != value_t::object or m_value.object != nullptr);
assert(m_type != value_t::array or m_value.array != nullptr);
assert(m_type != value_t::string or m_value.string != nullptr);
}
public:
//////////////////////////
// JSON parser callback //
//////////////////////////
/*!
@brief parser event types
The parser callback distinguishes the following events:
- `object_start`: the parser read `{` and started to process a JSON object
- `key`: the parser read a key of a value in an object
- `object_end`: the parser read `}` and finished processing a JSON object
- `array_start`: the parser read `[` and started to process a JSON array
- `array_end`: the parser read `]` and finished processing a JSON array
- `value`: the parser finished reading a JSON value
@image html callback_events.png "Example when certain parse events are triggered"
@sa @ref parser_callback_t for more information and examples
*/
using parse_event_t = typename parser::parse_event_t;
/*!
@brief per-element parser callback type
With a parser callback function, the result of parsing a JSON text can be
influenced. When passed to @ref parse, it is called on certain events
(passed as @ref parse_event_t via parameter @a event) with a set recursion
depth @a depth and context JSON value @a parsed. The return value of the
callback function is a boolean indicating whether the element that emitted
the callback shall be kept or not.
We distinguish six scenarios (determined by the event type) in which the
callback function can be called. The following table describes the values
of the parameters @a depth, @a event, and @a parsed.
parameter @a event | description | parameter @a depth | parameter @a parsed
------------------ | ----------- | ------------------ | -------------------
parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded
parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key
parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object
parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded
parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array
parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value
@image html callback_events.png "Example when certain parse events are triggered"
Discarding a value (i.e., returning `false`) has different effects
depending on the context in which function was called:
- Discarded values in structured types are skipped. That is, the parser
will behave as if the discarded value was never read.
- In case a value outside a structured type is skipped, it is replaced
with `null`. This case happens if the top-level element is skipped.
@param[in] depth the depth of the recursion during parsing
@param[in] event an event of type parse_event_t indicating the context in
the callback function has been called
@param[in,out] parsed the current intermediate parse result; note that
writing to this value has no effect for parse_event_t::key events
@return Whether the JSON value which called the function during parsing
should be kept (`true`) or not (`false`). In the latter case, it is either
skipped completely or replaced by an empty discarded object.
@sa @ref parse for examples
@since version 1.0.0
*/
using parser_callback_t = typename parser::parser_callback_t;
//////////////////
// constructors //
//////////////////
/// @name constructors and destructors
/// Constructors of class @ref basic_json, copy/move constructor, copy
/// assignment, static functions creating objects, and the destructor.
/// @{
/*!
@brief create an empty value with a given type
Create an empty JSON value with a given type. The value will be default
initialized with an empty value which depends on the type:
Value type | initial value
----------- | -------------
null | `null`
boolean | `false`
string | `""`
number | `0`
object | `{}`
array | `[]`
@param[in] v the type of the value to create
@complexity Constant.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The following code shows the constructor for different @ref
value_t values,basic_json__value_t}
@sa @ref clear() -- restores the postcondition of this constructor
@since version 1.0.0
*/
basic_json(const value_t v)
: m_type(v), m_value(v)
{
assert_invariant();
}
/*!
@brief create a null object
Create a `null` JSON value. It either takes a null pointer as parameter
(explicitly creating `null`) or no parameter (implicitly creating `null`).
The passed null pointer itself is not read -- it is only used to choose
the right constructor.
@complexity Constant.
@exceptionsafety No-throw guarantee: this constructor never throws
exceptions.
@liveexample{The following code shows the constructor with and without a
null pointer parameter.,basic_json__nullptr_t}
@since version 1.0.0
*/
basic_json(std::nullptr_t = nullptr) noexcept
: basic_json(value_t::null)
{
assert_invariant();
}
/*!
@brief create a JSON value
This is a "catch all" constructor for all compatible JSON types; that is,
types for which a `to_json()` method exists. The constructor forwards the
parameter @a val to that method (to `json_serializer<U>::to_json` method
with `U = uncvref_t<CompatibleType>`, to be exact).
Template type @a CompatibleType includes, but is not limited to, the
following types:
- **arrays**: @ref array_t and all kinds of compatible containers such as
`std::vector`, `std::deque`, `std::list`, `std::forward_list`,
`std::array`, `std::valarray`, `std::set`, `std::unordered_set`,
`std::multiset`, and `std::unordered_multiset` with a `value_type` from
which a @ref basic_json value can be constructed.
- **objects**: @ref object_t and all kinds of compatible associative
containers such as `std::map`, `std::unordered_map`, `std::multimap`,
and `std::unordered_multimap` with a `key_type` compatible to
@ref string_t and a `value_type` from which a @ref basic_json value can
be constructed.
- **strings**: @ref string_t, string literals, and all compatible string
containers can be used.
- **numbers**: @ref number_integer_t, @ref number_unsigned_t,
@ref number_float_t, and all convertible number types such as `int`,
`size_t`, `int64_t`, `float` or `double` can be used.
- **boolean**: @ref boolean_t / `bool` can be used.
See the examples below.
@tparam CompatibleType a type such that:
- @a CompatibleType is not derived from `std::istream`,
- @a CompatibleType is not @ref basic_json (to avoid hijacking copy/move
constructors),
- @a CompatibleType is not a different @ref basic_json type (i.e. with different template arguments)
- @a CompatibleType is not a @ref basic_json nested type (e.g.,
@ref json_pointer, @ref iterator, etc ...)
- @ref @ref json_serializer<U> has a
`to_json(basic_json_t&, CompatibleType&&)` method
@tparam U = `uncvref_t<CompatibleType>`
@param[in] val the value to be forwarded to the respective constructor
@complexity Usually linear in the size of the passed @a val, also
depending on the implementation of the called `to_json()`
method.
@exceptionsafety Depends on the called constructor. For types directly
supported by the library (i.e., all types for which no `to_json()` function
was provided), strong guarantee holds: if an exception is thrown, there are
no changes to any JSON value.
@liveexample{The following code shows the constructor with several
compatible types.,basic_json__CompatibleType}
@since version 2.1.0
*/
template <typename CompatibleType,
typename U = detail::uncvref_t<CompatibleType>,
detail::enable_if_t<
not detail::is_basic_json<U>::value and detail::is_compatible_type<basic_json_t, U>::value, int> = 0>
basic_json(CompatibleType && val) noexcept(noexcept(
JSONSerializer<U>::to_json(std::declval<basic_json_t&>(),
std::forward<CompatibleType>(val))))
{
JSONSerializer<U>::to_json(*this, std::forward<CompatibleType>(val));
assert_invariant();
}
/*!
@brief create a JSON value from an existing one
This is a constructor for existing @ref basic_json types.
It does not hijack copy/move constructors, since the parameter has different
template arguments than the current ones.
The constructor tries to convert the internal @ref m_value of the parameter.
@tparam BasicJsonType a type such that:
- @a BasicJsonType is a @ref basic_json type.
- @a BasicJsonType has different template arguments than @ref basic_json_t.
@param[in] val the @ref basic_json value to be converted.
@complexity Usually linear in the size of the passed @a val, also
depending on the implementation of the called `to_json()`
method.
@exceptionsafety Depends on the called constructor. For types directly
supported by the library (i.e., all types for which no `to_json()` function
was provided), strong guarantee holds: if an exception is thrown, there are
no changes to any JSON value.
@since version 3.2.0
*/
template <typename BasicJsonType,
detail::enable_if_t<
detail::is_basic_json<BasicJsonType>::value and not std::is_same<basic_json, BasicJsonType>::value, int> = 0>
basic_json(const BasicJsonType& val)
{
using other_boolean_t = typename BasicJsonType::boolean_t;
using other_number_float_t = typename BasicJsonType::number_float_t;
using other_number_integer_t = typename BasicJsonType::number_integer_t;
using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t;
using other_string_t = typename BasicJsonType::string_t;
using other_object_t = typename BasicJsonType::object_t;
using other_array_t = typename BasicJsonType::array_t;
switch (val.type())
{
case value_t::boolean:
JSONSerializer<other_boolean_t>::to_json(*this, val.template get<other_boolean_t>());
break;
case value_t::number_float:
JSONSerializer<other_number_float_t>::to_json(*this, val.template get<other_number_float_t>());
break;
case value_t::number_integer:
JSONSerializer<other_number_integer_t>::to_json(*this, val.template get<other_number_integer_t>());
break;
case value_t::number_unsigned:
JSONSerializer<other_number_unsigned_t>::to_json(*this, val.template get<other_number_unsigned_t>());
break;
case value_t::string:
JSONSerializer<other_string_t>::to_json(*this, val.template get_ref<const other_string_t&>());
break;
case value_t::object:
JSONSerializer<other_object_t>::to_json(*this, val.template get_ref<const other_object_t&>());
break;
case value_t::array:
JSONSerializer<other_array_t>::to_json(*this, val.template get_ref<const other_array_t&>());
break;
case value_t::null:
*this = nullptr;
break;
case value_t::discarded:
m_type = value_t::discarded;
break;
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
assert_invariant();
}
/*!
@brief create a container (array or object) from an initializer list
Creates a JSON value of type array or object from the passed initializer
list @a init. In case @a type_deduction is `true` (default), the type of
the JSON value to be created is deducted from the initializer list @a init
according to the following rules:
1. If the list is empty, an empty JSON object value `{}` is created.
2. If the list consists of pairs whose first element is a string, a JSON
object value is created where the first elements of the pairs are
treated as keys and the second elements are as values.
3. In all other cases, an array is created.
The rules aim to create the best fit between a C++ initializer list and
JSON values. The rationale is as follows:
1. The empty initializer list is written as `{}` which is exactly an empty
JSON object.
2. C++ has no way of describing mapped types other than to list a list of
pairs. As JSON requires that keys must be of type string, rule 2 is the
weakest constraint one can pose on initializer lists to interpret them
as an object.
3. In all other cases, the initializer list could not be interpreted as
JSON object type, so interpreting it as JSON array type is safe.
With the rules described above, the following JSON values cannot be
expressed by an initializer list:
- the empty array (`[]`): use @ref array(initializer_list_t)
with an empty initializer list in this case
- arrays whose elements satisfy rule 2: use @ref
array(initializer_list_t) with the same initializer list
in this case
@note When used without parentheses around an empty initializer list, @ref
basic_json() is called instead of this function, yielding the JSON null
value.
@param[in] init initializer list with JSON values
@param[in] type_deduction internal parameter; when set to `true`, the type
of the JSON value is deducted from the initializer list @a init; when set
to `false`, the type provided via @a manual_type is forced. This mode is
used by the functions @ref array(initializer_list_t) and
@ref object(initializer_list_t).
@param[in] manual_type internal parameter; when @a type_deduction is set
to `false`, the created JSON value will use the provided type (only @ref
value_t::array and @ref value_t::object are valid); when @a type_deduction
is set to `true`, this parameter has no effect
@throw type_error.301 if @a type_deduction is `false`, @a manual_type is
`value_t::object`, but @a init contains an element which is not a pair
whose first element is a string. In this case, the constructor could not
create an object. If @a type_deduction would have be `true`, an array
would have been created. See @ref object(initializer_list_t)
for an example.
@complexity Linear in the size of the initializer list @a init.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The example below shows how JSON values are created from
initializer lists.,basic_json__list_init_t}
@sa @ref array(initializer_list_t) -- create a JSON array
value from an initializer list
@sa @ref object(initializer_list_t) -- create a JSON object
value from an initializer list
@since version 1.0.0
*/
basic_json(initializer_list_t init,
bool type_deduction = true,
value_t manual_type = value_t::array)
{
// check if each element is an array with two elements whose first
// element is a string
bool is_an_object = std::all_of(init.begin(), init.end(),
[](const detail::json_ref<basic_json>& element_ref)
{
return element_ref->is_array() and element_ref->size() == 2 and (*element_ref)[0].is_string();
});
// adjust type if type deduction is not wanted
if (not type_deduction)
{
// if array is wanted, do not create an object though possible
if (manual_type == value_t::array)
{
is_an_object = false;
}
// if object is wanted but impossible, throw an exception
if (JSON_HEDLEY_UNLIKELY(manual_type == value_t::object and not is_an_object))
{
JSON_THROW(type_error::create(301, "cannot create object from initializer list"));
}
}
if (is_an_object)
{
// the initializer list is a list of pairs -> create object
m_type = value_t::object;
m_value = value_t::object;
std::for_each(init.begin(), init.end(), [this](const detail::json_ref<basic_json>& element_ref)
{
auto element = element_ref.moved_or_copied();
m_value.object->emplace(
std::move(*((*element.m_value.array)[0].m_value.string)),
std::move((*element.m_value.array)[1]));
});
}
else
{
// the initializer list describes an array -> create array
m_type = value_t::array;
m_value.array = create<array_t>(init.begin(), init.end());
}
assert_invariant();
}
/*!
@brief explicitly create an array from an initializer list
Creates a JSON array value from a given initializer list. That is, given a
list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the
initializer list is empty, the empty array `[]` is created.
@note This function is only needed to express two edge cases that cannot
be realized with the initializer list constructor (@ref
basic_json(initializer_list_t, bool, value_t)). These cases
are:
1. creating an array whose elements are all pairs whose first element is a
string -- in this case, the initializer list constructor would create an
object, taking the first elements as keys
2. creating an empty array -- passing the empty initializer list to the
initializer list constructor yields an empty object
@param[in] init initializer list with JSON values to create an array from
(optional)
@return JSON array value
@complexity Linear in the size of @a init.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The following code shows an example for the `array`
function.,array}
@sa @ref basic_json(initializer_list_t, bool, value_t) --
create a JSON value from an initializer list
@sa @ref object(initializer_list_t) -- create a JSON object
value from an initializer list
@since version 1.0.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json array(initializer_list_t init = {})
{
return basic_json(init, false, value_t::array);
}
/*!
@brief explicitly create an object from an initializer list
Creates a JSON object value from a given initializer list. The initializer
lists elements must be pairs, and their first elements must be strings. If
the initializer list is empty, the empty object `{}` is created.
@note This function is only added for symmetry reasons. In contrast to the
related function @ref array(initializer_list_t), there are
no cases which can only be expressed by this function. That is, any
initializer list @a init can also be passed to the initializer list
constructor @ref basic_json(initializer_list_t, bool, value_t).
@param[in] init initializer list to create an object from (optional)
@return JSON object value
@throw type_error.301 if @a init is not a list of pairs whose first
elements are strings. In this case, no object can be created. When such a
value is passed to @ref basic_json(initializer_list_t, bool, value_t),
an array would have been created from the passed initializer list @a init.
See example below.
@complexity Linear in the size of @a init.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The following code shows an example for the `object`
function.,object}
@sa @ref basic_json(initializer_list_t, bool, value_t) --
create a JSON value from an initializer list
@sa @ref array(initializer_list_t) -- create a JSON array
value from an initializer list
@since version 1.0.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json object(initializer_list_t init = {})
{
return basic_json(init, false, value_t::object);
}
/*!
@brief construct an array with count copies of given value
Constructs a JSON array value by creating @a cnt copies of a passed value.
In case @a cnt is `0`, an empty array is created.
@param[in] cnt the number of JSON copies of @a val to create
@param[in] val the JSON value to copy
@post `std::distance(begin(),end()) == cnt` holds.
@complexity Linear in @a cnt.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The following code shows examples for the @ref
basic_json(size_type\, const basic_json&)
constructor.,basic_json__size_type_basic_json}
@since version 1.0.0
*/
basic_json(size_type cnt, const basic_json& val)
: m_type(value_t::array)
{
m_value.array = create<array_t>(cnt, val);
assert_invariant();
}
/*!
@brief construct a JSON container given an iterator range
Constructs the JSON value with the contents of the range `[first, last)`.
The semantics depends on the different types a JSON value can have:
- In case of a null type, invalid_iterator.206 is thrown.
- In case of other primitive types (number, boolean, or string), @a first
must be `begin()` and @a last must be `end()`. In this case, the value is
copied. Otherwise, invalid_iterator.204 is thrown.
- In case of structured types (array, object), the constructor behaves as
similar versions for `std::vector` or `std::map`; that is, a JSON array
or object is constructed from the values in the range.
@tparam InputIT an input iterator type (@ref iterator or @ref
const_iterator)
@param[in] first begin of the range to copy from (included)
@param[in] last end of the range to copy from (excluded)
@pre Iterators @a first and @a last must be initialized. **This
precondition is enforced with an assertion (see warning).** If
assertions are switched off, a violation of this precondition yields
undefined behavior.
@pre Range `[first, last)` is valid. Usually, this precondition cannot be
checked efficiently. Only certain edge cases are detected; see the
description of the exceptions below. A violation of this precondition
yields undefined behavior.
@warning A precondition is enforced with a runtime assertion that will
result in calling `std::abort` if this precondition is not met.
Assertions can be disabled by defining `NDEBUG` at compile time.
See https://en.cppreference.com/w/cpp/error/assert for more
information.
@throw invalid_iterator.201 if iterators @a first and @a last are not
compatible (i.e., do not belong to the same JSON value). In this case,
the range `[first, last)` is undefined.
@throw invalid_iterator.204 if iterators @a first and @a last belong to a
primitive type (number, boolean, or string), but @a first does not point
to the first element any more. In this case, the range `[first, last)` is
undefined. See example code below.
@throw invalid_iterator.206 if iterators @a first and @a last belong to a
null value. In this case, the range `[first, last)` is undefined.
@complexity Linear in distance between @a first and @a last.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@liveexample{The example below shows several ways to create JSON values by
specifying a subrange with iterators.,basic_json__InputIt_InputIt}
@since version 1.0.0
*/
template<class InputIT, typename std::enable_if<
std::is_same<InputIT, typename basic_json_t::iterator>::value or
std::is_same<InputIT, typename basic_json_t::const_iterator>::value, int>::type = 0>
basic_json(InputIT first, InputIT last)
{
assert(first.m_object != nullptr);
assert(last.m_object != nullptr);
// make sure iterator fits the current value
if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object))
{
JSON_THROW(invalid_iterator::create(201, "iterators are not compatible"));
}
// copy type from first iterator
m_type = first.m_object->m_type;
// check if iterator range is complete for primitive values
switch (m_type)
{
case value_t::boolean:
case value_t::number_float:
case value_t::number_integer:
case value_t::number_unsigned:
case value_t::string:
{
if (JSON_HEDLEY_UNLIKELY(not first.m_it.primitive_iterator.is_begin()
or not last.m_it.primitive_iterator.is_end()))
{
JSON_THROW(invalid_iterator::create(204, "iterators out of range"));
}
break;
}
default:
break;
}
switch (m_type)
{
case value_t::number_integer:
{
m_value.number_integer = first.m_object->m_value.number_integer;
break;
}
case value_t::number_unsigned:
{
m_value.number_unsigned = first.m_object->m_value.number_unsigned;
break;
}
case value_t::number_float:
{
m_value.number_float = first.m_object->m_value.number_float;
break;
}
case value_t::boolean:
{
m_value.boolean = first.m_object->m_value.boolean;
break;
}
case value_t::string:
{
m_value = *first.m_object->m_value.string;
break;
}
case value_t::object:
{
m_value.object = create<object_t>(first.m_it.object_iterator,
last.m_it.object_iterator);
break;
}
case value_t::array:
{
m_value.array = create<array_t>(first.m_it.array_iterator,
last.m_it.array_iterator);
break;
}
default:
JSON_THROW(invalid_iterator::create(206, "cannot construct with iterators from " +
std::string(first.m_object->type_name())));
}
assert_invariant();
}
///////////////////////////////////////
// other constructors and destructor //
///////////////////////////////////////
/// @private
basic_json(const detail::json_ref<basic_json>& ref)
: basic_json(ref.moved_or_copied())
{}
/*!
@brief copy constructor
Creates a copy of a given JSON value.
@param[in] other the JSON value to copy
@post `*this == other`
@complexity Linear in the size of @a other.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes to any JSON value.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is linear.
- As postcondition, it holds: `other == basic_json(other)`.
@liveexample{The following code shows an example for the copy
constructor.,basic_json__basic_json}
@since version 1.0.0
*/
basic_json(const basic_json& other)
: m_type(other.m_type)
{
// check of passed value is valid
other.assert_invariant();
switch (m_type)
{
case value_t::object:
{
m_value = *other.m_value.object;
break;
}
case value_t::array:
{
m_value = *other.m_value.array;
break;
}
case value_t::string:
{
m_value = *other.m_value.string;
break;
}
case value_t::boolean:
{
m_value = other.m_value.boolean;
break;
}
case value_t::number_integer:
{
m_value = other.m_value.number_integer;
break;
}
case value_t::number_unsigned:
{
m_value = other.m_value.number_unsigned;
break;
}
case value_t::number_float:
{
m_value = other.m_value.number_float;
break;
}
default:
break;
}
assert_invariant();
}
/*!
@brief move constructor
Move constructor. Constructs a JSON value with the contents of the given
value @a other using move semantics. It "steals" the resources from @a
other and leaves it as JSON null value.
@param[in,out] other value to move to this object
@post `*this` has the same value as @a other before the call.
@post @a other is a JSON null value.
@complexity Constant.
@exceptionsafety No-throw guarantee: this constructor never throws
exceptions.
@requirement This function helps `basic_json` satisfying the
[MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible)
requirements.
@liveexample{The code below shows the move constructor explicitly called
via std::move.,basic_json__moveconstructor}
@since version 1.0.0
*/
basic_json(basic_json&& other) noexcept
: m_type(std::move(other.m_type)),
m_value(std::move(other.m_value))
{
// check that passed value is valid
other.assert_invariant();
// invalidate payload
other.m_type = value_t::null;
other.m_value = {};
assert_invariant();
}
/*!
@brief copy assignment
Copy assignment operator. Copies a JSON value via the "copy and swap"
strategy: It is expressed in terms of the copy constructor, destructor,
and the `swap()` member function.
@param[in] other value to copy from
@complexity Linear.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is linear.
@liveexample{The code below shows and example for the copy assignment. It
creates a copy of value `a` which is then swapped with `b`. Finally\, the
copy of `a` (which is the null value after the swap) is
destroyed.,basic_json__copyassignment}
@since version 1.0.0
*/
basic_json& operator=(basic_json other) noexcept (
std::is_nothrow_move_constructible<value_t>::value and
std::is_nothrow_move_assignable<value_t>::value and
std::is_nothrow_move_constructible<json_value>::value and
std::is_nothrow_move_assignable<json_value>::value
)
{
// check that passed value is valid
other.assert_invariant();
using std::swap;
swap(m_type, other.m_type);
swap(m_value, other.m_value);
assert_invariant();
return *this;
}
/*!
@brief destructor
Destroys the JSON value and frees all allocated memory.
@complexity Linear.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is linear.
- All stored elements are destroyed and all memory is freed.
@since version 1.0.0
*/
~basic_json() noexcept
{
assert_invariant();
m_value.destroy(m_type);
}
/// @}
public:
///////////////////////
// object inspection //
///////////////////////
/// @name object inspection
/// Functions to inspect the type of a JSON value.
/// @{
/*!
@brief serialization
Serialization function for JSON values. The function tries to mimic
Python's `json.dumps()` function, and currently supports its @a indent
and @a ensure_ascii parameters.
@param[in] indent If indent is nonnegative, then array elements and object
members will be pretty-printed with that indent level. An indent level of
`0` will only insert newlines. `-1` (the default) selects the most compact
representation.
@param[in] indent_char The character to use for indentation if @a indent is
greater than `0`. The default is ` ` (space).
@param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters
in the output are escaped with `\uXXXX` sequences, and the result consists
of ASCII characters only.
@param[in] error_handler how to react on decoding errors; there are three
possible values: `strict` (throws and exception in case a decoding error
occurs; default), `replace` (replace invalid UTF-8 sequences with U+FFFD),
and `ignore` (ignore invalid UTF-8 sequences during serialization).
@return string containing the serialization of the JSON value
@throw type_error.316 if a string stored inside the JSON value is not
UTF-8 encoded
@complexity Linear.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@liveexample{The following example shows the effect of different @a indent\,
@a indent_char\, and @a ensure_ascii parameters to the result of the
serialization.,dump}
@see https://docs.python.org/2/library/json.html#json.dump
@since version 1.0.0; indentation character @a indent_char, option
@a ensure_ascii and exceptions added in version 3.0.0; error
handlers added in version 3.4.0.
*/
string_t dump(const int indent = -1,
const char indent_char = ' ',
const bool ensure_ascii = false,
const error_handler_t error_handler = error_handler_t::strict) const
{
string_t result;
serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler);
if (indent >= 0)
{
s.dump(*this, true, ensure_ascii, static_cast<unsigned int>(indent));
}
else
{
s.dump(*this, false, ensure_ascii, 0);
}
return result;
}
/*!
@brief return the type of the JSON value (explicit)
Return the type of the JSON value as a value from the @ref value_t
enumeration.
@return the type of the JSON value
Value type | return value
------------------------- | -------------------------
null | value_t::null
boolean | value_t::boolean
string | value_t::string
number (integer) | value_t::number_integer
number (unsigned integer) | value_t::number_unsigned
number (floating-point) | value_t::number_float
object | value_t::object
array | value_t::array
discarded | value_t::discarded
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `type()` for all JSON
types.,type}
@sa @ref operator value_t() -- return the type of the JSON value (implicit)
@sa @ref type_name() -- return the type as string
@since version 1.0.0
*/
constexpr value_t type() const noexcept
{
return m_type;
}
/*!
@brief return whether type is primitive
This function returns true if and only if the JSON type is primitive
(string, number, boolean, or null).
@return `true` if type is primitive (string, number, boolean, or null),
`false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_primitive()` for all JSON
types.,is_primitive}
@sa @ref is_structured() -- returns whether JSON value is structured
@sa @ref is_null() -- returns whether JSON value is `null`
@sa @ref is_string() -- returns whether JSON value is a string
@sa @ref is_boolean() -- returns whether JSON value is a boolean
@sa @ref is_number() -- returns whether JSON value is a number
@since version 1.0.0
*/
constexpr bool is_primitive() const noexcept
{
return is_null() or is_string() or is_boolean() or is_number();
}
/*!
@brief return whether type is structured
This function returns true if and only if the JSON type is structured
(array or object).
@return `true` if type is structured (array or object), `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_structured()` for all JSON
types.,is_structured}
@sa @ref is_primitive() -- returns whether value is primitive
@sa @ref is_array() -- returns whether value is an array
@sa @ref is_object() -- returns whether value is an object
@since version 1.0.0
*/
constexpr bool is_structured() const noexcept
{
return is_array() or is_object();
}
/*!
@brief return whether value is null
This function returns true if and only if the JSON value is null.
@return `true` if type is null, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_null()` for all JSON
types.,is_null}
@since version 1.0.0
*/
constexpr bool is_null() const noexcept
{
return m_type == value_t::null;
}
/*!
@brief return whether value is a boolean
This function returns true if and only if the JSON value is a boolean.
@return `true` if type is boolean, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_boolean()` for all JSON
types.,is_boolean}
@since version 1.0.0
*/
constexpr bool is_boolean() const noexcept
{
return m_type == value_t::boolean;
}
/*!
@brief return whether value is a number
This function returns true if and only if the JSON value is a number. This
includes both integer (signed and unsigned) and floating-point values.
@return `true` if type is number (regardless whether integer, unsigned
integer or floating-type), `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_number()` for all JSON
types.,is_number}
@sa @ref is_number_integer() -- check if value is an integer or unsigned
integer number
@sa @ref is_number_unsigned() -- check if value is an unsigned integer
number
@sa @ref is_number_float() -- check if value is a floating-point number
@since version 1.0.0
*/
constexpr bool is_number() const noexcept
{
return is_number_integer() or is_number_float();
}
/*!
@brief return whether value is an integer number
This function returns true if and only if the JSON value is a signed or
unsigned integer number. This excludes floating-point values.
@return `true` if type is an integer or unsigned integer number, `false`
otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_number_integer()` for all
JSON types.,is_number_integer}
@sa @ref is_number() -- check if value is a number
@sa @ref is_number_unsigned() -- check if value is an unsigned integer
number
@sa @ref is_number_float() -- check if value is a floating-point number
@since version 1.0.0
*/
constexpr bool is_number_integer() const noexcept
{
return m_type == value_t::number_integer or m_type == value_t::number_unsigned;
}
/*!
@brief return whether value is an unsigned integer number
This function returns true if and only if the JSON value is an unsigned
integer number. This excludes floating-point and signed integer values.
@return `true` if type is an unsigned integer number, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_number_unsigned()` for all
JSON types.,is_number_unsigned}
@sa @ref is_number() -- check if value is a number
@sa @ref is_number_integer() -- check if value is an integer or unsigned
integer number
@sa @ref is_number_float() -- check if value is a floating-point number
@since version 2.0.0
*/
constexpr bool is_number_unsigned() const noexcept
{
return m_type == value_t::number_unsigned;
}
/*!
@brief return whether value is a floating-point number
This function returns true if and only if the JSON value is a
floating-point number. This excludes signed and unsigned integer values.
@return `true` if type is a floating-point number, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_number_float()` for all
JSON types.,is_number_float}
@sa @ref is_number() -- check if value is number
@sa @ref is_number_integer() -- check if value is an integer number
@sa @ref is_number_unsigned() -- check if value is an unsigned integer
number
@since version 1.0.0
*/
constexpr bool is_number_float() const noexcept
{
return m_type == value_t::number_float;
}
/*!
@brief return whether value is an object
This function returns true if and only if the JSON value is an object.
@return `true` if type is object, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_object()` for all JSON
types.,is_object}
@since version 1.0.0
*/
constexpr bool is_object() const noexcept
{
return m_type == value_t::object;
}
/*!
@brief return whether value is an array
This function returns true if and only if the JSON value is an array.
@return `true` if type is array, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_array()` for all JSON
types.,is_array}
@since version 1.0.0
*/
constexpr bool is_array() const noexcept
{
return m_type == value_t::array;
}
/*!
@brief return whether value is a string
This function returns true if and only if the JSON value is a string.
@return `true` if type is string, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_string()` for all JSON
types.,is_string}
@since version 1.0.0
*/
constexpr bool is_string() const noexcept
{
return m_type == value_t::string;
}
/*!
@brief return whether value is discarded
This function returns true if and only if the JSON value was discarded
during parsing with a callback function (see @ref parser_callback_t).
@note This function will always be `false` for JSON values after parsing.
That is, discarded values can only occur during parsing, but will be
removed when inside a structured value or replaced by null in other cases.
@return `true` if type is discarded, `false` otherwise.
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies `is_discarded()` for all JSON
types.,is_discarded}
@since version 1.0.0
*/
constexpr bool is_discarded() const noexcept
{
return m_type == value_t::discarded;
}
/*!
@brief return the type of the JSON value (implicit)
Implicitly return the type of the JSON value as a value from the @ref
value_t enumeration.
@return the type of the JSON value
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws
exceptions.
@liveexample{The following code exemplifies the @ref value_t operator for
all JSON types.,operator__value_t}
@sa @ref type() -- return the type of the JSON value (explicit)
@sa @ref type_name() -- return the type as string
@since version 1.0.0
*/
constexpr operator value_t() const noexcept
{
return m_type;
}
/// @}
private:
//////////////////
// value access //
//////////////////
/// get a boolean (explicit)
boolean_t get_impl(boolean_t* /*unused*/) const
{
if (JSON_HEDLEY_LIKELY(is_boolean()))
{
return m_value.boolean;
}
JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(type_name())));
}
/// get a pointer to the value (object)
object_t* get_impl_ptr(object_t* /*unused*/) noexcept
{
return is_object() ? m_value.object : nullptr;
}
/// get a pointer to the value (object)
constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept
{
return is_object() ? m_value.object : nullptr;
}
/// get a pointer to the value (array)
array_t* get_impl_ptr(array_t* /*unused*/) noexcept
{
return is_array() ? m_value.array : nullptr;
}
/// get a pointer to the value (array)
constexpr const array_t* get_impl_ptr(const array_t* /*unused*/) const noexcept
{
return is_array() ? m_value.array : nullptr;
}
/// get a pointer to the value (string)
string_t* get_impl_ptr(string_t* /*unused*/) noexcept
{
return is_string() ? m_value.string : nullptr;
}
/// get a pointer to the value (string)
constexpr const string_t* get_impl_ptr(const string_t* /*unused*/) const noexcept
{
return is_string() ? m_value.string : nullptr;
}
/// get a pointer to the value (boolean)
boolean_t* get_impl_ptr(boolean_t* /*unused*/) noexcept
{
return is_boolean() ? &m_value.boolean : nullptr;
}
/// get a pointer to the value (boolean)
constexpr const boolean_t* get_impl_ptr(const boolean_t* /*unused*/) const noexcept
{
return is_boolean() ? &m_value.boolean : nullptr;
}
/// get a pointer to the value (integer number)
number_integer_t* get_impl_ptr(number_integer_t* /*unused*/) noexcept
{
return is_number_integer() ? &m_value.number_integer : nullptr;
}
/// get a pointer to the value (integer number)
constexpr const number_integer_t* get_impl_ptr(const number_integer_t* /*unused*/) const noexcept
{
return is_number_integer() ? &m_value.number_integer : nullptr;
}
/// get a pointer to the value (unsigned number)
number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept
{
return is_number_unsigned() ? &m_value.number_unsigned : nullptr;
}
/// get a pointer to the value (unsigned number)
constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept
{
return is_number_unsigned() ? &m_value.number_unsigned : nullptr;
}
/// get a pointer to the value (floating-point number)
number_float_t* get_impl_ptr(number_float_t* /*unused*/) noexcept
{
return is_number_float() ? &m_value.number_float : nullptr;
}
/// get a pointer to the value (floating-point number)
constexpr const number_float_t* get_impl_ptr(const number_float_t* /*unused*/) const noexcept
{
return is_number_float() ? &m_value.number_float : nullptr;
}
/*!
@brief helper function to implement get_ref()
This function helps to implement get_ref() without code duplication for
const and non-const overloads
@tparam ThisType will be deduced as `basic_json` or `const basic_json`
@throw type_error.303 if ReferenceType does not match underlying value
type of the current JSON
*/
template<typename ReferenceType, typename ThisType>
static ReferenceType get_ref_impl(ThisType& obj)
{
// delegate the call to get_ptr<>()
auto ptr = obj.template get_ptr<typename std::add_pointer<ReferenceType>::type>();
if (JSON_HEDLEY_LIKELY(ptr != nullptr))
{
return *ptr;
}
JSON_THROW(type_error::create(303, "incompatible ReferenceType for get_ref, actual type is " + std::string(obj.type_name())));
}
public:
/// @name value access
/// Direct access to the stored value of a JSON value.
/// @{
/*!
@brief get special-case overload
This overloads avoids a lot of template boilerplate, it can be seen as the
identity method
@tparam BasicJsonType == @ref basic_json
@return a copy of *this
@complexity Constant.
@since version 2.1.0
*/
template<typename BasicJsonType, detail::enable_if_t<
std::is_same<typename std::remove_const<BasicJsonType>::type, basic_json_t>::value,
int> = 0>
basic_json get() const
{
return *this;
}
/*!
@brief get special-case overload
This overloads converts the current @ref basic_json in a different
@ref basic_json type
@tparam BasicJsonType == @ref basic_json
@return a copy of *this, converted into @tparam BasicJsonType
@complexity Depending on the implementation of the called `from_json()`
method.
@since version 3.2.0
*/
template<typename BasicJsonType, detail::enable_if_t<
not std::is_same<BasicJsonType, basic_json>::value and
detail::is_basic_json<BasicJsonType>::value, int> = 0>
BasicJsonType get() const
{
return *this;
}
/*!
@brief get a value (explicit)
Explicit type conversion between the JSON value and a compatible value
which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible)
and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible).
The value is converted by calling the @ref json_serializer<ValueType>
`from_json()` method.
The function is equivalent to executing
@code {.cpp}
ValueType ret;
JSONSerializer<ValueType>::from_json(*this, ret);
return ret;
@endcode
This overloads is chosen if:
- @a ValueType is not @ref basic_json,
- @ref json_serializer<ValueType> has a `from_json()` method of the form
`void from_json(const basic_json&, ValueType&)`, and
- @ref json_serializer<ValueType> does not have a `from_json()` method of
the form `ValueType from_json(const basic_json&)`
@tparam ValueTypeCV the provided value type
@tparam ValueType the returned value type
@return copy of the JSON value, converted to @a ValueType
@throw what @ref json_serializer<ValueType> `from_json()` method throws
@liveexample{The example below shows several conversions from JSON values
to other types. There a few things to note: (1) Floating-point numbers can
be converted to integers\, (2) A JSON array can be converted to a standard
`std::vector<short>`\, (3) A JSON object can be converted to C++
associative containers such as `std::unordered_map<std::string\,
json>`.,get__ValueType_const}
@since version 2.1.0
*/
template<typename ValueTypeCV, typename ValueType = detail::uncvref_t<ValueTypeCV>,
detail::enable_if_t <
not detail::is_basic_json<ValueType>::value and
detail::has_from_json<basic_json_t, ValueType>::value and
not detail::has_non_default_from_json<basic_json_t, ValueType>::value,
int> = 0>
ValueType get() const noexcept(noexcept(
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), std::declval<ValueType&>())))
{
// we cannot static_assert on ValueTypeCV being non-const, because
// there is support for get<const basic_json_t>(), which is why we
// still need the uncvref
static_assert(not std::is_reference<ValueTypeCV>::value,
"get() cannot be used with reference types, you might want to use get_ref()");
static_assert(std::is_default_constructible<ValueType>::value,
"types must be DefaultConstructible when used with get()");
ValueType ret;
JSONSerializer<ValueType>::from_json(*this, ret);
return ret;
}
/*!
@brief get a value (explicit); special case
Explicit type conversion between the JSON value and a compatible value
which is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible)
and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible).
The value is converted by calling the @ref json_serializer<ValueType>
`from_json()` method.
The function is equivalent to executing
@code {.cpp}
return JSONSerializer<ValueTypeCV>::from_json(*this);
@endcode
This overloads is chosen if:
- @a ValueType is not @ref basic_json and
- @ref json_serializer<ValueType> has a `from_json()` method of the form
`ValueType from_json(const basic_json&)`
@note If @ref json_serializer<ValueType> has both overloads of
`from_json()`, this one is chosen.
@tparam ValueTypeCV the provided value type
@tparam ValueType the returned value type
@return copy of the JSON value, converted to @a ValueType
@throw what @ref json_serializer<ValueType> `from_json()` method throws
@since version 2.1.0
*/
template<typename ValueTypeCV, typename ValueType = detail::uncvref_t<ValueTypeCV>,
detail::enable_if_t<not std::is_same<basic_json_t, ValueType>::value and
detail::has_non_default_from_json<basic_json_t, ValueType>::value,
int> = 0>
ValueType get() const noexcept(noexcept(
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>())))
{
static_assert(not std::is_reference<ValueTypeCV>::value,
"get() cannot be used with reference types, you might want to use get_ref()");
return JSONSerializer<ValueType>::from_json(*this);
}
/*!
@brief get a value (explicit)
Explicit type conversion between the JSON value and a compatible value.
The value is filled into the input parameter by calling the @ref json_serializer<ValueType>
`from_json()` method.
The function is equivalent to executing
@code {.cpp}
ValueType v;
JSONSerializer<ValueType>::from_json(*this, v);
@endcode
This overloads is chosen if:
- @a ValueType is not @ref basic_json,
- @ref json_serializer<ValueType> has a `from_json()` method of the form
`void from_json(const basic_json&, ValueType&)`, and
@tparam ValueType the input parameter type.
@return the input parameter, allowing chaining calls.
@throw what @ref json_serializer<ValueType> `from_json()` method throws
@liveexample{The example below shows several conversions from JSON values
to other types. There a few things to note: (1) Floating-point numbers can
be converted to integers\, (2) A JSON array can be converted to a standard
`std::vector<short>`\, (3) A JSON object can be converted to C++
associative containers such as `std::unordered_map<std::string\,
json>`.,get_to}
@since version 3.3.0
*/
template<typename ValueType,
detail::enable_if_t <
not detail::is_basic_json<ValueType>::value and
detail::has_from_json<basic_json_t, ValueType>::value,
int> = 0>
ValueType & get_to(ValueType& v) const noexcept(noexcept(
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), v)))
{
JSONSerializer<ValueType>::from_json(*this, v);
return v;
}
template <
typename T, std::size_t N,
typename Array = T (&)[N],
detail::enable_if_t <
detail::has_from_json<basic_json_t, Array>::value, int > = 0 >
Array get_to(T (&v)[N]) const
noexcept(noexcept(JSONSerializer<Array>::from_json(
std::declval<const basic_json_t&>(), v)))
{
JSONSerializer<Array>::from_json(*this, v);
return v;
}
/*!
@brief get a pointer value (implicit)
Implicit pointer access to the internally stored JSON value. No copies are
made.
@warning Writing data to the pointee of the result yields an undefined
state.
@tparam PointerType pointer type; must be a pointer to @ref array_t, @ref
object_t, @ref string_t, @ref boolean_t, @ref number_integer_t,
@ref number_unsigned_t, or @ref number_float_t. Enforced by a static
assertion.
@return pointer to the internally stored JSON value if the requested
pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
@complexity Constant.
@liveexample{The example below shows how pointers to internal values of a
JSON value can be requested. Note that no type conversions are made and a
`nullptr` is returned if the value and the requested pointer type does not
match.,get_ptr}
@since version 1.0.0
*/
template<typename PointerType, typename std::enable_if<
std::is_pointer<PointerType>::value, int>::type = 0>
auto get_ptr() noexcept -> decltype(std::declval<basic_json_t&>().get_impl_ptr(std::declval<PointerType>()))
{
// delegate the call to get_impl_ptr<>()
return get_impl_ptr(static_cast<PointerType>(nullptr));
}
/*!
@brief get a pointer value (implicit)
@copydoc get_ptr()
*/
template<typename PointerType, typename std::enable_if<
std::is_pointer<PointerType>::value and
std::is_const<typename std::remove_pointer<PointerType>::type>::value, int>::type = 0>
constexpr auto get_ptr() const noexcept -> decltype(std::declval<const basic_json_t&>().get_impl_ptr(std::declval<PointerType>()))
{
// delegate the call to get_impl_ptr<>() const
return get_impl_ptr(static_cast<PointerType>(nullptr));
}
/*!
@brief get a pointer value (explicit)
Explicit pointer access to the internally stored JSON value. No copies are
made.
@warning The pointer becomes invalid if the underlying JSON object
changes.
@tparam PointerType pointer type; must be a pointer to @ref array_t, @ref
object_t, @ref string_t, @ref boolean_t, @ref number_integer_t,
@ref number_unsigned_t, or @ref number_float_t.
@return pointer to the internally stored JSON value if the requested
pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
@complexity Constant.
@liveexample{The example below shows how pointers to internal values of a
JSON value can be requested. Note that no type conversions are made and a
`nullptr` is returned if the value and the requested pointer type does not
match.,get__PointerType}
@sa @ref get_ptr() for explicit pointer-member access
@since version 1.0.0
*/
template<typename PointerType, typename std::enable_if<
std::is_pointer<PointerType>::value, int>::type = 0>
auto get() noexcept -> decltype(std::declval<basic_json_t&>().template get_ptr<PointerType>())
{
// delegate the call to get_ptr
return get_ptr<PointerType>();
}
/*!
@brief get a pointer value (explicit)
@copydoc get()
*/
template<typename PointerType, typename std::enable_if<
std::is_pointer<PointerType>::value, int>::type = 0>
constexpr auto get() const noexcept -> decltype(std::declval<const basic_json_t&>().template get_ptr<PointerType>())
{
// delegate the call to get_ptr
return get_ptr<PointerType>();
}
/*!
@brief get a reference value (implicit)
Implicit reference access to the internally stored JSON value. No copies
are made.
@warning Writing data to the referee of the result yields an undefined
state.
@tparam ReferenceType reference type; must be a reference to @ref array_t,
@ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or
@ref number_float_t. Enforced by static assertion.
@return reference to the internally stored JSON value if the requested
reference type @a ReferenceType fits to the JSON value; throws
type_error.303 otherwise
@throw type_error.303 in case passed type @a ReferenceType is incompatible
with the stored JSON value; see example below
@complexity Constant.
@liveexample{The example shows several calls to `get_ref()`.,get_ref}
@since version 1.1.0
*/
template<typename ReferenceType, typename std::enable_if<
std::is_reference<ReferenceType>::value, int>::type = 0>
ReferenceType get_ref()
{
// delegate call to get_ref_impl
return get_ref_impl<ReferenceType>(*this);
}
/*!
@brief get a reference value (implicit)
@copydoc get_ref()
*/
template<typename ReferenceType, typename std::enable_if<
std::is_reference<ReferenceType>::value and
std::is_const<typename std::remove_reference<ReferenceType>::type>::value, int>::type = 0>
ReferenceType get_ref() const
{
// delegate call to get_ref_impl
return get_ref_impl<ReferenceType>(*this);
}
/*!
@brief get a value (implicit)
Implicit type conversion between the JSON value and a compatible value.
The call is realized by calling @ref get() const.
@tparam ValueType non-pointer type compatible to the JSON value, for
instance `int` for JSON integer numbers, `bool` for JSON booleans, or
`std::vector` types for JSON arrays. The character type of @ref string_t
as well as an initializer list of this type is excluded to avoid
ambiguities as these types implicitly convert to `std::string`.
@return copy of the JSON value, converted to type @a ValueType
@throw type_error.302 in case passed type @a ValueType is incompatible
to the JSON value type (e.g., the JSON value is of type boolean, but a
string is requested); see example below
@complexity Linear in the size of the JSON value.
@liveexample{The example below shows several conversions from JSON values
to other types. There a few things to note: (1) Floating-point numbers can
be converted to integers\, (2) A JSON array can be converted to a standard
`std::vector<short>`\, (3) A JSON object can be converted to C++
associative containers such as `std::unordered_map<std::string\,
json>`.,operator__ValueType}
@since version 1.0.0
*/
template < typename ValueType, typename std::enable_if <
not std::is_pointer<ValueType>::value and
not std::is_same<ValueType, detail::json_ref<basic_json>>::value and
not std::is_same<ValueType, typename string_t::value_type>::value and
not detail::is_basic_json<ValueType>::value
#ifndef _MSC_VER // fix for issue #167 operator<< ambiguity under VS2015
and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) and _MSC_VER <= 1914))
and not std::is_same<ValueType, typename std::string_view>::value
#endif
#endif
and detail::is_detected<detail::get_template_function, const basic_json_t&, ValueType>::value
, int >::type = 0 >
operator ValueType() const
{
// delegate the call to get<>() const
return get<ValueType>();
}
/// @}
////////////////////
// element access //
////////////////////
/// @name element access
/// Access to the JSON value.
/// @{
/*!
@brief access specified array element with bounds checking
Returns a reference to the element at specified location @a idx, with
bounds checking.
@param[in] idx index of the element to access
@return reference to the element at index @a idx
@throw type_error.304 if the JSON value is not an array; in this case,
calling `at` with an index makes no sense. See example below.
@throw out_of_range.401 if the index @a idx is out of range of the array;
that is, `idx >= size()`. See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@since version 1.0.0
@liveexample{The example below shows how array elements can be read and
written using `at()`. It also demonstrates the different exceptions that
can be thrown.,at__size_type}
*/
reference at(size_type idx)
{
// at only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
JSON_TRY
{
return m_value.array->at(idx);
}
JSON_CATCH (std::out_of_range&)
{
// create better exception explanation
JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range"));
}
}
else
{
JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name())));
}
}
/*!
@brief access specified array element with bounds checking
Returns a const reference to the element at specified location @a idx,
with bounds checking.
@param[in] idx index of the element to access
@return const reference to the element at index @a idx
@throw type_error.304 if the JSON value is not an array; in this case,
calling `at` with an index makes no sense. See example below.
@throw out_of_range.401 if the index @a idx is out of range of the array;
that is, `idx >= size()`. See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@since version 1.0.0
@liveexample{The example below shows how array elements can be read using
`at()`. It also demonstrates the different exceptions that can be thrown.,
at__size_type_const}
*/
const_reference at(size_type idx) const
{
// at only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
JSON_TRY
{
return m_value.array->at(idx);
}
JSON_CATCH (std::out_of_range&)
{
// create better exception explanation
JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range"));
}
}
else
{
JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name())));
}
}
/*!
@brief access specified object element with bounds checking
Returns a reference to the element at with specified key @a key, with
bounds checking.
@param[in] key key of the element to access
@return reference to the element at key @a key
@throw type_error.304 if the JSON value is not an object; in this case,
calling `at` with a key makes no sense. See example below.
@throw out_of_range.403 if the key @a key is is not stored in the object;
that is, `find(key) == end()`. See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Logarithmic in the size of the container.
@sa @ref operator[](const typename object_t::key_type&) for unchecked
access by reference
@sa @ref value() for access by value with a default value
@since version 1.0.0
@liveexample{The example below shows how object elements can be read and
written using `at()`. It also demonstrates the different exceptions that
can be thrown.,at__object_t_key_type}
*/
reference at(const typename object_t::key_type& key)
{
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
JSON_TRY
{
return m_value.object->at(key);
}
JSON_CATCH (std::out_of_range&)
{
// create better exception explanation
JSON_THROW(out_of_range::create(403, "key '" + key + "' not found"));
}
}
else
{
JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name())));
}
}
/*!
@brief access specified object element with bounds checking
Returns a const reference to the element at with specified key @a key,
with bounds checking.
@param[in] key key of the element to access
@return const reference to the element at key @a key
@throw type_error.304 if the JSON value is not an object; in this case,
calling `at` with a key makes no sense. See example below.
@throw out_of_range.403 if the key @a key is is not stored in the object;
that is, `find(key) == end()`. See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Logarithmic in the size of the container.
@sa @ref operator[](const typename object_t::key_type&) for unchecked
access by reference
@sa @ref value() for access by value with a default value
@since version 1.0.0
@liveexample{The example below shows how object elements can be read using
`at()`. It also demonstrates the different exceptions that can be thrown.,
at__object_t_key_type_const}
*/
const_reference at(const typename object_t::key_type& key) const
{
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
JSON_TRY
{
return m_value.object->at(key);
}
JSON_CATCH (std::out_of_range&)
{
// create better exception explanation
JSON_THROW(out_of_range::create(403, "key '" + key + "' not found"));
}
}
else
{
JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name())));
}
}
/*!
@brief access specified array element
Returns a reference to the element at specified location @a idx.
@note If @a idx is beyond the range of the array (i.e., `idx >= size()`),
then the array is silently filled up with `null` values to make `idx` a
valid reference to the last stored element.
@param[in] idx index of the element to access
@return reference to the element at index @a idx
@throw type_error.305 if the JSON value is not an array or null; in that
cases, using the [] operator with an index makes no sense.
@complexity Constant if @a idx is in the range of the array. Otherwise
linear in `idx - size()`.
@liveexample{The example below shows how array elements can be read and
written using `[]` operator. Note the addition of `null`
values.,operatorarray__size_type}
@since version 1.0.0
*/
reference operator[](size_type idx)
{
// implicitly convert null value to an empty array
if (is_null())
{
m_type = value_t::array;
m_value.array = create<array_t>();
assert_invariant();
}
// operator[] only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
// fill up array with null values if given idx is outside range
if (idx >= m_value.array->size())
{
m_value.array->insert(m_value.array->end(),
idx - m_value.array->size() + 1,
basic_json());
}
return m_value.array->operator[](idx);
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name())));
}
/*!
@brief access specified array element
Returns a const reference to the element at specified location @a idx.
@param[in] idx index of the element to access
@return const reference to the element at index @a idx
@throw type_error.305 if the JSON value is not an array; in that case,
using the [] operator with an index makes no sense.
@complexity Constant.
@liveexample{The example below shows how array elements can be read using
the `[]` operator.,operatorarray__size_type_const}
@since version 1.0.0
*/
const_reference operator[](size_type idx) const
{
// const operator[] only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
return m_value.array->operator[](idx);
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name())));
}
/*!
@brief access specified object element
Returns a reference to the element at with specified key @a key.
@note If @a key is not found in the object, then it is silently added to
the object and filled with a `null` value to make `key` a valid reference.
In case the value was `null` before, it is converted to an object.
@param[in] key key of the element to access
@return reference to the element at key @a key
@throw type_error.305 if the JSON value is not an object or null; in that
cases, using the [] operator with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read and
written using the `[]` operator.,operatorarray__key_type}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.0.0
*/
reference operator[](const typename object_t::key_type& key)
{
// implicitly convert null value to an empty object
if (is_null())
{
m_type = value_t::object;
m_value.object = create<object_t>();
assert_invariant();
}
// operator[] only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
return m_value.object->operator[](key);
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name())));
}
/*!
@brief read-only access specified object element
Returns a const reference to the element at with specified key @a key. No
bounds checking is performed.
@warning If the element with key @a key does not exist, the behavior is
undefined.
@param[in] key key of the element to access
@return const reference to the element at key @a key
@pre The element with key @a key must exist. **This precondition is
enforced with an assertion.**
@throw type_error.305 if the JSON value is not an object; in that case,
using the [] operator with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read using
the `[]` operator.,operatorarray__key_type_const}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.0.0
*/
const_reference operator[](const typename object_t::key_type& key) const
{
// const operator[] only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
assert(m_value.object->find(key) != m_value.object->end());
return m_value.object->find(key)->second;
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name())));
}
/*!
@brief access specified object element
Returns a reference to the element at with specified key @a key.
@note If @a key is not found in the object, then it is silently added to
the object and filled with a `null` value to make `key` a valid reference.
In case the value was `null` before, it is converted to an object.
@param[in] key key of the element to access
@return reference to the element at key @a key
@throw type_error.305 if the JSON value is not an object or null; in that
cases, using the [] operator with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read and
written using the `[]` operator.,operatorarray__key_type}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.1.0
*/
template<typename T>
JSON_HEDLEY_NON_NULL(2)
reference operator[](T* key)
{
// implicitly convert null to object
if (is_null())
{
m_type = value_t::object;
m_value = value_t::object;
assert_invariant();
}
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
return m_value.object->operator[](key);
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name())));
}
/*!
@brief read-only access specified object element
Returns a const reference to the element at with specified key @a key. No
bounds checking is performed.
@warning If the element with key @a key does not exist, the behavior is
undefined.
@param[in] key key of the element to access
@return const reference to the element at key @a key
@pre The element with key @a key must exist. **This precondition is
enforced with an assertion.**
@throw type_error.305 if the JSON value is not an object; in that case,
using the [] operator with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read using
the `[]` operator.,operatorarray__key_type_const}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.1.0
*/
template<typename T>
JSON_HEDLEY_NON_NULL(2)
const_reference operator[](T* key) const
{
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
assert(m_value.object->find(key) != m_value.object->end());
return m_value.object->find(key)->second;
}
JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name())));
}
/*!
@brief access specified object element with default value
Returns either a copy of an object's element at the specified key @a key
or a given default value if no element with key @a key exists.
The function is basically equivalent to executing
@code {.cpp}
try {
return at(key);
} catch(out_of_range) {
return default_value;
}
@endcode
@note Unlike @ref at(const typename object_t::key_type&), this function
does not throw if the given key @a key was not found.
@note Unlike @ref operator[](const typename object_t::key_type& key), this
function does not implicitly add an element to the position defined by @a
key. This function is furthermore also applicable to const objects.
@param[in] key key of the element to access
@param[in] default_value the value to return if @a key is not found
@tparam ValueType type compatible to JSON values, for instance `int` for
JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for
JSON arrays. Note the type of the expected value at @a key and the default
value @a default_value must be compatible.
@return copy of the element at key @a key or @a default_value if @a key
is not found
@throw type_error.302 if @a default_value does not match the type of the
value at @a key
@throw type_error.306 if the JSON value is not an object; in that case,
using `value()` with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be queried
with a default value.,basic_json__value}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref operator[](const typename object_t::key_type&) for unchecked
access by reference
@since version 1.0.0
*/
template<class ValueType, typename std::enable_if<
std::is_convertible<basic_json_t, ValueType>::value, int>::type = 0>
ValueType value(const typename object_t::key_type& key, const ValueType& default_value) const
{
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
// if key is found, return value and given default value otherwise
const auto it = find(key);
if (it != end())
{
return *it;
}
return default_value;
}
JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name())));
}
/*!
@brief overload for a default value of type const char*
@copydoc basic_json::value(const typename object_t::key_type&, const ValueType&) const
*/
string_t value(const typename object_t::key_type& key, const char* default_value) const
{
return value(key, string_t(default_value));
}
/*!
@brief access specified object element via JSON Pointer with default value
Returns either a copy of an object's element at the specified key @a key
or a given default value if no element with key @a key exists.
The function is basically equivalent to executing
@code {.cpp}
try {
return at(ptr);
} catch(out_of_range) {
return default_value;
}
@endcode
@note Unlike @ref at(const json_pointer&), this function does not throw
if the given key @a key was not found.
@param[in] ptr a JSON pointer to the element to access
@param[in] default_value the value to return if @a ptr found no value
@tparam ValueType type compatible to JSON values, for instance `int` for
JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for
JSON arrays. Note the type of the expected value at @a key and the default
value @a default_value must be compatible.
@return copy of the element at key @a key or @a default_value if @a key
is not found
@throw type_error.302 if @a default_value does not match the type of the
value at @a ptr
@throw type_error.306 if the JSON value is not an object; in that case,
using `value()` with a key makes no sense.
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be queried
with a default value.,basic_json__value_ptr}
@sa @ref operator[](const json_pointer&) for unchecked access by reference
@since version 2.0.2
*/
template<class ValueType, typename std::enable_if<
std::is_convertible<basic_json_t, ValueType>::value, int>::type = 0>
ValueType value(const json_pointer& ptr, const ValueType& default_value) const
{
// at only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
// if pointer resolves a value, return it or use default value
JSON_TRY
{
return ptr.get_checked(this);
}
JSON_INTERNAL_CATCH (out_of_range&)
{
return default_value;
}
}
JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name())));
}
/*!
@brief overload for a default value of type const char*
@copydoc basic_json::value(const json_pointer&, ValueType) const
*/
JSON_HEDLEY_NON_NULL(3)
string_t value(const json_pointer& ptr, const char* default_value) const
{
return value(ptr, string_t(default_value));
}
/*!
@brief access the first element
Returns a reference to the first element in the container. For a JSON
container `c`, the expression `c.front()` is equivalent to `*c.begin()`.
@return In case of a structured type (array or object), a reference to the
first element is returned. In case of number, string, or boolean values, a
reference to the value is returned.
@complexity Constant.
@pre The JSON value must not be `null` (would throw `std::out_of_range`)
or an empty array or object (undefined behavior, **guarded by
assertions**).
@post The JSON value remains unchanged.
@throw invalid_iterator.214 when called on `null` value
@liveexample{The following code shows an example for `front()`.,front}
@sa @ref back() -- access the last element
@since version 1.0.0
*/
reference front()
{
return *begin();
}
/*!
@copydoc basic_json::front()
*/
const_reference front() const
{
return *cbegin();
}
/*!
@brief access the last element
Returns a reference to the last element in the container. For a JSON
container `c`, the expression `c.back()` is equivalent to
@code {.cpp}
auto tmp = c.end();
--tmp;
return *tmp;
@endcode
@return In case of a structured type (array or object), a reference to the
last element is returned. In case of number, string, or boolean values, a
reference to the value is returned.
@complexity Constant.
@pre The JSON value must not be `null` (would throw `std::out_of_range`)
or an empty array or object (undefined behavior, **guarded by
assertions**).
@post The JSON value remains unchanged.
@throw invalid_iterator.214 when called on a `null` value. See example
below.
@liveexample{The following code shows an example for `back()`.,back}
@sa @ref front() -- access the first element
@since version 1.0.0
*/
reference back()
{
auto tmp = end();
--tmp;
return *tmp;
}
/*!
@copydoc basic_json::back()
*/
const_reference back() const
{
auto tmp = cend();
--tmp;
return *tmp;
}
/*!
@brief remove element given an iterator
Removes the element specified by iterator @a pos. The iterator @a pos must
be valid and dereferenceable. Thus the `end()` iterator (which is valid,
but is not dereferenceable) cannot be used as a value for @a pos.
If called on a primitive type other than `null`, the resulting JSON value
will be `null`.
@param[in] pos iterator to the element to remove
@return Iterator following the last removed element. If the iterator @a
pos refers to the last element, the `end()` iterator is returned.
@tparam IteratorType an @ref iterator or @ref const_iterator
@post Invalidates iterators and references at or after the point of the
erase, including the `end()` iterator.
@throw type_error.307 if called on a `null` value; example: `"cannot use
erase() with null"`
@throw invalid_iterator.202 if called on an iterator which does not belong
to the current JSON value; example: `"iterator does not fit current
value"`
@throw invalid_iterator.205 if called on a primitive type with invalid
iterator (i.e., any iterator which is not `begin()`); example: `"iterator
out of range"`
@complexity The complexity depends on the type:
- objects: amortized constant
- arrays: linear in distance between @a pos and the end of the container
- strings: linear in the length of the string
- other types: constant
@liveexample{The example shows the result of `erase()` for different JSON
types.,erase__IteratorType}
@sa @ref erase(IteratorType, IteratorType) -- removes the elements in
the given range
@sa @ref erase(const typename object_t::key_type&) -- removes the element
from an object at the given key
@sa @ref erase(const size_type) -- removes the element from an array at
the given index
@since version 1.0.0
*/
template<class IteratorType, typename std::enable_if<
std::is_same<IteratorType, typename basic_json_t::iterator>::value or
std::is_same<IteratorType, typename basic_json_t::const_iterator>::value, int>::type
= 0>
IteratorType erase(IteratorType pos)
{
// make sure iterator fits the current value
if (JSON_HEDLEY_UNLIKELY(this != pos.m_object))
{
JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value"));
}
IteratorType result = end();
switch (m_type)
{
case value_t::boolean:
case value_t::number_float:
case value_t::number_integer:
case value_t::number_unsigned:
case value_t::string:
{
if (JSON_HEDLEY_UNLIKELY(not pos.m_it.primitive_iterator.is_begin()))
{
JSON_THROW(invalid_iterator::create(205, "iterator out of range"));
}
if (is_string())
{
AllocatorType<string_t> alloc;
std::allocator_traits<decltype(alloc)>::destroy(alloc, m_value.string);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, m_value.string, 1);
m_value.string = nullptr;
}
m_type = value_t::null;
assert_invariant();
break;
}
case value_t::object:
{
result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator);
break;
}
case value_t::array:
{
result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator);
break;
}
default:
JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name())));
}
return result;
}
/*!
@brief remove elements given an iterator range
Removes the element specified by the range `[first; last)`. The iterator
@a first does not need to be dereferenceable if `first == last`: erasing
an empty range is a no-op.
If called on a primitive type other than `null`, the resulting JSON value
will be `null`.
@param[in] first iterator to the beginning of the range to remove
@param[in] last iterator past the end of the range to remove
@return Iterator following the last removed element. If the iterator @a
second refers to the last element, the `end()` iterator is returned.
@tparam IteratorType an @ref iterator or @ref const_iterator
@post Invalidates iterators and references at or after the point of the
erase, including the `end()` iterator.
@throw type_error.307 if called on a `null` value; example: `"cannot use
erase() with null"`
@throw invalid_iterator.203 if called on iterators which does not belong
to the current JSON value; example: `"iterators do not fit current value"`
@throw invalid_iterator.204 if called on a primitive type with invalid
iterators (i.e., if `first != begin()` and `last != end()`); example:
`"iterators out of range"`
@complexity The complexity depends on the type:
- objects: `log(size()) + std::distance(first, last)`
- arrays: linear in the distance between @a first and @a last, plus linear
in the distance between @a last and end of the container
- strings: linear in the length of the string
- other types: constant
@liveexample{The example shows the result of `erase()` for different JSON
types.,erase__IteratorType_IteratorType}
@sa @ref erase(IteratorType) -- removes the element at a given position
@sa @ref erase(const typename object_t::key_type&) -- removes the element
from an object at the given key
@sa @ref erase(const size_type) -- removes the element from an array at
the given index
@since version 1.0.0
*/
template<class IteratorType, typename std::enable_if<
std::is_same<IteratorType, typename basic_json_t::iterator>::value or
std::is_same<IteratorType, typename basic_json_t::const_iterator>::value, int>::type
= 0>
IteratorType erase(IteratorType first, IteratorType last)
{
// make sure iterator fits the current value
if (JSON_HEDLEY_UNLIKELY(this != first.m_object or this != last.m_object))
{
JSON_THROW(invalid_iterator::create(203, "iterators do not fit current value"));
}
IteratorType result = end();
switch (m_type)
{
case value_t::boolean:
case value_t::number_float:
case value_t::number_integer:
case value_t::number_unsigned:
case value_t::string:
{
if (JSON_HEDLEY_LIKELY(not first.m_it.primitive_iterator.is_begin()
or not last.m_it.primitive_iterator.is_end()))
{
JSON_THROW(invalid_iterator::create(204, "iterators out of range"));
}
if (is_string())
{
AllocatorType<string_t> alloc;
std::allocator_traits<decltype(alloc)>::destroy(alloc, m_value.string);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, m_value.string, 1);
m_value.string = nullptr;
}
m_type = value_t::null;
assert_invariant();
break;
}
case value_t::object:
{
result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator,
last.m_it.object_iterator);
break;
}
case value_t::array:
{
result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator,
last.m_it.array_iterator);
break;
}
default:
JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name())));
}
return result;
}
/*!
@brief remove element from a JSON object given a key
Removes elements from a JSON object with the key value @a key.
@param[in] key value of the elements to remove
@return Number of elements removed. If @a ObjectType is the default
`std::map` type, the return value will always be `0` (@a key was not
found) or `1` (@a key was found).
@post References and iterators to the erased elements are invalidated.
Other references and iterators are not affected.
@throw type_error.307 when called on a type other than JSON object;
example: `"cannot use erase() with null"`
@complexity `log(size()) + count(key)`
@liveexample{The example shows the effect of `erase()`.,erase__key_type}
@sa @ref erase(IteratorType) -- removes the element at a given position
@sa @ref erase(IteratorType, IteratorType) -- removes the elements in
the given range
@sa @ref erase(const size_type) -- removes the element from an array at
the given index
@since version 1.0.0
*/
size_type erase(const typename object_t::key_type& key)
{
// this erase only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
return m_value.object->erase(key);
}
JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name())));
}
/*!
@brief remove element from a JSON array given an index
Removes element from a JSON array at the index @a idx.
@param[in] idx index of the element to remove
@throw type_error.307 when called on a type other than JSON object;
example: `"cannot use erase() with null"`
@throw out_of_range.401 when `idx >= size()`; example: `"array index 17
is out of range"`
@complexity Linear in distance between @a idx and the end of the container.
@liveexample{The example shows the effect of `erase()`.,erase__size_type}
@sa @ref erase(IteratorType) -- removes the element at a given position
@sa @ref erase(IteratorType, IteratorType) -- removes the elements in
the given range
@sa @ref erase(const typename object_t::key_type&) -- removes the element
from an object at the given key
@since version 1.0.0
*/
void erase(const size_type idx)
{
// this erase only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
if (JSON_HEDLEY_UNLIKELY(idx >= size()))
{
JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range"));
}
m_value.array->erase(m_value.array->begin() + static_cast<difference_type>(idx));
}
else
{
JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name())));
}
}
/// @}
////////////
// lookup //
////////////
/// @name lookup
/// @{
/*!
@brief find an element in a JSON object
Finds an element in a JSON object with key equivalent to @a key. If the
element is not found or the JSON value is not an object, end() is
returned.
@note This method always returns @ref end() when executed on a JSON type
that is not an object.
@param[in] key key value of the element to search for.
@return Iterator to an element with key equivalent to @a key. If no such
element is found or the JSON value is not an object, past-the-end (see
@ref end()) iterator is returned.
@complexity Logarithmic in the size of the JSON object.
@liveexample{The example shows how `find()` is used.,find__key_type}
@sa @ref contains(KeyT&&) const -- checks whether a key exists
@since version 1.0.0
*/
template<typename KeyT>
iterator find(KeyT&& key)
{
auto result = end();
if (is_object())
{
result.m_it.object_iterator = m_value.object->find(std::forward<KeyT>(key));
}
return result;
}
/*!
@brief find an element in a JSON object
@copydoc find(KeyT&&)
*/
template<typename KeyT>
const_iterator find(KeyT&& key) const
{
auto result = cend();
if (is_object())
{
result.m_it.object_iterator = m_value.object->find(std::forward<KeyT>(key));
}
return result;
}
/*!
@brief returns the number of occurrences of a key in a JSON object
Returns the number of elements with key @a key. If ObjectType is the
default `std::map` type, the return value will always be `0` (@a key was
not found) or `1` (@a key was found).
@note This method always returns `0` when executed on a JSON type that is
not an object.
@param[in] key key value of the element to count
@return Number of elements with key @a key. If the JSON value is not an
object, the return value will be `0`.
@complexity Logarithmic in the size of the JSON object.
@liveexample{The example shows how `count()` is used.,count}
@since version 1.0.0
*/
template<typename KeyT>
size_type count(KeyT&& key) const
{
// return 0 for all nonobject types
return is_object() ? m_value.object->count(std::forward<KeyT>(key)) : 0;
}
/*!
@brief check the existence of an element in a JSON object
Check whether an element exists in a JSON object with key equivalent to
@a key. If the element is not found or the JSON value is not an object,
false is returned.
@note This method always returns false when executed on a JSON type
that is not an object.
@param[in] key key value to check its existence.
@return true if an element with specified @a key exists. If no such
element with such key is found or the JSON value is not an object,
false is returned.
@complexity Logarithmic in the size of the JSON object.
@liveexample{The following code shows an example for `contains()`.,contains}
@sa @ref find(KeyT&&) -- returns an iterator to an object element
@sa @ref contains(const json_pointer&) const -- checks the existence for a JSON pointer
@since version 3.6.0
*/
template<typename KeyT, typename std::enable_if<
not std::is_same<typename std::decay<KeyT>::type, json_pointer>::value, int>::type = 0>
bool contains(KeyT && key) const
{
return is_object() and m_value.object->find(std::forward<KeyT>(key)) != m_value.object->end();
}
/*!
@brief check the existence of an element in a JSON object given a JSON pointer
Check whether the given JSON pointer @a ptr can be resolved in the current
JSON value.
@note This method can be executed on any JSON value type.
@param[in] ptr JSON pointer to check its existence.
@return true if the JSON pointer can be resolved to a stored value, false
otherwise.
@post If `j.contains(ptr)` returns true, it is safe to call `j[ptr]`.
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@complexity Logarithmic in the size of the JSON object.
@liveexample{The following code shows an example for `contains()`.,contains_json_pointer}
@sa @ref contains(KeyT &&) const -- checks the existence of a key
@since version 3.7.0
*/
bool contains(const json_pointer& ptr) const
{
return ptr.contains(this);
}
/// @}
///////////////
// iterators //
///////////////
/// @name iterators
/// @{
/*!
@brief returns an iterator to the first element
Returns an iterator to the first element.
@image html range-begin-end.svg "Illustration from cppreference.com"
@return iterator to the first element
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
@liveexample{The following code shows an example for `begin()`.,begin}
@sa @ref cbegin() -- returns a const iterator to the beginning
@sa @ref end() -- returns an iterator to the end
@sa @ref cend() -- returns a const iterator to the end
@since version 1.0.0
*/
iterator begin() noexcept
{
iterator result(this);
result.set_begin();
return result;
}
/*!
@copydoc basic_json::cbegin()
*/
const_iterator begin() const noexcept
{
return cbegin();
}
/*!
@brief returns a const iterator to the first element
Returns a const iterator to the first element.
@image html range-begin-end.svg "Illustration from cppreference.com"
@return const iterator to the first element
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
- Has the semantics of `const_cast<const basic_json&>(*this).begin()`.
@liveexample{The following code shows an example for `cbegin()`.,cbegin}
@sa @ref begin() -- returns an iterator to the beginning
@sa @ref end() -- returns an iterator to the end
@sa @ref cend() -- returns a const iterator to the end
@since version 1.0.0
*/
const_iterator cbegin() const noexcept
{
const_iterator result(this);
result.set_begin();
return result;
}
/*!
@brief returns an iterator to one past the last element
Returns an iterator to one past the last element.
@image html range-begin-end.svg "Illustration from cppreference.com"
@return iterator one past the last element
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
@liveexample{The following code shows an example for `end()`.,end}
@sa @ref cend() -- returns a const iterator to the end
@sa @ref begin() -- returns an iterator to the beginning
@sa @ref cbegin() -- returns a const iterator to the beginning
@since version 1.0.0
*/
iterator end() noexcept
{
iterator result(this);
result.set_end();
return result;
}
/*!
@copydoc basic_json::cend()
*/
const_iterator end() const noexcept
{
return cend();
}
/*!
@brief returns a const iterator to one past the last element
Returns a const iterator to one past the last element.
@image html range-begin-end.svg "Illustration from cppreference.com"
@return const iterator one past the last element
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
- Has the semantics of `const_cast<const basic_json&>(*this).end()`.
@liveexample{The following code shows an example for `cend()`.,cend}
@sa @ref end() -- returns an iterator to the end
@sa @ref begin() -- returns an iterator to the beginning
@sa @ref cbegin() -- returns a const iterator to the beginning
@since version 1.0.0
*/
const_iterator cend() const noexcept
{
const_iterator result(this);
result.set_end();
return result;
}
/*!
@brief returns an iterator to the reverse-beginning
Returns an iterator to the reverse-beginning; that is, the last element.
@image html range-rbegin-rend.svg "Illustration from cppreference.com"
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer)
requirements:
- The complexity is constant.
- Has the semantics of `reverse_iterator(end())`.
@liveexample{The following code shows an example for `rbegin()`.,rbegin}
@sa @ref crbegin() -- returns a const reverse iterator to the beginning
@sa @ref rend() -- returns a reverse iterator to the end
@sa @ref crend() -- returns a const reverse iterator to the end
@since version 1.0.0
*/
reverse_iterator rbegin() noexcept
{
return reverse_iterator(end());
}
/*!
@copydoc basic_json::crbegin()
*/
const_reverse_iterator rbegin() const noexcept
{
return crbegin();
}
/*!
@brief returns an iterator to the reverse-end
Returns an iterator to the reverse-end; that is, one before the first
element.
@image html range-rbegin-rend.svg "Illustration from cppreference.com"
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer)
requirements:
- The complexity is constant.
- Has the semantics of `reverse_iterator(begin())`.
@liveexample{The following code shows an example for `rend()`.,rend}
@sa @ref crend() -- returns a const reverse iterator to the end
@sa @ref rbegin() -- returns a reverse iterator to the beginning
@sa @ref crbegin() -- returns a const reverse iterator to the beginning
@since version 1.0.0
*/
reverse_iterator rend() noexcept
{
return reverse_iterator(begin());
}
/*!
@copydoc basic_json::crend()
*/
const_reverse_iterator rend() const noexcept
{
return crend();
}
/*!
@brief returns a const reverse iterator to the last element
Returns a const iterator to the reverse-beginning; that is, the last
element.
@image html range-rbegin-rend.svg "Illustration from cppreference.com"
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer)
requirements:
- The complexity is constant.
- Has the semantics of `const_cast<const basic_json&>(*this).rbegin()`.
@liveexample{The following code shows an example for `crbegin()`.,crbegin}
@sa @ref rbegin() -- returns a reverse iterator to the beginning
@sa @ref rend() -- returns a reverse iterator to the end
@sa @ref crend() -- returns a const reverse iterator to the end
@since version 1.0.0
*/
const_reverse_iterator crbegin() const noexcept
{
return const_reverse_iterator(cend());
}
/*!
@brief returns a const reverse iterator to one before the first
Returns a const reverse iterator to the reverse-end; that is, one before
the first element.
@image html range-rbegin-rend.svg "Illustration from cppreference.com"
@complexity Constant.
@requirement This function helps `basic_json` satisfying the
[ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer)
requirements:
- The complexity is constant.
- Has the semantics of `const_cast<const basic_json&>(*this).rend()`.
@liveexample{The following code shows an example for `crend()`.,crend}
@sa @ref rend() -- returns a reverse iterator to the end
@sa @ref rbegin() -- returns a reverse iterator to the beginning
@sa @ref crbegin() -- returns a const reverse iterator to the beginning
@since version 1.0.0
*/
const_reverse_iterator crend() const noexcept
{
return const_reverse_iterator(cbegin());
}
public:
/*!
@brief wrapper to access iterator member functions in range-based for
This function allows to access @ref iterator::key() and @ref
iterator::value() during range-based for loops. In these loops, a
reference to the JSON values is returned, so there is no access to the
underlying iterator.
For loop without iterator_wrapper:
@code{cpp}
for (auto it = j_object.begin(); it != j_object.end(); ++it)
{
std::cout << "key: " << it.key() << ", value:" << it.value() << '\n';
}
@endcode
Range-based for loop without iterator proxy:
@code{cpp}
for (auto it : j_object)
{
// "it" is of type json::reference and has no key() member
std::cout << "value: " << it << '\n';
}
@endcode
Range-based for loop with iterator proxy:
@code{cpp}
for (auto it : json::iterator_wrapper(j_object))
{
std::cout << "key: " << it.key() << ", value:" << it.value() << '\n';
}
@endcode
@note When iterating over an array, `key()` will return the index of the
element as string (see example).
@param[in] ref reference to a JSON value
@return iteration proxy object wrapping @a ref with an interface to use in
range-based for loops
@liveexample{The following code shows how the wrapper is used,iterator_wrapper}
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@note The name of this function is not yet final and may change in the
future.
@deprecated This stream operator is deprecated and will be removed in
future 4.0.0 of the library. Please use @ref items() instead;
that is, replace `json::iterator_wrapper(j)` with `j.items()`.
*/
JSON_HEDLEY_DEPRECATED(3.1.0)
static iteration_proxy<iterator> iterator_wrapper(reference ref) noexcept
{
return ref.items();
}
/*!
@copydoc iterator_wrapper(reference)
*/
JSON_HEDLEY_DEPRECATED(3.1.0)
static iteration_proxy<const_iterator> iterator_wrapper(const_reference ref) noexcept
{
return ref.items();
}
/*!
@brief helper to access iterator member functions in range-based for
This function allows to access @ref iterator::key() and @ref
iterator::value() during range-based for loops. In these loops, a
reference to the JSON values is returned, so there is no access to the
underlying iterator.
For loop without `items()` function:
@code{cpp}
for (auto it = j_object.begin(); it != j_object.end(); ++it)
{
std::cout << "key: " << it.key() << ", value:" << it.value() << '\n';
}
@endcode
Range-based for loop without `items()` function:
@code{cpp}
for (auto it : j_object)
{
// "it" is of type json::reference and has no key() member
std::cout << "value: " << it << '\n';
}
@endcode
Range-based for loop with `items()` function:
@code{cpp}
for (auto& el : j_object.items())
{
std::cout << "key: " << el.key() << ", value:" << el.value() << '\n';
}
@endcode
The `items()` function also allows to use
[structured bindings](https://en.cppreference.com/w/cpp/language/structured_binding)
(C++17):
@code{cpp}
for (auto& [key, val] : j_object.items())
{
std::cout << "key: " << key << ", value:" << val << '\n';
}
@endcode
@note When iterating over an array, `key()` will return the index of the
element as string (see example). For primitive types (e.g., numbers),
`key()` returns an empty string.
@return iteration proxy object wrapping @a ref with an interface to use in
range-based for loops
@liveexample{The following code shows how the function is used.,items}
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@since version 3.1.0, structured bindings support since 3.5.0.
*/
iteration_proxy<iterator> items() noexcept
{
return iteration_proxy<iterator>(*this);
}
/*!
@copydoc items()
*/
iteration_proxy<const_iterator> items() const noexcept
{
return iteration_proxy<const_iterator>(*this);
}
/// @}
//////////////
// capacity //
//////////////
/// @name capacity
/// @{
/*!
@brief checks whether the container is empty.
Checks if a JSON value has no elements (i.e. whether its @ref size is `0`).
@return The return value depends on the different types and is
defined as follows:
Value type | return value
----------- | -------------
null | `true`
boolean | `false`
string | `false`
number | `false`
object | result of function `object_t::empty()`
array | result of function `array_t::empty()`
@liveexample{The following code uses `empty()` to check if a JSON
object contains any elements.,empty}
@complexity Constant, as long as @ref array_t and @ref object_t satisfy
the Container concept; that is, their `empty()` functions have constant
complexity.
@iterators No changes.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@note This function does not return whether a string stored as JSON value
is empty - it returns whether the JSON container itself is empty which is
false in the case of a string.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
- Has the semantics of `begin() == end()`.
@sa @ref size() -- returns the number of elements
@since version 1.0.0
*/
bool empty() const noexcept
{
switch (m_type)
{
case value_t::null:
{
// null values are empty
return true;
}
case value_t::array:
{
// delegate call to array_t::empty()
return m_value.array->empty();
}
case value_t::object:
{
// delegate call to object_t::empty()
return m_value.object->empty();
}
default:
{
// all other types are nonempty
return false;
}
}
}
/*!
@brief returns the number of elements
Returns the number of elements in a JSON value.
@return The return value depends on the different types and is
defined as follows:
Value type | return value
----------- | -------------
null | `0`
boolean | `1`
string | `1`
number | `1`
object | result of function object_t::size()
array | result of function array_t::size()
@liveexample{The following code calls `size()` on the different value
types.,size}
@complexity Constant, as long as @ref array_t and @ref object_t satisfy
the Container concept; that is, their size() functions have constant
complexity.
@iterators No changes.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@note This function does not return the length of a string stored as JSON
value - it returns the number of elements in the JSON value which is 1 in
the case of a string.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
- Has the semantics of `std::distance(begin(), end())`.
@sa @ref empty() -- checks whether the container is empty
@sa @ref max_size() -- returns the maximal number of elements
@since version 1.0.0
*/
size_type size() const noexcept
{
switch (m_type)
{
case value_t::null:
{
// null values are empty
return 0;
}
case value_t::array:
{
// delegate call to array_t::size()
return m_value.array->size();
}
case value_t::object:
{
// delegate call to object_t::size()
return m_value.object->size();
}
default:
{
// all other types have size 1
return 1;
}
}
}
/*!
@brief returns the maximum possible number of elements
Returns the maximum number of elements a JSON value is able to hold due to
system or library implementation limitations, i.e. `std::distance(begin(),
end())` for the JSON value.
@return The return value depends on the different types and is
defined as follows:
Value type | return value
----------- | -------------
null | `0` (same as `size()`)
boolean | `1` (same as `size()`)
string | `1` (same as `size()`)
number | `1` (same as `size()`)
object | result of function `object_t::max_size()`
array | result of function `array_t::max_size()`
@liveexample{The following code calls `max_size()` on the different value
types. Note the output is implementation specific.,max_size}
@complexity Constant, as long as @ref array_t and @ref object_t satisfy
the Container concept; that is, their `max_size()` functions have constant
complexity.
@iterators No changes.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@requirement This function helps `basic_json` satisfying the
[Container](https://en.cppreference.com/w/cpp/named_req/Container)
requirements:
- The complexity is constant.
- Has the semantics of returning `b.size()` where `b` is the largest
possible JSON value.
@sa @ref size() -- returns the number of elements
@since version 1.0.0
*/
size_type max_size() const noexcept
{
switch (m_type)
{
case value_t::array:
{
// delegate call to array_t::max_size()
return m_value.array->max_size();
}
case value_t::object:
{
// delegate call to object_t::max_size()
return m_value.object->max_size();
}
default:
{
// all other types have max_size() == size()
return size();
}
}
}
/// @}
///////////////
// modifiers //
///////////////
/// @name modifiers
/// @{
/*!
@brief clears the contents
Clears the content of a JSON value and resets it to the default value as
if @ref basic_json(value_t) would have been called with the current value
type from @ref type():
Value type | initial value
----------- | -------------
null | `null`
boolean | `false`
string | `""`
number | `0`
object | `{}`
array | `[]`
@post Has the same effect as calling
@code {.cpp}
*this = basic_json(type());
@endcode
@liveexample{The example below shows the effect of `clear()` to different
JSON types.,clear}
@complexity Linear in the size of the JSON value.
@iterators All iterators, pointers and references related to this container
are invalidated.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@sa @ref basic_json(value_t) -- constructor that creates an object with the
same value than calling `clear()`
@since version 1.0.0
*/
void clear() noexcept
{
switch (m_type)
{
case value_t::number_integer:
{
m_value.number_integer = 0;
break;
}
case value_t::number_unsigned:
{
m_value.number_unsigned = 0;
break;
}
case value_t::number_float:
{
m_value.number_float = 0.0;
break;
}
case value_t::boolean:
{
m_value.boolean = false;
break;
}
case value_t::string:
{
m_value.string->clear();
break;
}
case value_t::array:
{
m_value.array->clear();
break;
}
case value_t::object:
{
m_value.object->clear();
break;
}
default:
break;
}
}
/*!
@brief add an object to an array
Appends the given element @a val to the end of the JSON value. If the
function is called on a JSON null value, an empty array is created before
appending @a val.
@param[in] val the value to add to the JSON array
@throw type_error.308 when called on a type other than JSON array or
null; example: `"cannot use push_back() with number"`
@complexity Amortized constant.
@liveexample{The example shows how `push_back()` and `+=` can be used to
add elements to a JSON array. Note how the `null` value was silently
converted to a JSON array.,push_back}
@since version 1.0.0
*/
void push_back(basic_json&& val)
{
// push_back only works for null objects or arrays
if (JSON_HEDLEY_UNLIKELY(not(is_null() or is_array())))
{
JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name())));
}
// transform null object into an array
if (is_null())
{
m_type = value_t::array;
m_value = value_t::array;
assert_invariant();
}
// add element to array (move semantics)
m_value.array->push_back(std::move(val));
// invalidate object: mark it null so we do not call the destructor
// cppcheck-suppress accessMoved
val.m_type = value_t::null;
}
/*!
@brief add an object to an array
@copydoc push_back(basic_json&&)
*/
reference operator+=(basic_json&& val)
{
push_back(std::move(val));
return *this;
}
/*!
@brief add an object to an array
@copydoc push_back(basic_json&&)
*/
void push_back(const basic_json& val)
{
// push_back only works for null objects or arrays
if (JSON_HEDLEY_UNLIKELY(not(is_null() or is_array())))
{
JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name())));
}
// transform null object into an array
if (is_null())
{
m_type = value_t::array;
m_value = value_t::array;
assert_invariant();
}
// add element to array
m_value.array->push_back(val);
}
/*!
@brief add an object to an array
@copydoc push_back(basic_json&&)
*/
reference operator+=(const basic_json& val)
{
push_back(val);
return *this;
}
/*!
@brief add an object to an object
Inserts the given element @a val to the JSON object. If the function is
called on a JSON null value, an empty object is created before inserting
@a val.
@param[in] val the value to add to the JSON object
@throw type_error.308 when called on a type other than JSON object or
null; example: `"cannot use push_back() with number"`
@complexity Logarithmic in the size of the container, O(log(`size()`)).
@liveexample{The example shows how `push_back()` and `+=` can be used to
add elements to a JSON object. Note how the `null` value was silently
converted to a JSON object.,push_back__object_t__value}
@since version 1.0.0
*/
void push_back(const typename object_t::value_type& val)
{
// push_back only works for null objects or objects
if (JSON_HEDLEY_UNLIKELY(not(is_null() or is_object())))
{
JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name())));
}
// transform null object into an object
if (is_null())
{
m_type = value_t::object;
m_value = value_t::object;
assert_invariant();
}
// add element to array
m_value.object->insert(val);
}
/*!
@brief add an object to an object
@copydoc push_back(const typename object_t::value_type&)
*/
reference operator+=(const typename object_t::value_type& val)
{
push_back(val);
return *this;
}
/*!
@brief add an object to an object
This function allows to use `push_back` with an initializer list. In case
1. the current value is an object,
2. the initializer list @a init contains only two elements, and
3. the first element of @a init is a string,
@a init is converted into an object element and added using
@ref push_back(const typename object_t::value_type&). Otherwise, @a init
is converted to a JSON value and added using @ref push_back(basic_json&&).
@param[in] init an initializer list
@complexity Linear in the size of the initializer list @a init.
@note This function is required to resolve an ambiguous overload error,
because pairs like `{"key", "value"}` can be both interpreted as
`object_t::value_type` or `std::initializer_list<basic_json>`, see
https://github.com/nlohmann/json/issues/235 for more information.
@liveexample{The example shows how initializer lists are treated as
objects when possible.,push_back__initializer_list}
*/
void push_back(initializer_list_t init)
{
if (is_object() and init.size() == 2 and (*init.begin())->is_string())
{
basic_json&& key = init.begin()->moved_or_copied();
push_back(typename object_t::value_type(
std::move(key.get_ref<string_t&>()), (init.begin() + 1)->moved_or_copied()));
}
else
{
push_back(basic_json(init));
}
}
/*!
@brief add an object to an object
@copydoc push_back(initializer_list_t)
*/
reference operator+=(initializer_list_t init)
{
push_back(init);
return *this;
}
/*!
@brief add an object to an array
Creates a JSON value from the passed parameters @a args to the end of the
JSON value. If the function is called on a JSON null value, an empty array
is created before appending the value created from @a args.
@param[in] args arguments to forward to a constructor of @ref basic_json
@tparam Args compatible types to create a @ref basic_json object
@return reference to the inserted element
@throw type_error.311 when called on a type other than JSON array or
null; example: `"cannot use emplace_back() with number"`
@complexity Amortized constant.
@liveexample{The example shows how `push_back()` can be used to add
elements to a JSON array. Note how the `null` value was silently converted
to a JSON array.,emplace_back}
@since version 2.0.8, returns reference since 3.7.0
*/
template<class... Args>
reference emplace_back(Args&& ... args)
{
// emplace_back only works for null objects or arrays
if (JSON_HEDLEY_UNLIKELY(not(is_null() or is_array())))
{
JSON_THROW(type_error::create(311, "cannot use emplace_back() with " + std::string(type_name())));
}
// transform null object into an array
if (is_null())
{
m_type = value_t::array;
m_value = value_t::array;
assert_invariant();
}
// add element to array (perfect forwarding)
#ifdef JSON_HAS_CPP_17
return m_value.array->emplace_back(std::forward<Args>(args)...);
#else
m_value.array->emplace_back(std::forward<Args>(args)...);
return m_value.array->back();
#endif
}
/*!
@brief add an object to an object if key does not exist
Inserts a new element into a JSON object constructed in-place with the
given @a args if there is no element with the key in the container. If the
function is called on a JSON null value, an empty object is created before
appending the value created from @a args.
@param[in] args arguments to forward to a constructor of @ref basic_json
@tparam Args compatible types to create a @ref basic_json object
@return a pair consisting of an iterator to the inserted element, or the
already-existing element if no insertion happened, and a bool
denoting whether the insertion took place.
@throw type_error.311 when called on a type other than JSON object or
null; example: `"cannot use emplace() with number"`
@complexity Logarithmic in the size of the container, O(log(`size()`)).
@liveexample{The example shows how `emplace()` can be used to add elements
to a JSON object. Note how the `null` value was silently converted to a
JSON object. Further note how no value is added if there was already one
value stored with the same key.,emplace}
@since version 2.0.8
*/
template<class... Args>
std::pair<iterator, bool> emplace(Args&& ... args)
{
// emplace only works for null objects or arrays
if (JSON_HEDLEY_UNLIKELY(not(is_null() or is_object())))
{
JSON_THROW(type_error::create(311, "cannot use emplace() with " + std::string(type_name())));
}
// transform null object into an object
if (is_null())
{
m_type = value_t::object;
m_value = value_t::object;
assert_invariant();
}
// add element to array (perfect forwarding)
auto res = m_value.object->emplace(std::forward<Args>(args)...);
// create result iterator and set iterator to the result of emplace
auto it = begin();
it.m_it.object_iterator = res.first;
// return pair of iterator and boolean
return {it, res.second};
}
/// Helper for insertion of an iterator
/// @note: This uses std::distance to support GCC 4.8,
/// see https://github.com/nlohmann/json/pull/1257
template<typename... Args>
iterator insert_iterator(const_iterator pos, Args&& ... args)
{
iterator result(this);
assert(m_value.array != nullptr);
auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator);
m_value.array->insert(pos.m_it.array_iterator, std::forward<Args>(args)...);
result.m_it.array_iterator = m_value.array->begin() + insert_pos;
// This could have been written as:
// result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val);
// but the return value of insert is missing in GCC 4.8, so it is written this way instead.
return result;
}
/*!
@brief inserts element
Inserts element @a val before iterator @a pos.
@param[in] pos iterator before which the content will be inserted; may be
the end() iterator
@param[in] val element to insert
@return iterator pointing to the inserted @a val.
@throw type_error.309 if called on JSON values other than arrays;
example: `"cannot use insert() with string"`
@throw invalid_iterator.202 if @a pos is not an iterator of *this;
example: `"iterator does not fit current value"`
@complexity Constant plus linear in the distance between @a pos and end of
the container.
@liveexample{The example shows how `insert()` is used.,insert}
@since version 1.0.0
*/
iterator insert(const_iterator pos, const basic_json& val)
{
// insert only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
// check if iterator pos fits to this JSON value
if (JSON_HEDLEY_UNLIKELY(pos.m_object != this))
{
JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value"));
}
// insert to array and return iterator
return insert_iterator(pos, val);
}
JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name())));
}
/*!
@brief inserts element
@copydoc insert(const_iterator, const basic_json&)
*/
iterator insert(const_iterator pos, basic_json&& val)
{
return insert(pos, val);
}
/*!
@brief inserts elements
Inserts @a cnt copies of @a val before iterator @a pos.
@param[in] pos iterator before which the content will be inserted; may be
the end() iterator
@param[in] cnt number of copies of @a val to insert
@param[in] val element to insert
@return iterator pointing to the first element inserted, or @a pos if
`cnt==0`
@throw type_error.309 if called on JSON values other than arrays; example:
`"cannot use insert() with string"`
@throw invalid_iterator.202 if @a pos is not an iterator of *this;
example: `"iterator does not fit current value"`
@complexity Linear in @a cnt plus linear in the distance between @a pos
and end of the container.
@liveexample{The example shows how `insert()` is used.,insert__count}
@since version 1.0.0
*/
iterator insert(const_iterator pos, size_type cnt, const basic_json& val)
{
// insert only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
// check if iterator pos fits to this JSON value
if (JSON_HEDLEY_UNLIKELY(pos.m_object != this))
{
JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value"));
}
// insert to array and return iterator
return insert_iterator(pos, cnt, val);
}
JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name())));
}
/*!
@brief inserts elements
Inserts elements from range `[first, last)` before iterator @a pos.
@param[in] pos iterator before which the content will be inserted; may be
the end() iterator
@param[in] first begin of the range of elements to insert
@param[in] last end of the range of elements to insert
@throw type_error.309 if called on JSON values other than arrays; example:
`"cannot use insert() with string"`
@throw invalid_iterator.202 if @a pos is not an iterator of *this;
example: `"iterator does not fit current value"`
@throw invalid_iterator.210 if @a first and @a last do not belong to the
same JSON value; example: `"iterators do not fit"`
@throw invalid_iterator.211 if @a first or @a last are iterators into
container for which insert is called; example: `"passed iterators may not
belong to container"`
@return iterator pointing to the first element inserted, or @a pos if
`first==last`
@complexity Linear in `std::distance(first, last)` plus linear in the
distance between @a pos and end of the container.
@liveexample{The example shows how `insert()` is used.,insert__range}
@since version 1.0.0
*/
iterator insert(const_iterator pos, const_iterator first, const_iterator last)
{
// insert only works for arrays
if (JSON_HEDLEY_UNLIKELY(not is_array()))
{
JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name())));
}
// check if iterator pos fits to this JSON value
if (JSON_HEDLEY_UNLIKELY(pos.m_object != this))
{
JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value"));
}
// check if range iterators belong to the same JSON object
if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object))
{
JSON_THROW(invalid_iterator::create(210, "iterators do not fit"));
}
if (JSON_HEDLEY_UNLIKELY(first.m_object == this))
{
JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container"));
}
// insert to array and return iterator
return insert_iterator(pos, first.m_it.array_iterator, last.m_it.array_iterator);
}
/*!
@brief inserts elements
Inserts elements from initializer list @a ilist before iterator @a pos.
@param[in] pos iterator before which the content will be inserted; may be
the end() iterator
@param[in] ilist initializer list to insert the values from
@throw type_error.309 if called on JSON values other than arrays; example:
`"cannot use insert() with string"`
@throw invalid_iterator.202 if @a pos is not an iterator of *this;
example: `"iterator does not fit current value"`
@return iterator pointing to the first element inserted, or @a pos if
`ilist` is empty
@complexity Linear in `ilist.size()` plus linear in the distance between
@a pos and end of the container.
@liveexample{The example shows how `insert()` is used.,insert__ilist}
@since version 1.0.0
*/
iterator insert(const_iterator pos, initializer_list_t ilist)
{
// insert only works for arrays
if (JSON_HEDLEY_UNLIKELY(not is_array()))
{
JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name())));
}
// check if iterator pos fits to this JSON value
if (JSON_HEDLEY_UNLIKELY(pos.m_object != this))
{
JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value"));
}
// insert to array and return iterator
return insert_iterator(pos, ilist.begin(), ilist.end());
}
/*!
@brief inserts elements
Inserts elements from range `[first, last)`.
@param[in] first begin of the range of elements to insert
@param[in] last end of the range of elements to insert
@throw type_error.309 if called on JSON values other than objects; example:
`"cannot use insert() with string"`
@throw invalid_iterator.202 if iterator @a first or @a last does does not
point to an object; example: `"iterators first and last must point to
objects"`
@throw invalid_iterator.210 if @a first and @a last do not belong to the
same JSON value; example: `"iterators do not fit"`
@complexity Logarithmic: `O(N*log(size() + N))`, where `N` is the number
of elements to insert.
@liveexample{The example shows how `insert()` is used.,insert__range_object}
@since version 3.0.0
*/
void insert(const_iterator first, const_iterator last)
{
// insert only works for objects
if (JSON_HEDLEY_UNLIKELY(not is_object()))
{
JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name())));
}
// check if range iterators belong to the same JSON object
if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object))
{
JSON_THROW(invalid_iterator::create(210, "iterators do not fit"));
}
// passed iterators must belong to objects
if (JSON_HEDLEY_UNLIKELY(not first.m_object->is_object()))
{
JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects"));
}
m_value.object->insert(first.m_it.object_iterator, last.m_it.object_iterator);
}
/*!
@brief updates a JSON object from another object, overwriting existing keys
Inserts all values from JSON object @a j and overwrites existing keys.
@param[in] j JSON object to read values from
@throw type_error.312 if called on JSON values other than objects; example:
`"cannot use update() with string"`
@complexity O(N*log(size() + N)), where N is the number of elements to
insert.
@liveexample{The example shows how `update()` is used.,update}
@sa https://docs.python.org/3.6/library/stdtypes.html#dict.update
@since version 3.0.0
*/
void update(const_reference j)
{
// implicitly convert null value to an empty object
if (is_null())
{
m_type = value_t::object;
m_value.object = create<object_t>();
assert_invariant();
}
if (JSON_HEDLEY_UNLIKELY(not is_object()))
{
JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name())));
}
if (JSON_HEDLEY_UNLIKELY(not j.is_object()))
{
JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(j.type_name())));
}
for (auto it = j.cbegin(); it != j.cend(); ++it)
{
m_value.object->operator[](it.key()) = it.value();
}
}
/*!
@brief updates a JSON object from another object, overwriting existing keys
Inserts all values from from range `[first, last)` and overwrites existing
keys.
@param[in] first begin of the range of elements to insert
@param[in] last end of the range of elements to insert
@throw type_error.312 if called on JSON values other than objects; example:
`"cannot use update() with string"`
@throw invalid_iterator.202 if iterator @a first or @a last does does not
point to an object; example: `"iterators first and last must point to
objects"`
@throw invalid_iterator.210 if @a first and @a last do not belong to the
same JSON value; example: `"iterators do not fit"`
@complexity O(N*log(size() + N)), where N is the number of elements to
insert.
@liveexample{The example shows how `update()` is used__range.,update}
@sa https://docs.python.org/3.6/library/stdtypes.html#dict.update
@since version 3.0.0
*/
void update(const_iterator first, const_iterator last)
{
// implicitly convert null value to an empty object
if (is_null())
{
m_type = value_t::object;
m_value.object = create<object_t>();
assert_invariant();
}
if (JSON_HEDLEY_UNLIKELY(not is_object()))
{
JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name())));
}
// check if range iterators belong to the same JSON object
if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object))
{
JSON_THROW(invalid_iterator::create(210, "iterators do not fit"));
}
// passed iterators must belong to objects
if (JSON_HEDLEY_UNLIKELY(not first.m_object->is_object()
or not last.m_object->is_object()))
{
JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects"));
}
for (auto it = first; it != last; ++it)
{
m_value.object->operator[](it.key()) = it.value();
}
}
/*!
@brief exchanges the values
Exchanges the contents of the JSON value with those of @a other. Does not
invoke any move, copy, or swap operations on individual elements. All
iterators and references remain valid. The past-the-end iterator is
invalidated.
@param[in,out] other JSON value to exchange the contents with
@complexity Constant.
@liveexample{The example below shows how JSON values can be swapped with
`swap()`.,swap__reference}
@since version 1.0.0
*/
void swap(reference other) noexcept (
std::is_nothrow_move_constructible<value_t>::value and
std::is_nothrow_move_assignable<value_t>::value and
std::is_nothrow_move_constructible<json_value>::value and
std::is_nothrow_move_assignable<json_value>::value
)
{
std::swap(m_type, other.m_type);
std::swap(m_value, other.m_value);
assert_invariant();
}
/*!
@brief exchanges the values
Exchanges the contents of a JSON array with those of @a other. Does not
invoke any move, copy, or swap operations on individual elements. All
iterators and references remain valid. The past-the-end iterator is
invalidated.
@param[in,out] other array to exchange the contents with
@throw type_error.310 when JSON value is not an array; example: `"cannot
use swap() with string"`
@complexity Constant.
@liveexample{The example below shows how arrays can be swapped with
`swap()`.,swap__array_t}
@since version 1.0.0
*/
void swap(array_t& other)
{
// swap only works for arrays
if (JSON_HEDLEY_LIKELY(is_array()))
{
std::swap(*(m_value.array), other);
}
else
{
JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name())));
}
}
/*!
@brief exchanges the values
Exchanges the contents of a JSON object with those of @a other. Does not
invoke any move, copy, or swap operations on individual elements. All
iterators and references remain valid. The past-the-end iterator is
invalidated.
@param[in,out] other object to exchange the contents with
@throw type_error.310 when JSON value is not an object; example:
`"cannot use swap() with string"`
@complexity Constant.
@liveexample{The example below shows how objects can be swapped with
`swap()`.,swap__object_t}
@since version 1.0.0
*/
void swap(object_t& other)
{
// swap only works for objects
if (JSON_HEDLEY_LIKELY(is_object()))
{
std::swap(*(m_value.object), other);
}
else
{
JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name())));
}
}
/*!
@brief exchanges the values
Exchanges the contents of a JSON string with those of @a other. Does not
invoke any move, copy, or swap operations on individual elements. All
iterators and references remain valid. The past-the-end iterator is
invalidated.
@param[in,out] other string to exchange the contents with
@throw type_error.310 when JSON value is not a string; example: `"cannot
use swap() with boolean"`
@complexity Constant.
@liveexample{The example below shows how strings can be swapped with
`swap()`.,swap__string_t}
@since version 1.0.0
*/
void swap(string_t& other)
{
// swap only works for strings
if (JSON_HEDLEY_LIKELY(is_string()))
{
std::swap(*(m_value.string), other);
}
else
{
JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name())));
}
}
/// @}
public:
//////////////////////////////////////////
// lexicographical comparison operators //
//////////////////////////////////////////
/// @name lexicographical comparison operators
/// @{
/*!
@brief comparison: equal
Compares two JSON values for equality according to the following rules:
- Two JSON values are equal if (1) they are from the same type and (2)
their stored values are the same according to their respective
`operator==`.
- Integer and floating-point numbers are automatically converted before
comparison. Note than two NaN values are always treated as unequal.
- Two JSON null values are equal.
@note Floating-point inside JSON values numbers are compared with
`json::number_float_t::operator==` which is `double::operator==` by
default. To compare floating-point while respecting an epsilon, an alternative
[comparison function](https://github.com/mariokonrad/marnav/blob/master/src/marnav/math/floatingpoint.hpp#L34-#L39)
could be used, for instance
@code {.cpp}
template<typename T, typename = typename std::enable_if<std::is_floating_point<T>::value, T>::type>
inline bool is_same(T a, T b, T epsilon = std::numeric_limits<T>::epsilon()) noexcept
{
return std::abs(a - b) <= epsilon;
}
@endcode
@note NaN values never compare equal to themselves or to other NaN values.
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether the values @a lhs and @a rhs are equal
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@complexity Linear.
@liveexample{The example demonstrates comparing several JSON
types.,operator__equal}
@since version 1.0.0
*/
friend bool operator==(const_reference lhs, const_reference rhs) noexcept
{
const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type();
if (lhs_type == rhs_type)
{
switch (lhs_type)
{
case value_t::array:
return *lhs.m_value.array == *rhs.m_value.array;
case value_t::object:
return *lhs.m_value.object == *rhs.m_value.object;
case value_t::null:
return true;
case value_t::string:
return *lhs.m_value.string == *rhs.m_value.string;
case value_t::boolean:
return lhs.m_value.boolean == rhs.m_value.boolean;
case value_t::number_integer:
return lhs.m_value.number_integer == rhs.m_value.number_integer;
case value_t::number_unsigned:
return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned;
case value_t::number_float:
return lhs.m_value.number_float == rhs.m_value.number_float;
default:
return false;
}
}
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
{
return static_cast<number_float_t>(lhs.m_value.number_integer) == rhs.m_value.number_float;
}
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
{
return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_integer);
}
else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_float)
{
return static_cast<number_float_t>(lhs.m_value.number_unsigned) == rhs.m_value.number_float;
}
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_unsigned)
{
return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_unsigned);
}
else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_integer)
{
return static_cast<number_integer_t>(lhs.m_value.number_unsigned) == rhs.m_value.number_integer;
}
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_unsigned)
{
return lhs.m_value.number_integer == static_cast<number_integer_t>(rhs.m_value.number_unsigned);
}
return false;
}
/*!
@brief comparison: equal
@copydoc operator==(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator==(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs == basic_json(rhs);
}
/*!
@brief comparison: equal
@copydoc operator==(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator==(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) == rhs;
}
/*!
@brief comparison: not equal
Compares two JSON values for inequality by calculating `not (lhs == rhs)`.
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether the values @a lhs and @a rhs are not equal
@complexity Linear.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example demonstrates comparing several JSON
types.,operator__notequal}
@since version 1.0.0
*/
friend bool operator!=(const_reference lhs, const_reference rhs) noexcept
{
return not (lhs == rhs);
}
/*!
@brief comparison: not equal
@copydoc operator!=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator!=(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs != basic_json(rhs);
}
/*!
@brief comparison: not equal
@copydoc operator!=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator!=(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) != rhs;
}
/*!
@brief comparison: less than
Compares whether one JSON value @a lhs is less than another JSON value @a
rhs according to the following rules:
- If @a lhs and @a rhs have the same type, the values are compared using
the default `<` operator.
- Integer and floating-point numbers are automatically converted before
comparison
- In case @a lhs and @a rhs have different types, the values are ignored
and the order of the types is considered, see
@ref operator<(const value_t, const value_t).
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether @a lhs is less than @a rhs
@complexity Linear.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example demonstrates comparing several JSON
types.,operator__less}
@since version 1.0.0
*/
friend bool operator<(const_reference lhs, const_reference rhs) noexcept
{
const auto lhs_type = lhs.type();
const auto rhs_type = rhs.type();
if (lhs_type == rhs_type)
{
switch (lhs_type)
{
case value_t::array:
// note parentheses are necessary, see
// https://github.com/nlohmann/json/issues/1530
return (*lhs.m_value.array) < (*rhs.m_value.array);
case value_t::object:
return (*lhs.m_value.object) < (*rhs.m_value.object);
case value_t::null:
return false;
case value_t::string:
return (*lhs.m_value.string) < (*rhs.m_value.string);
case value_t::boolean:
return (lhs.m_value.boolean) < (rhs.m_value.boolean);
case value_t::number_integer:
return (lhs.m_value.number_integer) < (rhs.m_value.number_integer);
case value_t::number_unsigned:
return (lhs.m_value.number_unsigned) < (rhs.m_value.number_unsigned);
case value_t::number_float:
return (lhs.m_value.number_float) < (rhs.m_value.number_float);
default:
return false;
}
}
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
{
return static_cast<number_float_t>(lhs.m_value.number_integer) < rhs.m_value.number_float;
}
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
{
return lhs.m_value.number_float < static_cast<number_float_t>(rhs.m_value.number_integer);
}
else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_float)
{
return static_cast<number_float_t>(lhs.m_value.number_unsigned) < rhs.m_value.number_float;
}
else if (lhs_type == value_t::number_float and rhs_type == value_t::number_unsigned)
{
return lhs.m_value.number_float < static_cast<number_float_t>(rhs.m_value.number_unsigned);
}
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_unsigned)
{
return lhs.m_value.number_integer < static_cast<number_integer_t>(rhs.m_value.number_unsigned);
}
else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_integer)
{
return static_cast<number_integer_t>(lhs.m_value.number_unsigned) < rhs.m_value.number_integer;
}
// We only reach this line if we cannot compare values. In that case,
// we compare types. Note we have to call the operator explicitly,
// because MSVC has problems otherwise.
return operator<(lhs_type, rhs_type);
}
/*!
@brief comparison: less than
@copydoc operator<(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator<(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs < basic_json(rhs);
}
/*!
@brief comparison: less than
@copydoc operator<(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator<(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) < rhs;
}
/*!
@brief comparison: less than or equal
Compares whether one JSON value @a lhs is less than or equal to another
JSON value by calculating `not (rhs < lhs)`.
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether @a lhs is less than or equal to @a rhs
@complexity Linear.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example demonstrates comparing several JSON
types.,operator__greater}
@since version 1.0.0
*/
friend bool operator<=(const_reference lhs, const_reference rhs) noexcept
{
return not (rhs < lhs);
}
/*!
@brief comparison: less than or equal
@copydoc operator<=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator<=(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs <= basic_json(rhs);
}
/*!
@brief comparison: less than or equal
@copydoc operator<=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator<=(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) <= rhs;
}
/*!
@brief comparison: greater than
Compares whether one JSON value @a lhs is greater than another
JSON value by calculating `not (lhs <= rhs)`.
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether @a lhs is greater than to @a rhs
@complexity Linear.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example demonstrates comparing several JSON
types.,operator__lessequal}
@since version 1.0.0
*/
friend bool operator>(const_reference lhs, const_reference rhs) noexcept
{
return not (lhs <= rhs);
}
/*!
@brief comparison: greater than
@copydoc operator>(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator>(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs > basic_json(rhs);
}
/*!
@brief comparison: greater than
@copydoc operator>(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator>(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) > rhs;
}
/*!
@brief comparison: greater than or equal
Compares whether one JSON value @a lhs is greater than or equal to another
JSON value by calculating `not (lhs < rhs)`.
@param[in] lhs first JSON value to consider
@param[in] rhs second JSON value to consider
@return whether @a lhs is greater than or equal to @a rhs
@complexity Linear.
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@liveexample{The example demonstrates comparing several JSON
types.,operator__greaterequal}
@since version 1.0.0
*/
friend bool operator>=(const_reference lhs, const_reference rhs) noexcept
{
return not (lhs < rhs);
}
/*!
@brief comparison: greater than or equal
@copydoc operator>=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator>=(const_reference lhs, const ScalarType rhs) noexcept
{
return lhs >= basic_json(rhs);
}
/*!
@brief comparison: greater than or equal
@copydoc operator>=(const_reference, const_reference)
*/
template<typename ScalarType, typename std::enable_if<
std::is_scalar<ScalarType>::value, int>::type = 0>
friend bool operator>=(const ScalarType lhs, const_reference rhs) noexcept
{
return basic_json(lhs) >= rhs;
}
/// @}
///////////////////
// serialization //
///////////////////
/// @name serialization
/// @{
/*!
@brief serialize to stream
Serialize the given JSON value @a j to the output stream @a o. The JSON
value will be serialized using the @ref dump member function.
- The indentation of the output can be controlled with the member variable
`width` of the output stream @a o. For instance, using the manipulator
`std::setw(4)` on @a o sets the indentation level to `4` and the
serialization result is the same as calling `dump(4)`.
- The indentation character can be controlled with the member variable
`fill` of the output stream @a o. For instance, the manipulator
`std::setfill('\\t')` sets indentation to use a tab character rather than
the default space character.
@param[in,out] o stream to serialize to
@param[in] j JSON value to serialize
@return the stream @a o
@throw type_error.316 if a string stored inside the JSON value is not
UTF-8 encoded
@complexity Linear.
@liveexample{The example below shows the serialization with different
parameters to `width` to adjust the indentation level.,operator_serialize}
@since version 1.0.0; indentation character added in version 3.0.0
*/
friend std::ostream& operator<<(std::ostream& o, const basic_json& j)
{
// read width member and use it as indentation parameter if nonzero
const bool pretty_print = o.width() > 0;
const auto indentation = pretty_print ? o.width() : 0;
// reset width to 0 for subsequent calls to this stream
o.width(0);
// do the actual serialization
serializer s(detail::output_adapter<char>(o), o.fill());
s.dump(j, pretty_print, false, static_cast<unsigned int>(indentation));
return o;
}
/*!
@brief serialize to stream
@deprecated This stream operator is deprecated and will be removed in
future 4.0.0 of the library. Please use
@ref operator<<(std::ostream&, const basic_json&)
instead; that is, replace calls like `j >> o;` with `o << j;`.
@since version 1.0.0; deprecated since version 3.0.0
*/
JSON_HEDLEY_DEPRECATED(3.0.0)
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
{
return o << j;
}
/// @}
/////////////////////
// deserialization //
/////////////////////
/// @name deserialization
/// @{
/*!
@brief deserialize from a compatible input
This function reads from a compatible input. Examples are:
- an array of 1-byte values
- strings with character/literal type with size of 1 byte
- input streams
- container with contiguous storage of 1-byte values. Compatible container
types include `std::vector`, `std::string`, `std::array`,
`std::valarray`, and `std::initializer_list`. Furthermore, C-style
arrays can be used with `std::begin()`/`std::end()`. User-defined
containers can be used as long as they implement random-access iterators
and a contiguous storage.
@pre Each element of the container has a size of 1 byte. Violating this
precondition yields undefined behavior. **This precondition is enforced
with a static assertion.**
@pre The container storage is contiguous. Violating this precondition
yields undefined behavior. **This precondition is enforced with an
assertion.**
@warning There is no way to enforce all preconditions at compile-time. If
the function is called with a noncompliant container and with
assertions switched off, the behavior is undefined and will most
likely yield segmentation violation.
@param[in] i input to read from
@param[in] cb a parser callback function of type @ref parser_callback_t
which is used to control the deserialization by filtering unwanted values
(optional)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.101 if a parse error occurs; example: `""unexpected end
of input; expected string literal""`
@throw parse_error.102 if to_unicode fails or surrogate error
@throw parse_error.103 if to_unicode fails
@complexity Linear in the length of the input. The parser is a predictive
LL(1) parser. The complexity can be higher if the parser callback function
@a cb has a super-linear complexity.
@note A UTF-8 byte order mark is silently ignored.
@liveexample{The example below demonstrates the `parse()` function reading
from an array.,parse__array__parser_callback_t}
@liveexample{The example below demonstrates the `parse()` function with
and without callback function.,parse__string__parser_callback_t}
@liveexample{The example below demonstrates the `parse()` function with
and without callback function.,parse__istream__parser_callback_t}
@liveexample{The example below demonstrates the `parse()` function reading
from a contiguous container.,parse__contiguouscontainer__parser_callback_t}
@since version 2.0.3 (contiguous containers)
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json parse(detail::input_adapter&& i,
const parser_callback_t cb = nullptr,
const bool allow_exceptions = true)
{
basic_json result;
parser(i, cb, allow_exceptions).parse(true, result);
return result;
}
static bool accept(detail::input_adapter&& i)
{
return parser(i).accept(true);
}
/*!
@brief generate SAX events
The SAX event lister must follow the interface of @ref json_sax.
This function reads from a compatible input. Examples are:
- an array of 1-byte values
- strings with character/literal type with size of 1 byte
- input streams
- container with contiguous storage of 1-byte values. Compatible container
types include `std::vector`, `std::string`, `std::array`,
`std::valarray`, and `std::initializer_list`. Furthermore, C-style
arrays can be used with `std::begin()`/`std::end()`. User-defined
containers can be used as long as they implement random-access iterators
and a contiguous storage.
@pre Each element of the container has a size of 1 byte. Violating this
precondition yields undefined behavior. **This precondition is enforced
with a static assertion.**
@pre The container storage is contiguous. Violating this precondition
yields undefined behavior. **This precondition is enforced with an
assertion.**
@warning There is no way to enforce all preconditions at compile-time. If
the function is called with a noncompliant container and with
assertions switched off, the behavior is undefined and will most
likely yield segmentation violation.
@param[in] i input to read from
@param[in,out] sax SAX event listener
@param[in] format the format to parse (JSON, CBOR, MessagePack, or UBJSON)
@param[in] strict whether the input has to be consumed completely
@return return value of the last processed SAX event
@throw parse_error.101 if a parse error occurs; example: `""unexpected end
of input; expected string literal""`
@throw parse_error.102 if to_unicode fails or surrogate error
@throw parse_error.103 if to_unicode fails
@complexity Linear in the length of the input. The parser is a predictive
LL(1) parser. The complexity can be higher if the SAX consumer @a sax has
a super-linear complexity.
@note A UTF-8 byte order mark is silently ignored.
@liveexample{The example below demonstrates the `sax_parse()` function
reading from string and processing the events with a user-defined SAX
event consumer.,sax_parse}
@since version 3.2.0
*/
template <typename SAX>
JSON_HEDLEY_NON_NULL(2)
static bool sax_parse(detail::input_adapter&& i, SAX* sax,
input_format_t format = input_format_t::json,
const bool strict = true)
{
assert(sax);
return format == input_format_t::json
? parser(std::move(i)).sax_parse(sax, strict)
: detail::binary_reader<basic_json, SAX>(std::move(i)).sax_parse(format, sax, strict);
}
/*!
@brief deserialize from an iterator range with contiguous storage
This function reads from an iterator range of a container with contiguous
storage of 1-byte values. Compatible container types include
`std::vector`, `std::string`, `std::array`, `std::valarray`, and
`std::initializer_list`. Furthermore, C-style arrays can be used with
`std::begin()`/`std::end()`. User-defined containers can be used as long
as they implement random-access iterators and a contiguous storage.
@pre The iterator range is contiguous. Violating this precondition yields
undefined behavior. **This precondition is enforced with an assertion.**
@pre Each element in the range has a size of 1 byte. Violating this
precondition yields undefined behavior. **This precondition is enforced
with a static assertion.**
@warning There is no way to enforce all preconditions at compile-time. If
the function is called with noncompliant iterators and with
assertions switched off, the behavior is undefined and will most
likely yield segmentation violation.
@tparam IteratorType iterator of container with contiguous storage
@param[in] first begin of the range to parse (included)
@param[in] last end of the range to parse (excluded)
@param[in] cb a parser callback function of type @ref parser_callback_t
which is used to control the deserialization by filtering unwanted values
(optional)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.101 in case of an unexpected token
@throw parse_error.102 if to_unicode fails or surrogate error
@throw parse_error.103 if to_unicode fails
@complexity Linear in the length of the input. The parser is a predictive
LL(1) parser. The complexity can be higher if the parser callback function
@a cb has a super-linear complexity.
@note A UTF-8 byte order mark is silently ignored.
@liveexample{The example below demonstrates the `parse()` function reading
from an iterator range.,parse__iteratortype__parser_callback_t}
@since version 2.0.3
*/
template<class IteratorType, typename std::enable_if<
std::is_base_of<
std::random_access_iterator_tag,
typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0>
static basic_json parse(IteratorType first, IteratorType last,
const parser_callback_t cb = nullptr,
const bool allow_exceptions = true)
{
basic_json result;
parser(detail::input_adapter(first, last), cb, allow_exceptions).parse(true, result);
return result;
}
template<class IteratorType, typename std::enable_if<
std::is_base_of<
std::random_access_iterator_tag,
typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0>
static bool accept(IteratorType first, IteratorType last)
{
return parser(detail::input_adapter(first, last)).accept(true);
}
template<class IteratorType, class SAX, typename std::enable_if<
std::is_base_of<
std::random_access_iterator_tag,
typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0>
JSON_HEDLEY_NON_NULL(3)
static bool sax_parse(IteratorType first, IteratorType last, SAX* sax)
{
return parser(detail::input_adapter(first, last)).sax_parse(sax);
}
/*!
@brief deserialize from stream
@deprecated This stream operator is deprecated and will be removed in
version 4.0.0 of the library. Please use
@ref operator>>(std::istream&, basic_json&)
instead; that is, replace calls like `j << i;` with `i >> j;`.
@since version 1.0.0; deprecated since version 3.0.0
*/
JSON_HEDLEY_DEPRECATED(3.0.0)
friend std::istream& operator<<(basic_json& j, std::istream& i)
{
return operator>>(i, j);
}
/*!
@brief deserialize from stream
Deserializes an input stream to a JSON value.
@param[in,out] i input stream to read a serialized JSON value from
@param[in,out] j JSON value to write the deserialized input to
@throw parse_error.101 in case of an unexpected token
@throw parse_error.102 if to_unicode fails or surrogate error
@throw parse_error.103 if to_unicode fails
@complexity Linear in the length of the input. The parser is a predictive
LL(1) parser.
@note A UTF-8 byte order mark is silently ignored.
@liveexample{The example below shows how a JSON value is constructed by
reading a serialization from a stream.,operator_deserialize}
@sa parse(std::istream&, const parser_callback_t) for a variant with a
parser callback function to filter values while parsing
@since version 1.0.0
*/
friend std::istream& operator>>(std::istream& i, basic_json& j)
{
parser(detail::input_adapter(i)).parse(false, j);
return i;
}
/// @}
///////////////////////////
// convenience functions //
///////////////////////////
/*!
@brief return the type as string
Returns the type name as string to be used in error messages - usually to
indicate that a function was called on a wrong JSON type.
@return a string representation of a the @a m_type member:
Value type | return value
----------- | -------------
null | `"null"`
boolean | `"boolean"`
string | `"string"`
number | `"number"` (for all number types)
object | `"object"`
array | `"array"`
discarded | `"discarded"`
@exceptionsafety No-throw guarantee: this function never throws exceptions.
@complexity Constant.
@liveexample{The following code exemplifies `type_name()` for all JSON
types.,type_name}
@sa @ref type() -- return the type of the JSON value
@sa @ref operator value_t() -- return the type of the JSON value (implicit)
@since version 1.0.0, public since 2.1.0, `const char*` and `noexcept`
since 3.0.0
*/
JSON_HEDLEY_RETURNS_NON_NULL
const char* type_name() const noexcept
{
{
switch (m_type)
{
case value_t::null:
return "null";
case value_t::object:
return "object";
case value_t::array:
return "array";
case value_t::string:
return "string";
case value_t::boolean:
return "boolean";
case value_t::discarded:
return "discarded";
default:
return "number";
}
}
}
private:
//////////////////////
// member variables //
//////////////////////
/// the type of the current element
value_t m_type = value_t::null;
/// the value of the current element
json_value m_value = {};
//////////////////////////////////////////
// binary serialization/deserialization //
//////////////////////////////////////////
/// @name binary serialization/deserialization support
/// @{
public:
/*!
@brief create a CBOR serialization of a given JSON value
Serializes a given JSON value @a j to a byte vector using the CBOR (Concise
Binary Object Representation) serialization format. CBOR is a binary
serialization format which aims to be more compact than JSON itself, yet
more efficient to parse.
The library uses the following mapping from JSON values types to
CBOR types according to the CBOR specification (RFC 7049):
JSON value type | value/range | CBOR type | first byte
--------------- | ------------------------------------------ | ---------------------------------- | ---------------
null | `null` | Null | 0xF6
boolean | `true` | True | 0xF5
boolean | `false` | False | 0xF4
number_integer | -9223372036854775808..-2147483649 | Negative integer (8 bytes follow) | 0x3B
number_integer | -2147483648..-32769 | Negative integer (4 bytes follow) | 0x3A
number_integer | -32768..-129 | Negative integer (2 bytes follow) | 0x39
number_integer | -128..-25 | Negative integer (1 byte follow) | 0x38
number_integer | -24..-1 | Negative integer | 0x20..0x37
number_integer | 0..23 | Integer | 0x00..0x17
number_integer | 24..255 | Unsigned integer (1 byte follow) | 0x18
number_integer | 256..65535 | Unsigned integer (2 bytes follow) | 0x19
number_integer | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A
number_integer | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B
number_unsigned | 0..23 | Integer | 0x00..0x17
number_unsigned | 24..255 | Unsigned integer (1 byte follow) | 0x18
number_unsigned | 256..65535 | Unsigned integer (2 bytes follow) | 0x19
number_unsigned | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A
number_unsigned | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B
number_float | *any value* | Double-Precision Float | 0xFB
string | *length*: 0..23 | UTF-8 string | 0x60..0x77
string | *length*: 23..255 | UTF-8 string (1 byte follow) | 0x78
string | *length*: 256..65535 | UTF-8 string (2 bytes follow) | 0x79
string | *length*: 65536..4294967295 | UTF-8 string (4 bytes follow) | 0x7A
string | *length*: 4294967296..18446744073709551615 | UTF-8 string (8 bytes follow) | 0x7B
array | *size*: 0..23 | array | 0x80..0x97
array | *size*: 23..255 | array (1 byte follow) | 0x98
array | *size*: 256..65535 | array (2 bytes follow) | 0x99
array | *size*: 65536..4294967295 | array (4 bytes follow) | 0x9A
array | *size*: 4294967296..18446744073709551615 | array (8 bytes follow) | 0x9B
object | *size*: 0..23 | map | 0xA0..0xB7
object | *size*: 23..255 | map (1 byte follow) | 0xB8
object | *size*: 256..65535 | map (2 bytes follow) | 0xB9
object | *size*: 65536..4294967295 | map (4 bytes follow) | 0xBA
object | *size*: 4294967296..18446744073709551615 | map (8 bytes follow) | 0xBB
@note The mapping is **complete** in the sense that any JSON value type
can be converted to a CBOR value.
@note If NaN or Infinity are stored inside a JSON number, they are
serialized properly. This behavior differs from the @ref dump()
function which serializes NaN or Infinity to `null`.
@note The following CBOR types are not used in the conversion:
- byte strings (0x40..0x5F)
- UTF-8 strings terminated by "break" (0x7F)
- arrays terminated by "break" (0x9F)
- maps terminated by "break" (0xBF)
- date/time (0xC0..0xC1)
- bignum (0xC2..0xC3)
- decimal fraction (0xC4)
- bigfloat (0xC5)
- tagged items (0xC6..0xD4, 0xD8..0xDB)
- expected conversions (0xD5..0xD7)
- simple values (0xE0..0xF3, 0xF8)
- undefined (0xF7)
- half and single-precision floats (0xF9-0xFA)
- break (0xFF)
@param[in] j JSON value to serialize
@return MessagePack serialization as byte vector
@complexity Linear in the size of the JSON value @a j.
@liveexample{The example shows the serialization of a JSON value to a byte
vector in CBOR format.,to_cbor}
@sa http://cbor.io
@sa @ref from_cbor(detail::input_adapter&&, const bool, const bool) for the
analogous deserialization
@sa @ref to_msgpack(const basic_json&) for the related MessagePack format
@sa @ref to_ubjson(const basic_json&, const bool, const bool) for the
related UBJSON format
@since version 2.0.9
*/
static std::vector<uint8_t> to_cbor(const basic_json& j)
{
std::vector<uint8_t> result;
to_cbor(j, result);
return result;
}
static void to_cbor(const basic_json& j, detail::output_adapter<uint8_t> o)
{
binary_writer<uint8_t>(o).write_cbor(j);
}
static void to_cbor(const basic_json& j, detail::output_adapter<char> o)
{
binary_writer<char>(o).write_cbor(j);
}
/*!
@brief create a MessagePack serialization of a given JSON value
Serializes a given JSON value @a j to a byte vector using the MessagePack
serialization format. MessagePack is a binary serialization format which
aims to be more compact than JSON itself, yet more efficient to parse.
The library uses the following mapping from JSON values types to
MessagePack types according to the MessagePack specification:
JSON value type | value/range | MessagePack type | first byte
--------------- | --------------------------------- | ---------------- | ----------
null | `null` | nil | 0xC0
boolean | `true` | true | 0xC3
boolean | `false` | false | 0xC2
number_integer | -9223372036854775808..-2147483649 | int64 | 0xD3
number_integer | -2147483648..-32769 | int32 | 0xD2
number_integer | -32768..-129 | int16 | 0xD1
number_integer | -128..-33 | int8 | 0xD0
number_integer | -32..-1 | negative fixint | 0xE0..0xFF
number_integer | 0..127 | positive fixint | 0x00..0x7F
number_integer | 128..255 | uint 8 | 0xCC
number_integer | 256..65535 | uint 16 | 0xCD
number_integer | 65536..4294967295 | uint 32 | 0xCE
number_integer | 4294967296..18446744073709551615 | uint 64 | 0xCF
number_unsigned | 0..127 | positive fixint | 0x00..0x7F
number_unsigned | 128..255 | uint 8 | 0xCC
number_unsigned | 256..65535 | uint 16 | 0xCD
number_unsigned | 65536..4294967295 | uint 32 | 0xCE
number_unsigned | 4294967296..18446744073709551615 | uint 64 | 0xCF
number_float | *any value* | float 64 | 0xCB
string | *length*: 0..31 | fixstr | 0xA0..0xBF
string | *length*: 32..255 | str 8 | 0xD9
string | *length*: 256..65535 | str 16 | 0xDA
string | *length*: 65536..4294967295 | str 32 | 0xDB
array | *size*: 0..15 | fixarray | 0x90..0x9F
array | *size*: 16..65535 | array 16 | 0xDC
array | *size*: 65536..4294967295 | array 32 | 0xDD
object | *size*: 0..15 | fix map | 0x80..0x8F
object | *size*: 16..65535 | map 16 | 0xDE
object | *size*: 65536..4294967295 | map 32 | 0xDF
@note The mapping is **complete** in the sense that any JSON value type
can be converted to a MessagePack value.
@note The following values can **not** be converted to a MessagePack value:
- strings with more than 4294967295 bytes
- arrays with more than 4294967295 elements
- objects with more than 4294967295 elements
@note The following MessagePack types are not used in the conversion:
- bin 8 - bin 32 (0xC4..0xC6)
- ext 8 - ext 32 (0xC7..0xC9)
- float 32 (0xCA)
- fixext 1 - fixext 16 (0xD4..0xD8)
@note Any MessagePack output created @ref to_msgpack can be successfully
parsed by @ref from_msgpack.
@note If NaN or Infinity are stored inside a JSON number, they are
serialized properly. This behavior differs from the @ref dump()
function which serializes NaN or Infinity to `null`.
@param[in] j JSON value to serialize
@return MessagePack serialization as byte vector
@complexity Linear in the size of the JSON value @a j.
@liveexample{The example shows the serialization of a JSON value to a byte
vector in MessagePack format.,to_msgpack}
@sa http://msgpack.org
@sa @ref from_msgpack for the analogous deserialization
@sa @ref to_cbor(const basic_json& for the related CBOR format
@sa @ref to_ubjson(const basic_json&, const bool, const bool) for the
related UBJSON format
@since version 2.0.9
*/
static std::vector<uint8_t> to_msgpack(const basic_json& j)
{
std::vector<uint8_t> result;
to_msgpack(j, result);
return result;
}
static void to_msgpack(const basic_json& j, detail::output_adapter<uint8_t> o)
{
binary_writer<uint8_t>(o).write_msgpack(j);
}
static void to_msgpack(const basic_json& j, detail::output_adapter<char> o)
{
binary_writer<char>(o).write_msgpack(j);
}
/*!
@brief create a UBJSON serialization of a given JSON value
Serializes a given JSON value @a j to a byte vector using the UBJSON
(Universal Binary JSON) serialization format. UBJSON aims to be more compact
than JSON itself, yet more efficient to parse.
The library uses the following mapping from JSON values types to
UBJSON types according to the UBJSON specification:
JSON value type | value/range | UBJSON type | marker
--------------- | --------------------------------- | ----------- | ------
null | `null` | null | `Z`
boolean | `true` | true | `T`
boolean | `false` | false | `F`
number_integer | -9223372036854775808..-2147483649 | int64 | `L`
number_integer | -2147483648..-32769 | int32 | `l`
number_integer | -32768..-129 | int16 | `I`
number_integer | -128..127 | int8 | `i`
number_integer | 128..255 | uint8 | `U`
number_integer | 256..32767 | int16 | `I`
number_integer | 32768..2147483647 | int32 | `l`
number_integer | 2147483648..9223372036854775807 | int64 | `L`
number_unsigned | 0..127 | int8 | `i`
number_unsigned | 128..255 | uint8 | `U`
number_unsigned | 256..32767 | int16 | `I`
number_unsigned | 32768..2147483647 | int32 | `l`
number_unsigned | 2147483648..9223372036854775807 | int64 | `L`
number_float | *any value* | float64 | `D`
string | *with shortest length indicator* | string | `S`
array | *see notes on optimized format* | array | `[`
object | *see notes on optimized format* | map | `{`
@note The mapping is **complete** in the sense that any JSON value type
can be converted to a UBJSON value.
@note The following values can **not** be converted to a UBJSON value:
- strings with more than 9223372036854775807 bytes (theoretical)
- unsigned integer numbers above 9223372036854775807
@note The following markers are not used in the conversion:
- `Z`: no-op values are not created.
- `C`: single-byte strings are serialized with `S` markers.
@note Any UBJSON output created @ref to_ubjson can be successfully parsed
by @ref from_ubjson.
@note If NaN or Infinity are stored inside a JSON number, they are
serialized properly. This behavior differs from the @ref dump()
function which serializes NaN or Infinity to `null`.
@note The optimized formats for containers are supported: Parameter
@a use_size adds size information to the beginning of a container and
removes the closing marker. Parameter @a use_type further checks
whether all elements of a container have the same type and adds the
type marker to the beginning of the container. The @a use_type
parameter must only be used together with @a use_size = true. Note
that @a use_size = true alone may result in larger representations -
the benefit of this parameter is that the receiving side is
immediately informed on the number of elements of the container.
@param[in] j JSON value to serialize
@param[in] use_size whether to add size annotations to container types
@param[in] use_type whether to add type annotations to container types
(must be combined with @a use_size = true)
@return UBJSON serialization as byte vector
@complexity Linear in the size of the JSON value @a j.
@liveexample{The example shows the serialization of a JSON value to a byte
vector in UBJSON format.,to_ubjson}
@sa http://ubjson.org
@sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the
analogous deserialization
@sa @ref to_cbor(const basic_json& for the related CBOR format
@sa @ref to_msgpack(const basic_json&) for the related MessagePack format
@since version 3.1.0
*/
static std::vector<uint8_t> to_ubjson(const basic_json& j,
const bool use_size = false,
const bool use_type = false)
{
std::vector<uint8_t> result;
to_ubjson(j, result, use_size, use_type);
return result;
}
static void to_ubjson(const basic_json& j, detail::output_adapter<uint8_t> o,
const bool use_size = false, const bool use_type = false)
{
binary_writer<uint8_t>(o).write_ubjson(j, use_size, use_type);
}
static void to_ubjson(const basic_json& j, detail::output_adapter<char> o,
const bool use_size = false, const bool use_type = false)
{
binary_writer<char>(o).write_ubjson(j, use_size, use_type);
}
/*!
@brief Serializes the given JSON object `j` to BSON and returns a vector
containing the corresponding BSON-representation.
BSON (Binary JSON) is a binary format in which zero or more ordered key/value pairs are
stored as a single entity (a so-called document).
The library uses the following mapping from JSON values types to BSON types:
JSON value type | value/range | BSON type | marker
--------------- | --------------------------------- | ----------- | ------
null | `null` | null | 0x0A
boolean | `true`, `false` | boolean | 0x08
number_integer | -9223372036854775808..-2147483649 | int64 | 0x12
number_integer | -2147483648..2147483647 | int32 | 0x10
number_integer | 2147483648..9223372036854775807 | int64 | 0x12
number_unsigned | 0..2147483647 | int32 | 0x10
number_unsigned | 2147483648..9223372036854775807 | int64 | 0x12
number_unsigned | 9223372036854775808..18446744073709551615| -- | --
number_float | *any value* | double | 0x01
string | *any value* | string | 0x02
array | *any value* | document | 0x04
object | *any value* | document | 0x03
@warning The mapping is **incomplete**, since only JSON-objects (and things
contained therein) can be serialized to BSON.
Also, integers larger than 9223372036854775807 cannot be serialized to BSON,
and the keys may not contain U+0000, since they are serialized a
zero-terminated c-strings.
@throw out_of_range.407 if `j.is_number_unsigned() && j.get<std::uint64_t>() > 9223372036854775807`
@throw out_of_range.409 if a key in `j` contains a NULL (U+0000)
@throw type_error.317 if `!j.is_object()`
@pre The input `j` is required to be an object: `j.is_object() == true`.
@note Any BSON output created via @ref to_bson can be successfully parsed
by @ref from_bson.
@param[in] j JSON value to serialize
@return BSON serialization as byte vector
@complexity Linear in the size of the JSON value @a j.
@liveexample{The example shows the serialization of a JSON value to a byte
vector in BSON format.,to_bson}
@sa http://bsonspec.org/spec.html
@sa @ref from_bson(detail::input_adapter&&, const bool strict) for the
analogous deserialization
@sa @ref to_ubjson(const basic_json&, const bool, const bool) for the
related UBJSON format
@sa @ref to_cbor(const basic_json&) for the related CBOR format
@sa @ref to_msgpack(const basic_json&) for the related MessagePack format
*/
static std::vector<uint8_t> to_bson(const basic_json& j)
{
std::vector<uint8_t> result;
to_bson(j, result);
return result;
}
/*!
@brief Serializes the given JSON object `j` to BSON and forwards the
corresponding BSON-representation to the given output_adapter `o`.
@param j The JSON object to convert to BSON.
@param o The output adapter that receives the binary BSON representation.
@pre The input `j` shall be an object: `j.is_object() == true`
@sa @ref to_bson(const basic_json&)
*/
static void to_bson(const basic_json& j, detail::output_adapter<uint8_t> o)
{
binary_writer<uint8_t>(o).write_bson(j);
}
/*!
@copydoc to_bson(const basic_json&, detail::output_adapter<uint8_t>)
*/
static void to_bson(const basic_json& j, detail::output_adapter<char> o)
{
binary_writer<char>(o).write_bson(j);
}
/*!
@brief create a JSON value from an input in CBOR format
Deserializes a given input @a i to a JSON value using the CBOR (Concise
Binary Object Representation) serialization format.
The library maps CBOR types to JSON value types as follows:
CBOR type | JSON value type | first byte
---------------------- | --------------- | ----------
Integer | number_unsigned | 0x00..0x17
Unsigned integer | number_unsigned | 0x18
Unsigned integer | number_unsigned | 0x19
Unsigned integer | number_unsigned | 0x1A
Unsigned integer | number_unsigned | 0x1B
Negative integer | number_integer | 0x20..0x37
Negative integer | number_integer | 0x38
Negative integer | number_integer | 0x39
Negative integer | number_integer | 0x3A
Negative integer | number_integer | 0x3B
Negative integer | number_integer | 0x40..0x57
UTF-8 string | string | 0x60..0x77
UTF-8 string | string | 0x78
UTF-8 string | string | 0x79
UTF-8 string | string | 0x7A
UTF-8 string | string | 0x7B
UTF-8 string | string | 0x7F
array | array | 0x80..0x97
array | array | 0x98
array | array | 0x99
array | array | 0x9A
array | array | 0x9B
array | array | 0x9F
map | object | 0xA0..0xB7
map | object | 0xB8
map | object | 0xB9
map | object | 0xBA
map | object | 0xBB
map | object | 0xBF
False | `false` | 0xF4
True | `true` | 0xF5
Null | `null` | 0xF6
Half-Precision Float | number_float | 0xF9
Single-Precision Float | number_float | 0xFA
Double-Precision Float | number_float | 0xFB
@warning The mapping is **incomplete** in the sense that not all CBOR
types can be converted to a JSON value. The following CBOR types
are not supported and will yield parse errors (parse_error.112):
- byte strings (0x40..0x5F)
- date/time (0xC0..0xC1)
- bignum (0xC2..0xC3)
- decimal fraction (0xC4)
- bigfloat (0xC5)
- tagged items (0xC6..0xD4, 0xD8..0xDB)
- expected conversions (0xD5..0xD7)
- simple values (0xE0..0xF3, 0xF8)
- undefined (0xF7)
@warning CBOR allows map keys of any type, whereas JSON only allows
strings as keys in object values. Therefore, CBOR maps with keys
other than UTF-8 strings are rejected (parse_error.113).
@note Any CBOR output created @ref to_cbor can be successfully parsed by
@ref from_cbor.
@param[in] i an input in CBOR format convertible to an input adapter
@param[in] strict whether to expect the input to be consumed until EOF
(true by default)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.110 if the given input ends prematurely or the end of
file was not reached when @a strict was set to true
@throw parse_error.112 if unsupported features from CBOR were
used in the given input @a v or if the input is not valid CBOR
@throw parse_error.113 if a string was expected as map key, but not found
@complexity Linear in the size of the input @a i.
@liveexample{The example shows the deserialization of a byte vector in CBOR
format to a JSON value.,from_cbor}
@sa http://cbor.io
@sa @ref to_cbor(const basic_json&) for the analogous serialization
@sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for the
related MessagePack format
@sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the
related UBJSON format
@since version 2.0.9; parameter @a start_index since 2.1.1; changed to
consume input adapters, removed start_index parameter, and added
@a strict parameter since 3.0.0; added @a allow_exceptions parameter
since 3.2.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_cbor(detail::input_adapter&& i,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(i)).sax_parse(input_format_t::cbor, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@copydoc from_cbor(detail::input_adapter&&, const bool, const bool)
*/
template<typename A1, typename A2,
detail::enable_if_t<std::is_constructible<detail::input_adapter, A1, A2>::value, int> = 0>
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_cbor(A1 && a1, A2 && a2,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(std::forward<A1>(a1), std::forward<A2>(a2))).sax_parse(input_format_t::cbor, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@brief create a JSON value from an input in MessagePack format
Deserializes a given input @a i to a JSON value using the MessagePack
serialization format.
The library maps MessagePack types to JSON value types as follows:
MessagePack type | JSON value type | first byte
---------------- | --------------- | ----------
positive fixint | number_unsigned | 0x00..0x7F
fixmap | object | 0x80..0x8F
fixarray | array | 0x90..0x9F
fixstr | string | 0xA0..0xBF
nil | `null` | 0xC0
false | `false` | 0xC2
true | `true` | 0xC3
float 32 | number_float | 0xCA
float 64 | number_float | 0xCB
uint 8 | number_unsigned | 0xCC
uint 16 | number_unsigned | 0xCD
uint 32 | number_unsigned | 0xCE
uint 64 | number_unsigned | 0xCF
int 8 | number_integer | 0xD0
int 16 | number_integer | 0xD1
int 32 | number_integer | 0xD2
int 64 | number_integer | 0xD3
str 8 | string | 0xD9
str 16 | string | 0xDA
str 32 | string | 0xDB
array 16 | array | 0xDC
array 32 | array | 0xDD
map 16 | object | 0xDE
map 32 | object | 0xDF
negative fixint | number_integer | 0xE0-0xFF
@warning The mapping is **incomplete** in the sense that not all
MessagePack types can be converted to a JSON value. The following
MessagePack types are not supported and will yield parse errors:
- bin 8 - bin 32 (0xC4..0xC6)
- ext 8 - ext 32 (0xC7..0xC9)
- fixext 1 - fixext 16 (0xD4..0xD8)
@note Any MessagePack output created @ref to_msgpack can be successfully
parsed by @ref from_msgpack.
@param[in] i an input in MessagePack format convertible to an input
adapter
@param[in] strict whether to expect the input to be consumed until EOF
(true by default)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.110 if the given input ends prematurely or the end of
file was not reached when @a strict was set to true
@throw parse_error.112 if unsupported features from MessagePack were
used in the given input @a i or if the input is not valid MessagePack
@throw parse_error.113 if a string was expected as map key, but not found
@complexity Linear in the size of the input @a i.
@liveexample{The example shows the deserialization of a byte vector in
MessagePack format to a JSON value.,from_msgpack}
@sa http://msgpack.org
@sa @ref to_msgpack(const basic_json&) for the analogous serialization
@sa @ref from_cbor(detail::input_adapter&&, const bool, const bool) for the
related CBOR format
@sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for
the related UBJSON format
@sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for
the related BSON format
@since version 2.0.9; parameter @a start_index since 2.1.1; changed to
consume input adapters, removed start_index parameter, and added
@a strict parameter since 3.0.0; added @a allow_exceptions parameter
since 3.2.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_msgpack(detail::input_adapter&& i,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(i)).sax_parse(input_format_t::msgpack, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@copydoc from_msgpack(detail::input_adapter&&, const bool, const bool)
*/
template<typename A1, typename A2,
detail::enable_if_t<std::is_constructible<detail::input_adapter, A1, A2>::value, int> = 0>
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_msgpack(A1 && a1, A2 && a2,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(std::forward<A1>(a1), std::forward<A2>(a2))).sax_parse(input_format_t::msgpack, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@brief create a JSON value from an input in UBJSON format
Deserializes a given input @a i to a JSON value using the UBJSON (Universal
Binary JSON) serialization format.
The library maps UBJSON types to JSON value types as follows:
UBJSON type | JSON value type | marker
----------- | --------------------------------------- | ------
no-op | *no value, next value is read* | `N`
null | `null` | `Z`
false | `false` | `F`
true | `true` | `T`
float32 | number_float | `d`
float64 | number_float | `D`
uint8 | number_unsigned | `U`
int8 | number_integer | `i`
int16 | number_integer | `I`
int32 | number_integer | `l`
int64 | number_integer | `L`
string | string | `S`
char | string | `C`
array | array (optimized values are supported) | `[`
object | object (optimized values are supported) | `{`
@note The mapping is **complete** in the sense that any UBJSON value can
be converted to a JSON value.
@param[in] i an input in UBJSON format convertible to an input adapter
@param[in] strict whether to expect the input to be consumed until EOF
(true by default)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.110 if the given input ends prematurely or the end of
file was not reached when @a strict was set to true
@throw parse_error.112 if a parse error occurs
@throw parse_error.113 if a string could not be parsed successfully
@complexity Linear in the size of the input @a i.
@liveexample{The example shows the deserialization of a byte vector in
UBJSON format to a JSON value.,from_ubjson}
@sa http://ubjson.org
@sa @ref to_ubjson(const basic_json&, const bool, const bool) for the
analogous serialization
@sa @ref from_cbor(detail::input_adapter&&, const bool, const bool) for the
related CBOR format
@sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for
the related MessagePack format
@sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for
the related BSON format
@since version 3.1.0; added @a allow_exceptions parameter since 3.2.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_ubjson(detail::input_adapter&& i,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(i)).sax_parse(input_format_t::ubjson, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@copydoc from_ubjson(detail::input_adapter&&, const bool, const bool)
*/
template<typename A1, typename A2,
detail::enable_if_t<std::is_constructible<detail::input_adapter, A1, A2>::value, int> = 0>
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_ubjson(A1 && a1, A2 && a2,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(std::forward<A1>(a1), std::forward<A2>(a2))).sax_parse(input_format_t::ubjson, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@brief Create a JSON value from an input in BSON format
Deserializes a given input @a i to a JSON value using the BSON (Binary JSON)
serialization format.
The library maps BSON record types to JSON value types as follows:
BSON type | BSON marker byte | JSON value type
--------------- | ---------------- | ---------------------------
double | 0x01 | number_float
string | 0x02 | string
document | 0x03 | object
array | 0x04 | array
binary | 0x05 | still unsupported
undefined | 0x06 | still unsupported
ObjectId | 0x07 | still unsupported
boolean | 0x08 | boolean
UTC Date-Time | 0x09 | still unsupported
null | 0x0A | null
Regular Expr. | 0x0B | still unsupported
DB Pointer | 0x0C | still unsupported
JavaScript Code | 0x0D | still unsupported
Symbol | 0x0E | still unsupported
JavaScript Code | 0x0F | still unsupported
int32 | 0x10 | number_integer
Timestamp | 0x11 | still unsupported
128-bit decimal float | 0x13 | still unsupported
Max Key | 0x7F | still unsupported
Min Key | 0xFF | still unsupported
@warning The mapping is **incomplete**. The unsupported mappings
are indicated in the table above.
@param[in] i an input in BSON format convertible to an input adapter
@param[in] strict whether to expect the input to be consumed until EOF
(true by default)
@param[in] allow_exceptions whether to throw exceptions in case of a
parse error (optional, true by default)
@return deserialized JSON value; in case of a parse error and
@a allow_exceptions set to `false`, the return value will be
value_t::discarded.
@throw parse_error.114 if an unsupported BSON record type is encountered
@complexity Linear in the size of the input @a i.
@liveexample{The example shows the deserialization of a byte vector in
BSON format to a JSON value.,from_bson}
@sa http://bsonspec.org/spec.html
@sa @ref to_bson(const basic_json&) for the analogous serialization
@sa @ref from_cbor(detail::input_adapter&&, const bool, const bool) for the
related CBOR format
@sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for
the related MessagePack format
@sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the
related UBJSON format
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_bson(detail::input_adapter&& i,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(i)).sax_parse(input_format_t::bson, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/*!
@copydoc from_bson(detail::input_adapter&&, const bool, const bool)
*/
template<typename A1, typename A2,
detail::enable_if_t<std::is_constructible<detail::input_adapter, A1, A2>::value, int> = 0>
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json from_bson(A1 && a1, A2 && a2,
const bool strict = true,
const bool allow_exceptions = true)
{
basic_json result;
detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions);
const bool res = binary_reader(detail::input_adapter(std::forward<A1>(a1), std::forward<A2>(a2))).sax_parse(input_format_t::bson, &sdp, strict);
return res ? result : basic_json(value_t::discarded);
}
/// @}
//////////////////////////
// JSON Pointer support //
//////////////////////////
/// @name JSON Pointer functions
/// @{
/*!
@brief access specified element via JSON Pointer
Uses a JSON pointer to retrieve a reference to the respective JSON value.
No bound checking is performed. Similar to @ref operator[](const typename
object_t::key_type&), `null` values are created in arrays and objects if
necessary.
In particular:
- If the JSON pointer points to an object key that does not exist, it
is created an filled with a `null` value before a reference to it
is returned.
- If the JSON pointer points to an array index that does not exist, it
is created an filled with a `null` value before a reference to it
is returned. All indices between the current maximum and the given
index are also filled with `null`.
- The special value `-` is treated as a synonym for the index past the
end.
@param[in] ptr a JSON pointer
@return reference to the element pointed to by @a ptr
@complexity Constant.
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.404 if the JSON pointer can not be resolved
@liveexample{The behavior is shown in the example.,operatorjson_pointer}
@since version 2.0.0
*/
reference operator[](const json_pointer& ptr)
{
return ptr.get_unchecked(this);
}
/*!
@brief access specified element via JSON Pointer
Uses a JSON pointer to retrieve a reference to the respective JSON value.
No bound checking is performed. The function does not change the JSON
value; no `null` values are created. In particular, the the special value
`-` yields an exception.
@param[in] ptr JSON pointer to the desired element
@return const reference to the element pointed to by @a ptr
@complexity Constant.
@throw parse_error.106 if an array index begins with '0'
@throw parse_error.109 if an array index was not a number
@throw out_of_range.402 if the array index '-' is used
@throw out_of_range.404 if the JSON pointer can not be resolved
@liveexample{The behavior is shown in the example.,operatorjson_pointer_const}
@since version 2.0.0
*/
const_reference operator[](const json_pointer& ptr) const
{
return ptr.get_unchecked(this);
}
/*!
@brief access specified element via JSON Pointer
Returns a reference to the element at with specified JSON pointer @a ptr,
with bounds checking.
@param[in] ptr JSON pointer to the desired element
@return reference to the element pointed to by @a ptr
@throw parse_error.106 if an array index in the passed JSON pointer @a ptr
begins with '0'. See example below.
@throw parse_error.109 if an array index in the passed JSON pointer @a ptr
is not a number. See example below.
@throw out_of_range.401 if an array index in the passed JSON pointer @a ptr
is out of range. See example below.
@throw out_of_range.402 if the array index '-' is used in the passed JSON
pointer @a ptr. As `at` provides checked access (and no elements are
implicitly inserted), the index '-' is always invalid. See example below.
@throw out_of_range.403 if the JSON pointer describes a key of an object
which cannot be found. See example below.
@throw out_of_range.404 if the JSON pointer @a ptr can not be resolved.
See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@since version 2.0.0
@liveexample{The behavior is shown in the example.,at_json_pointer}
*/
reference at(const json_pointer& ptr)
{
return ptr.get_checked(this);
}
/*!
@brief access specified element via JSON Pointer
Returns a const reference to the element at with specified JSON pointer @a
ptr, with bounds checking.
@param[in] ptr JSON pointer to the desired element
@return reference to the element pointed to by @a ptr
@throw parse_error.106 if an array index in the passed JSON pointer @a ptr
begins with '0'. See example below.
@throw parse_error.109 if an array index in the passed JSON pointer @a ptr
is not a number. See example below.
@throw out_of_range.401 if an array index in the passed JSON pointer @a ptr
is out of range. See example below.
@throw out_of_range.402 if the array index '-' is used in the passed JSON
pointer @a ptr. As `at` provides checked access (and no elements are
implicitly inserted), the index '-' is always invalid. See example below.
@throw out_of_range.403 if the JSON pointer describes a key of an object
which cannot be found. See example below.
@throw out_of_range.404 if the JSON pointer @a ptr can not be resolved.
See example below.
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@since version 2.0.0
@liveexample{The behavior is shown in the example.,at_json_pointer_const}
*/
const_reference at(const json_pointer& ptr) const
{
return ptr.get_checked(this);
}
/*!
@brief return flattened JSON value
The function creates a JSON object whose keys are JSON pointers (see [RFC
6901](https://tools.ietf.org/html/rfc6901)) and whose values are all
primitive. The original JSON value can be restored using the @ref
unflatten() function.
@return an object that maps JSON pointers to primitive values
@note Empty objects and arrays are flattened to `null` and will not be
reconstructed correctly by the @ref unflatten() function.
@complexity Linear in the size the JSON value.
@liveexample{The following code shows how a JSON object is flattened to an
object whose keys consist of JSON pointers.,flatten}
@sa @ref unflatten() for the reverse function
@since version 2.0.0
*/
basic_json flatten() const
{
basic_json result(value_t::object);
json_pointer::flatten("", *this, result);
return result;
}
/*!
@brief unflatten a previously flattened JSON value
The function restores the arbitrary nesting of a JSON value that has been
flattened before using the @ref flatten() function. The JSON value must
meet certain constraints:
1. The value must be an object.
2. The keys must be JSON pointers (see
[RFC 6901](https://tools.ietf.org/html/rfc6901))
3. The mapped values must be primitive JSON types.
@return the original JSON from a flattened version
@note Empty objects and arrays are flattened by @ref flatten() to `null`
values and can not unflattened to their original type. Apart from
this example, for a JSON value `j`, the following is always true:
`j == j.flatten().unflatten()`.
@complexity Linear in the size the JSON value.
@throw type_error.314 if value is not an object
@throw type_error.315 if object values are not primitive
@liveexample{The following code shows how a flattened JSON object is
unflattened into the original nested JSON object.,unflatten}
@sa @ref flatten() for the reverse function
@since version 2.0.0
*/
basic_json unflatten() const
{
return json_pointer::unflatten(*this);
}
/// @}
//////////////////////////
// JSON Patch functions //
//////////////////////////
/// @name JSON Patch functions
/// @{
/*!
@brief applies a JSON patch
[JSON Patch](http://jsonpatch.com) defines a JSON document structure for
expressing a sequence of operations to apply to a JSON) document. With
this function, a JSON Patch is applied to the current JSON value by
executing all operations from the patch.
@param[in] json_patch JSON patch document
@return patched document
@note The application of a patch is atomic: Either all operations succeed
and the patched document is returned or an exception is thrown. In
any case, the original value is not changed: the patch is applied
to a copy of the value.
@throw parse_error.104 if the JSON patch does not consist of an array of
objects
@throw parse_error.105 if the JSON patch is malformed (e.g., mandatory
attributes are missing); example: `"operation add must have member path"`
@throw out_of_range.401 if an array index is out of range.
@throw out_of_range.403 if a JSON pointer inside the patch could not be
resolved successfully in the current JSON value; example: `"key baz not
found"`
@throw out_of_range.405 if JSON pointer has no parent ("add", "remove",
"move")
@throw other_error.501 if "test" operation was unsuccessful
@complexity Linear in the size of the JSON value and the length of the
JSON patch. As usually only a fraction of the JSON value is affected by
the patch, the complexity can usually be neglected.
@liveexample{The following code shows how a JSON patch is applied to a
value.,patch}
@sa @ref diff -- create a JSON patch by comparing two JSON values
@sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902)
@sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901)
@since version 2.0.0
*/
basic_json patch(const basic_json& json_patch) const
{
// make a working copy to apply the patch to
basic_json result = *this;
// the valid JSON Patch operations
enum class patch_operations {add, remove, replace, move, copy, test, invalid};
const auto get_op = [](const std::string & op)
{
if (op == "add")
{
return patch_operations::add;
}
if (op == "remove")
{
return patch_operations::remove;
}
if (op == "replace")
{
return patch_operations::replace;
}
if (op == "move")
{
return patch_operations::move;
}
if (op == "copy")
{
return patch_operations::copy;
}
if (op == "test")
{
return patch_operations::test;
}
return patch_operations::invalid;
};
// wrapper for "add" operation; add value at ptr
const auto operation_add = [&result](json_pointer & ptr, basic_json val)
{
// adding to the root of the target document means replacing it
if (ptr.empty())
{
result = val;
return;
}
// make sure the top element of the pointer exists
json_pointer top_pointer = ptr.top();
if (top_pointer != ptr)
{
result.at(top_pointer);
}
// get reference to parent of JSON pointer ptr
const auto last_path = ptr.back();
ptr.pop_back();
basic_json& parent = result[ptr];
switch (parent.m_type)
{
case value_t::null:
case value_t::object:
{
// use operator[] to add value
parent[last_path] = val;
break;
}
case value_t::array:
{
if (last_path == "-")
{
// special case: append to back
parent.push_back(val);
}
else
{
const auto idx = json_pointer::array_index(last_path);
if (JSON_HEDLEY_UNLIKELY(static_cast<size_type>(idx) > parent.size()))
{
// avoid undefined behavior
JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range"));
}
// default case: insert add offset
parent.insert(parent.begin() + static_cast<difference_type>(idx), val);
}
break;
}
// if there exists a parent it cannot be primitive
default: // LCOV_EXCL_LINE
assert(false); // LCOV_EXCL_LINE
}
};
// wrapper for "remove" operation; remove value at ptr
const auto operation_remove = [&result](json_pointer & ptr)
{
// get reference to parent of JSON pointer ptr
const auto last_path = ptr.back();
ptr.pop_back();
basic_json& parent = result.at(ptr);
// remove child
if (parent.is_object())
{
// perform range check
auto it = parent.find(last_path);
if (JSON_HEDLEY_LIKELY(it != parent.end()))
{
parent.erase(it);
}
else
{
JSON_THROW(out_of_range::create(403, "key '" + last_path + "' not found"));
}
}
else if (parent.is_array())
{
// note erase performs range check
parent.erase(static_cast<size_type>(json_pointer::array_index(last_path)));
}
};
// type check: top level value must be an array
if (JSON_HEDLEY_UNLIKELY(not json_patch.is_array()))
{
JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects"));
}
// iterate and apply the operations
for (const auto& val : json_patch)
{
// wrapper to get a value for an operation
const auto get_value = [&val](const std::string & op,
const std::string & member,
bool string_type) -> basic_json &
{
// find value
auto it = val.m_value.object->find(member);
// context-sensitive error message
const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'";
// check if desired value is present
if (JSON_HEDLEY_UNLIKELY(it == val.m_value.object->end()))
{
JSON_THROW(parse_error::create(105, 0, error_msg + " must have member '" + member + "'"));
}
// check if result is of type string
if (JSON_HEDLEY_UNLIKELY(string_type and not it->second.is_string()))
{
JSON_THROW(parse_error::create(105, 0, error_msg + " must have string member '" + member + "'"));
}
// no error: return value
return it->second;
};
// type check: every element of the array must be an object
if (JSON_HEDLEY_UNLIKELY(not val.is_object()))
{
JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects"));
}
// collect mandatory members
const std::string op = get_value("op", "op", true);
const std::string path = get_value(op, "path", true);
json_pointer ptr(path);
switch (get_op(op))
{
case patch_operations::add:
{
operation_add(ptr, get_value("add", "value", false));
break;
}
case patch_operations::remove:
{
operation_remove(ptr);
break;
}
case patch_operations::replace:
{
// the "path" location must exist - use at()
result.at(ptr) = get_value("replace", "value", false);
break;
}
case patch_operations::move:
{
const std::string from_path = get_value("move", "from", true);
json_pointer from_ptr(from_path);
// the "from" location must exist - use at()
basic_json v = result.at(from_ptr);
// The move operation is functionally identical to a
// "remove" operation on the "from" location, followed
// immediately by an "add" operation at the target
// location with the value that was just removed.
operation_remove(from_ptr);
operation_add(ptr, v);
break;
}
case patch_operations::copy:
{
const std::string from_path = get_value("copy", "from", true);
const json_pointer from_ptr(from_path);
// the "from" location must exist - use at()
basic_json v = result.at(from_ptr);
// The copy is functionally identical to an "add"
// operation at the target location using the value
// specified in the "from" member.
operation_add(ptr, v);
break;
}
case patch_operations::test:
{
bool success = false;
JSON_TRY
{
// check if "value" matches the one at "path"
// the "path" location must exist - use at()
success = (result.at(ptr) == get_value("test", "value", false));
}
JSON_INTERNAL_CATCH (out_of_range&)
{
// ignore out of range errors: success remains false
}
// throw an exception if test fails
if (JSON_HEDLEY_UNLIKELY(not success))
{
JSON_THROW(other_error::create(501, "unsuccessful: " + val.dump()));
}
break;
}
default:
{
// op must be "add", "remove", "replace", "move", "copy", or
// "test"
JSON_THROW(parse_error::create(105, 0, "operation value '" + op + "' is invalid"));
}
}
}
return result;
}
/*!
@brief creates a diff as a JSON patch
Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can
be changed into the value @a target by calling @ref patch function.
@invariant For two JSON values @a source and @a target, the following code
yields always `true`:
@code {.cpp}
source.patch(diff(source, target)) == target;
@endcode
@note Currently, only `remove`, `add`, and `replace` operations are
generated.
@param[in] source JSON value to compare from
@param[in] target JSON value to compare against
@param[in] path helper value to create JSON pointers
@return a JSON patch to convert the @a source to @a target
@complexity Linear in the lengths of @a source and @a target.
@liveexample{The following code shows how a JSON patch is created as a
diff for two JSON values.,diff}
@sa @ref patch -- apply a JSON patch
@sa @ref merge_patch -- apply a JSON Merge Patch
@sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902)
@since version 2.0.0
*/
JSON_HEDLEY_WARN_UNUSED_RESULT
static basic_json diff(const basic_json& source, const basic_json& target,
const std::string& path = "")
{
// the patch
basic_json result(value_t::array);
// if the values are the same, return empty patch
if (source == target)
{
return result;
}
if (source.type() != target.type())
{
// different types: replace value
result.push_back(
{
{"op", "replace"}, {"path", path}, {"value", target}
});
return result;
}
switch (source.type())
{
case value_t::array:
{
// first pass: traverse common elements
std::size_t i = 0;
while (i < source.size() and i < target.size())
{
// recursive call to compare array values at index i
auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i));
result.insert(result.end(), temp_diff.begin(), temp_diff.end());
++i;
}
// i now reached the end of at least one array
// in a second pass, traverse the remaining elements
// remove my remaining elements
const auto end_index = static_cast<difference_type>(result.size());
while (i < source.size())
{
// add operations in reverse order to avoid invalid
// indices
result.insert(result.begin() + end_index, object(
{
{"op", "remove"},
{"path", path + "/" + std::to_string(i)}
}));
++i;
}
// add other remaining elements
while (i < target.size())
{
result.push_back(
{
{"op", "add"},
{"path", path + "/" + std::to_string(i)},
{"value", target[i]}
});
++i;
}
break;
}
case value_t::object:
{
// first pass: traverse this object's elements
for (auto it = source.cbegin(); it != source.cend(); ++it)
{
// escape the key name to be used in a JSON patch
const auto key = json_pointer::escape(it.key());
if (target.find(it.key()) != target.end())
{
// recursive call to compare object values at key it
auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key);
result.insert(result.end(), temp_diff.begin(), temp_diff.end());
}
else
{
// found a key that is not in o -> remove it
result.push_back(object(
{
{"op", "remove"}, {"path", path + "/" + key}
}));
}
}
// second pass: traverse other object's elements
for (auto it = target.cbegin(); it != target.cend(); ++it)
{
if (source.find(it.key()) == source.end())
{
// found a key that is not in this -> add it
const auto key = json_pointer::escape(it.key());
result.push_back(
{
{"op", "add"}, {"path", path + "/" + key},
{"value", it.value()}
});
}
}
break;
}
default:
{
// both primitive type: replace value
result.push_back(
{
{"op", "replace"}, {"path", path}, {"value", target}
});
break;
}
}
return result;
}
/// @}
////////////////////////////////
// JSON Merge Patch functions //
////////////////////////////////
/// @name JSON Merge Patch functions
/// @{
/*!
@brief applies a JSON Merge Patch
The merge patch format is primarily intended for use with the HTTP PATCH
method as a means of describing a set of modifications to a target
resource's content. This function applies a merge patch to the current
JSON value.
The function implements the following algorithm from Section 2 of
[RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396):
```
define MergePatch(Target, Patch):
if Patch is an Object:
if Target is not an Object:
Target = {} // Ignore the contents and set it to an empty Object
for each Name/Value pair in Patch:
if Value is null:
if Name exists in Target:
remove the Name/Value pair from Target
else:
Target[Name] = MergePatch(Target[Name], Value)
return Target
else:
return Patch
```
Thereby, `Target` is the current object; that is, the patch is applied to
the current value.
@param[in] apply_patch the patch to apply
@complexity Linear in the lengths of @a patch.
@liveexample{The following code shows how a JSON Merge Patch is applied to
a JSON document.,merge_patch}
@sa @ref patch -- apply a JSON patch
@sa [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396)
@since version 3.0.0
*/
void merge_patch(const basic_json& apply_patch)
{
if (apply_patch.is_object())
{
if (not is_object())
{
*this = object();
}
for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it)
{
if (it.value().is_null())
{
erase(it.key());
}
else
{
operator[](it.key()).merge_patch(it.value());
}
}
}
else
{
*this = apply_patch;
}
}
/// @}
};
/*!
@brief user-defined to_string function for JSON values
This function implements a user-defined to_string for JSON objects.
@param[in] j a JSON object
@return a std::string object
*/
NLOHMANN_BASIC_JSON_TPL_DECLARATION
std::string to_string(const NLOHMANN_BASIC_JSON_TPL& j)
{
return j.dump();
}
} // namespace nlohmann
///////////////////////
// nonmember support //
///////////////////////
// specialization of std::swap, and std::hash
namespace std
{
/// hash value for JSON objects
template<>
struct hash<nlohmann::json>
{
/*!
@brief return a hash value for a JSON object
@since version 1.0.0
*/
std::size_t operator()(const nlohmann::json& j) const
{
// a naive hashing via the string representation
const auto& h = hash<nlohmann::json::string_t>();
return h(j.dump());
}
};
/// specialization for std::less<value_t>
/// @note: do not remove the space after '<',
/// see https://github.com/nlohmann/json/pull/679
template<>
struct less<::nlohmann::detail::value_t>
{
/*!
@brief compare two value_t enum values
@since version 3.0.0
*/
bool operator()(nlohmann::detail::value_t lhs,
nlohmann::detail::value_t rhs) const noexcept
{
return nlohmann::detail::operator<(lhs, rhs);
}
};
/*!
@brief exchanges the values of two JSON objects
@since version 1.0.0
*/
template<>
inline void swap<nlohmann::json>(nlohmann::json& j1, nlohmann::json& j2) noexcept(
is_nothrow_move_constructible<nlohmann::json>::value and
is_nothrow_move_assignable<nlohmann::json>::value
)
{
j1.swap(j2);
}
} // namespace std
/*!
@brief user-defined string literal for JSON values
This operator implements a user-defined string literal for JSON objects. It
can be used by adding `"_json"` to a string literal and returns a JSON object
if no parse error occurred.
@param[in] s a string representation of a JSON object
@param[in] n the length of string @a s
@return a JSON object
@since version 1.0.0
*/
JSON_HEDLEY_NON_NULL(1)
inline nlohmann::json operator "" _json(const char* s, std::size_t n)
{
return nlohmann::json::parse(s, s + n);
}
/*!
@brief user-defined string literal for JSON pointer
This operator implements a user-defined string literal for JSON Pointers. It
can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer
object if no parse error occurred.
@param[in] s a string representation of a JSON Pointer
@param[in] n the length of string @a s
@return a JSON pointer object
@since version 2.0.0
*/
JSON_HEDLEY_NON_NULL(1)
inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n)
{
return nlohmann::json::json_pointer(std::string(s, n));
}
// #include <nlohmann/detail/macro_unscope.hpp>
// restore GCC/clang diagnostic settings
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
#pragma GCC diagnostic pop
#endif
#if defined(__clang__)
#pragma GCC diagnostic pop
#endif
// clean up
#undef JSON_INTERNAL_CATCH
#undef JSON_CATCH
#undef JSON_THROW
#undef JSON_TRY
#undef JSON_HAS_CPP_14
#undef JSON_HAS_CPP_17
#undef NLOHMANN_BASIC_JSON_TPL_DECLARATION
#undef NLOHMANN_BASIC_JSON_TPL
// #include <nlohmann/thirdparty/hedley/hedley_undef.hpp>
#undef JSON_HEDLEY_ALWAYS_INLINE
#undef JSON_HEDLEY_ARM_VERSION
#undef JSON_HEDLEY_ARM_VERSION_CHECK
#undef JSON_HEDLEY_ARRAY_PARAM
#undef JSON_HEDLEY_ASSUME
#undef JSON_HEDLEY_BEGIN_C_DECLS
#undef JSON_HEDLEY_C_DECL
#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE
#undef JSON_HEDLEY_CLANG_HAS_BUILTIN
#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE
#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE
#undef JSON_HEDLEY_CLANG_HAS_EXTENSION
#undef JSON_HEDLEY_CLANG_HAS_FEATURE
#undef JSON_HEDLEY_CLANG_HAS_WARNING
#undef JSON_HEDLEY_COMPCERT_VERSION
#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK
#undef JSON_HEDLEY_CONCAT
#undef JSON_HEDLEY_CONCAT_EX
#undef JSON_HEDLEY_CONST
#undef JSON_HEDLEY_CONST_CAST
#undef JSON_HEDLEY_CONSTEXPR
#undef JSON_HEDLEY_CPP_CAST
#undef JSON_HEDLEY_CRAY_VERSION
#undef JSON_HEDLEY_CRAY_VERSION_CHECK
#undef JSON_HEDLEY_DEPRECATED
#undef JSON_HEDLEY_DEPRECATED_FOR
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES
#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS
#undef JSON_HEDLEY_DIAGNOSTIC_POP
#undef JSON_HEDLEY_DIAGNOSTIC_PUSH
#undef JSON_HEDLEY_DMC_VERSION
#undef JSON_HEDLEY_DMC_VERSION_CHECK
#undef JSON_HEDLEY_EMPTY_BASES
#undef JSON_HEDLEY_EMSCRIPTEN_VERSION
#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK
#undef JSON_HEDLEY_END_C_DECLS
#undef JSON_HEDLEY_FALL_THROUGH
#undef JSON_HEDLEY_FLAGS
#undef JSON_HEDLEY_FLAGS_CAST
#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE
#undef JSON_HEDLEY_GCC_HAS_BUILTIN
#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE
#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE
#undef JSON_HEDLEY_GCC_HAS_EXTENSION
#undef JSON_HEDLEY_GCC_HAS_FEATURE
#undef JSON_HEDLEY_GCC_HAS_WARNING
#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK
#undef JSON_HEDLEY_GCC_VERSION
#undef JSON_HEDLEY_GCC_VERSION_CHECK
#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE
#undef JSON_HEDLEY_GNUC_HAS_BUILTIN
#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE
#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE
#undef JSON_HEDLEY_GNUC_HAS_EXTENSION
#undef JSON_HEDLEY_GNUC_HAS_FEATURE
#undef JSON_HEDLEY_GNUC_HAS_WARNING
#undef JSON_HEDLEY_GNUC_VERSION
#undef JSON_HEDLEY_GNUC_VERSION_CHECK
#undef JSON_HEDLEY_HAS_ATTRIBUTE
#undef JSON_HEDLEY_HAS_BUILTIN
#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE
#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS
#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE
#undef JSON_HEDLEY_HAS_EXTENSION
#undef JSON_HEDLEY_HAS_FEATURE
#undef JSON_HEDLEY_HAS_WARNING
#undef JSON_HEDLEY_IAR_VERSION
#undef JSON_HEDLEY_IAR_VERSION_CHECK
#undef JSON_HEDLEY_IBM_VERSION
#undef JSON_HEDLEY_IBM_VERSION_CHECK
#undef JSON_HEDLEY_IMPORT
#undef JSON_HEDLEY_INLINE
#undef JSON_HEDLEY_INTEL_VERSION
#undef JSON_HEDLEY_INTEL_VERSION_CHECK
#undef JSON_HEDLEY_IS_CONSTANT
#undef JSON_HEDLEY_IS_CONSTEXPR_
#undef JSON_HEDLEY_LIKELY
#undef JSON_HEDLEY_MALLOC
#undef JSON_HEDLEY_MESSAGE
#undef JSON_HEDLEY_MSVC_VERSION
#undef JSON_HEDLEY_MSVC_VERSION_CHECK
#undef JSON_HEDLEY_NEVER_INLINE
#undef JSON_HEDLEY_NO_ESCAPE
#undef JSON_HEDLEY_NON_NULL
#undef JSON_HEDLEY_NO_RETURN
#undef JSON_HEDLEY_NO_THROW
#undef JSON_HEDLEY_NULL
#undef JSON_HEDLEY_PELLES_VERSION
#undef JSON_HEDLEY_PELLES_VERSION_CHECK
#undef JSON_HEDLEY_PGI_VERSION
#undef JSON_HEDLEY_PGI_VERSION_CHECK
#undef JSON_HEDLEY_PREDICT
#undef JSON_HEDLEY_PRINTF_FORMAT
#undef JSON_HEDLEY_PRIVATE
#undef JSON_HEDLEY_PUBLIC
#undef JSON_HEDLEY_PURE
#undef JSON_HEDLEY_REINTERPRET_CAST
#undef JSON_HEDLEY_REQUIRE
#undef JSON_HEDLEY_REQUIRE_CONSTEXPR
#undef JSON_HEDLEY_REQUIRE_MSG
#undef JSON_HEDLEY_RESTRICT
#undef JSON_HEDLEY_RETURNS_NON_NULL
#undef JSON_HEDLEY_SENTINEL
#undef JSON_HEDLEY_STATIC_ASSERT
#undef JSON_HEDLEY_STATIC_CAST
#undef JSON_HEDLEY_STRINGIFY
#undef JSON_HEDLEY_STRINGIFY_EX
#undef JSON_HEDLEY_SUNPRO_VERSION
#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK
#undef JSON_HEDLEY_TINYC_VERSION
#undef JSON_HEDLEY_TINYC_VERSION_CHECK
#undef JSON_HEDLEY_TI_VERSION
#undef JSON_HEDLEY_TI_VERSION_CHECK
#undef JSON_HEDLEY_UNAVAILABLE
#undef JSON_HEDLEY_UNLIKELY
#undef JSON_HEDLEY_UNPREDICTABLE
#undef JSON_HEDLEY_UNREACHABLE
#undef JSON_HEDLEY_UNREACHABLE_RETURN
#undef JSON_HEDLEY_VERSION
#undef JSON_HEDLEY_VERSION_DECODE_MAJOR
#undef JSON_HEDLEY_VERSION_DECODE_MINOR
#undef JSON_HEDLEY_VERSION_DECODE_REVISION
#undef JSON_HEDLEY_VERSION_ENCODE
#undef JSON_HEDLEY_WARNING
#undef JSON_HEDLEY_WARN_UNUSED_RESULT
#endif // INCLUDE_NLOHMANN_JSON_HPP_
|
whupdup/frame
|
real/third_party/tracy/import-chrome/src/json.hpp
|
C++
|
gpl-3.0
| 809,489
|
/* alloc.c -- Memory allocation without mmap.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <sys/types.h>
#include "backtrace.hpp"
#include "internal.hpp"
#include "../common/TracyAlloc.hpp"
namespace tracy
{
/* Allocation routines to use on systems that do not support anonymous
mmap. This implementation just uses malloc, which means that the
backtrace functions may not be safely invoked from a signal
handler. */
/* Allocate memory like malloc. If ERROR_CALLBACK is NULL, don't
report an error. */
void *
backtrace_alloc (struct backtrace_state *state ATTRIBUTE_UNUSED,
size_t size, backtrace_error_callback error_callback,
void *data)
{
void *ret;
ret = tracy_malloc (size);
if (ret == NULL)
{
if (error_callback)
error_callback (data, "malloc", errno);
}
return ret;
}
/* Free memory. */
void
backtrace_free (struct backtrace_state *state ATTRIBUTE_UNUSED,
void *p, size_t size ATTRIBUTE_UNUSED,
backtrace_error_callback error_callback ATTRIBUTE_UNUSED,
void *data ATTRIBUTE_UNUSED)
{
tracy_free (p);
}
/* Grow VEC by SIZE bytes. */
void *
backtrace_vector_grow (struct backtrace_state *state ATTRIBUTE_UNUSED,
size_t size, backtrace_error_callback error_callback,
void *data, struct backtrace_vector *vec)
{
void *ret;
if (size > vec->alc)
{
size_t alc;
void *base;
if (vec->size == 0)
alc = 32 * size;
else if (vec->size >= 4096)
alc = vec->size + 4096;
else
alc = 2 * vec->size;
if (alc < vec->size + size)
alc = vec->size + size;
base = tracy_realloc (vec->base, alc);
if (base == NULL)
{
error_callback (data, "realloc", errno);
return NULL;
}
vec->base = base;
vec->alc = alc - vec->size;
}
ret = (char *) vec->base + vec->size;
vec->size += size;
vec->alc -= size;
return ret;
}
/* Finish the current allocation on VEC. */
void *
backtrace_vector_finish (struct backtrace_state *state,
struct backtrace_vector *vec,
backtrace_error_callback error_callback,
void *data)
{
void *ret;
/* With this allocator we call realloc in backtrace_vector_grow,
which means we can't easily reuse the memory here. So just
release it. */
if (!backtrace_vector_release (state, vec, error_callback, data))
return NULL;
ret = vec->base;
vec->base = NULL;
vec->size = 0;
vec->alc = 0;
return ret;
}
/* Release any extra space allocated for VEC. */
int
backtrace_vector_release (struct backtrace_state *state ATTRIBUTE_UNUSED,
struct backtrace_vector *vec,
backtrace_error_callback error_callback,
void *data)
{
vec->alc = 0;
if (vec->size == 0)
{
/* As of C17, realloc with size 0 is marked as an obsolescent feature, use
free instead. */
tracy_free (vec->base);
vec->base = NULL;
return 1;
}
vec->base = tracy_realloc (vec->base, vec->size);
if (vec->base == NULL)
{
error_callback (data, "realloc", errno);
return 0;
}
return 1;
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/alloc.cpp
|
C++
|
gpl-3.0
| 4,538
|
/* backtrace.h -- Public header file for stack backtrace library.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#ifndef BACKTRACE_H
#define BACKTRACE_H
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
namespace tracy
{
/* The backtrace state. This struct is intentionally not defined in
the public interface. */
struct backtrace_state;
/* The type of the error callback argument to backtrace functions.
This function, if not NULL, will be called for certain error cases.
The DATA argument is passed to the function that calls this one.
The MSG argument is an error message. The ERRNUM argument, if
greater than 0, holds an errno value. The MSG buffer may become
invalid after this function returns.
As a special case, the ERRNUM argument will be passed as -1 if no
debug info can be found for the executable, or if the debug info
exists but has an unsupported version, but the function requires
debug info (e.g., backtrace_full, backtrace_pcinfo). The MSG in
this case will be something along the lines of "no debug info".
Similarly, ERRNUM will be passed as -1 if there is no symbol table,
but the function requires a symbol table (e.g., backtrace_syminfo).
This may be used as a signal that some other approach should be
tried. */
typedef void (*backtrace_error_callback) (void *data, const char *msg,
int errnum);
/* Create state information for the backtrace routines. This must be
called before any of the other routines, and its return value must
be passed to all of the other routines. FILENAME is the path name
of the executable file; if it is NULL the library will try
system-specific path names. If not NULL, FILENAME must point to a
permanent buffer. If THREADED is non-zero the state may be
accessed by multiple threads simultaneously, and the library will
use appropriate atomic operations. If THREADED is zero the state
may only be accessed by one thread at a time. This returns a state
pointer on success, NULL on error. If an error occurs, this will
call the ERROR_CALLBACK routine.
Calling this function allocates resources that cannot be freed.
There is no backtrace_free_state function. The state is used to
cache information that is expensive to recompute. Programs are
expected to call this function at most once and to save the return
value for all later calls to backtrace functions. */
extern struct backtrace_state *backtrace_create_state (
const char *filename, int threaded,
backtrace_error_callback error_callback, void *data);
/* The type of the callback argument to the backtrace_full function.
DATA is the argument passed to backtrace_full. PC is the program
counter. FILENAME is the name of the file containing PC, or NULL
if not available. LINENO is the line number in FILENAME containing
PC, or 0 if not available. FUNCTION is the name of the function
containing PC, or NULL if not available. This should return 0 to
continuing tracing. The FILENAME and FUNCTION buffers may become
invalid after this function returns. */
typedef int (*backtrace_full_callback) (void *data, uintptr_t pc, uintptr_t lowaddr,
const char *filename, int lineno,
const char *function);
/* Get a full stack backtrace. SKIP is the number of frames to skip;
passing 0 will start the trace with the function calling
backtrace_full. DATA is passed to the callback routine. If any
call to CALLBACK returns a non-zero value, the stack backtrace
stops, and backtrace returns that value; this may be used to limit
the number of stack frames desired. If all calls to CALLBACK
return 0, backtrace returns 0. The backtrace_full function will
make at least one call to either CALLBACK or ERROR_CALLBACK. This
function requires debug info for the executable. */
extern int backtrace_full (struct backtrace_state *state, int skip,
backtrace_full_callback callback,
backtrace_error_callback error_callback,
void *data);
/* The type of the callback argument to the backtrace_simple function.
DATA is the argument passed to simple_backtrace. PC is the program
counter. This should return 0 to continue tracing. */
typedef int (*backtrace_simple_callback) (void *data, uintptr_t pc);
/* Get a simple backtrace. SKIP is the number of frames to skip, as
in backtrace. DATA is passed to the callback routine. If any call
to CALLBACK returns a non-zero value, the stack backtrace stops,
and backtrace_simple returns that value. Otherwise
backtrace_simple returns 0. The backtrace_simple function will
make at least one call to either CALLBACK or ERROR_CALLBACK. This
function does not require any debug info for the executable. */
extern int backtrace_simple (struct backtrace_state *state, int skip,
backtrace_simple_callback callback,
backtrace_error_callback error_callback,
void *data);
/* Print the current backtrace in a user readable format to a FILE.
SKIP is the number of frames to skip, as in backtrace_full. Any
error messages are printed to stderr. This function requires debug
info for the executable. */
extern void backtrace_print (struct backtrace_state *state, int skip, FILE *);
/* Given PC, a program counter in the current program, call the
callback function with filename, line number, and function name
information. This will normally call the callback function exactly
once. However, if the PC happens to describe an inlined call, and
the debugging information contains the necessary information, then
this may call the callback function multiple times. This will make
at least one call to either CALLBACK or ERROR_CALLBACK. This
returns the first non-zero value returned by CALLBACK, or 0. */
extern int backtrace_pcinfo (struct backtrace_state *state, uintptr_t pc,
backtrace_full_callback callback,
backtrace_error_callback error_callback,
void *data);
/* The type of the callback argument to backtrace_syminfo. DATA and
PC are the arguments passed to backtrace_syminfo. SYMNAME is the
name of the symbol for the corresponding code. SYMVAL is the
value and SYMSIZE is the size of the symbol. SYMNAME will be NULL
if no error occurred but the symbol could not be found. */
typedef void (*backtrace_syminfo_callback) (void *data, uintptr_t pc,
const char *symname,
uintptr_t symval,
uintptr_t symsize);
/* Given ADDR, an address or program counter in the current program,
call the callback information with the symbol name and value
describing the function or variable in which ADDR may be found.
This will call either CALLBACK or ERROR_CALLBACK exactly once.
This returns 1 on success, 0 on failure. This function requires
the symbol table but does not require the debug info. Note that if
the symbol table is present but ADDR could not be found in the
table, CALLBACK will be called with a NULL SYMNAME argument.
Returns 1 on success, 0 on error. */
extern int backtrace_syminfo (struct backtrace_state *state, uintptr_t addr,
backtrace_syminfo_callback callback,
backtrace_error_callback error_callback,
void *data);
}
#endif
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/backtrace.hpp
|
C++
|
gpl-3.0
| 8,731
|
#include <limits.h>
#if __WORDSIZE == 64
# define BACKTRACE_ELF_SIZE 64
#else
# define BACKTRACE_ELF_SIZE 32
#endif
#define HAVE_DLFCN_H 1
#define HAVE_FCNTL 1
#define HAVE_INTTYPES_H 1
#define HAVE_LSTAT 1
#define HAVE_READLINK 1
#define HAVE_DL_ITERATE_PHDR 1
#define HAVE_ATOMIC_FUNCTIONS 1
#define HAVE_DECL_STRNLEN 1
#ifdef __APPLE__
# define HAVE_MACH_O_DYLD_H 1
#elif defined BSD
# define HAVE_KERN_PROC 1
# define HAVE_KERN_PROC_ARGS 1
#endif
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/config.h
|
C++
|
gpl-3.0
| 458
|
/* dwarf.c -- Get file/line information from DWARF for backtraces.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include "filenames.hpp"
#include "backtrace.hpp"
#include "internal.hpp"
namespace tracy
{
/* DWARF constants. */
enum dwarf_tag {
DW_TAG_entry_point = 0x3,
DW_TAG_compile_unit = 0x11,
DW_TAG_inlined_subroutine = 0x1d,
DW_TAG_subprogram = 0x2e,
DW_TAG_skeleton_unit = 0x4a,
};
enum dwarf_form {
DW_FORM_addr = 0x01,
DW_FORM_block2 = 0x03,
DW_FORM_block4 = 0x04,
DW_FORM_data2 = 0x05,
DW_FORM_data4 = 0x06,
DW_FORM_data8 = 0x07,
DW_FORM_string = 0x08,
DW_FORM_block = 0x09,
DW_FORM_block1 = 0x0a,
DW_FORM_data1 = 0x0b,
DW_FORM_flag = 0x0c,
DW_FORM_sdata = 0x0d,
DW_FORM_strp = 0x0e,
DW_FORM_udata = 0x0f,
DW_FORM_ref_addr = 0x10,
DW_FORM_ref1 = 0x11,
DW_FORM_ref2 = 0x12,
DW_FORM_ref4 = 0x13,
DW_FORM_ref8 = 0x14,
DW_FORM_ref_udata = 0x15,
DW_FORM_indirect = 0x16,
DW_FORM_sec_offset = 0x17,
DW_FORM_exprloc = 0x18,
DW_FORM_flag_present = 0x19,
DW_FORM_ref_sig8 = 0x20,
DW_FORM_strx = 0x1a,
DW_FORM_addrx = 0x1b,
DW_FORM_ref_sup4 = 0x1c,
DW_FORM_strp_sup = 0x1d,
DW_FORM_data16 = 0x1e,
DW_FORM_line_strp = 0x1f,
DW_FORM_implicit_const = 0x21,
DW_FORM_loclistx = 0x22,
DW_FORM_rnglistx = 0x23,
DW_FORM_ref_sup8 = 0x24,
DW_FORM_strx1 = 0x25,
DW_FORM_strx2 = 0x26,
DW_FORM_strx3 = 0x27,
DW_FORM_strx4 = 0x28,
DW_FORM_addrx1 = 0x29,
DW_FORM_addrx2 = 0x2a,
DW_FORM_addrx3 = 0x2b,
DW_FORM_addrx4 = 0x2c,
DW_FORM_GNU_addr_index = 0x1f01,
DW_FORM_GNU_str_index = 0x1f02,
DW_FORM_GNU_ref_alt = 0x1f20,
DW_FORM_GNU_strp_alt = 0x1f21
};
enum dwarf_attribute {
DW_AT_sibling = 0x01,
DW_AT_location = 0x02,
DW_AT_name = 0x03,
DW_AT_ordering = 0x09,
DW_AT_subscr_data = 0x0a,
DW_AT_byte_size = 0x0b,
DW_AT_bit_offset = 0x0c,
DW_AT_bit_size = 0x0d,
DW_AT_element_list = 0x0f,
DW_AT_stmt_list = 0x10,
DW_AT_low_pc = 0x11,
DW_AT_high_pc = 0x12,
DW_AT_language = 0x13,
DW_AT_member = 0x14,
DW_AT_discr = 0x15,
DW_AT_discr_value = 0x16,
DW_AT_visibility = 0x17,
DW_AT_import = 0x18,
DW_AT_string_length = 0x19,
DW_AT_common_reference = 0x1a,
DW_AT_comp_dir = 0x1b,
DW_AT_const_value = 0x1c,
DW_AT_containing_type = 0x1d,
DW_AT_default_value = 0x1e,
DW_AT_inline = 0x20,
DW_AT_is_optional = 0x21,
DW_AT_lower_bound = 0x22,
DW_AT_producer = 0x25,
DW_AT_prototyped = 0x27,
DW_AT_return_addr = 0x2a,
DW_AT_start_scope = 0x2c,
DW_AT_bit_stride = 0x2e,
DW_AT_upper_bound = 0x2f,
DW_AT_abstract_origin = 0x31,
DW_AT_accessibility = 0x32,
DW_AT_address_class = 0x33,
DW_AT_artificial = 0x34,
DW_AT_base_types = 0x35,
DW_AT_calling_convention = 0x36,
DW_AT_count = 0x37,
DW_AT_data_member_location = 0x38,
DW_AT_decl_column = 0x39,
DW_AT_decl_file = 0x3a,
DW_AT_decl_line = 0x3b,
DW_AT_declaration = 0x3c,
DW_AT_discr_list = 0x3d,
DW_AT_encoding = 0x3e,
DW_AT_external = 0x3f,
DW_AT_frame_base = 0x40,
DW_AT_friend = 0x41,
DW_AT_identifier_case = 0x42,
DW_AT_macro_info = 0x43,
DW_AT_namelist_items = 0x44,
DW_AT_priority = 0x45,
DW_AT_segment = 0x46,
DW_AT_specification = 0x47,
DW_AT_static_link = 0x48,
DW_AT_type = 0x49,
DW_AT_use_location = 0x4a,
DW_AT_variable_parameter = 0x4b,
DW_AT_virtuality = 0x4c,
DW_AT_vtable_elem_location = 0x4d,
DW_AT_allocated = 0x4e,
DW_AT_associated = 0x4f,
DW_AT_data_location = 0x50,
DW_AT_byte_stride = 0x51,
DW_AT_entry_pc = 0x52,
DW_AT_use_UTF8 = 0x53,
DW_AT_extension = 0x54,
DW_AT_ranges = 0x55,
DW_AT_trampoline = 0x56,
DW_AT_call_column = 0x57,
DW_AT_call_file = 0x58,
DW_AT_call_line = 0x59,
DW_AT_description = 0x5a,
DW_AT_binary_scale = 0x5b,
DW_AT_decimal_scale = 0x5c,
DW_AT_small = 0x5d,
DW_AT_decimal_sign = 0x5e,
DW_AT_digit_count = 0x5f,
DW_AT_picture_string = 0x60,
DW_AT_mutable = 0x61,
DW_AT_threads_scaled = 0x62,
DW_AT_explicit = 0x63,
DW_AT_object_pointer = 0x64,
DW_AT_endianity = 0x65,
DW_AT_elemental = 0x66,
DW_AT_pure = 0x67,
DW_AT_recursive = 0x68,
DW_AT_signature = 0x69,
DW_AT_main_subprogram = 0x6a,
DW_AT_data_bit_offset = 0x6b,
DW_AT_const_expr = 0x6c,
DW_AT_enum_class = 0x6d,
DW_AT_linkage_name = 0x6e,
DW_AT_string_length_bit_size = 0x6f,
DW_AT_string_length_byte_size = 0x70,
DW_AT_rank = 0x71,
DW_AT_str_offsets_base = 0x72,
DW_AT_addr_base = 0x73,
DW_AT_rnglists_base = 0x74,
DW_AT_dwo_name = 0x76,
DW_AT_reference = 0x77,
DW_AT_rvalue_reference = 0x78,
DW_AT_macros = 0x79,
DW_AT_call_all_calls = 0x7a,
DW_AT_call_all_source_calls = 0x7b,
DW_AT_call_all_tail_calls = 0x7c,
DW_AT_call_return_pc = 0x7d,
DW_AT_call_value = 0x7e,
DW_AT_call_origin = 0x7f,
DW_AT_call_parameter = 0x80,
DW_AT_call_pc = 0x81,
DW_AT_call_tail_call = 0x82,
DW_AT_call_target = 0x83,
DW_AT_call_target_clobbered = 0x84,
DW_AT_call_data_location = 0x85,
DW_AT_call_data_value = 0x86,
DW_AT_noreturn = 0x87,
DW_AT_alignment = 0x88,
DW_AT_export_symbols = 0x89,
DW_AT_deleted = 0x8a,
DW_AT_defaulted = 0x8b,
DW_AT_loclists_base = 0x8c,
DW_AT_lo_user = 0x2000,
DW_AT_hi_user = 0x3fff,
DW_AT_MIPS_fde = 0x2001,
DW_AT_MIPS_loop_begin = 0x2002,
DW_AT_MIPS_tail_loop_begin = 0x2003,
DW_AT_MIPS_epilog_begin = 0x2004,
DW_AT_MIPS_loop_unroll_factor = 0x2005,
DW_AT_MIPS_software_pipeline_depth = 0x2006,
DW_AT_MIPS_linkage_name = 0x2007,
DW_AT_MIPS_stride = 0x2008,
DW_AT_MIPS_abstract_name = 0x2009,
DW_AT_MIPS_clone_origin = 0x200a,
DW_AT_MIPS_has_inlines = 0x200b,
DW_AT_HP_block_index = 0x2000,
DW_AT_HP_unmodifiable = 0x2001,
DW_AT_HP_prologue = 0x2005,
DW_AT_HP_epilogue = 0x2008,
DW_AT_HP_actuals_stmt_list = 0x2010,
DW_AT_HP_proc_per_section = 0x2011,
DW_AT_HP_raw_data_ptr = 0x2012,
DW_AT_HP_pass_by_reference = 0x2013,
DW_AT_HP_opt_level = 0x2014,
DW_AT_HP_prof_version_id = 0x2015,
DW_AT_HP_opt_flags = 0x2016,
DW_AT_HP_cold_region_low_pc = 0x2017,
DW_AT_HP_cold_region_high_pc = 0x2018,
DW_AT_HP_all_variables_modifiable = 0x2019,
DW_AT_HP_linkage_name = 0x201a,
DW_AT_HP_prof_flags = 0x201b,
DW_AT_HP_unit_name = 0x201f,
DW_AT_HP_unit_size = 0x2020,
DW_AT_HP_widened_byte_size = 0x2021,
DW_AT_HP_definition_points = 0x2022,
DW_AT_HP_default_location = 0x2023,
DW_AT_HP_is_result_param = 0x2029,
DW_AT_sf_names = 0x2101,
DW_AT_src_info = 0x2102,
DW_AT_mac_info = 0x2103,
DW_AT_src_coords = 0x2104,
DW_AT_body_begin = 0x2105,
DW_AT_body_end = 0x2106,
DW_AT_GNU_vector = 0x2107,
DW_AT_GNU_guarded_by = 0x2108,
DW_AT_GNU_pt_guarded_by = 0x2109,
DW_AT_GNU_guarded = 0x210a,
DW_AT_GNU_pt_guarded = 0x210b,
DW_AT_GNU_locks_excluded = 0x210c,
DW_AT_GNU_exclusive_locks_required = 0x210d,
DW_AT_GNU_shared_locks_required = 0x210e,
DW_AT_GNU_odr_signature = 0x210f,
DW_AT_GNU_template_name = 0x2110,
DW_AT_GNU_call_site_value = 0x2111,
DW_AT_GNU_call_site_data_value = 0x2112,
DW_AT_GNU_call_site_target = 0x2113,
DW_AT_GNU_call_site_target_clobbered = 0x2114,
DW_AT_GNU_tail_call = 0x2115,
DW_AT_GNU_all_tail_call_sites = 0x2116,
DW_AT_GNU_all_call_sites = 0x2117,
DW_AT_GNU_all_source_call_sites = 0x2118,
DW_AT_GNU_macros = 0x2119,
DW_AT_GNU_deleted = 0x211a,
DW_AT_GNU_dwo_name = 0x2130,
DW_AT_GNU_dwo_id = 0x2131,
DW_AT_GNU_ranges_base = 0x2132,
DW_AT_GNU_addr_base = 0x2133,
DW_AT_GNU_pubnames = 0x2134,
DW_AT_GNU_pubtypes = 0x2135,
DW_AT_GNU_discriminator = 0x2136,
DW_AT_GNU_locviews = 0x2137,
DW_AT_GNU_entry_view = 0x2138,
DW_AT_VMS_rtnbeg_pd_address = 0x2201,
DW_AT_use_GNAT_descriptive_type = 0x2301,
DW_AT_GNAT_descriptive_type = 0x2302,
DW_AT_GNU_numerator = 0x2303,
DW_AT_GNU_denominator = 0x2304,
DW_AT_GNU_bias = 0x2305,
DW_AT_upc_threads_scaled = 0x3210,
DW_AT_PGI_lbase = 0x3a00,
DW_AT_PGI_soffset = 0x3a01,
DW_AT_PGI_lstride = 0x3a02,
DW_AT_APPLE_optimized = 0x3fe1,
DW_AT_APPLE_flags = 0x3fe2,
DW_AT_APPLE_isa = 0x3fe3,
DW_AT_APPLE_block = 0x3fe4,
DW_AT_APPLE_major_runtime_vers = 0x3fe5,
DW_AT_APPLE_runtime_class = 0x3fe6,
DW_AT_APPLE_omit_frame_ptr = 0x3fe7,
DW_AT_APPLE_property_name = 0x3fe8,
DW_AT_APPLE_property_getter = 0x3fe9,
DW_AT_APPLE_property_setter = 0x3fea,
DW_AT_APPLE_property_attribute = 0x3feb,
DW_AT_APPLE_objc_complete_type = 0x3fec,
DW_AT_APPLE_property = 0x3fed
};
enum dwarf_line_number_op {
DW_LNS_extended_op = 0x0,
DW_LNS_copy = 0x1,
DW_LNS_advance_pc = 0x2,
DW_LNS_advance_line = 0x3,
DW_LNS_set_file = 0x4,
DW_LNS_set_column = 0x5,
DW_LNS_negate_stmt = 0x6,
DW_LNS_set_basic_block = 0x7,
DW_LNS_const_add_pc = 0x8,
DW_LNS_fixed_advance_pc = 0x9,
DW_LNS_set_prologue_end = 0xa,
DW_LNS_set_epilogue_begin = 0xb,
DW_LNS_set_isa = 0xc,
};
enum dwarf_extended_line_number_op {
DW_LNE_end_sequence = 0x1,
DW_LNE_set_address = 0x2,
DW_LNE_define_file = 0x3,
DW_LNE_set_discriminator = 0x4,
};
enum dwarf_line_number_content_type {
DW_LNCT_path = 0x1,
DW_LNCT_directory_index = 0x2,
DW_LNCT_timestamp = 0x3,
DW_LNCT_size = 0x4,
DW_LNCT_MD5 = 0x5,
DW_LNCT_lo_user = 0x2000,
DW_LNCT_hi_user = 0x3fff
};
enum dwarf_range_list_entry {
DW_RLE_end_of_list = 0x00,
DW_RLE_base_addressx = 0x01,
DW_RLE_startx_endx = 0x02,
DW_RLE_startx_length = 0x03,
DW_RLE_offset_pair = 0x04,
DW_RLE_base_address = 0x05,
DW_RLE_start_end = 0x06,
DW_RLE_start_length = 0x07
};
enum dwarf_unit_type {
DW_UT_compile = 0x01,
DW_UT_type = 0x02,
DW_UT_partial = 0x03,
DW_UT_skeleton = 0x04,
DW_UT_split_compile = 0x05,
DW_UT_split_type = 0x06,
DW_UT_lo_user = 0x80,
DW_UT_hi_user = 0xff
};
#if !defined(HAVE_DECL_STRNLEN) || !HAVE_DECL_STRNLEN
/* If strnlen is not declared, provide our own version. */
static size_t
xstrnlen (const char *s, size_t maxlen)
{
size_t i;
for (i = 0; i < maxlen; ++i)
if (s[i] == '\0')
break;
return i;
}
#define strnlen xstrnlen
#endif
/* A buffer to read DWARF info. */
struct dwarf_buf
{
/* Buffer name for error messages. */
const char *name;
/* Start of the buffer. */
const unsigned char *start;
/* Next byte to read. */
const unsigned char *buf;
/* The number of bytes remaining. */
size_t left;
/* Whether the data is big-endian. */
int is_bigendian;
/* Error callback routine. */
backtrace_error_callback error_callback;
/* Data for error_callback. */
void *data;
/* Non-zero if we've reported an underflow error. */
int reported_underflow;
};
/* A single attribute in a DWARF abbreviation. */
struct attr
{
/* The attribute name. */
enum dwarf_attribute name;
/* The attribute form. */
enum dwarf_form form;
/* The attribute value, for DW_FORM_implicit_const. */
int64_t val;
};
/* A single DWARF abbreviation. */
struct abbrev
{
/* The abbrev code--the number used to refer to the abbrev. */
uint64_t code;
/* The entry tag. */
enum dwarf_tag tag;
/* Non-zero if this abbrev has child entries. */
int has_children;
/* The number of attributes. */
size_t num_attrs;
/* The attributes. */
struct attr *attrs;
};
/* The DWARF abbreviations for a compilation unit. This structure
only exists while reading the compilation unit. Most DWARF readers
seem to a hash table to map abbrev ID's to abbrev entries.
However, we primarily care about GCC, and GCC simply issues ID's in
numerical order starting at 1. So we simply keep a sorted vector,
and try to just look up the code. */
struct abbrevs
{
/* The number of abbrevs in the vector. */
size_t num_abbrevs;
/* The abbrevs, sorted by the code field. */
struct abbrev *abbrevs;
};
/* The different kinds of attribute values. */
enum attr_val_encoding
{
/* No attribute value. */
ATTR_VAL_NONE,
/* An address. */
ATTR_VAL_ADDRESS,
/* An index into the .debug_addr section, whose value is relative to
* the DW_AT_addr_base attribute of the compilation unit. */
ATTR_VAL_ADDRESS_INDEX,
/* A unsigned integer. */
ATTR_VAL_UINT,
/* A sigd integer. */
ATTR_VAL_SINT,
/* A string. */
ATTR_VAL_STRING,
/* An index into the .debug_str_offsets section. */
ATTR_VAL_STRING_INDEX,
/* An offset to other data in the containing unit. */
ATTR_VAL_REF_UNIT,
/* An offset to other data within the .debug_info section. */
ATTR_VAL_REF_INFO,
/* An offset to other data within the alt .debug_info section. */
ATTR_VAL_REF_ALT_INFO,
/* An offset to data in some other section. */
ATTR_VAL_REF_SECTION,
/* A type signature. */
ATTR_VAL_REF_TYPE,
/* An index into the .debug_rnglists section. */
ATTR_VAL_RNGLISTS_INDEX,
/* A block of data (not represented). */
ATTR_VAL_BLOCK,
/* An expression (not represented). */
ATTR_VAL_EXPR,
};
/* An attribute value. */
struct attr_val
{
/* How the value is stored in the field u. */
enum attr_val_encoding encoding;
union
{
/* ATTR_VAL_ADDRESS*, ATTR_VAL_UINT, ATTR_VAL_REF*. */
uint64_t uint;
/* ATTR_VAL_SINT. */
int64_t sint;
/* ATTR_VAL_STRING. */
const char *string;
/* ATTR_VAL_BLOCK not stored. */
} u;
};
/* The line number program header. */
struct line_header
{
/* The version of the line number information. */
int version;
/* Address size. */
int addrsize;
/* The minimum instruction length. */
unsigned int min_insn_len;
/* The maximum number of ops per instruction. */
unsigned int max_ops_per_insn;
/* The line base for special opcodes. */
int line_base;
/* The line range for special opcodes. */
unsigned int line_range;
/* The opcode base--the first special opcode. */
unsigned int opcode_base;
/* Opcode lengths, indexed by opcode - 1. */
const unsigned char *opcode_lengths;
/* The number of directory entries. */
size_t dirs_count;
/* The directory entries. */
const char **dirs;
/* The number of filenames. */
size_t filenames_count;
/* The filenames. */
const char **filenames;
};
/* A format description from a line header. */
struct line_header_format
{
int lnct; /* LNCT code. */
enum dwarf_form form; /* Form of entry data. */
};
/* Map a single PC value to a file/line. We will keep a vector of
these sorted by PC value. Each file/line will be correct from the
PC up to the PC of the next entry if there is one. We allocate one
extra entry at the end so that we can use bsearch. */
struct line
{
/* PC. */
uintptr_t pc;
/* File name. Many entries in the array are expected to point to
the same file name. */
const char *filename;
/* Line number. */
int lineno;
/* Index of the object in the original array read from the DWARF
section, before it has been sorted. The index makes it possible
to use Quicksort and maintain stability. */
int idx;
};
/* A growable vector of line number information. This is used while
reading the line numbers. */
struct line_vector
{
/* Memory. This is an array of struct line. */
struct backtrace_vector vec;
/* Number of valid mappings. */
size_t count;
};
/* A function described in the debug info. */
struct function
{
/* The name of the function. */
const char *name;
/* If this is an inlined function, the filename of the call
site. */
const char *caller_filename;
/* If this is an inlined function, the line number of the call
site. */
int caller_lineno;
/* Map PC ranges to inlined functions. */
struct function_addrs *function_addrs;
size_t function_addrs_count;
};
/* An address range for a function. This maps a PC value to a
specific function. */
struct function_addrs
{
/* Range is LOW <= PC < HIGH. */
uint64_t low;
uint64_t high;
/* Function for this address range. */
struct function *function;
};
/* A growable vector of function address ranges. */
struct function_vector
{
/* Memory. This is an array of struct function_addrs. */
struct backtrace_vector vec;
/* Number of address ranges present. */
size_t count;
};
/* A DWARF compilation unit. This only holds the information we need
to map a PC to a file and line. */
struct unit
{
/* The first entry for this compilation unit. */
const unsigned char *unit_data;
/* The length of the data for this compilation unit. */
size_t unit_data_len;
/* The offset of UNIT_DATA from the start of the information for
this compilation unit. */
size_t unit_data_offset;
/* Offset of the start of the compilation unit from the start of the
.debug_info section. */
size_t low_offset;
/* Offset of the end of the compilation unit from the start of the
.debug_info section. */
size_t high_offset;
/* DWARF version. */
int version;
/* Whether unit is DWARF64. */
int is_dwarf64;
/* Address size. */
int addrsize;
/* Offset into line number information. */
off_t lineoff;
/* Offset of compilation unit in .debug_str_offsets. */
uint64_t str_offsets_base;
/* Offset of compilation unit in .debug_addr. */
uint64_t addr_base;
/* Offset of compilation unit in .debug_rnglists. */
uint64_t rnglists_base;
/* Primary source file. */
const char *filename;
/* Compilation command working directory. */
const char *comp_dir;
/* Absolute file name, only set if needed. */
const char *abs_filename;
/* The abbreviations for this unit. */
struct abbrevs abbrevs;
/* The fields above this point are read in during initialization and
may be accessed freely. The fields below this point are read in
as needed, and therefore require care, as different threads may
try to initialize them simultaneously. */
/* PC to line number mapping. This is NULL if the values have not
been read. This is (struct line *) -1 if there was an error
reading the values. */
struct line *lines;
/* Number of entries in lines. */
size_t lines_count;
/* PC ranges to function. */
struct function_addrs *function_addrs;
size_t function_addrs_count;
};
/* An address range for a compilation unit. This maps a PC value to a
specific compilation unit. Note that we invert the representation
in DWARF: instead of listing the units and attaching a list of
ranges, we list the ranges and have each one point to the unit.
This lets us do a binary search to find the unit. */
struct unit_addrs
{
/* Range is LOW <= PC < HIGH. */
uint64_t low;
uint64_t high;
/* Compilation unit for this address range. */
struct unit *u;
};
/* A growable vector of compilation unit address ranges. */
struct unit_addrs_vector
{
/* Memory. This is an array of struct unit_addrs. */
struct backtrace_vector vec;
/* Number of address ranges present. */
size_t count;
};
/* A growable vector of compilation unit pointer. */
struct unit_vector
{
struct backtrace_vector vec;
size_t count;
};
/* The information we need to map a PC to a file and line. */
struct dwarf_data
{
/* The data for the next file we know about. */
struct dwarf_data *next;
/* The data for .gnu_debugaltlink. */
struct dwarf_data *altlink;
/* The base address for this file. */
uintptr_t base_address;
/* A sorted list of address ranges. */
struct unit_addrs *addrs;
/* Number of address ranges in list. */
size_t addrs_count;
/* A sorted list of units. */
struct unit **units;
/* Number of units in the list. */
size_t units_count;
/* The unparsed DWARF debug data. */
struct dwarf_sections dwarf_sections;
/* Whether the data is big-endian or not. */
int is_bigendian;
/* A vector used for function addresses. We keep this here so that
we can grow the vector as we read more functions. */
struct function_vector fvec;
};
/* Report an error for a DWARF buffer. */
static void
dwarf_buf_error (struct dwarf_buf *buf, const char *msg, int errnum)
{
char b[200];
snprintf (b, sizeof b, "%s in %s at %d",
msg, buf->name, (int) (buf->buf - buf->start));
buf->error_callback (buf->data, b, errnum);
}
/* Require at least COUNT bytes in BUF. Return 1 if all is well, 0 on
error. */
static int
require (struct dwarf_buf *buf, size_t count)
{
if (buf->left >= count)
return 1;
if (!buf->reported_underflow)
{
dwarf_buf_error (buf, "DWARF underflow", 0);
buf->reported_underflow = 1;
}
return 0;
}
/* Advance COUNT bytes in BUF. Return 1 if all is well, 0 on
error. */
static int
advance (struct dwarf_buf *buf, size_t count)
{
if (!require (buf, count))
return 0;
buf->buf += count;
buf->left -= count;
return 1;
}
/* Read one zero-terminated string from BUF and advance past the string. */
static const char *
read_string (struct dwarf_buf *buf)
{
const char *p = (const char *)buf->buf;
size_t len = strnlen (p, buf->left);
/* - If len == left, we ran out of buffer before finding the zero terminator.
Generate an error by advancing len + 1.
- If len < left, advance by len + 1 to skip past the zero terminator. */
size_t count = len + 1;
if (!advance (buf, count))
return NULL;
return p;
}
/* Read one byte from BUF and advance 1 byte. */
static unsigned char
read_byte (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 1))
return 0;
return p[0];
}
/* Read a signed char from BUF and advance 1 byte. */
static signed char
read_sbyte (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 1))
return 0;
return (*p ^ 0x80) - 0x80;
}
/* Read a uint16 from BUF and advance 2 bytes. */
static uint16_t
read_uint16 (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 2))
return 0;
if (buf->is_bigendian)
return ((uint16_t) p[0] << 8) | (uint16_t) p[1];
else
return ((uint16_t) p[1] << 8) | (uint16_t) p[0];
}
/* Read a 24 bit value from BUF and advance 3 bytes. */
static uint32_t
read_uint24 (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 3))
return 0;
if (buf->is_bigendian)
return (((uint32_t) p[0] << 16) | ((uint32_t) p[1] << 8)
| (uint32_t) p[2]);
else
return (((uint32_t) p[2] << 16) | ((uint32_t) p[1] << 8)
| (uint32_t) p[0]);
}
/* Read a uint32 from BUF and advance 4 bytes. */
static uint32_t
read_uint32 (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 4))
return 0;
if (buf->is_bigendian)
return (((uint32_t) p[0] << 24) | ((uint32_t) p[1] << 16)
| ((uint32_t) p[2] << 8) | (uint32_t) p[3]);
else
return (((uint32_t) p[3] << 24) | ((uint32_t) p[2] << 16)
| ((uint32_t) p[1] << 8) | (uint32_t) p[0]);
}
/* Read a uint64 from BUF and advance 8 bytes. */
static uint64_t
read_uint64 (struct dwarf_buf *buf)
{
const unsigned char *p = buf->buf;
if (!advance (buf, 8))
return 0;
if (buf->is_bigendian)
return (((uint64_t) p[0] << 56) | ((uint64_t) p[1] << 48)
| ((uint64_t) p[2] << 40) | ((uint64_t) p[3] << 32)
| ((uint64_t) p[4] << 24) | ((uint64_t) p[5] << 16)
| ((uint64_t) p[6] << 8) | (uint64_t) p[7]);
else
return (((uint64_t) p[7] << 56) | ((uint64_t) p[6] << 48)
| ((uint64_t) p[5] << 40) | ((uint64_t) p[4] << 32)
| ((uint64_t) p[3] << 24) | ((uint64_t) p[2] << 16)
| ((uint64_t) p[1] << 8) | (uint64_t) p[0]);
}
/* Read an offset from BUF and advance the appropriate number of
bytes. */
static uint64_t
read_offset (struct dwarf_buf *buf, int is_dwarf64)
{
if (is_dwarf64)
return read_uint64 (buf);
else
return read_uint32 (buf);
}
/* Read an address from BUF and advance the appropriate number of
bytes. */
static uint64_t
read_address (struct dwarf_buf *buf, int addrsize)
{
switch (addrsize)
{
case 1:
return read_byte (buf);
case 2:
return read_uint16 (buf);
case 4:
return read_uint32 (buf);
case 8:
return read_uint64 (buf);
default:
dwarf_buf_error (buf, "unrecognized address size", 0);
return 0;
}
}
/* Return whether a value is the highest possible address, given the
address size. */
static int
is_highest_address (uint64_t address, int addrsize)
{
switch (addrsize)
{
case 1:
return address == (unsigned char) -1;
case 2:
return address == (uint16_t) -1;
case 4:
return address == (uint32_t) -1;
case 8:
return address == (uint64_t) -1;
default:
return 0;
}
}
/* Read an unsigned LEB128 number. */
static uint64_t
read_uleb128 (struct dwarf_buf *buf)
{
uint64_t ret;
unsigned int shift;
int overflow;
unsigned char b;
ret = 0;
shift = 0;
overflow = 0;
do
{
const unsigned char *p;
p = buf->buf;
if (!advance (buf, 1))
return 0;
b = *p;
if (shift < 64)
ret |= ((uint64_t) (b & 0x7f)) << shift;
else if (!overflow)
{
dwarf_buf_error (buf, "LEB128 overflows uint64_t", 0);
overflow = 1;
}
shift += 7;
}
while ((b & 0x80) != 0);
return ret;
}
/* Read a signed LEB128 number. */
static int64_t
read_sleb128 (struct dwarf_buf *buf)
{
uint64_t val;
unsigned int shift;
int overflow;
unsigned char b;
val = 0;
shift = 0;
overflow = 0;
do
{
const unsigned char *p;
p = buf->buf;
if (!advance (buf, 1))
return 0;
b = *p;
if (shift < 64)
val |= ((uint64_t) (b & 0x7f)) << shift;
else if (!overflow)
{
dwarf_buf_error (buf, "signed LEB128 overflows uint64_t", 0);
overflow = 1;
}
shift += 7;
}
while ((b & 0x80) != 0);
if ((b & 0x40) != 0 && shift < 64)
val |= ((uint64_t) -1) << shift;
return (int64_t) val;
}
/* Return the length of an LEB128 number. */
static size_t
leb128_len (const unsigned char *p)
{
size_t ret;
ret = 1;
while ((*p & 0x80) != 0)
{
++p;
++ret;
}
return ret;
}
/* Read initial_length from BUF and advance the appropriate number of bytes. */
static uint64_t
read_initial_length (struct dwarf_buf *buf, int *is_dwarf64)
{
uint64_t len;
len = read_uint32 (buf);
if (len == 0xffffffff)
{
len = read_uint64 (buf);
*is_dwarf64 = 1;
}
else
*is_dwarf64 = 0;
return len;
}
/* Free an abbreviations structure. */
static void
free_abbrevs (struct backtrace_state *state, struct abbrevs *abbrevs,
backtrace_error_callback error_callback, void *data)
{
size_t i;
for (i = 0; i < abbrevs->num_abbrevs; ++i)
backtrace_free (state, abbrevs->abbrevs[i].attrs,
abbrevs->abbrevs[i].num_attrs * sizeof (struct attr),
error_callback, data);
backtrace_free (state, abbrevs->abbrevs,
abbrevs->num_abbrevs * sizeof (struct abbrev),
error_callback, data);
abbrevs->num_abbrevs = 0;
abbrevs->abbrevs = NULL;
}
/* Read an attribute value. Returns 1 on success, 0 on failure. If
the value can be represented as a uint64_t, sets *VAL and sets
*IS_VALID to 1. We don't try to store the value of other attribute
forms, because we don't care about them. */
static int
read_attribute (enum dwarf_form form, uint64_t implicit_val,
struct dwarf_buf *buf, int is_dwarf64, int version,
int addrsize, const struct dwarf_sections *dwarf_sections,
struct dwarf_data *altlink, struct attr_val *val)
{
/* Avoid warnings about val.u.FIELD may be used uninitialized if
this function is inlined. The warnings aren't valid but can
occur because the different fields are set and used
conditionally. */
memset (val, 0, sizeof *val);
switch (form)
{
case DW_FORM_addr:
val->encoding = ATTR_VAL_ADDRESS;
val->u.uint = read_address (buf, addrsize);
return 1;
case DW_FORM_block2:
val->encoding = ATTR_VAL_BLOCK;
return advance (buf, read_uint16 (buf));
case DW_FORM_block4:
val->encoding = ATTR_VAL_BLOCK;
return advance (buf, read_uint32 (buf));
case DW_FORM_data2:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_uint16 (buf);
return 1;
case DW_FORM_data4:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_uint32 (buf);
return 1;
case DW_FORM_data8:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_uint64 (buf);
return 1;
case DW_FORM_data16:
val->encoding = ATTR_VAL_BLOCK;
return advance (buf, 16);
case DW_FORM_string:
val->encoding = ATTR_VAL_STRING;
val->u.string = read_string (buf);
return val->u.string == NULL ? 0 : 1;
case DW_FORM_block:
val->encoding = ATTR_VAL_BLOCK;
return advance (buf, read_uleb128 (buf));
case DW_FORM_block1:
val->encoding = ATTR_VAL_BLOCK;
return advance (buf, read_byte (buf));
case DW_FORM_data1:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_byte (buf);
return 1;
case DW_FORM_flag:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_byte (buf);
return 1;
case DW_FORM_sdata:
val->encoding = ATTR_VAL_SINT;
val->u.sint = read_sleb128 (buf);
return 1;
case DW_FORM_strp:
{
uint64_t offset;
offset = read_offset (buf, is_dwarf64);
if (offset >= dwarf_sections->size[DEBUG_STR])
{
dwarf_buf_error (buf, "DW_FORM_strp out of range", 0);
return 0;
}
val->encoding = ATTR_VAL_STRING;
val->u.string =
(const char *) dwarf_sections->data[DEBUG_STR] + offset;
return 1;
}
case DW_FORM_line_strp:
{
uint64_t offset;
offset = read_offset (buf, is_dwarf64);
if (offset >= dwarf_sections->size[DEBUG_LINE_STR])
{
dwarf_buf_error (buf, "DW_FORM_line_strp out of range", 0);
return 0;
}
val->encoding = ATTR_VAL_STRING;
val->u.string =
(const char *) dwarf_sections->data[DEBUG_LINE_STR] + offset;
return 1;
}
case DW_FORM_udata:
val->encoding = ATTR_VAL_UINT;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_ref_addr:
val->encoding = ATTR_VAL_REF_INFO;
if (version == 2)
val->u.uint = read_address (buf, addrsize);
else
val->u.uint = read_offset (buf, is_dwarf64);
return 1;
case DW_FORM_ref1:
val->encoding = ATTR_VAL_REF_UNIT;
val->u.uint = read_byte (buf);
return 1;
case DW_FORM_ref2:
val->encoding = ATTR_VAL_REF_UNIT;
val->u.uint = read_uint16 (buf);
return 1;
case DW_FORM_ref4:
val->encoding = ATTR_VAL_REF_UNIT;
val->u.uint = read_uint32 (buf);
return 1;
case DW_FORM_ref8:
val->encoding = ATTR_VAL_REF_UNIT;
val->u.uint = read_uint64 (buf);
return 1;
case DW_FORM_ref_udata:
val->encoding = ATTR_VAL_REF_UNIT;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_indirect:
{
uint64_t form;
form = read_uleb128 (buf);
if (form == DW_FORM_implicit_const)
{
dwarf_buf_error (buf,
"DW_FORM_indirect to DW_FORM_implicit_const",
0);
return 0;
}
return read_attribute ((enum dwarf_form) form, 0, buf, is_dwarf64,
version, addrsize, dwarf_sections, altlink,
val);
}
case DW_FORM_sec_offset:
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_offset (buf, is_dwarf64);
return 1;
case DW_FORM_exprloc:
val->encoding = ATTR_VAL_EXPR;
return advance (buf, read_uleb128 (buf));
case DW_FORM_flag_present:
val->encoding = ATTR_VAL_UINT;
val->u.uint = 1;
return 1;
case DW_FORM_ref_sig8:
val->encoding = ATTR_VAL_REF_TYPE;
val->u.uint = read_uint64 (buf);
return 1;
case DW_FORM_strx: case DW_FORM_strx1: case DW_FORM_strx2:
case DW_FORM_strx3: case DW_FORM_strx4:
{
uint64_t offset;
switch (form)
{
case DW_FORM_strx:
offset = read_uleb128 (buf);
break;
case DW_FORM_strx1:
offset = read_byte (buf);
break;
case DW_FORM_strx2:
offset = read_uint16 (buf);
break;
case DW_FORM_strx3:
offset = read_uint24 (buf);
break;
case DW_FORM_strx4:
offset = read_uint32 (buf);
break;
default:
/* This case can't happen. */
return 0;
}
val->encoding = ATTR_VAL_STRING_INDEX;
val->u.uint = offset;
return 1;
}
case DW_FORM_addrx: case DW_FORM_addrx1: case DW_FORM_addrx2:
case DW_FORM_addrx3: case DW_FORM_addrx4:
{
uint64_t offset;
switch (form)
{
case DW_FORM_addrx:
offset = read_uleb128 (buf);
break;
case DW_FORM_addrx1:
offset = read_byte (buf);
break;
case DW_FORM_addrx2:
offset = read_uint16 (buf);
break;
case DW_FORM_addrx3:
offset = read_uint24 (buf);
break;
case DW_FORM_addrx4:
offset = read_uint32 (buf);
break;
default:
/* This case can't happen. */
return 0;
}
val->encoding = ATTR_VAL_ADDRESS_INDEX;
val->u.uint = offset;
return 1;
}
case DW_FORM_ref_sup4:
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_uint32 (buf);
return 1;
case DW_FORM_ref_sup8:
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_uint64 (buf);
return 1;
case DW_FORM_implicit_const:
val->encoding = ATTR_VAL_UINT;
val->u.uint = implicit_val;
return 1;
case DW_FORM_loclistx:
/* We don't distinguish this from DW_FORM_sec_offset. It
* shouldn't matter since we don't care about loclists. */
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_rnglistx:
val->encoding = ATTR_VAL_RNGLISTS_INDEX;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_GNU_addr_index:
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_GNU_str_index:
val->encoding = ATTR_VAL_REF_SECTION;
val->u.uint = read_uleb128 (buf);
return 1;
case DW_FORM_GNU_ref_alt:
val->u.uint = read_offset (buf, is_dwarf64);
if (altlink == NULL)
{
val->encoding = ATTR_VAL_NONE;
return 1;
}
val->encoding = ATTR_VAL_REF_ALT_INFO;
return 1;
case DW_FORM_strp_sup: case DW_FORM_GNU_strp_alt:
{
uint64_t offset;
offset = read_offset (buf, is_dwarf64);
if (altlink == NULL)
{
val->encoding = ATTR_VAL_NONE;
return 1;
}
if (offset >= altlink->dwarf_sections.size[DEBUG_STR])
{
dwarf_buf_error (buf, "DW_FORM_strp_sup out of range", 0);
return 0;
}
val->encoding = ATTR_VAL_STRING;
val->u.string =
(const char *) altlink->dwarf_sections.data[DEBUG_STR] + offset;
return 1;
}
default:
dwarf_buf_error (buf, "unrecognized DWARF form", -1);
return 0;
}
}
/* If we can determine the value of a string attribute, set *STRING to
point to the string. Return 1 on success, 0 on error. If we don't
know the value, we consider that a success, and we don't change
*STRING. An error is only reported for some sort of out of range
offset. */
static int
resolve_string (const struct dwarf_sections *dwarf_sections, int is_dwarf64,
int is_bigendian, uint64_t str_offsets_base,
const struct attr_val *val,
backtrace_error_callback error_callback, void *data,
const char **string)
{
switch (val->encoding)
{
case ATTR_VAL_STRING:
*string = val->u.string;
return 1;
case ATTR_VAL_STRING_INDEX:
{
uint64_t offset;
struct dwarf_buf offset_buf;
offset = val->u.uint * (is_dwarf64 ? 8 : 4) + str_offsets_base;
if (offset + (is_dwarf64 ? 8 : 4)
> dwarf_sections->size[DEBUG_STR_OFFSETS])
{
error_callback (data, "DW_FORM_strx value out of range", 0);
return 0;
}
offset_buf.name = ".debug_str_offsets";
offset_buf.start = dwarf_sections->data[DEBUG_STR_OFFSETS];
offset_buf.buf = dwarf_sections->data[DEBUG_STR_OFFSETS] + offset;
offset_buf.left = dwarf_sections->size[DEBUG_STR_OFFSETS] - offset;
offset_buf.is_bigendian = is_bigendian;
offset_buf.error_callback = error_callback;
offset_buf.data = data;
offset_buf.reported_underflow = 0;
offset = read_offset (&offset_buf, is_dwarf64);
if (offset >= dwarf_sections->size[DEBUG_STR])
{
dwarf_buf_error (&offset_buf,
"DW_FORM_strx offset out of range",
0);
return 0;
}
*string = (const char *) dwarf_sections->data[DEBUG_STR] + offset;
return 1;
}
default:
return 1;
}
}
/* Set *ADDRESS to the real address for a ATTR_VAL_ADDRESS_INDEX.
Return 1 on success, 0 on error. */
static int
resolve_addr_index (const struct dwarf_sections *dwarf_sections,
uint64_t addr_base, int addrsize, int is_bigendian,
uint64_t addr_index,
backtrace_error_callback error_callback, void *data,
uint64_t *address)
{
uint64_t offset;
struct dwarf_buf addr_buf;
offset = addr_index * addrsize + addr_base;
if (offset + addrsize > dwarf_sections->size[DEBUG_ADDR])
{
error_callback (data, "DW_FORM_addrx value out of range", 0);
return 0;
}
addr_buf.name = ".debug_addr";
addr_buf.start = dwarf_sections->data[DEBUG_ADDR];
addr_buf.buf = dwarf_sections->data[DEBUG_ADDR] + offset;
addr_buf.left = dwarf_sections->size[DEBUG_ADDR] - offset;
addr_buf.is_bigendian = is_bigendian;
addr_buf.error_callback = error_callback;
addr_buf.data = data;
addr_buf.reported_underflow = 0;
*address = read_address (&addr_buf, addrsize);
return 1;
}
/* Compare a unit offset against a unit for bsearch. */
static int
units_search (const void *vkey, const void *ventry)
{
const size_t *key = (const size_t *) vkey;
const struct unit *entry = *((const struct unit *const *) ventry);
size_t offset;
offset = *key;
if (offset < entry->low_offset)
return -1;
else if (offset >= entry->high_offset)
return 1;
else
return 0;
}
/* Find a unit in PU containing OFFSET. */
static struct unit *
find_unit (struct unit **pu, size_t units_count, size_t offset)
{
struct unit **u;
u = (struct unit**)bsearch (&offset, pu, units_count, sizeof (struct unit *), units_search);
return u == NULL ? NULL : *u;
}
/* Compare function_addrs for qsort. When ranges are nested, make the
smallest one sort last. */
static int
function_addrs_compare (const void *v1, const void *v2)
{
const struct function_addrs *a1 = (const struct function_addrs *) v1;
const struct function_addrs *a2 = (const struct function_addrs *) v2;
if (a1->low < a2->low)
return -1;
if (a1->low > a2->low)
return 1;
if (a1->high < a2->high)
return 1;
if (a1->high > a2->high)
return -1;
return strcmp (a1->function->name, a2->function->name);
}
/* Compare a PC against a function_addrs for bsearch. We always
allocate an entra entry at the end of the vector, so that this
routine can safely look at the next entry. Note that if there are
multiple ranges containing PC, which one will be returned is
unpredictable. We compensate for that in dwarf_fileline. */
static int
function_addrs_search (const void *vkey, const void *ventry)
{
const uintptr_t *key = (const uintptr_t *) vkey;
const struct function_addrs *entry = (const struct function_addrs *) ventry;
uintptr_t pc;
pc = *key;
if (pc < entry->low)
return -1;
else if (pc > (entry + 1)->low)
return 1;
else
return 0;
}
/* Add a new compilation unit address range to a vector. This is
called via add_ranges. Returns 1 on success, 0 on failure. */
static int
add_unit_addr (struct backtrace_state *state, void *rdata,
uint64_t lowpc, uint64_t highpc,
backtrace_error_callback error_callback, void *data,
void *pvec)
{
struct unit *u = (struct unit *) rdata;
struct unit_addrs_vector *vec = (struct unit_addrs_vector *) pvec;
struct unit_addrs *p;
/* Try to merge with the last entry. */
if (vec->count > 0)
{
p = (struct unit_addrs *) vec->vec.base + (vec->count - 1);
if ((lowpc == p->high || lowpc == p->high + 1)
&& u == p->u)
{
if (highpc > p->high)
p->high = highpc;
return 1;
}
}
p = ((struct unit_addrs *)
backtrace_vector_grow (state, sizeof (struct unit_addrs),
error_callback, data, &vec->vec));
if (p == NULL)
return 0;
p->low = lowpc;
p->high = highpc;
p->u = u;
++vec->count;
return 1;
}
/* Compare unit_addrs for qsort. When ranges are nested, make the
smallest one sort last. */
static int
unit_addrs_compare (const void *v1, const void *v2)
{
const struct unit_addrs *a1 = (const struct unit_addrs *) v1;
const struct unit_addrs *a2 = (const struct unit_addrs *) v2;
if (a1->low < a2->low)
return -1;
if (a1->low > a2->low)
return 1;
if (a1->high < a2->high)
return 1;
if (a1->high > a2->high)
return -1;
if (a1->u->lineoff < a2->u->lineoff)
return -1;
if (a1->u->lineoff > a2->u->lineoff)
return 1;
return 0;
}
/* Compare a PC against a unit_addrs for bsearch. We always allocate
an entry entry at the end of the vector, so that this routine can
safely look at the next entry. Note that if there are multiple
ranges containing PC, which one will be returned is unpredictable.
We compensate for that in dwarf_fileline. */
static int
unit_addrs_search (const void *vkey, const void *ventry)
{
const uintptr_t *key = (const uintptr_t *) vkey;
const struct unit_addrs *entry = (const struct unit_addrs *) ventry;
uintptr_t pc;
pc = *key;
if (pc < entry->low)
return -1;
else if (pc > (entry + 1)->low)
return 1;
else
return 0;
}
/* Sort the line vector by PC. We want a stable sort here to maintain
the order of lines for the same PC values. Since the sequence is
being sorted in place, their addresses cannot be relied on to
maintain stability. That is the purpose of the index member. */
static int
line_compare (const void *v1, const void *v2)
{
const struct line *ln1 = (const struct line *) v1;
const struct line *ln2 = (const struct line *) v2;
if (ln1->pc < ln2->pc)
return -1;
else if (ln1->pc > ln2->pc)
return 1;
else if (ln1->idx < ln2->idx)
return -1;
else if (ln1->idx > ln2->idx)
return 1;
else
return 0;
}
/* Find a PC in a line vector. We always allocate an extra entry at
the end of the lines vector, so that this routine can safely look
at the next entry. Note that when there are multiple mappings for
the same PC value, this will return the last one. */
static int
line_search (const void *vkey, const void *ventry)
{
const uintptr_t *key = (const uintptr_t *) vkey;
const struct line *entry = (const struct line *) ventry;
uintptr_t pc;
pc = *key;
if (pc < entry->pc)
return -1;
else if (pc >= (entry + 1)->pc)
return 1;
else
return 0;
}
/* Sort the abbrevs by the abbrev code. This function is passed to
both qsort and bsearch. */
static int
abbrev_compare (const void *v1, const void *v2)
{
const struct abbrev *a1 = (const struct abbrev *) v1;
const struct abbrev *a2 = (const struct abbrev *) v2;
if (a1->code < a2->code)
return -1;
else if (a1->code > a2->code)
return 1;
else
{
/* This really shouldn't happen. It means there are two
different abbrevs with the same code, and that means we don't
know which one lookup_abbrev should return. */
return 0;
}
}
/* Read the abbreviation table for a compilation unit. Returns 1 on
success, 0 on failure. */
static int
read_abbrevs (struct backtrace_state *state, uint64_t abbrev_offset,
const unsigned char *dwarf_abbrev, size_t dwarf_abbrev_size,
int is_bigendian, backtrace_error_callback error_callback,
void *data, struct abbrevs *abbrevs)
{
struct dwarf_buf abbrev_buf;
struct dwarf_buf count_buf;
size_t num_abbrevs;
abbrevs->num_abbrevs = 0;
abbrevs->abbrevs = NULL;
if (abbrev_offset >= dwarf_abbrev_size)
{
error_callback (data, "abbrev offset out of range", 0);
return 0;
}
abbrev_buf.name = ".debug_abbrev";
abbrev_buf.start = dwarf_abbrev;
abbrev_buf.buf = dwarf_abbrev + abbrev_offset;
abbrev_buf.left = dwarf_abbrev_size - abbrev_offset;
abbrev_buf.is_bigendian = is_bigendian;
abbrev_buf.error_callback = error_callback;
abbrev_buf.data = data;
abbrev_buf.reported_underflow = 0;
/* Count the number of abbrevs in this list. */
count_buf = abbrev_buf;
num_abbrevs = 0;
while (read_uleb128 (&count_buf) != 0)
{
if (count_buf.reported_underflow)
return 0;
++num_abbrevs;
// Skip tag.
read_uleb128 (&count_buf);
// Skip has_children.
read_byte (&count_buf);
// Skip attributes.
while (read_uleb128 (&count_buf) != 0)
{
uint64_t form;
form = read_uleb128 (&count_buf);
if ((enum dwarf_form) form == DW_FORM_implicit_const)
read_sleb128 (&count_buf);
}
// Skip form of last attribute.
read_uleb128 (&count_buf);
}
if (count_buf.reported_underflow)
return 0;
if (num_abbrevs == 0)
return 1;
abbrevs->abbrevs = ((struct abbrev *)
backtrace_alloc (state,
num_abbrevs * sizeof (struct abbrev),
error_callback, data));
if (abbrevs->abbrevs == NULL)
return 0;
abbrevs->num_abbrevs = num_abbrevs;
memset (abbrevs->abbrevs, 0, num_abbrevs * sizeof (struct abbrev));
num_abbrevs = 0;
while (1)
{
uint64_t code;
struct abbrev a;
size_t num_attrs;
struct attr *attrs;
if (abbrev_buf.reported_underflow)
goto fail;
code = read_uleb128 (&abbrev_buf);
if (code == 0)
break;
a.code = code;
a.tag = (enum dwarf_tag) read_uleb128 (&abbrev_buf);
a.has_children = read_byte (&abbrev_buf);
count_buf = abbrev_buf;
num_attrs = 0;
while (read_uleb128 (&count_buf) != 0)
{
uint64_t form;
++num_attrs;
form = read_uleb128 (&count_buf);
if ((enum dwarf_form) form == DW_FORM_implicit_const)
read_sleb128 (&count_buf);
}
if (num_attrs == 0)
{
attrs = NULL;
read_uleb128 (&abbrev_buf);
read_uleb128 (&abbrev_buf);
}
else
{
attrs = ((struct attr *)
backtrace_alloc (state, num_attrs * sizeof *attrs,
error_callback, data));
if (attrs == NULL)
goto fail;
num_attrs = 0;
while (1)
{
uint64_t name;
uint64_t form;
name = read_uleb128 (&abbrev_buf);
form = read_uleb128 (&abbrev_buf);
if (name == 0)
break;
attrs[num_attrs].name = (enum dwarf_attribute) name;
attrs[num_attrs].form = (enum dwarf_form) form;
if ((enum dwarf_form) form == DW_FORM_implicit_const)
attrs[num_attrs].val = read_sleb128 (&abbrev_buf);
else
attrs[num_attrs].val = 0;
++num_attrs;
}
}
a.num_attrs = num_attrs;
a.attrs = attrs;
abbrevs->abbrevs[num_abbrevs] = a;
++num_abbrevs;
}
backtrace_qsort (abbrevs->abbrevs, abbrevs->num_abbrevs,
sizeof (struct abbrev), abbrev_compare);
return 1;
fail:
free_abbrevs (state, abbrevs, error_callback, data);
return 0;
}
/* Return the abbrev information for an abbrev code. */
static const struct abbrev *
lookup_abbrev (struct abbrevs *abbrevs, uint64_t code,
backtrace_error_callback error_callback, void *data)
{
struct abbrev key;
void *p;
/* With GCC, where abbrevs are simply numbered in order, we should
be able to just look up the entry. */
if (code - 1 < abbrevs->num_abbrevs
&& abbrevs->abbrevs[code - 1].code == code)
return &abbrevs->abbrevs[code - 1];
/* Otherwise we have to search. */
memset (&key, 0, sizeof key);
key.code = code;
p = bsearch (&key, abbrevs->abbrevs, abbrevs->num_abbrevs,
sizeof (struct abbrev), abbrev_compare);
if (p == NULL)
{
error_callback (data, "invalid abbreviation code", 0);
return NULL;
}
return (const struct abbrev *) p;
}
/* This struct is used to gather address range information while
reading attributes. We use this while building a mapping from
address ranges to compilation units and then again while mapping
from address ranges to function entries. Normally either
lowpc/highpc is set or ranges is set. */
struct pcrange {
uint64_t lowpc; /* The low PC value. */
int have_lowpc; /* Whether a low PC value was found. */
int lowpc_is_addr_index; /* Whether lowpc is in .debug_addr. */
uint64_t highpc; /* The high PC value. */
int have_highpc; /* Whether a high PC value was found. */
int highpc_is_relative; /* Whether highpc is relative to lowpc. */
int highpc_is_addr_index; /* Whether highpc is in .debug_addr. */
uint64_t ranges; /* Offset in ranges section. */
int have_ranges; /* Whether ranges is valid. */
int ranges_is_index; /* Whether ranges is DW_FORM_rnglistx. */
};
/* Update PCRANGE from an attribute value. */
static void
update_pcrange (const struct attr* attr, const struct attr_val* val,
struct pcrange *pcrange)
{
switch (attr->name)
{
case DW_AT_low_pc:
if (val->encoding == ATTR_VAL_ADDRESS)
{
pcrange->lowpc = val->u.uint;
pcrange->have_lowpc = 1;
}
else if (val->encoding == ATTR_VAL_ADDRESS_INDEX)
{
pcrange->lowpc = val->u.uint;
pcrange->have_lowpc = 1;
pcrange->lowpc_is_addr_index = 1;
}
break;
case DW_AT_high_pc:
if (val->encoding == ATTR_VAL_ADDRESS)
{
pcrange->highpc = val->u.uint;
pcrange->have_highpc = 1;
}
else if (val->encoding == ATTR_VAL_UINT)
{
pcrange->highpc = val->u.uint;
pcrange->have_highpc = 1;
pcrange->highpc_is_relative = 1;
}
else if (val->encoding == ATTR_VAL_ADDRESS_INDEX)
{
pcrange->highpc = val->u.uint;
pcrange->have_highpc = 1;
pcrange->highpc_is_addr_index = 1;
}
break;
case DW_AT_ranges:
if (val->encoding == ATTR_VAL_UINT
|| val->encoding == ATTR_VAL_REF_SECTION)
{
pcrange->ranges = val->u.uint;
pcrange->have_ranges = 1;
}
else if (val->encoding == ATTR_VAL_RNGLISTS_INDEX)
{
pcrange->ranges = val->u.uint;
pcrange->have_ranges = 1;
pcrange->ranges_is_index = 1;
}
break;
default:
break;
}
}
/* Call ADD_RANGE for a low/high PC pair. Returns 1 on success, 0 on
error. */
static int
add_low_high_range (struct backtrace_state *state,
const struct dwarf_sections *dwarf_sections,
uintptr_t base_address, int is_bigendian,
struct unit *u, const struct pcrange *pcrange,
int (*add_range) (struct backtrace_state *state,
void *rdata, uint64_t lowpc,
uint64_t highpc,
backtrace_error_callback error_callback,
void *data, void *vec),
void *rdata,
backtrace_error_callback error_callback, void *data,
void *vec)
{
uint64_t lowpc;
uint64_t highpc;
lowpc = pcrange->lowpc;
if (pcrange->lowpc_is_addr_index)
{
if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
is_bigendian, lowpc, error_callback, data,
&lowpc))
return 0;
}
highpc = pcrange->highpc;
if (pcrange->highpc_is_addr_index)
{
if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
is_bigendian, highpc, error_callback, data,
&highpc))
return 0;
}
if (pcrange->highpc_is_relative)
highpc += lowpc;
/* Add in the base address of the module when recording PC values,
so that we can look up the PC directly. */
lowpc += base_address;
highpc += base_address;
return add_range (state, rdata, lowpc, highpc, error_callback, data, vec);
}
/* Call ADD_RANGE for each range read from .debug_ranges, as used in
DWARF versions 2 through 4. */
static int
add_ranges_from_ranges (
struct backtrace_state *state,
const struct dwarf_sections *dwarf_sections,
uintptr_t base_address, int is_bigendian,
struct unit *u, uint64_t base,
const struct pcrange *pcrange,
int (*add_range) (struct backtrace_state *state, void *rdata,
uint64_t lowpc, uint64_t highpc,
backtrace_error_callback error_callback, void *data,
void *vec),
void *rdata,
backtrace_error_callback error_callback, void *data,
void *vec)
{
struct dwarf_buf ranges_buf;
if (pcrange->ranges >= dwarf_sections->size[DEBUG_RANGES])
{
error_callback (data, "ranges offset out of range", 0);
return 0;
}
ranges_buf.name = ".debug_ranges";
ranges_buf.start = dwarf_sections->data[DEBUG_RANGES];
ranges_buf.buf = dwarf_sections->data[DEBUG_RANGES] + pcrange->ranges;
ranges_buf.left = dwarf_sections->size[DEBUG_RANGES] - pcrange->ranges;
ranges_buf.is_bigendian = is_bigendian;
ranges_buf.error_callback = error_callback;
ranges_buf.data = data;
ranges_buf.reported_underflow = 0;
while (1)
{
uint64_t low;
uint64_t high;
if (ranges_buf.reported_underflow)
return 0;
low = read_address (&ranges_buf, u->addrsize);
high = read_address (&ranges_buf, u->addrsize);
if (low == 0 && high == 0)
break;
if (is_highest_address (low, u->addrsize))
base = high;
else
{
if (!add_range (state, rdata,
low + base + base_address,
high + base + base_address,
error_callback, data, vec))
return 0;
}
}
if (ranges_buf.reported_underflow)
return 0;
return 1;
}
/* Call ADD_RANGE for each range read from .debug_rnglists, as used in
DWARF version 5. */
static int
add_ranges_from_rnglists (
struct backtrace_state *state,
const struct dwarf_sections *dwarf_sections,
uintptr_t base_address, int is_bigendian,
struct unit *u, uint64_t base,
const struct pcrange *pcrange,
int (*add_range) (struct backtrace_state *state, void *rdata,
uint64_t lowpc, uint64_t highpc,
backtrace_error_callback error_callback, void *data,
void *vec),
void *rdata,
backtrace_error_callback error_callback, void *data,
void *vec)
{
uint64_t offset;
struct dwarf_buf rnglists_buf;
if (!pcrange->ranges_is_index)
offset = pcrange->ranges;
else
offset = u->rnglists_base + pcrange->ranges * (u->is_dwarf64 ? 8 : 4);
if (offset >= dwarf_sections->size[DEBUG_RNGLISTS])
{
error_callback (data, "rnglists offset out of range", 0);
return 0;
}
rnglists_buf.name = ".debug_rnglists";
rnglists_buf.start = dwarf_sections->data[DEBUG_RNGLISTS];
rnglists_buf.buf = dwarf_sections->data[DEBUG_RNGLISTS] + offset;
rnglists_buf.left = dwarf_sections->size[DEBUG_RNGLISTS] - offset;
rnglists_buf.is_bigendian = is_bigendian;
rnglists_buf.error_callback = error_callback;
rnglists_buf.data = data;
rnglists_buf.reported_underflow = 0;
if (pcrange->ranges_is_index)
{
offset = read_offset (&rnglists_buf, u->is_dwarf64);
offset += u->rnglists_base;
if (offset >= dwarf_sections->size[DEBUG_RNGLISTS])
{
error_callback (data, "rnglists index offset out of range", 0);
return 0;
}
rnglists_buf.buf = dwarf_sections->data[DEBUG_RNGLISTS] + offset;
rnglists_buf.left = dwarf_sections->size[DEBUG_RNGLISTS] - offset;
}
while (1)
{
unsigned char rle;
rle = read_byte (&rnglists_buf);
if (rle == DW_RLE_end_of_list)
break;
switch (rle)
{
case DW_RLE_base_addressx:
{
uint64_t index;
index = read_uleb128 (&rnglists_buf);
if (!resolve_addr_index (dwarf_sections, u->addr_base,
u->addrsize, is_bigendian, index,
error_callback, data, &base))
return 0;
}
break;
case DW_RLE_startx_endx:
{
uint64_t index;
uint64_t low;
uint64_t high;
index = read_uleb128 (&rnglists_buf);
if (!resolve_addr_index (dwarf_sections, u->addr_base,
u->addrsize, is_bigendian, index,
error_callback, data, &low))
return 0;
index = read_uleb128 (&rnglists_buf);
if (!resolve_addr_index (dwarf_sections, u->addr_base,
u->addrsize, is_bigendian, index,
error_callback, data, &high))
return 0;
if (!add_range (state, rdata, low + base_address,
high + base_address, error_callback, data,
vec))
return 0;
}
break;
case DW_RLE_startx_length:
{
uint64_t index;
uint64_t low;
uint64_t length;
index = read_uleb128 (&rnglists_buf);
if (!resolve_addr_index (dwarf_sections, u->addr_base,
u->addrsize, is_bigendian, index,
error_callback, data, &low))
return 0;
length = read_uleb128 (&rnglists_buf);
low += base_address;
if (!add_range (state, rdata, low, low + length,
error_callback, data, vec))
return 0;
}
break;
case DW_RLE_offset_pair:
{
uint64_t low;
uint64_t high;
low = read_uleb128 (&rnglists_buf);
high = read_uleb128 (&rnglists_buf);
if (!add_range (state, rdata, low + base + base_address,
high + base + base_address,
error_callback, data, vec))
return 0;
}
break;
case DW_RLE_base_address:
base = read_address (&rnglists_buf, u->addrsize);
break;
case DW_RLE_start_end:
{
uint64_t low;
uint64_t high;
low = read_address (&rnglists_buf, u->addrsize);
high = read_address (&rnglists_buf, u->addrsize);
if (!add_range (state, rdata, low + base_address,
high + base_address, error_callback, data,
vec))
return 0;
}
break;
case DW_RLE_start_length:
{
uint64_t low;
uint64_t length;
low = read_address (&rnglists_buf, u->addrsize);
length = read_uleb128 (&rnglists_buf);
low += base_address;
if (!add_range (state, rdata, low, low + length,
error_callback, data, vec))
return 0;
}
break;
default:
dwarf_buf_error (&rnglists_buf, "unrecognized DW_RLE value", -1);
return 0;
}
}
if (rnglists_buf.reported_underflow)
return 0;
return 1;
}
/* Call ADD_RANGE for each lowpc/highpc pair in PCRANGE. RDATA is
passed to ADD_RANGE, and is either a struct unit * or a struct
function *. VEC is the vector we are adding ranges to, and is
either a struct unit_addrs_vector * or a struct function_vector *.
Returns 1 on success, 0 on error. */
static int
add_ranges (struct backtrace_state *state,
const struct dwarf_sections *dwarf_sections,
uintptr_t base_address, int is_bigendian,
struct unit *u, uint64_t base, const struct pcrange *pcrange,
int (*add_range) (struct backtrace_state *state, void *rdata,
uint64_t lowpc, uint64_t highpc,
backtrace_error_callback error_callback,
void *data, void *vec),
void *rdata,
backtrace_error_callback error_callback, void *data,
void *vec)
{
if (pcrange->have_lowpc && pcrange->have_highpc)
return add_low_high_range (state, dwarf_sections, base_address,
is_bigendian, u, pcrange, add_range, rdata,
error_callback, data, vec);
if (!pcrange->have_ranges)
{
/* Did not find any address ranges to add. */
return 1;
}
if (u->version < 5)
return add_ranges_from_ranges (state, dwarf_sections, base_address,
is_bigendian, u, base, pcrange, add_range,
rdata, error_callback, data, vec);
else
return add_ranges_from_rnglists (state, dwarf_sections, base_address,
is_bigendian, u, base, pcrange, add_range,
rdata, error_callback, data, vec);
}
/* Find the address range covered by a compilation unit, reading from
UNIT_BUF and adding values to U. Returns 1 if all data could be
read, 0 if there is some error. */
static int
find_address_ranges (struct backtrace_state *state, uintptr_t base_address,
struct dwarf_buf *unit_buf,
const struct dwarf_sections *dwarf_sections,
int is_bigendian, struct dwarf_data *altlink,
backtrace_error_callback error_callback, void *data,
struct unit *u, struct unit_addrs_vector *addrs,
enum dwarf_tag *unit_tag)
{
while (unit_buf->left > 0)
{
uint64_t code;
const struct abbrev *abbrev;
struct pcrange pcrange;
struct attr_val name_val;
int have_name_val;
struct attr_val comp_dir_val;
int have_comp_dir_val;
size_t i;
code = read_uleb128 (unit_buf);
if (code == 0)
return 1;
abbrev = lookup_abbrev (&u->abbrevs, code, error_callback, data);
if (abbrev == NULL)
return 0;
if (unit_tag != NULL)
*unit_tag = abbrev->tag;
memset (&pcrange, 0, sizeof pcrange);
memset (&name_val, 0, sizeof name_val);
have_name_val = 0;
memset (&comp_dir_val, 0, sizeof comp_dir_val);
have_comp_dir_val = 0;
for (i = 0; i < abbrev->num_attrs; ++i)
{
struct attr_val val;
if (!read_attribute (abbrev->attrs[i].form, abbrev->attrs[i].val,
unit_buf, u->is_dwarf64, u->version,
u->addrsize, dwarf_sections, altlink, &val))
return 0;
switch (abbrev->attrs[i].name)
{
case DW_AT_low_pc: case DW_AT_high_pc: case DW_AT_ranges:
update_pcrange (&abbrev->attrs[i], &val, &pcrange);
break;
case DW_AT_stmt_list:
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& (val.encoding == ATTR_VAL_UINT
|| val.encoding == ATTR_VAL_REF_SECTION))
u->lineoff = val.u.uint;
break;
case DW_AT_name:
if (abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
{
name_val = val;
have_name_val = 1;
}
break;
case DW_AT_comp_dir:
if (abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
{
comp_dir_val = val;
have_comp_dir_val = 1;
}
break;
case DW_AT_str_offsets_base:
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& val.encoding == ATTR_VAL_REF_SECTION)
u->str_offsets_base = val.u.uint;
break;
case DW_AT_addr_base:
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& val.encoding == ATTR_VAL_REF_SECTION)
u->addr_base = val.u.uint;
break;
case DW_AT_rnglists_base:
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& val.encoding == ATTR_VAL_REF_SECTION)
u->rnglists_base = val.u.uint;
break;
default:
break;
}
}
// Resolve strings after we're sure that we have seen
// DW_AT_str_offsets_base.
if (have_name_val)
{
if (!resolve_string (dwarf_sections, u->is_dwarf64, is_bigendian,
u->str_offsets_base, &name_val,
error_callback, data, &u->filename))
return 0;
}
if (have_comp_dir_val)
{
if (!resolve_string (dwarf_sections, u->is_dwarf64, is_bigendian,
u->str_offsets_base, &comp_dir_val,
error_callback, data, &u->comp_dir))
return 0;
}
if (abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_subprogram
|| abbrev->tag == DW_TAG_skeleton_unit)
{
if (!add_ranges (state, dwarf_sections, base_address,
is_bigendian, u, pcrange.lowpc, &pcrange,
add_unit_addr, (void *) u, error_callback, data,
(void *) addrs))
return 0;
/* If we found the PC range in the DW_TAG_compile_unit or
DW_TAG_skeleton_unit, we can stop now. */
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& (pcrange.have_ranges
|| (pcrange.have_lowpc && pcrange.have_highpc)))
return 1;
}
if (abbrev->has_children)
{
if (!find_address_ranges (state, base_address, unit_buf,
dwarf_sections, is_bigendian, altlink,
error_callback, data, u, addrs, NULL))
return 0;
}
}
return 1;
}
/* Build a mapping from address ranges to the compilation units where
the line number information for that range can be found. Returns 1
on success, 0 on failure. */
static int
build_address_map (struct backtrace_state *state, uintptr_t base_address,
const struct dwarf_sections *dwarf_sections,
int is_bigendian, struct dwarf_data *altlink,
backtrace_error_callback error_callback, void *data,
struct unit_addrs_vector *addrs,
struct unit_vector *unit_vec)
{
struct dwarf_buf info;
struct backtrace_vector units;
size_t units_count;
size_t i;
struct unit **pu;
size_t unit_offset = 0;
struct unit_addrs *pa;
memset (&addrs->vec, 0, sizeof addrs->vec);
memset (&unit_vec->vec, 0, sizeof unit_vec->vec);
addrs->count = 0;
unit_vec->count = 0;
/* Read through the .debug_info section. FIXME: Should we use the
.debug_aranges section? gdb and addr2line don't use it, but I'm
not sure why. */
info.name = ".debug_info";
info.start = dwarf_sections->data[DEBUG_INFO];
info.buf = info.start;
info.left = dwarf_sections->size[DEBUG_INFO];
info.is_bigendian = is_bigendian;
info.error_callback = error_callback;
info.data = data;
info.reported_underflow = 0;
memset (&units, 0, sizeof units);
units_count = 0;
while (info.left > 0)
{
const unsigned char *unit_data_start;
uint64_t len;
int is_dwarf64;
struct dwarf_buf unit_buf;
int version;
int unit_type;
uint64_t abbrev_offset;
int addrsize;
struct unit *u;
enum dwarf_tag unit_tag;
if (info.reported_underflow)
goto fail;
unit_data_start = info.buf;
len = read_initial_length (&info, &is_dwarf64);
unit_buf = info;
unit_buf.left = len;
if (!advance (&info, len))
goto fail;
version = read_uint16 (&unit_buf);
if (version < 2 || version > 5)
{
dwarf_buf_error (&unit_buf, "unrecognized DWARF version", -1);
goto fail;
}
if (version < 5)
unit_type = 0;
else
{
unit_type = read_byte (&unit_buf);
if (unit_type == DW_UT_type || unit_type == DW_UT_split_type)
{
/* This unit doesn't have anything we need. */
continue;
}
}
pu = ((struct unit **)
backtrace_vector_grow (state, sizeof (struct unit *),
error_callback, data, &units));
if (pu == NULL)
goto fail;
u = ((struct unit *)
backtrace_alloc (state, sizeof *u, error_callback, data));
if (u == NULL)
goto fail;
*pu = u;
++units_count;
if (version < 5)
addrsize = 0; /* Set below. */
else
addrsize = read_byte (&unit_buf);
memset (&u->abbrevs, 0, sizeof u->abbrevs);
abbrev_offset = read_offset (&unit_buf, is_dwarf64);
if (!read_abbrevs (state, abbrev_offset,
dwarf_sections->data[DEBUG_ABBREV],
dwarf_sections->size[DEBUG_ABBREV],
is_bigendian, error_callback, data, &u->abbrevs))
goto fail;
if (version < 5)
addrsize = read_byte (&unit_buf);
switch (unit_type)
{
case 0:
break;
case DW_UT_compile: case DW_UT_partial:
break;
case DW_UT_skeleton: case DW_UT_split_compile:
read_uint64 (&unit_buf); /* dwo_id */
break;
default:
break;
}
u->low_offset = unit_offset;
unit_offset += len + (is_dwarf64 ? 12 : 4);
u->high_offset = unit_offset;
u->unit_data = unit_buf.buf;
u->unit_data_len = unit_buf.left;
u->unit_data_offset = unit_buf.buf - unit_data_start;
u->version = version;
u->is_dwarf64 = is_dwarf64;
u->addrsize = addrsize;
u->filename = NULL;
u->comp_dir = NULL;
u->abs_filename = NULL;
u->lineoff = 0;
u->str_offsets_base = 0;
u->addr_base = 0;
u->rnglists_base = 0;
/* The actual line number mappings will be read as needed. */
u->lines = NULL;
u->lines_count = 0;
u->function_addrs = NULL;
u->function_addrs_count = 0;
if (!find_address_ranges (state, base_address, &unit_buf, dwarf_sections,
is_bigendian, altlink, error_callback, data,
u, addrs, &unit_tag))
goto fail;
if (unit_buf.reported_underflow)
goto fail;
}
if (info.reported_underflow)
goto fail;
/* Add a trailing addrs entry, but don't include it in addrs->count. */
pa = ((struct unit_addrs *)
backtrace_vector_grow (state, sizeof (struct unit_addrs),
error_callback, data, &addrs->vec));
if (pa == NULL)
goto fail;
pa->low = 0;
--pa->low;
pa->high = pa->low;
pa->u = NULL;
unit_vec->vec = units;
unit_vec->count = units_count;
return 1;
fail:
if (units_count > 0)
{
pu = (struct unit **) units.base;
for (i = 0; i < units_count; i++)
{
free_abbrevs (state, &pu[i]->abbrevs, error_callback, data);
backtrace_free (state, pu[i], sizeof **pu, error_callback, data);
}
backtrace_vector_free (state, &units, error_callback, data);
}
if (addrs->count > 0)
{
backtrace_vector_free (state, &addrs->vec, error_callback, data);
addrs->count = 0;
}
return 0;
}
/* Add a new mapping to the vector of line mappings that we are
building. Returns 1 on success, 0 on failure. */
static int
add_line (struct backtrace_state *state, struct dwarf_data *ddata,
uintptr_t pc, const char *filename, int lineno,
backtrace_error_callback error_callback, void *data,
struct line_vector *vec)
{
struct line *ln;
/* If we are adding the same mapping, ignore it. This can happen
when using discriminators. */
if (vec->count > 0)
{
ln = (struct line *) vec->vec.base + (vec->count - 1);
if (pc == ln->pc && filename == ln->filename && lineno == ln->lineno)
return 1;
}
ln = ((struct line *)
backtrace_vector_grow (state, sizeof (struct line), error_callback,
data, &vec->vec));
if (ln == NULL)
return 0;
/* Add in the base address here, so that we can look up the PC
directly. */
ln->pc = pc + ddata->base_address;
ln->filename = filename;
ln->lineno = lineno;
ln->idx = vec->count;
++vec->count;
return 1;
}
/* Free the line header information. */
static void
free_line_header (struct backtrace_state *state, struct line_header *hdr,
backtrace_error_callback error_callback, void *data)
{
if (hdr->dirs_count != 0)
backtrace_free (state, hdr->dirs, hdr->dirs_count * sizeof (const char *),
error_callback, data);
backtrace_free (state, hdr->filenames,
hdr->filenames_count * sizeof (char *),
error_callback, data);
}
/* Read the directories and file names for a line header for version
2, setting fields in HDR. Return 1 on success, 0 on failure. */
static int
read_v2_paths (struct backtrace_state *state, struct unit *u,
struct dwarf_buf *hdr_buf, struct line_header *hdr)
{
const unsigned char *p;
const unsigned char *pend;
size_t i;
/* Count the number of directory entries. */
hdr->dirs_count = 0;
p = hdr_buf->buf;
pend = p + hdr_buf->left;
while (p < pend && *p != '\0')
{
p += strnlen((const char *) p, pend - p) + 1;
++hdr->dirs_count;
}
/* The index of the first entry in the list of directories is 1. Index 0 is
used for the current directory of the compilation. To simplify index
handling, we set entry 0 to the compilation unit directory. */
++hdr->dirs_count;
hdr->dirs = ((const char **)
backtrace_alloc (state,
hdr->dirs_count * sizeof (const char *),
hdr_buf->error_callback,
hdr_buf->data));
if (hdr->dirs == NULL)
return 0;
hdr->dirs[0] = u->comp_dir;
i = 1;
while (*hdr_buf->buf != '\0')
{
if (hdr_buf->reported_underflow)
return 0;
hdr->dirs[i] = read_string (hdr_buf);
if (hdr->dirs[i] == NULL)
return 0;
++i;
}
if (!advance (hdr_buf, 1))
return 0;
/* Count the number of file entries. */
hdr->filenames_count = 0;
p = hdr_buf->buf;
pend = p + hdr_buf->left;
while (p < pend && *p != '\0')
{
p += strnlen ((const char *) p, pend - p) + 1;
p += leb128_len (p);
p += leb128_len (p);
p += leb128_len (p);
++hdr->filenames_count;
}
/* The index of the first entry in the list of file names is 1. Index 0 is
used for the DW_AT_name of the compilation unit. To simplify index
handling, we set entry 0 to the compilation unit file name. */
++hdr->filenames_count;
hdr->filenames = ((const char **)
backtrace_alloc (state,
hdr->filenames_count * sizeof (char *),
hdr_buf->error_callback,
hdr_buf->data));
if (hdr->filenames == NULL)
return 0;
hdr->filenames[0] = u->filename;
i = 1;
while (*hdr_buf->buf != '\0')
{
const char *filename;
uint64_t dir_index;
if (hdr_buf->reported_underflow)
return 0;
filename = read_string (hdr_buf);
if (filename == NULL)
return 0;
dir_index = read_uleb128 (hdr_buf);
if (IS_ABSOLUTE_PATH (filename)
|| (dir_index < hdr->dirs_count && hdr->dirs[dir_index] == NULL))
hdr->filenames[i] = filename;
else
{
const char *dir;
size_t dir_len;
size_t filename_len;
char *s;
if (dir_index < hdr->dirs_count)
dir = hdr->dirs[dir_index];
else
{
dwarf_buf_error (hdr_buf,
("invalid directory index in "
"line number program header"),
0);
return 0;
}
dir_len = strlen (dir);
filename_len = strlen (filename);
s = ((char *) backtrace_alloc (state, dir_len + filename_len + 2,
hdr_buf->error_callback,
hdr_buf->data));
if (s == NULL)
return 0;
memcpy (s, dir, dir_len);
/* FIXME: If we are on a DOS-based file system, and the
directory or the file name use backslashes, then we
should use a backslash here. */
s[dir_len] = '/';
memcpy (s + dir_len + 1, filename, filename_len + 1);
hdr->filenames[i] = s;
}
/* Ignore the modification time and size. */
read_uleb128 (hdr_buf);
read_uleb128 (hdr_buf);
++i;
}
return 1;
}
/* Read a single version 5 LNCT entry for a directory or file name in a
line header. Sets *STRING to the resulting name, ignoring other
data. Return 1 on success, 0 on failure. */
static int
read_lnct (struct backtrace_state *state, struct dwarf_data *ddata,
struct unit *u, struct dwarf_buf *hdr_buf,
const struct line_header *hdr, size_t formats_count,
const struct line_header_format *formats, const char **string)
{
size_t i;
const char *dir;
const char *path;
dir = NULL;
path = NULL;
for (i = 0; i < formats_count; i++)
{
struct attr_val val;
if (!read_attribute (formats[i].form, 0, hdr_buf, u->is_dwarf64,
u->version, hdr->addrsize, &ddata->dwarf_sections,
ddata->altlink, &val))
return 0;
switch (formats[i].lnct)
{
case DW_LNCT_path:
if (!resolve_string (&ddata->dwarf_sections, u->is_dwarf64,
ddata->is_bigendian, u->str_offsets_base,
&val, hdr_buf->error_callback, hdr_buf->data,
&path))
return 0;
break;
case DW_LNCT_directory_index:
if (val.encoding == ATTR_VAL_UINT)
{
if (val.u.uint >= hdr->dirs_count)
{
dwarf_buf_error (hdr_buf,
("invalid directory index in "
"line number program header"),
0);
return 0;
}
dir = hdr->dirs[val.u.uint];
}
break;
default:
/* We don't care about timestamps or sizes or hashes. */
break;
}
}
if (path == NULL)
{
dwarf_buf_error (hdr_buf,
"missing file name in line number program header",
0);
return 0;
}
if (dir == NULL)
*string = path;
else
{
size_t dir_len;
size_t path_len;
char *s;
dir_len = strlen (dir);
path_len = strlen (path);
s = (char *) backtrace_alloc (state, dir_len + path_len + 2,
hdr_buf->error_callback, hdr_buf->data);
if (s == NULL)
return 0;
memcpy (s, dir, dir_len);
/* FIXME: If we are on a DOS-based file system, and the
directory or the path name use backslashes, then we should
use a backslash here. */
s[dir_len] = '/';
memcpy (s + dir_len + 1, path, path_len + 1);
*string = s;
}
return 1;
}
/* Read a set of DWARF 5 line header format entries, setting *PCOUNT
and *PPATHS. Return 1 on success, 0 on failure. */
static int
read_line_header_format_entries (struct backtrace_state *state,
struct dwarf_data *ddata,
struct unit *u,
struct dwarf_buf *hdr_buf,
struct line_header *hdr,
size_t *pcount,
const char ***ppaths)
{
size_t formats_count;
struct line_header_format *formats;
size_t paths_count;
const char **paths;
size_t i;
int ret;
formats_count = read_byte (hdr_buf);
if (formats_count == 0)
formats = NULL;
else
{
formats = ((struct line_header_format *)
backtrace_alloc (state,
(formats_count
* sizeof (struct line_header_format)),
hdr_buf->error_callback,
hdr_buf->data));
if (formats == NULL)
return 0;
for (i = 0; i < formats_count; i++)
{
formats[i].lnct = (int) read_uleb128(hdr_buf);
formats[i].form = (enum dwarf_form) read_uleb128 (hdr_buf);
}
}
paths_count = read_uleb128 (hdr_buf);
if (paths_count == 0)
{
*pcount = 0;
*ppaths = NULL;
ret = 1;
goto exit;
}
paths = ((const char **)
backtrace_alloc (state, paths_count * sizeof (const char *),
hdr_buf->error_callback, hdr_buf->data));
if (paths == NULL)
{
ret = 0;
goto exit;
}
for (i = 0; i < paths_count; i++)
{
if (!read_lnct (state, ddata, u, hdr_buf, hdr, formats_count,
formats, &paths[i]))
{
backtrace_free (state, paths,
paths_count * sizeof (const char *),
hdr_buf->error_callback, hdr_buf->data);
ret = 0;
goto exit;
}
}
*pcount = paths_count;
*ppaths = paths;
ret = 1;
exit:
if (formats != NULL)
backtrace_free (state, formats,
formats_count * sizeof (struct line_header_format),
hdr_buf->error_callback, hdr_buf->data);
return ret;
}
/* Read the line header. Return 1 on success, 0 on failure. */
static int
read_line_header (struct backtrace_state *state, struct dwarf_data *ddata,
struct unit *u, int is_dwarf64, struct dwarf_buf *line_buf,
struct line_header *hdr)
{
uint64_t hdrlen;
struct dwarf_buf hdr_buf;
hdr->version = read_uint16 (line_buf);
if (hdr->version < 2 || hdr->version > 5)
{
dwarf_buf_error (line_buf, "unsupported line number version", -1);
return 0;
}
if (hdr->version < 5)
hdr->addrsize = u->addrsize;
else
{
hdr->addrsize = read_byte (line_buf);
/* We could support a non-zero segment_selector_size but I doubt
we'll ever see it. */
if (read_byte (line_buf) != 0)
{
dwarf_buf_error (line_buf,
"non-zero segment_selector_size not supported",
-1);
return 0;
}
}
hdrlen = read_offset (line_buf, is_dwarf64);
hdr_buf = *line_buf;
hdr_buf.left = hdrlen;
if (!advance (line_buf, hdrlen))
return 0;
hdr->min_insn_len = read_byte (&hdr_buf);
if (hdr->version < 4)
hdr->max_ops_per_insn = 1;
else
hdr->max_ops_per_insn = read_byte (&hdr_buf);
/* We don't care about default_is_stmt. */
read_byte (&hdr_buf);
hdr->line_base = read_sbyte (&hdr_buf);
hdr->line_range = read_byte (&hdr_buf);
hdr->opcode_base = read_byte (&hdr_buf);
hdr->opcode_lengths = hdr_buf.buf;
if (!advance (&hdr_buf, hdr->opcode_base - 1))
return 0;
if (hdr->version < 5)
{
if (!read_v2_paths (state, u, &hdr_buf, hdr))
return 0;
}
else
{
if (!read_line_header_format_entries (state, ddata, u, &hdr_buf, hdr,
&hdr->dirs_count,
&hdr->dirs))
return 0;
if (!read_line_header_format_entries (state, ddata, u, &hdr_buf, hdr,
&hdr->filenames_count,
&hdr->filenames))
return 0;
}
if (hdr_buf.reported_underflow)
return 0;
return 1;
}
/* Read the line program, adding line mappings to VEC. Return 1 on
success, 0 on failure. */
static int
read_line_program (struct backtrace_state *state, struct dwarf_data *ddata,
const struct line_header *hdr, struct dwarf_buf *line_buf,
struct line_vector *vec)
{
uint64_t address;
unsigned int op_index;
const char *reset_filename;
const char *filename;
int lineno;
address = 0;
op_index = 0;
if (hdr->filenames_count > 1)
reset_filename = hdr->filenames[1];
else
reset_filename = "";
filename = reset_filename;
lineno = 1;
while (line_buf->left > 0)
{
unsigned int op;
op = read_byte (line_buf);
if (op >= hdr->opcode_base)
{
unsigned int advance;
/* Special opcode. */
op -= hdr->opcode_base;
advance = op / hdr->line_range;
address += (hdr->min_insn_len * (op_index + advance)
/ hdr->max_ops_per_insn);
op_index = (op_index + advance) % hdr->max_ops_per_insn;
lineno += hdr->line_base + (int) (op % hdr->line_range);
add_line (state, ddata, address, filename, lineno,
line_buf->error_callback, line_buf->data, vec);
}
else if (op == DW_LNS_extended_op)
{
uint64_t len;
len = read_uleb128 (line_buf);
op = read_byte (line_buf);
switch (op)
{
case DW_LNE_end_sequence:
/* FIXME: Should we mark the high PC here? It seems
that we already have that information from the
compilation unit. */
address = 0;
op_index = 0;
filename = reset_filename;
lineno = 1;
break;
case DW_LNE_set_address:
address = read_address (line_buf, hdr->addrsize);
break;
case DW_LNE_define_file:
{
const char *f;
unsigned int dir_index;
f = read_string (line_buf);
if (f == NULL)
return 0;
dir_index = read_uleb128 (line_buf);
/* Ignore that time and length. */
read_uleb128 (line_buf);
read_uleb128 (line_buf);
if (IS_ABSOLUTE_PATH (f))
filename = f;
else
{
const char *dir;
size_t dir_len;
size_t f_len;
char *p;
if (dir_index < hdr->dirs_count)
dir = hdr->dirs[dir_index];
else
{
dwarf_buf_error (line_buf,
("invalid directory index "
"in line number program"),
0);
return 0;
}
dir_len = strlen (dir);
f_len = strlen (f);
p = ((char *)
backtrace_alloc (state, dir_len + f_len + 2,
line_buf->error_callback,
line_buf->data));
if (p == NULL)
return 0;
memcpy (p, dir, dir_len);
/* FIXME: If we are on a DOS-based file system,
and the directory or the file name use
backslashes, then we should use a backslash
here. */
p[dir_len] = '/';
memcpy (p + dir_len + 1, f, f_len + 1);
filename = p;
}
}
break;
case DW_LNE_set_discriminator:
/* We don't care about discriminators. */
read_uleb128 (line_buf);
break;
default:
if (!advance (line_buf, len - 1))
return 0;
break;
}
}
else
{
switch (op)
{
case DW_LNS_copy:
add_line (state, ddata, address, filename, lineno,
line_buf->error_callback, line_buf->data, vec);
break;
case DW_LNS_advance_pc:
{
uint64_t advance;
advance = read_uleb128 (line_buf);
address += (hdr->min_insn_len * (op_index + advance)
/ hdr->max_ops_per_insn);
op_index = (op_index + advance) % hdr->max_ops_per_insn;
}
break;
case DW_LNS_advance_line:
lineno += (int) read_sleb128 (line_buf);
break;
case DW_LNS_set_file:
{
uint64_t fileno;
fileno = read_uleb128 (line_buf);
if (fileno >= hdr->filenames_count)
{
dwarf_buf_error (line_buf,
("invalid file number in "
"line number program"),
0);
return 0;
}
filename = hdr->filenames[fileno];
}
break;
case DW_LNS_set_column:
read_uleb128 (line_buf);
break;
case DW_LNS_negate_stmt:
break;
case DW_LNS_set_basic_block:
break;
case DW_LNS_const_add_pc:
{
unsigned int advance;
op = 255 - hdr->opcode_base;
advance = op / hdr->line_range;
address += (hdr->min_insn_len * (op_index + advance)
/ hdr->max_ops_per_insn);
op_index = (op_index + advance) % hdr->max_ops_per_insn;
}
break;
case DW_LNS_fixed_advance_pc:
address += read_uint16 (line_buf);
op_index = 0;
break;
case DW_LNS_set_prologue_end:
break;
case DW_LNS_set_epilogue_begin:
break;
case DW_LNS_set_isa:
read_uleb128 (line_buf);
break;
default:
{
unsigned int i;
for (i = hdr->opcode_lengths[op - 1]; i > 0; --i)
read_uleb128 (line_buf);
}
break;
}
}
}
return 1;
}
/* Read the line number information for a compilation unit. Returns 1
on success, 0 on failure. */
static int
read_line_info (struct backtrace_state *state, struct dwarf_data *ddata,
backtrace_error_callback error_callback, void *data,
struct unit *u, struct line_header *hdr, struct line **lines,
size_t *lines_count)
{
struct line_vector vec;
struct dwarf_buf line_buf;
uint64_t len;
int is_dwarf64;
struct line *ln;
memset (&vec.vec, 0, sizeof vec.vec);
vec.count = 0;
memset (hdr, 0, sizeof *hdr);
if (u->lineoff != (off_t) (size_t) u->lineoff
|| (size_t) u->lineoff >= ddata->dwarf_sections.size[DEBUG_LINE])
{
error_callback (data, "unit line offset out of range", 0);
goto fail;
}
line_buf.name = ".debug_line";
line_buf.start = ddata->dwarf_sections.data[DEBUG_LINE];
line_buf.buf = ddata->dwarf_sections.data[DEBUG_LINE] + u->lineoff;
line_buf.left = ddata->dwarf_sections.size[DEBUG_LINE] - u->lineoff;
line_buf.is_bigendian = ddata->is_bigendian;
line_buf.error_callback = error_callback;
line_buf.data = data;
line_buf.reported_underflow = 0;
len = read_initial_length (&line_buf, &is_dwarf64);
line_buf.left = len;
if (!read_line_header (state, ddata, u, is_dwarf64, &line_buf, hdr))
goto fail;
if (!read_line_program (state, ddata, hdr, &line_buf, &vec))
goto fail;
if (line_buf.reported_underflow)
goto fail;
if (vec.count == 0)
{
/* This is not a failure in the sense of a generating an error,
but it is a failure in that sense that we have no useful
information. */
goto fail;
}
/* Allocate one extra entry at the end. */
ln = ((struct line *)
backtrace_vector_grow (state, sizeof (struct line), error_callback,
data, &vec.vec));
if (ln == NULL)
goto fail;
ln->pc = (uintptr_t) -1;
ln->filename = NULL;
ln->lineno = 0;
ln->idx = 0;
if (!backtrace_vector_release (state, &vec.vec, error_callback, data))
goto fail;
ln = (struct line *) vec.vec.base;
backtrace_qsort (ln, vec.count, sizeof (struct line), line_compare);
*lines = ln;
*lines_count = vec.count;
return 1;
fail:
backtrace_vector_free (state, &vec.vec, error_callback, data);
free_line_header (state, hdr, error_callback, data);
*lines = (struct line *) (uintptr_t) -1;
*lines_count = 0;
return 0;
}
static const char *read_referenced_name (struct dwarf_data *, struct unit *,
uint64_t, backtrace_error_callback,
void *);
/* Read the name of a function from a DIE referenced by ATTR with VAL. */
static const char *
read_referenced_name_from_attr (struct dwarf_data *ddata, struct unit *u,
struct attr *attr, struct attr_val *val,
backtrace_error_callback error_callback,
void *data)
{
switch (attr->name)
{
case DW_AT_abstract_origin:
case DW_AT_specification:
break;
default:
return NULL;
}
if (attr->form == DW_FORM_ref_sig8)
return NULL;
if (val->encoding == ATTR_VAL_REF_INFO)
{
struct unit *unit
= find_unit (ddata->units, ddata->units_count,
val->u.uint);
if (unit == NULL)
return NULL;
uint64_t offset = val->u.uint - unit->low_offset;
return read_referenced_name (ddata, unit, offset, error_callback, data);
}
if (val->encoding == ATTR_VAL_UINT
|| val->encoding == ATTR_VAL_REF_UNIT)
return read_referenced_name (ddata, u, val->u.uint, error_callback, data);
if (val->encoding == ATTR_VAL_REF_ALT_INFO)
{
struct unit *alt_unit
= find_unit (ddata->altlink->units, ddata->altlink->units_count,
val->u.uint);
if (alt_unit == NULL)
return NULL;
uint64_t offset = val->u.uint - alt_unit->low_offset;
return read_referenced_name (ddata->altlink, alt_unit, offset,
error_callback, data);
}
return NULL;
}
/* Read the name of a function from a DIE referenced by a
DW_AT_abstract_origin or DW_AT_specification tag. OFFSET is within
the same compilation unit. */
static const char *
read_referenced_name (struct dwarf_data *ddata, struct unit *u,
uint64_t offset, backtrace_error_callback error_callback,
void *data)
{
struct dwarf_buf unit_buf;
uint64_t code;
const struct abbrev *abbrev;
const char *ret;
size_t i;
/* OFFSET is from the start of the data for this compilation unit.
U->unit_data is the data, but it starts U->unit_data_offset bytes
from the beginning. */
if (offset < u->unit_data_offset
|| offset - u->unit_data_offset >= u->unit_data_len)
{
error_callback (data,
"abstract origin or specification out of range",
0);
return NULL;
}
offset -= u->unit_data_offset;
unit_buf.name = ".debug_info";
unit_buf.start = ddata->dwarf_sections.data[DEBUG_INFO];
unit_buf.buf = u->unit_data + offset;
unit_buf.left = u->unit_data_len - offset;
unit_buf.is_bigendian = ddata->is_bigendian;
unit_buf.error_callback = error_callback;
unit_buf.data = data;
unit_buf.reported_underflow = 0;
code = read_uleb128 (&unit_buf);
if (code == 0)
{
dwarf_buf_error (&unit_buf,
"invalid abstract origin or specification",
0);
return NULL;
}
abbrev = lookup_abbrev (&u->abbrevs, code, error_callback, data);
if (abbrev == NULL)
return NULL;
ret = NULL;
for (i = 0; i < abbrev->num_attrs; ++i)
{
struct attr_val val;
if (!read_attribute (abbrev->attrs[i].form, abbrev->attrs[i].val,
&unit_buf, u->is_dwarf64, u->version, u->addrsize,
&ddata->dwarf_sections, ddata->altlink, &val))
return NULL;
switch (abbrev->attrs[i].name)
{
case DW_AT_name:
/* Third name preference: don't override. A name we found in some
other way, will normally be more useful -- e.g., this name is
normally not mangled. */
if (ret != NULL)
break;
if (!resolve_string (&ddata->dwarf_sections, u->is_dwarf64,
ddata->is_bigendian, u->str_offsets_base,
&val, error_callback, data, &ret))
return NULL;
break;
case DW_AT_linkage_name:
case DW_AT_MIPS_linkage_name:
/* First name preference: override all. */
{
const char *s;
s = NULL;
if (!resolve_string (&ddata->dwarf_sections, u->is_dwarf64,
ddata->is_bigendian, u->str_offsets_base,
&val, error_callback, data, &s))
return NULL;
if (s != NULL)
return s;
}
break;
case DW_AT_specification:
/* Second name preference: override DW_AT_name, don't override
DW_AT_linkage_name. */
{
const char *name;
name = read_referenced_name_from_attr (ddata, u, &abbrev->attrs[i],
&val, error_callback, data);
if (name != NULL)
ret = name;
}
break;
default:
break;
}
}
return ret;
}
/* Add a range to a unit that maps to a function. This is called via
add_ranges. Returns 1 on success, 0 on error. */
static int
add_function_range (struct backtrace_state *state, void *rdata,
uint64_t lowpc, uint64_t highpc,
backtrace_error_callback error_callback, void *data,
void *pvec)
{
struct function *function = (struct function *) rdata;
struct function_vector *vec = (struct function_vector *) pvec;
struct function_addrs *p;
if (vec->count > 0)
{
p = (struct function_addrs *) vec->vec.base + (vec->count - 1);
if ((lowpc == p->high || lowpc == p->high + 1)
&& function == p->function)
{
if (highpc > p->high)
p->high = highpc;
return 1;
}
}
p = ((struct function_addrs *)
backtrace_vector_grow (state, sizeof (struct function_addrs),
error_callback, data, &vec->vec));
if (p == NULL)
return 0;
p->low = lowpc;
p->high = highpc;
p->function = function;
++vec->count;
return 1;
}
/* Read one entry plus all its children. Add function addresses to
VEC. Returns 1 on success, 0 on error. */
static int
read_function_entry (struct backtrace_state *state, struct dwarf_data *ddata,
struct unit *u, uint64_t base, struct dwarf_buf *unit_buf,
const struct line_header *lhdr,
backtrace_error_callback error_callback, void *data,
struct function_vector *vec_function,
struct function_vector *vec_inlined)
{
while (unit_buf->left > 0)
{
uint64_t code;
const struct abbrev *abbrev;
int is_function;
struct function *function;
struct function_vector *vec;
size_t i;
struct pcrange pcrange;
int have_linkage_name;
code = read_uleb128 (unit_buf);
if (code == 0)
return 1;
abbrev = lookup_abbrev (&u->abbrevs, code, error_callback, data);
if (abbrev == NULL)
return 0;
is_function = (abbrev->tag == DW_TAG_subprogram
|| abbrev->tag == DW_TAG_entry_point
|| abbrev->tag == DW_TAG_inlined_subroutine);
if (abbrev->tag == DW_TAG_inlined_subroutine)
vec = vec_inlined;
else
vec = vec_function;
function = NULL;
if (is_function)
{
function = ((struct function *)
backtrace_alloc (state, sizeof *function,
error_callback, data));
if (function == NULL)
return 0;
memset (function, 0, sizeof *function);
}
memset (&pcrange, 0, sizeof pcrange);
have_linkage_name = 0;
for (i = 0; i < abbrev->num_attrs; ++i)
{
struct attr_val val;
if (!read_attribute (abbrev->attrs[i].form, abbrev->attrs[i].val,
unit_buf, u->is_dwarf64, u->version,
u->addrsize, &ddata->dwarf_sections,
ddata->altlink, &val))
return 0;
/* The compile unit sets the base address for any address
ranges in the function entries. */
if ((abbrev->tag == DW_TAG_compile_unit
|| abbrev->tag == DW_TAG_skeleton_unit)
&& abbrev->attrs[i].name == DW_AT_low_pc)
{
if (val.encoding == ATTR_VAL_ADDRESS)
base = val.u.uint;
else if (val.encoding == ATTR_VAL_ADDRESS_INDEX)
{
if (!resolve_addr_index (&ddata->dwarf_sections,
u->addr_base, u->addrsize,
ddata->is_bigendian, val.u.uint,
error_callback, data, &base))
return 0;
}
}
if (is_function)
{
switch (abbrev->attrs[i].name)
{
case DW_AT_call_file:
if (val.encoding == ATTR_VAL_UINT)
{
if (val.u.uint >= lhdr->filenames_count)
{
dwarf_buf_error (unit_buf,
("invalid file number in "
"DW_AT_call_file attribute"),
0);
return 0;
}
function->caller_filename = lhdr->filenames[val.u.uint];
}
break;
case DW_AT_call_line:
if (val.encoding == ATTR_VAL_UINT)
function->caller_lineno = val.u.uint;
break;
case DW_AT_abstract_origin:
case DW_AT_specification:
/* Second name preference: override DW_AT_name, don't override
DW_AT_linkage_name. */
if (have_linkage_name)
break;
{
const char *name;
name
= read_referenced_name_from_attr (ddata, u,
&abbrev->attrs[i], &val,
error_callback, data);
if (name != NULL)
function->name = name;
}
break;
case DW_AT_name:
/* Third name preference: don't override. */
if (function->name != NULL)
break;
if (!resolve_string (&ddata->dwarf_sections, u->is_dwarf64,
ddata->is_bigendian,
u->str_offsets_base, &val,
error_callback, data, &function->name))
return 0;
break;
case DW_AT_linkage_name:
case DW_AT_MIPS_linkage_name:
/* First name preference: override all. */
{
const char *s;
s = NULL;
if (!resolve_string (&ddata->dwarf_sections, u->is_dwarf64,
ddata->is_bigendian,
u->str_offsets_base, &val,
error_callback, data, &s))
return 0;
if (s != NULL)
{
function->name = s;
have_linkage_name = 1;
}
}
break;
case DW_AT_low_pc: case DW_AT_high_pc: case DW_AT_ranges:
update_pcrange (&abbrev->attrs[i], &val, &pcrange);
break;
default:
break;
}
}
}
/* If we couldn't find a name for the function, we have no use
for it. */
if (is_function && function->name == NULL)
{
backtrace_free (state, function, sizeof *function,
error_callback, data);
is_function = 0;
}
if (is_function)
{
if (pcrange.have_ranges
|| (pcrange.have_lowpc && pcrange.have_highpc))
{
if (!add_ranges (state, &ddata->dwarf_sections,
ddata->base_address, ddata->is_bigendian,
u, base, &pcrange, add_function_range,
(void *) function, error_callback, data,
(void *) vec))
return 0;
}
else
{
backtrace_free (state, function, sizeof *function,
error_callback, data);
is_function = 0;
}
}
if (abbrev->has_children)
{
if (!is_function)
{
if (!read_function_entry (state, ddata, u, base, unit_buf, lhdr,
error_callback, data, vec_function,
vec_inlined))
return 0;
}
else
{
struct function_vector fvec;
/* Gather any information for inlined functions in
FVEC. */
memset (&fvec, 0, sizeof fvec);
if (!read_function_entry (state, ddata, u, base, unit_buf, lhdr,
error_callback, data, vec_function,
&fvec))
return 0;
if (fvec.count > 0)
{
struct function_addrs *p;
struct function_addrs *faddrs;
/* Allocate a trailing entry, but don't include it
in fvec.count. */
p = ((struct function_addrs *)
backtrace_vector_grow (state,
sizeof (struct function_addrs),
error_callback, data,
&fvec.vec));
if (p == NULL)
return 0;
p->low = 0;
--p->low;
p->high = p->low;
p->function = NULL;
if (!backtrace_vector_release (state, &fvec.vec,
error_callback, data))
return 0;
faddrs = (struct function_addrs *) fvec.vec.base;
backtrace_qsort (faddrs, fvec.count,
sizeof (struct function_addrs),
function_addrs_compare);
function->function_addrs = faddrs;
function->function_addrs_count = fvec.count;
}
}
}
}
return 1;
}
/* Read function name information for a compilation unit. We look
through the whole unit looking for function tags. */
static void
read_function_info (struct backtrace_state *state, struct dwarf_data *ddata,
const struct line_header *lhdr,
backtrace_error_callback error_callback, void *data,
struct unit *u, struct function_vector *fvec,
struct function_addrs **ret_addrs,
size_t *ret_addrs_count)
{
struct function_vector lvec;
struct function_vector *pfvec;
struct dwarf_buf unit_buf;
struct function_addrs *p;
struct function_addrs *addrs;
size_t addrs_count;
/* Use FVEC if it is not NULL. Otherwise use our own vector. */
if (fvec != NULL)
pfvec = fvec;
else
{
memset (&lvec, 0, sizeof lvec);
pfvec = &lvec;
}
unit_buf.name = ".debug_info";
unit_buf.start = ddata->dwarf_sections.data[DEBUG_INFO];
unit_buf.buf = u->unit_data;
unit_buf.left = u->unit_data_len;
unit_buf.is_bigendian = ddata->is_bigendian;
unit_buf.error_callback = error_callback;
unit_buf.data = data;
unit_buf.reported_underflow = 0;
while (unit_buf.left > 0)
{
if (!read_function_entry (state, ddata, u, 0, &unit_buf, lhdr,
error_callback, data, pfvec, pfvec))
return;
}
if (pfvec->count == 0)
return;
/* Allocate a trailing entry, but don't include it in
pfvec->count. */
p = ((struct function_addrs *)
backtrace_vector_grow (state, sizeof (struct function_addrs),
error_callback, data, &pfvec->vec));
if (p == NULL)
return;
p->low = 0;
--p->low;
p->high = p->low;
p->function = NULL;
addrs_count = pfvec->count;
if (fvec == NULL)
{
if (!backtrace_vector_release (state, &lvec.vec, error_callback, data))
return;
addrs = (struct function_addrs *) pfvec->vec.base;
}
else
{
/* Finish this list of addresses, but leave the remaining space in
the vector available for the next function unit. */
addrs = ((struct function_addrs *)
backtrace_vector_finish (state, &fvec->vec,
error_callback, data));
if (addrs == NULL)
return;
fvec->count = 0;
}
backtrace_qsort (addrs, addrs_count, sizeof (struct function_addrs),
function_addrs_compare);
*ret_addrs = addrs;
*ret_addrs_count = addrs_count;
}
/* See if PC is inlined in FUNCTION. If it is, print out the inlined
information, and update FILENAME and LINENO for the caller.
Returns whatever CALLBACK returns, or 0 to keep going. */
static int
report_inlined_functions (uintptr_t pc, struct function *function,
backtrace_full_callback callback, void *data,
const char **filename, int *lineno)
{
struct function_addrs *p;
struct function_addrs *match;
struct function *inlined;
int ret;
if (function->function_addrs_count == 0)
return 0;
/* Our search isn't safe if pc == -1, as that is the sentinel
value. */
if (pc + 1 == 0)
return 0;
p = ((struct function_addrs *)
bsearch (&pc, function->function_addrs,
function->function_addrs_count,
sizeof (struct function_addrs),
function_addrs_search));
if (p == NULL)
return 0;
/* Here pc >= p->low && pc < (p + 1)->low. The function_addrs are
sorted by low, so if pc > p->low we are at the end of a range of
function_addrs with the same low value. If pc == p->low walk
forward to the end of the range with that low value. Then walk
backward and use the first range that includes pc. */
while (pc == (p + 1)->low)
++p;
match = NULL;
while (1)
{
if (pc < p->high)
{
match = p;
break;
}
if (p == function->function_addrs)
break;
if ((p - 1)->low < p->low)
break;
--p;
}
if (match == NULL)
return 0;
/* We found an inlined call. */
inlined = match->function;
/* Report any calls inlined into this one. */
ret = report_inlined_functions (pc, inlined, callback, data,
filename, lineno);
if (ret != 0)
return ret;
/* Report this inlined call. */
ret = callback (data, pc, match->low, *filename, *lineno, inlined->name);
if (ret != 0)
return ret;
/* Our caller will report the caller of the inlined function; tell
it the appropriate filename and line number. */
*filename = inlined->caller_filename;
*lineno = inlined->caller_lineno;
return 0;
}
/* Look for a PC in the DWARF mapping for one module. On success,
call CALLBACK and return whatever it returns. On error, call
ERROR_CALLBACK and return 0. Sets *FOUND to 1 if the PC is found,
0 if not. */
static int
dwarf_lookup_pc (struct backtrace_state *state, struct dwarf_data *ddata,
uintptr_t pc, backtrace_full_callback callback,
backtrace_error_callback error_callback, void *data,
int *found)
{
struct unit_addrs *entry;
int found_entry;
struct unit *u;
int new_data;
struct line *lines;
struct line *ln;
struct function_addrs *p;
struct function_addrs *fmatch;
struct function *function;
const char *filename;
int lineno;
int ret;
*found = 1;
/* Find an address range that includes PC. Our search isn't safe if
PC == -1, as we use that as a sentinel value, so skip the search
in that case. */
entry = (ddata->addrs_count == 0 || pc + 1 == 0
? NULL
: (struct unit_addrs*)bsearch (&pc, ddata->addrs, ddata->addrs_count,
sizeof (struct unit_addrs), unit_addrs_search));
if (entry == NULL)
{
*found = 0;
return 0;
}
/* Here pc >= entry->low && pc < (entry + 1)->low. The unit_addrs
are sorted by low, so if pc > p->low we are at the end of a range
of unit_addrs with the same low value. If pc == p->low walk
forward to the end of the range with that low value. Then walk
backward and use the first range that includes pc. */
while (pc == (entry + 1)->low)
++entry;
found_entry = 0;
while (1)
{
if (pc < entry->high)
{
found_entry = 1;
break;
}
if (entry == ddata->addrs)
break;
if ((entry - 1)->low < entry->low)
break;
--entry;
}
if (!found_entry)
{
*found = 0;
return 0;
}
/* We need the lines, lines_count, function_addrs,
function_addrs_count fields of u. If they are not set, we need
to set them. When running in threaded mode, we need to allow for
the possibility that some other thread is setting them
simultaneously. */
u = entry->u;
lines = u->lines;
/* Skip units with no useful line number information by walking
backward. Useless line number information is marked by setting
lines == -1. */
while (entry > ddata->addrs
&& pc >= (entry - 1)->low
&& pc < (entry - 1)->high)
{
if (state->threaded)
lines = (struct line *) backtrace_atomic_load_pointer (&u->lines);
if (lines != (struct line *) (uintptr_t) -1)
break;
--entry;
u = entry->u;
lines = u->lines;
}
if (state->threaded)
lines = backtrace_atomic_load_pointer (&u->lines);
new_data = 0;
if (lines == NULL)
{
struct function_addrs *function_addrs;
size_t function_addrs_count;
struct line_header lhdr;
size_t count;
/* We have never read the line information for this unit. Read
it now. */
function_addrs = NULL;
function_addrs_count = 0;
if (read_line_info (state, ddata, error_callback, data, entry->u, &lhdr,
&lines, &count))
{
struct function_vector *pfvec;
/* If not threaded, reuse DDATA->FVEC for better memory
consumption. */
if (state->threaded)
pfvec = NULL;
else
pfvec = &ddata->fvec;
read_function_info (state, ddata, &lhdr, error_callback, data,
entry->u, pfvec, &function_addrs,
&function_addrs_count);
free_line_header (state, &lhdr, error_callback, data);
new_data = 1;
}
/* Atomically store the information we just read into the unit.
If another thread is simultaneously writing, it presumably
read the same information, and we don't care which one we
wind up with; we just leak the other one. We do have to
write the lines field last, so that the acquire-loads above
ensure that the other fields are set. */
if (!state->threaded)
{
u->lines_count = count;
u->function_addrs = function_addrs;
u->function_addrs_count = function_addrs_count;
u->lines = lines;
}
else
{
backtrace_atomic_store_size_t (&u->lines_count, count);
backtrace_atomic_store_pointer (&u->function_addrs, function_addrs);
backtrace_atomic_store_size_t (&u->function_addrs_count,
function_addrs_count);
backtrace_atomic_store_pointer (&u->lines, lines);
}
}
/* Now all fields of U have been initialized. */
if (lines == (struct line *) (uintptr_t) -1)
{
/* If reading the line number information failed in some way,
try again to see if there is a better compilation unit for
this PC. */
if (new_data)
return dwarf_lookup_pc (state, ddata, pc, callback, error_callback,
data, found);
return callback (data, pc, 0, NULL, 0, NULL);
}
/* Search for PC within this unit. */
ln = (struct line *) bsearch (&pc, lines, entry->u->lines_count,
sizeof (struct line), line_search);
if (ln == NULL)
{
/* The PC is between the low_pc and high_pc attributes of the
compilation unit, but no entry in the line table covers it.
This implies that the start of the compilation unit has no
line number information. */
if (entry->u->abs_filename == NULL)
{
const char *filename;
filename = entry->u->filename;
if (filename != NULL
&& !IS_ABSOLUTE_PATH (filename)
&& entry->u->comp_dir != NULL)
{
size_t filename_len;
const char *dir;
size_t dir_len;
char *s;
filename_len = strlen (filename);
dir = entry->u->comp_dir;
dir_len = strlen (dir);
s = (char *) backtrace_alloc (state, dir_len + filename_len + 2,
error_callback, data);
if (s == NULL)
{
*found = 0;
return 0;
}
memcpy (s, dir, dir_len);
/* FIXME: Should use backslash if DOS file system. */
s[dir_len] = '/';
memcpy (s + dir_len + 1, filename, filename_len + 1);
filename = s;
}
entry->u->abs_filename = filename;
}
return callback (data, pc, 0, entry->u->abs_filename, 0, NULL);
}
/* Search for function name within this unit. */
if (entry->u->function_addrs_count == 0)
return callback (data, pc, 0, ln->filename, ln->lineno, NULL);
p = ((struct function_addrs *)
bsearch (&pc, entry->u->function_addrs,
entry->u->function_addrs_count,
sizeof (struct function_addrs),
function_addrs_search));
if (p == NULL)
return callback (data, pc, 0, ln->filename, ln->lineno, NULL);
/* Here pc >= p->low && pc < (p + 1)->low. The function_addrs are
sorted by low, so if pc > p->low we are at the end of a range of
function_addrs with the same low value. If pc == p->low walk
forward to the end of the range with that low value. Then walk
backward and use the first range that includes pc. */
while (pc == (p + 1)->low)
++p;
fmatch = NULL;
while (1)
{
if (pc < p->high)
{
fmatch = p;
break;
}
if (p == entry->u->function_addrs)
break;
if ((p - 1)->low < p->low)
break;
--p;
}
if (fmatch == NULL)
return callback (data, pc, 0, ln->filename, ln->lineno, NULL);
function = fmatch->function;
filename = ln->filename;
lineno = ln->lineno;
ret = report_inlined_functions (pc, function, callback, data,
&filename, &lineno);
if (ret != 0)
return ret;
return callback (data, pc, fmatch->low, filename, lineno, function->name);
}
/* Return the file/line information for a PC using the DWARF mapping
we built earlier. */
static int
dwarf_fileline (struct backtrace_state *state, uintptr_t pc,
backtrace_full_callback callback,
backtrace_error_callback error_callback, void *data)
{
struct dwarf_data *ddata;
int found;
int ret;
if (!state->threaded)
{
for (ddata = (struct dwarf_data *) state->fileline_data;
ddata != NULL;
ddata = ddata->next)
{
ret = dwarf_lookup_pc (state, ddata, pc, callback, error_callback,
data, &found);
if (ret != 0 || found)
return ret;
}
}
else
{
struct dwarf_data **pp;
pp = (struct dwarf_data **) (void *) &state->fileline_data;
while (1)
{
ddata = backtrace_atomic_load_pointer (pp);
if (ddata == NULL)
break;
ret = dwarf_lookup_pc (state, ddata, pc, callback, error_callback,
data, &found);
if (ret != 0 || found)
return ret;
pp = &ddata->next;
}
}
/* FIXME: See if any libraries have been dlopen'ed. */
return callback (data, pc, 0, NULL, 0, NULL);
}
/* Initialize our data structures from the DWARF debug info for a
file. Return NULL on failure. */
static struct dwarf_data *
build_dwarf_data (struct backtrace_state *state,
uintptr_t base_address,
const struct dwarf_sections *dwarf_sections,
int is_bigendian,
struct dwarf_data *altlink,
backtrace_error_callback error_callback,
void *data)
{
struct unit_addrs_vector addrs_vec;
struct unit_addrs *addrs;
size_t addrs_count;
struct unit_vector units_vec;
struct unit **units;
size_t units_count;
struct dwarf_data *fdata;
if (!build_address_map (state, base_address, dwarf_sections, is_bigendian,
altlink, error_callback, data, &addrs_vec,
&units_vec))
return NULL;
if (!backtrace_vector_release (state, &addrs_vec.vec, error_callback, data))
return NULL;
if (!backtrace_vector_release (state, &units_vec.vec, error_callback, data))
return NULL;
addrs = (struct unit_addrs *) addrs_vec.vec.base;
units = (struct unit **) units_vec.vec.base;
addrs_count = addrs_vec.count;
units_count = units_vec.count;
backtrace_qsort (addrs, addrs_count, sizeof (struct unit_addrs),
unit_addrs_compare);
/* No qsort for units required, already sorted. */
fdata = ((struct dwarf_data *)
backtrace_alloc (state, sizeof (struct dwarf_data),
error_callback, data));
if (fdata == NULL)
return NULL;
fdata->next = NULL;
fdata->altlink = altlink;
fdata->base_address = base_address;
fdata->addrs = addrs;
fdata->addrs_count = addrs_count;
fdata->units = units;
fdata->units_count = units_count;
fdata->dwarf_sections = *dwarf_sections;
fdata->is_bigendian = is_bigendian;
memset (&fdata->fvec, 0, sizeof fdata->fvec);
return fdata;
}
/* Build our data structures from the DWARF sections for a module.
Set FILELINE_FN and STATE->FILELINE_DATA. Return 1 on success, 0
on failure. */
int
backtrace_dwarf_add (struct backtrace_state *state,
uintptr_t base_address,
const struct dwarf_sections *dwarf_sections,
int is_bigendian,
struct dwarf_data *fileline_altlink,
backtrace_error_callback error_callback,
void *data, fileline *fileline_fn,
struct dwarf_data **fileline_entry)
{
struct dwarf_data *fdata;
fdata = build_dwarf_data (state, base_address, dwarf_sections, is_bigendian,
fileline_altlink, error_callback, data);
if (fdata == NULL)
return 0;
if (fileline_entry != NULL)
*fileline_entry = fdata;
if (!state->threaded)
{
struct dwarf_data **pp;
for (pp = (struct dwarf_data **) (void *) &state->fileline_data;
*pp != NULL;
pp = &(*pp)->next)
;
*pp = fdata;
}
else
{
while (1)
{
struct dwarf_data **pp;
pp = (struct dwarf_data **) (void *) &state->fileline_data;
while (1)
{
struct dwarf_data *p;
p = backtrace_atomic_load_pointer (pp);
if (p == NULL)
break;
pp = &p->next;
}
if (__sync_bool_compare_and_swap (pp, NULL, fdata))
break;
}
}
*fileline_fn = dwarf_fileline;
return 1;
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/dwarf.cpp
|
C++
|
gpl-3.0
| 116,499
|
/* elf.c -- Get debug data from an ELF file for backtraces.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef HAVE_DL_ITERATE_PHDR
#include <link.h>
#endif
#include "backtrace.hpp"
#include "internal.hpp"
#include "../client/TracyFastVector.hpp"
#include "../common/TracyAlloc.hpp"
#ifndef S_ISLNK
#ifndef S_IFLNK
#define S_IFLNK 0120000
#endif
#ifndef S_IFMT
#define S_IFMT 0170000
#endif
#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#endif
#ifndef __GNUC__
#define __builtin_prefetch(p, r, l)
#ifndef unlikely
#define unlikely(x) (x)
#endif
#else
#ifndef unlikely
#define unlikely(x) __builtin_expect(!!(x), 0)
#endif
#endif
namespace tracy
{
#ifdef TRACY_DEBUGINFOD
int GetDebugInfoDescriptor( const char* buildid_data, size_t buildid_size );
#endif
#if !defined(HAVE_DECL_STRNLEN) || !HAVE_DECL_STRNLEN
/* If strnlen is not declared, provide our own version. */
static size_t
xstrnlen (const char *s, size_t maxlen)
{
size_t i;
for (i = 0; i < maxlen; ++i)
if (s[i] == '\0')
break;
return i;
}
#define strnlen xstrnlen
#endif
#ifndef HAVE_LSTAT
/* Dummy version of lstat for systems that don't have it. */
static int
xlstat (const char *path ATTRIBUTE_UNUSED, struct stat *st ATTRIBUTE_UNUSED)
{
return -1;
}
#define lstat xlstat
#endif
#ifndef HAVE_READLINK
/* Dummy version of readlink for systems that don't have it. */
static ssize_t
xreadlink (const char *path ATTRIBUTE_UNUSED, char *buf ATTRIBUTE_UNUSED,
size_t bufsz ATTRIBUTE_UNUSED)
{
return -1;
}
#define readlink xreadlink
#endif
#ifndef HAVE_DL_ITERATE_PHDR
/* Dummy version of dl_iterate_phdr for systems that don't have it. */
#define dl_phdr_info x_dl_phdr_info
#define dl_iterate_phdr x_dl_iterate_phdr
struct dl_phdr_info
{
uintptr_t dlpi_addr;
const char *dlpi_name;
};
static int
dl_iterate_phdr (int (*callback) (struct dl_phdr_info *,
size_t, void *) ATTRIBUTE_UNUSED,
void *data ATTRIBUTE_UNUSED)
{
return 0;
}
#endif /* ! defined (HAVE_DL_ITERATE_PHDR) */
/* The configure script must tell us whether we are 32-bit or 64-bit
ELF. We could make this code test and support either possibility,
but there is no point. This code only works for the currently
running executable, which means that we know the ELF mode at
configure time. */
#if BACKTRACE_ELF_SIZE != 32 && BACKTRACE_ELF_SIZE != 64
#error "Unknown BACKTRACE_ELF_SIZE"
#endif
/* <link.h> might #include <elf.h> which might define our constants
with slightly different values. Undefine them to be safe. */
#undef EI_NIDENT
#undef EI_MAG0
#undef EI_MAG1
#undef EI_MAG2
#undef EI_MAG3
#undef EI_CLASS
#undef EI_DATA
#undef EI_VERSION
#undef ELF_MAG0
#undef ELF_MAG1
#undef ELF_MAG2
#undef ELF_MAG3
#undef ELFCLASS32
#undef ELFCLASS64
#undef ELFDATA2LSB
#undef ELFDATA2MSB
#undef EV_CURRENT
#undef ET_DYN
#undef EM_PPC64
#undef EF_PPC64_ABI
#undef SHN_LORESERVE
#undef SHN_XINDEX
#undef SHN_UNDEF
#undef SHT_PROGBITS
#undef SHT_SYMTAB
#undef SHT_STRTAB
#undef SHT_DYNSYM
#undef SHF_COMPRESSED
#undef STT_OBJECT
#undef STT_FUNC
#undef NT_GNU_BUILD_ID
#undef ELFCOMPRESS_ZLIB
/* Basic types. */
typedef uint16_t b_elf_half; /* Elf_Half. */
typedef uint32_t b_elf_word; /* Elf_Word. */
typedef int32_t b_elf_sword; /* Elf_Sword. */
#if BACKTRACE_ELF_SIZE == 32
typedef uint32_t b_elf_addr; /* Elf_Addr. */
typedef uint32_t b_elf_off; /* Elf_Off. */
typedef uint32_t b_elf_wxword; /* 32-bit Elf_Word, 64-bit ELF_Xword. */
#else
typedef uint64_t b_elf_addr; /* Elf_Addr. */
typedef uint64_t b_elf_off; /* Elf_Off. */
typedef uint64_t b_elf_xword; /* Elf_Xword. */
typedef int64_t b_elf_sxword; /* Elf_Sxword. */
typedef uint64_t b_elf_wxword; /* 32-bit Elf_Word, 64-bit ELF_Xword. */
#endif
/* Data structures and associated constants. */
#define EI_NIDENT 16
typedef struct {
unsigned char e_ident[EI_NIDENT]; /* ELF "magic number" */
b_elf_half e_type; /* Identifies object file type */
b_elf_half e_machine; /* Specifies required architecture */
b_elf_word e_version; /* Identifies object file version */
b_elf_addr e_entry; /* Entry point virtual address */
b_elf_off e_phoff; /* Program header table file offset */
b_elf_off e_shoff; /* Section header table file offset */
b_elf_word e_flags; /* Processor-specific flags */
b_elf_half e_ehsize; /* ELF header size in bytes */
b_elf_half e_phentsize; /* Program header table entry size */
b_elf_half e_phnum; /* Program header table entry count */
b_elf_half e_shentsize; /* Section header table entry size */
b_elf_half e_shnum; /* Section header table entry count */
b_elf_half e_shstrndx; /* Section header string table index */
} b_elf_ehdr; /* Elf_Ehdr. */
#define EI_MAG0 0
#define EI_MAG1 1
#define EI_MAG2 2
#define EI_MAG3 3
#define EI_CLASS 4
#define EI_DATA 5
#define EI_VERSION 6
#define ELFMAG0 0x7f
#define ELFMAG1 'E'
#define ELFMAG2 'L'
#define ELFMAG3 'F'
#define ELFCLASS32 1
#define ELFCLASS64 2
#define ELFDATA2LSB 1
#define ELFDATA2MSB 2
#define EV_CURRENT 1
#define ET_DYN 3
#define EM_PPC64 21
#define EF_PPC64_ABI 3
typedef struct {
b_elf_word sh_name; /* Section name, index in string tbl */
b_elf_word sh_type; /* Type of section */
b_elf_wxword sh_flags; /* Miscellaneous section attributes */
b_elf_addr sh_addr; /* Section virtual addr at execution */
b_elf_off sh_offset; /* Section file offset */
b_elf_wxword sh_size; /* Size of section in bytes */
b_elf_word sh_link; /* Index of another section */
b_elf_word sh_info; /* Additional section information */
b_elf_wxword sh_addralign; /* Section alignment */
b_elf_wxword sh_entsize; /* Entry size if section holds table */
} b_elf_shdr; /* Elf_Shdr. */
#define SHN_UNDEF 0x0000 /* Undefined section */
#define SHN_LORESERVE 0xFF00 /* Begin range of reserved indices */
#define SHN_XINDEX 0xFFFF /* Section index is held elsewhere */
#define SHT_PROGBITS 1
#define SHT_SYMTAB 2
#define SHT_STRTAB 3
#define SHT_DYNSYM 11
#define SHF_COMPRESSED 0x800
#if BACKTRACE_ELF_SIZE == 32
typedef struct
{
b_elf_word st_name; /* Symbol name, index in string tbl */
b_elf_addr st_value; /* Symbol value */
b_elf_word st_size; /* Symbol size */
unsigned char st_info; /* Symbol binding and type */
unsigned char st_other; /* Visibility and other data */
b_elf_half st_shndx; /* Symbol section index */
} b_elf_sym; /* Elf_Sym. */
#else /* BACKTRACE_ELF_SIZE != 32 */
typedef struct
{
b_elf_word st_name; /* Symbol name, index in string tbl */
unsigned char st_info; /* Symbol binding and type */
unsigned char st_other; /* Visibility and other data */
b_elf_half st_shndx; /* Symbol section index */
b_elf_addr st_value; /* Symbol value */
b_elf_xword st_size; /* Symbol size */
} b_elf_sym; /* Elf_Sym. */
#endif /* BACKTRACE_ELF_SIZE != 32 */
#define STT_OBJECT 1
#define STT_FUNC 2
typedef struct
{
uint32_t namesz;
uint32_t descsz;
uint32_t type;
char name[1];
} b_elf_note;
#define NT_GNU_BUILD_ID 3
#if BACKTRACE_ELF_SIZE == 32
typedef struct
{
b_elf_word ch_type; /* Compresstion algorithm */
b_elf_word ch_size; /* Uncompressed size */
b_elf_word ch_addralign; /* Alignment for uncompressed data */
} b_elf_chdr; /* Elf_Chdr */
#else /* BACKTRACE_ELF_SIZE != 32 */
typedef struct
{
b_elf_word ch_type; /* Compression algorithm */
b_elf_word ch_reserved; /* Reserved */
b_elf_xword ch_size; /* Uncompressed size */
b_elf_xword ch_addralign; /* Alignment for uncompressed data */
} b_elf_chdr; /* Elf_Chdr */
#endif /* BACKTRACE_ELF_SIZE != 32 */
#define ELFCOMPRESS_ZLIB 1
/* Names of sections, indexed by enum dwarf_section in internal.h. */
static const char * const dwarf_section_names[DEBUG_MAX] =
{
".debug_info",
".debug_line",
".debug_abbrev",
".debug_ranges",
".debug_str",
".debug_addr",
".debug_str_offsets",
".debug_line_str",
".debug_rnglists"
};
/* Information we gather for the sections we care about. */
struct debug_section_info
{
/* Section file offset. */
off_t offset;
/* Section size. */
size_t size;
/* Section contents, after read from file. */
const unsigned char *data;
/* Whether the SHF_COMPRESSED flag is set for the section. */
int compressed;
};
/* Information we keep for an ELF symbol. */
struct elf_symbol
{
/* The name of the symbol. */
const char *name;
/* The address of the symbol. */
uintptr_t address;
/* The size of the symbol. */
size_t size;
};
/* Information to pass to elf_syminfo. */
struct elf_syminfo_data
{
/* Symbols for the next module. */
struct elf_syminfo_data *next;
/* The ELF symbols, sorted by address. */
struct elf_symbol *symbols;
/* The number of symbols. */
size_t count;
};
/* A view that works for either a file or memory. */
struct elf_view
{
struct backtrace_view view;
int release; /* If non-zero, must call backtrace_release_view. */
};
/* Information about PowerPC64 ELFv1 .opd section. */
struct elf_ppc64_opd_data
{
/* Address of the .opd section. */
b_elf_addr addr;
/* Section data. */
const char *data;
/* Size of the .opd section. */
size_t size;
/* Corresponding section view. */
struct elf_view view;
};
/* Create a view of SIZE bytes from DESCRIPTOR/MEMORY at OFFSET. */
static int
elf_get_view (struct backtrace_state *state, int descriptor,
const unsigned char *memory, size_t memory_size, off_t offset,
uint64_t size, backtrace_error_callback error_callback,
void *data, struct elf_view *view)
{
if (memory == NULL)
{
view->release = 1;
return backtrace_get_view (state, descriptor, offset, size,
error_callback, data, &view->view);
}
else
{
if ((uint64_t) offset + size > (uint64_t) memory_size)
{
error_callback (data, "out of range for in-memory file", 0);
return 0;
}
view->view.data = (const void *) (memory + offset);
view->view.base = NULL;
view->view.len = size;
view->release = 0;
return 1;
}
}
/* Release a view read by elf_get_view. */
static void
elf_release_view (struct backtrace_state *state, struct elf_view *view,
backtrace_error_callback error_callback, void *data)
{
if (view->release)
backtrace_release_view (state, &view->view, error_callback, data);
}
/* Compute the CRC-32 of BUF/LEN. This uses the CRC used for
.gnu_debuglink files. */
static uint32_t
elf_crc32 (uint32_t crc, const unsigned char *buf, size_t len)
{
static const uint32_t crc32_table[256] =
{
0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
0x2d02ef8d
};
const unsigned char *end;
crc = ~crc;
for (end = buf + len; buf < end; ++ buf)
crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
return ~crc;
}
/* Return the CRC-32 of the entire file open at DESCRIPTOR. */
static uint32_t
elf_crc32_file (struct backtrace_state *state, int descriptor,
backtrace_error_callback error_callback, void *data)
{
struct stat st;
struct backtrace_view file_view;
uint32_t ret;
if (fstat (descriptor, &st) < 0)
{
error_callback (data, "fstat", errno);
return 0;
}
if (!backtrace_get_view (state, descriptor, 0, st.st_size, error_callback,
data, &file_view))
return 0;
ret = elf_crc32 (0, (const unsigned char *) file_view.data, st.st_size);
backtrace_release_view (state, &file_view, error_callback, data);
return ret;
}
/* A dummy callback function used when we can't find a symbol
table. */
static void
elf_nosyms (struct backtrace_state *state ATTRIBUTE_UNUSED,
uintptr_t addr ATTRIBUTE_UNUSED,
backtrace_syminfo_callback callback ATTRIBUTE_UNUSED,
backtrace_error_callback error_callback, void *data)
{
error_callback (data, "no symbol table in ELF executable", -1);
}
/* A callback function used when we can't find any debug info. */
static int
elf_nodebug (struct backtrace_state *state, uintptr_t pc,
backtrace_full_callback callback,
backtrace_error_callback error_callback, void *data)
{
if (state->syminfo_fn != NULL && state->syminfo_fn != elf_nosyms)
{
struct backtrace_call_full bdata;
/* Fetch symbol information so that we can least get the
function name. */
bdata.full_callback = callback;
bdata.full_error_callback = error_callback;
bdata.full_data = data;
bdata.ret = 0;
state->syminfo_fn (state, pc, backtrace_syminfo_to_full_callback,
backtrace_syminfo_to_full_error_callback, &bdata);
return bdata.ret;
}
error_callback (data, "no debug info in ELF executable", -1);
return 0;
}
/* Compare struct elf_symbol for qsort. */
static int
elf_symbol_compare (const void *v1, const void *v2)
{
const struct elf_symbol *e1 = (const struct elf_symbol *) v1;
const struct elf_symbol *e2 = (const struct elf_symbol *) v2;
if (e1->address < e2->address)
return -1;
else if (e1->address > e2->address)
return 1;
else
return 0;
}
/* Compare an ADDR against an elf_symbol for bsearch. We allocate one
extra entry in the array so that this can look safely at the next
entry. */
static int
elf_symbol_search (const void *vkey, const void *ventry)
{
const uintptr_t *key = (const uintptr_t *) vkey;
const struct elf_symbol *entry = (const struct elf_symbol *) ventry;
uintptr_t addr;
addr = *key;
if (addr < entry->address)
return -1;
else if (addr >= entry->address + entry->size)
return 1;
else
return 0;
}
/* Initialize the symbol table info for elf_syminfo. */
static int
elf_initialize_syminfo (struct backtrace_state *state,
uintptr_t base_address,
const unsigned char *symtab_data, size_t symtab_size,
const unsigned char *strtab, size_t strtab_size,
backtrace_error_callback error_callback,
void *data, struct elf_syminfo_data *sdata,
struct elf_ppc64_opd_data *opd)
{
size_t sym_count;
const b_elf_sym *sym;
size_t elf_symbol_count;
size_t elf_symbol_size;
struct elf_symbol *elf_symbols;
size_t i;
unsigned int j;
sym_count = symtab_size / sizeof (b_elf_sym);
/* We only care about function symbols. Count them. */
sym = (const b_elf_sym *) symtab_data;
elf_symbol_count = 0;
for (i = 0; i < sym_count; ++i, ++sym)
{
int info;
info = sym->st_info & 0xf;
if ((info == STT_FUNC || info == STT_OBJECT)
&& sym->st_shndx != SHN_UNDEF)
++elf_symbol_count;
}
elf_symbol_size = elf_symbol_count * sizeof (struct elf_symbol);
elf_symbols = ((struct elf_symbol *)
backtrace_alloc (state, elf_symbol_size, error_callback,
data));
if (elf_symbols == NULL)
return 0;
sym = (const b_elf_sym *) symtab_data;
j = 0;
for (i = 0; i < sym_count; ++i, ++sym)
{
int info;
info = sym->st_info & 0xf;
if (info != STT_FUNC && info != STT_OBJECT)
continue;
if (sym->st_shndx == SHN_UNDEF)
continue;
if (sym->st_name >= strtab_size)
{
error_callback (data, "symbol string index out of range", 0);
backtrace_free (state, elf_symbols, elf_symbol_size, error_callback,
data);
return 0;
}
elf_symbols[j].name = (const char *) strtab + sym->st_name;
/* Special case PowerPC64 ELFv1 symbols in .opd section, if the symbol
is a function descriptor, read the actual code address from the
descriptor. */
if (opd
&& sym->st_value >= opd->addr
&& sym->st_value < opd->addr + opd->size)
elf_symbols[j].address
= *(const b_elf_addr *) (opd->data + (sym->st_value - opd->addr));
else
elf_symbols[j].address = sym->st_value;
elf_symbols[j].address += base_address;
elf_symbols[j].size = sym->st_size;
++j;
}
backtrace_qsort (elf_symbols, elf_symbol_count, sizeof (struct elf_symbol),
elf_symbol_compare);
sdata->next = NULL;
sdata->symbols = elf_symbols;
sdata->count = elf_symbol_count;
return 1;
}
/* Add EDATA to the list in STATE. */
static void
elf_add_syminfo_data (struct backtrace_state *state,
struct elf_syminfo_data *edata)
{
if (!state->threaded)
{
struct elf_syminfo_data **pp;
for (pp = (struct elf_syminfo_data **) (void *) &state->syminfo_data;
*pp != NULL;
pp = &(*pp)->next)
;
*pp = edata;
}
else
{
while (1)
{
struct elf_syminfo_data **pp;
pp = (struct elf_syminfo_data **) (void *) &state->syminfo_data;
while (1)
{
struct elf_syminfo_data *p;
p = backtrace_atomic_load_pointer (pp);
if (p == NULL)
break;
pp = &p->next;
}
if (__sync_bool_compare_and_swap (pp, NULL, edata))
break;
}
}
}
/* Return the symbol name and value for an ADDR. */
static void
elf_syminfo (struct backtrace_state *state, uintptr_t addr,
backtrace_syminfo_callback callback,
backtrace_error_callback error_callback ATTRIBUTE_UNUSED,
void *data)
{
struct elf_syminfo_data *edata;
struct elf_symbol *sym = NULL;
if (!state->threaded)
{
for (edata = (struct elf_syminfo_data *) state->syminfo_data;
edata != NULL;
edata = edata->next)
{
sym = ((struct elf_symbol *)
bsearch (&addr, edata->symbols, edata->count,
sizeof (struct elf_symbol), elf_symbol_search));
if (sym != NULL)
break;
}
}
else
{
struct elf_syminfo_data **pp;
pp = (struct elf_syminfo_data **) (void *) &state->syminfo_data;
while (1)
{
edata = backtrace_atomic_load_pointer (pp);
if (edata == NULL)
break;
sym = ((struct elf_symbol *)
bsearch (&addr, edata->symbols, edata->count,
sizeof (struct elf_symbol), elf_symbol_search));
if (sym != NULL)
break;
pp = &edata->next;
}
}
if (sym == NULL)
callback (data, addr, NULL, 0, 0);
else
callback (data, addr, sym->name, sym->address, sym->size);
}
/* Return whether FILENAME is a symlink. */
static int
elf_is_symlink (const char *filename)
{
struct stat st;
if (lstat (filename, &st) < 0)
return 0;
return S_ISLNK (st.st_mode);
}
/* Return the results of reading the symlink FILENAME in a buffer
allocated by backtrace_alloc. Return the length of the buffer in
*LEN. */
static char *
elf_readlink (struct backtrace_state *state, const char *filename,
backtrace_error_callback error_callback, void *data,
size_t *plen)
{
size_t len;
char *buf;
len = 128;
while (1)
{
ssize_t rl;
buf = (char*)backtrace_alloc (state, len, error_callback, data);
if (buf == NULL)
return NULL;
rl = readlink (filename, buf, len);
if (rl < 0)
{
backtrace_free (state, buf, len, error_callback, data);
return NULL;
}
if ((size_t) rl < len - 1)
{
buf[rl] = '\0';
*plen = len;
return buf;
}
backtrace_free (state, buf, len, error_callback, data);
len *= 2;
}
}
#define SYSTEM_BUILD_ID_DIR "/usr/lib/debug/.build-id/"
/* Open a separate debug info file, using the build ID to find it.
Returns an open file descriptor, or -1.
The GDB manual says that the only place gdb looks for a debug file
when the build ID is known is in /usr/lib/debug/.build-id. */
static int
elf_open_debugfile_by_buildid (struct backtrace_state *state,
const char *buildid_data, size_t buildid_size,
const char *filename,
backtrace_error_callback error_callback,
void *data)
{
const char * const prefix = SYSTEM_BUILD_ID_DIR;
const size_t prefix_len = strlen (prefix);
const char * const suffix = ".debug";
const size_t suffix_len = strlen (suffix);
size_t len;
char *bd_filename;
char *t;
size_t i;
int ret;
int does_not_exist;
len = prefix_len + buildid_size * 2 + suffix_len + 2;
bd_filename = (char*)backtrace_alloc (state, len, error_callback, data);
if (bd_filename == NULL)
return -1;
t = bd_filename;
memcpy (t, prefix, prefix_len);
t += prefix_len;
for (i = 0; i < buildid_size; i++)
{
unsigned char b;
unsigned char nib;
b = (unsigned char) buildid_data[i];
nib = (b & 0xf0) >> 4;
*t++ = nib < 10 ? '0' + nib : 'a' + nib - 10;
nib = b & 0x0f;
*t++ = nib < 10 ? '0' + nib : 'a' + nib - 10;
if (i == 0)
*t++ = '/';
}
memcpy (t, suffix, suffix_len);
t[suffix_len] = '\0';
ret = backtrace_open (bd_filename, error_callback, data, &does_not_exist);
backtrace_free (state, bd_filename, len, error_callback, data);
/* gdb checks that the debuginfo file has the same build ID note.
That seems kind of pointless to me--why would it have the right
name but not the right build ID?--so skipping the check. */
#ifdef TRACY_DEBUGINFOD
if (ret == -1)
return GetDebugInfoDescriptor( buildid_data, buildid_size, filename );
else
return ret;
#else
return ret;
#endif
}
/* Try to open a file whose name is PREFIX (length PREFIX_LEN)
concatenated with PREFIX2 (length PREFIX2_LEN) concatenated with
DEBUGLINK_NAME. Returns an open file descriptor, or -1. */
static int
elf_try_debugfile (struct backtrace_state *state, const char *prefix,
size_t prefix_len, const char *prefix2, size_t prefix2_len,
const char *debuglink_name,
backtrace_error_callback error_callback, void *data)
{
size_t debuglink_len;
size_t try_len;
char *Try;
int does_not_exist;
int ret;
debuglink_len = strlen (debuglink_name);
try_len = prefix_len + prefix2_len + debuglink_len + 1;
Try = (char*)backtrace_alloc (state, try_len, error_callback, data);
if (Try == NULL)
return -1;
memcpy (Try, prefix, prefix_len);
memcpy (Try + prefix_len, prefix2, prefix2_len);
memcpy (Try + prefix_len + prefix2_len, debuglink_name, debuglink_len);
Try[prefix_len + prefix2_len + debuglink_len] = '\0';
ret = backtrace_open (Try, error_callback, data, &does_not_exist);
backtrace_free (state, Try, try_len, error_callback, data);
return ret;
}
/* Find a separate debug info file, using the debuglink section data
to find it. Returns an open file descriptor, or -1. */
static int
elf_find_debugfile_by_debuglink (struct backtrace_state *state,
const char *filename,
const char *debuglink_name,
backtrace_error_callback error_callback,
void *data)
{
int ret;
char *alc;
size_t alc_len;
const char *slash;
int ddescriptor;
const char *prefix;
size_t prefix_len;
/* Resolve symlinks in FILENAME. Since FILENAME is fairly likely to
be /proc/self/exe, symlinks are common. We don't try to resolve
the whole path name, just the base name. */
ret = -1;
alc = NULL;
alc_len = 0;
while (elf_is_symlink (filename))
{
char *new_buf;
size_t new_len;
new_buf = elf_readlink (state, filename, error_callback, data, &new_len);
if (new_buf == NULL)
break;
if (new_buf[0] == '/')
filename = new_buf;
else
{
slash = strrchr (filename, '/');
if (slash == NULL)
filename = new_buf;
else
{
size_t clen;
char *c;
slash++;
clen = slash - filename + strlen (new_buf) + 1;
c = (char*)backtrace_alloc (state, clen, error_callback, data);
if (c == NULL)
goto done;
memcpy (c, filename, slash - filename);
memcpy (c + (slash - filename), new_buf, strlen (new_buf));
c[slash - filename + strlen (new_buf)] = '\0';
backtrace_free (state, new_buf, new_len, error_callback, data);
filename = c;
new_buf = c;
new_len = clen;
}
}
if (alc != NULL)
backtrace_free (state, alc, alc_len, error_callback, data);
alc = new_buf;
alc_len = new_len;
}
/* Look for DEBUGLINK_NAME in the same directory as FILENAME. */
slash = strrchr (filename, '/');
if (slash == NULL)
{
prefix = "";
prefix_len = 0;
}
else
{
slash++;
prefix = filename;
prefix_len = slash - filename;
}
ddescriptor = elf_try_debugfile (state, prefix, prefix_len, "", 0,
debuglink_name, error_callback, data);
if (ddescriptor >= 0)
{
ret = ddescriptor;
goto done;
}
/* Look for DEBUGLINK_NAME in a .debug subdirectory of FILENAME. */
ddescriptor = elf_try_debugfile (state, prefix, prefix_len, ".debug/",
strlen (".debug/"), debuglink_name,
error_callback, data);
if (ddescriptor >= 0)
{
ret = ddescriptor;
goto done;
}
/* Look for DEBUGLINK_NAME in /usr/lib/debug. */
ddescriptor = elf_try_debugfile (state, "/usr/lib/debug/",
strlen ("/usr/lib/debug/"), prefix,
prefix_len, debuglink_name,
error_callback, data);
if (ddescriptor >= 0)
ret = ddescriptor;
done:
if (alc != NULL && alc_len > 0)
backtrace_free (state, alc, alc_len, error_callback, data);
return ret;
}
/* Open a separate debug info file, using the debuglink section data
to find it. Returns an open file descriptor, or -1. */
static int
elf_open_debugfile_by_debuglink (struct backtrace_state *state,
const char *filename,
const char *debuglink_name,
uint32_t debuglink_crc,
backtrace_error_callback error_callback,
void *data)
{
int ddescriptor;
ddescriptor = elf_find_debugfile_by_debuglink (state, filename,
debuglink_name,
error_callback, data);
if (ddescriptor < 0)
return -1;
if (debuglink_crc != 0)
{
uint32_t got_crc;
got_crc = elf_crc32_file (state, ddescriptor, error_callback, data);
if (got_crc != debuglink_crc)
{
backtrace_close (ddescriptor, error_callback, data);
return -1;
}
}
return ddescriptor;
}
/* A function useful for setting a breakpoint for an inflation failure
when this code is compiled with -g. */
static void
elf_uncompress_failed(void)
{
}
/* *PVAL is the current value being read from the stream, and *PBITS
is the number of valid bits. Ensure that *PVAL holds at least 15
bits by reading additional bits from *PPIN, up to PINEND, as
needed. Updates *PPIN, *PVAL and *PBITS. Returns 1 on success, 0
on error. */
static int
elf_zlib_fetch (const unsigned char **ppin, const unsigned char *pinend,
uint64_t *pval, unsigned int *pbits)
{
unsigned int bits;
const unsigned char *pin;
uint64_t val;
uint32_t next;
bits = *pbits;
if (bits >= 15)
return 1;
pin = *ppin;
val = *pval;
if (unlikely (pinend - pin < 4))
{
elf_uncompress_failed ();
return 0;
}
#if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) \
&& defined(__ORDER_BIG_ENDIAN__) \
&& (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ \
|| __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
/* We've ensured that PIN is aligned. */
next = *(const uint32_t *)pin;
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
next = __builtin_bswap32 (next);
#endif
#else
next = pin[0] | (pin[1] << 8) | (pin[2] << 16) | (pin[3] << 24);
#endif
val |= (uint64_t)next << bits;
bits += 32;
pin += 4;
/* We will need the next four bytes soon. */
__builtin_prefetch (pin, 0, 0);
*ppin = pin;
*pval = val;
*pbits = bits;
return 1;
}
/* Huffman code tables, like the rest of the zlib format, are defined
by RFC 1951. We store a Huffman code table as a series of tables
stored sequentially in memory. Each entry in a table is 16 bits.
The first, main, table has 256 entries. It is followed by a set of
secondary tables of length 2 to 128 entries. The maximum length of
a code sequence in the deflate format is 15 bits, so that is all we
need. Each secondary table has an index, which is the offset of
the table in the overall memory storage.
The deflate format says that all codes of a given bit length are
lexicographically consecutive. Perhaps we could have 130 values
that require a 15-bit code, perhaps requiring three secondary
tables of size 128. I don't know if this is actually possible, but
it suggests that the maximum size required for secondary tables is
3 * 128 + 3 * 64 ... == 768. The zlib enough program reports 660
as the maximum. We permit 768, since in addition to the 256 for
the primary table, with two bytes per entry, and with the two
tables we need, that gives us a page.
A single table entry needs to store a value or (for the main table
only) the index and size of a secondary table. Values range from 0
to 285, inclusive. Secondary table indexes, per above, range from
0 to 510. For a value we need to store the number of bits we need
to determine that value (one value may appear multiple times in the
table), which is 1 to 8. For a secondary table we need to store
the number of bits used to index into the table, which is 1 to 7.
And of course we need 1 bit to decide whether we have a value or a
secondary table index. So each entry needs 9 bits for value/table
index, 3 bits for size, 1 bit what it is. For simplicity we use 16
bits per entry. */
/* Number of entries we allocate to for one code table. We get a page
for the two code tables we need. */
#define HUFFMAN_TABLE_SIZE (1024)
/* Bit masks and shifts for the values in the table. */
#define HUFFMAN_VALUE_MASK 0x01ff
#define HUFFMAN_BITS_SHIFT 9
#define HUFFMAN_BITS_MASK 0x7
#define HUFFMAN_SECONDARY_SHIFT 12
/* For working memory while inflating we need two code tables, we need
an array of code lengths (max value 15, so we use unsigned char),
and an array of unsigned shorts used while building a table. The
latter two arrays must be large enough to hold the maximum number
of code lengths, which RFC 1951 defines as 286 + 30. */
#define ZDEBUG_TABLE_SIZE \
(2 * HUFFMAN_TABLE_SIZE * sizeof (uint16_t) \
+ (286 + 30) * sizeof (uint16_t) \
+ (286 + 30) * sizeof (unsigned char))
#define ZDEBUG_TABLE_CODELEN_OFFSET \
(2 * HUFFMAN_TABLE_SIZE * sizeof (uint16_t) \
+ (286 + 30) * sizeof (uint16_t))
#define ZDEBUG_TABLE_WORK_OFFSET \
(2 * HUFFMAN_TABLE_SIZE * sizeof (uint16_t))
#ifdef BACKTRACE_GENERATE_FIXED_HUFFMAN_TABLE
/* Used by the main function that generates the fixed table to learn
the table size. */
static size_t final_next_secondary;
#endif
/* Build a Huffman code table from an array of lengths in CODES of
length CODES_LEN. The table is stored into *TABLE. ZDEBUG_TABLE
is the same as for elf_zlib_inflate, used to find some work space.
Returns 1 on success, 0 on error. */
static int
elf_zlib_inflate_table (unsigned char *codes, size_t codes_len,
uint16_t *zdebug_table, uint16_t *table)
{
uint16_t count[16];
uint16_t start[16];
uint16_t prev[16];
uint16_t firstcode[7];
uint16_t *next;
size_t i;
size_t j;
unsigned int code;
size_t next_secondary;
/* Count the number of code of each length. Set NEXT[val] to be the
next value after VAL with the same bit length. */
next = (uint16_t *) (((unsigned char *) zdebug_table)
+ ZDEBUG_TABLE_WORK_OFFSET);
memset (&count[0], 0, 16 * sizeof (uint16_t));
for (i = 0; i < codes_len; ++i)
{
if (unlikely (codes[i] >= 16))
{
elf_uncompress_failed ();
return 0;
}
if (count[codes[i]] == 0)
{
start[codes[i]] = i;
prev[codes[i]] = i;
}
else
{
next[prev[codes[i]]] = i;
prev[codes[i]] = i;
}
++count[codes[i]];
}
/* For each length, fill in the table for the codes of that
length. */
memset (table, 0, HUFFMAN_TABLE_SIZE * sizeof (uint16_t));
/* Handle the values that do not require a secondary table. */
code = 0;
for (j = 1; j <= 8; ++j)
{
unsigned int jcnt;
unsigned int val;
jcnt = count[j];
if (jcnt == 0)
continue;
if (unlikely (jcnt > (1U << j)))
{
elf_uncompress_failed ();
return 0;
}
/* There are JCNT values that have this length, the values
starting from START[j] continuing through NEXT[VAL]. Those
values are assigned consecutive values starting at CODE. */
val = start[j];
for (i = 0; i < jcnt; ++i)
{
uint16_t tval;
size_t ind;
unsigned int incr;
/* In the compressed bit stream, the value VAL is encoded as
J bits with the value C. */
if (unlikely ((val & ~HUFFMAN_VALUE_MASK) != 0))
{
elf_uncompress_failed ();
return 0;
}
tval = val | ((j - 1) << HUFFMAN_BITS_SHIFT);
/* The table lookup uses 8 bits. If J is less than 8, we
don't know what the other bits will be. We need to fill
in all possibilities in the table. Since the Huffman
code is unambiguous, those entries can't be used for any
other code. */
for (ind = code; ind < 0x100; ind += 1 << j)
{
if (unlikely (table[ind] != 0))
{
elf_uncompress_failed ();
return 0;
}
table[ind] = tval;
}
/* Advance to the next value with this length. */
if (i + 1 < jcnt)
val = next[val];
/* The Huffman codes are stored in the bitstream with the
most significant bit first, as is required to make them
unambiguous. The effect is that when we read them from
the bitstream we see the bit sequence in reverse order:
the most significant bit of the Huffman code is the least
significant bit of the value we read from the bitstream.
That means that to make our table lookups work, we need
to reverse the bits of CODE. Since reversing bits is
tedious and in general requires using a table, we instead
increment CODE in reverse order. That is, if the number
of bits we are currently using, here named J, is 3, we
count as 000, 100, 010, 110, 001, 101, 011, 111, which is
to say the numbers from 0 to 7 but with the bits
reversed. Going to more bits, aka incrementing J,
effectively just adds more zero bits as the beginning,
and as such does not change the numeric value of CODE.
To increment CODE of length J in reverse order, find the
most significant zero bit and set it to one while
clearing all higher bits. In other words, add 1 modulo
2^J, only reversed. */
incr = 1U << (j - 1);
while ((code & incr) != 0)
incr >>= 1;
if (incr == 0)
code = 0;
else
{
code &= incr - 1;
code += incr;
}
}
}
/* Handle the values that require a secondary table. */
/* Set FIRSTCODE, the number at which the codes start, for each
length. */
for (j = 9; j < 16; j++)
{
unsigned int jcnt;
unsigned int k;
jcnt = count[j];
if (jcnt == 0)
continue;
/* There are JCNT values that have this length, the values
starting from START[j]. Those values are assigned
consecutive values starting at CODE. */
firstcode[j - 9] = code;
/* Reverse add JCNT to CODE modulo 2^J. */
for (k = 0; k < j; ++k)
{
if ((jcnt & (1U << k)) != 0)
{
unsigned int m;
unsigned int bit;
bit = 1U << (j - k - 1);
for (m = 0; m < j - k; ++m, bit >>= 1)
{
if ((code & bit) == 0)
{
code += bit;
break;
}
code &= ~bit;
}
jcnt &= ~(1U << k);
}
}
if (unlikely (jcnt != 0))
{
elf_uncompress_failed ();
return 0;
}
}
/* For J from 9 to 15, inclusive, we store COUNT[J] consecutive
values starting at START[J] with consecutive codes starting at
FIRSTCODE[J - 9]. In the primary table we need to point to the
secondary table, and the secondary table will be indexed by J - 9
bits. We count down from 15 so that we install the larger
secondary tables first, as the smaller ones may be embedded in
the larger ones. */
next_secondary = 0; /* Index of next secondary table (after primary). */
for (j = 15; j >= 9; j--)
{
unsigned int jcnt;
unsigned int val;
size_t primary; /* Current primary index. */
size_t secondary; /* Offset to current secondary table. */
size_t secondary_bits; /* Bit size of current secondary table. */
jcnt = count[j];
if (jcnt == 0)
continue;
val = start[j];
code = firstcode[j - 9];
primary = 0x100;
secondary = 0;
secondary_bits = 0;
for (i = 0; i < jcnt; ++i)
{
uint16_t tval;
size_t ind;
unsigned int incr;
if ((code & 0xff) != primary)
{
uint16_t tprimary;
/* Fill in a new primary table entry. */
primary = code & 0xff;
tprimary = table[primary];
if (tprimary == 0)
{
/* Start a new secondary table. */
if (unlikely ((next_secondary & HUFFMAN_VALUE_MASK)
!= next_secondary))
{
elf_uncompress_failed ();
return 0;
}
secondary = next_secondary;
secondary_bits = j - 8;
next_secondary += 1 << secondary_bits;
table[primary] = (secondary
+ ((j - 8) << HUFFMAN_BITS_SHIFT)
+ (1U << HUFFMAN_SECONDARY_SHIFT));
}
else
{
/* There is an existing entry. It had better be a
secondary table with enough bits. */
if (unlikely ((tprimary & (1U << HUFFMAN_SECONDARY_SHIFT))
== 0))
{
elf_uncompress_failed ();
return 0;
}
secondary = tprimary & HUFFMAN_VALUE_MASK;
secondary_bits = ((tprimary >> HUFFMAN_BITS_SHIFT)
& HUFFMAN_BITS_MASK);
if (unlikely (secondary_bits < j - 8))
{
elf_uncompress_failed ();
return 0;
}
}
}
/* Fill in secondary table entries. */
tval = val | ((j - 8) << HUFFMAN_BITS_SHIFT);
for (ind = code >> 8;
ind < (1U << secondary_bits);
ind += 1U << (j - 8))
{
if (unlikely (table[secondary + 0x100 + ind] != 0))
{
elf_uncompress_failed ();
return 0;
}
table[secondary + 0x100 + ind] = tval;
}
if (i + 1 < jcnt)
val = next[val];
incr = 1U << (j - 1);
while ((code & incr) != 0)
incr >>= 1;
if (incr == 0)
code = 0;
else
{
code &= incr - 1;
code += incr;
}
}
}
#ifdef BACKTRACE_GENERATE_FIXED_HUFFMAN_TABLE
final_next_secondary = next_secondary;
#endif
return 1;
}
#ifdef BACKTRACE_GENERATE_FIXED_HUFFMAN_TABLE
/* Used to generate the fixed Huffman table for block type 1. */
#include <stdio.h>
static uint16_t table[ZDEBUG_TABLE_SIZE];
static unsigned char codes[288];
int
main ()
{
size_t i;
for (i = 0; i <= 143; ++i)
codes[i] = 8;
for (i = 144; i <= 255; ++i)
codes[i] = 9;
for (i = 256; i <= 279; ++i)
codes[i] = 7;
for (i = 280; i <= 287; ++i)
codes[i] = 8;
if (!elf_zlib_inflate_table (&codes[0], 288, &table[0], &table[0]))
{
fprintf (stderr, "elf_zlib_inflate_table failed\n");
exit (EXIT_FAILURE);
}
printf ("static const uint16_t elf_zlib_default_table[%#zx] =\n",
final_next_secondary + 0x100);
printf ("{\n");
for (i = 0; i < final_next_secondary + 0x100; i += 8)
{
size_t j;
printf (" ");
for (j = i; j < final_next_secondary + 0x100 && j < i + 8; ++j)
printf (" %#x,", table[j]);
printf ("\n");
}
printf ("};\n");
printf ("\n");
for (i = 0; i < 32; ++i)
codes[i] = 5;
if (!elf_zlib_inflate_table (&codes[0], 32, &table[0], &table[0]))
{
fprintf (stderr, "elf_zlib_inflate_table failed\n");
exit (EXIT_FAILURE);
}
printf ("static const uint16_t elf_zlib_default_dist_table[%#zx] =\n",
final_next_secondary + 0x100);
printf ("{\n");
for (i = 0; i < final_next_secondary + 0x100; i += 8)
{
size_t j;
printf (" ");
for (j = i; j < final_next_secondary + 0x100 && j < i + 8; ++j)
printf (" %#x,", table[j]);
printf ("\n");
}
printf ("};\n");
return 0;
}
#endif
/* The fixed tables generated by the #ifdef'ed out main function
above. */
static const uint16_t elf_zlib_default_table[0x170] =
{
0xd00, 0xe50, 0xe10, 0xf18, 0xd10, 0xe70, 0xe30, 0x1230,
0xd08, 0xe60, 0xe20, 0x1210, 0xe00, 0xe80, 0xe40, 0x1250,
0xd04, 0xe58, 0xe18, 0x1200, 0xd14, 0xe78, 0xe38, 0x1240,
0xd0c, 0xe68, 0xe28, 0x1220, 0xe08, 0xe88, 0xe48, 0x1260,
0xd02, 0xe54, 0xe14, 0xf1c, 0xd12, 0xe74, 0xe34, 0x1238,
0xd0a, 0xe64, 0xe24, 0x1218, 0xe04, 0xe84, 0xe44, 0x1258,
0xd06, 0xe5c, 0xe1c, 0x1208, 0xd16, 0xe7c, 0xe3c, 0x1248,
0xd0e, 0xe6c, 0xe2c, 0x1228, 0xe0c, 0xe8c, 0xe4c, 0x1268,
0xd01, 0xe52, 0xe12, 0xf1a, 0xd11, 0xe72, 0xe32, 0x1234,
0xd09, 0xe62, 0xe22, 0x1214, 0xe02, 0xe82, 0xe42, 0x1254,
0xd05, 0xe5a, 0xe1a, 0x1204, 0xd15, 0xe7a, 0xe3a, 0x1244,
0xd0d, 0xe6a, 0xe2a, 0x1224, 0xe0a, 0xe8a, 0xe4a, 0x1264,
0xd03, 0xe56, 0xe16, 0xf1e, 0xd13, 0xe76, 0xe36, 0x123c,
0xd0b, 0xe66, 0xe26, 0x121c, 0xe06, 0xe86, 0xe46, 0x125c,
0xd07, 0xe5e, 0xe1e, 0x120c, 0xd17, 0xe7e, 0xe3e, 0x124c,
0xd0f, 0xe6e, 0xe2e, 0x122c, 0xe0e, 0xe8e, 0xe4e, 0x126c,
0xd00, 0xe51, 0xe11, 0xf19, 0xd10, 0xe71, 0xe31, 0x1232,
0xd08, 0xe61, 0xe21, 0x1212, 0xe01, 0xe81, 0xe41, 0x1252,
0xd04, 0xe59, 0xe19, 0x1202, 0xd14, 0xe79, 0xe39, 0x1242,
0xd0c, 0xe69, 0xe29, 0x1222, 0xe09, 0xe89, 0xe49, 0x1262,
0xd02, 0xe55, 0xe15, 0xf1d, 0xd12, 0xe75, 0xe35, 0x123a,
0xd0a, 0xe65, 0xe25, 0x121a, 0xe05, 0xe85, 0xe45, 0x125a,
0xd06, 0xe5d, 0xe1d, 0x120a, 0xd16, 0xe7d, 0xe3d, 0x124a,
0xd0e, 0xe6d, 0xe2d, 0x122a, 0xe0d, 0xe8d, 0xe4d, 0x126a,
0xd01, 0xe53, 0xe13, 0xf1b, 0xd11, 0xe73, 0xe33, 0x1236,
0xd09, 0xe63, 0xe23, 0x1216, 0xe03, 0xe83, 0xe43, 0x1256,
0xd05, 0xe5b, 0xe1b, 0x1206, 0xd15, 0xe7b, 0xe3b, 0x1246,
0xd0d, 0xe6b, 0xe2b, 0x1226, 0xe0b, 0xe8b, 0xe4b, 0x1266,
0xd03, 0xe57, 0xe17, 0xf1f, 0xd13, 0xe77, 0xe37, 0x123e,
0xd0b, 0xe67, 0xe27, 0x121e, 0xe07, 0xe87, 0xe47, 0x125e,
0xd07, 0xe5f, 0xe1f, 0x120e, 0xd17, 0xe7f, 0xe3f, 0x124e,
0xd0f, 0xe6f, 0xe2f, 0x122e, 0xe0f, 0xe8f, 0xe4f, 0x126e,
0x290, 0x291, 0x292, 0x293, 0x294, 0x295, 0x296, 0x297,
0x298, 0x299, 0x29a, 0x29b, 0x29c, 0x29d, 0x29e, 0x29f,
0x2a0, 0x2a1, 0x2a2, 0x2a3, 0x2a4, 0x2a5, 0x2a6, 0x2a7,
0x2a8, 0x2a9, 0x2aa, 0x2ab, 0x2ac, 0x2ad, 0x2ae, 0x2af,
0x2b0, 0x2b1, 0x2b2, 0x2b3, 0x2b4, 0x2b5, 0x2b6, 0x2b7,
0x2b8, 0x2b9, 0x2ba, 0x2bb, 0x2bc, 0x2bd, 0x2be, 0x2bf,
0x2c0, 0x2c1, 0x2c2, 0x2c3, 0x2c4, 0x2c5, 0x2c6, 0x2c7,
0x2c8, 0x2c9, 0x2ca, 0x2cb, 0x2cc, 0x2cd, 0x2ce, 0x2cf,
0x2d0, 0x2d1, 0x2d2, 0x2d3, 0x2d4, 0x2d5, 0x2d6, 0x2d7,
0x2d8, 0x2d9, 0x2da, 0x2db, 0x2dc, 0x2dd, 0x2de, 0x2df,
0x2e0, 0x2e1, 0x2e2, 0x2e3, 0x2e4, 0x2e5, 0x2e6, 0x2e7,
0x2e8, 0x2e9, 0x2ea, 0x2eb, 0x2ec, 0x2ed, 0x2ee, 0x2ef,
0x2f0, 0x2f1, 0x2f2, 0x2f3, 0x2f4, 0x2f5, 0x2f6, 0x2f7,
0x2f8, 0x2f9, 0x2fa, 0x2fb, 0x2fc, 0x2fd, 0x2fe, 0x2ff,
};
static const uint16_t elf_zlib_default_dist_table[0x100] =
{
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
0x800, 0x810, 0x808, 0x818, 0x804, 0x814, 0x80c, 0x81c,
0x802, 0x812, 0x80a, 0x81a, 0x806, 0x816, 0x80e, 0x81e,
0x801, 0x811, 0x809, 0x819, 0x805, 0x815, 0x80d, 0x81d,
0x803, 0x813, 0x80b, 0x81b, 0x807, 0x817, 0x80f, 0x81f,
};
/* Inflate a zlib stream from PIN/SIN to POUT/SOUT. Return 1 on
success, 0 on some error parsing the stream. */
static int
elf_zlib_inflate (const unsigned char *pin, size_t sin, uint16_t *zdebug_table,
unsigned char *pout, size_t sout)
{
unsigned char *porigout;
const unsigned char *pinend;
unsigned char *poutend;
/* We can apparently see multiple zlib streams concatenated
together, so keep going as long as there is something to read.
The last 4 bytes are the checksum. */
porigout = pout;
pinend = pin + sin;
poutend = pout + sout;
while ((pinend - pin) > 4)
{
uint64_t val;
unsigned int bits;
int last;
/* Read the two byte zlib header. */
if (unlikely ((pin[0] & 0xf) != 8)) /* 8 is zlib encoding. */
{
/* Unknown compression method. */
elf_uncompress_failed ();
return 0;
}
if (unlikely ((pin[0] >> 4) > 7))
{
/* Window size too large. Other than this check, we don't
care about the window size. */
elf_uncompress_failed ();
return 0;
}
if (unlikely ((pin[1] & 0x20) != 0))
{
/* Stream expects a predefined dictionary, but we have no
dictionary. */
elf_uncompress_failed ();
return 0;
}
val = (pin[0] << 8) | pin[1];
if (unlikely (val % 31 != 0))
{
/* Header check failure. */
elf_uncompress_failed ();
return 0;
}
pin += 2;
/* Align PIN to a 32-bit boundary. */
val = 0;
bits = 0;
while ((((uintptr_t) pin) & 3) != 0)
{
val |= (uint64_t)*pin << bits;
bits += 8;
++pin;
}
/* Read blocks until one is marked last. */
last = 0;
while (!last)
{
unsigned int type;
const uint16_t *tlit;
const uint16_t *tdist;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
last = val & 1;
type = (val >> 1) & 3;
val >>= 3;
bits -= 3;
if (unlikely (type == 3))
{
/* Invalid block type. */
elf_uncompress_failed ();
return 0;
}
if (type == 0)
{
uint16_t len;
uint16_t lenc;
/* An uncompressed block. */
/* If we've read ahead more than a byte, back up. */
while (bits >= 8)
{
--pin;
bits -= 8;
}
val = 0;
bits = 0;
if (unlikely ((pinend - pin) < 4))
{
/* Missing length. */
elf_uncompress_failed ();
return 0;
}
len = pin[0] | (pin[1] << 8);
lenc = pin[2] | (pin[3] << 8);
pin += 4;
lenc = ~lenc;
if (unlikely (len != lenc))
{
/* Corrupt data. */
elf_uncompress_failed ();
return 0;
}
if (unlikely (len > (unsigned int) (pinend - pin)
|| len > (unsigned int) (poutend - pout)))
{
/* Not enough space in buffers. */
elf_uncompress_failed ();
return 0;
}
memcpy (pout, pin, len);
pout += len;
pin += len;
/* Align PIN. */
while ((((uintptr_t) pin) & 3) != 0)
{
val |= (uint64_t)*pin << bits;
bits += 8;
++pin;
}
/* Go around to read the next block. */
continue;
}
if (type == 1)
{
tlit = elf_zlib_default_table;
tdist = elf_zlib_default_dist_table;
}
else
{
unsigned int nlit;
unsigned int ndist;
unsigned int nclen;
unsigned char codebits[19];
unsigned char *plenbase;
unsigned char *plen;
unsigned char *plenend;
/* Read a Huffman encoding table. The various magic
numbers here are from RFC 1951. */
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
nlit = (val & 0x1f) + 257;
val >>= 5;
ndist = (val & 0x1f) + 1;
val >>= 5;
nclen = (val & 0xf) + 4;
val >>= 4;
bits -= 14;
if (unlikely (nlit > 286 || ndist > 30))
{
/* Values out of range. */
elf_uncompress_failed ();
return 0;
}
/* Read and build the table used to compress the
literal, length, and distance codes. */
memset(&codebits[0], 0, 19);
/* There are always at least 4 elements in the
table. */
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
codebits[16] = val & 7;
codebits[17] = (val >> 3) & 7;
codebits[18] = (val >> 6) & 7;
codebits[0] = (val >> 9) & 7;
val >>= 12;
bits -= 12;
if (nclen == 4)
goto codebitsdone;
codebits[8] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 5)
goto codebitsdone;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
codebits[7] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 6)
goto codebitsdone;
codebits[9] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 7)
goto codebitsdone;
codebits[6] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 8)
goto codebitsdone;
codebits[10] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 9)
goto codebitsdone;
codebits[5] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 10)
goto codebitsdone;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
codebits[11] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 11)
goto codebitsdone;
codebits[4] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 12)
goto codebitsdone;
codebits[12] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 13)
goto codebitsdone;
codebits[3] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 14)
goto codebitsdone;
codebits[13] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 15)
goto codebitsdone;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
codebits[2] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 16)
goto codebitsdone;
codebits[14] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 17)
goto codebitsdone;
codebits[1] = val & 7;
val >>= 3;
bits -= 3;
if (nclen == 18)
goto codebitsdone;
codebits[15] = val & 7;
val >>= 3;
bits -= 3;
codebitsdone:
if (!elf_zlib_inflate_table (codebits, 19, zdebug_table,
zdebug_table))
return 0;
/* Read the compressed bit lengths of the literal,
length, and distance codes. We have allocated space
at the end of zdebug_table to hold them. */
plenbase = (((unsigned char *) zdebug_table)
+ ZDEBUG_TABLE_CODELEN_OFFSET);
plen = plenbase;
plenend = plen + nlit + ndist;
while (plen < plenend)
{
uint16_t t;
unsigned int b;
uint16_t v;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
t = zdebug_table[val & 0xff];
/* The compression here uses bit lengths up to 7, so
a secondary table is never necessary. */
if (unlikely ((t & (1U << HUFFMAN_SECONDARY_SHIFT)) != 0))
{
elf_uncompress_failed ();
return 0;
}
b = (t >> HUFFMAN_BITS_SHIFT) & HUFFMAN_BITS_MASK;
val >>= b + 1;
bits -= b + 1;
v = t & HUFFMAN_VALUE_MASK;
if (v < 16)
*plen++ = v;
else if (v == 16)
{
unsigned int c;
unsigned int prev;
/* Copy previous entry 3 to 6 times. */
if (unlikely (plen == plenbase))
{
elf_uncompress_failed ();
return 0;
}
/* We used up to 7 bits since the last
elf_zlib_fetch, so we have at least 8 bits
available here. */
c = 3 + (val & 0x3);
val >>= 2;
bits -= 2;
if (unlikely ((unsigned int) (plenend - plen) < c))
{
elf_uncompress_failed ();
return 0;
}
prev = plen[-1];
switch (c)
{
case 6:
*plen++ = prev;
ATTRIBUTE_FALLTHROUGH;
case 5:
*plen++ = prev;
ATTRIBUTE_FALLTHROUGH;
case 4:
*plen++ = prev;
}
*plen++ = prev;
*plen++ = prev;
*plen++ = prev;
}
else if (v == 17)
{
unsigned int c;
/* Store zero 3 to 10 times. */
/* We used up to 7 bits since the last
elf_zlib_fetch, so we have at least 8 bits
available here. */
c = 3 + (val & 0x7);
val >>= 3;
bits -= 3;
if (unlikely ((unsigned int) (plenend - plen) < c))
{
elf_uncompress_failed ();
return 0;
}
switch (c)
{
case 10:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 9:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 8:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 7:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 6:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 5:
*plen++ = 0;
ATTRIBUTE_FALLTHROUGH;
case 4:
*plen++ = 0;
}
*plen++ = 0;
*plen++ = 0;
*plen++ = 0;
}
else if (v == 18)
{
unsigned int c;
/* Store zero 11 to 138 times. */
/* We used up to 7 bits since the last
elf_zlib_fetch, so we have at least 8 bits
available here. */
c = 11 + (val & 0x7f);
val >>= 7;
bits -= 7;
if (unlikely ((unsigned int) (plenend - plen) < c))
{
elf_uncompress_failed ();
return 0;
}
memset (plen, 0, c);
plen += c;
}
else
{
elf_uncompress_failed ();
return 0;
}
}
/* Make sure that the stop code can appear. */
plen = plenbase;
if (unlikely (plen[256] == 0))
{
elf_uncompress_failed ();
return 0;
}
/* Build the decompression tables. */
if (!elf_zlib_inflate_table (plen, nlit, zdebug_table,
zdebug_table))
return 0;
if (!elf_zlib_inflate_table (plen + nlit, ndist, zdebug_table,
zdebug_table + HUFFMAN_TABLE_SIZE))
return 0;
tlit = zdebug_table;
tdist = zdebug_table + HUFFMAN_TABLE_SIZE;
}
/* Inflate values until the end of the block. This is the
main loop of the inflation code. */
while (1)
{
uint16_t t;
unsigned int b;
uint16_t v;
unsigned int lit;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
t = tlit[val & 0xff];
b = (t >> HUFFMAN_BITS_SHIFT) & HUFFMAN_BITS_MASK;
v = t & HUFFMAN_VALUE_MASK;
if ((t & (1U << HUFFMAN_SECONDARY_SHIFT)) == 0)
{
lit = v;
val >>= b + 1;
bits -= b + 1;
}
else
{
t = tlit[v + 0x100 + ((val >> 8) & ((1U << b) - 1))];
b = (t >> HUFFMAN_BITS_SHIFT) & HUFFMAN_BITS_MASK;
lit = t & HUFFMAN_VALUE_MASK;
val >>= b + 8;
bits -= b + 8;
}
if (lit < 256)
{
if (unlikely (pout == poutend))
{
elf_uncompress_failed ();
return 0;
}
*pout++ = lit;
/* We will need to write the next byte soon. We ask
for high temporal locality because we will write
to the whole cache line soon. */
__builtin_prefetch (pout, 1, 3);
}
else if (lit == 256)
{
/* The end of the block. */
break;
}
else
{
unsigned int dist;
unsigned int len;
/* Convert lit into a length. */
if (lit < 265)
len = lit - 257 + 3;
else if (lit == 285)
len = 258;
else if (unlikely (lit > 285))
{
elf_uncompress_failed ();
return 0;
}
else
{
unsigned int extra;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
/* This is an expression for the table of length
codes in RFC 1951 3.2.5. */
lit -= 265;
extra = (lit >> 2) + 1;
len = (lit & 3) << extra;
len += 11;
len += ((1U << (extra - 1)) - 1) << 3;
len += val & ((1U << extra) - 1);
val >>= extra;
bits -= extra;
}
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
t = tdist[val & 0xff];
b = (t >> HUFFMAN_BITS_SHIFT) & HUFFMAN_BITS_MASK;
v = t & HUFFMAN_VALUE_MASK;
if ((t & (1U << HUFFMAN_SECONDARY_SHIFT)) == 0)
{
dist = v;
val >>= b + 1;
bits -= b + 1;
}
else
{
t = tdist[v + 0x100 + ((val >> 8) & ((1U << b) - 1))];
b = (t >> HUFFMAN_BITS_SHIFT) & HUFFMAN_BITS_MASK;
dist = t & HUFFMAN_VALUE_MASK;
val >>= b + 8;
bits -= b + 8;
}
/* Convert dist to a distance. */
if (dist == 0)
{
/* A distance of 1. A common case, meaning
repeat the last character LEN times. */
if (unlikely (pout == porigout))
{
elf_uncompress_failed ();
return 0;
}
if (unlikely ((unsigned int) (poutend - pout) < len))
{
elf_uncompress_failed ();
return 0;
}
memset (pout, pout[-1], len);
pout += len;
}
else if (unlikely (dist > 29))
{
elf_uncompress_failed ();
return 0;
}
else
{
if (dist < 4)
dist = dist + 1;
else
{
unsigned int extra;
if (!elf_zlib_fetch (&pin, pinend, &val, &bits))
return 0;
/* This is an expression for the table of
distance codes in RFC 1951 3.2.5. */
dist -= 4;
extra = (dist >> 1) + 1;
dist = (dist & 1) << extra;
dist += 5;
dist += ((1U << (extra - 1)) - 1) << 2;
dist += val & ((1U << extra) - 1);
val >>= extra;
bits -= extra;
}
/* Go back dist bytes, and copy len bytes from
there. */
if (unlikely ((unsigned int) (pout - porigout) < dist))
{
elf_uncompress_failed ();
return 0;
}
if (unlikely ((unsigned int) (poutend - pout) < len))
{
elf_uncompress_failed ();
return 0;
}
if (dist >= len)
{
memcpy (pout, pout - dist, len);
pout += len;
}
else
{
while (len > 0)
{
unsigned int copy;
copy = len < dist ? len : dist;
memcpy (pout, pout - dist, copy);
len -= copy;
pout += copy;
}
}
}
}
}
}
}
/* We should have filled the output buffer. */
if (unlikely (pout != poutend))
{
elf_uncompress_failed ();
return 0;
}
return 1;
}
/* Verify the zlib checksum. The checksum is in the 4 bytes at
CHECKBYTES, and the uncompressed data is at UNCOMPRESSED /
UNCOMPRESSED_SIZE. Returns 1 on success, 0 on failure. */
static int
elf_zlib_verify_checksum (const unsigned char *checkbytes,
const unsigned char *uncompressed,
size_t uncompressed_size)
{
unsigned int i;
unsigned int cksum;
const unsigned char *p;
uint32_t s1;
uint32_t s2;
size_t hsz;
cksum = 0;
for (i = 0; i < 4; i++)
cksum = (cksum << 8) | checkbytes[i];
s1 = 1;
s2 = 0;
/* Minimize modulo operations. */
p = uncompressed;
hsz = uncompressed_size;
while (hsz >= 5552)
{
for (i = 0; i < 5552; i += 16)
{
/* Manually unroll loop 16 times. */
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
}
hsz -= 5552;
s1 %= 65521;
s2 %= 65521;
}
while (hsz >= 16)
{
/* Manually unroll loop 16 times. */
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
s1 = s1 + *p++;
s2 = s2 + s1;
hsz -= 16;
}
for (i = 0; i < hsz; ++i)
{
s1 = s1 + *p++;
s2 = s2 + s1;
}
s1 %= 65521;
s2 %= 65521;
if (unlikely ((s2 << 16) + s1 != cksum))
{
elf_uncompress_failed ();
return 0;
}
return 1;
}
/* Inflate a zlib stream from PIN/SIN to POUT/SOUT, and verify the
checksum. Return 1 on success, 0 on error. */
static int
elf_zlib_inflate_and_verify (const unsigned char *pin, size_t sin,
uint16_t *zdebug_table, unsigned char *pout,
size_t sout)
{
if (!elf_zlib_inflate (pin, sin, zdebug_table, pout, sout))
return 0;
if (!elf_zlib_verify_checksum (pin + sin - 4, pout, sout))
return 0;
return 1;
}
/* Uncompress the old compressed debug format, the one emitted by
--compress-debug-sections=zlib-gnu. The compressed data is in
COMPRESSED / COMPRESSED_SIZE, and the function writes to
*UNCOMPRESSED / *UNCOMPRESSED_SIZE. ZDEBUG_TABLE is work space to
hold Huffman tables. Returns 0 on error, 1 on successful
decompression or if something goes wrong. In general we try to
carry on, by returning 1, even if we can't decompress. */
static int
elf_uncompress_zdebug (struct backtrace_state *state,
const unsigned char *compressed, size_t compressed_size,
uint16_t *zdebug_table,
backtrace_error_callback error_callback, void *data,
unsigned char **uncompressed, size_t *uncompressed_size)
{
size_t sz;
size_t i;
unsigned char *po;
*uncompressed = NULL;
*uncompressed_size = 0;
/* The format starts with the four bytes ZLIB, followed by the 8
byte length of the uncompressed data in big-endian order,
followed by a zlib stream. */
if (compressed_size < 12 || memcmp (compressed, "ZLIB", 4) != 0)
return 1;
sz = 0;
for (i = 0; i < 8; i++)
sz = (sz << 8) | compressed[i + 4];
if (*uncompressed != NULL && *uncompressed_size >= sz)
po = *uncompressed;
else
{
po = (unsigned char *) backtrace_alloc (state, sz, error_callback, data);
if (po == NULL)
return 0;
}
if (!elf_zlib_inflate_and_verify (compressed + 12, compressed_size - 12,
zdebug_table, po, sz))
return 1;
*uncompressed = po;
*uncompressed_size = sz;
return 1;
}
/* Uncompress the new compressed debug format, the official standard
ELF approach emitted by --compress-debug-sections=zlib-gabi. The
compressed data is in COMPRESSED / COMPRESSED_SIZE, and the
function writes to *UNCOMPRESSED / *UNCOMPRESSED_SIZE.
ZDEBUG_TABLE is work space as for elf_uncompress_zdebug. Returns 0
on error, 1 on successful decompression or if something goes wrong.
In general we try to carry on, by returning 1, even if we can't
decompress. */
static int
elf_uncompress_chdr (struct backtrace_state *state,
const unsigned char *compressed, size_t compressed_size,
uint16_t *zdebug_table,
backtrace_error_callback error_callback, void *data,
unsigned char **uncompressed, size_t *uncompressed_size)
{
const b_elf_chdr *chdr;
unsigned char *po;
*uncompressed = NULL;
*uncompressed_size = 0;
/* The format starts with an ELF compression header. */
if (compressed_size < sizeof (b_elf_chdr))
return 1;
chdr = (const b_elf_chdr *) compressed;
if (chdr->ch_type != ELFCOMPRESS_ZLIB)
{
/* Unsupported compression algorithm. */
return 1;
}
if (*uncompressed != NULL && *uncompressed_size >= chdr->ch_size)
po = *uncompressed;
else
{
po = (unsigned char *) backtrace_alloc (state, chdr->ch_size,
error_callback, data);
if (po == NULL)
return 0;
}
if (!elf_zlib_inflate_and_verify (compressed + sizeof (b_elf_chdr),
compressed_size - sizeof (b_elf_chdr),
zdebug_table, po, chdr->ch_size))
return 1;
*uncompressed = po;
*uncompressed_size = chdr->ch_size;
return 1;
}
/* This function is a hook for testing the zlib support. It is only
used by tests. */
int
backtrace_uncompress_zdebug (struct backtrace_state *state,
const unsigned char *compressed,
size_t compressed_size,
backtrace_error_callback error_callback,
void *data, unsigned char **uncompressed,
size_t *uncompressed_size)
{
uint16_t *zdebug_table;
int ret;
zdebug_table = ((uint16_t *) backtrace_alloc (state, ZDEBUG_TABLE_SIZE,
error_callback, data));
if (zdebug_table == NULL)
return 0;
ret = elf_uncompress_zdebug (state, compressed, compressed_size,
zdebug_table, error_callback, data,
uncompressed, uncompressed_size);
backtrace_free (state, zdebug_table, ZDEBUG_TABLE_SIZE,
error_callback, data);
return ret;
}
/* Number of LZMA states. */
#define LZMA_STATES (12)
/* Number of LZMA position states. The pb value of the property byte
is the number of bits to include in these states, and the maximum
value of pb is 4. */
#define LZMA_POS_STATES (16)
/* Number of LZMA distance states. These are used match distances
with a short match length: up to 4 bytes. */
#define LZMA_DIST_STATES (4)
/* Number of LZMA distance slots. LZMA uses six bits to encode larger
match lengths, so 1 << 6 possible probabilities. */
#define LZMA_DIST_SLOTS (64)
/* LZMA distances 0 to 3 are encoded directly, larger values use a
probability model. */
#define LZMA_DIST_MODEL_START (4)
/* The LZMA probability model ends at 14. */
#define LZMA_DIST_MODEL_END (14)
/* LZMA distance slots for distances less than 127. */
#define LZMA_FULL_DISTANCES (128)
/* LZMA uses four alignment bits. */
#define LZMA_ALIGN_SIZE (16)
/* LZMA match length is encoded with 4, 5, or 10 bits, some of which
are already known. */
#define LZMA_LEN_LOW_SYMBOLS (8)
#define LZMA_LEN_MID_SYMBOLS (8)
#define LZMA_LEN_HIGH_SYMBOLS (256)
/* LZMA literal encoding. */
#define LZMA_LITERAL_CODERS_MAX (16)
#define LZMA_LITERAL_CODER_SIZE (0x300)
/* LZMA is based on a large set of probabilities, each managed
independently. Each probability is an 11 bit number that we store
in a uint16_t. We use a single large array of probabilities. */
/* Lengths of entries in the LZMA probabilities array. The names used
here are copied from the Linux kernel implementation. */
#define LZMA_PROB_IS_MATCH_LEN (LZMA_STATES * LZMA_POS_STATES)
#define LZMA_PROB_IS_REP_LEN LZMA_STATES
#define LZMA_PROB_IS_REP0_LEN LZMA_STATES
#define LZMA_PROB_IS_REP1_LEN LZMA_STATES
#define LZMA_PROB_IS_REP2_LEN LZMA_STATES
#define LZMA_PROB_IS_REP0_LONG_LEN (LZMA_STATES * LZMA_POS_STATES)
#define LZMA_PROB_DIST_SLOT_LEN (LZMA_DIST_STATES * LZMA_DIST_SLOTS)
#define LZMA_PROB_DIST_SPECIAL_LEN (LZMA_FULL_DISTANCES - LZMA_DIST_MODEL_END)
#define LZMA_PROB_DIST_ALIGN_LEN LZMA_ALIGN_SIZE
#define LZMA_PROB_MATCH_LEN_CHOICE_LEN 1
#define LZMA_PROB_MATCH_LEN_CHOICE2_LEN 1
#define LZMA_PROB_MATCH_LEN_LOW_LEN (LZMA_POS_STATES * LZMA_LEN_LOW_SYMBOLS)
#define LZMA_PROB_MATCH_LEN_MID_LEN (LZMA_POS_STATES * LZMA_LEN_MID_SYMBOLS)
#define LZMA_PROB_MATCH_LEN_HIGH_LEN LZMA_LEN_HIGH_SYMBOLS
#define LZMA_PROB_REP_LEN_CHOICE_LEN 1
#define LZMA_PROB_REP_LEN_CHOICE2_LEN 1
#define LZMA_PROB_REP_LEN_LOW_LEN (LZMA_POS_STATES * LZMA_LEN_LOW_SYMBOLS)
#define LZMA_PROB_REP_LEN_MID_LEN (LZMA_POS_STATES * LZMA_LEN_MID_SYMBOLS)
#define LZMA_PROB_REP_LEN_HIGH_LEN LZMA_LEN_HIGH_SYMBOLS
#define LZMA_PROB_LITERAL_LEN \
(LZMA_LITERAL_CODERS_MAX * LZMA_LITERAL_CODER_SIZE)
/* Offsets into the LZMA probabilities array. This is mechanically
generated from the above lengths. */
#define LZMA_PROB_IS_MATCH_OFFSET 0
#define LZMA_PROB_IS_REP_OFFSET \
(LZMA_PROB_IS_MATCH_OFFSET + LZMA_PROB_IS_MATCH_LEN)
#define LZMA_PROB_IS_REP0_OFFSET \
(LZMA_PROB_IS_REP_OFFSET + LZMA_PROB_IS_REP_LEN)
#define LZMA_PROB_IS_REP1_OFFSET \
(LZMA_PROB_IS_REP0_OFFSET + LZMA_PROB_IS_REP0_LEN)
#define LZMA_PROB_IS_REP2_OFFSET \
(LZMA_PROB_IS_REP1_OFFSET + LZMA_PROB_IS_REP1_LEN)
#define LZMA_PROB_IS_REP0_LONG_OFFSET \
(LZMA_PROB_IS_REP2_OFFSET + LZMA_PROB_IS_REP2_LEN)
#define LZMA_PROB_DIST_SLOT_OFFSET \
(LZMA_PROB_IS_REP0_LONG_OFFSET + LZMA_PROB_IS_REP0_LONG_LEN)
#define LZMA_PROB_DIST_SPECIAL_OFFSET \
(LZMA_PROB_DIST_SLOT_OFFSET + LZMA_PROB_DIST_SLOT_LEN)
#define LZMA_PROB_DIST_ALIGN_OFFSET \
(LZMA_PROB_DIST_SPECIAL_OFFSET + LZMA_PROB_DIST_SPECIAL_LEN)
#define LZMA_PROB_MATCH_LEN_CHOICE_OFFSET \
(LZMA_PROB_DIST_ALIGN_OFFSET + LZMA_PROB_DIST_ALIGN_LEN)
#define LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET \
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET + LZMA_PROB_MATCH_LEN_CHOICE_LEN)
#define LZMA_PROB_MATCH_LEN_LOW_OFFSET \
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET + LZMA_PROB_MATCH_LEN_CHOICE2_LEN)
#define LZMA_PROB_MATCH_LEN_MID_OFFSET \
(LZMA_PROB_MATCH_LEN_LOW_OFFSET + LZMA_PROB_MATCH_LEN_LOW_LEN)
#define LZMA_PROB_MATCH_LEN_HIGH_OFFSET \
(LZMA_PROB_MATCH_LEN_MID_OFFSET + LZMA_PROB_MATCH_LEN_MID_LEN)
#define LZMA_PROB_REP_LEN_CHOICE_OFFSET \
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET + LZMA_PROB_MATCH_LEN_HIGH_LEN)
#define LZMA_PROB_REP_LEN_CHOICE2_OFFSET \
(LZMA_PROB_REP_LEN_CHOICE_OFFSET + LZMA_PROB_REP_LEN_CHOICE_LEN)
#define LZMA_PROB_REP_LEN_LOW_OFFSET \
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET + LZMA_PROB_REP_LEN_CHOICE2_LEN)
#define LZMA_PROB_REP_LEN_MID_OFFSET \
(LZMA_PROB_REP_LEN_LOW_OFFSET + LZMA_PROB_REP_LEN_LOW_LEN)
#define LZMA_PROB_REP_LEN_HIGH_OFFSET \
(LZMA_PROB_REP_LEN_MID_OFFSET + LZMA_PROB_REP_LEN_MID_LEN)
#define LZMA_PROB_LITERAL_OFFSET \
(LZMA_PROB_REP_LEN_HIGH_OFFSET + LZMA_PROB_REP_LEN_HIGH_LEN)
#define LZMA_PROB_TOTAL_COUNT \
(LZMA_PROB_LITERAL_OFFSET + LZMA_PROB_LITERAL_LEN)
/* Check that the number of LZMA probabilities is the same as the
Linux kernel implementation. */
#if LZMA_PROB_TOTAL_COUNT != 1846 + (1 << 4) * 0x300
#error Wrong number of LZMA probabilities
#endif
/* Expressions for the offset in the LZMA probabilities array of a
specific probability. */
#define LZMA_IS_MATCH(state, pos) \
(LZMA_PROB_IS_MATCH_OFFSET + (state) * LZMA_POS_STATES + (pos))
#define LZMA_IS_REP(state) \
(LZMA_PROB_IS_REP_OFFSET + (state))
#define LZMA_IS_REP0(state) \
(LZMA_PROB_IS_REP0_OFFSET + (state))
#define LZMA_IS_REP1(state) \
(LZMA_PROB_IS_REP1_OFFSET + (state))
#define LZMA_IS_REP2(state) \
(LZMA_PROB_IS_REP2_OFFSET + (state))
#define LZMA_IS_REP0_LONG(state, pos) \
(LZMA_PROB_IS_REP0_LONG_OFFSET + (state) * LZMA_POS_STATES + (pos))
#define LZMA_DIST_SLOT(dist, slot) \
(LZMA_PROB_DIST_SLOT_OFFSET + (dist) * LZMA_DIST_SLOTS + (slot))
#define LZMA_DIST_SPECIAL(dist) \
(LZMA_PROB_DIST_SPECIAL_OFFSET + (dist))
#define LZMA_DIST_ALIGN(dist) \
(LZMA_PROB_DIST_ALIGN_OFFSET + (dist))
#define LZMA_MATCH_LEN_CHOICE \
LZMA_PROB_MATCH_LEN_CHOICE_OFFSET
#define LZMA_MATCH_LEN_CHOICE2 \
LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET
#define LZMA_MATCH_LEN_LOW(pos, sym) \
(LZMA_PROB_MATCH_LEN_LOW_OFFSET + (pos) * LZMA_LEN_LOW_SYMBOLS + (sym))
#define LZMA_MATCH_LEN_MID(pos, sym) \
(LZMA_PROB_MATCH_LEN_MID_OFFSET + (pos) * LZMA_LEN_MID_SYMBOLS + (sym))
#define LZMA_MATCH_LEN_HIGH(sym) \
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET + (sym))
#define LZMA_REP_LEN_CHOICE \
LZMA_PROB_REP_LEN_CHOICE_OFFSET
#define LZMA_REP_LEN_CHOICE2 \
LZMA_PROB_REP_LEN_CHOICE2_OFFSET
#define LZMA_REP_LEN_LOW(pos, sym) \
(LZMA_PROB_REP_LEN_LOW_OFFSET + (pos) * LZMA_LEN_LOW_SYMBOLS + (sym))
#define LZMA_REP_LEN_MID(pos, sym) \
(LZMA_PROB_REP_LEN_MID_OFFSET + (pos) * LZMA_LEN_MID_SYMBOLS + (sym))
#define LZMA_REP_LEN_HIGH(sym) \
(LZMA_PROB_REP_LEN_HIGH_OFFSET + (sym))
#define LZMA_LITERAL(code, size) \
(LZMA_PROB_LITERAL_OFFSET + (code) * LZMA_LITERAL_CODER_SIZE + (size))
/* Read an LZMA varint from BUF, reading and updating *POFFSET,
setting *VAL. Returns 0 on error, 1 on success. */
static int
elf_lzma_varint (const unsigned char *compressed, size_t compressed_size,
size_t *poffset, uint64_t *val)
{
size_t off;
int i;
uint64_t v;
unsigned char b;
off = *poffset;
i = 0;
v = 0;
while (1)
{
if (unlikely (off >= compressed_size))
{
elf_uncompress_failed ();
return 0;
}
b = compressed[off];
v |= (b & 0x7f) << (i * 7);
++off;
if ((b & 0x80) == 0)
{
*poffset = off;
*val = v;
return 1;
}
++i;
if (unlikely (i >= 9))
{
elf_uncompress_failed ();
return 0;
}
}
}
/* Normalize the LZMA range decoder, pulling in an extra input byte if
needed. */
static void
elf_lzma_range_normalize (const unsigned char *compressed,
size_t compressed_size, size_t *poffset,
uint32_t *prange, uint32_t *pcode)
{
if (*prange < (1U << 24))
{
if (unlikely (*poffset >= compressed_size))
{
/* We assume this will be caught elsewhere. */
elf_uncompress_failed ();
return;
}
*prange <<= 8;
*pcode <<= 8;
*pcode += compressed[*poffset];
++*poffset;
}
}
/* Read and return a single bit from the LZMA stream, reading and
updating *PROB. Each bit comes from the range coder. */
static int
elf_lzma_bit (const unsigned char *compressed, size_t compressed_size,
uint16_t *prob, size_t *poffset, uint32_t *prange,
uint32_t *pcode)
{
uint32_t bound;
elf_lzma_range_normalize (compressed, compressed_size, poffset,
prange, pcode);
bound = (*prange >> 11) * (uint32_t) *prob;
if (*pcode < bound)
{
*prange = bound;
*prob += ((1U << 11) - *prob) >> 5;
return 0;
}
else
{
*prange -= bound;
*pcode -= bound;
*prob -= *prob >> 5;
return 1;
}
}
/* Read an integer of size BITS from the LZMA stream, most significant
bit first. The bits are predicted using PROBS. */
static uint32_t
elf_lzma_integer (const unsigned char *compressed, size_t compressed_size,
uint16_t *probs, uint32_t bits, size_t *poffset,
uint32_t *prange, uint32_t *pcode)
{
uint32_t sym;
uint32_t i;
sym = 1;
for (i = 0; i < bits; i++)
{
int bit;
bit = elf_lzma_bit (compressed, compressed_size, probs + sym, poffset,
prange, pcode);
sym <<= 1;
sym += bit;
}
return sym - (1 << bits);
}
/* Read an integer of size BITS from the LZMA stream, least
significant bit first. The bits are predicted using PROBS. */
static uint32_t
elf_lzma_reverse_integer (const unsigned char *compressed,
size_t compressed_size, uint16_t *probs,
uint32_t bits, size_t *poffset, uint32_t *prange,
uint32_t *pcode)
{
uint32_t sym;
uint32_t val;
uint32_t i;
sym = 1;
val = 0;
for (i = 0; i < bits; i++)
{
int bit;
bit = elf_lzma_bit (compressed, compressed_size, probs + sym, poffset,
prange, pcode);
sym <<= 1;
sym += bit;
val += bit << i;
}
return val;
}
/* Read a length from the LZMA stream. IS_REP picks either LZMA_MATCH
or LZMA_REP probabilities. */
static uint32_t
elf_lzma_len (const unsigned char *compressed, size_t compressed_size,
uint16_t *probs, int is_rep, unsigned int pos_state,
size_t *poffset, uint32_t *prange, uint32_t *pcode)
{
uint16_t *probs_choice;
uint16_t *probs_sym;
uint32_t bits;
uint32_t len;
probs_choice = probs + (is_rep
? LZMA_REP_LEN_CHOICE
: LZMA_MATCH_LEN_CHOICE);
if (elf_lzma_bit (compressed, compressed_size, probs_choice, poffset,
prange, pcode))
{
probs_choice = probs + (is_rep
? LZMA_REP_LEN_CHOICE2
: LZMA_MATCH_LEN_CHOICE2);
if (elf_lzma_bit (compressed, compressed_size, probs_choice,
poffset, prange, pcode))
{
probs_sym = probs + (is_rep
? LZMA_REP_LEN_HIGH (0)
: LZMA_MATCH_LEN_HIGH (0));
bits = 8;
len = 2 + 8 + 8;
}
else
{
probs_sym = probs + (is_rep
? LZMA_REP_LEN_MID (pos_state, 0)
: LZMA_MATCH_LEN_MID (pos_state, 0));
bits = 3;
len = 2 + 8;
}
}
else
{
probs_sym = probs + (is_rep
? LZMA_REP_LEN_LOW (pos_state, 0)
: LZMA_MATCH_LEN_LOW (pos_state, 0));
bits = 3;
len = 2;
}
len += elf_lzma_integer (compressed, compressed_size, probs_sym, bits,
poffset, prange, pcode);
return len;
}
/* Uncompress one LZMA block from a minidebug file. The compressed
data is at COMPRESSED + *POFFSET. Update *POFFSET. Store the data
into the memory at UNCOMPRESSED, size UNCOMPRESSED_SIZE. CHECK is
the stream flag from the xz header. Return 1 on successful
decompression. */
static int
elf_uncompress_lzma_block (const unsigned char *compressed,
size_t compressed_size, unsigned char check,
uint16_t *probs, unsigned char *uncompressed,
size_t uncompressed_size, size_t *poffset)
{
size_t off;
size_t block_header_offset;
size_t block_header_size;
unsigned char block_flags;
uint64_t header_compressed_size;
uint64_t header_uncompressed_size;
unsigned char lzma2_properties;
uint32_t computed_crc;
uint32_t stream_crc;
size_t uncompressed_offset;
size_t dict_start_offset;
unsigned int lc;
unsigned int lp;
unsigned int pb;
uint32_t range;
uint32_t code;
uint32_t lstate;
uint32_t dist[4];
off = *poffset;
block_header_offset = off;
/* Block header size is a single byte. */
if (unlikely (off >= compressed_size))
{
elf_uncompress_failed ();
return 0;
}
block_header_size = (compressed[off] + 1) * 4;
if (unlikely (off + block_header_size > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
/* Block flags. */
block_flags = compressed[off + 1];
if (unlikely ((block_flags & 0x3c) != 0))
{
elf_uncompress_failed ();
return 0;
}
off += 2;
/* Optional compressed size. */
header_compressed_size = 0;
if ((block_flags & 0x40) != 0)
{
*poffset = off;
if (!elf_lzma_varint (compressed, compressed_size, poffset,
&header_compressed_size))
return 0;
off = *poffset;
}
/* Optional uncompressed size. */
header_uncompressed_size = 0;
if ((block_flags & 0x80) != 0)
{
*poffset = off;
if (!elf_lzma_varint (compressed, compressed_size, poffset,
&header_uncompressed_size))
return 0;
off = *poffset;
}
/* The recipe for creating a minidebug file is to run the xz program
with no arguments, so we expect exactly one filter: lzma2. */
if (unlikely ((block_flags & 0x3) != 0))
{
elf_uncompress_failed ();
return 0;
}
if (unlikely (off + 2 >= block_header_offset + block_header_size))
{
elf_uncompress_failed ();
return 0;
}
/* The filter ID for LZMA2 is 0x21. */
if (unlikely (compressed[off] != 0x21))
{
elf_uncompress_failed ();
return 0;
}
++off;
/* The size of the filter properties for LZMA2 is 1. */
if (unlikely (compressed[off] != 1))
{
elf_uncompress_failed ();
return 0;
}
++off;
lzma2_properties = compressed[off];
++off;
if (unlikely (lzma2_properties > 40))
{
elf_uncompress_failed ();
return 0;
}
/* The properties describe the dictionary size, but we don't care
what that is. */
/* Block header padding. */
if (unlikely (off + 4 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
off = (off + 3) &~ (size_t) 3;
if (unlikely (off + 4 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
/* Block header CRC. */
computed_crc = elf_crc32 (0, compressed + block_header_offset,
block_header_size - 4);
stream_crc = (compressed[off]
| (compressed[off + 1] << 8)
| (compressed[off + 2] << 16)
| (compressed[off + 3] << 24));
if (unlikely (computed_crc != stream_crc))
{
elf_uncompress_failed ();
return 0;
}
off += 4;
/* Read a sequence of LZMA2 packets. */
uncompressed_offset = 0;
dict_start_offset = 0;
lc = 0;
lp = 0;
pb = 0;
lstate = 0;
while (off < compressed_size)
{
unsigned char control;
range = 0xffffffff;
code = 0;
control = compressed[off];
++off;
if (unlikely (control == 0))
{
/* End of packets. */
break;
}
if (control == 1 || control >= 0xe0)
{
/* Reset dictionary to empty. */
dict_start_offset = uncompressed_offset;
}
if (control < 0x80)
{
size_t chunk_size;
/* The only valid values here are 1 or 2. A 1 means to
reset the dictionary (done above). Then we see an
uncompressed chunk. */
if (unlikely (control > 2))
{
elf_uncompress_failed ();
return 0;
}
/* An uncompressed chunk is a two byte size followed by
data. */
if (unlikely (off + 2 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
chunk_size = compressed[off] << 8;
chunk_size += compressed[off + 1];
++chunk_size;
off += 2;
if (unlikely (off + chunk_size > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
if (unlikely (uncompressed_offset + chunk_size > uncompressed_size))
{
elf_uncompress_failed ();
return 0;
}
memcpy (uncompressed + uncompressed_offset, compressed + off,
chunk_size);
uncompressed_offset += chunk_size;
off += chunk_size;
}
else
{
size_t uncompressed_chunk_start;
size_t uncompressed_chunk_size;
size_t compressed_chunk_size;
size_t limit;
/* An LZMA chunk. This starts with an uncompressed size and
a compressed size. */
if (unlikely (off + 4 >= compressed_size))
{
elf_uncompress_failed ();
return 0;
}
uncompressed_chunk_start = uncompressed_offset;
uncompressed_chunk_size = (control & 0x1f) << 16;
uncompressed_chunk_size += compressed[off] << 8;
uncompressed_chunk_size += compressed[off + 1];
++uncompressed_chunk_size;
compressed_chunk_size = compressed[off + 2] << 8;
compressed_chunk_size += compressed[off + 3];
++compressed_chunk_size;
off += 4;
/* Bit 7 (0x80) is set.
Bits 6 and 5 (0x40 and 0x20) are as follows:
0: don't reset anything
1: reset state
2: reset state, read properties
3: reset state, read properties, reset dictionary (done above) */
if (control >= 0xc0)
{
unsigned char props;
/* Bit 6 is set, read properties. */
if (unlikely (off >= compressed_size))
{
elf_uncompress_failed ();
return 0;
}
props = compressed[off];
++off;
if (unlikely (props > (4 * 5 + 4) * 9 + 8))
{
elf_uncompress_failed ();
return 0;
}
pb = 0;
while (props >= 9 * 5)
{
props -= 9 * 5;
++pb;
}
lp = 0;
while (props > 9)
{
props -= 9;
++lp;
}
lc = props;
if (unlikely (lc + lp > 4))
{
elf_uncompress_failed ();
return 0;
}
}
if (control >= 0xa0)
{
size_t i;
/* Bit 5 or 6 is set, reset LZMA state. */
lstate = 0;
memset (&dist, 0, sizeof dist);
for (i = 0; i < LZMA_PROB_TOTAL_COUNT; i++)
probs[i] = 1 << 10;
range = 0xffffffff;
code = 0;
}
/* Read the range code. */
if (unlikely (off + 5 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
/* The byte at compressed[off] is ignored for some
reason. */
code = ((compressed[off + 1] << 24)
+ (compressed[off + 2] << 16)
+ (compressed[off + 3] << 8)
+ compressed[off + 4]);
off += 5;
/* This is the main LZMA decode loop. */
limit = off + compressed_chunk_size;
*poffset = off;
while (*poffset < limit)
{
unsigned int pos_state;
if (unlikely (uncompressed_offset
== (uncompressed_chunk_start
+ uncompressed_chunk_size)))
{
/* We've decompressed all the expected bytes. */
break;
}
pos_state = ((uncompressed_offset - dict_start_offset)
& ((1 << pb) - 1));
if (elf_lzma_bit (compressed, compressed_size,
probs + LZMA_IS_MATCH (lstate, pos_state),
poffset, &range, &code))
{
uint32_t len;
if (elf_lzma_bit (compressed, compressed_size,
probs + LZMA_IS_REP (lstate),
poffset, &range, &code))
{
int short_rep;
uint32_t next_dist;
/* Repeated match. */
short_rep = 0;
if (elf_lzma_bit (compressed, compressed_size,
probs + LZMA_IS_REP0 (lstate),
poffset, &range, &code))
{
if (elf_lzma_bit (compressed, compressed_size,
probs + LZMA_IS_REP1 (lstate),
poffset, &range, &code))
{
if (elf_lzma_bit (compressed, compressed_size,
probs + LZMA_IS_REP2 (lstate),
poffset, &range, &code))
{
next_dist = dist[3];
dist[3] = dist[2];
}
else
{
next_dist = dist[2];
}
dist[2] = dist[1];
}
else
{
next_dist = dist[1];
}
dist[1] = dist[0];
dist[0] = next_dist;
}
else
{
if (!elf_lzma_bit (compressed, compressed_size,
(probs
+ LZMA_IS_REP0_LONG (lstate,
pos_state)),
poffset, &range, &code))
short_rep = 1;
}
if (lstate < 7)
lstate = short_rep ? 9 : 8;
else
lstate = 11;
if (short_rep)
len = 1;
else
len = elf_lzma_len (compressed, compressed_size,
probs, 1, pos_state, poffset,
&range, &code);
}
else
{
uint32_t dist_state;
uint32_t dist_slot;
uint16_t *probs_dist;
/* Match. */
if (lstate < 7)
lstate = 7;
else
lstate = 10;
dist[3] = dist[2];
dist[2] = dist[1];
dist[1] = dist[0];
len = elf_lzma_len (compressed, compressed_size,
probs, 0, pos_state, poffset,
&range, &code);
if (len < 4 + 2)
dist_state = len - 2;
else
dist_state = 3;
probs_dist = probs + LZMA_DIST_SLOT (dist_state, 0);
dist_slot = elf_lzma_integer (compressed,
compressed_size,
probs_dist, 6,
poffset, &range,
&code);
if (dist_slot < LZMA_DIST_MODEL_START)
dist[0] = dist_slot;
else
{
uint32_t limit;
limit = (dist_slot >> 1) - 1;
dist[0] = 2 + (dist_slot & 1);
if (dist_slot < LZMA_DIST_MODEL_END)
{
dist[0] <<= limit;
probs_dist = (probs
+ LZMA_DIST_SPECIAL(dist[0]
- dist_slot
- 1));
dist[0] +=
elf_lzma_reverse_integer (compressed,
compressed_size,
probs_dist,
limit, poffset,
&range, &code);
}
else
{
uint32_t dist0;
uint32_t i;
dist0 = dist[0];
for (i = 0; i < limit - 4; i++)
{
uint32_t mask;
elf_lzma_range_normalize (compressed,
compressed_size,
poffset,
&range, &code);
range >>= 1;
code -= range;
mask = -(code >> 31);
code += range & mask;
dist0 <<= 1;
dist0 += mask + 1;
}
dist0 <<= 4;
probs_dist = probs + LZMA_DIST_ALIGN (0);
dist0 +=
elf_lzma_reverse_integer (compressed,
compressed_size,
probs_dist, 4,
poffset,
&range, &code);
dist[0] = dist0;
}
}
}
if (unlikely (uncompressed_offset
- dict_start_offset < dist[0] + 1))
{
elf_uncompress_failed ();
return 0;
}
if (unlikely (uncompressed_offset + len > uncompressed_size))
{
elf_uncompress_failed ();
return 0;
}
if (dist[0] == 0)
{
/* A common case, meaning repeat the last
character LEN times. */
memset (uncompressed + uncompressed_offset,
uncompressed[uncompressed_offset - 1],
len);
uncompressed_offset += len;
}
else if (dist[0] + 1 >= len)
{
memcpy (uncompressed + uncompressed_offset,
uncompressed + uncompressed_offset - dist[0] - 1,
len);
uncompressed_offset += len;
}
else
{
while (len > 0)
{
uint32_t copy;
copy = len < dist[0] + 1 ? len : dist[0] + 1;
memcpy (uncompressed + uncompressed_offset,
(uncompressed + uncompressed_offset
- dist[0] - 1),
copy);
len -= copy;
uncompressed_offset += copy;
}
}
}
else
{
unsigned char prev;
unsigned char low;
size_t high;
uint16_t *lit_probs;
unsigned int sym;
/* Literal value. */
if (uncompressed_offset > 0)
prev = uncompressed[uncompressed_offset - 1];
else
prev = 0;
low = prev >> (8 - lc);
high = (((uncompressed_offset - dict_start_offset)
& ((1 << lp) - 1))
<< lc);
lit_probs = probs + LZMA_LITERAL (low + high, 0);
if (lstate < 7)
sym = elf_lzma_integer (compressed, compressed_size,
lit_probs, 8, poffset, &range,
&code);
else
{
unsigned int match;
unsigned int bit;
unsigned int match_bit;
unsigned int idx;
sym = 1;
if (uncompressed_offset >= dist[0] + 1)
match = uncompressed[uncompressed_offset - dist[0] - 1];
else
match = 0;
match <<= 1;
bit = 0x100;
do
{
match_bit = match & bit;
match <<= 1;
idx = bit + match_bit + sym;
sym <<= 1;
if (elf_lzma_bit (compressed, compressed_size,
lit_probs + idx, poffset,
&range, &code))
{
++sym;
bit &= match_bit;
}
else
{
bit &= ~ match_bit;
}
}
while (sym < 0x100);
}
if (unlikely (uncompressed_offset >= uncompressed_size))
{
elf_uncompress_failed ();
return 0;
}
uncompressed[uncompressed_offset] = (unsigned char) sym;
++uncompressed_offset;
if (lstate <= 3)
lstate = 0;
else if (lstate <= 9)
lstate -= 3;
else
lstate -= 6;
}
}
elf_lzma_range_normalize (compressed, compressed_size, poffset,
&range, &code);
off = *poffset;
}
}
/* We have reached the end of the block. Pad to four byte
boundary. */
off = (off + 3) &~ (size_t) 3;
if (unlikely (off > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
switch (check)
{
case 0:
/* No check. */
break;
case 1:
/* CRC32 */
if (unlikely (off + 4 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
computed_crc = elf_crc32 (0, uncompressed, uncompressed_offset);
stream_crc = (compressed[off]
| (compressed[off + 1] << 8)
| (compressed[off + 2] << 16)
| (compressed[off + 3] << 24));
if (computed_crc != stream_crc)
{
elf_uncompress_failed ();
return 0;
}
off += 4;
break;
case 4:
/* CRC64. We don't bother computing a CRC64 checksum. */
if (unlikely (off + 8 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
off += 8;
break;
case 10:
/* SHA. We don't bother computing a SHA checksum. */
if (unlikely (off + 32 > compressed_size))
{
elf_uncompress_failed ();
return 0;
}
off += 32;
break;
default:
elf_uncompress_failed ();
return 0;
}
*poffset = off;
return 1;
}
/* Uncompress LZMA data found in a minidebug file. The minidebug
format is described at
https://sourceware.org/gdb/current/onlinedocs/gdb/MiniDebugInfo.html.
Returns 0 on error, 1 on successful decompression. For this
function we return 0 on failure to decompress, as the calling code
will carry on in that case. */
static int
elf_uncompress_lzma (struct backtrace_state *state,
const unsigned char *compressed, size_t compressed_size,
backtrace_error_callback error_callback, void *data,
unsigned char **uncompressed, size_t *uncompressed_size)
{
size_t header_size;
size_t footer_size;
unsigned char check;
uint32_t computed_crc;
uint32_t stream_crc;
size_t offset;
size_t index_size;
size_t footer_offset;
size_t index_offset;
uint64_t index_compressed_size;
uint64_t index_uncompressed_size;
unsigned char *mem;
uint16_t *probs;
size_t compressed_block_size;
/* The format starts with a stream header and ends with a stream
footer. */
header_size = 12;
footer_size = 12;
if (unlikely (compressed_size < header_size + footer_size))
{
elf_uncompress_failed ();
return 0;
}
/* The stream header starts with a magic string. */
if (unlikely (memcmp (compressed, "\375" "7zXZ\0", 6) != 0))
{
elf_uncompress_failed ();
return 0;
}
/* Next come stream flags. The first byte is zero, the second byte
is the check. */
if (unlikely (compressed[6] != 0))
{
elf_uncompress_failed ();
return 0;
}
check = compressed[7];
if (unlikely ((check & 0xf8) != 0))
{
elf_uncompress_failed ();
return 0;
}
/* Next comes a CRC of the stream flags. */
computed_crc = elf_crc32 (0, compressed + 6, 2);
stream_crc = (compressed[8]
| (compressed[9] << 8)
| (compressed[10] << 16)
| (compressed[11] << 24));
if (unlikely (computed_crc != stream_crc))
{
elf_uncompress_failed ();
return 0;
}
/* Now that we've parsed the header, parse the footer, so that we
can get the uncompressed size. */
/* The footer ends with two magic bytes. */
offset = compressed_size;
if (unlikely (memcmp (compressed + offset - 2, "YZ", 2) != 0))
{
elf_uncompress_failed ();
return 0;
}
offset -= 2;
/* Before that are the stream flags, which should be the same as the
flags in the header. */
if (unlikely (compressed[offset - 2] != 0
|| compressed[offset - 1] != check))
{
elf_uncompress_failed ();
return 0;
}
offset -= 2;
/* Before that is the size of the index field, which precedes the
footer. */
index_size = (compressed[offset - 4]
| (compressed[offset - 3] << 8)
| (compressed[offset - 2] << 16)
| (compressed[offset - 1] << 24));
index_size = (index_size + 1) * 4;
offset -= 4;
/* Before that is a footer CRC. */
computed_crc = elf_crc32 (0, compressed + offset, 6);
stream_crc = (compressed[offset - 4]
| (compressed[offset - 3] << 8)
| (compressed[offset - 2] << 16)
| (compressed[offset - 1] << 24));
if (unlikely (computed_crc != stream_crc))
{
elf_uncompress_failed ();
return 0;
}
offset -= 4;
/* The index comes just before the footer. */
if (unlikely (offset < index_size + header_size))
{
elf_uncompress_failed ();
return 0;
}
footer_offset = offset;
offset -= index_size;
index_offset = offset;
/* The index starts with a zero byte. */
if (unlikely (compressed[offset] != 0))
{
elf_uncompress_failed ();
return 0;
}
++offset;
/* Next is the number of blocks. We expect zero blocks for an empty
stream, and otherwise a single block. */
if (unlikely (compressed[offset] == 0))
{
*uncompressed = NULL;
*uncompressed_size = 0;
return 1;
}
if (unlikely (compressed[offset] != 1))
{
elf_uncompress_failed ();
return 0;
}
++offset;
/* Next is the compressed size and the uncompressed size. */
if (!elf_lzma_varint (compressed, compressed_size, &offset,
&index_compressed_size))
return 0;
if (!elf_lzma_varint (compressed, compressed_size, &offset,
&index_uncompressed_size))
return 0;
/* Pad to a four byte boundary. */
offset = (offset + 3) &~ (size_t) 3;
/* Next is a CRC of the index. */
computed_crc = elf_crc32 (0, compressed + index_offset,
offset - index_offset);
stream_crc = (compressed[offset]
| (compressed[offset + 1] << 8)
| (compressed[offset + 2] << 16)
| (compressed[offset + 3] << 24));
if (unlikely (computed_crc != stream_crc))
{
elf_uncompress_failed ();
return 0;
}
offset += 4;
/* We should now be back at the footer. */
if (unlikely (offset != footer_offset))
{
elf_uncompress_failed ();
return 0;
}
/* Allocate space to hold the uncompressed data. If we succeed in
uncompressing the LZMA data, we never free this memory. */
mem = (unsigned char *) backtrace_alloc (state, index_uncompressed_size,
error_callback, data);
if (unlikely (mem == NULL))
return 0;
*uncompressed = mem;
*uncompressed_size = index_uncompressed_size;
/* Allocate space for probabilities. */
probs = ((uint16_t *)
backtrace_alloc (state,
LZMA_PROB_TOTAL_COUNT * sizeof (uint16_t),
error_callback, data));
if (unlikely (probs == NULL))
{
backtrace_free (state, mem, index_uncompressed_size, error_callback,
data);
return 0;
}
/* Uncompress the block, which follows the header. */
offset = 12;
if (!elf_uncompress_lzma_block (compressed, compressed_size, check, probs,
mem, index_uncompressed_size, &offset))
{
backtrace_free (state, mem, index_uncompressed_size, error_callback,
data);
return 0;
}
compressed_block_size = offset - 12;
if (unlikely (compressed_block_size
!= ((index_compressed_size + 3) &~ (size_t) 3)))
{
elf_uncompress_failed ();
backtrace_free (state, mem, index_uncompressed_size, error_callback,
data);
return 0;
}
offset = (offset + 3) &~ (size_t) 3;
if (unlikely (offset != index_offset))
{
elf_uncompress_failed ();
backtrace_free (state, mem, index_uncompressed_size, error_callback,
data);
return 0;
}
return 1;
}
/* This function is a hook for testing the LZMA support. It is only
used by tests. */
int
backtrace_uncompress_lzma (struct backtrace_state *state,
const unsigned char *compressed,
size_t compressed_size,
backtrace_error_callback error_callback,
void *data, unsigned char **uncompressed,
size_t *uncompressed_size)
{
return elf_uncompress_lzma (state, compressed, compressed_size,
error_callback, data, uncompressed,
uncompressed_size);
}
/* Add the backtrace data for one ELF file. Returns 1 on success,
0 on failure (in both cases descriptor is closed) or -1 if exe
is non-zero and the ELF file is ET_DYN, which tells the caller that
elf_add will need to be called on the descriptor again after
base_address is determined. */
static int
elf_add (struct backtrace_state *state, const char *filename, int descriptor,
const unsigned char *memory, size_t memory_size,
uintptr_t base_address, backtrace_error_callback error_callback,
void *data, fileline *fileline_fn, int *found_sym, int *found_dwarf,
struct dwarf_data **fileline_entry, int exe, int debuginfo,
const char *with_buildid_data, uint32_t with_buildid_size)
{
struct elf_view ehdr_view;
b_elf_ehdr ehdr;
off_t shoff;
unsigned int shnum;
unsigned int shstrndx;
struct elf_view shdrs_view;
int shdrs_view_valid;
const b_elf_shdr *shdrs;
const b_elf_shdr *shstrhdr;
size_t shstr_size;
off_t shstr_off;
struct elf_view names_view;
int names_view_valid;
const char *names;
unsigned int symtab_shndx;
unsigned int dynsym_shndx;
unsigned int i;
struct debug_section_info sections[DEBUG_MAX];
struct debug_section_info zsections[DEBUG_MAX];
struct elf_view symtab_view;
int symtab_view_valid;
struct elf_view strtab_view;
int strtab_view_valid;
struct elf_view buildid_view;
int buildid_view_valid;
const char *buildid_data;
uint32_t buildid_size;
struct elf_view debuglink_view;
int debuglink_view_valid;
const char *debuglink_name;
uint32_t debuglink_crc;
struct elf_view debugaltlink_view;
int debugaltlink_view_valid;
const char *debugaltlink_name;
const char *debugaltlink_buildid_data;
uint32_t debugaltlink_buildid_size;
struct elf_view gnu_debugdata_view;
int gnu_debugdata_view_valid;
size_t gnu_debugdata_size;
unsigned char *gnu_debugdata_uncompressed;
size_t gnu_debugdata_uncompressed_size;
off_t min_offset;
off_t max_offset;
off_t debug_size;
struct elf_view debug_view;
int debug_view_valid;
unsigned int using_debug_view;
uint16_t *zdebug_table;
struct elf_view split_debug_view[DEBUG_MAX];
unsigned char split_debug_view_valid[DEBUG_MAX];
struct elf_ppc64_opd_data opd_data, *opd;
struct dwarf_sections dwarf_sections;
struct dwarf_data *fileline_altlink = NULL;
if (!debuginfo)
{
*found_sym = 0;
*found_dwarf = 0;
}
shdrs_view_valid = 0;
names_view_valid = 0;
symtab_view_valid = 0;
strtab_view_valid = 0;
buildid_view_valid = 0;
buildid_data = NULL;
buildid_size = 0;
debuglink_view_valid = 0;
debuglink_name = NULL;
debuglink_crc = 0;
debugaltlink_view_valid = 0;
debugaltlink_name = NULL;
debugaltlink_buildid_data = NULL;
debugaltlink_buildid_size = 0;
gnu_debugdata_view_valid = 0;
gnu_debugdata_size = 0;
debug_view_valid = 0;
memset (&split_debug_view_valid[0], 0, sizeof split_debug_view_valid);
opd = NULL;
if (!elf_get_view (state, descriptor, memory, memory_size, 0, sizeof ehdr,
error_callback, data, &ehdr_view))
goto fail;
memcpy (&ehdr, ehdr_view.view.data, sizeof ehdr);
elf_release_view (state, &ehdr_view, error_callback, data);
if (ehdr.e_ident[EI_MAG0] != ELFMAG0
|| ehdr.e_ident[EI_MAG1] != ELFMAG1
|| ehdr.e_ident[EI_MAG2] != ELFMAG2
|| ehdr.e_ident[EI_MAG3] != ELFMAG3)
{
error_callback (data, "executable file is not ELF", 0);
goto fail;
}
if (ehdr.e_ident[EI_VERSION] != EV_CURRENT)
{
error_callback (data, "executable file is unrecognized ELF version", 0);
goto fail;
}
#if BACKTRACE_ELF_SIZE == 32
#define BACKTRACE_ELFCLASS ELFCLASS32
#else
#define BACKTRACE_ELFCLASS ELFCLASS64
#endif
if (ehdr.e_ident[EI_CLASS] != BACKTRACE_ELFCLASS)
{
error_callback (data, "executable file is unexpected ELF class", 0);
goto fail;
}
if (ehdr.e_ident[EI_DATA] != ELFDATA2LSB
&& ehdr.e_ident[EI_DATA] != ELFDATA2MSB)
{
error_callback (data, "executable file has unknown endianness", 0);
goto fail;
}
/* If the executable is ET_DYN, it is either a PIE, or we are running
directly a shared library with .interp. We need to wait for
dl_iterate_phdr in that case to determine the actual base_address. */
if (exe && ehdr.e_type == ET_DYN)
return -1;
shoff = ehdr.e_shoff;
shnum = ehdr.e_shnum;
shstrndx = ehdr.e_shstrndx;
if ((shnum == 0 || shstrndx == SHN_XINDEX)
&& shoff != 0)
{
struct elf_view shdr_view;
const b_elf_shdr *shdr;
if (!elf_get_view (state, descriptor, memory, memory_size, shoff,
sizeof shdr, error_callback, data, &shdr_view))
goto fail;
shdr = (const b_elf_shdr *) shdr_view.view.data;
if (shnum == 0)
shnum = shdr->sh_size;
if (shstrndx == SHN_XINDEX)
{
shstrndx = shdr->sh_link;
/* Versions of the GNU binutils between 2.12 and 2.18 did
not handle objects with more than SHN_LORESERVE sections
correctly. All large section indexes were offset by
0x100. There is more information at
http://sourceware.org/bugzilla/show_bug.cgi?id-5900 .
Fortunately these object files are easy to detect, as the
GNU binutils always put the section header string table
near the end of the list of sections. Thus if the
section header string table index is larger than the
number of sections, then we know we have to subtract
0x100 to get the real section index. */
if (shstrndx >= shnum && shstrndx >= SHN_LORESERVE + 0x100)
shstrndx -= 0x100;
}
elf_release_view (state, &shdr_view, error_callback, data);
}
if (shnum == 0 || shstrndx == 0)
goto fail;
/* To translate PC to file/line when using DWARF, we need to find
the .debug_info and .debug_line sections. */
/* Read the section headers, skipping the first one. */
if (!elf_get_view (state, descriptor, memory, memory_size,
shoff + sizeof (b_elf_shdr),
(shnum - 1) * sizeof (b_elf_shdr),
error_callback, data, &shdrs_view))
goto fail;
shdrs_view_valid = 1;
shdrs = (const b_elf_shdr *) shdrs_view.view.data;
/* Read the section names. */
shstrhdr = &shdrs[shstrndx - 1];
shstr_size = shstrhdr->sh_size;
shstr_off = shstrhdr->sh_offset;
if (!elf_get_view (state, descriptor, memory, memory_size, shstr_off,
shstrhdr->sh_size, error_callback, data, &names_view))
goto fail;
names_view_valid = 1;
names = (const char *) names_view.view.data;
symtab_shndx = 0;
dynsym_shndx = 0;
memset (sections, 0, sizeof sections);
memset (zsections, 0, sizeof zsections);
/* Look for the symbol table. */
for (i = 1; i < shnum; ++i)
{
const b_elf_shdr *shdr;
unsigned int sh_name;
const char *name;
int j;
shdr = &shdrs[i - 1];
if (shdr->sh_type == SHT_SYMTAB)
symtab_shndx = i;
else if (shdr->sh_type == SHT_DYNSYM)
dynsym_shndx = i;
sh_name = shdr->sh_name;
if (sh_name >= shstr_size)
{
error_callback (data, "ELF section name out of range", 0);
goto fail;
}
name = names + sh_name;
for (j = 0; j < (int) DEBUG_MAX; ++j)
{
if (strcmp (name, dwarf_section_names[j]) == 0)
{
sections[j].offset = shdr->sh_offset;
sections[j].size = shdr->sh_size;
sections[j].compressed = (shdr->sh_flags & SHF_COMPRESSED) != 0;
break;
}
}
if (name[0] == '.' && name[1] == 'z')
{
for (j = 0; j < (int) DEBUG_MAX; ++j)
{
if (strcmp (name + 2, dwarf_section_names[j] + 1) == 0)
{
zsections[j].offset = shdr->sh_offset;
zsections[j].size = shdr->sh_size;
break;
}
}
}
/* Read the build ID if present. This could check for any
SHT_NOTE section with the right note name and type, but gdb
looks for a specific section name. */
if ((!debuginfo || with_buildid_data != NULL)
&& !buildid_view_valid
&& strcmp (name, ".note.gnu.build-id") == 0)
{
const b_elf_note *note;
if (!elf_get_view (state, descriptor, memory, memory_size,
shdr->sh_offset, shdr->sh_size, error_callback,
data, &buildid_view))
goto fail;
buildid_view_valid = 1;
note = (const b_elf_note *) buildid_view.view.data;
if (note->type == NT_GNU_BUILD_ID
&& note->namesz == 4
&& strncmp (note->name, "GNU", 4) == 0
&& shdr->sh_size <= 12 + ((note->namesz + 3) & ~ 3) + note->descsz)
{
buildid_data = ¬e->name[0] + ((note->namesz + 3) & ~ 3);
buildid_size = note->descsz;
}
if (with_buildid_size != 0)
{
if (buildid_size != with_buildid_size)
goto fail;
if (memcmp (buildid_data, with_buildid_data, buildid_size) != 0)
goto fail;
}
}
/* Read the debuglink file if present. */
if (!debuginfo
&& !debuglink_view_valid
&& strcmp (name, ".gnu_debuglink") == 0)
{
const char *debuglink_data;
size_t crc_offset;
if (!elf_get_view (state, descriptor, memory, memory_size,
shdr->sh_offset, shdr->sh_size, error_callback,
data, &debuglink_view))
goto fail;
debuglink_view_valid = 1;
debuglink_data = (const char *) debuglink_view.view.data;
crc_offset = strnlen (debuglink_data, shdr->sh_size);
crc_offset = (crc_offset + 3) & ~3;
if (crc_offset + 4 <= shdr->sh_size)
{
debuglink_name = debuglink_data;
debuglink_crc = *(const uint32_t*)(debuglink_data + crc_offset);
}
}
if (!debugaltlink_view_valid
&& strcmp (name, ".gnu_debugaltlink") == 0)
{
const char *debugaltlink_data;
size_t debugaltlink_name_len;
if (!elf_get_view (state, descriptor, memory, memory_size,
shdr->sh_offset, shdr->sh_size, error_callback,
data, &debugaltlink_view))
goto fail;
debugaltlink_view_valid = 1;
debugaltlink_data = (const char *) debugaltlink_view.view.data;
debugaltlink_name = debugaltlink_data;
debugaltlink_name_len = strnlen (debugaltlink_data, shdr->sh_size);
if (debugaltlink_name_len < shdr->sh_size)
{
/* Include terminating zero. */
debugaltlink_name_len += 1;
debugaltlink_buildid_data
= debugaltlink_data + debugaltlink_name_len;
debugaltlink_buildid_size = shdr->sh_size - debugaltlink_name_len;
}
}
if (!gnu_debugdata_view_valid
&& strcmp (name, ".gnu_debugdata") == 0)
{
if (!elf_get_view (state, descriptor, memory, memory_size,
shdr->sh_offset, shdr->sh_size, error_callback,
data, &gnu_debugdata_view))
goto fail;
gnu_debugdata_size = shdr->sh_size;
gnu_debugdata_view_valid = 1;
}
/* Read the .opd section on PowerPC64 ELFv1. */
if (ehdr.e_machine == EM_PPC64
&& (ehdr.e_flags & EF_PPC64_ABI) < 2
&& shdr->sh_type == SHT_PROGBITS
&& strcmp (name, ".opd") == 0)
{
if (!elf_get_view (state, descriptor, memory, memory_size,
shdr->sh_offset, shdr->sh_size, error_callback,
data, &opd_data.view))
goto fail;
opd = &opd_data;
opd->addr = shdr->sh_addr;
opd->data = (const char *) opd_data.view.view.data;
opd->size = shdr->sh_size;
}
}
if (symtab_shndx == 0)
symtab_shndx = dynsym_shndx;
if (symtab_shndx != 0 && !debuginfo)
{
const b_elf_shdr *symtab_shdr;
unsigned int strtab_shndx;
const b_elf_shdr *strtab_shdr;
struct elf_syminfo_data *sdata;
symtab_shdr = &shdrs[symtab_shndx - 1];
strtab_shndx = symtab_shdr->sh_link;
if (strtab_shndx >= shnum)
{
error_callback (data,
"ELF symbol table strtab link out of range", 0);
goto fail;
}
strtab_shdr = &shdrs[strtab_shndx - 1];
if (!elf_get_view (state, descriptor, memory, memory_size,
symtab_shdr->sh_offset, symtab_shdr->sh_size,
error_callback, data, &symtab_view))
goto fail;
symtab_view_valid = 1;
if (!elf_get_view (state, descriptor, memory, memory_size,
strtab_shdr->sh_offset, strtab_shdr->sh_size,
error_callback, data, &strtab_view))
goto fail;
strtab_view_valid = 1;
sdata = ((struct elf_syminfo_data *)
backtrace_alloc (state, sizeof *sdata, error_callback, data));
if (sdata == NULL)
goto fail;
if (!elf_initialize_syminfo (state, base_address,
(const unsigned char*)symtab_view.view.data, symtab_shdr->sh_size,
(const unsigned char*)strtab_view.view.data, strtab_shdr->sh_size,
error_callback, data, sdata, opd))
{
backtrace_free (state, sdata, sizeof *sdata, error_callback, data);
goto fail;
}
/* We no longer need the symbol table, but we hold on to the
string table permanently. */
elf_release_view (state, &symtab_view, error_callback, data);
symtab_view_valid = 0;
strtab_view_valid = 0;
*found_sym = 1;
elf_add_syminfo_data (state, sdata);
}
elf_release_view (state, &shdrs_view, error_callback, data);
shdrs_view_valid = 0;
elf_release_view (state, &names_view, error_callback, data);
names_view_valid = 0;
/* If the debug info is in a separate file, read that one instead. */
if (buildid_data != NULL)
{
int d;
d = elf_open_debugfile_by_buildid (state, buildid_data, buildid_size,
filename, error_callback, data);
if (d >= 0)
{
int ret;
elf_release_view (state, &buildid_view, error_callback, data);
if (debuglink_view_valid)
elf_release_view (state, &debuglink_view, error_callback, data);
if (debugaltlink_view_valid)
elf_release_view (state, &debugaltlink_view, error_callback, data);
ret = elf_add (state, "", d, NULL, 0, base_address, error_callback,
data, fileline_fn, found_sym, found_dwarf, NULL, 0,
1, NULL, 0);
if (ret < 0)
backtrace_close (d, error_callback, data);
else if (descriptor >= 0)
backtrace_close (descriptor, error_callback, data);
return ret;
}
}
if (buildid_view_valid)
{
elf_release_view (state, &buildid_view, error_callback, data);
buildid_view_valid = 0;
}
if (opd)
{
elf_release_view (state, &opd->view, error_callback, data);
opd = NULL;
}
if (debuglink_name != NULL)
{
int d;
d = elf_open_debugfile_by_debuglink (state, filename, debuglink_name,
debuglink_crc, error_callback,
data);
if (d >= 0)
{
int ret;
elf_release_view (state, &debuglink_view, error_callback, data);
if (debugaltlink_view_valid)
elf_release_view (state, &debugaltlink_view, error_callback, data);
ret = elf_add (state, "", d, NULL, 0, base_address, error_callback,
data, fileline_fn, found_sym, found_dwarf, NULL, 0,
1, NULL, 0);
if (ret < 0)
backtrace_close (d, error_callback, data);
else if (descriptor >= 0)
backtrace_close(descriptor, error_callback, data);
return ret;
}
}
if (debuglink_view_valid)
{
elf_release_view (state, &debuglink_view, error_callback, data);
debuglink_view_valid = 0;
}
if (debugaltlink_name != NULL)
{
int d;
d = elf_open_debugfile_by_debuglink (state, filename, debugaltlink_name,
0, error_callback, data);
if (d >= 0)
{
int ret;
ret = elf_add (state, filename, d, NULL, 0, base_address,
error_callback, data, fileline_fn, found_sym,
found_dwarf, &fileline_altlink, 0, 1,
debugaltlink_buildid_data, debugaltlink_buildid_size);
elf_release_view (state, &debugaltlink_view, error_callback, data);
debugaltlink_view_valid = 0;
if (ret < 0)
{
backtrace_close (d, error_callback, data);
return ret;
}
}
}
if (debugaltlink_view_valid)
{
elf_release_view (state, &debugaltlink_view, error_callback, data);
debugaltlink_view_valid = 0;
}
if (gnu_debugdata_view_valid)
{
int ret;
ret = elf_uncompress_lzma (state,
((const unsigned char *)
gnu_debugdata_view.view.data),
gnu_debugdata_size, error_callback, data,
&gnu_debugdata_uncompressed,
&gnu_debugdata_uncompressed_size);
elf_release_view (state, &gnu_debugdata_view, error_callback, data);
gnu_debugdata_view_valid = 0;
if (ret)
{
ret = elf_add (state, filename, -1, gnu_debugdata_uncompressed,
gnu_debugdata_uncompressed_size, base_address,
error_callback, data, fileline_fn, found_sym,
found_dwarf, NULL, 0, 0, NULL, 0);
if (ret >= 0 && descriptor >= 0)
backtrace_close(descriptor, error_callback, data);
return ret;
}
}
/* Read all the debug sections in a single view, since they are
probably adjacent in the file. If any of sections are
uncompressed, we never release this view. */
min_offset = 0;
max_offset = 0;
debug_size = 0;
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
off_t end;
if (sections[i].size != 0)
{
if (min_offset == 0 || sections[i].offset < min_offset)
min_offset = sections[i].offset;
end = sections[i].offset + sections[i].size;
if (end > max_offset)
max_offset = end;
debug_size += sections[i].size;
}
if (zsections[i].size != 0)
{
if (min_offset == 0 || zsections[i].offset < min_offset)
min_offset = zsections[i].offset;
end = zsections[i].offset + zsections[i].size;
if (end > max_offset)
max_offset = end;
debug_size += zsections[i].size;
}
}
if (min_offset == 0 || max_offset == 0)
{
if (descriptor >= 0)
{
if (!backtrace_close (descriptor, error_callback, data))
goto fail;
}
return 1;
}
/* If the total debug section size is large, assume that there are
gaps between the sections, and read them individually. */
if (max_offset - min_offset < 0x20000000
|| max_offset - min_offset < debug_size + 0x10000)
{
if (!elf_get_view (state, descriptor, memory, memory_size, min_offset,
max_offset - min_offset, error_callback, data,
&debug_view))
goto fail;
debug_view_valid = 1;
}
else
{
memset (&split_debug_view[0], 0, sizeof split_debug_view);
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
struct debug_section_info *dsec;
if (sections[i].size != 0)
dsec = §ions[i];
else if (zsections[i].size != 0)
dsec = &zsections[i];
else
continue;
if (!elf_get_view (state, descriptor, memory, memory_size,
dsec->offset, dsec->size, error_callback, data,
&split_debug_view[i]))
goto fail;
split_debug_view_valid[i] = 1;
if (sections[i].size != 0)
sections[i].data = ((const unsigned char *)
split_debug_view[i].view.data);
else
zsections[i].data = ((const unsigned char *)
split_debug_view[i].view.data);
}
}
/* We've read all we need from the executable. */
if (descriptor >= 0)
{
if (!backtrace_close (descriptor, error_callback, data))
goto fail;
descriptor = -1;
}
using_debug_view = 0;
if (debug_view_valid)
{
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
if (sections[i].size == 0)
sections[i].data = NULL;
else
{
sections[i].data = ((const unsigned char *) debug_view.view.data
+ (sections[i].offset - min_offset));
++using_debug_view;
}
if (zsections[i].size == 0)
zsections[i].data = NULL;
else
zsections[i].data = ((const unsigned char *) debug_view.view.data
+ (zsections[i].offset - min_offset));
}
}
/* Uncompress the old format (--compress-debug-sections=zlib-gnu). */
zdebug_table = NULL;
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
if (sections[i].size == 0 && zsections[i].size > 0)
{
unsigned char *uncompressed_data;
size_t uncompressed_size;
if (zdebug_table == NULL)
{
zdebug_table = ((uint16_t *)
backtrace_alloc (state, ZDEBUG_TABLE_SIZE,
error_callback, data));
if (zdebug_table == NULL)
goto fail;
}
uncompressed_data = NULL;
uncompressed_size = 0;
if (!elf_uncompress_zdebug (state, zsections[i].data,
zsections[i].size, zdebug_table,
error_callback, data,
&uncompressed_data, &uncompressed_size))
goto fail;
sections[i].data = uncompressed_data;
sections[i].size = uncompressed_size;
sections[i].compressed = 0;
if (split_debug_view_valid[i])
{
elf_release_view (state, &split_debug_view[i],
error_callback, data);
split_debug_view_valid[i] = 0;
}
}
}
/* Uncompress the official ELF format
(--compress-debug-sections=zlib-gabi). */
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
unsigned char *uncompressed_data;
size_t uncompressed_size;
if (sections[i].size == 0 || !sections[i].compressed)
continue;
if (zdebug_table == NULL)
{
zdebug_table = ((uint16_t *)
backtrace_alloc (state, ZDEBUG_TABLE_SIZE,
error_callback, data));
if (zdebug_table == NULL)
goto fail;
}
uncompressed_data = NULL;
uncompressed_size = 0;
if (!elf_uncompress_chdr (state, sections[i].data, sections[i].size,
zdebug_table, error_callback, data,
&uncompressed_data, &uncompressed_size))
goto fail;
sections[i].data = uncompressed_data;
sections[i].size = uncompressed_size;
sections[i].compressed = 0;
if (debug_view_valid)
--using_debug_view;
else if (split_debug_view_valid[i])
{
elf_release_view (state, &split_debug_view[i], error_callback, data);
split_debug_view_valid[i] = 0;
}
}
if (zdebug_table != NULL)
backtrace_free (state, zdebug_table, ZDEBUG_TABLE_SIZE,
error_callback, data);
if (debug_view_valid && using_debug_view == 0)
{
elf_release_view (state, &debug_view, error_callback, data);
debug_view_valid = 0;
}
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
dwarf_sections.data[i] = sections[i].data;
dwarf_sections.size[i] = sections[i].size;
}
if (!backtrace_dwarf_add (state, base_address, &dwarf_sections,
ehdr.e_ident[EI_DATA] == ELFDATA2MSB,
fileline_altlink,
error_callback, data, fileline_fn,
fileline_entry))
goto fail;
*found_dwarf = 1;
return 1;
fail:
if (shdrs_view_valid)
elf_release_view (state, &shdrs_view, error_callback, data);
if (names_view_valid)
elf_release_view (state, &names_view, error_callback, data);
if (symtab_view_valid)
elf_release_view (state, &symtab_view, error_callback, data);
if (strtab_view_valid)
elf_release_view (state, &strtab_view, error_callback, data);
if (debuglink_view_valid)
elf_release_view (state, &debuglink_view, error_callback, data);
if (debugaltlink_view_valid)
elf_release_view (state, &debugaltlink_view, error_callback, data);
if (gnu_debugdata_view_valid)
elf_release_view (state, &gnu_debugdata_view, error_callback, data);
if (buildid_view_valid)
elf_release_view (state, &buildid_view, error_callback, data);
if (debug_view_valid)
elf_release_view (state, &debug_view, error_callback, data);
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
if (split_debug_view_valid[i])
elf_release_view (state, &split_debug_view[i], error_callback, data);
}
if (opd)
elf_release_view (state, &opd->view, error_callback, data);
if (descriptor >= 0)
backtrace_close (descriptor, error_callback, data);
return 0;
}
/* Data passed to phdr_callback. */
struct phdr_data
{
struct backtrace_state *state;
backtrace_error_callback error_callback;
void *data;
fileline *fileline_fn;
int *found_sym;
int *found_dwarf;
const char *exe_filename;
int exe_descriptor;
};
/* Callback passed to dl_iterate_phdr. Load debug info from shared
libraries. */
struct PhdrIterate
{
char* dlpi_name;
ElfW(Addr) dlpi_addr;
};
FastVector<PhdrIterate> s_phdrData(16);
static int
phdr_callback_mock (struct dl_phdr_info *info, size_t size ATTRIBUTE_UNUSED,
void *pdata)
{
auto ptr = s_phdrData.push_next();
if (info->dlpi_name)
{
size_t sz = strlen (info->dlpi_name) + 1;
ptr->dlpi_name = (char*)tracy_malloc (sz);
memcpy (ptr->dlpi_name, info->dlpi_name, sz);
}
else ptr->dlpi_name = nullptr;
ptr->dlpi_addr = info->dlpi_addr;
return 0;
}
static int
#ifdef __i386__
__attribute__ ((__force_align_arg_pointer__))
#endif
phdr_callback (struct PhdrIterate *info, void *pdata)
{
struct phdr_data *pd = (struct phdr_data *) pdata;
const char *filename;
int descriptor;
int does_not_exist;
fileline elf_fileline_fn;
int found_dwarf;
/* There is not much we can do if we don't have the module name,
unless executable is ET_DYN, where we expect the very first
phdr_callback to be for the PIE. */
if (info->dlpi_name == NULL || info->dlpi_name[0] == '\0')
{
if (pd->exe_descriptor == -1)
return 0;
filename = pd->exe_filename;
descriptor = pd->exe_descriptor;
pd->exe_descriptor = -1;
}
else
{
if (pd->exe_descriptor != -1)
{
backtrace_close (pd->exe_descriptor, pd->error_callback, pd->data);
pd->exe_descriptor = -1;
}
filename = info->dlpi_name;
descriptor = backtrace_open (info->dlpi_name, pd->error_callback,
pd->data, &does_not_exist);
if (descriptor < 0)
return 0;
}
if (elf_add (pd->state, filename, descriptor, NULL, 0, info->dlpi_addr,
pd->error_callback, pd->data, &elf_fileline_fn, pd->found_sym,
&found_dwarf, NULL, 0, 0, NULL, 0))
{
if (found_dwarf)
{
*pd->found_dwarf = 1;
*pd->fileline_fn = elf_fileline_fn;
}
}
return 0;
}
/* Initialize the backtrace data we need from an ELF executable. At
the ELF level, all we need to do is find the debug info
sections. */
int
backtrace_initialize (struct backtrace_state *state, const char *filename,
int descriptor, backtrace_error_callback error_callback,
void *data, fileline *fileline_fn)
{
int ret;
int found_sym;
int found_dwarf;
fileline elf_fileline_fn = elf_nodebug;
struct phdr_data pd;
ret = elf_add (state, filename, descriptor, NULL, 0, 0, error_callback, data,
&elf_fileline_fn, &found_sym, &found_dwarf, NULL, 1, 0, NULL,
0);
if (!ret)
return 0;
pd.state = state;
pd.error_callback = error_callback;
pd.data = data;
pd.fileline_fn = &elf_fileline_fn;
pd.found_sym = &found_sym;
pd.found_dwarf = &found_dwarf;
pd.exe_filename = filename;
pd.exe_descriptor = ret < 0 ? descriptor : -1;
assert (s_phdrData.empty());
dl_iterate_phdr (phdr_callback_mock, nullptr);
for (auto& v : s_phdrData)
{
phdr_callback (&v, (void *) &pd);
tracy_free (v.dlpi_name);
}
s_phdrData.clear();
if (!state->threaded)
{
if (found_sym)
state->syminfo_fn = elf_syminfo;
else if (state->syminfo_fn == NULL)
state->syminfo_fn = elf_nosyms;
}
else
{
if (found_sym)
backtrace_atomic_store_pointer (&state->syminfo_fn, &elf_syminfo);
else
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
elf_nosyms);
}
if (!state->threaded)
*fileline_fn = state->fileline_fn;
else
*fileline_fn = backtrace_atomic_load_pointer (&state->fileline_fn);
if (*fileline_fn == NULL || *fileline_fn == elf_nodebug)
*fileline_fn = elf_fileline_fn;
return 1;
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/elf.cpp
|
C++
|
gpl-3.0
| 131,477
|
/* fileline.c -- Get file and line number information in a backtrace.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#if defined (HAVE_KERN_PROC_ARGS) || defined (HAVE_KERN_PROC)
#include <sys/sysctl.h>
#endif
#ifdef HAVE_MACH_O_DYLD_H
#include <mach-o/dyld.h>
#endif
#include "backtrace.hpp"
#include "internal.hpp"
#ifndef HAVE_GETEXECNAME
#define getexecname() NULL
#endif
namespace tracy
{
#if !defined (HAVE_KERN_PROC_ARGS) && !defined (HAVE_KERN_PROC)
#define sysctl_exec_name1(state, error_callback, data) NULL
#define sysctl_exec_name2(state, error_callback, data) NULL
#else /* defined (HAVE_KERN_PROC_ARGS) || |defined (HAVE_KERN_PROC) */
static char *
sysctl_exec_name (struct backtrace_state *state,
int mib0, int mib1, int mib2, int mib3,
backtrace_error_callback error_callback, void *data)
{
int mib[4];
size_t len;
char *name;
size_t rlen;
mib[0] = mib0;
mib[1] = mib1;
mib[2] = mib2;
mib[3] = mib3;
if (sysctl (mib, 4, NULL, &len, NULL, 0) < 0)
return NULL;
name = (char *) backtrace_alloc (state, len, error_callback, data);
if (name == NULL)
return NULL;
rlen = len;
if (sysctl (mib, 4, name, &rlen, NULL, 0) < 0)
{
backtrace_free (state, name, len, error_callback, data);
return NULL;
}
return name;
}
#ifdef HAVE_KERN_PROC_ARGS
static char *
sysctl_exec_name1 (struct backtrace_state *state,
backtrace_error_callback error_callback, void *data)
{
/* This variant is used on NetBSD. */
return sysctl_exec_name (state, CTL_KERN, KERN_PROC_ARGS, -1,
KERN_PROC_PATHNAME, error_callback, data);
}
#else
#define sysctl_exec_name1(state, error_callback, data) NULL
#endif
#ifdef HAVE_KERN_PROC
static char *
sysctl_exec_name2 (struct backtrace_state *state,
backtrace_error_callback error_callback, void *data)
{
/* This variant is used on FreeBSD. */
return sysctl_exec_name (state, CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1,
error_callback, data);
}
#else
#define sysctl_exec_name2(state, error_callback, data) NULL
#endif
#endif /* defined (HAVE_KERN_PROC_ARGS) || |defined (HAVE_KERN_PROC) */
#ifdef HAVE_MACH_O_DYLD_H
static char *
macho_get_executable_path (struct backtrace_state *state,
backtrace_error_callback error_callback, void *data)
{
uint32_t len;
char *name;
len = 0;
if (_NSGetExecutablePath (NULL, &len) == 0)
return NULL;
name = (char *) backtrace_alloc (state, len, error_callback, data);
if (name == NULL)
return NULL;
if (_NSGetExecutablePath (name, &len) != 0)
{
backtrace_free (state, name, len, error_callback, data);
return NULL;
}
return name;
}
#else /* !defined (HAVE_MACH_O_DYLD_H) */
#define macho_get_executable_path(state, error_callback, data) NULL
#endif /* !defined (HAVE_MACH_O_DYLD_H) */
/* Initialize the fileline information from the executable. Returns 1
on success, 0 on failure. */
static int
fileline_initialize (struct backtrace_state *state,
backtrace_error_callback error_callback, void *data)
{
int failed;
fileline fileline_fn;
int pass;
int called_error_callback;
int descriptor;
const char *filename;
char buf[64];
if (!state->threaded)
failed = state->fileline_initialization_failed;
else
failed = backtrace_atomic_load_int (&state->fileline_initialization_failed);
if (failed)
{
error_callback (data, "failed to read executable information", -1);
return 0;
}
if (!state->threaded)
fileline_fn = state->fileline_fn;
else
fileline_fn = backtrace_atomic_load_pointer (&state->fileline_fn);
if (fileline_fn != NULL)
return 1;
/* We have not initialized the information. Do it now. */
descriptor = -1;
called_error_callback = 0;
for (pass = 0; pass < 8; ++pass)
{
int does_not_exist;
switch (pass)
{
case 0:
filename = state->filename;
break;
case 1:
filename = getexecname ();
break;
case 2:
filename = "/proc/self/exe";
break;
case 3:
filename = "/proc/curproc/file";
break;
case 4:
snprintf (buf, sizeof (buf), "/proc/%ld/object/a.out",
(long) getpid ());
filename = buf;
break;
case 5:
filename = sysctl_exec_name1 (state, error_callback, data);
break;
case 6:
filename = sysctl_exec_name2 (state, error_callback, data);
break;
case 7:
filename = macho_get_executable_path (state, error_callback, data);
break;
default:
abort ();
}
if (filename == NULL)
continue;
descriptor = backtrace_open (filename, error_callback, data,
&does_not_exist);
if (descriptor < 0 && !does_not_exist)
{
called_error_callback = 1;
break;
}
if (descriptor >= 0)
break;
}
if (descriptor < 0)
{
if (!called_error_callback)
{
if (state->filename != NULL)
error_callback (data, state->filename, ENOENT);
else
error_callback (data,
"libbacktrace could not find executable to open",
0);
}
failed = 1;
}
if (!failed)
{
if (!backtrace_initialize (state, filename, descriptor, error_callback,
data, &fileline_fn))
failed = 1;
}
if (failed)
{
if (!state->threaded)
state->fileline_initialization_failed = 1;
else
backtrace_atomic_store_int (&state->fileline_initialization_failed, 1);
return 0;
}
if (!state->threaded)
state->fileline_fn = fileline_fn;
else
{
backtrace_atomic_store_pointer (&state->fileline_fn, fileline_fn);
/* Note that if two threads initialize at once, one of the data
sets may be leaked. */
}
return 1;
}
/* Given a PC, find the file name, line number, and function name. */
int
backtrace_pcinfo (struct backtrace_state *state, uintptr_t pc,
backtrace_full_callback callback,
backtrace_error_callback error_callback, void *data)
{
if (!fileline_initialize (state, error_callback, data))
return 0;
if (state->fileline_initialization_failed)
return 0;
return state->fileline_fn (state, pc, callback, error_callback, data);
}
/* Given a PC, find the symbol for it, and its value. */
int
backtrace_syminfo (struct backtrace_state *state, uintptr_t pc,
backtrace_syminfo_callback callback,
backtrace_error_callback error_callback, void *data)
{
if (!fileline_initialize (state, error_callback, data))
return 0;
if (state->fileline_initialization_failed)
return 0;
state->syminfo_fn (state, pc, callback, error_callback, data);
return 1;
}
/* A backtrace_syminfo_callback that can call into a
backtrace_full_callback, used when we have a symbol table but no
debug info. */
void
backtrace_syminfo_to_full_callback (void *data, uintptr_t pc,
const char *symname,
uintptr_t symval ATTRIBUTE_UNUSED,
uintptr_t symsize ATTRIBUTE_UNUSED)
{
struct backtrace_call_full *bdata = (struct backtrace_call_full *) data;
bdata->ret = bdata->full_callback (bdata->full_data, pc, 0, NULL, 0, symname);
}
/* An error callback that corresponds to
backtrace_syminfo_to_full_callback. */
void
backtrace_syminfo_to_full_error_callback (void *data, const char *msg,
int errnum)
{
struct backtrace_call_full *bdata = (struct backtrace_call_full *) data;
bdata->full_error_callback (bdata->full_data, msg, errnum);
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/fileline.cpp
|
C++
|
gpl-3.0
| 8,882
|
/* btest.c -- Filename header for libbacktrace library
Copyright (C) 2012-2018 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#ifndef GCC_VERSION
# define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
#endif
#if (GCC_VERSION < 2007)
# define __attribute__(x)
#endif
#ifndef ATTRIBUTE_UNUSED
# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
#endif
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__) || defined (__CYGWIN__)
# define IS_DIR_SEPARATOR(c) ((c) == '/' || (c) == '\\')
# define HAS_DRIVE_SPEC(f) ((f)[0] != '\0' && (f)[1] == ':')
# define IS_ABSOLUTE_PATH(f) (IS_DIR_SEPARATOR((f)[0]) || HAS_DRIVE_SPEC(f))
#else
# define IS_DIR_SEPARATOR(c) ((c) == '/')
# define IS_ABSOLUTE_PATH(f) (IS_DIR_SEPARATOR((f)[0]))
#endif
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/filenames.hpp
|
C++
|
gpl-3.0
| 2,149
|
/* internal.h -- Internal header file for stack backtrace library.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#ifndef BACKTRACE_INTERNAL_H
#define BACKTRACE_INTERNAL_H
/* We assume that <sys/types.h> and "backtrace.h" have already been
included. */
#ifndef GCC_VERSION
# define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
#endif
#if (GCC_VERSION < 2007)
# define __attribute__(x)
#endif
#ifndef ATTRIBUTE_UNUSED
# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
#endif
#ifndef ATTRIBUTE_MALLOC
# if (GCC_VERSION >= 2096)
# define ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
# else
# define ATTRIBUTE_MALLOC
# endif
#endif
#ifndef ATTRIBUTE_FALLTHROUGH
# if (GCC_VERSION >= 7000)
# define ATTRIBUTE_FALLTHROUGH __attribute__ ((__fallthrough__))
# else
# define ATTRIBUTE_FALLTHROUGH
# endif
#endif
#ifndef HAVE_SYNC_FUNCTIONS
/* Define out the sync functions. These should never be called if
they are not available. */
#define __sync_bool_compare_and_swap(A, B, C) (abort(), 1)
#define __sync_lock_test_and_set(A, B) (abort(), 0)
#define __sync_lock_release(A) abort()
#endif /* !defined (HAVE_SYNC_FUNCTIONS) */
#ifdef HAVE_ATOMIC_FUNCTIONS
/* We have the atomic builtin functions. */
#define backtrace_atomic_load_pointer(p) \
__atomic_load_n ((p), __ATOMIC_ACQUIRE)
#define backtrace_atomic_load_int(p) \
__atomic_load_n ((p), __ATOMIC_ACQUIRE)
#define backtrace_atomic_store_pointer(p, v) \
__atomic_store_n ((p), (v), __ATOMIC_RELEASE)
#define backtrace_atomic_store_size_t(p, v) \
__atomic_store_n ((p), (v), __ATOMIC_RELEASE)
#define backtrace_atomic_store_int(p, v) \
__atomic_store_n ((p), (v), __ATOMIC_RELEASE)
#else /* !defined (HAVE_ATOMIC_FUNCTIONS) */
#ifdef HAVE_SYNC_FUNCTIONS
/* We have the sync functions but not the atomic functions. Define
the atomic ones in terms of the sync ones. */
extern void *backtrace_atomic_load_pointer (void *);
extern int backtrace_atomic_load_int (int *);
extern void backtrace_atomic_store_pointer (void *, void *);
extern void backtrace_atomic_store_size_t (size_t *, size_t);
extern void backtrace_atomic_store_int (int *, int);
#else /* !defined (HAVE_SYNC_FUNCTIONS) */
/* We have neither the sync nor the atomic functions. These will
never be called. */
#define backtrace_atomic_load_pointer(p) (abort(), (void *) NULL)
#define backtrace_atomic_load_int(p) (abort(), 0)
#define backtrace_atomic_store_pointer(p, v) abort()
#define backtrace_atomic_store_size_t(p, v) abort()
#define backtrace_atomic_store_int(p, v) abort()
#endif /* !defined (HAVE_SYNC_FUNCTIONS) */
#endif /* !defined (HAVE_ATOMIC_FUNCTIONS) */
namespace tracy
{
/* The type of the function that collects file/line information. This
is like backtrace_pcinfo. */
typedef int (*fileline) (struct backtrace_state *state, uintptr_t pc,
backtrace_full_callback callback,
backtrace_error_callback error_callback, void *data);
/* The type of the function that collects symbol information. This is
like backtrace_syminfo. */
typedef void (*syminfo) (struct backtrace_state *state, uintptr_t pc,
backtrace_syminfo_callback callback,
backtrace_error_callback error_callback, void *data);
/* What the backtrace state pointer points to. */
struct backtrace_state
{
/* The name of the executable. */
const char *filename;
/* Non-zero if threaded. */
int threaded;
/* The master lock for fileline_fn, fileline_data, syminfo_fn,
syminfo_data, fileline_initialization_failed and everything the
data pointers point to. */
void *lock;
/* The function that returns file/line information. */
fileline fileline_fn;
/* The data to pass to FILELINE_FN. */
void *fileline_data;
/* The function that returns symbol information. */
syminfo syminfo_fn;
/* The data to pass to SYMINFO_FN. */
void *syminfo_data;
/* Whether initializing the file/line information failed. */
int fileline_initialization_failed;
/* The lock for the freelist. */
int lock_alloc;
/* The freelist when using mmap. */
struct backtrace_freelist_struct *freelist;
};
/* Open a file for reading. Returns -1 on error. If DOES_NOT_EXIST
is not NULL, *DOES_NOT_EXIST will be set to 0 normally and set to 1
if the file does not exist. If the file does not exist and
DOES_NOT_EXIST is not NULL, the function will return -1 and will
not call ERROR_CALLBACK. On other errors, or if DOES_NOT_EXIST is
NULL, the function will call ERROR_CALLBACK before returning. */
extern int backtrace_open (const char *filename,
backtrace_error_callback error_callback,
void *data,
int *does_not_exist);
/* A view of the contents of a file. This supports mmap when
available. A view will remain in memory even after backtrace_close
is called on the file descriptor from which the view was
obtained. */
struct backtrace_view
{
/* The data that the caller requested. */
const void *data;
/* The base of the view. */
void *base;
/* The total length of the view. */
size_t len;
};
/* Create a view of SIZE bytes from DESCRIPTOR at OFFSET. Store the
result in *VIEW. Returns 1 on success, 0 on error. */
extern int backtrace_get_view (struct backtrace_state *state, int descriptor,
off_t offset, uint64_t size,
backtrace_error_callback error_callback,
void *data, struct backtrace_view *view);
/* Release a view created by backtrace_get_view. */
extern void backtrace_release_view (struct backtrace_state *state,
struct backtrace_view *view,
backtrace_error_callback error_callback,
void *data);
/* Close a file opened by backtrace_open. Returns 1 on success, 0 on
error. */
extern int backtrace_close (int descriptor,
backtrace_error_callback error_callback,
void *data);
/* Sort without using memory. */
extern void backtrace_qsort (void *base, size_t count, size_t size,
int (*compar) (const void *, const void *));
/* Allocate memory. This is like malloc. If ERROR_CALLBACK is NULL,
this does not report an error, it just returns NULL. */
extern void *backtrace_alloc (struct backtrace_state *state, size_t size,
backtrace_error_callback error_callback,
void *data) ATTRIBUTE_MALLOC;
/* Free memory allocated by backtrace_alloc. If ERROR_CALLBACK is
NULL, this does not report an error. */
extern void backtrace_free (struct backtrace_state *state, void *mem,
size_t size,
backtrace_error_callback error_callback,
void *data);
/* A growable vector of some struct. This is used for more efficient
allocation when we don't know the final size of some group of data
that we want to represent as an array. */
struct backtrace_vector
{
/* The base of the vector. */
void *base;
/* The number of bytes in the vector. */
size_t size;
/* The number of bytes available at the current allocation. */
size_t alc;
};
/* Grow VEC by SIZE bytes. Return a pointer to the newly allocated
bytes. Note that this may move the entire vector to a new memory
location. Returns NULL on failure. */
extern void *backtrace_vector_grow (struct backtrace_state *state, size_t size,
backtrace_error_callback error_callback,
void *data,
struct backtrace_vector *vec);
/* Finish the current allocation on VEC. Prepare to start a new
allocation. The finished allocation will never be freed. Returns
a pointer to the base of the finished entries, or NULL on
failure. */
extern void* backtrace_vector_finish (struct backtrace_state *state,
struct backtrace_vector *vec,
backtrace_error_callback error_callback,
void *data);
/* Release any extra space allocated for VEC. This may change
VEC->base. Returns 1 on success, 0 on failure. */
extern int backtrace_vector_release (struct backtrace_state *state,
struct backtrace_vector *vec,
backtrace_error_callback error_callback,
void *data);
/* Free the space managed by VEC. This will reset VEC. */
static inline void
backtrace_vector_free (struct backtrace_state *state,
struct backtrace_vector *vec,
backtrace_error_callback error_callback, void *data)
{
vec->alc += vec->size;
vec->size = 0;
backtrace_vector_release (state, vec, error_callback, data);
}
/* Read initial debug data from a descriptor, and set the
fileline_data, syminfo_fn, and syminfo_data fields of STATE.
Return the fileln_fn field in *FILELN_FN--this is done this way so
that the synchronization code is only implemented once. This is
called after the descriptor has first been opened. It will close
the descriptor if it is no longer needed. Returns 1 on success, 0
on error. There will be multiple implementations of this function,
for different file formats. Each system will compile the
appropriate one. */
extern int backtrace_initialize (struct backtrace_state *state,
const char *filename,
int descriptor,
backtrace_error_callback error_callback,
void *data,
fileline *fileline_fn);
/* An enum for the DWARF sections we care about. */
enum dwarf_section
{
DEBUG_INFO,
DEBUG_LINE,
DEBUG_ABBREV,
DEBUG_RANGES,
DEBUG_STR,
DEBUG_ADDR,
DEBUG_STR_OFFSETS,
DEBUG_LINE_STR,
DEBUG_RNGLISTS,
DEBUG_MAX
};
/* Data for the DWARF sections we care about. */
struct dwarf_sections
{
const unsigned char *data[DEBUG_MAX];
size_t size[DEBUG_MAX];
};
/* DWARF data read from a file, used for .gnu_debugaltlink. */
struct dwarf_data;
/* Add file/line information for a DWARF module. */
extern int backtrace_dwarf_add (struct backtrace_state *state,
uintptr_t base_address,
const struct dwarf_sections *dwarf_sections,
int is_bigendian,
struct dwarf_data *fileline_altlink,
backtrace_error_callback error_callback,
void *data, fileline *fileline_fn,
struct dwarf_data **fileline_entry);
/* A data structure to pass to backtrace_syminfo_to_full. */
struct backtrace_call_full
{
backtrace_full_callback full_callback;
backtrace_error_callback full_error_callback;
void *full_data;
int ret;
};
/* A backtrace_syminfo_callback that can call into a
backtrace_full_callback, used when we have a symbol table but no
debug info. */
extern void backtrace_syminfo_to_full_callback (void *data, uintptr_t pc,
const char *symname,
uintptr_t symval,
uintptr_t symsize);
/* An error callback that corresponds to
backtrace_syminfo_to_full_callback. */
extern void backtrace_syminfo_to_full_error_callback (void *, const char *,
int);
/* A test-only hook for elf_uncompress_zdebug. */
extern int backtrace_uncompress_zdebug (struct backtrace_state *,
const unsigned char *compressed,
size_t compressed_size,
backtrace_error_callback, void *data,
unsigned char **uncompressed,
size_t *uncompressed_size);
/* A test-only hook for elf_uncompress_lzma. */
extern int backtrace_uncompress_lzma (struct backtrace_state *,
const unsigned char *compressed,
size_t compressed_size,
backtrace_error_callback, void *data,
unsigned char **uncompressed,
size_t *uncompressed_size);
}
#endif
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/internal.hpp
|
C++
|
gpl-3.0
| 12,724
|
/* elf.c -- Get debug data from a Mach-O file for backtraces.
Copyright (C) 2020-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_MACH_O_DYLD_H
#include <mach-o/dyld.h>
#endif
#include "backtrace.hpp"
#include "internal.hpp"
namespace tracy
{
/* Mach-O file header for a 32-bit executable. */
struct macho_header_32
{
uint32_t magic; /* Magic number (MACH_O_MAGIC_32) */
uint32_t cputype; /* CPU type */
uint32_t cpusubtype; /* CPU subtype */
uint32_t filetype; /* Type of file (object, executable) */
uint32_t ncmds; /* Number of load commands */
uint32_t sizeofcmds; /* Total size of load commands */
uint32_t flags; /* Flags for special features */
};
/* Mach-O file header for a 64-bit executable. */
struct macho_header_64
{
uint32_t magic; /* Magic number (MACH_O_MAGIC_64) */
uint32_t cputype; /* CPU type */
uint32_t cpusubtype; /* CPU subtype */
uint32_t filetype; /* Type of file (object, executable) */
uint32_t ncmds; /* Number of load commands */
uint32_t sizeofcmds; /* Total size of load commands */
uint32_t flags; /* Flags for special features */
uint32_t reserved; /* Reserved */
};
/* Mach-O file header for a fat executable. */
struct macho_header_fat
{
uint32_t magic; /* Magic number (MACH_O_MH_(MAGIC|CIGAM)_FAT(_64)?) */
uint32_t nfat_arch; /* Number of components */
};
/* Values for the header magic field. */
#define MACH_O_MH_MAGIC_32 0xfeedface
#define MACH_O_MH_MAGIC_64 0xfeedfacf
#define MACH_O_MH_MAGIC_FAT 0xcafebabe
#define MACH_O_MH_CIGAM_FAT 0xbebafeca
#define MACH_O_MH_MAGIC_FAT_64 0xcafebabf
#define MACH_O_MH_CIGAM_FAT_64 0xbfbafeca
/* Value for the header filetype field. */
#define MACH_O_MH_EXECUTE 0x02
#define MACH_O_MH_DYLIB 0x06
#define MACH_O_MH_DSYM 0x0a
/* A component of a fat file. A fat file starts with a
macho_header_fat followed by nfat_arch instances of this
struct. */
struct macho_fat_arch
{
uint32_t cputype; /* CPU type */
uint32_t cpusubtype; /* CPU subtype */
uint32_t offset; /* File offset of this entry */
uint32_t size; /* Size of this entry */
uint32_t align; /* Alignment of this entry */
};
/* A component of a 64-bit fat file. This is used if the magic field
is MAGIC_FAT_64. This is only used when some file size or file
offset is too large to represent in the 32-bit format. */
struct macho_fat_arch_64
{
uint32_t cputype; /* CPU type */
uint32_t cpusubtype; /* CPU subtype */
uint64_t offset; /* File offset of this entry */
uint64_t size; /* Size of this entry */
uint32_t align; /* Alignment of this entry */
uint32_t reserved; /* Reserved */
};
/* Values for the fat_arch cputype field (and the header cputype
field). */
#define MACH_O_CPU_ARCH_ABI64 0x01000000
#define MACH_O_CPU_TYPE_X86 7
#define MACH_O_CPU_TYPE_ARM 12
#define MACH_O_CPU_TYPE_PPC 18
#define MACH_O_CPU_TYPE_X86_64 (MACH_O_CPU_TYPE_X86 | MACH_O_CPU_ARCH_ABI64)
#define MACH_O_CPU_TYPE_ARM64 (MACH_O_CPU_TYPE_ARM | MACH_O_CPU_ARCH_ABI64)
#define MACH_O_CPU_TYPE_PPC64 (MACH_O_CPU_TYPE_PPC | MACH_O_CPU_ARCH_ABI64)
/* The header of a load command. */
struct macho_load_command
{
uint32_t cmd; /* The type of load command */
uint32_t cmdsize; /* Size in bytes of the entire command */
};
/* Values for the load_command cmd field. */
#define MACH_O_LC_SEGMENT 0x01
#define MACH_O_LC_SYMTAB 0x02
#define MACH_O_LC_SEGMENT_64 0x19
#define MACH_O_LC_UUID 0x1b
/* The length of a section of segment name. */
#define MACH_O_NAMELEN (16)
/* LC_SEGMENT load command. */
struct macho_segment_command
{
uint32_t cmd; /* The type of load command (LC_SEGMENT) */
uint32_t cmdsize; /* Size in bytes of the entire command */
char segname[MACH_O_NAMELEN]; /* Segment name */
uint32_t vmaddr; /* Virtual memory address */
uint32_t vmsize; /* Virtual memory size */
uint32_t fileoff; /* Offset of data to be mapped */
uint32_t filesize; /* Size of data in file */
uint32_t maxprot; /* Maximum permitted virtual protection */
uint32_t initprot; /* Initial virtual memory protection */
uint32_t nsects; /* Number of sections in this segment */
uint32_t flags; /* Flags */
};
/* LC_SEGMENT_64 load command. */
struct macho_segment_64_command
{
uint32_t cmd; /* The type of load command (LC_SEGMENT) */
uint32_t cmdsize; /* Size in bytes of the entire command */
char segname[MACH_O_NAMELEN]; /* Segment name */
uint64_t vmaddr; /* Virtual memory address */
uint64_t vmsize; /* Virtual memory size */
uint64_t fileoff; /* Offset of data to be mapped */
uint64_t filesize; /* Size of data in file */
uint32_t maxprot; /* Maximum permitted virtual protection */
uint32_t initprot; /* Initial virtual memory protection */
uint32_t nsects; /* Number of sections in this segment */
uint32_t flags; /* Flags */
};
/* LC_SYMTAB load command. */
struct macho_symtab_command
{
uint32_t cmd; /* The type of load command (LC_SEGMENT) */
uint32_t cmdsize; /* Size in bytes of the entire command */
uint32_t symoff; /* File offset of symbol table */
uint32_t nsyms; /* Number of symbols */
uint32_t stroff; /* File offset of string table */
uint32_t strsize; /* String table size */
};
/* The length of a Mach-O uuid. */
#define MACH_O_UUID_LEN (16)
/* LC_UUID load command. */
struct macho_uuid_command
{
uint32_t cmd; /* Type of load command (LC_UUID) */
uint32_t cmdsize; /* Size in bytes of command */
unsigned char uuid[MACH_O_UUID_LEN]; /* UUID */
};
/* 32-bit section header within a LC_SEGMENT segment. */
struct macho_section
{
char sectname[MACH_O_NAMELEN]; /* Section name */
char segment[MACH_O_NAMELEN]; /* Segment of this section */
uint32_t addr; /* Address in memory */
uint32_t size; /* Section size */
uint32_t offset; /* File offset */
uint32_t align; /* Log2 of section alignment */
uint32_t reloff; /* File offset of relocations */
uint32_t nreloc; /* Number of relocs for this section */
uint32_t flags; /* Flags */
uint32_t reserved1;
uint32_t reserved2;
};
/* 64-bit section header within a LC_SEGMENT_64 segment. */
struct macho_section_64
{
char sectname[MACH_O_NAMELEN]; /* Section name */
char segment[MACH_O_NAMELEN]; /* Segment of this section */
uint64_t addr; /* Address in memory */
uint64_t size; /* Section size */
uint32_t offset; /* File offset */
uint32_t align; /* Log2 of section alignment */
uint32_t reloff; /* File offset of section relocations */
uint32_t nreloc; /* Number of relocs for this section */
uint32_t flags; /* Flags */
uint32_t reserved1;
uint32_t reserved2;
uint32_t reserved3;
};
/* 32-bit symbol data. */
struct macho_nlist
{
uint32_t n_strx; /* Index of name in string table */
uint8_t n_type; /* Type flag */
uint8_t n_sect; /* Section number */
uint16_t n_desc; /* Stabs description field */
uint32_t n_value; /* Value */
};
/* 64-bit symbol data. */
struct macho_nlist_64
{
uint32_t n_strx; /* Index of name in string table */
uint8_t n_type; /* Type flag */
uint8_t n_sect; /* Section number */
uint16_t n_desc; /* Stabs description field */
uint64_t n_value; /* Value */
};
/* Value found in nlist n_type field. */
#define MACH_O_N_EXT 0x01 /* Extern symbol */
#define MACH_O_N_ABS 0x02 /* Absolute symbol */
#define MACH_O_N_SECT 0x0e /* Defined in section */
#define MACH_O_N_TYPE 0x0e /* Mask for type bits */
#define MACH_O_N_STAB 0xe0 /* Stabs debugging symbol */
/* Information we keep for a Mach-O symbol. */
struct macho_symbol
{
const char *name; /* Symbol name */
uintptr_t address; /* Symbol address */
};
/* Information to pass to macho_syminfo. */
struct macho_syminfo_data
{
struct macho_syminfo_data *next; /* Next module */
struct macho_symbol *symbols; /* Symbols sorted by address */
size_t count; /* Number of symbols */
};
/* Names of sections, indexed by enum dwarf_section in internal.h. */
static const char * const dwarf_section_names[DEBUG_MAX] =
{
"__debug_info",
"__debug_line",
"__debug_abbrev",
"__debug_ranges",
"__debug_str",
"", /* DEBUG_ADDR */
"__debug_str_offs",
"", /* DEBUG_LINE_STR */
"__debug_rnglists"
};
/* Forward declaration. */
static int macho_add (struct backtrace_state *, const char *, int, off_t,
const unsigned char *, uintptr_t, int,
backtrace_error_callback, void *, fileline *, int *);
/* A dummy callback function used when we can't find any debug info. */
static int
macho_nodebug (struct backtrace_state *state ATTRIBUTE_UNUSED,
uintptr_t pc ATTRIBUTE_UNUSED,
backtrace_full_callback callback ATTRIBUTE_UNUSED,
backtrace_error_callback error_callback, void *data)
{
error_callback (data, "no debug info in Mach-O executable", -1);
return 0;
}
/* A dummy callback function used when we can't find a symbol
table. */
static void
macho_nosyms (struct backtrace_state *state ATTRIBUTE_UNUSED,
uintptr_t addr ATTRIBUTE_UNUSED,
backtrace_syminfo_callback callback ATTRIBUTE_UNUSED,
backtrace_error_callback error_callback, void *data)
{
error_callback (data, "no symbol table in Mach-O executable", -1);
}
/* Add a single DWARF section to DWARF_SECTIONS, if we need the
section. Returns 1 on success, 0 on failure. */
static int
macho_add_dwarf_section (struct backtrace_state *state, int descriptor,
const char *sectname, uint32_t offset, uint64_t size,
backtrace_error_callback error_callback, void *data,
struct dwarf_sections *dwarf_sections)
{
int i;
for (i = 0; i < (int) DEBUG_MAX; ++i)
{
if (dwarf_section_names[i][0] != '\0'
&& strncmp (sectname, dwarf_section_names[i], MACH_O_NAMELEN) == 0)
{
struct backtrace_view section_view;
/* FIXME: Perhaps it would be better to try to use a single
view to read all the DWARF data, as we try to do for
ELF. */
if (!backtrace_get_view (state, descriptor, offset, size,
error_callback, data, §ion_view))
return 0;
dwarf_sections->data[i] = (const unsigned char *) section_view.data;
dwarf_sections->size[i] = size;
break;
}
}
return 1;
}
/* Collect DWARF sections from a DWARF segment. Returns 1 on success,
0 on failure. */
static int
macho_add_dwarf_segment (struct backtrace_state *state, int descriptor,
off_t offset, unsigned int cmd, const char *psecs,
size_t sizesecs, unsigned int nsects,
backtrace_error_callback error_callback, void *data,
struct dwarf_sections *dwarf_sections)
{
size_t sec_header_size;
size_t secoffset;
unsigned int i;
switch (cmd)
{
case MACH_O_LC_SEGMENT:
sec_header_size = sizeof (struct macho_section);
break;
case MACH_O_LC_SEGMENT_64:
sec_header_size = sizeof (struct macho_section_64);
break;
default:
abort ();
}
secoffset = 0;
for (i = 0; i < nsects; ++i)
{
if (secoffset + sec_header_size > sizesecs)
{
error_callback (data, "section overflow withing segment", 0);
return 0;
}
switch (cmd)
{
case MACH_O_LC_SEGMENT:
{
struct macho_section section;
memcpy (§ion, psecs + secoffset, sizeof section);
macho_add_dwarf_section (state, descriptor, section.sectname,
offset + section.offset, section.size,
error_callback, data, dwarf_sections);
}
break;
case MACH_O_LC_SEGMENT_64:
{
struct macho_section_64 section;
memcpy (§ion, psecs + secoffset, sizeof section);
macho_add_dwarf_section (state, descriptor, section.sectname,
offset + section.offset, section.size,
error_callback, data, dwarf_sections);
}
break;
default:
abort ();
}
secoffset += sec_header_size;
}
return 1;
}
/* Compare struct macho_symbol for qsort. */
static int
macho_symbol_compare (const void *v1, const void *v2)
{
const struct macho_symbol *m1 = (const struct macho_symbol *) v1;
const struct macho_symbol *m2 = (const struct macho_symbol *) v2;
if (m1->address < m2->address)
return -1;
else if (m1->address > m2->address)
return 1;
else
return 0;
}
/* Compare an address against a macho_symbol for bsearch. We allocate
one extra entry in the array so that this can safely look at the
next entry. */
static int
macho_symbol_search (const void *vkey, const void *ventry)
{
const uintptr_t *key = (const uintptr_t *) vkey;
const struct macho_symbol *entry = (const struct macho_symbol *) ventry;
uintptr_t addr;
addr = *key;
if (addr < entry->address)
return -1;
else if (entry->name[0] == '\0'
&& entry->address == ~(uintptr_t) 0)
return -1;
else if ((entry + 1)->name[0] == '\0'
&& (entry + 1)->address == ~(uintptr_t) 0)
return -1;
else if (addr >= (entry + 1)->address)
return 1;
else
return 0;
}
/* Return whether the symbol type field indicates a symbol table entry
that we care about: a function or data symbol. */
static int
macho_defined_symbol (uint8_t type)
{
if ((type & MACH_O_N_STAB) != 0)
return 0;
if ((type & MACH_O_N_EXT) != 0)
return 0;
switch (type & MACH_O_N_TYPE)
{
case MACH_O_N_ABS:
return 1;
case MACH_O_N_SECT:
return 1;
default:
return 0;
}
}
/* Add symbol table information for a Mach-O file. */
static int
macho_add_symtab (struct backtrace_state *state, int descriptor,
uintptr_t base_address, int is_64,
off_t symoff, unsigned int nsyms, off_t stroff,
unsigned int strsize,
backtrace_error_callback error_callback, void *data)
{
size_t symsize;
struct backtrace_view sym_view;
int sym_view_valid;
struct backtrace_view str_view;
int str_view_valid;
size_t ndefs;
size_t symtaboff;
unsigned int i;
size_t macho_symbol_size;
struct macho_symbol *macho_symbols;
unsigned int j;
struct macho_syminfo_data *sdata;
sym_view_valid = 0;
str_view_valid = 0;
macho_symbol_size = 0;
macho_symbols = NULL;
if (is_64)
symsize = sizeof (struct macho_nlist_64);
else
symsize = sizeof (struct macho_nlist);
if (!backtrace_get_view (state, descriptor, symoff, nsyms * symsize,
error_callback, data, &sym_view))
goto fail;
sym_view_valid = 1;
if (!backtrace_get_view (state, descriptor, stroff, strsize,
error_callback, data, &str_view))
return 0;
str_view_valid = 1;
ndefs = 0;
symtaboff = 0;
for (i = 0; i < nsyms; ++i, symtaboff += symsize)
{
if (is_64)
{
struct macho_nlist_64 nlist;
memcpy (&nlist, (const char *) sym_view.data + symtaboff,
sizeof nlist);
if (macho_defined_symbol (nlist.n_type))
++ndefs;
}
else
{
struct macho_nlist nlist;
memcpy (&nlist, (const char *) sym_view.data + symtaboff,
sizeof nlist);
if (macho_defined_symbol (nlist.n_type))
++ndefs;
}
}
/* Add 1 to ndefs to make room for a sentinel. */
macho_symbol_size = (ndefs + 1) * sizeof (struct macho_symbol);
macho_symbols = ((struct macho_symbol *)
backtrace_alloc (state, macho_symbol_size, error_callback,
data));
if (macho_symbols == NULL)
goto fail;
j = 0;
symtaboff = 0;
for (i = 0; i < nsyms; ++i, symtaboff += symsize)
{
uint32_t strx;
uint64_t value;
const char *name;
strx = 0;
value = 0;
if (is_64)
{
struct macho_nlist_64 nlist;
memcpy (&nlist, (const char *) sym_view.data + symtaboff,
sizeof nlist);
if (!macho_defined_symbol (nlist.n_type))
continue;
strx = nlist.n_strx;
value = nlist.n_value;
}
else
{
struct macho_nlist nlist;
memcpy (&nlist, (const char *) sym_view.data + symtaboff,
sizeof nlist);
if (!macho_defined_symbol (nlist.n_type))
continue;
strx = nlist.n_strx;
value = nlist.n_value;
}
if (strx >= strsize)
{
error_callback (data, "symbol string index out of range", 0);
goto fail;
}
name = (const char *) str_view.data + strx;
if (name[0] == '_')
++name;
macho_symbols[j].name = name;
macho_symbols[j].address = value + base_address;
++j;
}
sdata = ((struct macho_syminfo_data *)
backtrace_alloc (state, sizeof *sdata, error_callback, data));
if (sdata == NULL)
goto fail;
/* We need to keep the string table since it holds the names, but we
can release the symbol table. */
backtrace_release_view (state, &sym_view, error_callback, data);
sym_view_valid = 0;
str_view_valid = 0;
/* Add a trailing sentinel symbol. */
macho_symbols[j].name = "";
macho_symbols[j].address = ~(uintptr_t) 0;
backtrace_qsort (macho_symbols, ndefs + 1, sizeof (struct macho_symbol),
macho_symbol_compare);
sdata->next = NULL;
sdata->symbols = macho_symbols;
sdata->count = ndefs;
if (!state->threaded)
{
struct macho_syminfo_data **pp;
for (pp = (struct macho_syminfo_data **) (void *) &state->syminfo_data;
*pp != NULL;
pp = &(*pp)->next)
;
*pp = sdata;
}
else
{
while (1)
{
struct macho_syminfo_data **pp;
pp = (struct macho_syminfo_data **) (void *) &state->syminfo_data;
while (1)
{
struct macho_syminfo_data *p;
p = backtrace_atomic_load_pointer (pp);
if (p == NULL)
break;
pp = &p->next;
}
if (__sync_bool_compare_and_swap (pp, NULL, sdata))
break;
}
}
return 1;
fail:
if (macho_symbols != NULL)
backtrace_free (state, macho_symbols, macho_symbol_size,
error_callback, data);
if (sym_view_valid)
backtrace_release_view (state, &sym_view, error_callback, data);
if (str_view_valid)
backtrace_release_view (state, &str_view, error_callback, data);
return 0;
}
/* Return the symbol name and value for an ADDR. */
static void
macho_syminfo (struct backtrace_state *state, uintptr_t addr,
backtrace_syminfo_callback callback,
backtrace_error_callback error_callback ATTRIBUTE_UNUSED,
void *data)
{
struct macho_syminfo_data *sdata;
struct macho_symbol *sym;
sym = NULL;
if (!state->threaded)
{
for (sdata = (struct macho_syminfo_data *) state->syminfo_data;
sdata != NULL;
sdata = sdata->next)
{
sym = ((struct macho_symbol *)
bsearch (&addr, sdata->symbols, sdata->count,
sizeof (struct macho_symbol), macho_symbol_search));
if (sym != NULL)
break;
}
}
else
{
struct macho_syminfo_data **pp;
pp = (struct macho_syminfo_data **) (void *) &state->syminfo_data;
while (1)
{
sdata = backtrace_atomic_load_pointer (pp);
if (sdata == NULL)
break;
sym = ((struct macho_symbol *)
bsearch (&addr, sdata->symbols, sdata->count,
sizeof (struct macho_symbol), macho_symbol_search));
if (sym != NULL)
break;
pp = &sdata->next;
}
}
if (sym == NULL)
callback (data, addr, NULL, 0, 0);
else
callback (data, addr, sym->name, sym->address, 0);
}
/* Look through a fat file to find the relevant executable. Returns 1
on success, 0 on failure (in both cases descriptor is closed). */
static int
macho_add_fat (struct backtrace_state *state, const char *filename,
int descriptor, int swapped, off_t offset,
const unsigned char *match_uuid, uintptr_t base_address,
int skip_symtab, uint32_t nfat_arch, int is_64,
backtrace_error_callback error_callback, void *data,
fileline *fileline_fn, int *found_sym)
{
int arch_view_valid;
unsigned int cputype;
size_t arch_size;
struct backtrace_view arch_view;
unsigned int i;
arch_view_valid = 0;
#if defined (__x86_64__)
cputype = MACH_O_CPU_TYPE_X86_64;
#elif defined (__i386__)
cputype = MACH_O_CPU_TYPE_X86;
#elif defined (__aarch64__)
cputype = MACH_O_CPU_TYPE_ARM64;
#elif defined (__arm__)
cputype = MACH_O_CPU_TYPE_ARM;
#elif defined (__ppc__)
cputype = MACH_O_CPU_TYPE_PPC;
#elif defined (__ppc64__)
cputype = MACH_O_CPU_TYPE_PPC64;
#else
error_callback (data, "unknown Mach-O architecture", 0);
goto fail;
#endif
if (is_64)
arch_size = sizeof (struct macho_fat_arch_64);
else
arch_size = sizeof (struct macho_fat_arch);
if (!backtrace_get_view (state, descriptor, offset,
nfat_arch * arch_size,
error_callback, data, &arch_view))
goto fail;
for (i = 0; i < nfat_arch; ++i)
{
uint32_t fcputype;
uint64_t foffset;
if (is_64)
{
struct macho_fat_arch_64 fat_arch_64;
memcpy (&fat_arch_64,
(const char *) arch_view.data + i * arch_size,
arch_size);
fcputype = fat_arch_64.cputype;
foffset = fat_arch_64.offset;
if (swapped)
{
fcputype = __builtin_bswap32 (fcputype);
foffset = __builtin_bswap64 (foffset);
}
}
else
{
struct macho_fat_arch fat_arch_32;
memcpy (&fat_arch_32,
(const char *) arch_view.data + i * arch_size,
arch_size);
fcputype = fat_arch_32.cputype;
foffset = (uint64_t) fat_arch_32.offset;
if (swapped)
{
fcputype = __builtin_bswap32 (fcputype);
foffset = (uint64_t) __builtin_bswap32 ((uint32_t) foffset);
}
}
if (fcputype == cputype)
{
/* FIXME: What about cpusubtype? */
backtrace_release_view (state, &arch_view, error_callback, data);
return macho_add (state, filename, descriptor, foffset, match_uuid,
base_address, skip_symtab, error_callback, data,
fileline_fn, found_sym);
}
}
error_callback (data, "could not find executable in fat file", 0);
fail:
if (arch_view_valid)
backtrace_release_view (state, &arch_view, error_callback, data);
if (descriptor != -1)
backtrace_close (descriptor, error_callback, data);
return 0;
}
/* Look for the dsym file for FILENAME. This is called if FILENAME
does not have debug info or a symbol table. Returns 1 on success,
0 on failure. */
static int
macho_add_dsym (struct backtrace_state *state, const char *filename,
uintptr_t base_address, const unsigned char *uuid,
backtrace_error_callback error_callback, void *data,
fileline* fileline_fn)
{
const char *p;
const char *dirname;
char *diralc;
size_t dirnamelen;
const char *basename;
size_t basenamelen;
const char *dsymsuffixdir;
size_t dsymsuffixdirlen;
size_t dsymlen;
char *dsym;
char *ps;
int d;
int does_not_exist;
int dummy_found_sym;
diralc = NULL;
dirnamelen = 0;
dsym = NULL;
dsymlen = 0;
p = strrchr (filename, '/');
if (p == NULL)
{
dirname = ".";
dirnamelen = 1;
basename = filename;
basenamelen = strlen (basename);
diralc = NULL;
}
else
{
dirnamelen = p - filename;
diralc = (char*)backtrace_alloc (state, dirnamelen + 1, error_callback, data);
if (diralc == NULL)
goto fail;
memcpy (diralc, filename, dirnamelen);
diralc[dirnamelen] = '\0';
dirname = diralc;
basename = p + 1;
basenamelen = strlen (basename);
}
dsymsuffixdir = ".dSYM/Contents/Resources/DWARF/";
dsymsuffixdirlen = strlen (dsymsuffixdir);
dsymlen = (dirnamelen
+ 1
+ basenamelen
+ dsymsuffixdirlen
+ basenamelen
+ 1);
dsym = (char*)backtrace_alloc (state, dsymlen, error_callback, data);
if (dsym == NULL)
goto fail;
ps = dsym;
memcpy (ps, dirname, dirnamelen);
ps += dirnamelen;
*ps++ = '/';
memcpy (ps, basename, basenamelen);
ps += basenamelen;
memcpy (ps, dsymsuffixdir, dsymsuffixdirlen);
ps += dsymsuffixdirlen;
memcpy (ps, basename, basenamelen);
ps += basenamelen;
*ps = '\0';
if (diralc != NULL)
{
backtrace_free (state, diralc, dirnamelen + 1, error_callback, data);
diralc = NULL;
}
d = backtrace_open (dsym, error_callback, data, &does_not_exist);
if (d < 0)
{
/* The file does not exist, so we can't read the debug info.
Just return success. */
backtrace_free (state, dsym, dsymlen, error_callback, data);
return 1;
}
if (!macho_add (state, dsym, d, 0, uuid, base_address, 1,
error_callback, data, fileline_fn, &dummy_found_sym))
goto fail;
backtrace_free (state, dsym, dsymlen, error_callback, data);
return 1;
fail:
if (dsym != NULL)
backtrace_free (state, dsym, dsymlen, error_callback, data);
if (diralc != NULL)
backtrace_free (state, diralc, dirnamelen, error_callback, data);
return 0;
}
/* Add the backtrace data for a Macho-O file. Returns 1 on success, 0
on failure (in both cases descriptor is closed).
FILENAME: the name of the executable.
DESCRIPTOR: an open descriptor for the executable, closed here.
OFFSET: the offset within the file of this executable, for fat files.
MATCH_UUID: if not NULL, UUID that must match.
BASE_ADDRESS: the load address of the executable.
SKIP_SYMTAB: if non-zero, ignore the symbol table; used for dSYM files.
FILELINE_FN: set to the fileline function, by backtrace_dwarf_add.
FOUND_SYM: set to non-zero if we found the symbol table.
*/
static int
macho_add (struct backtrace_state *state, const char *filename, int descriptor,
off_t offset, const unsigned char *match_uuid,
uintptr_t base_address, int skip_symtab,
backtrace_error_callback error_callback, void *data,
fileline *fileline_fn, int *found_sym)
{
struct backtrace_view header_view;
struct macho_header_32 header;
off_t hdroffset;
int is_64;
struct backtrace_view cmds_view;
int cmds_view_valid;
struct dwarf_sections dwarf_sections;
int have_dwarf;
unsigned char uuid[MACH_O_UUID_LEN];
int have_uuid;
size_t cmdoffset;
unsigned int i;
*found_sym = 0;
cmds_view_valid = 0;
/* The 32-bit and 64-bit file headers start out the same, so we can
just always read the 32-bit version. A fat header is shorter but
it will always be followed by data, so it's OK to read extra. */
if (!backtrace_get_view (state, descriptor, offset,
sizeof (struct macho_header_32),
error_callback, data, &header_view))
goto fail;
memcpy (&header, header_view.data, sizeof header);
backtrace_release_view (state, &header_view, error_callback, data);
switch (header.magic)
{
case MACH_O_MH_MAGIC_32:
is_64 = 0;
hdroffset = offset + sizeof (struct macho_header_32);
break;
case MACH_O_MH_MAGIC_64:
is_64 = 1;
hdroffset = offset + sizeof (struct macho_header_64);
break;
case MACH_O_MH_MAGIC_FAT:
case MACH_O_MH_MAGIC_FAT_64:
{
struct macho_header_fat fat_header;
hdroffset = offset + sizeof (struct macho_header_fat);
memcpy (&fat_header, &header, sizeof fat_header);
return macho_add_fat (state, filename, descriptor, 0, hdroffset,
match_uuid, base_address, skip_symtab,
fat_header.nfat_arch,
header.magic == MACH_O_MH_MAGIC_FAT_64,
error_callback, data, fileline_fn, found_sym);
}
case MACH_O_MH_CIGAM_FAT:
case MACH_O_MH_CIGAM_FAT_64:
{
struct macho_header_fat fat_header;
uint32_t nfat_arch;
hdroffset = offset + sizeof (struct macho_header_fat);
memcpy (&fat_header, &header, sizeof fat_header);
nfat_arch = __builtin_bswap32 (fat_header.nfat_arch);
return macho_add_fat (state, filename, descriptor, 1, hdroffset,
match_uuid, base_address, skip_symtab,
nfat_arch,
header.magic == MACH_O_MH_CIGAM_FAT_64,
error_callback, data, fileline_fn, found_sym);
}
default:
error_callback (data, "executable file is not in Mach-O format", 0);
goto fail;
}
switch (header.filetype)
{
case MACH_O_MH_EXECUTE:
case MACH_O_MH_DYLIB:
case MACH_O_MH_DSYM:
break;
default:
error_callback (data, "executable file is not an executable", 0);
goto fail;
}
if (!backtrace_get_view (state, descriptor, hdroffset, header.sizeofcmds,
error_callback, data, &cmds_view))
goto fail;
cmds_view_valid = 1;
memset (&dwarf_sections, 0, sizeof dwarf_sections);
have_dwarf = 0;
memset (&uuid, 0, sizeof uuid);
have_uuid = 0;
cmdoffset = 0;
for (i = 0; i < header.ncmds; ++i)
{
const char *pcmd;
struct macho_load_command load_command;
if (cmdoffset + sizeof load_command > header.sizeofcmds)
break;
pcmd = (const char *) cmds_view.data + cmdoffset;
memcpy (&load_command, pcmd, sizeof load_command);
switch (load_command.cmd)
{
case MACH_O_LC_SEGMENT:
{
struct macho_segment_command segcmd;
memcpy (&segcmd, pcmd, sizeof segcmd);
if (memcmp (segcmd.segname,
"__DWARF\0\0\0\0\0\0\0\0\0",
MACH_O_NAMELEN) == 0)
{
if (!macho_add_dwarf_segment (state, descriptor, offset,
load_command.cmd,
pcmd + sizeof segcmd,
(load_command.cmdsize
- sizeof segcmd),
segcmd.nsects, error_callback,
data, &dwarf_sections))
goto fail;
have_dwarf = 1;
}
}
break;
case MACH_O_LC_SEGMENT_64:
{
struct macho_segment_64_command segcmd;
memcpy (&segcmd, pcmd, sizeof segcmd);
if (memcmp (segcmd.segname,
"__DWARF\0\0\0\0\0\0\0\0\0",
MACH_O_NAMELEN) == 0)
{
if (!macho_add_dwarf_segment (state, descriptor, offset,
load_command.cmd,
pcmd + sizeof segcmd,
(load_command.cmdsize
- sizeof segcmd),
segcmd.nsects, error_callback,
data, &dwarf_sections))
goto fail;
have_dwarf = 1;
}
}
break;
case MACH_O_LC_SYMTAB:
if (!skip_symtab)
{
struct macho_symtab_command symcmd;
memcpy (&symcmd, pcmd, sizeof symcmd);
if (!macho_add_symtab (state, descriptor, base_address, is_64,
offset + symcmd.symoff, symcmd.nsyms,
offset + symcmd.stroff, symcmd.strsize,
error_callback, data))
goto fail;
*found_sym = 1;
}
break;
case MACH_O_LC_UUID:
{
struct macho_uuid_command uuidcmd;
memcpy (&uuidcmd, pcmd, sizeof uuidcmd);
memcpy (&uuid[0], &uuidcmd.uuid[0], MACH_O_UUID_LEN);
have_uuid = 1;
}
break;
default:
break;
}
cmdoffset += load_command.cmdsize;
}
if (!backtrace_close (descriptor, error_callback, data))
goto fail;
descriptor = -1;
backtrace_release_view (state, &cmds_view, error_callback, data);
cmds_view_valid = 0;
if (match_uuid != NULL)
{
/* If we don't have a UUID, or it doesn't match, just ignore
this file. */
if (!have_uuid
|| memcmp (match_uuid, &uuid[0], MACH_O_UUID_LEN) != 0)
return 1;
}
if (have_dwarf)
{
int is_big_endian;
is_big_endian = 0;
#if defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__)
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
is_big_endian = 1;
#endif
#endif
if (!backtrace_dwarf_add (state, base_address, &dwarf_sections,
is_big_endian, NULL, error_callback, data,
fileline_fn, NULL))
goto fail;
}
if (!have_dwarf && have_uuid)
{
if (!macho_add_dsym (state, filename, base_address, &uuid[0],
error_callback, data, fileline_fn))
goto fail;
}
return 1;
fail:
if (cmds_view_valid)
backtrace_release_view (state, &cmds_view, error_callback, data);
if (descriptor != -1)
backtrace_close (descriptor, error_callback, data);
return 0;
}
#ifdef HAVE_MACH_O_DYLD_H
/* Initialize the backtrace data we need from a Mach-O executable
using the dyld support functions. This closes descriptor. */
int
backtrace_initialize (struct backtrace_state *state, const char *filename,
int descriptor, backtrace_error_callback error_callback,
void *data, fileline *fileline_fn)
{
uint32_t c;
uint32_t i;
int closed_descriptor;
int found_sym;
fileline macho_fileline_fn;
closed_descriptor = 0;
found_sym = 0;
macho_fileline_fn = macho_nodebug;
c = _dyld_image_count ();
for (i = 0; i < c; ++i)
{
uintptr_t base_address;
const char *name;
int d;
fileline mff;
int mfs;
name = _dyld_get_image_name (i);
if (name == NULL)
continue;
if (strcmp (name, filename) == 0 && !closed_descriptor)
{
d = descriptor;
closed_descriptor = 1;
}
else
{
int does_not_exist;
d = backtrace_open (name, error_callback, data, &does_not_exist);
if (d < 0)
continue;
}
base_address = _dyld_get_image_vmaddr_slide (i);
mff = macho_nodebug;
if (!macho_add (state, name, d, 0, NULL, base_address, 0,
error_callback, data, &mff, &mfs))
return 0;
if (mff != macho_nodebug)
macho_fileline_fn = mff;
if (mfs)
found_sym = 1;
}
if (!closed_descriptor)
backtrace_close (descriptor, error_callback, data);
if (!state->threaded)
{
if (found_sym)
state->syminfo_fn = macho_syminfo;
else if (state->syminfo_fn == NULL)
state->syminfo_fn = macho_nosyms;
}
else
{
if (found_sym)
backtrace_atomic_store_pointer (&state->syminfo_fn, &macho_syminfo);
else
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
macho_nosyms);
}
if (!state->threaded)
*fileline_fn = state->fileline_fn;
else
*fileline_fn = backtrace_atomic_load_pointer (&state->fileline_fn);
if (*fileline_fn == NULL || *fileline_fn == macho_nodebug)
*fileline_fn = macho_fileline_fn;
return 1;
}
#else /* !defined (HAVE_MACH_O_DYLD_H) */
/* Initialize the backtrace data we need from a Mach-O executable
without using the dyld support functions. This closes
descriptor. */
int
backtrace_initialize (struct backtrace_state *state, const char *filename,
int descriptor, backtrace_error_callback error_callback,
void *data, fileline *fileline_fn)
{
fileline macho_fileline_fn;
int found_sym;
macho_fileline_fn = macho_nodebug;
if (!macho_add (state, filename, descriptor, 0, NULL, 0, 0,
error_callback, data, &macho_fileline_fn, &found_sym))
return 0;
if (!state->threaded)
{
if (found_sym)
state->syminfo_fn = macho_syminfo;
else if (state->syminfo_fn == NULL)
state->syminfo_fn = macho_nosyms;
}
else
{
if (found_sym)
backtrace_atomic_store_pointer (&state->syminfo_fn, &macho_syminfo);
else
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
macho_nosyms);
}
if (!state->threaded)
*fileline_fn = state->fileline_fn;
else
*fileline_fn = backtrace_atomic_load_pointer (&state->fileline_fn);
if (*fileline_fn == NULL || *fileline_fn == macho_nodebug)
*fileline_fn = macho_fileline_fn;
return 1;
}
#endif /* !defined (HAVE_MACH_O_DYLD_H) */
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/macho.cpp
|
C++
|
gpl-3.0
| 36,137
|
/* mmapio.c -- File views using mmap.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <errno.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <unistd.h>
#include "backtrace.hpp"
#include "internal.hpp"
#ifndef HAVE_DECL_GETPAGESIZE
extern int getpagesize (void);
#endif
#ifndef MAP_FAILED
#define MAP_FAILED ((void *)-1)
#endif
namespace tracy
{
/* This file implements file views and memory allocation when mmap is
available. */
/* Create a view of SIZE bytes from DESCRIPTOR at OFFSET. */
int
backtrace_get_view (struct backtrace_state *state ATTRIBUTE_UNUSED,
int descriptor, off_t offset, uint64_t size,
backtrace_error_callback error_callback,
void *data, struct backtrace_view *view)
{
size_t pagesize;
unsigned int inpage;
off_t pageoff;
void *map;
if ((uint64_t) (size_t) size != size)
{
error_callback (data, "file size too large", 0);
return 0;
}
pagesize = getpagesize ();
inpage = offset % pagesize;
pageoff = offset - inpage;
size += inpage;
size = (size + (pagesize - 1)) & ~ (pagesize - 1);
map = mmap (NULL, size, PROT_READ, MAP_PRIVATE, descriptor, pageoff);
if (map == MAP_FAILED)
{
error_callback (data, "mmap", errno);
return 0;
}
view->data = (char *) map + inpage;
view->base = map;
view->len = size;
return 1;
}
/* Release a view read by backtrace_get_view. */
void
backtrace_release_view (struct backtrace_state *state ATTRIBUTE_UNUSED,
struct backtrace_view *view,
backtrace_error_callback error_callback,
void *data)
{
union {
const void *cv;
void *v;
} cc;
cc.cv = view->base;
if (munmap (cc.v, view->len) < 0)
error_callback (data, "munmap", errno);
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/mmapio.cpp
|
C++
|
gpl-3.0
| 3,185
|
/* posix.c -- POSIX file I/O routines for the backtrace library.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "backtrace.hpp"
#include "internal.hpp"
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif
#ifndef FD_CLOEXEC
#define FD_CLOEXEC 1
#endif
namespace tracy
{
/* Open a file for reading. */
int
backtrace_open (const char *filename, backtrace_error_callback error_callback,
void *data, int *does_not_exist)
{
int descriptor;
if (does_not_exist != NULL)
*does_not_exist = 0;
descriptor = open (filename, (int) (O_RDONLY | O_BINARY | O_CLOEXEC));
if (descriptor < 0)
{
/* If DOES_NOT_EXIST is not NULL, then don't call ERROR_CALLBACK
if the file does not exist. We treat lacking permission to
open the file as the file not existing; this case arises when
running the libgo syscall package tests as root. */
if (does_not_exist != NULL && (errno == ENOENT || errno == EACCES))
*does_not_exist = 1;
else
error_callback (data, filename, errno);
return -1;
}
#ifdef HAVE_FCNTL
/* Set FD_CLOEXEC just in case the kernel does not support
O_CLOEXEC. It doesn't matter if this fails for some reason.
FIXME: At some point it should be safe to only do this if
O_CLOEXEC == 0. */
fcntl (descriptor, F_SETFD, FD_CLOEXEC);
#endif
return descriptor;
}
/* Close DESCRIPTOR. */
int
backtrace_close (int descriptor, backtrace_error_callback error_callback,
void *data)
{
if (close (descriptor) < 0)
{
error_callback (data, "close", errno);
return 0;
}
return 1;
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/posix.cpp
|
C++
|
gpl-3.0
| 3,169
|
/* sort.c -- Sort without allocating memory
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <stddef.h>
#include <sys/types.h>
#include "backtrace.hpp"
#include "internal.hpp"
namespace tracy
{
/* The GNU glibc version of qsort allocates memory, which we must not
do if we are invoked by a signal handler. So provide our own
sort. */
static void
swap (char *a, char *b, size_t size)
{
size_t i;
for (i = 0; i < size; i++, a++, b++)
{
char t;
t = *a;
*a = *b;
*b = t;
}
}
void
backtrace_qsort (void *basearg, size_t count, size_t size,
int (*compar) (const void *, const void *))
{
char *base = (char *) basearg;
size_t i;
size_t mid;
tail_recurse:
if (count < 2)
return;
/* The symbol table and DWARF tables, which is all we use this
routine for, tend to be roughly sorted. Pick the middle element
in the array as our pivot point, so that we are more likely to
cut the array in half for each recursion step. */
swap (base, base + (count / 2) * size, size);
mid = 0;
for (i = 1; i < count; i++)
{
if ((*compar) (base, base + i * size) > 0)
{
++mid;
if (i != mid)
swap (base + mid * size, base + i * size, size);
}
}
if (mid > 0)
swap (base, base + mid * size, size);
/* Recurse with the smaller array, loop with the larger one. That
ensures that our maximum stack depth is log count. */
if (2 * mid < count)
{
backtrace_qsort (base, mid, size, compar);
base += (mid + 1) * size;
count -= mid + 1;
goto tail_recurse;
}
else
{
backtrace_qsort (base + (mid + 1) * size, count - (mid + 1),
size, compar);
count = mid;
goto tail_recurse;
}
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/sort.cpp
|
C++
|
gpl-3.0
| 3,201
|
/* state.c -- Create the backtrace state.
Copyright (C) 2012-2021 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3) The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */
#include "config.h"
#include <string.h>
#include <sys/types.h>
#include "backtrace.hpp"
#include "internal.hpp"
namespace tracy
{
/* Create the backtrace state. This will then be passed to all the
other routines. */
struct backtrace_state *
backtrace_create_state (const char *filename, int threaded,
backtrace_error_callback error_callback,
void *data)
{
struct backtrace_state init_state;
struct backtrace_state *state;
#ifndef HAVE_SYNC_FUNCTIONS
if (threaded)
{
error_callback (data, "backtrace library does not support threads", 0);
return NULL;
}
#endif
memset (&init_state, 0, sizeof init_state);
init_state.filename = filename;
init_state.threaded = threaded;
state = ((struct backtrace_state *)
backtrace_alloc (&init_state, sizeof *state, error_callback, data));
if (state == NULL)
return NULL;
*state = init_state;
return state;
}
}
|
whupdup/frame
|
real/third_party/tracy/libbacktrace/state.cpp
|
C++
|
gpl-3.0
| 2,426
|
all: release
debug:
@+make -f debug.mk all
release:
@+make -f release.mk all
clean:
@+make -f build.mk clean
db: clean
@bear -- $(MAKE) -f debug.mk all
@mv -f compile_commands.json ../../
.PHONY: all clean debug release db
|
whupdup/frame
|
real/third_party/tracy/library/unix/Makefile
|
Makefile
|
gpl-3.0
| 233
|
CFLAGS +=
CXXFLAGS := $(CFLAGS) -std=c++11 -fpic
DEFINES += -DTRACY_ENABLE
INCLUDES :=
LIBS := -lpthread -ldl
PROJECT := libtracy
IMAGE := $(PROJECT)-$(BUILD).so
SHARED_LIBRARY := yes
SRC := ../../TracyClient.cpp
include ../../common/unix.mk
|
whupdup/frame
|
real/third_party/tracy/library/unix/build.mk
|
mk
|
gpl-3.0
| 244
|
ARCH := $(shell uname -m)
CFLAGS := -g3 -Wall
DEFINES := -DDEBUG
BUILD := debug
ifndef TRACY_NO_ISA_EXTENSIONS
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
endif
include build.mk
|
whupdup/frame
|
real/third_party/tracy/library/unix/debug.mk
|
mk
|
gpl-3.0
| 184
|
ARCH := $(shell uname -m)
CFLAGS := -O3 -s
DEFINES := -DNDEBUG
BUILD := release
ifndef TRACY_NO_ISA_EXTENSIONS
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
endif
include build.mk
|
whupdup/frame
|
real/third_party/tracy/library/unix/release.mk
|
mk
|
gpl-3.0
| 184
|
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30907.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracyProfiler", "TracyProfiler.vcxproj", "{C5B825D3-F140-45AB-8A47-B740E56631FB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Release|x64 = Release|x64
ReleaseOnDemand|x64 = ReleaseOnDemand|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C5B825D3-F140-45AB-8A47-B740E56631FB}.Release|x64.ActiveCfg = Release|x64
{C5B825D3-F140-45AB-8A47-B740E56631FB}.Release|x64.Build.0 = Release|x64
{C5B825D3-F140-45AB-8A47-B740E56631FB}.ReleaseOnDemand|x64.ActiveCfg = ReleaseOnDemand|x64
{C5B825D3-F140-45AB-8A47-B740E56631FB}.ReleaseOnDemand|x64.Build.0 = ReleaseOnDemand|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E739AC0A-0937-46D7-8807-1EE95CEB576D}
EndGlobalSection
EndGlobal
|
whupdup/frame
|
real/third_party/tracy/library/win32/TracyProfiler.sln
|
sln
|
gpl-3.0
| 1,119
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="ReleaseOnDemand|Win32">
<Configuration>ReleaseOnDemand</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="ReleaseOnDemand|x64">
<Configuration>ReleaseOnDemand</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\TracyClient.cpp" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<ProjectGuid>{C5B825D3-F140-45AB-8A47-B740E56631FB}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>TracyProfiler</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|Win32'">
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>TRACY_ENABLE;NDEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOnDemand|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>TRACY_ON_DEMAND;TRACY_ENABLE;NDEBUG;TRACY_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
|
whupdup/frame
|
real/third_party/tracy/library/win32/TracyProfiler.vcxproj
|
vcxproj
|
gpl-3.0
| 11,425
|
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="..\..\TracyClient.cpp" />
</ItemGroup>
</Project>
|
whupdup/frame
|
real/third_party/tracy/library/win32/TracyProfiler.vcxproj.filters
|
filters
|
gpl-3.0
| 220
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="9.9250002mm"
height="8.3374996mm"
viewBox="0 0 9.9250002 8.3374996"
version="1.1"
id="svg8"
sodipodi:docname="lmb.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-13.462506"
inkscape:cy="12.070679"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-53.245835"
originy="-252.47712" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-53.245833,-36.185375)">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 217,137.51953 c -8.31,0 -15,6.69 -15,15 v 15 h 36 v -15 c 0,-8.31 -6.69,-15 -15,-15 z"
transform="scale(0.26458333)"
id="rect817"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.208333,36.385416 v 1.322917"
id="path829"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 58.208333,41.677083 V 43"
id="path829-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect827"
width="1.5875001"
height="3.96875"
x="57.414581"
y="37.708332"
ry="0.52916664"
rx="0.52916658" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57.414581,36.385411 c -2.198687,0 -3.96875,1.770063 -3.96875,3.96875 v 3.96875 h 4.7625 v -2.645833 h -0.264583 c -0.293159,0 -0.529167,-0.236009 -0.529167,-0.529167 v -2.910417 c 0,-0.293158 0.236008,-0.529166 0.529167,-0.529166 h 0.264583 v -1.322917 z"
id="rect817-6-9" />
</g>
</svg>
|
whupdup/frame
|
real/third_party/tracy/manual/icons/lmb.svg
|
svg
|
gpl-3.0
| 3,735
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="9.9250002mm"
height="8.3374996mm"
viewBox="0 0 9.9250002 8.3374996"
version="1.1"
id="svg8"
sodipodi:docname="mmb.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="1.0464222"
inkscape:cy="12.070679"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-53.245835"
originy="-252.47712" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-53.245833,-36.185375)">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 217,137.51953 c -8.31,0 -15,6.69 -15,15 v 15 h 36 v -15 c 0,-8.31 -6.69,-15 -15,-15 z"
transform="scale(0.26458333)"
id="rect817"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.208333,36.385416 v 1.322917"
id="path829"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 58.208333,41.677083 V 43"
id="path829-0"
inkscape:connector-curvature="0" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect827"
width="1.5875001"
height="3.96875"
x="57.414581"
y="37.708332"
ry="0.52916664"
rx="0.52916658" />
</g>
</svg>
|
whupdup/frame
|
real/third_party/tracy/manual/icons/mmb.svg
|
svg
|
gpl-3.0
| 3,209
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="9.9250002mm"
height="8.3374996mm"
viewBox="0 0 9.9250002 8.3374996"
version="1.1"
id="svg8"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="mouse.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="8.1922875"
inkscape:cy="8.1173071"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-53.245835"
originy="-252.47712" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-53.245833,-36.185375)">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 217,137.51953 c -8.31,0 -15,6.69 -15,15 v 15 h 36 v -15 c 0,-8.31 -6.69,-15 -15,-15 z"
transform="scale(0.26458333)"
id="rect817"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect827"
width="1.5875001"
height="3.96875"
x="57.414581"
y="37.708332"
ry="0.52916664"
rx="0.52916658" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.208333,36.385416 v 1.322917"
id="path829"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 58.208333,41.677083 V 43"
id="path829-0"
inkscape:connector-curvature="0" />
</g>
</svg>
|
whupdup/frame
|
real/third_party/tracy/manual/icons/mouse.svg
|
svg
|
gpl-3.0
| 3,213
|
%PDF-1.5
%����
4 0 obj
<< /Length 5 0 R
/Filter /FlateDecode
>>
stream
x�uRAn!���@)f���\"U�!��ꡢR��=�=��e�l0M�h<�g�P����L�OSp����倏O?@���5_=���Q+��`�/H�����H����tʅ����Ǒa�E翄f�b?���\�(�Qz5m�#~���Q.u��;�Ҷ�0��8U���e�d͢�^����
J]�[���m`��Y5ۀc�1�Mx�a����&�"��Zl�]{�^�F�!]�+v��2$4"��_��#w_5��>�F}W���E�@�c'�Ƙ�����M��Ҩd�2�4!J��`����=�;ʴ*'��g���E��
endstream
endobj
5 0 obj
318
endobj
3 0 obj
<<
/ExtGState <<
/a0 << /CA 1 /ca 1 >>
>>
>>
endobj
2 0 obj
<< /Type /Page
/Parent 1 0 R
/MediaBox [ 0 0 28.13386 23.633858 ]
/Contents 4 0 R
/Group <<
/Type /Group
/S /Transparency
/I true
/CS /DeviceRGB
>>
/Resources 3 0 R
>>
endobj
1 0 obj
<< /Type /Pages
/Kids [ 2 0 R ]
/Count 1
>>
endobj
6 0 obj
<< /Nums [
]
>>
endobj
7 0 obj
<< /Producer (cairo 1.15.6 (http://cairographics.org))
>>
endobj
8 0 obj
<< /Type /Catalog
/Pages 1 0 R
/PageLabels 6 0 R
>>
endobj
xref
0 9
0000000000 65535 f
0000000729 00000 n
0000000504 00000 n
0000000432 00000 n
0000000015 00000 n
0000000410 00000 n
0000000794 00000 n
0000000827 00000 n
0000000900 00000 n
trailer
<< /Size 9
/Root 8 0 R
/Info 7 0 R
>>
startxref
973
%%EOF
|
whupdup/frame
|
real/third_party/tracy/manual/icons/rmb.pdf
|
pdf
|
gpl-3.0
| 1,234
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="9.9250002mm"
height="8.3374996mm"
viewBox="0 0 9.9250002 8.3374996"
version="1.1"
id="svg8"
sodipodi:docname="rmb.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="1.0464222"
inkscape:cy="12.070679"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-53.245835"
originy="-252.47712" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-53.245833,-36.185375)">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 217,137.51953 c -8.31,0 -15,6.69 -15,15 v 15 h 36 v -15 c 0,-8.31 -6.69,-15 -15,-15 z"
transform="scale(0.26458333)"
id="rect817"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.208333,36.385416 v 1.322917"
id="path829"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 58.208333,41.677083 V 43"
id="path829-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect827"
width="1.5875001"
height="3.96875"
x="57.414581"
y="37.708332"
ry="0.52916664"
rx="0.52916658" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 59.002081,36.385411 c 2.198687,0 3.96875,1.770063 3.96875,3.96875 v 3.96875 h -4.7625 v -2.645833 h 0.264583 c 0.293159,0 0.529167,-0.236009 0.529167,-0.529167 v -2.910417 c 0,-0.293158 -0.236008,-0.529166 -0.529167,-0.529166 h -0.264583 v -1.322917 z"
id="rect817-6-9" />
</g>
</svg>
|
whupdup/frame
|
real/third_party/tracy/manual/icons/rmb.svg
|
svg
|
gpl-3.0
| 3,731
|
%PDF-1.5
%����
4 0 obj
<< /Length 5 0 R
/Filter /FlateDecode
>>
stream
x�uS=k1��+4N��u�ڥP�v,��e�t�߯l��]�px��ޓ�#���c1X}���K���4�!��/�^�Q}|�F
���+,@���LA��g��}l���I���3�1cu}��;�\Ơ��(ڮ?����;�M�m�ȶ��ϕ�g�_�m�M�==[2�@��t�c��@i�a��/CT�Ew��)6�'"�&�\l�e
��|��H�⊽lG`1���_�Zֳ�=�(?��{I�9U��o}��=��jc��e/�l 2#�d|��2�q���\���s=>�8E$nif��Ow],�{[I4b�#�ʁ�
O��gc��[F�w�e)�;����S
endstream
endobj
5 0 obj
355
endobj
3 0 obj
<<
/ExtGState <<
/a0 << /CA 1 /ca 1 >>
>>
>>
endobj
2 0 obj
<< /Type /Page
/Parent 1 0 R
/MediaBox [ 0 0 28.13386 23.633858 ]
/Contents 4 0 R
/Group <<
/Type /Group
/S /Transparency
/I true
/CS /DeviceRGB
>>
/Resources 3 0 R
>>
endobj
1 0 obj
<< /Type /Pages
/Kids [ 2 0 R ]
/Count 1
>>
endobj
6 0 obj
<< /Nums [
]
>>
endobj
7 0 obj
<< /Producer (cairo 1.15.6 (http://cairographics.org))
>>
endobj
8 0 obj
<< /Type /Catalog
/Pages 1 0 R
/PageLabels 6 0 R
>>
endobj
xref
0 9
0000000000 65535 f
0000000766 00000 n
0000000541 00000 n
0000000469 00000 n
0000000015 00000 n
0000000447 00000 n
0000000831 00000 n
0000000864 00000 n
0000000937 00000 n
trailer
<< /Size 9
/Root 8 0 R
/Info 7 0 R
>>
startxref
1010
%%EOF
|
whupdup/frame
|
real/third_party/tracy/manual/icons/scroll.pdf
|
pdf
|
gpl-3.0
| 1,272
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="9.9250002mm"
height="8.3374996mm"
viewBox="0 0 9.9250002 8.3374996"
version="1.1"
id="svg8"
sodipodi:docname="scroll.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Send"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path4635"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.2) rotate(180) translate(6,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Sstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Sstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4632"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.2) translate(6,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Mstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4626"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) translate(10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4620"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="17.956776"
inkscape:cy="10.507755"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-53.245835"
originy="-252.47712" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-53.245833,-36.185375)">
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 217,137.51953 c -8.31,0 -15,6.69 -15,15 v 15 h 36 v -15 c 0,-8.31 -6.69,-15 -15,-15 z"
transform="scale(0.26458333)"
id="rect817"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.208333,36.385416 v 1.322917"
id="path829"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 58.208333,41.677083 V 43"
id="path829-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect827"
width="1.5875001"
height="3.96875"
x="57.414581"
y="37.708332"
ry="0.52916664"
rx="0.52916658" />
<path
style="fill:none;stroke:#000000;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-start:url(#Arrow1Sstart);marker-end:url(#Arrow1Send)"
d="m 60.060415,37.708328 v 5.291667"
id="path4618"
inkscape:connector-curvature="0" />
</g>
</svg>
|
whupdup/frame
|
real/third_party/tracy/manual/icons/scroll.svg
|
svg
|
gpl-3.0
| 5,479
|
% !TeX spellcheck = en_US
\documentclass[hidelinks,titlepage,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{newpxtext,newpxmath}
\linespread{1.05} % Line spacing - Palatino needs more space between lines
\usepackage{microtype}
\usepackage[group-separator={,}]{siunitx}
\usepackage[tikz]{bclogo}
\usepackage{pgfplots}
\usepackage{appendix}
\usepackage{verbatim}
\usepackage[hyphens]{url}
\usepackage{hyperref} % For hyperlinks in the PDF
\usepackage{fontawesome5}
\usepackage[os=win]{menukeys}
\usepackage[hmarginratio=1:1,top=32mm,columnsep=20pt]{geometry} % Document margins
\geometry{a4paper,textwidth=6.5in,hmarginratio=1:1,
textheight=9in,vmarginratio=1:1,heightrounded}
\usepackage{titlesec}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\usepackage{fancyhdr} % Headers and footers
\pagestyle{fancy} % All pages have headers and footers
\fancyhead{} % Blank out the default header
\fancyfoot{} % Blank out the default footer
\fancyhead[L]{Tracy Profiler}
\fancyhead[R]{Technical documentation}
\fancyfoot[RO]{\thepage} % Custom footer text
\usepackage{listings}
\usepackage{xcolor}
\usepackage{float}
\lstset{language=C++}
\lstset{
basicstyle=\footnotesize\ttfamily,
tabsize=4,
extendedchars=true,
breaklines=true,
stringstyle=\ttfamily,
showspaces=false,
xleftmargin=17pt,
framexleftmargin=17pt,
framexrightmargin=5pt,
framexbottommargin=4pt,
showstringspaces=false,
escapeinside={@}{@},
aboveskip=\baselineskip,
belowskip=\baselineskip
}
\usepackage[hang, small,labelfont=bf,up,textfont=it,up]{caption} % Custom captions under/above floats in tables or figures
\usepackage{tikz}
\usetikzlibrary{arrows.meta,positioning,shapes,patterns}
\newcommand{\LMB}{\includegraphics[height=.8\baselineskip]{icons/lmb}}
\newcommand{\RMB}{\includegraphics[height=.8\baselineskip]{icons/rmb}}
\newcommand{\MMB}{\includegraphics[height=.8\baselineskip]{icons/mmb}}
\newcommand{\Scroll}{\includegraphics[height=.8\baselineskip]{icons/scroll}}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=1.5pt] (char) {#1};}}
\begin{document}
\begin{titlepage}
\centering
{\fontsize{120}{140}\selectfont Tracy Profiler}
\vspace{50pt} {\Huge\fontfamily{lmtt}\selectfont Technical documentation}
\vfill \includegraphics[height=40mm]{../icon/icon}
\vfill
\large\textbf{Bartosz Taudul} \href{mailto:wolf@nereid.pl}{<wolf@nereid.pl>}
\vspace{10pt}
\today
\vfill
\url{https://github.com/wolfpld/tracy}
\end{titlepage}
\begin{abstract}
This is the technical documentation of the Tracy Profiler. It is meant as a guide for developers who want to learn how Tracy works in detail, add new features, or fix bugs. If you only want to use the profiler in your application, you will not find anything of interest here and you should instead read \emph{The user manual}, which describes how the profiler can be used.
This document assumes that you have basic knowledge of how the Tracy Profiler works, as the concepts which are already described in the user manual won't be covered here.
The information found in this documentation is intended to give you only a brief overview of the algorithms and data structures used in the profiler. It may be incomplete, cursory, or even plainly wrong. This is not a requirements specification. As usual, the source code is the ultimate place to gain knowledge and insight. You are expected to do your homework.
\end{abstract}
\tableofcontents
\newpage
\section{Source repository structure}
Tracy Profiler is split into the following parts:
\begin{itemize}
\item Source files in the root directory -- public interface to used by the profiled applications. Part of the client.
\item \emph{client} directory -- private source files specific to the client part of the profiler.
\item \emph{common} directory -- private source files shared by both the client and server parts.
\item \emph{server} directory -- private source files specific to the server part of the profiler.
\item End user applications
\begin{itemize}
\item \emph{capture} directory -- command line server interface.
\item \emph{profiler} directory -- GUI server interface.
\item \emph{update} directory -- server wrapper which loads and then saves the trace file.
\end{itemize}
\item \emph{test} directory -- command line program used to test client integration.
\item \emph{doc}, \emph{icon}, \emph{manual} directories -- documentation and image assets.
\item \emph{imgui}, \emph{imguicolortextedit}, \emph{libbacktrace}, \emph{nfd} directories -- external libraries used by the profiler.
\end{itemize}
\section{Build process}
End user applications are using MSVC as a base for development. The project files are located in the \texttt{build/win32} directory. Unix build system, located in the \texttt{build/unix} directory is extracting source file list from the MSVC solution and optionally can filter-out some source files or add another. Refer to the build scripts of \texttt{profiler} utility for an example.
\subsection{Unix details}
A makefile based system is used. The main \texttt{Makefile} is used only to dispatch the build, supporting the following targets:
\begin{itemize}
\item \texttt{debug} (default)
\item \texttt{release}
\item \texttt{clean}
\end{itemize}
The \texttt{debug.mk} and \texttt{release.mk} files only set a few of the optimization related variables and include the main \texttt{build.mk} file.
In the header of the \texttt{build.mk} file you can find definitions of the resulting executable name, list of used libraries, required include paths, etc. Most of the file is boilerplate required to extract build dependencies, or pass the appropriate flags to compiler and linker.
By default, the profiler uses X11 on Linux. If you would like to support Wayland instead, set the environment variable \texttt{TRACY\_USE\_WAYLAND} before running make.
Additionally, the variable \texttt{TRACY\_NO\_FILESELECTOR} may be set to remove Tracy's GTK 3 dependency at the expense of a file selection dialog. Note that this means you will not be able to use certain features, e.g. opening a saved trace.
\section{Client part}
The client portion of Tracy is basically a queue. Application threads are producing queue items through the instrumentation macros and a dedicated profiler thread consumes the items to send them over the network, to the server.
Tracy functions, libraries, data structures are contained in the \texttt{tracy} namespace.
\subsection{Memory resources}
Tracy uses the \emph{rpmalloc} allocator to completely separate itself from the heap used by the application. Rpmalloc is wrapped by the \texttt{tracy\_malloc()} and \texttt{tracy\_free()} functions, found in the \texttt{common/TracyAlloc.hpp} header file.
\subsection{Timer queries}
\label{timerqueries}
Current time may be obtained by calling the \texttt{GetTime()} function.
Tracy tries to achieve maximum possible timer resolution, to make measurements as accurate as possible. This is done in the following ways:
\begin{itemize}
\item On x86/x64 an assembly instruction \texttt{rdtscp} is always used to obtain the raw hardware timer reading. Systems with the \texttt{TSD} (Time Stamp Disable) flag set are not supported.
\item On ARM/ARM64 Tracy tries to access the \texttt{CNTV\_CTL}/\texttt{CNTVCT\_EL0} Virtual Timer Count register. User-mode access to this register may be restricted by the kernel, so a \texttt{SIGILL} trap is installed before first timer access (\texttt{SetupHwTimer()}) to determine if Tracy should instead use the fallback procedure, which uses the system-provided timer interface.
\item On iOS \texttt{mach\_absolute\_time()} is called, which is as precise as directly accessing the timer count register.
\item Other architectures fallback to \texttt{std::high\_resolution\_clock}.
\end{itemize}
Time values read from the registers are specified in indeterminate units. This is corrected by making two separate measurements of \texttt{GetTime()} and \texttt{std::high\_resolution\_clock} readings, which can be then used to calculate correction multiplier (\texttt{Profiler::CalibrateTimer()}). To save cycles, client sends raw readings to the server, which then can apply the correction.
\subsubsection{Misinformation about \texttt{rdtscp}}
In various internet sources you can find warnings that the \texttt{rdtscp} readings are not reliable, can vary between CPU cores, or can be affected by the CPU frequency adjustments. While this was a sound advice a long time ago, it is no longer valid since the Intel Sandy Bridge microarchitecture (released in 2011) introduced \emph{invariant TSC}. Tracy will check for this feature and refuse to run, if it is not found\footnote{Invariant TSC might be not available in specific scenarios, e.g. in some virtual environments. You may set the environment variable \texttt{TRACY\_NO\_INVARIANT\_CHECK=1} to skip this check, \emph{only if you know what you are doing}.}.
While there could be a timer dispatch function, similar to the one on ARM CPUs, it would incur additional cost, which would be paid by everyone, while benefiting (almost) no one. If need be, an optional macro should be added to enable such dispatch.
\subsection{Initialization}
Tracy has to be initialized as the first thing in the executable, in order to be able to correctly capture events such as initialization of all other static objects and associated memory allocations. This is achieved using \texttt{pragma~init\_seg(".CRT\$XCB")} in MSVC and \texttt{\_\_attribute\_\_~((init\_priority()))} on gcc/clang.
This functionality is unavailable on OSX/iOS (no support in linker), which requires usage of the \texttt{TRACY\_DELAYED\_INIT} code path. In this case the profiler is initialized on first use. This causes a performance hit.
Before the profiler itself (\texttt{Profiler}) can be created, some additional setup needs to be performed:
\begin{enumerate}
\item Timer reading procedures are setup and program start time is saved (\texttt{s\_initTime}).
\item Rpmalloc allocator is initialized (\texttt{s\_rpmalloc\_init}).
\item Queue is initialized (\texttt{s\_queue}), including reserving the space for a number of queue items.
\item Various helper variables are set to the required values.
\end{enumerate}
Then the profiler constructor is finally called.
\subsubsection{DLL/shared object support}
Tracy has basic support for being used in libraries, but there are many cases when a better solution would be needed, as indicated by the bug tracker. Due to various reasons this is an unsolved problem right now, and no in-depth description of the implementation can be made available.
\subsubsection{Parallel initialization of DLLs}
Recent versions of the NT loader (somewhere in the Windows 10 timeline) have introduced parallel loading of libraries\footnote{\url{https://threatvector.cylance.com/en_us/home/windows-10-parallel-loading-breakdown.html}}. In specific scenarios this caused problems with initialization order of variables (objects in DLLs could be created before objects in the main executable). Similar problems were observed on other operating systems.
To fix this issue, rpmalloc is initialized using the 'init once' mechanism, which is implemented using \texttt{InitOnceExecuteOnce()} on Windows, \texttt{pthread\_once()} on Linux and \texttt{std::call\_once()} on other platforms.
\subsubsection{Thread local initialization}
The profiler uses a couple of thread local variables, which are created in one of two ways:
\begin{itemize}
\item MSVC initializes the thread local variable block when a thread is created.
\item gcc/clang initializes the thread local variable block when any thread local variable is accessed for the first time. This has an obvious performance cost caused by checking if the block was initialized on every access to thread local variable.
\end{itemize}
The second option is especially problematic with rpmalloc, which needs to be initialized in every created thread. This is achieved by calling the rpmalloc initialization in a constructor of a thread local class (\texttt{s\_rpmalloc\_thread\_init}). It is possible that a call to \texttt{tracy\_malloc()} might happen before any access to a thread local variable would occur (the point when the initialization is performed). Due to this issue, you may encounter explicit calls to \texttt{rpmalloc\_thread\_initialize()} in some places in the profiler.
\subsubsection{Profiler constructor}
Initialization of the profiler class consists of the following tasks:
\begin{enumerate}
\item Retrieval of the main thread identifier (\texttt{m\_mainThread}).
\item Getting the application's start wall-clock time (\texttt{m\_epoch}).
\item Initializing the LZ4 compression stream and buffers.
\item Preallocating space in the serialized queues.
\item Timer calibration (see~\ref{timerqueries}).
\item Estimating the cost of queuing zone events (\texttt{CalibrateDelay()}).
\item Check if \texttt{TRACY\_NO\_EXIT} mode is enabled.
\item Creation of worker thread (section~\ref{workerloop}).
\item Creation of frame compression worker (section~\ref{fithread}).
\item Setup of the crash handler (section~\ref{crashhandler}).
\item Initialization of the call stack retrieval facilities (section~\ref{collectingcallstacks}).
\item Finally, saving the timestamp of end of construction.
\end{enumerate}
\paragraph{Creating threads}
Worker thread handling is wrapped by the OS-specific \texttt{Thread} class. This must be done to eliminate memory allocation that would happen in the application controlled heap, if \texttt{std::thread} was used.
\subsection{Crash handler}
\label{crashhandler}
Tracy can intercept application crashes on Windows and Linux. This is done in a very similar manner, but with slight differences in implementation.
On Windows an exception handler is added (\texttt{AddVectoredExceptionHandler()}), which will call the specified profiler function (\texttt{CrashFilter()}) when an exception occurs. On Linux a signal handler (\texttt{CrashHandler()}) is installed for a variety of signals (\texttt{SIGILL}, \texttt{SIGFPE}, \texttt{SIGSEGV}, \texttt{SIGPIPE}, \texttt{SIGBUS}).
When a crash occurs, execution in the crashing thread is redirected to the handler that was set earlier. The handler lists all threads running in the program and one by one pauses their execution, leaving only two threads\footnote{There is actually a race, which can result in another thread starting executing, as suspending all threads is not an atomic operation.} in a running state: the crashed thread, which is executing the crash handler and the profiler worker thread. This is done either by calling the \texttt{SuspendThread()} procedure on Windows, or sending the unused \texttt{SIGPWR} signal -- during profiler setup another handler was installed for this signal, one that enters an infinite sleep loop.
When all threads in the application had stopped executing, the signal handler adds a message explaining the crash to the profiler queue, then requests profiler shutdown. The worker thread at this point still has some work left to do: send contents of queues, handle queries incoming from the server, etc. This is a situation which also happens on normal application exit (section~\ref{shutdown}). When the remaining tasks are completed, the signal handler terminates the application.
\subsection{Collecting call stacks}
\label{collectingcallstacks}
This is a very OS-specific task. It is split into two parts: getting the call stack frames and then decoding the frames into a human readable function name and source file location.
\subsubsection{Initialization}
On some platforms a bit of setup work is required. This is done in the \texttt{InitCallstack()} function.
\subsubsection{Getting the frames}
Call stack collection is initiated by calling the \texttt{Callstack()} procedure, with maximum stack depth to be collected passed as a parameter. Stack unwinding must be performed in the place in which call stack was queried, as further execution of the application will change the stack contents. The unfortunate part is that the stack unwinding on platforms other than x86 is not a fast operation.
To perform unwinding various OS functions are used: \texttt{RtlWalkFrameChain()}, \texttt{\_Unwind\_Backtrace()}, \texttt{backtrace()}. A list of returned frame pointers is saved in a buffer, which will be later sent to the server. The maximum unwinding depth limit (63 entries) is due to the specifics of the underlying OS functionality.
\subsubsection{Decoding stack frames}
Unlike the always changing call stack, stack frames themselves are immutable pointers to a specific place in the executable code. As such, the decoding process can be performed at any time (even outside of the program execution, as exemplified by debuggers). Frame decoding is only performed when the server asks for the details of a frame (section~\ref{communicationsprotocol}).
The decoding process is executed through a variety of platform-specific libraries. There are two functions available:
\begin{itemize}
\item \texttt{DecodeCallstackPtr()} -- returns a \texttt{CallstackEntryData} structure, which is a list of function names and source file locations for the queried location. More than one entry is possible, if there are inlined functions.
\item \texttt{DecodeCallstackPtrFast()} -- a faster decoder, which only returns a single function name. This is used for filtering call stacks by the profiler (for example, to cut everything above the crashing function in a call stack collected in the crash handler, which would normally include various system procedures related to signal handling and the handler itself).
\end{itemize}
\subsection{CPU usage statistics}
The \texttt{ProcessSysTime()} function is used to collect system CPU usage data. This process is performed at 100~\si{\milli\second} granularity, as the underlying OS-specific facilities (\texttt{TracySysTime.cpp}) do not provide enough precision for a more rapid data collection.
\subsection{Queues}
There are two types of queues used by Tracy. In both cases the memory used to store items is never freed, but is reused after dequeuing items.
\subsubsection{Asynchronous queue}
Tracy uses a Multiple Producers Single Consumer lock-free queue to collect most of the events generated by the profiled program. The queue implementation is moodycamel::ConcurrentQueue, with several modifications, which significantly decrease the time cost of queuing items. During dequeue the order of items is preserved \emph{only within the same thread}. There is no ordering between items added in different threads.
To add an item to the queue a specific code pattern is required:
\begin{lstlisting}
Magic magic;
auto token = GetToken();
auto& tail = token->get_tail_index();
auto item = token->enqueue_begin(magic);
// Fill item
tail.store(magic+1, std::memory_order_release);
\end{lstlisting}
\subsubsection{Synchronous queues}
Some operations require preserving the program-level ordering, because reconstruction of the item order might be impossible (as is the case with memory allocations), or because the cost of locking the queue is insignificant.
This kind of queue is implemented as two custom vectors with an accompanying lock. When an item is added to the queue (primary vector), the lock is held and the item is constructed in-place, to save the memory copy cost. To perform dequeue, the lock is held only for the two vectors to be swapped. The processing of queue items (secondary vector) is then performed without blocking other threads.
Adding items to the queue is performed in the following way:
\begin{lstlisting}
lock.lock();
auto item = queue.prepare_next();
// Fill item
queue.commit_next();
lock.unlock();
\end{lstlisting}
It is important to update the item count in the queue (\texttt{commit\_next()}) only after an item has been fully filled. Otherwise, for example if the \texttt{push\_next()} method is used instead of \texttt{prepare\_next()}, it is possible that a thread will be freezed mid-write during crash handling (see section~\ref{crashhandler}). Since the dequeue in crash handler doesn't lock the queue, as it may already be locked by a freezed thread and otherwise there are no threads left to compete for access, the non-ready items must not be marked as available.
\paragraph{FastVector class}
This custom vector class was designed to minimize the time spent holding a lock: adding items is performed only in-place and swapping two vectors is a matter of exchanging three pointers. The next item write position is always known and doesn't need to be calculated.
\paragraph{Use in the profiler}
Tracy needs the following synchronous queues:
\begin{itemize}
\item \texttt{m\_serialQueue} -- used to store events that have to be serialized (e.g. memory allocations, frees).
\item \texttt{m\_fiQueue} -- queue of frame images waiting to be compressed.
\item \texttt{m\_deferredQueue} -- list of events required to restore profiler state when on-demand mode is enabled. Never emptied.
\end{itemize}
\subsubsection{Queue items}
\label{queueitems}
Event queues are filled with \texttt{QueueItem} structures, which have a size of 32 bytes (this is not the case for frame image compression queue, which is not an event queue). A \texttt{QueueItem} type is determined by the first byte, which contains a \texttt{QueueType} identifier. The remaining 31 bytes hold an union of various queue event structs, as listed in the \texttt{TracyQueue.hpp} header file (see section~\ref{profilerevents} for more detail). Data sizes of the events (including the queue type byte) are listed in the \texttt{QueueDataSize} array and typically don't need to use all 32 bytes. The unused memory at the end of the struct is left in an undefined state, as no zeroing is required.
Order of \texttt{QueueType} identifiers is important, as careful grouping of event types greatly simplifies event dispatch during dequeue process (section~\ref{dequeue}). There are three groups of events, which have to be kept together:
\begin{itemize}
\item Events which require extra data transfer, for example sending text messages.
\item The actual data transfer events ("string transfer").
\item Everything else.
\end{itemize}
\paragraph{Accessing the data}
\label{accessingdata}
To save space and make data transfer more efficient, queue items are unaligned (packed) structures. This requires special consideration, as some platforms may not support unaligned access to memory. Writing data into queue items should be performed using the \texttt{MemWrite()} function, and reading should be done using the \texttt{MemRead()} function. While internally a \texttt{memcpy()} call is dispatched, a modern compiler will be able to emit code identical to an assignment.
\subsection{Worker loop}
\label{workerloop}
The main profiler loop (\texttt{Worker()}) handles dequeuing events and sending them to the server.
\subsubsection{Establishing connection}
Profiler waits for an incoming TCP connections on port 8086. To advertise that a client is available, an UDP broadcast (\texttt{BroadcastMessage}) is being sent on the same port.
Each iteration of the main connection loop handles the whole connection. Multiple iterations are only possible if the on-demand mode is enabled, or if the initial handshake is not successful.
When a connection is established, the server and client start handshake by exchanging a magic identification string (\texttt{HandshakeShibboleth}) and the protocol version (\texttt{ProtocolVersion}). Both must match, or the connection is rejected.
If everything is all right, the client sends an initial welcome message (\texttt{WelcomeMessage}), containing data such as the timer multiplier, profiled program name, host information, etc. If the on-demand mode is enabled, client will also send the initial on-demand data message (\texttt{OnDemandPayloadMessage}).
At this point the LZ4 compression buffers are initialized and everything else sent over the network connection will be compressed.
If the on-demand mode is enabled, the queues are emptied and events required for profiler state reconstruction (contained in the \texttt{m\_deferredQueue} queue) are sent. The deferred events queue is never emptied, as the data will be also needed for the future connections.
\subsubsection{Main communications loop}
Both the asynchronous and synchronous queues are dequeued here, until the server connection is terminated, or the profiler termination (\texttt{ShouldExit()}) is requested. If the queues are empty for some time, a periodic no-op \emph{keep alive} event will be sent to prevent automatic dropping of the connection. Server queries are also handled here (section~\ref{communicationsprotocol}).
\subsubsection{Communications protocol}
\label{communicationsprotocol}
The client-server connection is a two way conversation. The client is very conservative with the data it sends, in order to prevent putting the same data twice on the wire. For example, when a zone event is trasmitted, only a pointer to the source location structure will be provided. The server can then issue a query for the source location contents, which the client responds to (\texttt{HandleServerQuery()}). The source location structure itself only contains pointers to strings such as the function name or the file name, which also need to be queried by the server. When the same source location is associated with another zone, the server already knows what its contents are and there's no need to transmit the data again.
\paragraph{Server query}
Server query types are specified in the \texttt{ServerQuery} enumeration. Each query is accompanied by a pointer that is queried, as can be seen in the \texttt{ServerQueryPacket} struct.
\paragraph{Denial of Service considerations}
Since the server can query contents of any memory address, it is possible that a malicious server implementation will want to crash the client by asking for data at the \emph{null pointer}. This is by-design and will not happen when a conforming server is used. You are expected to perform profiling only in a controlled environment.
\subsubsection{Post-connection loop}
After the connection is terminated, and if the on-demand mode is disabled, there is no longer a possibility to establish new connections with the client, but the profiling instrumentation is still adding events to the queues. The unusable events are drained from the queues in the cleanup loop. If another connection would be established in error with the client, the handshake will be rejected, giving the reason that the profiling had finished.
\subsubsection{Profiler shutdown}
\label{shutdown}
When an application is exiting, profiler shutdown is requested in the profile destructor. Since there may be some events that still need to be sent and there may be some server queries that need answering, the profiler will enter a secondary dequeue loop, until the queues are emptied. As the program is shutting down and the profiler is the last thing to be destroyed, there will be no more events added to the queues.
When everything is sent, a final termination event is sent to the server.
The client then awaits for a termination confirmation query from the server and stops execution. The termination query will be only received when all other remaining server queries are handled by the client.
\subsubsection{Dequeue process}
\label{dequeue}
Events are dequeued in the \texttt{Dequeue()} function for the asynchronous queue and in the \texttt{DequeueSerial()} function for the synchronous queue. Both procedures have the same structure: get items from the queue, optionally process the auxiliary data, then send the event to the server.
You may remember that not all 32 bytes of the \texttt{QueueItem} structure might be used by the event (section~\ref{queueitems}). This is of course taken into account when sending data over the network. Only the used bytes are transmitted.
Some events require additional data to be sent, for example when a message event is processed, the client will also send the message text in a separate data packet (this does not apply to events where data is immutable, for example when a string literal is used as a message). The setup of such transfer happens as follows:
\begin{enumerate}
\item When an event is issued by the instrumentation, in addition to adding a new item to the queue, a memory buffer will be allocated to store the data. Data provided by the user are copied to this buffer, and a buffer pointer is saved in the event item pushed to the queue.
\item During the dequeue process, when an event with a pointer referencing external data is seen, the saved data is sent as a separate event (\texttt{SendString()}, \texttt{SendLongString()}, \texttt{SendSourceLocationPayload()}, \texttt{SendCallstackPayload()}). The buffer containing data is then freed and the original event is sent.
\item On the server side, the auxiliary data are associated with the client-side pointer, which was also transmitted as a part of the data transfer. This is a short lived mapping, which will be removed when the pointer is referenced by an incoming event\footnote{As a side note, the client-side memory allocator will be happy to give the same pointer for future data buffers. As such, the pointer is only valid for a short time.}.
\item When the server receives the event with the pointer referencing the data (it will be the very next event after the data transfer), the client-pointer to data mapping is removed and the transferred data are consumed.
\end{enumerate}
\subsubsection{Outgoing data buffer}
Processed events are not immediately sent over the network, but are stored in a staging buffer. The buffer size is specified by the \texttt{TargetFrameSize} constant to be 256 KB. All sent messages must be smaller than this size, which puts a limit on the maximum text or frame image size possible to transfer.
Access to the buffer is handled through the following functions:
\begin{itemize}
\item \texttt{CommitData()} -- send current buffer contents.
\item \texttt{NeedDataSize()} -- specify that a given buffer size will be needed for upcoming data.
\item \texttt{AppendDataUnsafe()} -- put data into buffer, without checking if it will fit. Use only after \texttt{NeedDataSize()} call!
\item \texttt{AppendData()} -- put data into buffer, checking if it will fit. If not, the buffer contents are sent and the buffer is cleared.
\end{itemize}
Data is sent in the \texttt{SendData()} function, first being processed through the streaming LZ4 compression.
\subsection{Profiler events}
\label{profilerevents}
When looking at the \texttt{Queue*} family of structs, you can see some common practices:
\begin{itemize}
\item Time values are sent as 64-bit signed integers.
\item Thread identifiers are sent as 64-bit unsigned integers.
\item Pointers are sent as 64-bit unsigned integers. This is true even on 32-bit systems, as it greatly simplifies further processing.
\end{itemize}
\subsubsection{Thread identifiers}
Events are dequeued from the asynchronous queue in thread-specific batches (all events from a single batch dequeue operation originate from one thread). This is exploited by sending a single message containing the thread identifier, which is then used as a thread context for following events. These events do not need to store any thread information. There may be some exceptions, for example the GPU events may want to send a null thread identifier, which is used to indicate some internal state.
Items added to the synchronous queue must store information about the originating thread, as there is no way to recover it during dequeue.
\subsubsection{Source locations}
Several events include information about location of the event in the source code. This is achieved by creating a static constant of type \texttt{SourceLocationData}, which includes:
\begin{itemize}
\item Optional source location name.
\item Function name.
\item Source file name.
\item Source file line.
\item Color data (for example, to set color of a zone).
\end{itemize}
Source location data is retrieved using the built-in macros \texttt{\_\_FUNCTION\_\_}, \texttt{\_\_FILE\_\_} and \texttt{\_\_LINE\_\_}. Pointer to the structure is then stored in an event, and is later handled as described in section~\ref{communicationsprotocol}.
\subsubsection{CPU zones}
\label{cpuzones}
Lifetime of a CPU zone is handled by the \texttt{ScopedZone} class, which emits zone begin event in the constructor and zone end event in the destructor. There is a tiny bit of state which needs to be stored in the \texttt{ScopedZone} class, because the zone might not be active, and the profiler must not send zone end events if no matching zone begin event was sent.
Similar functionality is achieved by calls to \texttt{\_\_\_tracy\_emit\_zone\_begin()} and \texttt{\_\_\_tracy\_emit\_zone\_end()} in the C API. In this case a \texttt{TracyCZoneCtx} struct is used to keep the zone state.
\subsubsection{Call stacks}
When a call stack capture is issued, a separate event type is used. The server can then store a reference to the zone or memory event which is about to get the call stack information. Call stack is transmitted as the very next event sent by the client, and the server applies it to the saved zone or memory event.
\subsubsection{Locks}
The \texttt{TracyLockable()} and \texttt{TracySharedLockable()} macros create a wrapper classes \texttt{Lockable} or \texttt{SharedLockable}, which embed the specified lock conforming to the \texttt{Lockable} or \texttt{SharedLockable} requirement.
Both wrappers are very similar in operation:
\begin{itemize}
\item On construction a lock announce event is sent.
\item On desctruction the server is notified that the lock is no longer present.
\item The requirement-conforming methods \texttt{lock()}, \texttt{unlock()}, \texttt{try\_lock()}, and additionally \texttt{lock\_shared()}, \texttt{unlock\_shared()}, \texttt{try\_lock\_shared()} in the \texttt{SharedLockable} case, send the events that describe what the lock is doing:
\begin{itemize}
\item Lock is being acquired.
\item Lock has been acquired.
\item Lock has been unlocked.
\end{itemize}
\item In case of the \texttt{try\_lock()} function, the failure to obtain the lock is not reported.
\end{itemize}
These events are enough to perform lock state reconstruction on the server side. If the on-demand mode is enabled, there are additional checks to make sure the server receives lock events in a state that allows proper reconstruction. This basically means that lock events are only being sent after the lock becomes uncontended.
\paragraph{Lock source locations}
It is not possible to wrap the lock wrapper functions in a way that would allow usage of the source location struct (consider what happens when \texttt{std::lock\_guard<>} is used). Instead, the lock location can be marked by explicitly sending an event after the lock has been acquired.
\subsection{GPU zones}
Instrumentation of GPU zones is a bit more involved, as it requires interaction with the graphics API, which needs to be performed in an appropriate place in the profiled application's code.
When a GPU zone capture context (\texttt{GpuCtx}, \texttt{VkGpuCtx}) is initialized, Tracy has to do API-specific initialization of \emph{query pool} and synchronize the GPU timer readings with CPU timer. The GPU context is then announced to the server.
Creating a GPU scope class (\texttt{GpuCtxScope}, \texttt{VkCtxScope}) issues an asynchronous timestamp query to the GPU, using the query pool which was initialized earlier. A GPU zone begin event is queued, with a CPU time reading, but no GPU time, as it is not yet available. Similarly, destruction of the scope class issues another timestamp query and queues a GPU zone end event.
The code in the GPU data collection function (\texttt{GpuCtx::Collect()}, \texttt{VkGpuCtx::Collect()}) checks if the GPU timestamp queries have become available and queues events with the obtained GPU time, which include references to the previous GPU events, which contained just the CPU time.
\subsection{Lua zones}
When Lua code is instrumented, the zone processing is done in a very similar way to the standard CPU zones (described in section~\ref{cpuzones}). It is however not possible to avoid sending duplicated source location or call stack data, as the originating Lua context might be long gone when a server connection is established and the events are sent. Due to this, Lua zones are always accompanied by a custom source location event, the layout of which can be found in the source code.
\subsection{Frame images compression}
\label{fithread}
To reduce memory impact, frame images are compressed on a dedicated thread (\texttt{CompressWorker()}). What the user sees as sending a frame image, in reality only stores the necessary data in the \texttt{m\_fiQueue} queue. The compression thread dequeues frame images, compresses them and then queues frame image events. Since the compression is disjoint from the moment the frame image is issued by the user, an original frame index must be preserved.
The DXT1 compression used to reduce size of the images is a from-scratch implementation of the Extreme DXT Compression\footnote{\url{http://www.cauldron.sk/files/extreme_dxt_compression.pdf}} algorithm. The conversion of natural color index order to DXT1 order is performed on the server side, as it is an invariant operation, without dependencies on the input data.
\subsection{Thread naming}
Most operating systems don't have adequate support for giving threads arbitrary names. On such systems the \texttt{TRACY\_COLLECT\_THREAD\_NAMES} macro will be defined, which enables storage of thread names in a lock-free list. On subsequent thread name queries this list is used, instead of the system facilities.
Even if the lock-free list is used, Tracy will also set the thread name using the OS functionality. These names can be then used by debuggers and other external tools.
\end{document}
|
whupdup/frame
|
real/third_party/tracy/manual/techdoc.tex
|
LaTeX
|
gpl-3.0
| 38,412
|
@inproceedings{Abel19a,
title = {uops.info: Characterizing Latency, Throughput, and Port Usage of Instructions on Intel Microarchitectures},
acmid = {3304062},
address = {New York, NY, USA},
author = {Abel, Andreas and Reineke, Jan},
booktitle = {ASPLOS},
doi = {10.1145/3297858.3304062},
isbn = {978-1-4503-6240-5},
location = {Providence, RI, USA},
numpages = {14},
pages = {673--686},
publisher = {ACM},
series = {ASPLOS '19},
year = {2019},
url = {http://doi.acm.org/10.1145/3297858.3304062}
},
@book{ISO:2012:III,
added-at = {2012-10-08T01:13:47.000+0200},
address = {Geneva, Switzerland},
author = {{ISO}},
bibdate = {Mon Dec 19 11:12:12 2011},
bibsource = {http://www.math.utah.edu/pub/tex/bib/isostd.bib},
biburl = {https://www.bibsonomy.org/bibtex/24b660c16d9a5ab0ad595b1555402c797/gron},
day = 28,
interhash = {ff5df6d7fa67f89d7d5ea964dab3e3c9},
intrahash = {4b660c16d9a5ab0ad595b1555402c797},
keywords = {C++ Specification Standard},
month = feb,
pages = {1338 (est.)},
publisher = {International Organization for Standardization},
remark = {Revises ISO/IEC 14882:2003.},
timestamp = {2012-10-08T01:13:47.000+0200},
title = {{ISO/IEC 14882:2011 Information technology --- Programming languages --- C++}},
url = {http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=50372},
year = 2012
}
|
whupdup/frame
|
real/third_party/tracy/manual/tracy.bib
|
bib
|
gpl-3.0
| 1,391
|
project('tracy', ['cpp'])
if get_option('tracy_enable')
add_project_arguments('-DTRACY_ENABLE', language : 'cpp')
endif
if get_option('tracy_on_demand')
add_project_arguments('-DTRACY_ON_DEMAND', language : 'cpp')
endif
if get_option('tracy_callstack')
add_project_arguments('-DTRACY_CALLSTACK', language : 'cpp')
endif
if get_option('tracy_no_callstack')
add_project_arguments('-DTRACY_NO_CALLSTACK', language : 'cpp')
endif
if get_option('tracy_no_callstack_inlines')
add_project_arguments('-DTRACY_NO_CALLSTACK_INLINES', language : 'cpp')
endif
if get_option('tracy_only_localhost')
add_project_arguments('-DTRACY_ONLY_LOCALHOST', language : 'cpp')
endif
if get_option('tracy_no_broadcast')
add_project_arguments('-DTRACY_NO_BROADCAST', language : 'cpp')
endif
if get_option('tracy_only_ipv4')
add_project_arguments('-DTRACY_ONLY_IPV4', language : 'cpp')
endif
if get_option('tracy_no_code_transfer')
add_project_arguments('-DTRACY_NO_CODE_TRANSFER', language : 'cpp')
endif
if get_option('tracy_no_context_switch')
add_project_arguments('-DTRACY_NO_CONTEXT_SWITCH', language : 'cpp')
endif
if get_option('tracy_no_exit')
add_project_arguments('-DTRACY_NO_EXIT', language : 'cpp')
endif
if get_option('tracy_no_sampling')
add_project_arguments('-DTRACY_NO_SAMPLING', language : 'cpp')
endif
if get_option('tracy_no_verify')
add_project_arguments('-DTRACY_NO_VERIFY', language : 'cpp')
endif
if get_option('tracy_no_vsync_capture')
add_project_arguments('-DTRACY_NO_VSYNC_CAPTURE', language : 'cpp')
endif
if get_option('tracy_no_frame_image')
add_project_arguments('-DTRACY_NO_FRAME_IMAGE', language : 'cpp')
endif
if get_option('tracy_no_system_tracing')
add_project_arguments('-DTRACY_NO_SYSTEM_TRACING', language : 'cpp')
endif
if get_option('tracy_delayed_init')
add_project_arguments('-DTRACY_DELAYED_INIT', language : 'cpp')
endif
if get_option('tracy_manual_lifetime')
add_project_arguments('-DTRACY_MANUAL_LIFETIME', language : 'cpp')
endif
if get_option('tracy_fibers')
add_project_arguments('-DTRACY_FIBERS', language : 'cpp')
endif
if get_option('tracy_timer_fallback')
add_project_arguments('-DTRACY_TIMER_FALLBACK', language : 'cpp')
endif
tracy_shared_libs = get_option('tracy_shared_libs')
if tracy_shared_libs
add_project_arguments('-DTRACY_EXPORTS', language : 'cpp')
endif
if get_option('tracy_no_crash_handler')
add_project_arguments('-DTRACY_NO_CRASH_HANDLER', language : 'cpp')
endif
threads_dep = dependency('threads')
includes = [
'TracyC.h',
'Tracy.hpp',
'TracyD3D11.hpp',
'TracyD3D12.hpp',
'TracyLua.hpp',
'TracyOpenCL.hpp',
'TracyOpenGL.hpp',
'TracyVulkan.hpp'
]
client_includes = [
'client/tracy_concurrentqueue.h',
'client/tracy_rpmalloc.hpp',
'client/tracy_SPSCQueue.h',
'client/TracyArmCpuTable.hpp',
'client/TracyCallstack.h',
'client/TracyCallstack.hpp',
'client/TracyDebug.hpp',
'client/TracyDxt1.hpp',
'client/TracyFastVector.hpp',
'client/TracyLock.hpp',
'client/TracyProfiler.hpp',
'client/TracyRingBuffer.hpp',
'client/TracyScoped.hpp',
'client/TracyStringHelpers.hpp',
'client/TracySysTime.hpp',
'client/TracySysTrace.hpp',
'client/TracyThread.hpp'
]
common_includes = [
'common/tracy_lz4.hpp',
'common/tracy_lz4hc.hpp',
'common/TracyAlign.hpp',
'common/TracyAlign.hpp',
'common/TracyAlloc.hpp',
'common/TracyApi.h',
'common/TracyColor.hpp',
'common/TracyForceInline.hpp',
'common/TracyMutex.hpp',
'common/TracyProtocol.hpp',
'common/TracyQueue.hpp',
'common/TracySocket.hpp',
'common/TracyStackFrames.hpp',
'common/TracySystem.hpp',
'common/TracyUwp.hpp',
'common/TracyYield.hpp'
]
tracy_header_files = common_includes + client_includes + includes
tracy_src = [
'TracyClient.cpp'
]
tracy_public_include_dirs = include_directories('.')
compiler = meson.get_compiler('cpp')
override_options = []
if compiler.get_id() != 'msvc'
override_options += 'cpp_std=c++11'
endif
if tracy_shared_libs
tracy = shared_library('tracy', tracy_src, tracy_header_files,
dependencies : [ threads_dep ],
include_directories : tracy_public_include_dirs,
override_options : override_options,
install : true)
else
tracy = static_library('tracy', tracy_src, tracy_header_files,
dependencies : [ threads_dep ],
include_directories : tracy_public_include_dirs,
override_options : override_options,
install : true)
endif
install_headers(includes)
install_headers(common_includes, subdir : 'common')
install_headers(client_includes, subdir : 'client')
tracy_dep_compile_args = []
if tracy_shared_libs
tracy_dep_compile_args += [ '-DTRACY_IMPORTS' ]
endif
tracy_dep = declare_dependency(
compile_args : tracy_dep_compile_args,
link_with : tracy,
include_directories : tracy_public_include_dirs)
tracy_dep_dynamic = declare_dependency(
include_directories : tracy_public_include_dirs)
meson.override_dependency('tracy', tracy_dep)
|
whupdup/frame
|
real/third_party/tracy/meson.build
|
build
|
gpl-3.0
| 5,108
|
option('tracy_enable', type : 'boolean', value : true, description : 'Enable profiling')
option('tracy_on_demand', type : 'boolean', value : false, description : 'On-demand profiling')
option('tracy_callstack', type : 'boolean', value : false, description : 'Enfore callstack collection for tracy regions')
option('tracy_no_callstack', type : 'boolean', value : false, description : 'Disable all callstack related functionality')
option('tracy_no_callstack_inlines', type : 'boolean', value : false, description : 'Disables the inline functions in callstacks')
option('tracy_only_localhost', type : 'boolean', value : false, description : 'Only listen on the localhost interface')
option('tracy_no_broadcast', type : 'boolean', value : false, description : 'Disable client discovery by broadcast to local network')
option('tracy_only_ipv4', type : 'boolean', value : false, description : 'Tracy will only accept connections on IPv4 addresses (disable IPv6)')
option('tracy_no_code_transfer', type : 'boolean', value : false, description : 'Disable collection of source code')
option('tracy_no_context_switch', type : 'boolean', value : false, description : 'Disable capture of context switches')
option('tracy_no_exit', type : 'boolean', value : false, description : 'Client executable does not exit until all profile data is sent to server')
option('tracy_no_sampling', type : 'boolean', value : false, description : 'Disable call stack sampling')
option('tracy_no_verify', type : 'boolean', value : false, description : 'Disable zone validation for C API')
option('tracy_no_vsync_capture', type : 'boolean', value : false, description : 'Disable capture of hardware Vsync events')
option('tracy_no_frame_image', type : 'boolean', value : false, description : 'Disable the frame image support and its thread')
option('tracy_no_sys_trace', type : 'boolean', value : false, description : 'Disable systrace sampling')
option('tracy_delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
option('tracy_manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
option('tracy_fibers', type : 'boolean', value : false, description : 'Enable fibers support')
option('tracy_shared_libs', type : 'boolean', value : false, description : 'Builds Tracy as a shared object')
option('tracy_no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')
|
whupdup/frame
|
real/third_party/tracy/meson_options.txt
|
Text
|
gpl-3.0
| 2,507
|
/*
Native File Dialog Extended
Repository: https://github.com/btzy/nativefiledialog-extended
License: Zlib
Authors: Bernard Teo, Michael Labbe
This header contains the functions that can be called by user code.
*/
#ifndef _NFD_H
#define _NFD_H
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#include <stddef.h>
#ifdef _WIN32
/* denotes UTF-16 char */
typedef wchar_t nfdnchar_t;
#else
/* denotes UTF-8 char */
typedef char nfdnchar_t;
#endif // _WIN32
/* opaque data structure -- see NFD_PathSet_* */
typedef void nfdpathset_t;
#ifndef NFD_PORTAL
typedef struct {
void* ptr;
} nfdpathsetenum_t;
#else
typedef struct {
void* d1;
void* d2;
unsigned int d3;
int d4;
int d5;
int d6;
int d7;
int d8;
int d9;
int d10;
int d11;
int p1;
void* p2;
void* p3;
} nfdpathsetenum_t;
#endif
typedef unsigned int nfdfiltersize_t;
typedef enum {
NFD_ERROR, /* programmatic error */
NFD_OKAY, /* user pressed okay, or successful return */
NFD_CANCEL /* user pressed cancel */
} nfdresult_t;
typedef struct {
const nfdnchar_t* name;
const nfdnchar_t* spec;
} nfdnfilteritem_t;
/* free a file path that was returned by the dialogs */
/* Note: use NFD_PathSet_FreePath to free path from pathset instead of this function */
void NFD_FreePathN(nfdnchar_t* filePath);
/* initialize NFD - call this for every thread that might use NFD, before calling any other NFD
* functions on that thread */
nfdresult_t NFD_Init(void);
/* call this to de-initialize NFD, if NFD_Init returned NFD_OKAY */
void NFD_Quit(void);
/* single file open dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathN() if this function returns
* NFD_OKAY */
/* If filterCount is zero, filterList is ignored (you can use NULL) */
/* If defaultPath is NULL, the operating system will decide */
nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath);
/* multiple file open dialog */
/* It is the caller's responsibility to free `outPaths` via NFD_PathSet_Free() if this function
* returns NFD_OKAY */
/* If filterCount is zero, filterList is ignored (you can use NULL) */
/* If defaultPath is NULL, the operating system will decide */
nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath);
/* save dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathN() if this function returns
* NFD_OKAY */
/* If filterCount is zero, filterList is ignored (you can use NULL) */
/* If defaultPath is NULL, the operating system will decide */
nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName);
/* select folder dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathN() if this function returns
* NFD_OKAY */
/* If defaultPath is NULL, the operating system will decide */
nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath);
/* Get last error -- set when nfdresult_t returns NFD_ERROR */
/* Returns the last error that was set, or NULL if there is no error. */
/* The memory is owned by NFD and should not be freed by user code. */
/* This is *always* ASCII printable characters, so it can be interpreted as UTF-8 without any
* conversion. */
const char* NFD_GetError(void);
/* clear the error */
void NFD_ClearError(void);
/* path set operations */
#ifdef _WIN32
typedef unsigned long nfdpathsetsize_t;
#elif __APPLE__
typedef unsigned long nfdpathsetsize_t;
#else
typedef unsigned int nfdpathsetsize_t;
#endif // _WIN32, __APPLE__
/* Gets the number of entries stored in pathSet */
/* note that some paths might be invalid (NFD_ERROR will be returned by NFD_PathSet_GetPath), so we
* might not actually have this number of usable paths */
nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count);
/* Gets the UTF-8 path at offset index */
/* It is the caller's responsibility to free `outPath` via NFD_PathSet_FreePathN() if this function
* returns NFD_OKAY */
nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdnchar_t** outPath);
/* Free the path gotten by NFD_PathSet_GetPathN */
#ifdef _WIN32
#define NFD_PathSet_FreePathN NFD_FreePathN
#elif __APPLE__
#define NFD_PathSet_FreePathN NFD_FreePathN
#else
void NFD_PathSet_FreePathN(const nfdnchar_t* filePath);
#endif // _WIN32, __APPLE__
/* Gets an enumerator of the path set. */
/* It is the caller's responsibility to free `enumerator` via NFD_PathSet_FreeEnum() if this
* function returns NFD_OKAY, and it should be freed before freeing the pathset. */
nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator);
/* Frees an enumerator of the path set. */
void NFD_PathSet_FreeEnum(nfdpathsetenum_t* enumerator);
/* Gets the next item from the path set enumerator.
* If there are no more items, then *outPaths will be set to NULL. */
/* It is the caller's responsibility to free `*outPath` via NFD_PathSet_FreePath() if this
* function returns NFD_OKAY and `*outPath` is not null */
nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath);
/* Free the pathSet */
void NFD_PathSet_Free(const nfdpathset_t* pathSet);
#ifdef _WIN32
/* say that the U8 versions of functions are not just #defined to be the native versions */
#define NFD_DIFFERENT_NATIVE_FUNCTIONS
typedef char nfdu8char_t;
typedef struct {
const nfdu8char_t* name;
const nfdu8char_t* spec;
} nfdu8filteritem_t;
/* UTF-8 compatibility functions */
/* free a file path that was returned */
void NFD_FreePathU8(nfdu8char_t* outPath);
/* single file open dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_OpenDialogU8(nfdu8char_t** outPath,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath);
/* multiple file open dialog */
/* It is the caller's responsibility to free `outPaths` via NFD_PathSet_Free() if this function
* returns NFD_OKAY */
nfdresult_t NFD_OpenDialogMultipleU8(const nfdpathset_t** outPaths,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath);
/* save dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_SaveDialogU8(nfdu8char_t** outPath,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath,
const nfdu8char_t* defaultName);
/* select folder dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_PickFolderU8(nfdu8char_t** outPath, const nfdu8char_t* defaultPath);
/* Get the UTF-8 path at offset index */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_PathSet_GetPathU8(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdu8char_t** outPath);
/* Gets the next item from the path set enumerator.
* If there are no more items, then *outPaths will be set to NULL. */
/* It is the caller's responsibility to free `*outPath` via NFD_PathSet_FreePathU8() if this
* function returns NFD_OKAY and `*outPath` is not null */
nfdresult_t NFD_PathSet_EnumNextU8(nfdpathsetenum_t* enumerator, nfdu8char_t** outPath);
#define NFD_PathSet_FreePathU8 NFD_FreePathU8
#ifdef NFD_NATIVE
typedef nfdnchar_t nfdchar_t;
typedef nfdnfilteritem_t nfdfilteritem_t;
#define NFD_FreePath NFD_FreePathN
#define NFD_OpenDialog NFD_OpenDialogN
#define NFD_OpenDialogMultiple NFD_OpenDialogMultipleN
#define NFD_SaveDialog NFD_SaveDialogN
#define NFD_PickFolder NFD_PickFolderN
#define NFD_PathSet_GetPath NFD_PathSet_GetPathN
#define NFD_PathSet_FreePath NFD_PathSet_FreePathN
#define NFD_PathSet_EnumNext NFD_PathSet_EnumNextN
#else
typedef nfdu8char_t nfdchar_t;
typedef nfdu8filteritem_t nfdfilteritem_t;
#define NFD_FreePath NFD_FreePathU8
#define NFD_OpenDialog NFD_OpenDialogU8
#define NFD_OpenDialogMultiple NFD_OpenDialogMultipleU8
#define NFD_SaveDialog NFD_SaveDialogU8
#define NFD_PickFolder NFD_PickFolderU8
#define NFD_PathSet_GetPath NFD_PathSet_GetPathU8
#define NFD_PathSet_FreePath NFD_PathSet_FreePathU8
#define NFD_PathSet_EnumNext NFD_PathSet_EnumNextU8
#endif // NFD_NATIVE
#else // _WIN32
/* the native charset is already UTF-8 */
typedef nfdnchar_t nfdchar_t;
typedef nfdnfilteritem_t nfdfilteritem_t;
#define NFD_FreePath NFD_FreePathN
#define NFD_OpenDialog NFD_OpenDialogN
#define NFD_OpenDialogMultiple NFD_OpenDialogMultipleN
#define NFD_SaveDialog NFD_SaveDialogN
#define NFD_PickFolder NFD_PickFolderN
#define NFD_PathSet_GetPath NFD_PathSet_GetPathN
#define NFD_PathSet_FreePath NFD_PathSet_FreePathN
#define NFD_PathSet_EnumNext NFD_PathSet_EnumNextN
typedef nfdnchar_t nfdu8char_t;
typedef nfdnfilteritem_t nfdu8filteritem_t;
#define NFD_FreePathU8 NFD_FreePathN
#define NFD_OpenDialogU8 NFD_OpenDialogN
#define NFD_OpenDialogMultipleU8 NFD_OpenDialogMultipleN
#define NFD_SaveDialogU8 NFD_SaveDialogN
#define NFD_PickFolderU8 NFD_PickFolderN
#define NFD_PathSet_GetPathU8 NFD_PathSet_GetPathN
#define NFD_PathSet_FreePathU8 NFD_PathSet_FreePathN
#define NFD_PathSet_EnumNextU8 NFD_PathSet_EnumNextN
#endif // _WIN32
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // _NFD_H
|
whupdup/frame
|
real/third_party/tracy/nfd/nfd.h
|
C++
|
gpl-3.0
| 10,418
|
/*
Native File Dialog Extended
Repository: https://github.com/btzy/nativefiledialog-extended
License: Zlib
Authors: Bernard Teo, Michael Labbe
*/
#include <AppKit/AppKit.h>
#include "nfd.h"
static const char* g_errorstr = NULL;
static void NFDi_SetError(const char* msg) {
g_errorstr = msg;
}
static void* NFDi_Malloc(size_t bytes) {
void* ptr = malloc(bytes);
if (!ptr) NFDi_SetError("NFDi_Malloc failed.");
return ptr;
}
static void NFDi_Free(void* ptr) {
assert(ptr);
free(ptr);
}
static NSArray* BuildAllowedFileTypes(const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
// Commas and semicolons are the same thing on this platform
NSMutableArray* buildFilterList = [[NSMutableArray alloc] init];
for (nfdfiltersize_t filterIndex = 0; filterIndex != filterCount; ++filterIndex) {
// this is the spec to parse (we don't use the friendly name on OS X)
const nfdnchar_t* filterSpec = filterList[filterIndex].spec;
const nfdnchar_t* p_currentFilterBegin = filterSpec;
for (const nfdnchar_t* p_filterSpec = filterSpec; *p_filterSpec; ++p_filterSpec) {
if (*p_filterSpec == ',') {
// add the extension to the array
NSString* filterStr = [[[NSString alloc]
initWithBytes:(const void*)p_currentFilterBegin
length:(sizeof(nfdnchar_t) * (p_filterSpec - p_currentFilterBegin))
encoding:NSUTF8StringEncoding] autorelease];
[buildFilterList addObject:filterStr];
p_currentFilterBegin = p_filterSpec + 1;
}
}
// add the extension to the array
NSString* filterStr = [NSString stringWithUTF8String:p_currentFilterBegin];
[buildFilterList addObject:filterStr];
}
NSArray* returnArray = [NSArray arrayWithArray:buildFilterList];
[buildFilterList release];
assert([returnArray count] != 0);
return returnArray;
}
static void AddFilterListToDialog(NSSavePanel* dialog,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
// note: NSOpenPanel inherits from NSSavePanel.
if (!filterCount) return;
assert(filterList);
// make NSArray of file types
NSArray* allowedFileTypes = BuildAllowedFileTypes(filterList, filterCount);
// set it on the dialog
[dialog setAllowedFileTypes:allowedFileTypes];
}
static void SetDefaultPath(NSSavePanel* dialog, const nfdnchar_t* defaultPath) {
if (!defaultPath || !*defaultPath) return;
NSString* defaultPathString = [NSString stringWithUTF8String:defaultPath];
NSURL* url = [NSURL fileURLWithPath:defaultPathString isDirectory:YES];
[dialog setDirectoryURL:url];
}
static void SetDefaultName(NSSavePanel* dialog, const nfdnchar_t* defaultName) {
if (!defaultName || !*defaultName) return;
NSString* defaultNameString = [NSString stringWithUTF8String:defaultName];
[dialog setNameFieldStringValue:defaultNameString];
}
static nfdresult_t CopyUtf8String(const char* utf8Str, nfdnchar_t** out) {
// byte count, not char count
size_t len = strlen(utf8Str);
// Too bad we have to use additional memory for all the result paths,
// because we cannot reconstitute an NSString from a char* to release it properly.
*out = (nfdnchar_t*)NFDi_Malloc(len + 1);
if (*out) {
strcpy(*out, utf8Str);
return NFD_OKAY;
}
return NFD_ERROR;
}
/* public */
const char* NFD_GetError(void) {
return g_errorstr;
}
void NFD_FreePathN(nfdnchar_t* filePath) {
NFDi_Free((void*)filePath);
}
static NSApplicationActivationPolicy old_app_policy;
nfdresult_t NFD_Init(void) {
NSApplication* app = [NSApplication sharedApplication];
old_app_policy = [app activationPolicy];
if (old_app_policy == NSApplicationActivationPolicyProhibited) {
if (![app setActivationPolicy:NSApplicationActivationPolicyAccessory]) {
NFDi_SetError("Failed to set activation policy.");
return NFD_ERROR;
}
}
return NFD_OKAY;
}
/* call this to de-initialize NFD, if NFD_Init returned NFD_OKAY */
void NFD_Quit(void) {
[[NSApplication sharedApplication] setActivationPolicy:old_app_policy];
}
nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
nfdresult_t result = NFD_CANCEL;
@autoreleasepool {
NSWindow* keyWindow = [[NSApplication sharedApplication] keyWindow];
NSOpenPanel* dialog = [NSOpenPanel openPanel];
[dialog setAllowsMultipleSelection:NO];
// Build the filter list
AddFilterListToDialog(dialog, filterList, filterCount);
// Set the starting directory
SetDefaultPath(dialog, defaultPath);
if ([dialog runModal] == NSModalResponseOK) {
const NSURL* url = [dialog URL];
const char* utf8Path = [[url path] UTF8String];
result = CopyUtf8String(utf8Path, outPath);
}
// return focus to the key window (i.e. main window)
[keyWindow makeKeyAndOrderFront:nil];
}
return result;
}
nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
nfdresult_t result = NFD_CANCEL;
@autoreleasepool {
NSWindow* keyWindow = [[NSApplication sharedApplication] keyWindow];
NSOpenPanel* dialog = [NSOpenPanel openPanel];
[dialog setAllowsMultipleSelection:YES];
// Build the filter list
AddFilterListToDialog(dialog, filterList, filterCount);
// Set the starting directory
SetDefaultPath(dialog, defaultPath);
if ([dialog runModal] == NSModalResponseOK) {
const NSArray* urls = [dialog URLs];
if ([urls count] > 0) {
// have at least one URL, we return this NSArray
[urls retain];
*outPaths = (const nfdpathset_t*)urls;
result = NFD_OKAY;
}
}
// return focus to the key window (i.e. main window)
[keyWindow makeKeyAndOrderFront:nil];
}
return result;
}
nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
nfdresult_t result = NFD_CANCEL;
@autoreleasepool {
NSWindow* keyWindow = [[NSApplication sharedApplication] keyWindow];
NSSavePanel* dialog = [NSSavePanel savePanel];
[dialog setExtensionHidden:NO];
// allow other file types, to give the user an escape hatch since you can't select "*.*" on
// Mac
[dialog setAllowsOtherFileTypes:TRUE];
// Build the filter list
AddFilterListToDialog(dialog, filterList, filterCount);
// Set the starting directory
SetDefaultPath(dialog, defaultPath);
// Set the default file name
SetDefaultName(dialog, defaultName);
if ([dialog runModal] == NSModalResponseOK) {
const NSURL* url = [dialog URL];
const char* utf8Path = [[url path] UTF8String];
result = CopyUtf8String(utf8Path, outPath);
}
// return focus to the key window (i.e. main window)
[keyWindow makeKeyAndOrderFront:nil];
}
return result;
}
nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath) {
nfdresult_t result = NFD_CANCEL;
@autoreleasepool {
NSWindow* keyWindow = [[NSApplication sharedApplication] keyWindow];
NSOpenPanel* dialog = [NSOpenPanel openPanel];
[dialog setAllowsMultipleSelection:NO];
[dialog setCanChooseDirectories:YES];
[dialog setCanCreateDirectories:YES];
[dialog setCanChooseFiles:NO];
// Set the starting directory
SetDefaultPath(dialog, defaultPath);
if ([dialog runModal] == NSModalResponseOK) {
const NSURL* url = [dialog URL];
const char* utf8Path = [[url path] UTF8String];
result = CopyUtf8String(utf8Path, outPath);
}
// return focus to the key window (i.e. main window)
[keyWindow makeKeyAndOrderFront:nil];
}
return result;
}
nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) {
const NSArray* urls = (const NSArray*)pathSet;
*count = [urls count];
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdnchar_t** outPath) {
const NSArray* urls = (const NSArray*)pathSet;
@autoreleasepool {
// autoreleasepool needed because UTF8String method might use the pool
const NSURL* url = [urls objectAtIndex:index];
const char* utf8Path = [[url path] UTF8String];
return CopyUtf8String(utf8Path, outPath);
}
}
void NFD_PathSet_Free(const nfdpathset_t* pathSet) {
const NSArray* urls = (const NSArray*)pathSet;
[urls release];
}
nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator) {
const NSArray* urls = (const NSArray*)pathSet;
@autoreleasepool {
// autoreleasepool needed because NSEnumerator uses it
NSEnumerator* enumerator = [urls objectEnumerator];
[enumerator retain];
outEnumerator->ptr = (void*)enumerator;
}
return NFD_OKAY;
}
void NFD_PathSet_FreeEnum(nfdpathsetenum_t* enumerator) {
NSEnumerator* real_enum = (NSEnumerator*)enumerator->ptr;
[real_enum release];
}
nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath) {
NSEnumerator* real_enum = (NSEnumerator*)enumerator->ptr;
@autoreleasepool {
// autoreleasepool needed because NSURL uses it
const NSURL* url = [real_enum nextObject];
if (url) {
const char* utf8Path = [[url path] UTF8String];
return CopyUtf8String(utf8Path, outPath);
} else {
*outPath = NULL;
return NFD_OKAY;
}
}
}
|
whupdup/frame
|
real/third_party/tracy/nfd/nfd_cocoa.m
|
Objective-C++
|
gpl-3.0
| 10,674
|
/*
Native File Dialog Extended
Repository: https://github.com/btzy/nativefiledialog-extended
License: Zlib
Authors: Bernard Teo, Michael Labbe
Note: We do not check for malloc failure on Linux - Linux overcommits memory!
*/
#include <assert.h>
#include <gtk/gtk.h>
#if defined(GDK_WINDOWING_X11)
#include <gdk/gdkx.h>
#endif
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "nfd.h"
namespace {
template <typename T>
struct Free_Guard {
T* data;
Free_Guard(T* freeable) noexcept : data(freeable) {}
~Free_Guard() { NFDi_Free(data); }
};
template <typename T>
struct FreeCheck_Guard {
T* data;
FreeCheck_Guard(T* freeable = nullptr) noexcept : data(freeable) {}
~FreeCheck_Guard() {
if (data) NFDi_Free(data);
}
};
/* current error */
const char* g_errorstr = nullptr;
void NFDi_SetError(const char* msg) {
g_errorstr = msg;
}
template <typename T = void>
T* NFDi_Malloc(size_t bytes) {
void* ptr = malloc(bytes);
if (!ptr) NFDi_SetError("NFDi_Malloc failed.");
return static_cast<T*>(ptr);
}
template <typename T>
void NFDi_Free(T* ptr) {
assert(ptr);
free(static_cast<void*>(ptr));
}
template <typename T>
T* copy(const T* begin, const T* end, T* out) {
for (; begin != end; ++begin) {
*out++ = *begin;
}
return out;
}
// Does not own the filter and extension.
struct Pair_GtkFileFilter_FileExtension {
GtkFileFilter* filter;
const nfdnchar_t* extensionBegin;
const nfdnchar_t* extensionEnd;
};
struct ButtonClickedArgs {
Pair_GtkFileFilter_FileExtension* map;
GtkFileChooser* chooser;
};
void AddFiltersToDialog(GtkFileChooser* chooser,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
if (filterCount) {
assert(filterList);
// we have filters to add ... format and add them
for (nfdfiltersize_t index = 0; index != filterCount; ++index) {
GtkFileFilter* filter = gtk_file_filter_new();
// count number of file extensions
size_t sep = 1;
for (const nfdnchar_t* p_spec = filterList[index].spec; *p_spec; ++p_spec) {
if (*p_spec == L',') {
++sep;
}
}
// friendly name conversions: "png,jpg" -> "Image files
// (png, jpg)"
// calculate space needed (including the trailing '\0')
size_t nameSize =
sep + strlen(filterList[index].spec) + 3 + strlen(filterList[index].name);
// malloc the required memory
nfdnchar_t* nameBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) * nameSize);
nfdnchar_t* p_nameBuf = nameBuf;
for (const nfdnchar_t* p_filterName = filterList[index].name; *p_filterName;
++p_filterName) {
*p_nameBuf++ = *p_filterName;
}
*p_nameBuf++ = ' ';
*p_nameBuf++ = '(';
const nfdnchar_t* p_extensionStart = filterList[index].spec;
for (const nfdnchar_t* p_spec = filterList[index].spec; true; ++p_spec) {
if (*p_spec == ',' || !*p_spec) {
if (*p_spec == ',') {
*p_nameBuf++ = ',';
*p_nameBuf++ = ' ';
}
// +1 for the trailing '\0'
nfdnchar_t* extnBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) *
(p_spec - p_extensionStart + 3));
nfdnchar_t* p_extnBufEnd = extnBuf;
*p_extnBufEnd++ = '*';
*p_extnBufEnd++ = '.';
p_extnBufEnd = copy(p_extensionStart, p_spec, p_extnBufEnd);
*p_extnBufEnd++ = '\0';
assert((size_t)(p_extnBufEnd - extnBuf) ==
sizeof(nfdnchar_t) * (p_spec - p_extensionStart + 3));
gtk_file_filter_add_pattern(filter, extnBuf);
NFDi_Free(extnBuf);
if (*p_spec) {
// update the extension start point
p_extensionStart = p_spec + 1;
} else {
// reached the '\0' character
break;
}
} else {
*p_nameBuf++ = *p_spec;
}
}
*p_nameBuf++ = ')';
*p_nameBuf++ = '\0';
assert((size_t)(p_nameBuf - nameBuf) == sizeof(nfdnchar_t) * nameSize);
// add to the filter
gtk_file_filter_set_name(filter, nameBuf);
// free the memory
NFDi_Free(nameBuf);
// add filter to chooser
gtk_file_chooser_add_filter(chooser, filter);
}
}
/* always append a wildcard option to the end*/
GtkFileFilter* filter = gtk_file_filter_new();
gtk_file_filter_set_name(filter, "All files");
gtk_file_filter_add_pattern(filter, "*");
gtk_file_chooser_add_filter(chooser, filter);
}
// returns null-terminated map (trailing .filter is null)
Pair_GtkFileFilter_FileExtension* AddFiltersToDialogWithMap(GtkFileChooser* chooser,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
Pair_GtkFileFilter_FileExtension* map = NFDi_Malloc<Pair_GtkFileFilter_FileExtension>(
sizeof(Pair_GtkFileFilter_FileExtension) * (filterCount + 1));
if (filterCount) {
assert(filterList);
// we have filters to add ... format and add them
for (nfdfiltersize_t index = 0; index != filterCount; ++index) {
GtkFileFilter* filter = gtk_file_filter_new();
// store filter in map
map[index].filter = filter;
map[index].extensionBegin = filterList[index].spec;
map[index].extensionEnd = nullptr;
// count number of file extensions
size_t sep = 1;
for (const nfdnchar_t* p_spec = filterList[index].spec; *p_spec; ++p_spec) {
if (*p_spec == L',') {
++sep;
}
}
// friendly name conversions: "png,jpg" -> "Image files
// (png, jpg)"
// calculate space needed (including the trailing '\0')
size_t nameSize =
sep + strlen(filterList[index].spec) + 3 + strlen(filterList[index].name);
// malloc the required memory
nfdnchar_t* nameBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) * nameSize);
nfdnchar_t* p_nameBuf = nameBuf;
for (const nfdnchar_t* p_filterName = filterList[index].name; *p_filterName;
++p_filterName) {
*p_nameBuf++ = *p_filterName;
}
*p_nameBuf++ = ' ';
*p_nameBuf++ = '(';
const nfdnchar_t* p_extensionStart = filterList[index].spec;
for (const nfdnchar_t* p_spec = filterList[index].spec; true; ++p_spec) {
if (*p_spec == ',' || !*p_spec) {
if (*p_spec == ',') {
*p_nameBuf++ = ',';
*p_nameBuf++ = ' ';
}
// +1 for the trailing '\0'
nfdnchar_t* extnBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) *
(p_spec - p_extensionStart + 3));
nfdnchar_t* p_extnBufEnd = extnBuf;
*p_extnBufEnd++ = '*';
*p_extnBufEnd++ = '.';
p_extnBufEnd = copy(p_extensionStart, p_spec, p_extnBufEnd);
*p_extnBufEnd++ = '\0';
assert((size_t)(p_extnBufEnd - extnBuf) ==
sizeof(nfdnchar_t) * (p_spec - p_extensionStart + 3));
gtk_file_filter_add_pattern(filter, extnBuf);
NFDi_Free(extnBuf);
// store current pointer in map (if it's
// the first one)
if (map[index].extensionEnd == nullptr) {
map[index].extensionEnd = p_spec;
}
if (*p_spec) {
// update the extension start point
p_extensionStart = p_spec + 1;
} else {
// reached the '\0' character
break;
}
} else {
*p_nameBuf++ = *p_spec;
}
}
*p_nameBuf++ = ')';
*p_nameBuf++ = '\0';
assert((size_t)(p_nameBuf - nameBuf) == sizeof(nfdnchar_t) * nameSize);
// add to the filter
gtk_file_filter_set_name(filter, nameBuf);
// free the memory
NFDi_Free(nameBuf);
// add filter to chooser
gtk_file_chooser_add_filter(chooser, filter);
}
}
// set trailing map index to null
map[filterCount].filter = nullptr;
/* always append a wildcard option to the end*/
GtkFileFilter* filter = gtk_file_filter_new();
gtk_file_filter_set_name(filter, "All files");
gtk_file_filter_add_pattern(filter, "*");
gtk_file_chooser_add_filter(chooser, filter);
return map;
}
void SetDefaultPath(GtkFileChooser* chooser, const char* defaultPath) {
if (!defaultPath || !*defaultPath) return;
/* GTK+ manual recommends not specifically setting the default path.
We do it anyway in order to be consistent across platforms.
If consistency with the native OS is preferred, this is the line
to comment out. -ml */
gtk_file_chooser_set_current_folder(chooser, defaultPath);
}
void SetDefaultName(GtkFileChooser* chooser, const char* defaultName) {
if (!defaultName || !*defaultName) return;
gtk_file_chooser_set_current_name(chooser, defaultName);
}
void WaitForCleanup() {
while (gtk_events_pending()) gtk_main_iteration();
}
struct Widget_Guard {
GtkWidget* data;
Widget_Guard(GtkWidget* widget) : data(widget) {}
~Widget_Guard() {
WaitForCleanup();
gtk_widget_destroy(data);
WaitForCleanup();
}
};
void FileActivatedSignalHandler(GtkButton* saveButton, void* userdata) {
(void)saveButton; // silence the unused arg warning
ButtonClickedArgs* args = static_cast<ButtonClickedArgs*>(userdata);
GtkFileChooser* chooser = args->chooser;
char* currentFileName = gtk_file_chooser_get_current_name(chooser);
if (*currentFileName) { // string is not empty
// find a '.' in the file name
const char* p_period = currentFileName;
for (; *p_period; ++p_period) {
if (*p_period == '.') {
break;
}
}
if (!*p_period) { // there is no '.', so append the default extension
Pair_GtkFileFilter_FileExtension* filterMap =
static_cast<Pair_GtkFileFilter_FileExtension*>(args->map);
GtkFileFilter* currentFilter = gtk_file_chooser_get_filter(chooser);
if (currentFilter) {
for (; filterMap->filter; ++filterMap) {
if (filterMap->filter == currentFilter) break;
}
}
if (filterMap->filter) {
// memory for appended string (including '.' and
// trailing '\0')
char* appendedFileName = NFDi_Malloc<char>(
sizeof(char) * ((p_period - currentFileName) +
(filterMap->extensionEnd - filterMap->extensionBegin) + 2));
char* p_fileName = copy(currentFileName, p_period, appendedFileName);
*p_fileName++ = '.';
p_fileName = copy(filterMap->extensionBegin, filterMap->extensionEnd, p_fileName);
*p_fileName++ = '\0';
assert(p_fileName - appendedFileName ==
(p_period - currentFileName) +
(filterMap->extensionEnd - filterMap->extensionBegin) + 2);
// set the appended file name
gtk_file_chooser_set_current_name(chooser, appendedFileName);
// free the memory
NFDi_Free(appendedFileName);
}
}
}
// free the memory
g_free(currentFileName);
}
// wrapper for gtk_dialog_run() that brings the dialog to the front
// see issues at:
// https://github.com/btzy/nativefiledialog-extended/issues/31
// https://github.com/mlabbe/nativefiledialog/pull/92
// https://github.com/guillaumechereau/noc/pull/11
gint RunDialogWithFocus(GtkDialog* dialog) {
#if defined(GDK_WINDOWING_X11)
gtk_widget_show_all(GTK_WIDGET(dialog)); // show the dialog so that it gets a display
if (GDK_IS_X11_DISPLAY(gtk_widget_get_display(GTK_WIDGET(dialog)))) {
GdkWindow* window = gtk_widget_get_window(GTK_WIDGET(dialog));
gdk_window_set_events(
window,
static_cast<GdkEventMask>(gdk_window_get_events(window) | GDK_PROPERTY_CHANGE_MASK));
gtk_window_present_with_time(GTK_WINDOW(dialog), gdk_x11_get_server_time(window));
}
#endif
return gtk_dialog_run(dialog);
}
} // namespace
const char* NFD_GetError(void) {
return g_errorstr;
}
void NFD_ClearError(void) {
NFDi_SetError(nullptr);
}
/* public */
nfdresult_t NFD_Init(void) {
// Init GTK
if (!gtk_init_check(NULL, NULL)) {
NFDi_SetError("Failed to initialize GTK+ with gtk_init_check.");
return NFD_ERROR;
}
return NFD_OKAY;
}
void NFD_Quit(void) {
// do nothing, GTK cannot be de-initialized
}
void NFD_FreePathN(nfdnchar_t* filePath) {
assert(filePath);
g_free(filePath);
}
nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
GtkWidget* widget = gtk_file_chooser_dialog_new("Open File",
nullptr,
GTK_FILE_CHOOSER_ACTION_OPEN,
"_Cancel",
GTK_RESPONSE_CANCEL,
"_Open",
GTK_RESPONSE_ACCEPT,
nullptr);
// guard to destroy the widget when returning from this function
Widget_Guard widgetGuard(widget);
/* Build the filter list */
AddFiltersToDialog(GTK_FILE_CHOOSER(widget), filterList, filterCount);
/* Set the default path */
SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath);
if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) {
// write out the file name
*outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget));
return NFD_OKAY;
} else {
return NFD_CANCEL;
}
}
nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
GtkWidget* widget = gtk_file_chooser_dialog_new("Open Files",
nullptr,
GTK_FILE_CHOOSER_ACTION_OPEN,
"_Cancel",
GTK_RESPONSE_CANCEL,
"_Open",
GTK_RESPONSE_ACCEPT,
nullptr);
// guard to destroy the widget when returning from this function
Widget_Guard widgetGuard(widget);
// set select multiple
gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(widget), TRUE);
/* Build the filter list */
AddFiltersToDialog(GTK_FILE_CHOOSER(widget), filterList, filterCount);
/* Set the default path */
SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath);
if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) {
// write out the file name
GSList* fileList = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(widget));
*outPaths = static_cast<void*>(fileList);
return NFD_OKAY;
} else {
return NFD_CANCEL;
}
}
nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
GtkWidget* widget = gtk_file_chooser_dialog_new("Save File",
nullptr,
GTK_FILE_CHOOSER_ACTION_SAVE,
"_Cancel",
GTK_RESPONSE_CANCEL,
nullptr);
// guard to destroy the widget when returning from this function
Widget_Guard widgetGuard(widget);
GtkWidget* saveButton = gtk_dialog_add_button(GTK_DIALOG(widget), "_Save", GTK_RESPONSE_ACCEPT);
// Prompt on overwrite
gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(widget), TRUE);
/* Build the filter list */
ButtonClickedArgs buttonClickedArgs;
buttonClickedArgs.chooser = GTK_FILE_CHOOSER(widget);
buttonClickedArgs.map =
AddFiltersToDialogWithMap(GTK_FILE_CHOOSER(widget), filterList, filterCount);
/* Set the default path */
SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath);
/* Set the default file name */
SetDefaultName(GTK_FILE_CHOOSER(widget), defaultName);
/* set the handler to add file extension */
gulong handlerID = g_signal_connect(G_OBJECT(saveButton),
"pressed",
G_CALLBACK(FileActivatedSignalHandler),
static_cast<void*>(&buttonClickedArgs));
/* invoke the dialog (blocks until dialog is closed) */
gint result = RunDialogWithFocus(GTK_DIALOG(widget));
/* unset the handler */
g_signal_handler_disconnect(G_OBJECT(saveButton), handlerID);
/* free the filter map */
NFDi_Free(buttonClickedArgs.map);
if (result == GTK_RESPONSE_ACCEPT) {
// write out the file name
*outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget));
return NFD_OKAY;
} else {
return NFD_CANCEL;
}
}
nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath) {
GtkWidget* widget = gtk_file_chooser_dialog_new("Select folder",
nullptr,
GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
"_Cancel",
GTK_RESPONSE_CANCEL,
"_Select",
GTK_RESPONSE_ACCEPT,
nullptr);
// guard to destroy the widget when returning from this function
Widget_Guard widgetGuard(widget);
/* Set the default path */
SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath);
if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) {
// write out the file name
*outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget));
return NFD_OKAY;
} else {
return NFD_CANCEL;
}
}
nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) {
assert(pathSet);
// const_cast because methods on GSList aren't const, but it should act
// like const to the caller
GSList* fileList = const_cast<GSList*>(static_cast<const GSList*>(pathSet));
*count = g_slist_length(fileList);
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdnchar_t** outPath) {
assert(pathSet);
// const_cast because methods on GSList aren't const, but it should act
// like const to the caller
GSList* fileList = const_cast<GSList*>(static_cast<const GSList*>(pathSet));
// Note: this takes linear time... but should be good enough
*outPath = static_cast<nfdnchar_t*>(g_slist_nth_data(fileList, index));
return NFD_OKAY;
}
void NFD_PathSet_FreePathN(const nfdnchar_t* filePath) {
assert(filePath);
(void)filePath; // prevent warning in release build
// no-op, because NFD_PathSet_Free does the freeing for us
}
void NFD_PathSet_Free(const nfdpathset_t* pathSet) {
assert(pathSet);
// const_cast because methods on GSList aren't const, but it should act
// like const to the caller
GSList* fileList = const_cast<GSList*>(static_cast<const GSList*>(pathSet));
// free all the nodes
for (GSList* node = fileList; node; node = node->next) {
assert(node->data);
g_free(node->data);
}
// free the path set memory
g_slist_free(fileList);
}
nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator) {
// The pathset (GSList) is already a linked list, so the enumeration is itself
outEnumerator->ptr = const_cast<void*>(pathSet);
return NFD_OKAY;
}
void NFD_PathSet_FreeEnum(nfdpathsetenum_t*) {
// Do nothing, because the enumeration is the pathset itself
}
nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath) {
const GSList* fileList = static_cast<const GSList*>(enumerator->ptr);
if (fileList) {
*outPath = static_cast<nfdnchar_t*>(fileList->data);
enumerator->ptr = static_cast<void*>(fileList->next);
} else {
*outPath = nullptr;
}
return NFD_OKAY;
}
|
whupdup/frame
|
real/third_party/tracy/nfd/nfd_gtk.cpp
|
C++
|
gpl-3.0
| 22,680
|
/*
Native File Dialog Extended
Repository: https://github.com/btzy/nativefiledialog-extended
License: Zlib
Authors: Bernard Teo
Note: We do not check for malloc failure on Linux - Linux overcommits memory!
*/
#include <assert.h>
#include <dbus/dbus.h>
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/random.h> // for the random token string
#include <unistd.h> // for access()
#include "nfd.h"
/*
Define NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION to 0 if you don't want the file extension to be
appended when missing. Linux programs usually doesn't append the file extension, but for consistency
with other OSes we append it by default.
*/
#ifndef NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION
#define NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION 1
#endif
namespace {
template <typename T = void>
T* NFDi_Malloc(size_t bytes) {
void* ptr = malloc(bytes);
assert(ptr); // Linux malloc never fails
return static_cast<T*>(ptr);
}
template <typename T>
void NFDi_Free(T* ptr) {
assert(ptr);
free(static_cast<void*>(ptr));
}
template <typename T>
struct Free_Guard {
T* data;
Free_Guard(T* freeable) noexcept : data(freeable) {}
~Free_Guard() { NFDi_Free(data); }
};
template <typename T>
struct FreeCheck_Guard {
T* data;
FreeCheck_Guard(T* freeable = nullptr) noexcept : data(freeable) {}
~FreeCheck_Guard() {
if (data) NFDi_Free(data);
}
};
struct DBusMessage_Guard {
DBusMessage* data;
DBusMessage_Guard(DBusMessage* freeable) noexcept : data(freeable) {}
~DBusMessage_Guard() { dbus_message_unref(data); }
};
/* D-Bus connection handle */
DBusConnection* dbus_conn;
/* current D-Bus error */
DBusError dbus_err;
/* current error (may be a pointer to the D-Bus error message above, or a pointer to some string
* literal) */
const char* err_ptr = nullptr;
/* the unique name of our connection, used for the Request handle; owned by D-Bus so we don't free
* it */
const char* dbus_unique_name;
void NFDi_SetError(const char* msg) {
err_ptr = msg;
}
template <typename T>
T* copy(const T* begin, const T* end, T* out) {
for (; begin != end; ++begin) {
*out++ = *begin;
}
return out;
}
template <typename T, typename Callback>
T* transform(const T* begin, const T* end, T* out, Callback callback) {
for (; begin != end; ++begin) {
*out++ = callback(*begin);
}
return out;
}
constexpr const char* STR_EMPTY = "";
constexpr const char* STR_OPEN_FILE = "Open File";
constexpr const char* STR_OPEN_FILES = "Open Files";
constexpr const char* STR_SAVE_FILE = "Save File";
constexpr const char* STR_SELECT_FOLDER = "Select Folder";
constexpr const char* STR_HANDLE_TOKEN = "handle_token";
constexpr const char* STR_MULTIPLE = "multiple";
constexpr const char* STR_DIRECTORY = "directory";
constexpr const char* STR_FILTERS = "filters";
constexpr const char* STR_CURRENT_FILTER = "current_filter";
constexpr const char* STR_CURRENT_NAME = "current_name";
constexpr const char* STR_CURRENT_FOLDER = "current_folder";
constexpr const char* STR_CURRENT_FILE = "current_file";
constexpr const char* STR_ALL_FILES = "All files";
constexpr const char* STR_ASTERISK = "*";
template <bool Multiple, bool Directory>
void AppendOpenFileQueryTitle(DBusMessageIter&);
template <>
void AppendOpenFileQueryTitle<false, false>(DBusMessageIter& iter) {
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_OPEN_FILE);
}
template <>
void AppendOpenFileQueryTitle<true, false>(DBusMessageIter& iter) {
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_OPEN_FILES);
}
template <>
void AppendOpenFileQueryTitle<false, true>(DBusMessageIter& iter) {
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_SELECT_FOLDER);
}
void AppendSaveFileQueryTitle(DBusMessageIter& iter) {
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_SAVE_FILE);
}
void AppendOpenFileQueryDictEntryHandleToken(DBusMessageIter& sub_iter, const char* handle_token) {
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_HANDLE_TOKEN);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "s", &variant_iter);
dbus_message_iter_append_basic(&variant_iter, DBUS_TYPE_STRING, &handle_token);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
template <bool Multiple>
void AppendOpenFileQueryDictEntryMultiple(DBusMessageIter&);
template <>
void AppendOpenFileQueryDictEntryMultiple<true>(DBusMessageIter& sub_iter) {
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_MULTIPLE);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "b", &variant_iter);
{
int b = true;
dbus_message_iter_append_basic(&variant_iter, DBUS_TYPE_BOOLEAN, &b);
}
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
template <>
void AppendOpenFileQueryDictEntryMultiple<false>(DBusMessageIter&) {}
template <bool Directory>
void AppendOpenFileQueryDictEntryDirectory(DBusMessageIter&);
template <>
void AppendOpenFileQueryDictEntryDirectory<true>(DBusMessageIter& sub_iter) {
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_DIRECTORY);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "b", &variant_iter);
{
int b = true;
dbus_message_iter_append_basic(&variant_iter, DBUS_TYPE_BOOLEAN, &b);
}
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
template <>
void AppendOpenFileQueryDictEntryDirectory<false>(DBusMessageIter&) {}
void AppendSingleFilter(DBusMessageIter& base_iter, const nfdnfilteritem_t& filter) {
DBusMessageIter filter_list_struct_iter;
DBusMessageIter filter_sublist_iter;
DBusMessageIter filter_sublist_struct_iter;
dbus_message_iter_open_container(
&base_iter, DBUS_TYPE_STRUCT, nullptr, &filter_list_struct_iter);
// count number of file extensions
size_t sep = 1;
for (const char* p = filter.spec; *p; ++p) {
if (*p == L',') {
++sep;
}
}
{
const size_t name_len = strlen(filter.name);
const size_t spec_len = strlen(filter.spec);
char* buf = static_cast<char*>(alloca(sep + name_len + 2 + spec_len + 1));
char* buf_end = buf;
buf_end = copy(filter.name, filter.name + name_len, buf_end);
*buf_end++ = ' ';
*buf_end++ = '(';
const char* spec_ptr = filter.spec;
do {
*buf_end++ = *spec_ptr;
if (*spec_ptr == ',') *buf_end++ = ' ';
++spec_ptr;
} while (*spec_ptr != '\0');
*buf_end++ = ')';
*buf_end = '\0';
dbus_message_iter_append_basic(&filter_list_struct_iter, DBUS_TYPE_STRING, &buf);
}
{
dbus_message_iter_open_container(
&filter_list_struct_iter, DBUS_TYPE_ARRAY, "(us)", &filter_sublist_iter);
const char* extn_begin = filter.spec;
const char* extn_end = extn_begin;
while (true) {
dbus_message_iter_open_container(
&filter_sublist_iter, DBUS_TYPE_STRUCT, nullptr, &filter_sublist_struct_iter);
{
const unsigned zero = 0;
dbus_message_iter_append_basic(
&filter_sublist_struct_iter, DBUS_TYPE_UINT32, &zero);
}
do {
++extn_end;
} while (*extn_end != ',' && *extn_end != '\0');
char* buf = static_cast<char*>(alloca(2 + (extn_end - extn_begin) + 1));
char* buf_end = buf;
*buf_end++ = '*';
*buf_end++ = '.';
buf_end = copy(extn_begin, extn_end, buf_end);
*buf_end = '\0';
dbus_message_iter_append_basic(&filter_sublist_struct_iter, DBUS_TYPE_STRING, &buf);
dbus_message_iter_close_container(&filter_sublist_iter, &filter_sublist_struct_iter);
if (*extn_end == '\0') {
break;
}
extn_begin = extn_end + 1;
extn_end = extn_begin;
}
}
dbus_message_iter_close_container(&filter_list_struct_iter, &filter_sublist_iter);
dbus_message_iter_close_container(&base_iter, &filter_list_struct_iter);
}
bool AppendSingleFilterCheckExtn(DBusMessageIter& base_iter,
const nfdnfilteritem_t& filter,
const nfdnchar_t* match_extn) {
DBusMessageIter filter_list_struct_iter;
DBusMessageIter filter_sublist_iter;
DBusMessageIter filter_sublist_struct_iter;
dbus_message_iter_open_container(
&base_iter, DBUS_TYPE_STRUCT, nullptr, &filter_list_struct_iter);
// count number of file extensions
size_t sep = 1;
for (const char* p = filter.spec; *p; ++p) {
if (*p == L',') {
++sep;
}
}
{
const size_t name_len = strlen(filter.name);
const size_t spec_len = strlen(filter.spec);
char* buf = static_cast<char*>(alloca(sep + name_len + 2 + spec_len + 1));
char* buf_end = buf;
buf_end = copy(filter.name, filter.name + name_len, buf_end);
*buf_end++ = ' ';
*buf_end++ = '(';
const char* spec_ptr = filter.spec;
do {
*buf_end++ = *spec_ptr;
if (*spec_ptr == ',') *buf_end++ = ' ';
++spec_ptr;
} while (*spec_ptr != '\0');
*buf_end++ = ')';
*buf_end = '\0';
dbus_message_iter_append_basic(&filter_list_struct_iter, DBUS_TYPE_STRING, &buf);
}
bool extn_matched = false;
{
dbus_message_iter_open_container(
&filter_list_struct_iter, DBUS_TYPE_ARRAY, "(us)", &filter_sublist_iter);
const char* extn_begin = filter.spec;
const char* extn_end = extn_begin;
while (true) {
dbus_message_iter_open_container(
&filter_sublist_iter, DBUS_TYPE_STRUCT, nullptr, &filter_sublist_struct_iter);
{
const unsigned zero = 0;
dbus_message_iter_append_basic(
&filter_sublist_struct_iter, DBUS_TYPE_UINT32, &zero);
}
do {
++extn_end;
} while (*extn_end != ',' && *extn_end != '\0');
char* buf = static_cast<char*>(alloca(2 + (extn_end - extn_begin) + 1));
char* buf_end = buf;
*buf_end++ = '*';
*buf_end++ = '.';
buf_end = copy(extn_begin, extn_end, buf_end);
*buf_end = '\0';
dbus_message_iter_append_basic(&filter_sublist_struct_iter, DBUS_TYPE_STRING, &buf);
dbus_message_iter_close_container(&filter_sublist_iter, &filter_sublist_struct_iter);
if (!extn_matched) {
const char* match_extn_p;
const char* p;
for (p = extn_begin, match_extn_p = match_extn; p != extn_end && *match_extn_p;
++p, ++match_extn_p) {
if (*p != *match_extn_p) break;
}
if (p == extn_end && !*match_extn_p) {
extn_matched = true;
}
}
if (*extn_end == '\0') {
break;
}
extn_begin = extn_end + 1;
extn_end = extn_begin;
}
}
dbus_message_iter_close_container(&filter_list_struct_iter, &filter_sublist_iter);
dbus_message_iter_close_container(&base_iter, &filter_list_struct_iter);
return extn_matched;
}
void AppendWildcardFilter(DBusMessageIter& base_iter) {
DBusMessageIter filter_list_struct_iter;
DBusMessageIter filter_sublist_iter;
DBusMessageIter filter_sublist_struct_iter;
dbus_message_iter_open_container(
&base_iter, DBUS_TYPE_STRUCT, nullptr, &filter_list_struct_iter);
dbus_message_iter_append_basic(&filter_list_struct_iter, DBUS_TYPE_STRING, &STR_ALL_FILES);
dbus_message_iter_open_container(
&filter_list_struct_iter, DBUS_TYPE_ARRAY, "(us)", &filter_sublist_iter);
dbus_message_iter_open_container(
&filter_sublist_iter, DBUS_TYPE_STRUCT, nullptr, &filter_sublist_struct_iter);
{
const unsigned zero = 0;
dbus_message_iter_append_basic(&filter_sublist_struct_iter, DBUS_TYPE_UINT32, &zero);
}
dbus_message_iter_append_basic(&filter_sublist_struct_iter, DBUS_TYPE_STRING, &STR_ASTERISK);
dbus_message_iter_close_container(&filter_sublist_iter, &filter_sublist_struct_iter);
dbus_message_iter_close_container(&filter_list_struct_iter, &filter_sublist_iter);
dbus_message_iter_close_container(&base_iter, &filter_list_struct_iter);
}
template <bool FilterEnabled>
void AppendOpenFileQueryDictEntryFilters(DBusMessageIter&,
const nfdnfilteritem_t*,
nfdfiltersize_t);
template <>
void AppendOpenFileQueryDictEntryFilters<true>(DBusMessageIter& sub_iter,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
if (filterCount != 0) {
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
DBusMessageIter filter_list_iter;
// filters
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_FILTERS);
dbus_message_iter_open_container(
&sub_sub_iter, DBUS_TYPE_VARIANT, "a(sa(us))", &variant_iter);
dbus_message_iter_open_container(
&variant_iter, DBUS_TYPE_ARRAY, "(sa(us))", &filter_list_iter);
for (nfdfiltersize_t i = 0; i != filterCount; ++i) {
AppendSingleFilter(filter_list_iter, filterList[i]);
}
AppendWildcardFilter(filter_list_iter);
dbus_message_iter_close_container(&variant_iter, &filter_list_iter);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
// current_filter
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_CURRENT_FILTER);
dbus_message_iter_open_container(
&sub_sub_iter, DBUS_TYPE_VARIANT, "(sa(us))", &variant_iter);
AppendSingleFilter(variant_iter, filterList[0]);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
}
template <>
void AppendOpenFileQueryDictEntryFilters<false>(DBusMessageIter&,
const nfdnfilteritem_t*,
nfdfiltersize_t) {}
void AppendSaveFileQueryDictEntryFilters(DBusMessageIter& sub_iter,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultName) {
if (filterCount != 0) {
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
DBusMessageIter filter_list_iter;
// The extension of the defaultName (without the '.'). If NULL, it means that there is no
// extension.
const nfdnchar_t* extn = NULL;
if (defaultName) {
const nfdnchar_t* p = defaultName;
while (*p) ++p;
while (*--p != '.')
;
++p;
if (*p) extn = p;
}
bool extn_matched = false;
size_t selected_filter_index;
// filters
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_FILTERS);
dbus_message_iter_open_container(
&sub_sub_iter, DBUS_TYPE_VARIANT, "a(sa(us))", &variant_iter);
dbus_message_iter_open_container(
&variant_iter, DBUS_TYPE_ARRAY, "(sa(us))", &filter_list_iter);
for (nfdfiltersize_t i = 0; i != filterCount; ++i) {
if (!extn_matched && extn) {
extn_matched = AppendSingleFilterCheckExtn(filter_list_iter, filterList[i], extn);
if (extn_matched) selected_filter_index = i;
} else {
AppendSingleFilter(filter_list_iter, filterList[i]);
}
}
AppendWildcardFilter(filter_list_iter);
dbus_message_iter_close_container(&variant_iter, &filter_list_iter);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
// current_filter
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_CURRENT_FILTER);
dbus_message_iter_open_container(
&sub_sub_iter, DBUS_TYPE_VARIANT, "(sa(us))", &variant_iter);
if (extn_matched) {
AppendSingleFilter(variant_iter, filterList[selected_filter_index]);
} else {
AppendWildcardFilter(variant_iter);
}
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
}
void AppendSaveFileQueryDictEntryCurrentName(DBusMessageIter& sub_iter, const char* name) {
if (!name) return;
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_CURRENT_NAME);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "s", &variant_iter);
dbus_message_iter_append_basic(&variant_iter, DBUS_TYPE_STRING, &name);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
void AppendSaveFileQueryDictEntryCurrentFolder(DBusMessageIter& sub_iter, const char* path) {
if (!path) return;
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
DBusMessageIter array_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_CURRENT_FOLDER);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "ay", &variant_iter);
dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY, "y", &array_iter);
// Append string as byte array, including the terminating null byte as required by the portal.
const char* p = path;
do {
dbus_message_iter_append_basic(&array_iter, DBUS_TYPE_BYTE, p);
} while (*p++);
dbus_message_iter_close_container(&variant_iter, &array_iter);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
void AppendSaveFileQueryDictEntryCurrentFile(DBusMessageIter& sub_iter,
const char* path,
const char* name) {
if (!path || !name) return;
const size_t path_len = strlen(path);
const size_t name_len = strlen(name);
char* pathname;
char* pathname_end;
size_t pathname_len;
if (path_len && path[path_len - 1] == '/') {
pathname_len = path_len + name_len;
pathname = NFDi_Malloc<char>(pathname_len + 1);
pathname_end = pathname;
pathname_end = copy(path, path + path_len, pathname_end);
pathname_end = copy(name, name + name_len, pathname_end);
*pathname_end++ = '\0';
} else {
pathname_len = path_len + 1 + name_len;
pathname = NFDi_Malloc<char>(pathname_len + 1);
pathname_end = pathname;
pathname_end = copy(path, path + path_len, pathname_end);
*pathname_end++ = '/';
pathname_end = copy(name, name + name_len, pathname_end);
*pathname_end++ = '\0';
}
Free_Guard<char> guard(pathname);
if (access(pathname, F_OK) != 0) return;
DBusMessageIter sub_sub_iter;
DBusMessageIter variant_iter;
DBusMessageIter array_iter;
dbus_message_iter_open_container(&sub_iter, DBUS_TYPE_DICT_ENTRY, nullptr, &sub_sub_iter);
dbus_message_iter_append_basic(&sub_sub_iter, DBUS_TYPE_STRING, &STR_CURRENT_FILE);
dbus_message_iter_open_container(&sub_sub_iter, DBUS_TYPE_VARIANT, "ay", &variant_iter);
dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY, "y", &array_iter);
// This includes the terminating null character, which is required by the portal.
for (const char* p = pathname; p != pathname_end; ++p) {
dbus_message_iter_append_basic(&array_iter, DBUS_TYPE_BYTE, p);
}
dbus_message_iter_close_container(&variant_iter, &array_iter);
dbus_message_iter_close_container(&sub_sub_iter, &variant_iter);
dbus_message_iter_close_container(&sub_iter, &sub_sub_iter);
}
// Append OpenFile() portal params to the given query.
template <bool Multiple, bool Directory>
void AppendOpenFileQueryParams(DBusMessage* query,
const char* handle_token,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
DBusMessageIter iter;
dbus_message_iter_init_append(query, &iter);
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_EMPTY);
AppendOpenFileQueryTitle<Multiple, Directory>(iter);
DBusMessageIter sub_iter;
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{sv}", &sub_iter);
AppendOpenFileQueryDictEntryHandleToken(sub_iter, handle_token);
AppendOpenFileQueryDictEntryMultiple<Multiple>(sub_iter);
AppendOpenFileQueryDictEntryDirectory<Directory>(sub_iter);
AppendOpenFileQueryDictEntryFilters<!Directory>(sub_iter, filterList, filterCount);
dbus_message_iter_close_container(&iter, &sub_iter);
}
// Append SaveFile() portal params to the given query.
void AppendSaveFileQueryParams(DBusMessage* query,
const char* handle_token,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
DBusMessageIter iter;
dbus_message_iter_init_append(query, &iter);
dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &STR_EMPTY);
AppendSaveFileQueryTitle(iter);
DBusMessageIter sub_iter;
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{sv}", &sub_iter);
AppendOpenFileQueryDictEntryHandleToken(sub_iter, handle_token);
AppendSaveFileQueryDictEntryFilters(sub_iter, filterList, filterCount, defaultName);
AppendSaveFileQueryDictEntryCurrentName(sub_iter, defaultName);
AppendSaveFileQueryDictEntryCurrentFolder(sub_iter, defaultPath);
AppendSaveFileQueryDictEntryCurrentFile(sub_iter, defaultPath, defaultName);
dbus_message_iter_close_container(&iter, &sub_iter);
}
nfdresult_t ReadDictImpl(const char*, DBusMessageIter&) {
return NFD_OKAY;
}
template <typename Callback, typename... Args>
nfdresult_t ReadDictImpl(const char* key,
DBusMessageIter& iter,
const char*& candidate_key,
Callback& candidate_callback,
Args&... args) {
if (strcmp(key, candidate_key) == 0) {
// this is the correct callback
return candidate_callback(iter);
} else {
return ReadDictImpl(key, iter, args...);
}
}
// Read a dictionary from the given iterator. The type of the element under this iterator will be
// checked. The args are alternately key and callback. Key is a const char*, and callback is a
// function that returns nfdresult_t. Return NFD_ERROR to stop processing and return immediately.
template <typename... Args>
nfdresult_t ReadDict(DBusMessageIter iter, Args... args) {
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) {
NFDi_SetError("D-Bus response signal argument is not an array.");
return NFD_ERROR;
}
DBusMessageIter sub_iter;
dbus_message_iter_recurse(&iter, &sub_iter);
while (dbus_message_iter_get_arg_type(&sub_iter) == DBUS_TYPE_DICT_ENTRY) {
DBusMessageIter de_iter;
dbus_message_iter_recurse(&sub_iter, &de_iter);
if (dbus_message_iter_get_arg_type(&de_iter) != DBUS_TYPE_STRING) {
NFDi_SetError("D-Bus response signal dict entry does not start with a string.");
return NFD_ERROR;
}
const char* key;
dbus_message_iter_get_basic(&de_iter, &key);
if (!dbus_message_iter_next(&de_iter)) {
NFDi_SetError("D-Bus response signal dict entry is missing one or more arguments.");
return NFD_ERROR;
}
// unwrap the variant
if (dbus_message_iter_get_arg_type(&de_iter) != DBUS_TYPE_VARIANT) {
NFDi_SetError("D-Bus response signal dict entry value is not a variant.");
return NFD_ERROR;
}
DBusMessageIter de_variant_iter;
dbus_message_iter_recurse(&de_iter, &de_variant_iter);
if (ReadDictImpl(key, de_variant_iter, args...) == NFD_ERROR) return NFD_ERROR;
if (!dbus_message_iter_next(&sub_iter)) break;
}
return NFD_OKAY;
}
// Read the message, returning an iterator to the `results` dictionary of the response. If response
// was okay, then returns NFD_OKAY and set `resultsIter` to the results dictionary iterator (this is
// the iterator to the entire dictionary (which has type DBUS_TYPE_ARRAY), not an iterator to the
// first item in the dictionary). It does not check that this iterator is DBUS_TYPE_ARRAY; you
// should use ReadDict() which will check it. Otherwise, returns NFD_CANCEL or NFD_ERROR as
// appropriate, and does not modify `resultsIter`. `resultsIter` can be copied by value.
nfdresult_t ReadResponseResults(DBusMessage* msg, DBusMessageIter& resultsIter) {
DBusMessageIter iter;
if (!dbus_message_iter_init(msg, &iter)) {
NFDi_SetError("D-Bus response signal is missing one or more arguments.");
return NFD_ERROR;
}
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_UINT32) {
NFDi_SetError("D-Bus response signal argument is not a uint32.");
return NFD_ERROR;
}
dbus_uint32_t resp_code;
dbus_message_iter_get_basic(&iter, &resp_code);
if (resp_code != 0) {
if (resp_code == 1) {
// User pressed cancel
return NFD_CANCEL;
} else {
// Some error occurred
NFDi_SetError("D-Bus file dialog interaction was ended abruptly.");
return NFD_ERROR;
}
}
// User successfully responded
if (!dbus_message_iter_next(&iter)) {
NFDi_SetError("D-Bus response signal is missing one or more arguments.");
return NFD_ERROR;
}
resultsIter = iter;
return NFD_OKAY;
}
// Read the message. If response was okay, then returns NFD_OKAY and set `uriIter` to the URI array
// iterator. Otherwise, returns NFD_CANCEL or NFD_ERROR as appropriate, and does not modify
// `uriIter`. `uriIter` can be copied by value.
nfdresult_t ReadResponseUris(DBusMessage* msg, DBusMessageIter& uriIter) {
DBusMessageIter iter;
const nfdresult_t res = ReadResponseResults(msg, iter);
if (res != NFD_OKAY) return res;
bool has_uris = false;
if (ReadDict(iter, "uris", [&uriIter, &has_uris](DBusMessageIter& uris_iter) {
if (dbus_message_iter_get_arg_type(&uris_iter) != DBUS_TYPE_ARRAY) {
NFDi_SetError("D-Bus response signal URI iter is not an array.");
return NFD_ERROR;
}
dbus_message_iter_recurse(&uris_iter, &uriIter);
has_uris = true;
return NFD_OKAY;
}) == NFD_ERROR)
return NFD_ERROR;
if (!has_uris) {
NFDi_SetError("D-Bus response signal has no URI field.");
return NFD_ERROR;
}
return NFD_OKAY;
}
// Same as ReadResponseUris, but does not perform any message type checks.
// You should only use this if you previously used ReadResponseUris and it returned NFD_OKAY!
void ReadResponseUrisUnchecked(DBusMessage* msg, DBusMessageIter& uriIter) {
DBusMessageIter iter;
dbus_message_iter_init(msg, &iter);
dbus_message_iter_next(&iter);
ReadDict(iter, "uris", [&uriIter](DBusMessageIter& uris_iter) {
dbus_message_iter_recurse(&uris_iter, &uriIter);
return NFD_OKAY;
});
}
nfdpathsetsize_t ReadResponseUrisUncheckedGetArraySize(DBusMessage* msg) {
DBusMessageIter iter;
dbus_message_iter_init(msg, &iter);
dbus_message_iter_next(&iter);
nfdpathsetsize_t sz = 0; // Initialization will never be used, but we initialize it to prevent
// the uninitialized warning otherwise.
ReadDict(iter, "uris", [&sz](DBusMessageIter& uris_iter) {
sz = dbus_message_iter_get_element_count(&uris_iter);
return NFD_OKAY;
});
return sz;
}
// Read the response URI. If response was okay, then returns NFD_OKAY and set file to it (the
// pointer is set to some string owned by msg, so you should not manually free it). Otherwise,
// returns NFD_CANCEL or NFD_ERROR as appropriate, and does not modify `file`.
nfdresult_t ReadResponseUrisSingle(DBusMessage* msg, const char*& file) {
DBusMessageIter uri_iter;
const nfdresult_t res = ReadResponseUris(msg, uri_iter);
if (res != NFD_OKAY) return res; // can be NFD_CANCEL or NFD_ERROR
if (dbus_message_iter_get_arg_type(&uri_iter) != DBUS_TYPE_STRING) {
NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_ERROR;
}
dbus_message_iter_get_basic(&uri_iter, &file);
return NFD_OKAY;
}
#if NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION == 1
// Read the response URI and selected extension (in the form "*.abc" or "*") (if any). If response
// was okay, then returns NFD_OKAY and set file and extn to them (the pointer is set to some string
// owned by msg, so you should not manually free it). `file` is the user-entered file name, and
// `extn` is the selected file extension (the first one if there are multiple extensions in the
// selected option) (this is NULL if "All files" is selected). Otherwise, returns NFD_CANCEL or
// NFD_ERROR as appropriate, and does not modify `file` and `extn`.
nfdresult_t ReadResponseUrisSingleAndCurrentExtension(DBusMessage* msg,
const char*& file,
const char*& extn) {
DBusMessageIter iter;
const nfdresult_t res = ReadResponseResults(msg, iter);
if (res != NFD_OKAY) return res;
const char* tmp_file = nullptr;
const char* tmp_extn = nullptr;
if (ReadDict(
iter,
"uris",
[&tmp_file](DBusMessageIter& uris_iter) {
if (dbus_message_iter_get_arg_type(&uris_iter) != DBUS_TYPE_ARRAY) {
NFDi_SetError("D-Bus response signal URI iter is not an array.");
return NFD_ERROR;
}
DBusMessageIter uri_iter;
dbus_message_iter_recurse(&uris_iter, &uri_iter);
if (dbus_message_iter_get_arg_type(&uri_iter) != DBUS_TYPE_STRING) {
NFDi_SetError("D-Bus response signal URI sub iter is not a string.");
return NFD_ERROR;
}
dbus_message_iter_get_basic(&uri_iter, &tmp_file);
return NFD_OKAY;
},
"current_filter",
[&tmp_extn](DBusMessageIter& current_filter_iter) {
// current_filter is best_effort, so if we fail, we still return NFD_OKAY.
if (dbus_message_iter_get_arg_type(¤t_filter_iter) != DBUS_TYPE_STRUCT) {
// NFDi_SetError("D-Bus response signal current_filter iter is not a struct.");
return NFD_OKAY;
}
DBusMessageIter current_filter_struct_iter;
dbus_message_iter_recurse(¤t_filter_iter, ¤t_filter_struct_iter);
if (!dbus_message_iter_next(¤t_filter_struct_iter)) {
// NFDi_SetError("D-Bus response signal current_filter struct iter ended
// prematurely.");
return NFD_OKAY;
}
if (dbus_message_iter_get_arg_type(¤t_filter_struct_iter) !=
DBUS_TYPE_ARRAY) {
// NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_OKAY;
}
DBusMessageIter current_filter_array_iter;
dbus_message_iter_recurse(¤t_filter_struct_iter, ¤t_filter_array_iter);
if (dbus_message_iter_get_arg_type(¤t_filter_array_iter) !=
DBUS_TYPE_STRUCT) {
// NFDi_SetError("D-Bus response signal current_filter iter is not a struct.");
return NFD_OKAY;
}
DBusMessageIter current_filter_extn_iter;
dbus_message_iter_recurse(¤t_filter_array_iter, ¤t_filter_extn_iter);
if (dbus_message_iter_get_arg_type(¤t_filter_extn_iter) != DBUS_TYPE_UINT32) {
// NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_OKAY;
}
dbus_uint32_t type;
dbus_message_iter_get_basic(¤t_filter_extn_iter, &type);
if (type != 0) {
// NFDi_SetError("Wrong filter type.");
return NFD_OKAY;
}
if (!dbus_message_iter_next(¤t_filter_extn_iter)) {
// NFDi_SetError("D-Bus response signal current_filter struct iter ended
// prematurely.");
return NFD_OKAY;
}
if (dbus_message_iter_get_arg_type(¤t_filter_extn_iter) != DBUS_TYPE_STRING) {
// NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_OKAY;
}
dbus_message_iter_get_basic(¤t_filter_extn_iter, &tmp_extn);
return NFD_OKAY;
}) == NFD_ERROR)
return NFD_ERROR;
if (!tmp_file) {
NFDi_SetError("D-Bus response signal has no URI field.");
return NFD_ERROR;
}
file = tmp_file;
extn = tmp_extn;
return NFD_OKAY;
}
#endif
// Appends up to 64 random chars to the given pointer. Returns the end of the appended chars.
char* Generate64RandomChars(char* out) {
size_t amount = 32;
while (amount > 0) {
unsigned char buf[32];
ssize_t res = getrandom(buf, amount, 0);
if (res == -1) {
if (errno == EINTR)
continue;
else
break; // too bad, urandom isn't working well
}
amount -= res;
// we encode each random char using two chars, since they must be [A-Z][a-z][0-9]_
for (size_t i = 0; i != static_cast<size_t>(res); ++i) {
*out++ = 'A' + static_cast<char>(buf[i] & 15);
*out++ = 'A' + static_cast<char>(buf[i] >> 4);
}
}
return out;
}
constexpr const char STR_RESPONSE_HANDLE_PREFIX[] = "/org/freedesktop/portal/desktop/request/";
constexpr size_t STR_RESPONSE_HANDLE_PREFIX_LEN =
sizeof(STR_RESPONSE_HANDLE_PREFIX) - 1; // -1 to remove the \0.
// Allocates and returns a path like "/org/freedesktop/portal/desktop/request/SENDER/TOKEN" with
// randomly generated TOKEN as recommended by flatpak. `handle_token_ptr` is a pointer to the
// TOKEN part.
char* MakeUniqueObjectPath(const char** handle_token_ptr) {
const char* sender = dbus_unique_name;
if (*sender == ':') ++sender;
const size_t sender_len = strlen(sender);
const size_t sz = STR_RESPONSE_HANDLE_PREFIX_LEN + sender_len + 1 +
64; // 1 for '/', followed by 64 random chars
char* path = NFDi_Malloc<char>(sz + 1);
char* path_ptr = path;
path_ptr = copy(STR_RESPONSE_HANDLE_PREFIX,
STR_RESPONSE_HANDLE_PREFIX + STR_RESPONSE_HANDLE_PREFIX_LEN,
path_ptr);
path_ptr = transform(
sender, sender + sender_len, path_ptr, [](char ch) { return ch != '.' ? ch : '_'; });
*path_ptr++ = '/';
*handle_token_ptr = path_ptr;
path_ptr = Generate64RandomChars(path_ptr);
*path_ptr = '\0';
return path;
}
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_1[] =
"type='signal',sender='org.freedesktop.portal.Desktop',path='";
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_1_LEN =
sizeof(STR_RESPONSE_SUBSCRIPTION_PATH_1) - 1;
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_2[] =
"',interface='org.freedesktop.portal.Request',member='Response',destination='";
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_2_LEN =
sizeof(STR_RESPONSE_SUBSCRIPTION_PATH_2) - 1;
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_3[] = "'";
constexpr const char STR_RESPONSE_SUBSCRIPTION_PATH_3_LEN =
sizeof(STR_RESPONSE_SUBSCRIPTION_PATH_3) - 1;
class DBusSignalSubscriptionHandler {
private:
char* sub_cmd;
public:
DBusSignalSubscriptionHandler() : sub_cmd(nullptr) {}
~DBusSignalSubscriptionHandler() {
if (sub_cmd) Unsubscribe();
}
nfdresult_t Subscribe(const char* handle_path) {
if (sub_cmd) Unsubscribe();
sub_cmd = MakeResponseSubscriptionPath(handle_path, dbus_unique_name);
DBusError err;
dbus_error_init(&err);
dbus_bus_add_match(dbus_conn, sub_cmd, &err);
if (dbus_error_is_set(&err)) {
dbus_error_free(&dbus_err);
dbus_move_error(&err, &dbus_err);
NFDi_SetError(dbus_err.message);
return NFD_ERROR;
}
return NFD_OKAY;
}
void Unsubscribe() {
DBusError err;
dbus_error_init(&err);
dbus_bus_remove_match(dbus_conn, sub_cmd, &err);
NFDi_Free(sub_cmd);
sub_cmd = nullptr;
dbus_error_free(
&err); // silence unsubscribe errors, because this is intuitively part of 'cleanup'
}
private:
static char* MakeResponseSubscriptionPath(const char* handle_path, const char* unique_name) {
const size_t handle_path_len = strlen(handle_path);
const size_t unique_name_len = strlen(unique_name);
const size_t sz = STR_RESPONSE_SUBSCRIPTION_PATH_1_LEN + handle_path_len +
STR_RESPONSE_SUBSCRIPTION_PATH_2_LEN + unique_name_len +
STR_RESPONSE_SUBSCRIPTION_PATH_3_LEN;
char* res = NFDi_Malloc<char>(sz + 1);
char* res_ptr = res;
res_ptr = copy(STR_RESPONSE_SUBSCRIPTION_PATH_1,
STR_RESPONSE_SUBSCRIPTION_PATH_1 + STR_RESPONSE_SUBSCRIPTION_PATH_1_LEN,
res_ptr);
res_ptr = copy(handle_path, handle_path + handle_path_len, res_ptr);
res_ptr = copy(STR_RESPONSE_SUBSCRIPTION_PATH_2,
STR_RESPONSE_SUBSCRIPTION_PATH_2 + STR_RESPONSE_SUBSCRIPTION_PATH_2_LEN,
res_ptr);
res_ptr = copy(unique_name, unique_name + unique_name_len, res_ptr);
res_ptr = copy(STR_RESPONSE_SUBSCRIPTION_PATH_3,
STR_RESPONSE_SUBSCRIPTION_PATH_3 + STR_RESPONSE_SUBSCRIPTION_PATH_3_LEN,
res_ptr);
*res_ptr = '\0';
return res;
}
};
constexpr const char FILE_URI_PREFIX[] = "file://";
constexpr size_t FILE_URI_PREFIX_LEN = sizeof(FILE_URI_PREFIX) - 1;
// If fileUri starts with "file://", strips that prefix and copies it to a new buffer, and make
// outPath point to it, and returns NFD_OKAY. Otherwise, does not modify outPath and returns
// NFD_ERROR (with the correct error set)
nfdresult_t AllocAndCopyFilePath(const char* fileUri, char*& outPath) {
const char* prefix_begin = FILE_URI_PREFIX;
const char* const prefix_end = FILE_URI_PREFIX + FILE_URI_PREFIX_LEN;
for (; prefix_begin != prefix_end; ++prefix_begin, ++fileUri) {
if (*prefix_begin != *fileUri) {
NFDi_SetError("D-Bus freedesktop portal returned a URI that is not a file URI.");
return NFD_ERROR;
}
}
size_t len = strlen(fileUri);
char* path_without_prefix = NFDi_Malloc<char>(len + 1);
copy(fileUri, fileUri + (len + 1), path_without_prefix);
outPath = path_without_prefix;
return NFD_OKAY;
}
#if NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION == 1
bool TryGetValidExtension(const char* extn,
const char*& trimmed_extn,
const char*& trimmed_extn_end) {
if (!extn) return false;
if (*extn != '*') return false;
++extn;
if (*extn != '.') return false;
trimmed_extn = extn;
for (++extn; *extn != '\0'; ++extn)
;
++extn;
trimmed_extn_end = extn;
return true;
}
// Like AllocAndCopyFilePath, but if `fileUri` has no extension and `extn` is usable, appends the
// extension. `extn` could be null, in which case no extension will ever be appended. `extn` is
// expected to be either in the form "*.abc" or "*", but this function will check for it, and ignore
// the extension if it is not in the correct form.
nfdresult_t AllocAndCopyFilePathWithExtn(const char* fileUri, const char* extn, char*& outPath) {
const char* prefix_begin = FILE_URI_PREFIX;
const char* const prefix_end = FILE_URI_PREFIX + FILE_URI_PREFIX_LEN;
for (; prefix_begin != prefix_end; ++prefix_begin, ++fileUri) {
if (*prefix_begin != *fileUri) {
NFDi_SetError("D-Bus freedesktop portal returned a URI that is not a file URI.");
return NFD_ERROR;
}
}
const char* file_end = fileUri;
for (; *file_end != '\0'; ++file_end)
;
const char* file_it = file_end;
do {
--file_it;
} while (*file_it != '/' && *file_it != '.');
const char* trimmed_extn; // includes the '.'
const char* trimmed_extn_end; // includes the '\0'
if (*file_it == '.' || !TryGetValidExtension(extn, trimmed_extn, trimmed_extn_end)) {
// has file extension already or no valid extension in `extn`
++file_end; // includes the '\0'
char* path_without_prefix = NFDi_Malloc<char>(file_end - fileUri);
copy(fileUri, file_end, path_without_prefix);
outPath = path_without_prefix;
} else {
// no file extension and we have a valid extension
char* path_without_prefix =
NFDi_Malloc<char>((file_end - fileUri) + (trimmed_extn_end - trimmed_extn));
char* out = copy(fileUri, file_end, path_without_prefix);
copy(trimmed_extn, trimmed_extn_end, out);
outPath = path_without_prefix;
}
return NFD_OKAY;
}
#endif
// DBus wrapper function that helps invoke the portal for all OpenFile() variants.
// This function returns NFD_OKAY iff outMsg gets set (to the returned message).
// Caller is responsible for freeing the outMsg using dbus_message_unref() (or use
// DBusMessage_Guard).
template <bool Multiple, bool Directory>
nfdresult_t NFD_DBus_OpenFile(DBusMessage*& outMsg,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
const char* handle_token_ptr;
char* handle_obj_path = MakeUniqueObjectPath(&handle_token_ptr);
Free_Guard<char> handle_obj_path_guard(handle_obj_path);
DBusError err; // need a separate error object because we don't want to mess with the old one
// if it's stil set
dbus_error_init(&err);
// Subscribe to the signal using the handle_obj_path
DBusSignalSubscriptionHandler signal_sub;
nfdresult_t res = signal_sub.Subscribe(handle_obj_path);
if (res != NFD_OKAY) return res;
// TODO: use XOpenDisplay()/XGetInputFocus() to find xid of window... but what should one do on
// Wayland?
DBusMessage* query = dbus_message_new_method_call("org.freedesktop.portal.Desktop",
"/org/freedesktop/portal/desktop",
"org.freedesktop.portal.FileChooser",
"OpenFile");
DBusMessage_Guard query_guard(query);
AppendOpenFileQueryParams<Multiple, Directory>(
query, handle_token_ptr, filterList, filterCount);
DBusMessage* reply =
dbus_connection_send_with_reply_and_block(dbus_conn, query, DBUS_TIMEOUT_INFINITE, &err);
if (!reply) {
dbus_error_free(&dbus_err);
dbus_move_error(&err, &dbus_err);
NFDi_SetError(dbus_err.message);
return NFD_ERROR;
}
DBusMessage_Guard reply_guard(reply);
// Check the reply and update our signal subscription if necessary
{
DBusMessageIter iter;
if (!dbus_message_iter_init(reply, &iter)) {
NFDi_SetError("D-Bus reply is missing an argument.");
return NFD_ERROR;
}
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_OBJECT_PATH) {
NFDi_SetError("D-Bus reply is not an object path.");
return NFD_ERROR;
}
const char* path;
dbus_message_iter_get_basic(&iter, &path);
if (strcmp(path, handle_obj_path) != 0) {
// needs to change our signal subscription
signal_sub.Subscribe(path);
}
}
// Wait and read the response
// const char* file = nullptr;
do {
while (true) {
DBusMessage* msg = dbus_connection_pop_message(dbus_conn);
if (!msg) break;
if (dbus_message_is_signal(msg, "org.freedesktop.portal.Request", "Response")) {
// this is the response we're looking for
outMsg = msg;
return NFD_OKAY;
}
dbus_message_unref(msg);
}
} while (dbus_connection_read_write(dbus_conn, -1));
NFDi_SetError("D-Bus freedesktop portal did not give us a reply.");
return NFD_ERROR;
}
// DBus wrapper function that helps invoke the portal for the SaveFile() API.
// This function returns NFD_OKAY iff outMsg gets set (to the returned message).
// Caller is responsible for freeing the outMsg using dbus_message_unref() (or use
// DBusMessage_Guard).
nfdresult_t NFD_DBus_SaveFile(DBusMessage*& outMsg,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
const char* handle_token_ptr;
char* handle_obj_path = MakeUniqueObjectPath(&handle_token_ptr);
Free_Guard<char> handle_obj_path_guard(handle_obj_path);
DBusError err; // need a separate error object because we don't want to mess with the old one
// if it's stil set
dbus_error_init(&err);
// Subscribe to the signal using the handle_obj_path
DBusSignalSubscriptionHandler signal_sub;
nfdresult_t res = signal_sub.Subscribe(handle_obj_path);
if (res != NFD_OKAY) return res;
// TODO: use XOpenDisplay()/XGetInputFocus() to find xid of window... but what should one do on
// Wayland?
DBusMessage* query = dbus_message_new_method_call("org.freedesktop.portal.Desktop",
"/org/freedesktop/portal/desktop",
"org.freedesktop.portal.FileChooser",
"SaveFile");
DBusMessage_Guard query_guard(query);
AppendSaveFileQueryParams(
query, handle_token_ptr, filterList, filterCount, defaultPath, defaultName);
DBusMessage* reply =
dbus_connection_send_with_reply_and_block(dbus_conn, query, DBUS_TIMEOUT_INFINITE, &err);
if (!reply) {
dbus_error_free(&dbus_err);
dbus_move_error(&err, &dbus_err);
NFDi_SetError(dbus_err.message);
return NFD_ERROR;
}
DBusMessage_Guard reply_guard(reply);
// Check the reply and update our signal subscription if necessary
{
DBusMessageIter iter;
if (!dbus_message_iter_init(reply, &iter)) {
NFDi_SetError("D-Bus reply is missing an argument.");
return NFD_ERROR;
}
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_OBJECT_PATH) {
NFDi_SetError("D-Bus reply is not an object path.");
return NFD_ERROR;
}
const char* path;
dbus_message_iter_get_basic(&iter, &path);
if (strcmp(path, handle_obj_path) != 0) {
// needs to change our signal subscription
signal_sub.Subscribe(path);
}
}
// Wait and read the response
// const char* file = nullptr;
do {
while (true) {
DBusMessage* msg = dbus_connection_pop_message(dbus_conn);
if (!msg) break;
if (dbus_message_is_signal(msg, "org.freedesktop.portal.Request", "Response")) {
// this is the response we're looking for
outMsg = msg;
return NFD_OKAY;
}
dbus_message_unref(msg);
}
} while (dbus_connection_read_write(dbus_conn, -1));
NFDi_SetError("D-Bus freedesktop portal did not give us a reply.");
return NFD_ERROR;
}
} // namespace
/* public */
const char* NFD_GetError(void) {
return err_ptr;
}
void NFD_ClearError(void) {
NFDi_SetError(nullptr);
dbus_error_free(&dbus_err);
}
nfdresult_t NFD_Init(void) {
// Initialize dbus_error
dbus_error_init(&dbus_err);
// Get DBus connection
dbus_conn = dbus_bus_get(DBUS_BUS_SESSION, &dbus_err);
if (!dbus_conn) {
NFDi_SetError(dbus_err.message);
return NFD_ERROR;
}
dbus_unique_name = dbus_bus_get_unique_name(dbus_conn);
if (!dbus_unique_name) {
NFDi_SetError("Unable to get the unique name of our D-Bus connection.");
return NFD_ERROR;
}
return NFD_OKAY;
}
void NFD_Quit(void) {
dbus_connection_unref(dbus_conn);
// Note: We do not free dbus_error since NFD_Init might set it.
// To avoid leaking memory, the caller should explicitly call NFD_ClearError after reading the
// error.
}
void NFD_FreePathN(nfdnchar_t* filePath) {
assert(filePath);
NFDi_Free(filePath);
}
nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
(void)defaultPath; // Default path not supported for portal backend
DBusMessage* msg;
{
const nfdresult_t res = NFD_DBus_OpenFile<false, false>(msg, filterList, filterCount);
if (res != NFD_OKAY) {
return res;
}
}
DBusMessage_Guard msg_guard(msg);
const char* file;
{
const nfdresult_t res = ReadResponseUrisSingle(msg, file);
if (res != NFD_OKAY) {
return res;
}
}
return AllocAndCopyFilePath(file, *outPath);
}
nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
(void)defaultPath; // Default path not supported for portal backend
DBusMessage* msg;
{
const nfdresult_t res = NFD_DBus_OpenFile<true, false>(msg, filterList, filterCount);
if (res != NFD_OKAY) {
return res;
}
}
DBusMessageIter uri_iter;
const nfdresult_t res = ReadResponseUris(msg, uri_iter);
if (res != NFD_OKAY) {
dbus_message_unref(msg);
return res;
}
*outPaths = msg;
return NFD_OKAY;
}
nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
DBusMessage* msg;
{
const nfdresult_t res =
NFD_DBus_SaveFile(msg, filterList, filterCount, defaultPath, defaultName);
if (res != NFD_OKAY) {
return res;
}
}
DBusMessage_Guard msg_guard(msg);
#if NFD_PORTAL_AUTO_APPEND_FILE_EXTENSION == 1
const char* file;
const char* extn;
{
const nfdresult_t res = ReadResponseUrisSingleAndCurrentExtension(msg, file, extn);
if (res != NFD_OKAY) {
return res;
}
}
return AllocAndCopyFilePathWithExtn(file, extn, *outPath);
#else
const char* file;
{
const nfdresult_t res = ReadResponseUrisSingle(msg, file);
if (res != NFD_OKAY) {
return res;
}
}
return AllocAndCopyFilePath(file, *outPath);
#endif
}
nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath) {
(void)defaultPath; // Default path not supported for portal backend
DBusMessage* msg;
{
const nfdresult_t res = NFD_DBus_OpenFile<false, true>(msg, nullptr, 0);
if (res != NFD_OKAY) {
return res;
}
}
DBusMessage_Guard msg_guard(msg);
const char* file;
{
const nfdresult_t res = ReadResponseUrisSingle(msg, file);
if (res != NFD_OKAY) {
return res;
}
}
return AllocAndCopyFilePath(file, *outPath);
}
nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) {
assert(pathSet);
DBusMessage* msg = const_cast<DBusMessage*>(static_cast<const DBusMessage*>(pathSet));
*count = ReadResponseUrisUncheckedGetArraySize(msg);
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdnchar_t** outPath) {
assert(pathSet);
DBusMessage* msg = const_cast<DBusMessage*>(static_cast<const DBusMessage*>(pathSet));
DBusMessageIter uri_iter;
ReadResponseUrisUnchecked(msg, uri_iter);
while (index > 0) {
--index;
if (!dbus_message_iter_next(&uri_iter)) {
NFDi_SetError("Index out of bounds.");
return NFD_ERROR;
}
}
if (dbus_message_iter_get_arg_type(&uri_iter) != DBUS_TYPE_STRING) {
NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_ERROR;
}
const char* file;
dbus_message_iter_get_basic(&uri_iter, &file);
return AllocAndCopyFilePath(file, *outPath);
}
void NFD_PathSet_FreePathN(const nfdnchar_t* filePath) {
assert(filePath);
NFD_FreePathN(const_cast<nfdnchar_t*>(filePath));
}
void NFD_PathSet_Free(const nfdpathset_t* pathSet) {
assert(pathSet);
DBusMessage* msg = const_cast<DBusMessage*>(static_cast<const DBusMessage*>(pathSet));
dbus_message_unref(msg);
}
nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator) {
assert(pathSet);
DBusMessage* msg = const_cast<DBusMessage*>(static_cast<const DBusMessage*>(pathSet));
ReadResponseUrisUnchecked(msg, *reinterpret_cast<DBusMessageIter*>(outEnumerator));
return NFD_OKAY;
}
void NFD_PathSet_FreeEnum(nfdpathsetenum_t*) {
// Do nothing, because the enumeration is just a message iterator
}
nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath) {
DBusMessageIter& uri_iter = *reinterpret_cast<DBusMessageIter*>(enumerator);
const int arg_type = dbus_message_iter_get_arg_type(&uri_iter);
if (arg_type == DBUS_TYPE_INVALID) {
*outPath = nullptr;
return NFD_OKAY;
}
if (arg_type != DBUS_TYPE_STRING) {
NFDi_SetError("D-Bus response signal URI sub iter is not an string.");
return NFD_ERROR;
}
const char* file;
dbus_message_iter_get_basic(&uri_iter, &file);
const nfdresult_t res = AllocAndCopyFilePath(file, *outPath);
if (res != NFD_OKAY) return res;
dbus_message_iter_next(&uri_iter);
return NFD_OKAY;
}
|
whupdup/frame
|
real/third_party/tracy/nfd/nfd_portal.cpp
|
C++
|
gpl-3.0
| 57,840
|
/*
Native File Dialog Extended
Repository: https://github.com/btzy/nativefiledialog-extended
License: Zlib
Author: Bernard Teo
*/
/* only locally define UNICODE in this compilation unit */
#ifndef UNICODE
#define UNICODE
#endif
#ifdef __MINGW32__
// Explicitly setting NTDDI version, this is necessary for the MinGW compiler
#define NTDDI_VERSION NTDDI_VISTA
#define _WIN32_WINNT _WIN32_WINNT_VISTA
#endif
#if _MSC_VER
// see
// https://developercommunity.visualstudio.com/content/problem/185399/error-c2760-in-combaseapih-with-windows-sdk-81-and.html
struct IUnknown; // Workaround for "combaseapi.h(229): error C2187: syntax error: 'identifier' was
// unexpected here" when using /permissive-
#endif
#include <assert.h>
#include <shobjidl.h>
#include <stdio.h>
#include <wchar.h>
#include <windows.h>
#include "nfd.h"
namespace {
/* current error */
const char* g_errorstr = nullptr;
void NFDi_SetError(const char* msg) {
g_errorstr = msg;
}
template <typename T = void>
T* NFDi_Malloc(size_t bytes) {
void* ptr = malloc(bytes);
if (!ptr) NFDi_SetError("NFDi_Malloc failed.");
return static_cast<T*>(ptr);
}
template <typename T>
void NFDi_Free(T* ptr) {
assert(ptr);
free(static_cast<void*>(ptr));
}
/* guard objects */
template <typename T>
struct Release_Guard {
T* data;
Release_Guard(T* releasable) noexcept : data(releasable) {}
~Release_Guard() { data->Release(); }
};
template <typename T>
struct Free_Guard {
T* data;
Free_Guard(T* freeable) noexcept : data(freeable) {}
~Free_Guard() { NFDi_Free(data); }
};
template <typename T>
struct FreeCheck_Guard {
T* data;
FreeCheck_Guard(T* freeable = nullptr) noexcept : data(freeable) {}
~FreeCheck_Guard() {
if (data) NFDi_Free(data);
}
};
/* helper functions */
nfdresult_t AddFiltersToDialog(::IFileDialog* fileOpenDialog,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
/* filterCount plus 1 because we hardcode the *.* wildcard after the while loop */
COMDLG_FILTERSPEC* specList =
NFDi_Malloc<COMDLG_FILTERSPEC>(sizeof(COMDLG_FILTERSPEC) * (filterCount + 1));
if (!specList) {
return NFD_ERROR;
}
/* ad-hoc RAII object to free memory when destructing */
struct COMDLG_FILTERSPEC_Guard {
COMDLG_FILTERSPEC* _specList;
nfdfiltersize_t index;
COMDLG_FILTERSPEC_Guard(COMDLG_FILTERSPEC* specList) noexcept
: _specList(specList), index(0) {}
~COMDLG_FILTERSPEC_Guard() {
for (--index; index != static_cast<nfdfiltersize_t>(-1); --index) {
NFDi_Free(const_cast<nfdnchar_t*>(_specList[index].pszSpec));
}
NFDi_Free(_specList);
}
};
COMDLG_FILTERSPEC_Guard specListGuard(specList);
if (filterCount) {
assert(filterList);
// we have filters to add ... format and add them
// use the index that comes from the RAII object (instead of making a copy), so the RAII
// object will know which memory to free
nfdfiltersize_t& index = specListGuard.index;
for (; index != filterCount; ++index) {
// set the friendly name of this filter
specList[index].pszName = filterList[index].name;
// set the specification of this filter...
// count number of file extensions
size_t sep = 1;
for (const nfdnchar_t* p_spec = filterList[index].spec; *p_spec; ++p_spec) {
if (*p_spec == L',') {
++sep;
}
}
// calculate space needed (including the trailing '\0')
size_t specSize = sep * 2 + wcslen(filterList[index].spec) + 1;
// malloc the required memory and populate it
nfdnchar_t* specBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) * specSize);
if (!specBuf) {
// automatic freeing of memory via COMDLG_FILTERSPEC_Guard
return NFD_ERROR;
}
// convert "png,jpg" to "*.png;*.jpg" as required by Windows ...
nfdnchar_t* p_specBuf = specBuf;
*p_specBuf++ = L'*';
*p_specBuf++ = L'.';
for (const nfdnchar_t* p_spec = filterList[index].spec; *p_spec; ++p_spec) {
if (*p_spec == L',') {
*p_specBuf++ = L';';
*p_specBuf++ = L'*';
*p_specBuf++ = L'.';
} else {
*p_specBuf++ = *p_spec;
}
}
*p_specBuf++ = L'\0';
// assert that we had allocated exactly the correct amount of memory that we used
assert(static_cast<size_t>(p_specBuf - specBuf) == specSize);
// save the buffer to the guard object
specList[index].pszSpec = specBuf;
}
}
/* Add wildcard */
specList[filterCount].pszName = L"All files";
specList[filterCount].pszSpec = L"*.*";
// add the filter to the dialog
if (!SUCCEEDED(fileOpenDialog->SetFileTypes(filterCount + 1, specList))) {
NFDi_SetError("Failed to set the allowable file types for the drop-down menu.");
return NFD_ERROR;
}
// automatic freeing of memory via COMDLG_FILTERSPEC_Guard
return NFD_OKAY;
}
/* call after AddFiltersToDialog */
nfdresult_t SetDefaultExtension(::IFileDialog* fileOpenDialog,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount) {
// if there are no filters, then don't set default extensions
if (!filterCount) {
return NFD_OKAY;
}
assert(filterList);
// set the first item as the default index, and set the default extension
if (!SUCCEEDED(fileOpenDialog->SetFileTypeIndex(1))) {
NFDi_SetError("Failed to set the selected file type index.");
return NFD_ERROR;
}
// set the first item as the default file extension
const nfdnchar_t* p_spec = filterList[0].spec;
for (; *p_spec; ++p_spec) {
if (*p_spec == ',') {
break;
}
}
if (*p_spec) {
// multiple file extensions for this type (need to allocate memory)
size_t numChars = p_spec - filterList[0].spec;
// allocate one more char space for the '\0'
nfdnchar_t* extnBuf = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) * (numChars + 1));
if (!extnBuf) {
return NFD_ERROR;
}
Free_Guard<nfdnchar_t> extnBufGuard(extnBuf);
// copy the extension
for (size_t i = 0; i != numChars; ++i) {
extnBuf[i] = filterList[0].spec[i];
}
// pad with trailing '\0'
extnBuf[numChars] = L'\0';
if (!SUCCEEDED(fileOpenDialog->SetDefaultExtension(extnBuf))) {
NFDi_SetError("Failed to set default extension.");
return NFD_ERROR;
}
} else {
// single file extension for this type (no need to allocate memory)
if (!SUCCEEDED(fileOpenDialog->SetDefaultExtension(filterList[0].spec))) {
NFDi_SetError("Failed to set default extension.");
return NFD_ERROR;
}
}
return NFD_OKAY;
}
nfdresult_t SetDefaultPath(IFileDialog* dialog, const nfdnchar_t* defaultPath) {
if (!defaultPath || !*defaultPath) return NFD_OKAY;
IShellItem* folder;
HRESULT result = SHCreateItemFromParsingName(defaultPath, nullptr, IID_PPV_ARGS(&folder));
// Valid non results.
if (result == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) ||
result == HRESULT_FROM_WIN32(ERROR_INVALID_DRIVE)) {
return NFD_OKAY;
}
if (!SUCCEEDED(result)) {
NFDi_SetError("Failed to create ShellItem for setting the default path.");
return NFD_ERROR;
}
Release_Guard<IShellItem> folderGuard(folder);
// SetDefaultFolder() might use another recently used folder if available, so the user doesn't
// need to keep navigating back to the default folder (recommended by Windows). change to
// SetFolder() if you always want to use the default folder
if (!SUCCEEDED(dialog->SetDefaultFolder(folder))) {
NFDi_SetError("Failed to set default path.");
return NFD_ERROR;
}
return NFD_OKAY;
}
nfdresult_t SetDefaultName(IFileDialog* dialog, const nfdnchar_t* defaultName) {
if (!defaultName || !*defaultName) return NFD_OKAY;
if (!SUCCEEDED(dialog->SetFileName(defaultName))) {
NFDi_SetError("Failed to set default file name.");
return NFD_ERROR;
}
return NFD_OKAY;
}
nfdresult_t AddOptions(IFileDialog* dialog, FILEOPENDIALOGOPTIONS options) {
FILEOPENDIALOGOPTIONS existingOptions;
if (!SUCCEEDED(dialog->GetOptions(&existingOptions))) {
NFDi_SetError("Failed to get options.");
return NFD_ERROR;
}
if (!SUCCEEDED(dialog->SetOptions(existingOptions | options))) {
NFDi_SetError("Failed to set options.");
return NFD_ERROR;
}
return NFD_OKAY;
}
} // namespace
const char* NFD_GetError(void) {
return g_errorstr;
}
void NFD_ClearError(void) {
NFDi_SetError(nullptr);
}
/* public */
namespace {
// The user might have initialized with COINIT_MULTITHREADED before,
// in which case we will fail to do CoInitializeEx(), but file dialogs will still work.
// See https://github.com/mlabbe/nativefiledialog/issues/72 for more information.
bool needs_uninitialize;
} // namespace
nfdresult_t NFD_Init(void) {
// Init COM library.
HRESULT result =
::CoInitializeEx(nullptr, ::COINIT_APARTMENTTHREADED | ::COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(result)) {
needs_uninitialize = true;
return NFD_OKAY;
} else if (result == RPC_E_CHANGED_MODE) {
// If this happens, the user already initialized COM using COINIT_MULTITHREADED,
// so COM will still work, but we shouldn't uninitialize it later.
needs_uninitialize = false;
return NFD_OKAY;
} else {
NFDi_SetError("Failed to initialize COM.");
return NFD_ERROR;
}
}
void NFD_Quit(void) {
if (needs_uninitialize) ::CoUninitialize();
}
void NFD_FreePathN(nfdnchar_t* filePath) {
assert(filePath);
::CoTaskMemFree(filePath);
}
nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
::IFileOpenDialog* fileOpenDialog;
// Create dialog
HRESULT result = ::CoCreateInstance(::CLSID_FileOpenDialog,
nullptr,
CLSCTX_ALL,
::IID_IFileOpenDialog,
reinterpret_cast<void**>(&fileOpenDialog));
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not create dialog.");
return NFD_ERROR;
}
// make sure we remember to free the dialog
Release_Guard<::IFileOpenDialog> fileOpenDialogGuard(fileOpenDialog);
// Build the filter list
if (!AddFiltersToDialog(fileOpenDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set auto-completed default extension
if (!SetDefaultExtension(fileOpenDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set the default path
if (!SetDefaultPath(fileOpenDialog, defaultPath)) {
return NFD_ERROR;
}
// Only show file system items
if (!AddOptions(fileOpenDialog, ::FOS_FORCEFILESYSTEM)) {
return NFD_ERROR;
}
// Show the dialog.
result = fileOpenDialog->Show(nullptr);
if (SUCCEEDED(result)) {
// Get the file name
::IShellItem* psiResult;
result = fileOpenDialog->GetResult(&psiResult);
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not get shell item from dialog.");
return NFD_ERROR;
}
Release_Guard<::IShellItem> psiResultGuard(psiResult);
nfdnchar_t* filePath;
result = psiResult->GetDisplayName(::SIGDN_FILESYSPATH, &filePath);
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not get file path from shell item returned by dialog.");
return NFD_ERROR;
}
*outPath = filePath;
return NFD_OKAY;
} else if (result == HRESULT_FROM_WIN32(ERROR_CANCELLED)) {
return NFD_CANCEL;
} else {
NFDi_SetError("File dialog box show failed.");
return NFD_ERROR;
}
}
nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath) {
::IFileOpenDialog* fileOpenDialog(nullptr);
// Create dialog
HRESULT result = ::CoCreateInstance(::CLSID_FileOpenDialog,
nullptr,
CLSCTX_ALL,
::IID_IFileOpenDialog,
reinterpret_cast<void**>(&fileOpenDialog));
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not create dialog.");
return NFD_ERROR;
}
// make sure we remember to free the dialog
Release_Guard<::IFileOpenDialog> fileOpenDialogGuard(fileOpenDialog);
// Build the filter list
if (!AddFiltersToDialog(fileOpenDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set auto-completed default extension
if (!SetDefaultExtension(fileOpenDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set the default path
if (!SetDefaultPath(fileOpenDialog, defaultPath)) {
return NFD_ERROR;
}
// Set a flag for multiple options and file system items only
if (!AddOptions(fileOpenDialog, ::FOS_FORCEFILESYSTEM | ::FOS_ALLOWMULTISELECT)) {
return NFD_ERROR;
}
// Show the dialog.
result = fileOpenDialog->Show(nullptr);
if (SUCCEEDED(result)) {
::IShellItemArray* shellItems;
result = fileOpenDialog->GetResults(&shellItems);
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not get shell items.");
return NFD_ERROR;
}
// save the path set to the output
*outPaths = static_cast<void*>(shellItems);
return NFD_OKAY;
} else if (result == HRESULT_FROM_WIN32(ERROR_CANCELLED)) {
return NFD_CANCEL;
} else {
NFDi_SetError("File dialog box show failed.");
return NFD_ERROR;
}
}
nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath,
const nfdnfilteritem_t* filterList,
nfdfiltersize_t filterCount,
const nfdnchar_t* defaultPath,
const nfdnchar_t* defaultName) {
::IFileSaveDialog* fileSaveDialog;
// Create dialog
HRESULT result = ::CoCreateInstance(::CLSID_FileSaveDialog,
nullptr,
CLSCTX_ALL,
::IID_IFileSaveDialog,
reinterpret_cast<void**>(&fileSaveDialog));
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not create dialog.");
return NFD_ERROR;
}
// make sure we remember to free the dialog
Release_Guard<::IFileSaveDialog> fileSaveDialogGuard(fileSaveDialog);
// Build the filter list
if (!AddFiltersToDialog(fileSaveDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set default extension
if (!SetDefaultExtension(fileSaveDialog, filterList, filterCount)) {
return NFD_ERROR;
}
// Set the default path
if (!SetDefaultPath(fileSaveDialog, defaultPath)) {
return NFD_ERROR;
}
// Set the default name
if (!SetDefaultName(fileSaveDialog, defaultName)) {
return NFD_ERROR;
}
// Only show file system items
if (!AddOptions(fileSaveDialog, ::FOS_FORCEFILESYSTEM)) {
return NFD_ERROR;
}
// Show the dialog.
result = fileSaveDialog->Show(nullptr);
if (SUCCEEDED(result)) {
// Get the file name
::IShellItem* psiResult;
result = fileSaveDialog->GetResult(&psiResult);
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not get shell item from dialog.");
return NFD_ERROR;
}
Release_Guard<::IShellItem> psiResultGuard(psiResult);
nfdnchar_t* filePath;
result = psiResult->GetDisplayName(::SIGDN_FILESYSPATH, &filePath);
if (!SUCCEEDED(result)) {
NFDi_SetError("Could not get file path from shell item returned by dialog.");
return NFD_ERROR;
}
*outPath = filePath;
return NFD_OKAY;
} else if (result == HRESULT_FROM_WIN32(ERROR_CANCELLED)) {
return NFD_CANCEL;
} else {
NFDi_SetError("File dialog box show failed.");
return NFD_ERROR;
}
}
nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath) {
::IFileOpenDialog* fileOpenDialog;
// Create dialog
if (!SUCCEEDED(::CoCreateInstance(::CLSID_FileOpenDialog,
nullptr,
CLSCTX_ALL,
::IID_IFileOpenDialog,
reinterpret_cast<void**>(&fileOpenDialog)))) {
NFDi_SetError("Could not create dialog.");
return NFD_ERROR;
}
Release_Guard<::IFileOpenDialog> fileOpenDialogGuard(fileOpenDialog);
// Set the default path
if (!SetDefaultPath(fileOpenDialog, defaultPath)) {
return NFD_ERROR;
}
// Only show items that are folders and on the file system
if (!AddOptions(fileOpenDialog, ::FOS_FORCEFILESYSTEM | ::FOS_PICKFOLDERS)) {
return NFD_ERROR;
}
// Show the dialog to the user
const HRESULT result = fileOpenDialog->Show(nullptr);
if (result == HRESULT_FROM_WIN32(ERROR_CANCELLED)) {
return NFD_CANCEL;
} else if (!SUCCEEDED(result)) {
NFDi_SetError("File dialog box show failed.");
return NFD_ERROR;
}
// Get the shell item result
::IShellItem* psiResult;
if (!SUCCEEDED(fileOpenDialog->GetResult(&psiResult))) {
return NFD_ERROR;
}
Release_Guard<::IShellItem> psiResultGuard(psiResult);
// Finally get the path
nfdnchar_t* filePath;
// Why are we not using SIGDN_FILESYSPATH?
if (!SUCCEEDED(psiResult->GetDisplayName(::SIGDN_DESKTOPABSOLUTEPARSING, &filePath))) {
NFDi_SetError("Could not get file path from shell item returned by dialog.");
return NFD_ERROR;
}
*outPath = filePath;
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) {
assert(pathSet);
// const_cast because methods on IShellItemArray aren't const, but it should act like const to
// the caller
::IShellItemArray* psiaPathSet =
const_cast<::IShellItemArray*>(static_cast<const ::IShellItemArray*>(pathSet));
DWORD numPaths;
if (!SUCCEEDED(psiaPathSet->GetCount(&numPaths))) {
NFDi_SetError("Could not get path count.");
return NFD_ERROR;
}
*count = numPaths;
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdnchar_t** outPath) {
assert(pathSet);
// const_cast because methods on IShellItemArray aren't const, but it should act like const to
// the caller
::IShellItemArray* psiaPathSet =
const_cast<::IShellItemArray*>(static_cast<const ::IShellItemArray*>(pathSet));
::IShellItem* psiPath;
if (!SUCCEEDED(psiaPathSet->GetItemAt(index, &psiPath))) {
NFDi_SetError("Could not get shell item.");
return NFD_ERROR;
}
Release_Guard<::IShellItem> psiPathGuard(psiPath);
nfdnchar_t* name;
if (!SUCCEEDED(psiPath->GetDisplayName(::SIGDN_FILESYSPATH, &name))) {
NFDi_SetError("Could not get file path from shell item.");
return NFD_ERROR;
}
*outPath = name;
return NFD_OKAY;
}
nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator) {
assert(pathSet);
// const_cast because methods on IShellItemArray aren't const, but it should act like const to
// the caller
::IShellItemArray* psiaPathSet =
const_cast<::IShellItemArray*>(static_cast<const ::IShellItemArray*>(pathSet));
::IEnumShellItems* pesiPaths;
if (!SUCCEEDED(psiaPathSet->EnumItems(&pesiPaths))) {
NFDi_SetError("Could not get enumerator.");
return NFD_ERROR;
}
outEnumerator->ptr = static_cast<void*>(pesiPaths);
return NFD_OKAY;
}
void NFD_PathSet_FreeEnum(nfdpathsetenum_t* enumerator) {
assert(enumerator->ptr);
::IEnumShellItems* pesiPaths = static_cast<::IEnumShellItems*>(enumerator->ptr);
// free the enumerator memory
pesiPaths->Release();
}
nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath) {
assert(enumerator->ptr);
::IEnumShellItems* pesiPaths = static_cast<::IEnumShellItems*>(enumerator->ptr);
::IShellItem* psiPath;
HRESULT res = pesiPaths->Next(1, &psiPath, NULL);
if (!SUCCEEDED(res)) {
NFDi_SetError("Could not get next item of enumerator.");
return NFD_ERROR;
}
if (res != S_OK) {
*outPath = nullptr;
return NFD_OKAY;
}
Release_Guard<::IShellItem> psiPathGuard(psiPath);
nfdnchar_t* name;
if (!SUCCEEDED(psiPath->GetDisplayName(::SIGDN_FILESYSPATH, &name))) {
NFDi_SetError("Could not get file path from shell item.");
return NFD_ERROR;
}
*outPath = name;
return NFD_OKAY;
}
void NFD_PathSet_Free(const nfdpathset_t* pathSet) {
assert(pathSet);
// const_cast because methods on IShellItemArray aren't const, but it should act like const to
// the caller
::IShellItemArray* psiaPathSet =
const_cast<::IShellItemArray*>(static_cast<const ::IShellItemArray*>(pathSet));
// free the path set memory
psiaPathSet->Release();
}
namespace {
// allocs the space in outStr -- call NFDi_Free()
nfdresult_t CopyCharToWChar(const nfdu8char_t* inStr, nfdnchar_t*& outStr) {
int charsNeeded = MultiByteToWideChar(CP_UTF8, 0, inStr, -1, nullptr, 0);
assert(charsNeeded);
nfdnchar_t* tmp_outStr = NFDi_Malloc<nfdnchar_t>(sizeof(nfdnchar_t) * charsNeeded);
if (!tmp_outStr) {
return NFD_ERROR;
}
int ret = MultiByteToWideChar(CP_UTF8, 0, inStr, -1, tmp_outStr, charsNeeded);
assert(ret && ret == charsNeeded);
(void)ret; // prevent warning in release build
outStr = tmp_outStr;
return NFD_OKAY;
}
// allocs the space in outPath -- call NFDi_Free()
nfdresult_t CopyWCharToNFDChar(const nfdnchar_t* inStr, nfdu8char_t*& outStr) {
int bytesNeeded = WideCharToMultiByte(CP_UTF8, 0, inStr, -1, nullptr, 0, nullptr, nullptr);
assert(bytesNeeded);
nfdu8char_t* tmp_outStr = NFDi_Malloc<nfdu8char_t>(sizeof(nfdu8char_t) * bytesNeeded);
if (!tmp_outStr) {
return NFD_ERROR;
}
int ret = WideCharToMultiByte(CP_UTF8, 0, inStr, -1, tmp_outStr, bytesNeeded, nullptr, nullptr);
assert(ret && ret == bytesNeeded);
(void)ret; // prevent warning in release build
outStr = tmp_outStr;
return NFD_OKAY;
}
struct FilterItem_Guard {
nfdnfilteritem_t* data;
nfdfiltersize_t index;
FilterItem_Guard() noexcept : data(nullptr), index(0) {}
~FilterItem_Guard() {
assert(data || index == 0);
for (--index; index != static_cast<nfdfiltersize_t>(-1); --index) {
NFDi_Free(const_cast<nfdnchar_t*>(data[index].spec));
NFDi_Free(const_cast<nfdnchar_t*>(data[index].name));
}
if (data) NFDi_Free(data);
}
};
nfdresult_t CopyFilterItem(const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
FilterItem_Guard& filterItemsNGuard) {
if (count) {
nfdnfilteritem_t*& filterItemsN = filterItemsNGuard.data;
filterItemsN = NFDi_Malloc<nfdnfilteritem_t>(sizeof(nfdnfilteritem_t) * count);
if (!filterItemsN) {
return NFD_ERROR;
}
nfdfiltersize_t& index = filterItemsNGuard.index;
for (; index != count; ++index) {
nfdresult_t res = CopyCharToWChar(filterList[index].name,
const_cast<nfdnchar_t*&>(filterItemsN[index].name));
if (!res) {
return NFD_ERROR;
}
res = CopyCharToWChar(filterList[index].spec,
const_cast<nfdnchar_t*&>(filterItemsN[index].spec));
if (!res) {
// remember to free the name, because we also created it (and it won't be protected
// by the guard, because we have not incremented the index)
NFDi_Free(const_cast<nfdnchar_t*>(filterItemsN[index].name));
return NFD_ERROR;
}
}
}
return NFD_OKAY;
}
nfdresult_t ConvertU8ToNative(const nfdu8char_t* u8Text, FreeCheck_Guard<nfdnchar_t>& nativeText) {
if (u8Text) {
nfdresult_t res = CopyCharToWChar(u8Text, nativeText.data);
if (!res) {
return NFD_ERROR;
}
}
return NFD_OKAY;
}
void NormalizePathSeparator(nfdnchar_t* path) {
if (path) {
for (; *path; ++path) {
if (*path == L'/') *path = L'\\';
}
}
}
} // namespace
void NFD_FreePathU8(nfdu8char_t* outPath) {
NFDi_Free(outPath);
}
nfdresult_t NFD_OpenDialogU8(nfdu8char_t** outPath,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath) {
// populate the real nfdnfilteritem_t
FilterItem_Guard filterItemsNGuard;
if (!CopyFilterItem(filterList, count, filterItemsNGuard)) {
return NFD_ERROR;
}
// convert and normalize the default path, but only if it is not nullptr
FreeCheck_Guard<nfdnchar_t> defaultPathNGuard;
ConvertU8ToNative(defaultPath, defaultPathNGuard);
NormalizePathSeparator(defaultPathNGuard.data);
// call the native function
nfdnchar_t* outPathN;
nfdresult_t res =
NFD_OpenDialogN(&outPathN, filterItemsNGuard.data, count, defaultPathNGuard.data);
if (res != NFD_OKAY) {
return res;
}
// convert the outPath to UTF-8
res = CopyWCharToNFDChar(outPathN, *outPath);
// free the native out path, and return the result
NFD_FreePathN(outPathN);
return res;
}
/* multiple file open dialog */
/* It is the caller's responsibility to free `outPaths` via NFD_PathSet_Free() if this function
* returns NFD_OKAY */
nfdresult_t NFD_OpenDialogMultipleU8(const nfdpathset_t** outPaths,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath) {
// populate the real nfdnfilteritem_t
FilterItem_Guard filterItemsNGuard;
if (!CopyFilterItem(filterList, count, filterItemsNGuard)) {
return NFD_ERROR;
}
// convert and normalize the default path, but only if it is not nullptr
FreeCheck_Guard<nfdnchar_t> defaultPathNGuard;
ConvertU8ToNative(defaultPath, defaultPathNGuard);
NormalizePathSeparator(defaultPathNGuard.data);
// call the native function
return NFD_OpenDialogMultipleN(outPaths, filterItemsNGuard.data, count, defaultPathNGuard.data);
}
/* save dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_SaveDialogU8(nfdu8char_t** outPath,
const nfdu8filteritem_t* filterList,
nfdfiltersize_t count,
const nfdu8char_t* defaultPath,
const nfdu8char_t* defaultName) {
// populate the real nfdnfilteritem_t
FilterItem_Guard filterItemsNGuard;
if (!CopyFilterItem(filterList, count, filterItemsNGuard)) {
return NFD_ERROR;
}
// convert and normalize the default path, but only if it is not nullptr
FreeCheck_Guard<nfdnchar_t> defaultPathNGuard;
ConvertU8ToNative(defaultPath, defaultPathNGuard);
NormalizePathSeparator(defaultPathNGuard.data);
// convert the default name, but only if it is not nullptr
FreeCheck_Guard<nfdnchar_t> defaultNameNGuard;
ConvertU8ToNative(defaultName, defaultNameNGuard);
// call the native function
nfdnchar_t* outPathN;
nfdresult_t res = NFD_SaveDialogN(
&outPathN, filterItemsNGuard.data, count, defaultPathNGuard.data, defaultNameNGuard.data);
if (res != NFD_OKAY) {
return res;
}
// convert the outPath to UTF-8
res = CopyWCharToNFDChar(outPathN, *outPath);
// free the native out path, and return the result
NFD_FreePathN(outPathN);
return res;
}
/* select folder dialog */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_PickFolderU8(nfdu8char_t** outPath, const nfdu8char_t* defaultPath) {
// convert and normalize the default path, but only if it is not nullptr
FreeCheck_Guard<nfdnchar_t> defaultPathNGuard;
ConvertU8ToNative(defaultPath, defaultPathNGuard);
NormalizePathSeparator(defaultPathNGuard.data);
// call the native function
nfdnchar_t* outPathN;
nfdresult_t res = NFD_PickFolderN(&outPathN, defaultPathNGuard.data);
if (res != NFD_OKAY) {
return res;
}
// convert the outPath to UTF-8
res = CopyWCharToNFDChar(outPathN, *outPath);
// free the native out path, and return the result
NFD_FreePathN(outPathN);
return res;
}
/* Get the UTF-8 path at offset index */
/* It is the caller's responsibility to free `outPath` via NFD_FreePathU8() if this function returns
* NFD_OKAY */
nfdresult_t NFD_PathSet_GetPathU8(const nfdpathset_t* pathSet,
nfdpathsetsize_t index,
nfdu8char_t** outPath) {
// call the native function
nfdnchar_t* outPathN;
nfdresult_t res = NFD_PathSet_GetPathN(pathSet, index, &outPathN);
if (res != NFD_OKAY) {
return res;
}
// convert the outPath to UTF-8
res = CopyWCharToNFDChar(outPathN, *outPath);
// free the native out path, and return the result
NFD_FreePathN(outPathN);
return res;
}
nfdresult_t NFD_PathSet_EnumNextU8(nfdpathsetenum_t* enumerator, nfdu8char_t** outPath) {
// call the native function
nfdnchar_t* outPathN;
nfdresult_t res = NFD_PathSet_EnumNextN(enumerator, &outPathN);
if (res != NFD_OKAY) {
return res;
}
if (outPathN) {
// convert the outPath to UTF-8
res = CopyWCharToNFDChar(outPathN, *outPath);
// free the native out path, and return the result
NFD_FreePathN(outPathN);
} else {
*outPath = nullptr;
res = NFD_OKAY;
}
return res;
}
|
whupdup/frame
|
real/third_party/tracy/nfd/nfd_win.cpp
|
C++
|
gpl-3.0
| 31,717
|
namespace tracy
{
// File: 'DroidSans.ttf' (190776 bytes)
// Exported using binary_to_compressed_c.cpp
static const unsigned int DroidSans_compressed_size = 134868;
static const unsigned int DroidSans_compressed_data[134868/4] =
{
0x0000bc57, 0x00000000, 0x38e90200, 0x00000400, 0x00010025, 0x82130000, 0x00042e04, 0x45444730, 0x03260046, 0x3f02008a, 0x28158268, 0x4f50471e,
0xad87f253, 0x300f82a7, 0xa9000088, 0x5553478e, 0x74916c42, 0xe902008f, 0x3c1f8218, 0x53544c20, 0xc49bd848, 0x1000003e, 0x0300002c, 0x2f534f89,
0x95cba032, 0x0100008b, 0x081f82b8, 0x6d636038, 0x5e027061, 0x00008709, 0x0000d856, 0x76633608, 0x7e392074, 0x00004c3e, 0x00000469, 0x7066fc01,
0xd3736d67, 0x0000b023, 0x0000105f, 0x61670507, 0x04007073, 0x6f820700, 0x3f825c20, 0x6c670c3b, 0x00966679, 0x000099a9, 0x01000c72, 0x64684ca9,
0xa195786d, 0x0000af5b, 0x295f8213, 0x65682043, 0x29ef6461, 0x4b82cc74, 0x2f823c20, 0x82683621, 0x530c2310, 0x0f82a909, 0x0f827420, 0x6d68242b,
0x9ee17874, 0x0000dd2e, 0x2caf8202, 0x6f6c140e, 0x4a5f6163, 0x00002eca, 0x291e826b, 0x616d0c07, 0x39067078, 0x2f828502, 0x10829820, 0x6e202c08,
0xb5656d61, 0x0056905a, 0x00581b02, 0x70a20600, 0x9b74736f, 0x008c59ef, 0x00fc2102, 0x705d1d00, 0x82706572, 0x001321dc, 0x82186600, 0x00ec2253,
0x82358201, 0x9fe32b03, 0x0f5f3c08, 0x1900f53c, 0x00830008, 0x339ac122, 0x002c0683, 0x9af67ec9, 0xd5fd89fb, 0x62085a09, 0x06221082, 0x2f820200,
0x33820283, 0xfe6d072d, 0x0900001d, 0xfe89fb64, 0x845a09a2, 0x86198349, 0x85032103, 0x05821183, 0x1600a026, 0x05007a00, 0x102c3982, 0x5a002f00,
0x2b020000, 0x03003901, 0x03241d82, 0x90019904, 0x08231982, 0x82059a05, 0x1e01216e, 0x03250785, 0x016600d0, 0x302782f2, 0x0306060b, 0x02020408,
0x0200e004, 0x200040ef, 0x205a825b, 0x25038228, 0x53413100, 0x10820043, 0x06fdff2f, 0x0014fe1f, 0x016d0784, 0x010020e3, 0x231b839f, 0xb6054a04,
0x20260782, 0xcd040200, 0x1184c100, 0x00001423, 0x3e038302, 0x03930027, 0x05850037, 0x0433002b, 0x067b0068, 0x0566009a, 0x016d009e, 0x028500cf,
0x82520068, 0x823d2003, 0x82522017, 0x02662603, 0x023f0000, 0x26138293, 0x02930025, 0x821400fc, 0x82622013, 0x82b22003, 0x86602003, 0x82172023,
0x82832007, 0x82712003, 0x825a2003, 0x836a2003, 0x83022003, 0x0025222f, 0x200b823f, 0x35038766, 0x25006803, 0x6d00ee06, 0x0000dd04, 0xc700f804,
0x7d00d304, 0x07827905, 0xc7003928, 0xc700ee03, 0x0f828505, 0xc7009c24, 0x6f82b602, 0x48ff2b24, 0x1785a204, 0x82f60621, 0x82d5201b, 0x00f02303,
0x1f82047d, 0x07830520, 0x3782b820, 0x68002730, 0x14002704, 0xb8009605, 0x00008b04, 0x9f821207, 0x5b826020, 0x03823720, 0x43825020, 0xa4006d22,
0x1722b382, 0xe7826d02, 0x29004236, 0xfcff4a03, 0x89019e04, 0x5e003f04, 0xae00b004, 0x7100b403, 0x713a0782, 0x71004804, 0x1d00a202, 0x25002504,
0xae00b604, 0xa0001202, 0xbcff1202, 0x0b84f803, 0x2b07ae24, 0x1783ae00, 0x849e0421, 0x83ae202f, 0x31032133, 0x9c223f82, 0xab825a00, 0x1b822120,
0xd503a426, 0xf8050000, 0x00287f82, 0xe9032300, 0x87030a00, 0xd5287f82, 0x68043d00, 0xd502e901, 0x68227f82, 0x7b416600, 0x68042307, 0x0382bc00,
0x03824420, 0x03827b20, 0x23831d20, 0x00e30323, 0x2b9b8279, 0x00a80633, 0x00a60264, 0x00e50344, 0x22057f41, 0x83520093, 0x00042613, 0x6d03faff,
0x202f8300, 0x201f8266, 0x20038231, 0x24cb841f, 0x05ae00c1, 0x26bf823d, 0x01930025, 0x822300a4, 0x023f2417, 0x824200cd, 0x0554243f, 0x823f00e5,
0x822c2003, 0x031f2803, 0x04440068, 0x930000dd, 0xd1062903, 0xd304feff, 0x39047d00, 0x87058b41, 0x20db8207, 0x2003823e, 0x20038252, 0x25038211,
0x00790540, 0x8741052f, 0xf0052306, 0x038b7d00, 0x8d20c782, 0x96230f84, 0x8a05b800, 0x37042103, 0x9c207382, 0xd1265782, 0x3f04ae00, 0x03935e00,
0x00aa0629, 0x00b4035e, 0x8d480471, 0x12022703, 0x1202deff, 0x0782ae00, 0x0382bd20, 0x9e04ee24, 0x87416f00, 0x829e2008, 0x22038b2b, 0x82660068,
0x8273201f, 0x8ba4201f, 0xe9032703, 0xb0040a00, 0x0784ae00, 0x8383ff83, 0xfb82078f, 0x07967f84, 0xc720f782, 0x71204382, 0x2f200782, 0x04210783,
0x83cf8239, 0x27079eab, 0x7d008505, 0x25002504, 0x9c200798, 0xb62e4782, 0x9c05ae00, 0xb6040000, 0xb6021200, 0xe782f5ff, 0xb602a324, 0x07823d00,
0x0782eb20, 0x07823020, 0x0782de20, 0x12025224, 0x07864400, 0xe104ae24, 0x57825200, 0x2b02a024, 0x1f8248ff, 0xa204bc26, 0xf803c700, 0x0383e382,
0xc700ee22, 0xab212b82, 0x20078503, 0x20078666, 0x200784ae, 0x22238266, 0x821d00ee, 0x05f62233, 0x8f7b86d5, 0xff462207, 0x201b88ff, 0x23bf82f0,
0x0571009e, 0x0724078e, 0x077d001f, 0xb820ff83, 0x31237782, 0x8504ae00, 0x86602007, 0x04722807, 0x03680027, 0x9a5a009c, 0x82142007, 0x822120cb,
0x27078c1f, 0xb8009605, 0xa400b604, 0x072f07a7, 0x05140012, 0x041400f8, 0x03000037, 0x830a00e9, 0x50042707, 0x87035200, 0x078f5200, 0x824c0221,
0x006823a7, 0xfb4104cb, 0xd1062706, 0xaa06feff, 0xdb865e00, 0xab887320, 0x02019e23, 0x22038304, 0x821b0175, 0x02212407, 0x82a00012, 0x016d2407,
0x841f007b, 0x009e2217, 0x200782df, 0x320382f8, 0xffdd0414, 0x002502e9, 0xffc90493, 0xff1706e7, 0x82b203e7, 0xff422407, 0x825405e7, 0xff4a2607,
0xff9e02e7, 0x206f84e4, 0x05c744f8, 0x008b0427, 0x00390425, 0x209b83c7, 0x06c74405, 0x82b60221, 0x82a220ab, 0x008b2213, 0x07e74400, 0x003f0423,
0x21978352, 0x17828705, 0x04232782, 0x824e0042, 0x25e7849f, 0x68002306, 0x2b826004, 0x23820782, 0x3f824e20, 0xf7844020, 0x7100b030, 0x5a00a003,
0xae00b604, 0xa4009e02, 0x0382b804, 0x04221382, 0xfb4200d1, 0x009e2205, 0x231f836f, 0x7100a403, 0x04232383, 0x83710087, 0xf8032927, 0x1704ae00,
0xc104f2ff, 0x23220782, 0x1f840000, 0x71009e27, 0x19000a05, 0x84478204, 0x82b4200f, 0x0098225b, 0x21538312, 0x3f829605, 0xecff3128, 0xa400ec05,
0x43840606, 0x6b841520, 0x07833382, 0xe3831383, 0x00a00525, 0x45ee0314, 0xbb8205e3, 0xa7826820, 0x03825220, 0x2b02402c, 0x480748ff, 0x75070000,
0x2383c700, 0xfb830420, 0x1900ae22, 0xdd20eb84, 0x41062b44, 0x0523062f, 0x830e0033, 0x85062b4b, 0x5c040400, 0xd5054800, 0x0383c900, 0x05223383,
0x2f41005a, 0x06474105, 0x22082b41, 0x827d00d3, 0x0414216f, 0x2b415382, 0x9a052107, 0x48266b82, 0xfa07a600, 0x0383c700, 0x003d0525, 0x41960614,
0xc124065b, 0x1d083b00, 0xb8200b82, 0x2008ef82, 0x045e003f, 0x0475008f, 0x03ae0089, 0x04ae0033, 0x04290060, 0x05710048, 0x030400c3, 0x044400ae,
0x821382e9, 0x26d78203, 0x005e04ae, 0x85be0510, 0x8304200f, 0x82c120fb, 0x46b0200b, 0x03310553, 0x03290087, 0x050a00e9, 0x04710093, 0x04230000,
0x301b82d1, 0x069a00ac, 0x07ae00f4, 0x05ae0004, 0x0529006d, 0x831382fe, 0x00b22467, 0x82790637, 0x823f200b, 0x236b8227, 0x1200b604, 0x03277b83,
0x037100b4, 0x465a009c, 0xee2a068b, 0xbcff1202, 0x10008306, 0x2b82e506, 0xee202383, 0x8206d741, 0x208f8277, 0x433383c7, 0x078f070f, 0x23081f43,
0x08520000, 0x03270386, 0x01fcff4a, 0x83170066, 0x00022303, 0x07823f00, 0xe7021924, 0x03831700, 0x00810329, 0x00e3033f, 0x82f8037b, 0x00023603,
0x006f0696, 0x005a0993, 0x00cf0166, 0x00370385, 0x004e0285, 0x2f038352, 0x9300f603, 0xa0fe0a01, 0x6a00f802, 0x60006804, 0x44240382, 0x96000006,
0x3f2c0782, 0x8d006806, 0x77000004, 0xc700e707, 0x252ceb82, 0x4e00f005, 0x6600f404, 0x53000e06, 0x33200382, 0x4f200382, 0x712a0382, 0x6200a604,
0x29008b04, 0x2782ee05, 0x4a000c32, 0x66006804, 0x25006404, 0x7700a805, 0x10001903, 0x13830f84, 0xaa260387, 0xb4046d00, 0x03841d00, 0xcf009e2a,
0xbcff1202, 0x87010004, 0x6f200382, 0x7d240382, 0x2500a602, 0x0c200382, 0x3b200382, 0x2f200b86, 0x20062f47, 0x248f8221, 0x00000800, 0x29078700,
0x0000ab02, 0x00000002, 0x13825501, 0x0b826820, 0x0b822520, 0x10829a20, 0x0382cd20, 0x08230286, 0x83540000, 0x37678303, 0x17006601, 0x0a00cd04,
0x00005204, 0x1200a006, 0xc700f606, 0xae002b07, 0x2e085344, 0x02d3fe42, 0x037300aa, 0x07930033, 0x831d0056, 0x34f78203, 0x00aa047d, 0x00f40571,
0x002f05b8, 0xfc0000a4, 0xfd00008f, 0x20078248, 0x20078246, 0x22038204, 0x82390431, 0x00d53cfb, 0x004804c9, 0x00e90471, 0x00db07ae, 0x006f067d,
0x00250500, 0x00dd0414, 0x82270714, 0x00b6221f, 0x2a3f82ae, 0x00640400, 0x0029070a, 0x821206c7, 0x827f200f, 0x82f0201f, 0x828b200f, 0x82a2200f,
0x005e2e87, 0x00ae0339, 0x00230617, 0x00ec0568, 0x427b84a4, 0x0022059b, 0xe382dd03, 0x8400c121, 0x64093107, 0x58087d00, 0x3f067100, 0x19057d00,
0xb2077100, 0x50206f82, 0x77860782, 0x07470420, 0x00df2407, 0x82750468, 0x009e2697, 0x019e04f4, 0x290383e1, 0x2900e907, 0x2900a607, 0x1782e705,
0x7382fc20, 0x2f009c32, 0x12008904, 0xc7009c04, 0xae00b004, 0x2f00ee03, 0x1222ff82, 0x0f820005, 0xae000826, 0x0400e906, 0x04248f82, 0x48005c04,
0x44229b82, 0x17820a05, 0x37824a20, 0x0782a220, 0x07842b20, 0xf8032f26, 0x44051200, 0xd120cb82, 0xcd245782, 0xfa04e500, 0x5c283782, 0xac05e500,
0x4408ae00, 0xb820db82, 0xec26eb82, 0xf2047d00, 0x9b887100, 0x14002728, 0x29008703, 0xd3823704, 0xdb82d520, 0xd3200787, 0x3d280b82, 0x89062300,
0x8b051400, 0x48274f82, 0xbc04a600, 0x83059a00, 0x84ac2007, 0x04c72107, 0x06275782, 0x053d0077, 0x8733001d, 0xb6022907, 0x85065200, 0xc3050400,
0x4a200382, 0x2d209b82, 0x6a207382, 0x71244b82, 0x9c051000, 0xe9209382, 0xcb200f82, 0xf3820782, 0x07274b87, 0x05c70006, 0x83ae00d1, 0x0703423b,
0x200f5f46, 0x06234804, 0x828f0521, 0x004822bb, 0x87078766, 0x0717416b, 0xb8270784, 0xd5051b00, 0x8304c900, 0x4707876b, 0xd3410e7b, 0x033b2c0a,
0x043700b2, 0x031900ae, 0x8f0a00e9, 0x44a38707, 0x0621071b, 0x20ab8296, 0x099f41fe, 0x82c30421, 0x002f24db, 0x82600423, 0x82002007, 0x009c2c07,
0x00b00489, 0x00f40671, 0x82fe0689, 0xfc2e0807, 0x46064e00, 0xc5045000, 0x10044e00, 0xa4075000, 0xa4060000, 0xe5071000, 0x2f07c700, 0xc305ae00,
0xe1047d00, 0x81057100, 0x12051400, 0xbf822900, 0xae036f26, 0x5a055c00, 0x5e224f82, 0x0f411000, 0x200f8e0f, 0x200f8e12, 0x490fb05e, 0x04271e7b,
0x04270039, 0x49120048, 0x022717ab, 0x025200b6, 0x86620012, 0x489e2007, 0x0f8e0fe3, 0x0f8e3320, 0x200d1349, 0x062349aa, 0xdb48079b, 0x060f440f,
0x97071744, 0x08bb4507, 0x200ae348, 0x05d34a03, 0x00007128, 0x0000dbfb, 0x07826afc, 0x07858920, 0x8264fc21, 0x8a732007, 0x01642403, 0x823100a4,
0x83102003, 0xb0042303, 0x73497100, 0x00002e07, 0x01018503, 0x18281a01, 0x010a0101, 0x2504822b, 0x1401160b, 0x00880b05, 0x82141421, 0x1c3d080a,
0x1422260b, 0x0b12010b, 0x15151915, 0x22191c14, 0x1b162213, 0x1017151b, 0x01122610, 0x01200105, 0x1c0b1101, 0x192a150b, 0x0a0c0c2e, 0x152e180c,
0x2a120b0b, 0x0b192e0b, 0x1912161a, 0x20068218, 0x2e448228, 0x0115180b, 0x0b271404, 0x10010401, 0x8211110b, 0x0114294d, 0x01270a11, 0x261c0a01,
0x01210084, 0x21898214, 0x00821901, 0x22190b22, 0x0b220083, 0x00821522, 0x16132623, 0x21008411, 0x0d821c16, 0x820c1521, 0x2e152100, 0x15230983,
0x822e150b, 0x0b162400, 0x83112616, 0x1c142101, 0x6b830185, 0x87150121, 0x190b2101, 0x33820185, 0x0c192e22, 0x15280187, 0x150c1517, 0x0c140a0a,
0x24240184, 0x2e190c14, 0x18240183, 0x15222e19, 0x2a230183, 0x83121628, 0x2a1b2101, 0x0b210186, 0x8301821b, 0x25038743, 0x16260b10, 0x00841226,
0x260b302c, 0x22160111, 0x012a1b15, 0xc3832401, 0x5b080383, 0x2d151426, 0x150d150c, 0x19222616, 0x15120117, 0x19151922, 0x2211191c, 0x1b201315,
0x19101926, 0x0b261922, 0x12162e16, 0x15160c0b, 0x172e1616, 0x122d0a16, 0x18151818, 0x01181813, 0x13131912, 0x15121618, 0x0e011812, 0x191b1419,
0x19281519, 0x1530150e, 0x19221326, 0x1218011f, 0x10211082, 0x08a7821c, 0x1b141327, 0x15101930, 0x17191914, 0x24161910, 0x19141116, 0x19151614,
0x0a19191a, 0x15191316, 0x191c0b12, 0x161a1916, 0x361f8212, 0x19111918, 0x142e1511, 0x0c0c2a1c, 0x2e18180c, 0x1712160a, 0x830b1001, 0x16262101,
0x1523af83, 0x82151915, 0x82192003, 0x2b143100, 0x0c191918, 0x0b0b1901, 0x01010b11, 0x0122192a, 0x0c293382, 0x2b1e1726, 0x17170101, 0x2200820b,
0x82141419, 0x01012220, 0x85008511, 0x852e20f3, 0x01012a06, 0x1611150c, 0x26181c18, 0x22108211, 0x82221414, 0x2c1985f7, 0x1d191519, 0x01262017,
0x18181c01, 0x28938216, 0x191a0114, 0x18152213, 0x2a018216, 0x19151401, 0x14181d01, 0x82240d1c, 0x012e282c, 0x17011916, 0x82120b13, 0x19192515,
0x01151a12, 0x0a229d82, 0x9782180b, 0x192e1929, 0x1c141312, 0x8226191b, 0x19193301, 0x1613152a, 0x18191214, 0x160a160a, 0x20191819, 0x32821818,
0x14191823, 0x21cb8212, 0x82821126, 0x82011621, 0x151522d6, 0x21458218, 0xdc821112, 0xe0411920, 0x11162305, 0x01831630, 0x142c3b82, 0x14121810,
0x1a100116, 0x15170b13, 0x16236282, 0x82271817, 0x171324aa, 0x42101a12, 0x6042065a, 0x42058b05, 0x09850960, 0x190c1923, 0x9159850c, 0x2e152505,
0x1c192e15, 0x26210187, 0x20018316, 0x0512410b, 0x0b220585, 0x67480b1b, 0x00133505, 0x06880300, 0x03000407, 0x04020202, 0x01040503, 0x03030202,
0x05820b82, 0x00860320, 0x03201183, 0x04271a82, 0x03030404, 0x82020404, 0x8205201a, 0x210d850b, 0x2e840305, 0x82020321, 0x04032119, 0x1f820683,
0x1f840220, 0x02030223, 0x82158304, 0x870a8214, 0x82052050, 0x83022008, 0x23388235, 0x01020404, 0x27833984, 0x05215283, 0x84158204, 0x8260847e,
0x84688862, 0x20378508, 0x8d008202, 0x823f871f, 0x85848207, 0x82bd860d, 0x82158b06, 0x8202863a, 0x8293847c, 0x85a1859b, 0x84ba8452, 0x0405228b,
0x88018302, 0x85288447, 0x85058524, 0x241f84ad, 0x03040302, 0x843a8205, 0x214e820c, 0x00820301, 0x05263d82, 0x05040503, 0x81830402, 0x70820320,
0x05040322, 0x06239c87, 0x83040603, 0x8a248235, 0x82f1851e, 0x2228824c, 0x82020605, 0x03062267, 0x820e8205, 0x060621b3, 0x10820882, 0x12834082,
0xaa850682, 0x06040325, 0x82040403, 0x8206201d, 0x82042005, 0x20d58200, 0x20118204, 0x82428203, 0x2087820d, 0x24068205, 0x05040606, 0x20728203,
0x20748203, 0x234d8203, 0x03040505, 0x05205783, 0xc7842582, 0x02060627, 0x01020101, 0x233d8202, 0x07060203, 0x02220882, 0x0c820103, 0x05030524,
0x41820603, 0x00820520, 0x41847d84, 0x04223b82, 0x24420304, 0x8203200a, 0x020223cf, 0x44820301, 0x06000022, 0x04204b82, 0x36833582, 0x82020221,
0x2038827a, 0x82008300, 0x84042071, 0x823c824c, 0x200b8281, 0x825c8403, 0x070321af, 0x06211882, 0x82048205, 0x21b48224, 0x23820606, 0x03820320,
0x03040225, 0x85030505, 0x200f8214, 0x82008204, 0x41188224, 0x1d82056b, 0x02831182, 0x0220ca83, 0x2a827282, 0x05221185, 0x17840205, 0x27833d84,
0xc0413183, 0x052a420a, 0x06256384, 0x04020305, 0x229e8403, 0x83050506, 0x20b584bb, 0x8ae78405, 0x850a8b32, 0x4205897f, 0x31960a96, 0x33851687,
0x87000421, 0x01013200, 0x02030401, 0x04090700, 0x02020400, 0x06040503, 0x214c8205, 0x04820404, 0x3983f186, 0xcd830220, 0x3e410320, 0x05052306,
0x62410204, 0x26f18205, 0x06050504, 0x43040404, 0xfc410670, 0x233c8205, 0x04060204, 0x03200082, 0x0423da82, 0x82040406, 0x83022006, 0x23138415,
0x03020604, 0x032e1f83, 0x04030304, 0x01020504, 0x05030203, 0x03830505, 0x37840682, 0x00830420, 0x00850520, 0xff416182, 0x20158406, 0x93968406,
0x054f42f0, 0x83077143, 0x090b410d, 0x05851b85, 0x83055b43, 0x85052005, 0x05834393, 0x20850583, 0x06860520, 0x06060422, 0x4108bf43, 0xc48205b0,
0x8b020421, 0x8221824b, 0x221c8464, 0x82050402, 0x04052130, 0x23056543, 0x04010402, 0x05210082, 0x24be8402, 0x04050206, 0x821a8203, 0x05042259,
0x82408206, 0x0404230b, 0x4d420406, 0x208a8205, 0x22008204, 0x85040303, 0x84078209, 0x211f8277, 0x18820206, 0x43040621, 0x0222057e, 0x43860707,
0x6a820320, 0x4b835882, 0x4a860520, 0x08050529, 0x04060508, 0x82040704, 0x20418200, 0x0b874306, 0x04206a82, 0x2405a743, 0x04040603, 0x05384504,
0x04060624, 0x0b820403, 0x00840620, 0x07261682, 0x01010307, 0x22420102, 0x08062705, 0x02020302, 0x22820103, 0x07206c83, 0x05206782, 0x75830082,
0x8f860420, 0x00820420, 0x03820220, 0x03203085, 0x072b7a82, 0x04010202, 0x00010102, 0x82070700, 0x06042309, 0xec820606, 0x84030221, 0x00042106,
0x04210083, 0x23898405, 0x05050604, 0x06220382, 0x0f860704, 0x04212782, 0x820c8209, 0x41062032, 0x04200542, 0xce87ee84, 0x03221485, 0x7e410304,
0x82072005, 0x20268227, 0x211e8303, 0x0d820404, 0x50845782, 0x41058441, 0x088508c1, 0x1f85ea82, 0xc0414584, 0x82688609, 0x8203201b, 0x840d87a3,
0x205382b5, 0x05a94107, 0x35897186, 0x7d850989, 0x0220058a, 0x930d1e42, 0x86138533, 0x0c874333, 0x00020426, 0x00050a08, 0x27058743, 0x02020607,
0x02040402, 0x8605a446, 0x8202202e, 0x24ed8311, 0x04050505, 0x26d48204, 0x08040502, 0x82050606, 0x200d82a7, 0x82598208, 0x0721412e, 0x05040322,
0x02212e82, 0x212b8208, 0x14830305, 0x04040622, 0x0320e182, 0x8205f342, 0x0705220b, 0x20108203, 0x82f58407, 0x202c8224, 0x20458203, 0x23038306,
0x07060606, 0x82098d46, 0x8502820d, 0x05ff4117, 0x07203d82, 0x04200382, 0x02214b82, 0x0da74302, 0x82040521, 0x88038241, 0x0bbc43fa, 0x21821b86,
0x0221b383, 0x20018604, 0x20478205, 0x884f8205, 0x82062010, 0x8603821e, 0x07052406, 0x83030507, 0x08684101, 0xb4820320, 0x1d870320, 0x08240783,
0x04040406, 0x02207285, 0x07226482, 0x29430607, 0x02052305, 0x80820105, 0x02060522, 0x02205185, 0x06231782, 0x83060504, 0x22338203, 0x82050606,
0x83062027, 0x8204200f, 0x8202203d, 0x8404202a, 0x04022138, 0x52840785, 0x3f82ae82, 0x82050521, 0x23158307, 0x08080204, 0x3b843782, 0x08040623,
0x22088204, 0x84060806, 0x8264840e, 0x0507231d, 0x3a820805, 0x04030524, 0xa7430604, 0x84588208, 0x08a7430d, 0x02211e83, 0x06d54302, 0x08030423,
0x82018306, 0x080821c7, 0x82068743, 0x0603280b, 0x02030209, 0x84010402, 0x826e824a, 0x836b8267, 0x204f82b2, 0x20158206, 0x46608204, 0x2f82066e,
0x083b0283, 0x02030804, 0x02020401, 0x08000001, 0x05010208, 0x08080704, 0x03060406, 0x82070703, 0x00052138, 0x8a830083, 0x05060831, 0x06060705,
0x06050704, 0x04070806, 0x82060604, 0x0604261e, 0x06080a04, 0x848b8305, 0x050522fd, 0x200e8208, 0x25008205, 0x04050304, 0x6f820608, 0x85056941,
0x070622ec, 0x07294206, 0x0c826782, 0x05212882, 0x82018207, 0x0590432a, 0x11820620, 0x06203682, 0x07225882, 0x05820407, 0x0420c583, 0xc0410082,
0x092c4209, 0x07030423, 0x06c14206, 0x08070529, 0x04040606, 0x84090708, 0x20398255, 0x055a4205, 0x87430591, 0x9b5d8913, 0x41398509, 0x00200512,
0x02380082, 0x04050202, 0x0c090003, 0x02050005, 0x05060402, 0x03020608, 0x02050603, 0x4205a446, 0x248206eb, 0x83050521, 0x820520e0, 0x20a482dc,
0x830c8303, 0x20f182f4, 0x22b58206, 0x82030305, 0x202c8212, 0x21268204, 0x2e820505, 0x82080221, 0x8205200d, 0x0505226d, 0x22138206, 0x83030503,
0x27138415, 0x05040705, 0x05070305, 0x28057142, 0x04020206, 0x07070504, 0x056f4308, 0x37840620, 0x0f823883, 0x00830720, 0x06070522, 0x89860083,
0x41080521, 0x022005fe, 0x87088743, 0x85052018, 0x090945f6, 0x19880620, 0x14418383, 0x090f4709, 0x03040623, 0x86248202, 0x04032210, 0x08874302,
0x0723db83, 0x44080905, 0xce820dd0, 0x210cc641, 0x8d440506, 0x050f4906, 0x08200e82, 0x21073746, 0x59830502, 0x02060528, 0x08050706, 0x59820807,
0x05279f82, 0x05040706, 0x82060806, 0x050521d2, 0x0722ef84, 0x87430604, 0x21108206, 0x34850504, 0x87432382, 0x06062105, 0x83058743, 0x0405273a,
0x09090304, 0x13820506, 0xcf830520, 0x09820820, 0x08070525, 0x86060706, 0x0806274a, 0x05070708, 0x63410905, 0x06052205, 0x20088304, 0x200d8406,
0x20408404, 0x222c8208, 0x44070405, 0x0224059f, 0x08080202, 0x3c820a82, 0x82058743, 0x09092229, 0x08674804, 0x0b060334, 0x03030402, 0x05040104,
0x07050805, 0x07080905, 0x00820806, 0x07217f85, 0x235c8403, 0x02040606, 0x2509ee44, 0x09050905, 0xf8820203, 0x00010227, 0x02090900, 0x29aa8202,
0x05060808, 0x09040307, 0x82820709, 0x00830020, 0x05280782, 0x05060708, 0x06060608, 0x03820782, 0x06040523, 0x221e8306, 0x820c0506, 0x07082326,
0xfd820708, 0x05205682, 0xa285ee83, 0x06208382, 0x0c842682, 0x06060624, 0x8f840605, 0x21056044, 0x4c820406, 0x84070721, 0x21ca8315, 0x0a820804,
0x18824f85, 0x22057a45, 0x82050808, 0x820720c3, 0x215a8274, 0x3f820604, 0x4305e041, 0x062407b0, 0x07040505, 0x09827684, 0xe6820520, 0x05050726,
0x0809070a, 0x19822983, 0x43065a42, 0x61421157, 0x230a840a, 0x02040204, 0x05915985, 0x6b823d91, 0x00870020, 0x02020222, 0x002dce82, 0x00060c0a,
0x04020305, 0x07080606, 0x06874302, 0x65890420, 0x05222482, 0xe0820405, 0x87430620, 0x03042117, 0xe582d383, 0x87430283, 0x82042011, 0x02032116,
0x06265085, 0x05050408, 0x11820803, 0x82040421, 0x0687439c, 0x7b820720, 0x00820620, 0x3a420920, 0x201b8206, 0x33874306, 0x2008b444, 0x22874305,
0x8743f282, 0x43042009, 0x07220787, 0x87430506, 0x08092336, 0x60430507, 0x06032205, 0x20cc8202, 0x09874306, 0x0520e982, 0x220e8743, 0x43080608,
0x07222687, 0x87430605, 0x83088205, 0x430e8256, 0xf2820a87, 0x15820820, 0x070a0a22, 0x0a200682, 0x241a8743, 0x04050707, 0x19874308, 0x430a0a21,
0x09210a87, 0x0a87430c, 0x09050823, 0x07874307, 0x06060723, 0x08874305, 0x87430620, 0x050a2d0b, 0x0203030a, 0x01020306, 0x0a0a0000, 0x20088743,
0x10874308, 0x43820a20, 0x03830920, 0x06080823, 0x4393830a, 0x0c820787, 0x82080a21, 0x050b421d, 0x060a0a23, 0x256c8205, 0x06040505, 0x87430805,
0x06072a0c, 0x0607080a, 0x04040406, 0x21018306, 0x87430805, 0x4309201e, 0xa5431687, 0x05062205, 0x21638206, 0x67830708, 0x210a8743, 0x12820908,
0x43050721, 0x0b306c87, 0x0600070e, 0x07050303, 0x03080906, 0x06060303, 0x2005af4e, 0x83008606, 0x05063411, 0x0707070a, 0x08050608, 0x07030308,
0x09080a05, 0x82070906, 0x0907240d, 0x82070706, 0x20cd822e, 0x28038306, 0x02060604, 0x0a020502, 0x20008206, 0x072f4704, 0x44840883, 0x0627e782,
0x06050409, 0x82060904, 0x06042704, 0x02030706, 0x53820404, 0x07050822, 0x09220084, 0x00820607, 0x00820320, 0x09080822, 0x06220083, 0x00820809,
0x18821584, 0x050a0622, 0x02200583, 0x9b860082, 0x07210688, 0x43018406, 0x08220643, 0x19880806, 0x0b820620, 0x8305f545, 0x090e4e05, 0x03050727,
0x05050702, 0x82ae8205, 0x05032203, 0x21248602, 0xdb820608, 0x0a230382, 0x8304070a, 0x07ca4401, 0xc6820520, 0x89040521, 0x20278249, 0x43738208,
0x022005b4, 0x09237e82, 0x8206090a, 0x0606222c, 0x06874306, 0x07030729, 0x08090409, 0x84070409, 0x0908289b, 0x0a070703, 0x82090508, 0x0705219b,
0x0f826482, 0x76422f82, 0x4a052005, 0x408305b6, 0x71840820, 0x08226882, 0xbc850604, 0x0306072b, 0x0a0a0303, 0x08060708, 0x224b8407, 0x82080609,
0x080a2109, 0x07214a82, 0x29ab8205, 0x0b0b0808, 0x07070908, 0x3182070c, 0x26820420, 0x48830520, 0xb5430720, 0x43062005, 0x082805a7, 0x09050608,
0x04060606, 0x0221f282, 0x20ab8202, 0x21238205, 0x43820904, 0x58820920, 0x0b0b0623, 0x060f4705, 0x0505052c, 0x05030d09, 0x01060303, 0x5c820604,
0x0b060926, 0x09070909, 0x06210082, 0x84298307, 0x07062596, 0x02060606, 0x04200382, 0x06240085, 0x040b060b, 0x2e078743, 0x02020b0b, 0x0a080707,
0x0906070a, 0x820a0404, 0x0708226b, 0x83008300, 0x840b208a, 0x060723b9, 0x2183080a, 0x08219382, 0x24168209, 0x0b0e0608, 0x82688209, 0x8205201d,
0x06062155, 0x0784d082, 0x0704052b, 0x06080906, 0x07060705, 0x2d018205, 0x09060807, 0x090a0b07, 0x05050707, 0x85840706, 0x82090a21, 0x82428249,
0x030721a3, 0x14820b82, 0x2205a541, 0x8303070a, 0x0a092121, 0x4583c585, 0x4105fa4a, 0xd64405e0, 0x23398206, 0x08090406, 0x06206783, 0x09280082,
0x0609090a, 0x0b090a06, 0x08212e82, 0x84778407, 0x90072067, 0x0a614205, 0x03230a84, 0x85020302, 0x84059159, 0x82072090, 0x850384a7, 0x0006214b,
0x250a0f47, 0x00040506, 0x87430f0c, 0x07082b05, 0x0403080a, 0x03070704, 0x05820304, 0x00860720, 0x82030321, 0x06874308, 0x08080623, 0x21dc8204,
0xf483090b, 0x54820720, 0x1b820b20, 0x04040428, 0x07070506, 0x39820607, 0x03070625, 0x83030603, 0x04072815, 0x05070406, 0x82050609, 0x82042006,
0x274d8415, 0x040a0706, 0x0a040706, 0x04262f82, 0x08070704, 0x3b820203, 0x09090923, 0x231d8405, 0x06070a07, 0x4f820082, 0x86430420, 0x20658205,
0x85008208, 0x2105821c, 0x0482060b, 0x92844b82, 0xa0411588, 0x410e8405, 0xf083062c, 0x43093741, 0xaf82083b, 0xdd83d982, 0x07210382, 0x82458206,
0x25ae826d, 0x04060306, 0x6c820306, 0x07090723, 0x23068508, 0x0b0b0709, 0x41058743, 0x04200880, 0x4a410f83, 0x21078307, 0x7982090b, 0x03201e85,
0x0a207d82, 0x0d820f82, 0x03220982, 0x8d840207, 0x09070323, 0x43dc8206, 0x08820887, 0x09212382, 0x821c8308, 0x05a04366, 0x46821482, 0x07050624,
0x04820407, 0x82060621, 0x820620a4, 0x83398310, 0x2007821a, 0x221a8206, 0x820b0304, 0x211b823a, 0x72420707, 0x21a98205, 0x4a87080b, 0x0b080829,
0x070a080b, 0x82070c07, 0x06052100, 0x26827682, 0x0d82cc82, 0x05050623, 0x82408209, 0x0709221f, 0x22228206, 0x82060507, 0x820320f8, 0x226d83dd,
0x83090b05, 0x21148201, 0x87430c0c, 0x030f2f0b, 0x06040405, 0x07070402, 0x060a070a, 0x87430a0d, 0x07072505, 0x07070808, 0x2207ac41, 0x43030707,
0x0c2d0a87, 0x03040c06, 0x02030702, 0x0c000001, 0x2109820c, 0x63820907, 0x04090724, 0xb8820b05, 0x00080922, 0x06230083, 0x82070709, 0x2303840d,
0x07070a0a, 0x062b0382, 0x07090909, 0x05080508, 0x82090d0e, 0x820b2017, 0x070621a5, 0x0c200082, 0x06820982, 0xa5820720, 0x090a0723, 0x21f48207,
0x05820607, 0x07080726, 0x0b0c0809, 0x07201183, 0x22057445, 0x82080a06, 0x26178240, 0x080a080a, 0x41090904, 0x0b2309a1, 0x82070409, 0x0b0a2400,
0x83090706, 0x83092001, 0x84098441, 0x06d9430f, 0x82080521, 0x090a2163, 0x5f826782, 0x5b849e82, 0x830a0b21, 0x21ad827f, 0x66420806, 0x43098e09,
0x04220f98, 0x43420403, 0x87638906, 0x84082009, 0x05f444b7, 0x82056947, 0x870020bd, 0x02023200, 0x04070702, 0x08100d00, 0x04030700, 0x0b070805,
0x07874309, 0x42061843, 0x058205f6, 0x080b0623, 0x2bef8208, 0x05090906, 0x0b060803, 0x0a070a09, 0x0922a182, 0x1b820b07, 0x04050423, 0x203c8207,
0x26b38208, 0x03080704, 0x83030603, 0x05082a2c, 0x06080406, 0x0606070a, 0x43738205, 0x062c06d8, 0x06050b08, 0x070b0407, 0x05050706, 0x03285082,
0x06050503, 0x060a0a0a, 0x02825d82, 0x07080b22, 0x05200082, 0x09210082, 0x20158209, 0x2065820a, 0x21008209, 0x17840707, 0x43070721, 0x2f850987,
0x0883de82, 0x82080621, 0x200b827a, 0x07714307, 0x3541f083, 0x08164109, 0x08090822, 0x83057b51, 0x06082205, 0x21c98203, 0x87430606, 0x821e8209,
0x08092238, 0x2301840a, 0x05080c0c, 0x87430183, 0x074a410d, 0x0b200783, 0x0720dc82, 0x04201e85, 0x0b26a182, 0x07080a0b, 0x87820806, 0x02080322,
0x08299683, 0x060a0803, 0x040a090a, 0x29be8408, 0x08050a09, 0x07090b08, 0x9a83090a, 0x0a22da82, 0xb0820705, 0x2a820420, 0x0624c082, 0x06040808,
0x06204582, 0x08200e85, 0x0b211f82, 0x220b8204, 0x820a070b, 0x05052615, 0x0a0c0c03, 0x21a18208, 0x0e820808, 0x09070b22, 0x0b218082, 0x824a8209,
0x070a2a0e, 0x0d0d0909, 0x08080b09, 0x2b0d820d, 0x07070507, 0x08080609, 0x08090706, 0x06240082, 0x07090605, 0x2406a743, 0x07070b06, 0x07874308,
0x06060827, 0x0b050608, 0x8201830a, 0x0d0d23c4, 0x774f0205, 0x10092108, 0x82058743, 0x247f834a, 0x080a0a0d, 0x2000820a, 0x43528208, 0xac410c87,
0x05053f06, 0x070d0705, 0x0203040d, 0x01030307, 0x0d0d0000, 0x07080203, 0x080b0b0b, 0x05040a07, 0x3d820b0b, 0x83000921, 0x09072c00, 0x0a0d0807,
0x090c0808, 0x820c0708, 0x0a0c25bc, 0x0a0a0607, 0x06251082, 0x0e0f0608, 0x821b820a, 0x0806281d, 0x08080807, 0x410a0c0d, 0x052005d1, 0x09214982,
0x44148307, 0x08240580, 0x0b0d090a, 0x06223382, 0xb6820507, 0x07070624, 0x9441090b, 0x090b2505, 0x0b05090b, 0x0920f482, 0x1283a682, 0x42830e82,
0x070b0b24, 0x01820a07, 0x45820b20, 0x1a840720, 0x4205e041, 0x0724092c, 0x060a0b05, 0x07256782, 0x0b080707, 0x23ae820c, 0x0d0b0d07, 0x0923a382,
0x43060708, 0xdc4305e3, 0x43098909, 0x07240e96, 0x03050305, 0x05915985, 0x0a218e83, 0x84018709, 0x080622b7, 0x3c008700, 0x08030303, 0x0e000407,
0x07000811, 0x09060404, 0x030a0c08, 0x08080404, 0x05040504, 0x83008808, 0x06082611, 0x0809090c, 0x21d0820a, 0x3382050a, 0x0b0a0c23, 0x055f4808,
0x97820d20, 0x04050423, 0x05084307, 0x07040828, 0x07040408, 0x3c830d04, 0x82070521, 0x820a20da, 0x200883ad, 0x21568204, 0xe7820808, 0x07050c25,
0x820c0508, 0x05052e2f, 0x04090808, 0x07050503, 0x060a0a0a, 0x20008409, 0x0887430c, 0x0b0a0a22, 0x08210083, 0x211c820b, 0x3983070a, 0x07214882,
0x8209820c, 0x8504209e, 0x22a1884d, 0x43070807, 0x2441056b, 0x080a2107, 0x8205c441, 0x21128218, 0x0186070a, 0x7b511582, 0x08082309, 0x6e830403,
0x0725ae82, 0x07050704, 0x063d4104, 0xd9820a20, 0x0c21dd83, 0x0687430d, 0x82076f41, 0x050721c6, 0x210b6241, 0x1a820a0d, 0x04287285, 0x0c070908,
0x07080b0c, 0x0822a085, 0x00820803, 0x08040929, 0x090b060b, 0x8309040b, 0x0a08279d, 0x0908050b, 0xd2820a0c, 0x27820820, 0x0b226282, 0x3d820705,
0x29820420, 0x06200782, 0x0720d782, 0x07210782, 0x05664908, 0x26108743, 0x080a0d0d, 0x82090a08, 0x07092568, 0x0a0a080b, 0x0b204b83, 0x07221282,
0x16820b08, 0x090d0d26, 0x0f08090c, 0xb5824f82, 0x08202382, 0x1c820982, 0x05210682, 0x05874307, 0x080b0922, 0x08293782, 0x07070508, 0x0c040404,
0x2483820c, 0x0d060708, 0x2601830a, 0x0e070707, 0x8203060e, 0x06063600, 0x06070706, 0x0603110c, 0x02070404, 0x0c080805, 0x0e070b08, 0x24c5820a,
0x080b0b0b, 0x217f8209, 0x15820a08, 0x08205782, 0x0720b084, 0x3605f64f, 0x070e0705, 0x0204050e, 0x01030408, 0x0e0e0000, 0x08080304, 0x820d0c0b,
0x060523a9, 0xeb820d0d, 0x30068743, 0x0d08080a, 0x0d08090b, 0x0c07090a, 0x0d09090a, 0x2093820c, 0x2557820a, 0x11070907, 0x1b820b0f, 0x080b0d22,
0x21053f44, 0xbe840d0e, 0x05070826, 0x0a0b0809, 0x07201484, 0x0a200583, 0x0f210d82, 0x2211830c, 0x82070507, 0x82408300, 0x82082049, 0x05874317,
0x45080921, 0x09260549, 0x050a0c08, 0x68820709, 0x08070c23, 0x2101830b, 0x35470809, 0x200d8406, 0x460d8308, 0x072505a7, 0x070b0c05, 0x300f8405,
0x0c0c0c08, 0x0d07080b, 0x0a0c0e0c, 0x08090a08, 0x05704107, 0x2111e146, 0x664a0709, 0x25388408, 0x04050807, 0x59850405, 0x4b820591, 0x7a480820,
0x42058305, 0x87430551, 0x0005320e, 0x0009120f, 0x07040408, 0x0b0c080a, 0x08050504, 0x46508208, 0x082006a0, 0x04210082, 0x2f048204, 0x0a0a0d06,
0x08080a09, 0x04060b0a, 0x0b0d0709, 0x5a824e84, 0x08090e28, 0x05060508, 0xaf840608, 0x2a820820, 0x042b4882, 0x0909080d, 0x05070609, 0x430b0708,
0x09200e87, 0x82058743, 0x05052eba, 0x040a0809, 0x07050503, 0x060b0b0b, 0x2000840a, 0x05c2450d, 0x06060623, 0x8214820a, 0x84082002, 0x204d8206,
0x20008408, 0x0887430d, 0x09206e82, 0x08200082, 0x07213084, 0x22bb8209, 0x4a0a080a, 0xaa820853, 0x34841884, 0x3b430820, 0x080b2307, 0xc951080b,
0x09042108, 0x0920f282, 0x87439d82, 0x053d4108, 0x06820a20, 0xdd830920, 0x4b0e0d21, 0x344105e6, 0x07072105, 0x41059543, 0x0e210b62, 0x41c6820b,
0x04200584, 0x0d266482, 0x07090b0d, 0x99820907, 0x03090422, 0x092a9b82, 0x0c09040a, 0x0c0a0c07, 0x81830a04, 0x0623ca82, 0x820d0a09, 0x830b2040,
0x2962829b, 0x0908060b, 0x08040807, 0xc0820909, 0x09080728, 0x08070704, 0x39820708, 0x08220e82, 0x3882080b, 0x0c20de82, 0x092a0982, 0x04060607,
0x090b0f0e, 0xd9820b09, 0x080a0823, 0x244c820c, 0x0b0d0b09, 0x2212820b, 0x820b0908, 0x0e0e2616, 0x090a0d0a, 0x247c8210, 0x08080608, 0x8348830b,
0x21608238, 0x0d830707, 0x0a0d0d2a, 0x0c07080b, 0x06080808, 0x20058743, 0x0587430d, 0x830b0e21, 0x21c48201, 0x87430f0f, 0x82082007, 0x04122227,
0x08874307, 0x0f080c23, 0x0587430c, 0x0b0a0923, 0x205c8209, 0x82458206, 0x090922b4, 0x43088204, 0x08330687, 0x050f080f, 0x04080304, 0x00000203,
0x03040f0f, 0x820c0809, 0x0c082573, 0x0e0e0605, 0x87433d82, 0x0b082205, 0x2e4c8208, 0x0b0d090a, 0x0a0d080a, 0x0c0e090a, 0x820b0708, 0x07092b54,
0x10120709, 0x0c0d090b, 0x0b820c0f, 0x0f225c83, 0x63840b0e, 0x0a060824, 0xba820c08, 0xca820920, 0x0a070928, 0x0c080b09, 0x3f82100a, 0x41070921,
0x09210579, 0x05994207, 0x09261782, 0x0c06090c, 0x74430a0b, 0x82082005, 0x820b2061, 0x2106823b, 0x1284080d, 0x6e824583, 0x09200b83, 0x5b439183,
0x080a2507, 0x0b0d0608, 0x2506c142, 0x0e0e0e09, 0xa482090c, 0x0a20f384, 0xdd462f83, 0x46118511, 0x08860806, 0x06040623, 0x096b4304, 0x0820098e,
0x83075642, 0x20b98617, 0x0a0f4700, 0x05080926, 0x0a141000, 0x2a058743, 0x040b0d09, 0x09090505, 0x46040504, 0x092006a0, 0x04210082, 0x25048204,
0x0b0b0e07, 0xd0820b0a, 0x04060b26, 0x0c0e0809, 0x0a204e82, 0x0a270d82, 0x0908090e, 0x82050605, 0x820920d3, 0x04092809, 0x04040908, 0x820e0408,
0x06092731, 0x08090507, 0xe582080c, 0x82060921, 0x82128315, 0x060d2122, 0x0d323082, 0x06090708, 0x0a090906, 0x06060304, 0x0c0c0c08, 0x00840b07,
0x080a0e22, 0x06200082, 0x0b210082, 0x2010840c, 0x22058409, 0x840a0908, 0x0e09223d, 0x21908508, 0x0f850404, 0x08210586, 0x066c4409, 0x21087143,
0xab480b09, 0x43058405, 0x1582083b, 0x21098743, 0x4582080a, 0xae826d82, 0x08040827, 0x0c040806, 0x21018309, 0x25820c0b, 0x0924dd82, 0x060a0f0e,
0x88480183, 0x08052108, 0x5e410182, 0x0c0e210b, 0x61843e82, 0x82050821, 0x0e0e2134, 0x07207482, 0x8743a084, 0x040b3405, 0x0d070c0a, 0x0b050d0b,
0x080a080b, 0x060b0b09, 0x820e0a09, 0x090b305e, 0x0d080809, 0x060b0d09, 0x09070908, 0x82090905, 0x0707261c, 0x08050909, 0x20188208, 0x05f34609,
0x0c080b29, 0x0909050c, 0x83080c09, 0x0606283c, 0x0b0f0f04, 0x820b0a09, 0x224b827f, 0x820c090e, 0x0b0e2147, 0x0a2e0e82, 0x090d0a08, 0x10100a0b,
0x0a0a0d0b, 0x31820a10, 0x09090625, 0x8209070b, 0x090b2197, 0xbe820082, 0x09080b25, 0x820e0e09, 0x0d0821d8, 0x06271082, 0x04040708, 0x830e0e04,
0x0608236a, 0x01830c0e, 0x08080825, 0x47071010, 0x082a060f, 0x140c0708, 0x05050704, 0x4a820208, 0x0d090d28, 0x0b0d1008, 0x00820c0a, 0x0b0a0923,
0x825c820a, 0x23478215, 0x040a0909, 0x06203782, 0x082e0085, 0x05100810, 0x04090304, 0x00000203, 0x09821010, 0x820c0921, 0x0d092173, 0x21068743,
0x0083000a, 0x090c0827, 0x0b0d1009, 0x29b98209, 0x0b0c0e09, 0x090e0f09, 0x07820d07, 0x0822c482, 0x17821113, 0x0d100d22, 0x5d830b82, 0x820f1021,
0x2708822b, 0x080b0608, 0x07090b0e, 0x082e7882, 0x0a0b0809, 0x0b0c090b, 0x0a0d0d11, 0x9841080a, 0x08092e05, 0x0a0b0b0d, 0x090b090a, 0x0a0d0a0d,
0x41598306, 0x0a2005a3, 0x06206582, 0x0e220a83, 0x1d82080e, 0x45825c82, 0x81820920, 0x0d840c20, 0x43090b21, 0x0927085f, 0x0c0d0608, 0x820a0608,
0x0909245f, 0x820f0e0e, 0x0e102382, 0x3b820e10, 0xb24e0a20, 0x0e534305, 0x2e833f86, 0x8743038b, 0x2033831c, 0x05044c0a, 0xba820b20, 0x00820820,
0x20059a44, 0x32008200, 0x09030303, 0x11000508, 0x09000a14, 0x0b070404, 0x430c0e09, 0x0f201887, 0x0c2a4582, 0x0c0c0909, 0x080a0506, 0xf4820d0f,
0x0d820b20, 0x090f0a2b, 0x06050a09, 0x0a070905, 0x21d78209, 0x87430609, 0x090f2a05, 0x060a0a0a, 0x08090608, 0x0e87430d, 0x060e0a37, 0x0e050908,
0x06090709, 0x0b090a06, 0x06060304, 0x0d0d0d08, 0x822f8207, 0x0a0e2202, 0x20008209, 0x20008206, 0x8214820c, 0x0d092102, 0x4305ff41, 0x6e821087,
0x00820a20, 0x2005a043, 0x827a8308, 0x085a4111, 0x0c0a0c22, 0x4e823186, 0x080c0922, 0x09220186, 0x8743090c, 0x080b2409, 0x430a0405, 0x0d210b87,
0x20018309, 0x2004820b, 0x24dd820a, 0x0b0f0f0a, 0x43018306, 0x062108d0, 0x43018209, 0x058505ac, 0x820d0f21, 0x05cd411b, 0x88820520, 0x0d0e0e26,
0x0a08090a, 0x04228782, 0xcf84030a, 0x0d0a0429, 0x0d0b0d08, 0x820b0a05, 0x0c0a251e, 0x0a0a060d, 0x0d203382, 0x0e289b84, 0x060d0e09, 0x09080a09,
0x43833a82, 0x0a09082b, 0x09090805, 0x0b0a0808, 0x82cf820a, 0x0d0c21aa, 0x09211a82, 0x2809820d, 0x0606090a, 0x0c100f05, 0x82d6820a, 0x090b294b,
0x0d0d0a0e, 0x0c0f0b0a, 0x0a2d4a82, 0x090e0a09, 0x11110b0c, 0x0a0b0e0b, 0x21688312, 0xf1820906, 0x38844982, 0x08080a22, 0x092efd82, 0x0b0f0f09,
0x0e08090c, 0x06090909, 0x87430808, 0x0f072209, 0x8201830d, 0x111121c7, 0x21098743, 0x87430f06, 0x090e230b, 0xc5820e12, 0x72820d20, 0x0b0c0a22,
0x07205c82, 0x22058543, 0x41040a0a, 0x200806ac, 0x09060606, 0x06110911, 0x05090304, 0x00000203, 0x03041111, 0x0f0d0a0a, 0x0d090a0f, 0x10100706,
0x20b7820d, 0x82008300, 0x11092acd, 0x0f0a0b0e, 0x0f090a0c, 0x20b5820c, 0x2293820e, 0x830a0d0c, 0x121427f1, 0x0d0f0a0d, 0x0b820e11, 0x0a0a0926,
0x0e10110a, 0xfa820683, 0x0c22ee82, 0x3743080a, 0x0a0b2705, 0x0b0d090c, 0x43820f12, 0x21470820, 0x08092f05, 0x0a0c0c0d, 0x090c090b, 0x0a0e0a0e,
0xa1820e06, 0x0c220c83, 0x61820b09, 0x090a0627, 0x0e0e090a, 0x22778209, 0x820e090d, 0x080a2245, 0x210b830d, 0x01820d0a, 0x2009b445, 0x20368209,
0x2c2b8209, 0x0a0a0809, 0x0d100f0f, 0x0e10090b, 0x212e8211, 0x77840b0d, 0x4d08d74d, 0x098309e1, 0x820c0a46, 0x0406230c, 0xe64b0406, 0x20059105,
0x219f820c, 0x01870a0c, 0x44055242, 0x8743059a, 0x31e78206, 0x0b161200, 0x04050900, 0x0f0a0c07, 0x0505040d, 0x50820a0a, 0x20061843, 0x2100820a,
0x04820404, 0x0b100833, 0x0a0c0b0b, 0x060d0c09, 0x10090a05, 0x0d0b0d0d, 0x21de820b, 0x9182100a, 0x05070523, 0x222f820a, 0x820b080b, 0x050b3706,
0x10050905, 0x0b0b0a0b, 0x0b060907, 0x0a090d0a, 0x060a0608, 0x4483050a, 0x2c820a20, 0x0a060f25, 0x820f060a, 0x060626f1, 0x040c0b0a, 0x22068204,
0x4a0d0d0d, 0x0b23057f, 0x820a0b0f, 0x0a874300, 0x1b820a20, 0x090d0d23, 0x2417840b, 0x080f0a0a, 0x2000820a, 0x20008205, 0x2111860a, 0x00820b0a,
0x46086844, 0x0c2207f9, 0x1f870c0b, 0xfe872f82, 0x0620b383, 0x2708965d, 0x05050a0b, 0x0909090a, 0x0382ae82, 0x05090622, 0x03821e83, 0x0a210282,
0x2301820d, 0x070b1010, 0x6e410183, 0x09062108, 0x24860182, 0x0d22fd82, 0xdc82100b, 0x2006fa43, 0x22828205, 0x820d0f0f, 0x43a0844f, 0x0b280587,
0x080e0b04, 0x060e0c0e, 0x0b21be82, 0x21ca820a, 0x33820a06, 0x0b200782, 0x0e252782, 0x060d0e0a, 0x82b08209, 0x371c821d, 0x0a0b0808, 0x0b090906,
0x0c0a0809, 0x080a080b, 0x0c0a0d0b, 0x0a0b060d, 0x0d280782, 0x06090b0a, 0x11100506, 0x0d200882, 0x0c22ed83, 0x44820e0a, 0x100c0a24, 0x0f820d0d,
0x820b0921, 0x120c270d, 0x0b0f0c12, 0x4982130b, 0x82070a21, 0x0b08256a, 0x0e0a090b, 0x0b393e82, 0x0d0a0808, 0x100b0b09, 0x0a0e0c10, 0x0a0a0f08,
0x0908070b, 0x0f050505, 0x24208210, 0x1007090b, 0x3901830d, 0x12090a09, 0x03030712, 0x06060304, 0x07080806, 0x0704150f, 0x02090606, 0x6a820a07,
0x13090e26, 0x0e0b0d0e, 0x8d820082, 0x34456082, 0x820b2005, 0x43052000, 0x20080a87, 0x06120912, 0x050a0305, 0x00000204, 0x03051212, 0x100f0a0b,
0x0e0a0b10, 0x11110706, 0x0c0d0a0d, 0x20008300, 0x28c2820a, 0x0b0c0e12, 0x0a0b0d10, 0x20078210, 0x23938211, 0x0a0d0c0e, 0x16280083, 0x110a0d13,
0x0b0e120e, 0x21051350, 0x23821112, 0xc6820b20, 0x090b0725, 0x830a0d0e, 0x0a092414, 0x820b0c09, 0x130c2889, 0x0b0c0d0f, 0x82080908, 0x2313827e,
0x0b0d0d0f, 0x0f2b1783, 0x060c0f0c, 0x0a0c0d0e, 0x820d0a0c, 0x23658226, 0x0a0b060e, 0x0f218782, 0x2777820a, 0x0d0e0a0d, 0x080a080a, 0x27431a83,
0x20688305, 0x261f820b, 0x070a0b0c, 0x82090e0f, 0x090a2d67, 0x11100b0b, 0x090b0f10, 0x10130f12, 0x0c232582, 0x420c080a, 0x098e095c, 0x89053a46,
0x05062305, 0x81430506, 0x82118611, 0x0c0d2190, 0xd8430187, 0x06e26d05, 0x00000038, 0x0b040404, 0x13000609, 0x0a000b17, 0x0c080405, 0x040d100a,
0x87430606, 0x0c0c3616, 0x090a0d0c, 0x05060e0d, 0x0e110a0b, 0x0c0e0b0e, 0x0b0e0a0a, 0x24878211, 0x0a060706, 0x20d18208, 0x08874309, 0x0d821120,
0x09080b2c, 0x0e0a0b06, 0x07080a0a, 0x8743070a, 0x0b0a3807, 0x0a0a0710, 0x080a1006, 0x0b06060a, 0x04040c0b, 0x0e0a0706, 0x82080e0e, 0x2102825d,
0x87430c10, 0x820d2007, 0x83028214, 0x0e0e221b, 0x0787430a, 0x43091021, 0x6b431787, 0x0c092106, 0x0d200184, 0x2041f682, 0x060a4109, 0xb3820a20,
0x87430b20, 0x090b240d, 0x84050a09, 0x0a062201, 0x221e8305, 0x820d0b0e, 0x25b58206, 0x11110a0e, 0x0183080c, 0x21080445, 0x01820a06, 0x05852485,
0x830e1121, 0x82082063, 0x050826cb, 0x100a0c0a, 0x210f8210, 0x00820b09, 0x040b0522, 0xdd820582, 0x090e0b2b, 0x060f0d0f, 0x0b0a0c0c, 0x22ca820a,
0x820c0b06, 0x0e0e2133, 0x62830c82, 0x0a060e22, 0x24098743, 0x060a0b09, 0x28268209, 0x0b0c0a09, 0x0b090a09, 0x242f840d, 0x0a0e0b0a, 0x2a5b820d,
0x11050606, 0x0b0b0d12, 0x830b0c0e, 0x821020e9, 0x0d0b231c, 0x4a820e11, 0x0e325a82, 0x120c0e0a, 0x0c100c12, 0x0a0c140c, 0x0b070a0a, 0x87430e0a,
0x09092109, 0x0b2d4082, 0x0d11110b, 0x0f090a0f, 0x070b0a0a, 0x09874309, 0x11080a23, 0x8201830e, 0x13133035, 0x04030308, 0x07070703, 0x0f070808,
0x43080417, 0x0f260887, 0x0e0e130a, 0x00820e0c, 0x87437f82, 0x0c0c2309, 0x3445050b, 0x06062606, 0x0a130a06, 0x08874313, 0x0513132f, 0x100a0b03,
0x0a0c1111, 0x1208060f, 0x20a08312, 0x82008300, 0x130b26f5, 0x110b0c0f, 0x2603820e, 0x130d0e0f, 0x82080a11, 0x0b0a2157, 0x16250182, 0x120b0e14,
0x221d820f, 0x820b0c09, 0x12132200, 0x2905820e, 0x07090b0b, 0x0e100a0c, 0xe782080a, 0x090b092e, 0x0b0e0b0d, 0x10140c0f, 0x090c0c0e, 0x25069841,
0x0d0d100a, 0x17840c0b, 0x060c0f25, 0x820d0e10, 0x820e20ef, 0x2361820e, 0x0a0c060e, 0x10213d82, 0x2077820a, 0x2145840e, 0x1a83090a, 0x11828f82,
0x4a090c21, 0x0c280527, 0x10070a0b, 0x0b07090f, 0x0b32cd82, 0x1111110b, 0x13090b0f, 0x0e111410, 0x0a0c0d0a, 0xc5460d08, 0x06624208, 0x87430f88,
0x92598513, 0x820b2005, 0x4c0c2077, 0x0e210504, 0x4339850c, 0x0a380d87, 0x18140006, 0x050a000c, 0x0b0d0805, 0x06050e11, 0x050b0b06, 0x0b070506,
0x05210088, 0x380a8205, 0x0c0d1109, 0x0a0b0e0c, 0x06070d0e, 0x0e110a0b, 0x0c100c10, 0x0c0d0b0b, 0x201b8212, 0x2e128206, 0x0c0b0c08, 0x070a0c09,
0x05050c0b, 0x8213050a, 0x080c280d, 0x0a0c0709, 0x820a0a0f, 0x0b0721e1, 0x0b3b4484, 0x110c090b, 0x060b0a07, 0x0b090a11, 0x0c0c0707, 0x0704050d,
0x0f0f0a07, 0x840d090f, 0x82112000, 0x820b2053, 0x07072419, 0x83100e0e, 0x100b2100, 0x0b211783, 0x2217840c, 0x43110b0b, 0x0b200887, 0x1a821186,
0x01450c20, 0x0b0d2107, 0x25058543, 0x0c0e090c, 0x64410c0e, 0x21058305, 0x01850b0e, 0x0d0c0d25, 0x8705070c, 0x0a0d2601, 0x0a0b0506, 0x0a87430a,
0x23052741, 0x0b100c0e, 0x12230183, 0x83080c12, 0x081c4c01, 0x820b0721, 0x09d44401, 0x0f20fb82, 0x1e855d82, 0x0d0b0631, 0x1011110b, 0x0c090b0b,
0x050c0b0c, 0x820c040c, 0x050d2900, 0x11090f0d, 0x0d06110d, 0x0b2a1382, 0x07100d0b, 0x0e110c0b, 0x0e82100b, 0x0f0b0b24, 0x0f830f0b, 0x060c0822,
0x0b2f2982, 0x0c09080b, 0x0a0a060b, 0x0b090a0c, 0x82090c0d, 0x0a0d2446, 0x82060f0f, 0x820f2037, 0x0b0c2bbc, 0x13060707, 0x0c0b0e13, 0x5f820d0d,
0x0b276a82, 0x0d0b0e0e, 0x83100d11, 0x0f0c2d0e, 0x130d0d0b, 0x0c100d13, 0x0b0c150d, 0x2d084a82, 0x080f0a0b, 0x0b0a0c0c, 0x0c0b0c0e, 0x0a09090c,
0x0c0c0a0f, 0x100e1111, 0x0b11090b, 0x09080c0a, 0x05050509, 0x0a0c1111, 0x08090c0a, 0x01830f12, 0x0a0a0b26, 0x04081414, 0x08390082, 0x0a0a0808,
0x05170f08, 0x0a060608, 0x0b0b0703, 0x0a100b0f, 0x0c100f14, 0x2200820f, 0x820e0c0c, 0x080e2160, 0x0b216482, 0x23b6820b, 0x0a0a0a05, 0x0806c652,
0x0a140a21, 0x03050714, 0x0204050b, 0x14140000, 0x0b0c0405, 0x0d131111, 0x0807100b, 0x0b101212, 0x83000d0f, 0x0e0b2400, 0x82130c0a, 0x0e123db4,
0x0f120b0d, 0x11130d0f, 0x0f0f080b, 0x0a0c0b10, 0x15180a0c, 0x10120c10, 0x090c1013, 0x0c24b683, 0x0c0e1314, 0x0a270083, 0x110a0c08, 0x82080b0f,
0x0b0a2e78, 0x0d0c0d0a, 0x150e0f0c, 0x0c0c0f11, 0x053b5209, 0x1d820b20, 0x830d0d21, 0x0d102717, 0x11070d10, 0x7a460d0f, 0x0e112208, 0x240c8307,
0x0a0b1111, 0x8301820f, 0x090b2245, 0x41c3820e, 0x0d2105e0, 0x05594309, 0x0b0c0d25, 0x83101008, 0x0a0b2567, 0x12120c0c, 0x09282782, 0x12131113,
0x0e0e0b0f, 0x4905c255, 0x0b890b04, 0x85096042, 0x05072309, 0x59850507, 0xb7840591, 0x860f0d21, 0x482f8501, 0x00200522, 0x043c0082, 0x0b0c0404,
0x1a150007, 0x050b000d, 0x0c0e0806, 0x06040f11, 0x060c0c06, 0x0c080607, 0x11830088, 0x12090c22, 0x0e2cec82, 0x0f0e0a0b, 0x0a0c0608, 0x0c0f0f12,
0x0a2df082, 0x0b130c0f, 0x08060b0c, 0x0c090b06, 0x20d5820b, 0x0887430b, 0x08273d82, 0x0b0c0709, 0x820b0b10, 0x0c072206, 0x82568205, 0x0c0a2713,
0x0c0a0711, 0x2f821107, 0x0c070725, 0x43060e0c, 0x12220d87, 0x00820b0d, 0x00820820, 0x840f0e21, 0x850c2000, 0x430c2005, 0x12210675, 0x211e820a,
0x0082050b, 0x02894b82, 0x0b0c0b22, 0x20061e41, 0x05fb460a, 0x0e0c0e22, 0x2f833186, 0x21058543, 0xb3820b0e, 0xf5540c20, 0x24058305, 0x05060b0d,
0x0b87430c, 0x0f221e83, 0x06850e0c, 0x1422d982, 0x0183080d, 0x23056843, 0x070a090b, 0x1d870183, 0x13220783, 0x79820c10, 0x20830920, 0x0d0c0627,
0x0f12120b, 0x21d7820c, 0x87430c0c, 0x0d062908, 0x0e100a10, 0x0d0d0611, 0x0b272782, 0x0c080f0f, 0x820f120d, 0x0b0c2607, 0x0b100c0a, 0x250f8210,
0x060c090c, 0x1e820c0c, 0x0c090925, 0x820a060c, 0x0c0a2426, 0x820a0c0d, 0x820f2016, 0x201a821f, 0x822f820c, 0x080829dc, 0x0f141306, 0x0d0f0c0c,
0x0e222c82, 0x4483120b, 0x0f120e27, 0x0d0c0f0f, 0x284a820a, 0x14140e0f, 0x0d0d110e, 0x24498215, 0x0b0c080b, 0x214d820f, 0x2f820c0a, 0x0a0c0c26,
0x0b0f0b09, 0x2d068743, 0x0b0b120a, 0x090a080c, 0x11050505, 0x6d820c12, 0x13080a23, 0x25018310, 0x150b0b0c, 0x87430915, 0x12092308, 0x87430419,
0x0c0c2a05, 0x0b110c10, 0x0d0f1115, 0x20008210, 0x8352840c, 0x0c0c21b6, 0x0c225382, 0x34450b05, 0x07220805, 0x150b0707, 0x0507150b, 0x04060c04,
0x15000002, 0x0d040515, 0x1312110c, 0x07100b0d, 0x0f131308, 0x8743100c, 0x318a8206, 0x0c0d1114, 0x0b0d0f13, 0x0d0e0f12, 0x090b1114, 0xa7821010,
0x0b0c0b28, 0x0d10161a, 0x1d821113, 0x0c0d0a22, 0x15220082, 0x05821014, 0x0820bf82, 0x0b352a83, 0x0c0b0d09, 0x0e0a0c0a, 0x110c0f0d, 0x1012160e,
0x0a0a0d0d, 0x23848209, 0x110b0b0b, 0x0e204882, 0x11249982, 0x080e110e, 0x0b205582, 0x0f250c83, 0x120c0e0c, 0x823b820f, 0x0b12233d, 0x01820f0b,
0x0b0f1225, 0x410a0b09, 0x0d2309c0, 0x830b0c0a, 0x0c0e2601, 0x1011080b, 0x202b820a, 0x29d4820b, 0x10121212, 0x12140a0c, 0x42821215, 0x090b0e24,
0x85430c0e, 0x460d2015, 0x088708a7, 0x08050823, 0x915d8905, 0x05024c09, 0x77850583, 0x2a0d8743, 0x1600070a, 0x0b000d1a, 0x83080606, 0x070422b9,
0x15874307, 0x0e0d132e, 0x0b0c0f0d, 0x06080f0f, 0x10130b0d, 0xde824e83, 0x0c130d38, 0x08070c0c, 0x0d090c07, 0x0d0a0d0c, 0x0d0b070c, 0x060b0606,
0x00820d14, 0x070a092e, 0x0b100b0d, 0x0c080a0b, 0x06060c08, 0x0c3a2882, 0x120d0b0c, 0x070c0b07, 0x0c090b12, 0x0d0d0707, 0x0705060e, 0x10100b08,
0x2f820910, 0x13210282, 0x2025830d, 0x20008208, 0x8214820f, 0x100c2202, 0x2100820f, 0x17840d0c, 0x120c0c23, 0x201f830a, 0x85008206, 0x8374822f,
0x08014508, 0x24058543, 0x0d0f0a0d, 0x8331860f, 0x0b0f212f, 0x15820186, 0x21085b63, 0x93820d06, 0x0b0b0d22, 0x23058c51, 0x060b070b, 0x20052741,
0x2506850f, 0x15140d10, 0x0183090d, 0x2008f644, 0x20248207, 0x07d24407, 0x13240783, 0x0c0b0c10, 0x2a055345, 0x0c0d0c06, 0x0d101213, 0x820d0a0b,
0x0d062293, 0x2a9f8404, 0x0a110d06, 0x07110f11, 0x820c0e0d, 0x100f248e, 0x820d0d08, 0x0f102233, 0x2537820d, 0x10100c10, 0xb0820c08, 0xf7820720,
0x0a0d0b27, 0x070d0d0a, 0x22c8820b, 0x840e0d0a, 0x831f83c5, 0x0c102c1a, 0x0b0d0c0f, 0x14060808, 0x820d0f15, 0x224b82c0, 0x82120c0e, 0x0f0d233c,
0x4a820f13, 0x0d0b0d22, 0x0f362282, 0x120f1616, 0x0d170d0e, 0x090c0d0c, 0x0a100c0c, 0x0c0b0d0d, 0x00820d10, 0x0b0a0a38, 0x0d0d0b10, 0x110e1414,
0x0c130a0c, 0x0a090d0c, 0x0606060a, 0xfb821312, 0x090a0d22, 0x08088743, 0x09161620, 0x04050404, 0x0b080808, 0x1a12080b, 0x07070804, 0x0c08030b,
0x120c110c, 0x1011160b, 0x0082110e, 0x7f820d20, 0x430c0c21, 0x5a820587, 0x43060c21, 0x16240a87, 0x0607160b, 0x34068743, 0x04061616, 0x13120c0d,
0x110c0d14, 0x14140907, 0x0e100d10, 0x27008300, 0x0d0c100c, 0x0d0e1116, 0x0c2b1182, 0x0e0e1113, 0x0a0c1214, 0x82101010, 0x0b0d29ac, 0x0e11171a,
0x12161115, 0x0c20fd82, 0x16215c82, 0x22be8415, 0x82090b0d, 0x0c1022ee, 0x050f430a, 0x81820e20, 0x170f1128, 0x0d0e1013, 0x214a0b0a, 0x120b2205,
0x0594410f, 0x120e1228, 0x1012080e, 0x01820c0f, 0x9f410d20, 0x0d082605, 0x130c0d0c, 0x82b38212, 0x82122014, 0x206e8245, 0x07e0410d, 0x0b216882,
0x3e01820d, 0x090c0d0f, 0x090b1112, 0x0b0c0c0d, 0x13140d0d, 0x0b0d1114, 0x13161216, 0x0f0f0d10, 0x4d0f0a0c, 0x0a4908d5, 0x200b830b, 0x22008e0c,
0x42080608, 0x71430643, 0x83098709, 0x0e10218e, 0x87430187, 0x059a4405, 0x00820020, 0x0505053a, 0x00070b0d, 0x000e1c17, 0x0806060c, 0x10130d0f,
0x0d070704, 0x0607060d, 0x20061843, 0x2100820d, 0x04820606, 0x0e140a38, 0x0c100e0e, 0x0810100b, 0x140b0d06, 0x110d1111, 0x100c0c0e, 0xbd82140d,
0x43090721, 0x0b2b0587, 0x0c080c0d, 0x0b06060e, 0x820e1406, 0x0a092532, 0x110b0e08, 0x20058743, 0x2044840d, 0x35e8820d, 0x0d0b0813, 0x0a0c1307,
0x0d08080d, 0x05060f0e, 0x110b0808, 0x074e1111, 0x140e2105, 0x0c225382, 0x0082080c, 0xf07d1020, 0x110d2205, 0x21008210, 0x17840d0c, 0x130c0c23,
0x0887430b, 0x61820e20, 0x0e200283, 0x0b230082, 0x4a0e0b0d, 0x814a0554, 0x41fe8306, 0x10210925, 0x2201860c, 0x430e100e, 0x0e200987, 0x240c8743,
0x11060b08, 0x2001830e, 0x20048210, 0x24dd820d, 0x0e15140d, 0x4c018309, 0x08210816, 0x4101820c, 0x1023094c, 0x4311140e, 0x07200887, 0x1423a182,
0x820d1113, 0x0d0d22d7, 0x0687430d, 0x0e060e32, 0x0f120b12, 0x0e0e0812, 0x0c0c0d0c, 0x0d081110, 0x11213383, 0x3c0c8210, 0x120d120c, 0x0d0c0811,
0x0e080e0a, 0x0d0b0e0d, 0x0d0e0a0a, 0x0e0c0b08, 0x0f0d0b0b, 0x250e820d, 0x110c100e, 0x1a820810, 0x0e2bba83, 0x0608080c, 0x0d101615, 0x820e100d,
0x820f2068, 0x1111273c, 0x10140f0d, 0x0e821011, 0x0d120d2b, 0x16160f10, 0x0e0e130f, 0x24688218, 0x0c0d090d, 0x05b74a10, 0x0d372c82, 0x100b0a0b,
0x140d0e0b, 0x0d121014, 0x0c0c130b, 0x0a0b090e, 0x82060606, 0x0b0b26dd, 0x14090b0e, 0x82018311, 0x171721c7, 0x36078743, 0x120a0a0a, 0x0808041b,
0x08030b08, 0x0d110d0d, 0x12170c12, 0x82110e11, 0x217f8400, 0x1b42100d, 0x0e0e2405, 0x410c060d, 0x2b8205ac, 0x0c170c35, 0x04060817, 0x0205060d,
0x17170000, 0x0c0e0406, 0x82141412, 0x09082804, 0x0d111515, 0x83000f11, 0x110c3400, 0x12160e0c, 0x10150d0e, 0x11140c0e, 0x13160e10, 0x82120b0d,
0x0b0d2fca, 0x181c0b0d, 0x12150f12, 0x0b0e1316, 0x00820d0e, 0x11161722, 0x0b270784, 0x120d0e09, 0x820b0d10, 0x302482d9, 0x0e100d0f, 0x14181012,
0x0b0e0e11, 0x0b0c0a0c, 0x2313820c, 0x0e0f1013, 0x13261783, 0x080f130f, 0xf2421012, 0x0d0f2607, 0x0e081114, 0x8268820c, 0x0c1023f5, 0x45830c10,
0x820b0d21, 0x820e20c9, 0x110d238f, 0x3b820e0d, 0x21078743, 0xf9461213, 0x140d2c06, 0x0e131514, 0x1714160c, 0x820d1115, 0x0f0b224b, 0x9343830d,
0x0e864303, 0x06080c24, 0x59850608, 0x10250591, 0x110e100e, 0x4301870f, 0x0c231387, 0x43180008, 0x0a210587, 0x24b98210, 0x0d070705, 0x4350820d,
0x20081087, 0x0e0f0f15, 0x110c0d10, 0x0e070911, 0x1212150c, 0x0d0e120e, 0x150e110d, 0x070d0d0d, 0x0a0d0709, 0x2ad7820e, 0x0d080d0e, 0x0c06060e,
0x820e1606, 0x0b0a2b00, 0x120c0e08, 0x090b0c0c, 0x8743090d, 0x0c0d3a06, 0x0c08140e, 0x0c14080d, 0x08080d0a, 0x06100e0e, 0x0c080805, 0x0a121212,
0x2100840f, 0x4e820e14, 0x82090d21, 0x12102100, 0x0d220084, 0x00821112, 0x840e0d21, 0x0d0d2317, 0x18440b14, 0x06062105, 0x02835f82, 0x2205ce51,
0x450c0e0c, 0x814a0512, 0x43f68307, 0x068206a7, 0x24081641, 0x090e110e, 0x27018706, 0x06070c0f, 0x0c0c0c0e, 0x0382ae82, 0x060c0822, 0x1222d283,
0x0685100e, 0x150e1223, 0x056e4f16, 0x21089648, 0x01820d08, 0x43821120, 0x15240387, 0x0d0c0d12, 0x07291e85, 0x140d0f0d, 0x0d0e1214, 0x24aa820b,
0x040e060e, 0x3300820e, 0x120e060f, 0x1310130b, 0x0d0f0f08, 0x110d0d0e, 0x0f0e0912, 0x12213382, 0x260c8211, 0x130d130d, 0x820d0912, 0x820820b0,
0x0e0c2d29, 0x0e0e0b0b, 0x0e0c0c08, 0x0f0e0b0c, 0x1023c584, 0x8312120d, 0x0d12351a, 0x0d0e0d11, 0x16070909, 0x0e0e1117, 0x0f0e0f11, 0x140d100d,
0x0e341c82, 0x12111510, 0x0d0e0e11, 0x110d130e, 0x10171710, 0x190e0f14, 0x0d290d82, 0x100d0d0a, 0x0c0e0e0b, 0x281c820d, 0x0a0b0e0e, 0x0e0c100c,
0x0587430e, 0x0d0d1426, 0x0b0b0a0e, 0x83058743, 0x150a226d, 0x08018312, 0x0c0c0d23, 0x040a1818, 0x09040504, 0x0b0b0909, 0x051c120a, 0x0c08080a,
0x0d0d0803, 0x0c130d12, 0x0f121318, 0x82008212, 0x22ba827f, 0x820d0911, 0x430f2000, 0x18220e87, 0x8743180c, 0x18183108, 0x0d0e0406, 0x0f161514,
0x0a08130d, 0x0e121616, 0x82068743, 0x170e334d, 0x150e0f13, 0x150d0f11, 0x170e1112, 0x130b0d14, 0xac821212, 0x1c0c0e32, 0x160f1319, 0x0e131713,
0x0e0d0f0b, 0x17180e0e, 0x07821682, 0x0f0a0c26, 0x0d10140d, 0x2b060f43, 0x0e110e10, 0x15191012, 0x0b0e0f12, 0x0c21e882, 0x2301820d, 0x0e101114,
0x13291783, 0x090f130f, 0x0d101014, 0x22f98210, 0x82100e11, 0x0f092265, 0x823d820d, 0x0d1122f5, 0x21458411, 0xde410b0d, 0x455d8207, 0x103906bc,
0x140a0d0e, 0x0e0a0c12, 0x0e0c0d0d, 0x1515150e, 0x170c0d13, 0x11151814, 0x21a5820e, 0xd54d100b, 0x0b0a4908, 0x60420b83, 0x22098509, 0x42090609,
0x63890643, 0x4b820987, 0x470a8743, 0x22480559, 0x82002005, 0x05052600, 0x080d0e05, 0x20008200, 0x22038603, 0x8401001c, 0x0024220e, 0x24098303,
0x04002e05, 0x08208303, 0x800092a0, 0x12000600, 0x61017e00, 0x92017f01, 0xb001a101, 0xff01f001, 0xbc021b02, 0xc902c702, 0xf302dd02, 0x03030103,
0x0f030903, 0x8a032303, 0xa1038c03, 0xd203ce03, 0x0d04d603, 0x5f044f04, 0x91048604, 0x011e1305, 0x851e3f1e, 0xf91ef11e, 0x0b204d1f, 0x1e201520,
0x26202220, 0x33203020, 0x3c203a20, 0x7f204420, 0xa720a420, 0x0521ac20, 0x16211321, 0x26212221, 0x5e212e21, 0x06220222, 0x12220f22, 0x1e221a22,
0x48222b22, 0x65226022, 0x04fbca25, 0xfdfffffe, 0x0000ffff, 0xa0002000, 0x93826201, 0xaf01a022, 0xfa229382, 0x93821802, 0x9382c620, 0x9382d820,
0x93880020, 0x93828420, 0xa3038e24, 0x9382d103, 0x0e040034, 0x60045004, 0x92048804, 0x3e1e001e, 0xa01e801e, 0x9382f21e, 0x13200026, 0x20201720,
0x32229384, 0x93863920, 0x9382a320, 0x938cab20, 0x93865b20, 0x938a1120, 0x93826420, 0x93820120, 0xfffffc32, 0xc2ffe3ff, 0xb0ff0000, 0xb200bf00,
0x49ff6100, 0x26080b82, 0xfe85fe96, 0xff76fe84, 0xff63ff68, 0x005dff62, 0xfd44ff67, 0xfdcffdd0, 0xfecdfdce, 0x007ffe82, 0x009afd00, 0x820cfe00,
0x09550803, 0x18e458e4, 0x7de47ae3, 0x0de30000, 0xefe142e2, 0xede1eee1, 0xe1e1eae1, 0xdbe1e0e1, 0xd3e1dae1, 0x76e199e1, 0x000074e1, 0x0be118e1,
0xfee009e1, 0xf4e0fbe0, 0x25e0c8e0, 0x1ae022e0, 0x12e019e0, 0x03e00fe0, 0xd0dfe7df, 0x69dccddf, 0x4f030000, 0x01005302, 0x20008300, 0x8604838e,
0x86be2003, 0x20069907, 0x201a82a4, 0x200382bc, 0x870382d8, 0x87e02002, 0x20079408, 0x8f1594d2, 0x85b02014, 0x03b30810, 0x01840383, 0x01270126,
0x01290128, 0x012b012a, 0x012d012c, 0x012f012e, 0x01310130, 0x01330132, 0x01350134, 0x01370136, 0x01390138, 0x013b013a, 0x013d013c, 0x013f013e,
0x01410140, 0x014a0149, 0x02250124, 0x019c0168, 0x019e019d, 0x01a0019f, 0x01a201a1, 0x01a401a3, 0x01a601a5, 0x026902a7, 0x01ea016a, 0x01ec01eb,
0x01ee01ed, 0x01f001ef, 0x01f201f1, 0x01f401f3, 0x016b02f5, 0x02f701f6, 0x02940293, 0x02960295, 0x02980297, 0x019a0299, 0x02f901f8, 0x03010200,
0x0370036f, 0x03720371, 0x03740373, 0x021c0275, 0x02350234, 0x005e025d, 0x830a0206, 0x000121b9, 0x83064d41, 0x2203850c, 0x82020001, 0x210b8301,
0x009d0002, 0x08058741, 0x040003bc, 0x06000500, 0x08000700, 0x0a000900, 0x0c000b00, 0x0e000d00, 0x10000f00, 0x12001100, 0x14001300, 0x16001500,
0x18001700, 0x1a001900, 0x1c001b00, 0x1e001d00, 0x20001f00, 0x22002100, 0x24002300, 0x26002500, 0x28002700, 0x2a002900, 0x2c002b00, 0x2e002d00,
0x30002f00, 0x32003100, 0x34003300, 0x36003500, 0x38003700, 0x3a003900, 0x3c003b00, 0x3e003d00, 0x40003f00, 0x42004100, 0x44004300, 0x46004500,
0x48004700, 0x4a004900, 0x4c004b00, 0x4e004d00, 0x50004f00, 0x52005100, 0x54005300, 0x56005500, 0x58005700, 0x5a005900, 0x5c005b00, 0x5e005d00,
0x60005f00, 0xe0826100, 0x0086de08, 0x00890087, 0x0093008b, 0x009e0098, 0x00a200a3, 0x00a600a4, 0x00a700a5, 0x00ab00a9, 0x00ac00aa, 0x00af00ad,
0x00b000ae, 0x00b300b1, 0x00b400b5, 0x00b800b6, 0x00bc00b7, 0x00bd00bb, 0x000d02be, 0x00640072, 0x02690065, 0x0078000f, 0x007000a1, 0x0020026b,
0x026a0076, 0x00880030, 0x002d029a, 0x02310273, 0x00670032, 0x02270277, 0x0129022a, 0x002e028d, 0x027c006c, 0x00a80021, 0x008100ba, 0x026e0063,
0x0242012c, 0x0028022f, 0x027d006d, 0x00620010, 0x00850082, 0x01140197, 0x02020215, 0x020a0203, 0x0206020b, 0x02b90007, 0x01c10033, 0x0217023a,
0x0214021c, 0x02340215, 0x000e0235, 0x02080279, 0x0011020c, 0x008c0084, 0x008d0083, 0x008f008a, 0x00910090, 0x0095008e, 0x3ce18296, 0x009c0094,
0x009b009d, 0x014b01f3, 0x01710052, 0x014f014e, 0x017a0050, 0x01510153, 0x1105104c, 0x57080803, 0x59454000, 0x53545558, 0x4f505152, 0x4b4c4d4e,
0x4748494a, 0x43444546, 0x3f404142, 0x3b3c3d3e, 0x3738393a, 0x30313536, 0x2c2d2e2f, 0x25262728, 0x21222324, 0x1114181f, 0x0d0e0f10, 0x08090a0b,
0x04050607, 0x00010203, 0x4623452c, 0x26b02060, 0x2604b060, 0x2d484823, 0x23210f83, 0x20108261, 0x22108a61, 0x8220b060, 0x8d462012, 0x20b02123,
0x61203783, 0x298c1a82, 0x29824020, 0x298e6620, 0x29854020, 0x53884020, 0x20100135, 0x2d3c003c, 0x2345202c, 0x44cdb020, 0x01b82023, 0x8258515a,
0x448d260b, 0xb0205923, 0x200b84ed, 0x210b844d, 0x0c842604, 0x0c820d20, 0x82212121, 0x20230831, 0x44681845, 0x6001b020, 0x46b04520, 0x458a6876,
0x2c2d4460, 0x0a0bb101, 0x65432343, 0x002c2d0a, 0x820b0ab1, 0x820b200a, 0x28b02809, 0x01b17023, 0x84013e28, 0x28022808, 0x02b13a45, 0x820d0800,
0xb0453644, 0x61452503, 0x5150b064, 0x1b444558, 0x2d592121, 0x0eb0492c, 0x82498223, 0x43002155, 0xb0245284, 0x07b04306, 0x20225284, 0xba82b069,
0x208b0037, 0x8ac02cb1, 0x0010b88c, 0x0c2b6062, 0x61642364, 0x03b0585c, 0x3c3b8261, 0x8a45038a, 0x11b0878a, 0x2329b02b, 0x7a29b044, 0x2c2d18e4,
0x2cb06545, 0xb0454423, 0x2155832b, 0x6788524b, 0x72894b20, 0x05b00129, 0x20231025, 0x8200f58a, 0xed2322ce, 0x8ac782ec, 0x86612011, 0x25062411,
0x8300f510, 0x4624081c, 0x8a604623, 0x2023468a, 0x8a608a46, 0x80ffb861, 0x10202362, 0x0cb18a23, 0x45708a0c, 0x00b02060, 0x01b05850, 0xba2c1782,
0x46b01b8b, 0x10b0598c, 0x3a016860, 0x462eec86, 0x13b04b52, 0xb0585b51, 0x20462502, 0xfe826168, 0x3f260282, 0x1b382123, 0xc0821121, 0x0322f582,
0x3f824625, 0x002b1e95, 0xb04307b0, 0x2d0b4306, 0x8321212c, 0xb88b24f8, 0x82620040, 0x80b0230c, 0x0f855851, 0x6200202c, 0x4000b21b, 0xb0592b2f,
0x19836002, 0x1987c020, 0x83551521, 0x87802019, 0x083e8819, 0x2123602d, 0x534b2c2d, 0x04b08a58, 0x23644925, 0x40b06945, 0x80b0618b, 0x6120b062,
0x230eb06a, 0xb0102344, 0x211bf60e, 0x11128a23, 0x822f3920, 0x202b82a3, 0x28b48220, 0x20696449, 0xb02605b0, 0x8b358306, 0x04b02230, 0x20328326,
0x2104828a, 0x3b824423, 0xb0234483, 0x821bed0e, 0x11262560, 0x23392012, 0x47834682, 0x45234523, 0x22028660, 0x82186876, 0x2d203071, 0x2b48b02c,
0x45202c2d, 0x585400b0, 0x824440b0, 0x61402108, 0x23061642, 0x2f30b145, 0x61263182, 0x6001b060, 0xb1824469, 0xb0585129, 0xb070232f, 0x42422314,
0x4b220537, 0x96835851, 0x53694523, 0x85328458, 0xb0452715, 0x00b04314, 0x35866360, 0x452fb022, 0x45253b82, 0x8a452023, 0x20088460, 0x33068345,
0x5851234b, 0xff3300b9, 0x2034b1e0, 0x0033b31b, 0x44590034, 0x2c081d82, 0x584316b0, 0x452603b0, 0x6664588a, 0x1b601fb0, 0x6020b064, 0x1b582066,
0x5940b021, 0x596101b0, 0x59655823, 0x442329b0, 0x29b01023, 0x236e82e0, 0x59212121, 0x022bc282, 0x4b585443, 0x514b2353, 0x8238585a, 0x84592015,
0x83188319, 0x2504224e, 0x22468e45, 0x851b5823, 0x05b03046, 0x2508b025, 0x02582008, 0xb059031b, 0x82102504, 0x46202110, 0x23220882, 0x05823c42,
0x2507b023, 0x23038208, 0x2506b010, 0xd1821584, 0x20241882, 0x001b0158, 0x86822d87, 0x2029b025, 0x86446545, 0x8c0f8327, 0x230c8254, 0x48432503,
0x06244d87, 0x2503b025, 0x43244782, 0x59211b48, 0x0283bd82, 0x022c2d22, 0x20201e82, 0x23216284, 0x20828242, 0x21238208, 0x1a874845, 0x20250322,
0x08221e82, 0x468202b0, 0x24081382, 0x23452c2d, 0x20184520, 0x205000b0, 0x23652358, 0x20682359, 0x585040b0, 0x5940b021, 0x59655823, 0x2d44608a,
0x060c412c, 0x82452021, 0x0595410d, 0x58544b22, 0x2c410d8b, 0x2c2d240a, 0x822100b0, 0x8538201e, 0x02b02728, 0xb0585443, 0x43412b46, 0x200f8408,
0x410f8447, 0xb021076b, 0x201e8e48, 0x820f8449, 0x8a202b1e, 0x534b2308, 0x5a514b8a, 0x50862358, 0xb9820020, 0x00b04924, 0xa6825853, 0x82113821,
0x2c2d2ef6, 0x46234601, 0x61462360, 0x20102023, 0x05cf4346, 0x40b18a35, 0x45708a40, 0x2d3a6860, 0x238a202c, 0x238a6449, 0x843c5853, 0x524b262d,
0x7a1b7d58, 0x08a78259, 0x4b00122a, 0x42544b01, 0x02b12c2d, 0x23b14200, 0xb1518801, 0x53880140, 0x10b9585a, 0x88200000, 0x02b25854, 0x60430201,
0x24b15942, 0x58251b82, 0x000020b9, 0x20158440, 0x83158302, 0x20228314, 0x830c8320, 0x82522049, 0x8408202f, 0xb91b252f, 0x80000040, 0x04202a84,
0x0f841084, 0x01b86323, 0x85138400, 0x24138224, 0xb8630001, 0x20138502, 0x20278710, 0x20138202, 0x20138504, 0x20138440, 0x38008259, 0x18452c2d,
0x514b2368, 0x45202358, 0x40b06420, 0x597c5850, 0x59608a68, 0x24c58244, 0x02b01600, 0x37028225, 0x2301b001, 0x02b0003e, 0x01b13e23, 0xb00c0602,
0x4265230a, 0x42230bb0, 0x3f201783, 0x3f201783, 0x06201785, 0x07311783, 0x01b04223, 0x2c2d0116, 0x45108a7a, 0x2d18f523, 0x08db8200, 0xf809105c,
0x8f1fff03, 0x02f79ff7, 0x6001f37f, 0xffb801f2, 0xeb2b40e8, 0xdf46100c, 0xde55dd33, 0x3055dcff, 0x01dd01dd, 0x03dc5503, 0xc2301ffa, 0xefc06f01,
0xb6fc02c0, 0xb7301f18, 0x80b76001, 0xffb802b7, 0xb73840c0, 0xe746130f, 0xaf1f01b1, 0xaf3faf2f, 0x5faf4f03, 0x03af6faf, 0x1582af40, 0x51ac3a08,
0x9c1f1f18, 0xe0029c5f, 0x2b03019b, 0x9a1f019a, 0xa09a9001, 0x9a73029a, 0x05029a83, 0x40eaffb8, 0x0b099a19, 0xbf97af46, 0x2b030297, 0x961f0196,
0xaf969f01, 0x967c0296, 0x211d8401, 0x1d829685, 0x922f5908, 0x924f923f, 0x0c924003, 0x912f460f, 0x01919f01, 0x1f188687, 0x7c507c40, 0x74100302,
0x74307420, 0x01740203, 0x0a0174f2, 0x6fff016f, 0x016fa901, 0x75016f97, 0x026f856f, 0x0a016f4b, 0x6eff016e, 0x016ea901, 0x4b016e97, 0x1a06016e,
0x19551801, 0x071fff13, 0x061fff04, 0x2308fb82, 0x1f01673f, 0x3f672f67, 0x0467ff67, 0x66506640, 0x66b066a0, 0x01653f04, 0x65af650f, 0x64a00502,
0x030264e0, 0x4e08e483, 0x0a06644f, 0x2b5f6146, 0x475f601f, 0x22505f1f, 0x015bf71f, 0x54015bec, 0x025b845b, 0x3b015b49, 0x5af9015b, 0x015aef01,
0x4b015a6b, 0x5a3b015a, 0x33130601, 0x01055512, 0x33045503, 0x031f5503, 0x3f030f01, 0x0303af03, 0x571f570f, 0x8303572f, 0x56b32b53, 0xb8461512,
0x56b3e0ff, 0x07820b07, 0x54b3c022, 0x87080f84, 0x546d40c0, 0x52460b06, 0x3f1f2b50, 0x5f504f50, 0x48fa0350, 0x0148ef01, 0x65014887, 0x48560148,
0x01483a01, 0xef0147fa, 0x47870147, 0x01473b01, 0xff1b1c06, 0x1533161f, 0x0f011155, 0x0f331055, 0x00010255, 0x00470155, 0x2bfafb55, 0x121bfa1f,
0x010f0f1f, 0x0fcf0f1f, 0xff0f0f02, 0x6f06020f, 0xaf007f00, 0x0400ef00, 0x80010010, 0x01050116, 0xb19001b8, 0x2b2b5354, 0xff07b84b, 0x06b04b52,
0x01b05b50, 0x5325b088, 0x22080583, 0xb05a5140, 0x00b08806, 0x585b5a55, 0x8e0101b1, 0x8d8d8559, 0x4b1d4200, 0x585332b0, 0x591d60b0, 0x8264b04b,
0x83402008, 0x82802008, 0x1d102d08, 0x420016b1, 0x5e737359, 0x2b757473, 0x01220086, 0x0088735f, 0x2b730023, 0x24168301, 0x7300735f, 0x8c088274,
0x210f831b, 0x3b835f2b, 0x74737323, 0x200d8200, 0x201e852b, 0x203e8474, 0x20318274, 0x20108274, 0x2207822b, 0x8201732b, 0x74732428, 0x85735f74,
0x82002007, 0x2b012763, 0x74732b00, 0x05837301, 0x06822b20, 0x2b2b7322, 0x01210282, 0x343d822b, 0x5e182b00, 0x0b001406, 0xb6054e00, 0x75001700,
0xcd05b605, 0x29008c00, 0x14004a04, 0x00008f00, 0x1683ecff, 0xfe220589, 0x1083fe14, 0x082103c8, 0x24008400, 0x00b600ac, 0x200982bc, 0x830382d5,
0x00552c02, 0x00970083, 0x007d009f, 0x82ae00e5, 0x00712201, 0x23168371, 0xc500ba00, 0x0a830382, 0x1d82a420, 0x08838c20, 0x82c70021, 0x827d2001,
0x860c8429, 0x00b02404, 0x848a00b9, 0x009b220b, 0x20c782a6, 0x850b8477, 0x85962004, 0x29058406, 0x006e0069, 0x00b40090, 0x798700c1, 0x6600002e,
0x78006f00, 0xc0009600, 0x4701d500, 0x00242584, 0x3a01fe00, 0x78207982, 0x16220782, 0x1386f601, 0xee20068f, 0x96221082, 0xad828800, 0x89009633,
0x96000c01, 0x00001801, 0x94001d03, 0x82005a02, 0x21758303, 0xb18400a8, 0x00790231, 0x01b400d9, 0x0100000a, 0x006d0083, 0x82a0007f, 0x82002039,
0x84882009, 0x20048b07, 0x221b8493, 0x89890082, 0xb6052914, 0x110094fc, 0x8300efff, 0x1683d782, 0x7b006d22, 0x03860683, 0xaa01bc24, 0x0b845403,
0xb600bc26, 0x9501d701, 0x96300b82, 0xae000001, 0xbcfeb605, 0x83fe6ffe, 0xad026f00, 0x2a211382, 0x08018500, 0xa1006fba, 0xe2012901, 0x29037102,
0x7c034d03, 0xe203ac03, 0x44040f04, 0x95045b04, 0x0605b404, 0x94053f05, 0x65061206, 0x3f07cc06, 0x11086707, 0xda088208, 0x79093d09, 0xf709bb09,
0x340b6a0a, 0x170ca00b, 0xb30c740c, 0x390dec0c, 0xcd0d970d, 0x490e100e, 0xb70e970e, 0x7c0f2b0f, 0x2210d50f, 0xf7108610, 0xa2116111, 0x3312e011,
0x4813e912, 0xcc139913, 0x1214f213, 0x54143614, 0x90146b14, 0x64150315, 0x0916a915, 0xc9166616, 0xde179d17, 0x5a180f18, 0xc318aa18, 0x72193419,
0x1d1abb19, 0xc41a7e1a, 0x891b341b, 0x221cca1b, 0x601dcf1c, 0x161ec91d, 0x941e701e, 0x431ff01e, 0xbc0b0182, 0x20ef1f8b, 0x21fc2065, 0x229f216f,
0x239c2258, 0x24af2345, 0x24302403, 0x25072538, 0x2579251e, 0x260526b5, 0x269f267a, 0x272627e9, 0x27a62760, 0x282528dd, 0x289e2875, 0x29f228c3,
0x29802968, 0x29af2997, 0x2adf29c6, 0x2a6d2a04, 0x2a982a80, 0x2ac72aaf, 0x2bf82ae0, 0x2b262b0f, 0x2ba32b3f, 0x2bd22bba, 0x2c002ce9, 0x2c312c18,
0x2d172d96, 0x2d462d2f, 0x2d772d5e, 0x2ed82d8e, 0x2e8a2e73, 0x2eb62ea0, 0x2ee42ecc, 0x2fac2ffc, 0x2fd62fbf, 0x300230ec, 0x3032301a, 0x30603049,
0x31093179, 0x3136311f, 0x3163314c, 0x3293317a, 0x327d3204, 0x32aa3294, 0x32d932c0, 0x335433ef, 0x3384336c, 0x33b1339a, 0x33de33c7, 0x341234fb,
0x3441342a, 0x34703459, 0x34a03489, 0x34d034b8, 0x35eb34e3, 0x357b3564, 0x35a83591, 0x35d535be, 0x360036ec, 0x36383621, 0x3665364e, 0x3692367b,
0x36c036a9, 0x37eb36d8, 0x37193701, 0x37873736, 0x38f937e2, 0x38273810, 0x3855383e, 0x387f386c, 0x38aa3893, 0x39ec38c3, 0x39273910, 0x3951393e,
0x39ad3964, 0x39e239c5, 0x3a093af5, 0x3a393a21, 0x3a6f3a4c, 0x3b093bbc, 0x3b363b20, 0x3b5d3b4a, 0x3b8b3b74, 0x3c0e3cad, 0x3c7e3c67, 0x3cab3c94,
0x3cdb3cc2, 0x3d643df3, 0x3e0a3ef2, 0x3e333e20, 0x3e5f3e47, 0x3e8e3e77, 0x3ebb3ea4, 0x3ee53ed1, 0x3f0f3ff8, 0x3f383f25, 0x3f633f4c, 0x40cc3f75,
0x404e4036, 0x407c4064, 0x40a94092, 0x40d840bf, 0x410941f0, 0x41344121, 0x415e4147, 0x418c4175, 0x41bb41a2, 0x41e841d2, 0x421642ff, 0x4243422d,
0x43da4276, 0x449144bc, 0x44c044a9, 0x45ed44d7, 0x45134500, 0x457f4549, 0x45d24597, 0x464946f9, 0x47bd4676, 0x472d4700, 0x47b7479e, 0x481648f1,
0x487d483c, 0x49e248ae, 0x4923490a, 0x4933492b, 0x49b14965, 0x49c149b9, 0x4a384ac9, 0x4a484a40, 0x4a9c4a94, 0x4af14aa4, 0x4b244bf9, 0x4b744b2c,
0x4c844b7c, 0x4c1b4c13, 0x4d0b4d89, 0x4d3d4d24, 0x4d694d53, 0x4d974d7f, 0x4e1e4eac, 0x4fff4ea0, 0x50035087, 0x51a95069, 0x5159511b, 0x52dd5161,
0x536d522b, 0x5315530d, 0x54c35369, 0x548b5432, 0x551755d5, 0x56295695, 0x5714578a, 0x5746572d, 0x5772575c, 0x58a95790, 0x583a5823, 0x58ad58a5,
0x58ce58b5, 0x596d59d6, 0x5a2a5acc, 0x5a585a41, 0x5aa95aa1, 0x5b045bfc, 0x5b7f5b0c, 0x5c145c87, 0x5df65c97, 0x5d565d0e, 0x5dc25dba, 0x5dd25dca,
0x5de25dda, 0x5ef25dea, 0x5e6a5e62, 0x5ea75e72, 0x5f365fee, 0x60e25f8c, 0x60866038, 0x616061e9, 0x62e561dd, 0x62d26260, 0x636063fa, 0x64dd6368,
0x649f645b, 0x65f064b6, 0x65a0653b, 0x66ee65e6, 0x661f6617, 0x66666627, 0x66eb666e, 0x672d67f3, 0x68b8676d, 0x686e6811, 0x691a69d0, 0x6af76983,
0x6a666a4e, 0x6beb6ad5, 0x6b4f6b47, 0x6b706b57, 0x6cf06b78, 0x6ca96c4f, 0x6dd56cbf, 0x6d4f6d1a, 0x6d926d7a, 0x6dc06da9, 0x6ef16dd7, 0x6e236e0b,
0x6e566e3b, 0x6e8c6e71, 0x6fe06eb5, 0x6f3f6f0c, 0x70c96f6d, 0x708f7025, 0x717071ea, 0x735872b3, 0x732d7325, 0x73687335, 0x73af739d, 0x741074cd,
0x75f2746b, 0x7610767c, 0x773c77be, 0x787978f2, 0x79e47881, 0x793c790d, 0x7a96796b, 0x7a5d7a10, 0x7ad67a8c, 0x7b287bfc, 0x7c157cc4, 0x7d167d9e,
0x7d9f7d5b, 0x7e0a7eeb, 0x7e6b7e28, 0x7ec47e9e, 0x7f0e7fe9, 0x7f9a7f51, 0x805680f7, 0x81228185, 0x0a01998c, 0x83d68286, 0x83558349, 0x8406845d,
0x851f8583, 0x854d8536, 0x85758561, 0x86ef85a2, 0x866f8642, 0x8710879b, 0x88d68777, 0x885e8839, 0x89ca8883, 0x89298909, 0x89598941, 0x8a878970,
0x8bdf8a24, 0x8cd58b60, 0x8db78c46, 0x8ece8d3b, 0x8f128f66, 0x915790b3, 0x92b59105, 0x938e939f, 0x949e9396, 0x946b940b, 0x953395cb, 0x9667954d,
0x963d9627, 0x984197c3, 0x992e9945, 0x9be19af4, 0x9c929b43, 0x9c969c51, 0x9d089dd9, 0x9e189e39, 0x9f5c9fb6, 0xa03fa0e4, 0xa11fa1a3, 0xa20ca2ad,
0xa3caa25c, 0xa4cca32e, 0xa497a481, 0xa521a5ad, 0xa6faa58c, 0xa7d3a66d, 0xa789a73f, 0xa829a8db, 0xa9cba882, 0xa984a919, 0xaba8aaf7, 0xab66ab52,
0xacc9ab7a, 0xac20ac18, 0xadf4ac83, 0xae0aae63, 0xaf31afca, 0xb0eeaf8f, 0xb1b1b04a, 0xb162b114, 0xb22ab2a8, 0xb347b3ba, 0xb4e9b3e1, 0xb417b400,
0xb5f4b485, 0xb6bfb567, 0xb672b611, 0xb712b7b9, 0xb8b8b76c, 0xb8bcb83c, 0xb8dbb8c4, 0xb90ab9f1, 0xb92ab922, 0xb949b932, 0xbac5b95f, 0xba3dba23,
0xba6fba56, 0xbaa3ba89, 0xbb27bbbd, 0xbba7bb8f, 0xbbd8bbbe, 0xbc0abcf1, 0xbc2bbc23, 0xbc4cbc33, 0xbc7ebc64, 0xbcb0bc98, 0xbce0bcc6, 0xbd11bdf8,
0xbd42bd29, 0xbda1bd5a, 0xbef5bddc, 0xbe20be0e, 0xbe4bbe32, 0xbfe2be61, 0xbfdfbf95, 0xc061c0e7, 0xc286c1ed, 0xc39dc218, 0xc4b6c323, 0xc47fc423,
0xc54ac5e6, 0xc621c6c6, 0xc700c782, 0xc798c784, 0xc7c3c7ac, 0xc8f1c7da, 0xc822c808, 0xc855c83b, 0xc888c86e, 0xc8bbc8a1, 0xc9f8c8d4, 0xc932c919,
0xc964c94b, 0xc996c97d, 0xc9c8c9af, 0xca03cae1, 0xca3bca24, 0xca69ca52, 0xca98ca80, 0xcac8caae, 0xcbfbcae1, 0xcb2ecb14, 0xcb61cb47, 0xcb9ecb7a,
0xcbd6cbbf, 0xcc05cced, 0xcc34cc1d, 0xcc63cc4c, 0xcc93cc7a, 0xccc6ccad, 0xcdf9cce0, 0xcd2ccd13, 0xcd68cd46, 0xcda3cd8c, 0xcdd2cdba, 0xce01cee9,
0xce31ce19, 0xce60ce48, 0xce8fce78, 0xcebecea7, 0xcfedced5, 0xcf1acf02, 0xcf45cf2f, 0xcf73cf5b, 0xcfa0cf88, 0xcfd0cfb8, 0xd0fdcfe6, 0xd02bd014,
0xd055d041, 0xd1f1d098, 0xd2b5d146, 0xd275d22a, 0xd324d3c3, 0xd3bad38d, 0xd40ad4e2, 0xd492d47f, 0x000200a6, 0x040000c1, 0x00b6050a, 0x00070003,
0x050b402b, 0x04090202, 0x03800370, 0x2705e94a, 0x48090609, 0x07030403, 0x3f331e82, 0x01332f32, 0x335d2b2f, 0x332f3311, 0x21133031, 0x82372111,
0x03c13003, 0x68b7fc49, 0x87fd7902, 0x4afab605, 0x82e60468, 0xff932453, 0x849101e3, 0x17300853, 0x00b93a00, 0x40f0ff01, 0x48140a13, 0x19801910,
0x19a01990, 0x9a0e0304, 0x04020204, 0x40c0ffb8, 0x480a070a, 0x9b090104, 0x00030213, 0xcef52f3f, 0x48086182, 0xe1102f33, 0x30315d32, 0x0323012b,
0x3e340333, 0x1e323302, 0x0e141502, 0x2e222302, 0x79500102, 0x14f0df33, 0x1a1b2e22, 0x1414222f, 0x1b1a2f22, 0x0114222e, 0xfa18049e, 0x213526b9,
0x35210f0f, 0x22352526, 0x35221010, 0x24898200, 0x02a60385, 0x3e8984b2, 0x40370007, 0x07980423, 0x09d00907, 0x2f0209e0, 0x7f096f09, 0x98000309,
0x03100300, 0x82f003e0, 0x020624e4, 0x82030702, 0x82332085, 0x2f0130df, 0x5d5de15d, 0xe12f3912, 0x03013031, 0x82210323, 0x4a012f03, 0x02297329,
0x2972292d, 0xf0fdb605, 0x03831002, 0x33246383, 0xf8040000, 0x70086382, 0x001f001b, 0x03584099, 0x181a1a03, 0x071d1e16, 0x17170604, 0x01001906,
0xb1050404, 0x15211818, 0x04081c1f, 0x12141409, 0x040b0e0f, 0x500ab113, 0x10100110, 0x50090c0c, 0x1c0a010a, 0x010d4801, 0x080cae0d, 0x001f0c04,
0x1911ae10, 0x113f1115, 0x11df114f, 0x0c110c03, 0x13170511, 0x00050a06, 0x333f332f, 0x2f393912, 0x33115d2f, 0x32e11033, 0x22068432, 0x8232325d,
0x2db383ac, 0xe4105d2f, 0x11323917, 0x11391712, 0x0a832f33, 0x0b863320, 0x832f3321, 0x152121c5, 0x1320c582, 0x35230384, 0x82211321, 0x03332303,
0x03821321, 0x82011521, 0x0331080e, 0x18013fd7, 0x9352cdfe, 0x52ddfe54, 0xfefe4e90, 0xfe411d01, 0x522b01ee, 0x25015293, 0x01549054, 0x01ebfc06,
0xddfe4023, 0xb8fe7d03, 0x0154fe89, 0x270383ac, 0x89480189, 0x50feb001, 0x80080383, 0x01b8fe89, 0x00030048, 0x0389ff7b, 0x001206d9, 0x0036002d,
0x40b4003f, 0x292f3433, 0x212f2901, 0x70062101, 0x3c013c2f, 0x1e011e2f, 0x01072013, 0x2e0d0707, 0x000f246e, 0xff02001f, 0x00000100, 0x41000701,
0x6e370d0d, 0x190119e0, 0x40c0ffb8, 0x480b0830, 0x14143319, 0x133c3c29, 0x3d08372e, 0x25217328, 0x0e401f21, 0x1f1f4811, 0x0121501e, 0x211f210f,
0x34210802, 0x0e087313, 0x05060608, 0x33348208, 0x480d0ab3, 0x2b2f0008, 0x112f3333, 0x32e11033, 0x5d5d5e2f, 0x2b200b82, 0x12320c84, 0x39123939,
0x11333311, 0x2b2f0133, 0x2f33e15d, 0x1e82d610, 0xe1327125, 0x822f3911, 0x335d2525, 0x5d32e15d, 0x28080182, 0x14013031, 0x1507020e, 0x2e223523,
0x1e352702, 0x2e113303, 0x3e343503, 0x33353702, 0x17161615, 0x27262607, 0x07031e11, 0x081d8234, 0x363611d8, 0x021e1401, 0x06061117, 0x5d32d903,
0x328a5485, 0x20546066, 0x65605721, 0x5683592f, 0x815b312a, 0xa9648a4f, 0x8c384243, 0x5b87584a, 0x2b14b02e, 0x5b5d3346, 0x281112fe, 0x53593142,
0x7246be01, 0xe60c3754, 0x1a1209dd, 0x2110ac11, 0xb201111a, 0x6e55421e, 0x536f434a, 0xb0b40935, 0x911f2a05, 0xfe062919, 0x53421f5a, 0x3721486b,
0xfe12262d, 0x02620e8b, 0x2f3924a3, 0x71011126, 0x00005910, 0xff660005, 0x053306ec, 0x000900cb, 0x0027001d, 0x003f003b, 0x103cb25d, 0xf0ffb83e,
0x3e3c3340, 0x14283e3c, 0xb532b41e, 0x4128b423, 0x0501410f, 0x00b50ab4, 0x201410b4, 0x03143014, 0x3e063f14, 0x37b62518, 0x2db621b7, 0x0fb60319,
0x19b607b7, 0xe13f0007, 0x0384e1f4, 0x2f013f23, 0x220b825d, 0x82de105d, 0x12113505, 0x2f2f3939, 0x30313838, 0x33161413, 0x23101132, 0x14050622,
0x20059643, 0x06a64335, 0x19990120, 0x0123013d, 0x9c5047fa, 0x0147509c, 0x734a24c7, 0x4c70494f, 0x71492326, 0x4d714b4e, 0x86ac0127, 0x23c62119,
0x4a221982, 0x19864b70, 0x274c2708, 0xd5fc00ff, 0x042c039e, 0x01a5a502, 0xa348014a, 0x76ac6ca5, 0xac763f3f, 0x75aa6c6c, 0xaa753e3e, 0xa4a54afd,
0x18844901, 0x1883ab20, 0x1887ab20, 0x92035608, 0xb6054afa, 0x00030000, 0x05ecff6d, 0x00cd057d, 0x00210011, 0x40800053, 0x1718274d, 0x2c49044a,
0x470a4849, 0x42474136, 0x36014220, 0x1d423642, 0x473c3b05, 0x47004804, 0x2c102c00, 0x2c2c0802, 0x01482022, 0x481d5548, 0x22202210, 0x41412202,
0x4f511231, 0x323b8416, 0x3b3c470f, 0x49310405, 0x31500f15, 0x3fe12f00, 0x82391712, 0xe13f2b02, 0x012f3911, 0x10e15d2f, 0x09825dc6, 0xe15d5e23,
0x2b178211, 0x2f2f3939, 0x10e1105d, 0x113311e1, 0x31382482, 0x1e140130, 0x033e1702, 0x022e3435, 0x13062223, 0x37023e32, 0x15030e01, 0x25211582,
0x420b8234, 0xf2440569, 0x07620807, 0x37033e01, 0x07030e33, 0x0e272301, 0x2e222303, 0x10a60102, 0x3b243421, 0x191c3856, 0x562a422f, 0x623a8764,
0xfe204854, 0x3750347d, 0x6042231c, 0x4d287dfe, 0x3c1f476f, 0x5e321c2d, 0x8353588a, 0x5432305b, 0x60013c6d, 0x1b222b1b, 0x290fb80a, 0x01274135,
0x31a8e115, 0x4e7c6c60, 0x3d73a769, 0xd9828d04, 0x25436608, 0x46403e23, 0x2c3d2429, 0xaffb5919, 0x1f362817, 0x3f219701, 0x36385548, 0xf024415b,
0x56647a4e, 0x574d242a, 0x774b3963, 0x532b2b53, 0x6d404b77, 0xfe244f5d, 0x443c1d8c, 0x6f422f4e, 0xfe295562, 0x472dacdb, 0x67351b31, 0x00010095,
0x01a60385, 0x00b6054a, 0x402a0003, 0xd005c01c, 0x0305e005, 0x056f052f, 0x0b6c4502, 0x03020227, 0x333f0003, 0x0568452f, 0x23056445, 0x73294a01,
0x20065b45, 0x24478200, 0x02bcfe52, 0x2a47822b, 0x401a0013, 0xf20e060d, 0x823ff009, 0xf90e2615, 0x3f00f805, 0x0837833f, 0x3132e438, 0x3e341330,
0x06333702, 0x1e141502, 0x2e231702, 0x4a245203, 0x8cac4e71, 0x6a472591, 0x714eaa45, 0x3102244a, 0xd3e5f37d, 0x32fec15d, 0xe2ec77f4, 0xce5a5ed4,
0x5d83f0e1, 0x5d823d20, 0x5d841720, 0x0e401c22, 0x0b225d82, 0x5d82b0f0, 0xf80e1524, 0x5e83f905, 0x5dde1023, 0x3f5f83e1, 0x020e1401, 0x033e2307,
0x27023435, 0x02031e33, 0x714b2417, 0x6a45aa4e, 0x8d902448, 0x4b714eac, 0x7c315f82, 0x5acee1f0, 0xece2d45e, 0xce01f477, 0xe5d35dc1, 0x2ebd84f3,
0x14047702, 0x0e001406, 0x15402400, 0x8201101f, 0x800e39fc, 0x030e900e, 0x061f0e08, 0x00060601, 0x323f0000, 0x2f015d2f, 0x5de55d5e, 0x3708ff83,
0x13051725, 0x27030307, 0x05372513, 0x2b980203, 0xfe1a8d01, 0xb0b2f586, 0xfef2b89e, 0x87011d89, 0xfe14062b, 0x1cc16f77, 0x0160bafe, 0x609afe66,
0xc11c4601, 0x0089016f, 0x3008b582, 0x04060166, 0x00a20402, 0x4029000b, 0x010d1018, 0x03aa0906, 0x200100ef, 0xa0006000, 0x09000300, 0x0306ad00,
0x333f00b3, 0x2f0132e1, 0xe1325d5d, 0x08708332, 0x21352120, 0x21113311, 0x23112115, 0x7dfee901, 0x01968301, 0x967dfe83, 0x01968702, 0x967bfe85,
0x59837ffe, 0xf8fe3f30, 0xee007901, 0x38000c00, 0x0ecf1440, 0xc1821001, 0x0ea02108, 0x2b0c1b03, 0x010c020c, 0xb8070697, 0x0d40c0ff, 0x5f481410,
0x07100107, 0x9c060701, 0xed2f000c, 0x2b256583, 0x5d32ed33, 0x0868825d, 0x0e172522, 0x3e230703, 0x6a013703, 0x2f270e0f, 0x0f8a1933, 0x08161b1d,
0x7a3617ee, 0x3d387b7c, 0x357d8384, 0x52266983, 0x4202d101, 0xae827902, 0x09401525, 0x82400502, 0xb90025d6, 0xe12f0001, 0x102e4c82, 0x133031ce,
0x52152135, 0xd101f001, 0x1a82a8a8, 0xff932708, 0x009101e3, 0x001300fa, 0x801b4035, 0xa0159015, 0x15110315, 0xc0960a01, 0x0200d000, 0x00440034,
0x00740064, 0x9e820004, 0x0a07b627, 0x9b050048, 0x2397840f, 0xed5d5d2b, 0x37209483, 0x200e5648, 0x0f514893, 0x4c486f20, 0x0001280f, 0x02000014,
0x82b605e7, 0xb11e26a1, 0xffb80201, 0x25a782f0, 0x00100003, 0x12820105, 0x112f3f38, 0x32383301, 0x3133382f, 0x23010130, 0xfde70201, 0x2102b3e0,
0x8544b605, 0x00022805, 0x04ecff62, 0x82cd0508, 0x00273db1, 0x1e154026, 0x1029006f, 0x6f140129, 0x0a010a20, 0x070f7323, 0x19057319, 0x3fe13f00,
0xe124ef83, 0xe1de105d, 0x14394782, 0x23060602, 0x02262622, 0x36123435, 0x16323336, 0x14051216, 0x3233021e, 0x0811823e, 0x23022e53, 0x04020e22,
0xb2713308, 0x73af767f, 0xb16f3339, 0x74b0777e, 0x1e13fd3a, 0x4d4d6b42, 0x1f1f456c, 0x4d4d6c45, 0x021e426b, 0xe8feb1dd, 0xc26666c2, 0xb1b11801,
0x66c11801, 0xe8fec165, 0x95e096b2, 0xe1944a4b, 0x94e09697, 0xe0944a4a, 0x00010000, 0x20e182b2, 0x08e182c7, 0x35001066, 0x12402140, 0x0e010f01,
0xbf6e000e, 0x0201ff01, 0x0001017e, 0x20011001, 0x04014001, 0x0f0d0106, 0x00180006, 0x01cd3f3f, 0x5d5d5e2f, 0x2f33e15d, 0x315d3311, 0x11232130,
0x37023e34, 0x0707030e, 0x02330127, 0x0301b0c7, 0x1a110103, 0x94151e1b, 0x967f0160, 0x622b9103, 0x12225961, 0x121b181a, 0x2b017b79, 0x2b087182,
0x03000060, 0x00cb05f0, 0x403c0023, 0x6f082320, 0x10251b1b, 0x6f220125, 0x11012101, 0x01012011, 0x10220801, 0x0716730d, 0x01742202, 0xe1297082,
0x33e13f32, 0x2f013912, 0x2771835d, 0x115ded10, 0x33e12f33, 0x21227882, 0x52450135, 0x27072308, 0x3f45033e, 0x154c0809, 0xfcf00321, 0x4b5e0170,
0x222c5376, 0x5f35563f, 0x28664599, 0x41766a5c, 0x3b6c9b60, 0x4b815d35, 0xb102e7fe, 0x517d019c, 0x4c818086, 0x203f5a3b, 0x24773c4d, 0x361b2e3f,
0x555b9165, 0x5196959a, 0x0008d5fe, 0x52000100, 0xee03ecff, 0x4008a982, 0x405d0039, 0x2130210b, 0x6f1a1230, 0x006f2709, 0x40c0ffb8, 0x48171428,
0x3b090000, 0x4f013b20, 0x06120112, 0x21ab7320, 0x01217901, 0x0801210b, 0x2f152121, 0x0735732c, 0x0e127315, 0x333f0019, 0x41c184e1, 0xc8830536,
0xce105d2d, 0xe12b2f32, 0x3911e110, 0x482f2f39, 0x1621077a, 0x05f04a16, 0x35272624, 0xef411616, 0x35232108, 0x22210a88, 0x08e68706, 0x2ec103a6,
0xb1477453, 0xca8441b8, 0x55c16d8a, 0x5c5dcb57, 0x35295786, 0x85598d62, 0x557e5185, 0x5c42242c, 0x4aa36b38, 0x6e5d265c, 0xa36c467d, 0x6004386e,
0x39587849, 0xb516060c, 0x74a06091, 0xaa2d2240, 0x4a28322e, 0x6144436c, 0x28971e3f, 0x343d664a, 0x431e3952, 0x361f7d36, 0x61361829, 0x00020085,
0x04000017, 0x00be053f, 0x0018000a, 0x092c404e, 0x00010056, 0x116e0200, 0x20070b0c, 0x03030103, 0x011a101a, 0x18871877, 0x055f1802, 0x06090501,
0x05017418, 0x07110205, 0x00180206, 0x12333f3f, 0xe1332f39, 0x2105a64a, 0x0c825d5d, 0x82335d21, 0x32e12400, 0x82325d2f, 0x234608ee, 0x21112311,
0x11330135, 0x34112133, 0x2337023e, 0x0107030e, 0xb0d53f04, 0x97025dfd, 0x7bfed5bc, 0x01050403, 0x19150709, 0x65fe0b1a, 0xb8fe4801, 0x039f4801,
0x0130fcd7, 0x757b3864, 0x31142266, 0xfd102e31, 0x918200a0, 0xecff8328, 0xb605f603, 0xa3822a00, 0x26182e08, 0x2c056f1a, 0x27012c10, 0x68282424,
0x23590123, 0xf0232301, 0xb80f010f, 0x1240c0ff, 0x0f480b08, 0x0000731d, 0x24742715, 0x10731506, 0x0698410a, 0xe1279b82, 0x5d2b2f01, 0x825d2f33,
0x331126a3, 0xe1de105d, 0x4ca38233, 0x27230a7f, 0x41031e35, 0x95080584, 0x0e222326, 0x13270702, 0x03211521, 0x21023636, 0x487fab63, 0x80c58644,
0x525b6333, 0x62592121, 0x7c4f2a63, 0xa8b02e56, 0x393f3f1b, 0x02375a15, 0x27ecfdb2, 0x81036920, 0x69a06c37, 0x437eb672, 0x141e130a, 0x182417ac,
0x764e250d, 0x05978f51, 0x39040908, 0xfea6b002, 0x000e065d, 0x71000200, 0x0a04ecff, 0x2b00cb05, 0x37003f00, 0x6e312040, 0x1041220c, 0x3b170141,
0x1000006f, 0x03002000, 0x1d753600, 0x732c071d, 0x73101927, 0x3f000707, 0x11e13fe1, 0xbf822f39, 0x32e15d22, 0x3228b882, 0x133031e1, 0x33043e34,
0x1722bc82, 0xad832615, 0x33070422, 0x24091943, 0x022e2223, 0x0a484401, 0x14158808, 0x1571021e, 0xc68e5c35, 0x2f2e1385, 0x5823112b, 0x64895a2b,
0x03142a43, 0x4c39140c, 0x9a5f3b5f, 0x743e3b6c, 0xaf6466a4, 0xdb014a80, 0x2748633c, 0x42634221, 0x2b4e6f43, 0x026e4925, 0xbfd06971, 0x024579a4,
0x9b050705, 0x4e2b0c0c, 0x5094836c, 0x1a2d3f24, 0x6aa5723b, 0x447fb672, 0xfef2a04e, 0x7f5329b9, 0x4e6f4657, 0x604b2f2a, 0x6a854330, 0x00010043,
0x0400005a, 0x00b60506, 0xb12b0006, 0xffb80006, 0x821140f0, 0x05012afc, 0x01081008, 0x74020502, 0x05674403, 0x0132e127, 0xce105d2f, 0x08e08232,
0x31333880, 0x21012130, 0x01152135, 0x33021901, 0xac030efd, 0x1005d5fd, 0xdbfa91a6, 0x6a000300, 0x0004ecff, 0x2700cd05, 0x4a003a00, 0x53408000,
0x6e32231e, 0x48280a0f, 0xd305c36e, 0x05b50205, 0x0f050501, 0x014c104c, 0x3e196e28, 0x0123d56e, 0xba0123cc, 0x23230123, 0x19201910, 0x1e0a1902,
0x38983868, 0x01385902, 0x38383828, 0x38033848, 0x26014393, 0x02435643, 0x2d004343, 0x3b191473, 0x6a410073, 0x5d5d2708, 0x5d5d5dc1, 0x9a823939,
0x822f3321, 0x10e12209, 0x82a383e1, 0x12e1260a, 0x11e11039, 0x09394239, 0x031e0722, 0x2205cf43, 0x4935022e, 0x032009e4, 0x270acb45, 0x06062727,
0x15062201, 0x08071c4a, 0x350226b7, 0x42719554, 0x38604628, 0x35576f3a, 0x66a97943, 0x3d75ab6e, 0x3a684c2d, 0x253f5631, 0xc7957243, 0x48684420,
0x24486b46, 0x3f664927, 0x01807e1e, 0x237d6a16, 0x3033573e, 0x7e243f55, 0x582ccd05, 0x6c435884, 0x1f1c4557, 0x49765f4c, 0x3868955c, 0x5c926536,
0x4a60784b, 0x5a491f1c, 0x8357426d, 0xa6fb2c58, 0x233f5935, 0x385c4123, 0x40485434, 0x9b3c0e1f, 0x656a5403, 0x33405239, 0x42341618, 0x6a653654,
0x00020000, 0x04ecff6a, 0x00cb0504, 0x003d0029, 0x391e4035, 0x3f006f15, 0x2f013f10, 0x20100c6e, 0x20022020, 0x1b1b7534, 0x25732a07, 0x07751007,
0x0b87421a, 0x5de13330, 0x32e1de10, 0x14013031, 0x2223040e, 0xcc44022e, 0x23372107, 0x4c05cb4a, 0x22220835, 0xf983020e, 0x23055843, 0x0404022e,
0x3e078842, 0x23112c2e, 0xae872b58, 0x0d052b66, 0x604c3814, 0x6c9a5f3b, 0xa5733f3b, 0x80ae6566, 0x4225fe4a, 0x443c0786, 0x252b4e6e, 0x46036e49,
0xa5bed169, 0x05024578, 0x0d9c0506, 0xd6a15e0c, 0x2e3e2477, 0x29058442, 0x4e447fb7, 0x4701f3a0, 0x84425428, 0x426b210b, 0x933be183, 0x9101e3ff,
0x13006604, 0x3e002700, 0x29101c40, 0x29902980, 0x1e0429a0, 0x4814960a, 0x40291150, 0x480a070b, 0x199b2300, 0x05554810, 0x01ed3f2c, 0x5d5d2b2f,
0x5d32e533, 0x58483031, 0x4811200f, 0x78481f68, 0x9103361f, 0x0e213527, 0x2735210e, 0x10223425, 0x00342210, 0xfe3f0002, 0x08af84f8, 0x20000c2b,
0x2f406100, 0x22802210, 0x22a02290, 0xc0961704, 0x020dd00d, 0x0d740d64, 0x010d5002, 0x3b010d44, 0x0d1f010d, 0x0d020d2f, 0x0db2490d, 0xb2491120,
0x9b1c2309, 0xb6491012, 0x29c88305, 0x332b5d5d, 0x335d32ed, 0x00845d2f, 0xc049e520, 0x108b510b, 0x200cd049, 0x49c98f11, 0x02210be1, 0x08c58fed,
0x66000141, 0x0204ee00, 0x0600dd04, 0x30404e00, 0x08400800, 0x01014001, 0x05010201, 0x6f060305, 0x02007f00, 0x00010030, 0x03200400, 0x70035001,
0xd0038003, 0x0503f003, 0x0001033f, 0x03060103, 0x825e2f00, 0x337121a0, 0x3228a883, 0x2f3d3912, 0x18013333, 0x4e08b482, 0x3031ce10, 0x01350125,
0x04010115, 0x0364fc02, 0x0221fd9c, 0xa801eedf, 0xa0e10166, 0xbefe94fe, 0x66000200, 0x0204ba01, 0x0300e903, 0x5c000700, 0x02073d40, 0x01094009,
0x0100c604, 0xa90100bb, 0x00860100, 0x01007b01, 0x42010068, 0x82390100, 0xad043981, 0x052f051f, 0x01057f02, 0x05100500, 0x05050602, 0x01f0ad00,
0x6f010f01, 0x0020ab82, 0xe1217282, 0x228b8333, 0x4101e171, 0x5d260633, 0x105d335d, 0xb24a32ce, 0x35012605, 0x03661521, 0x2889839c, 0x95955403,
0x969666fe, 0x8c548200, 0x840520fb, 0x01062efb, 0x01040506, 0x6f000301, 0x02067f06, 0x210e8230, 0xfba10206, 0xfb8e3320, 0x84011321, 0x026624fc,
0x8320fde0, 0x8f012b76, 0x6c014201, 0x661ffea0, 0xfb8258fe, 0xff253108, 0x052503e3, 0x002700cb, 0x403e003b, 0x289a3221, 0x00462728, 0x460b1400,
0x3d2f3d1c, 0x170b1401, 0x0601000f, 0x9b2d0000, 0x51101337, 0x3f000417, 0xe521dd82, 0x21e08232, 0xdf823912, 0xe1de1025, 0x822f3911, 0x31e12812,
0x34350130, 0x4937023e, 0x36210a75, 0x08754936, 0x15030e23, 0x102d4215, 0x0f192008, 0x30324227, 0x1e152b44, 0x53385539, 0x513f4696, 0x955d61bc,
0x361b3868, 0x42343650, 0x42bb0e26, 0x26080f40, 0x39259e01, 0x2a4d505c, 0x4f454329, 0x394f3035, 0x9122341f, 0x60333b2a, 0x6943578b, 0x2d2f545a,
0x2c423f43, 0x4bd1fe12, 0x71080fa9, 0xff6d0002, 0x0581064a, 0x005700b6, 0x406f0068, 0x6017583f, 0x01171f27, 0x1701277f, 0x27464627, 0x314e0317,
0x00010020, 0x016a406a, 0x014e403b, 0x5b0c2c4e, 0x64120712, 0x1f120f1c, 0x0312bf12, 0x011c0006, 0x121c1207, 0x5336401c, 0x49454003, 0xc1332f00,
0x3912c13f, 0x5e2f2f39, 0x105d5e5d, 0x103311c1, 0x013232c1, 0x5dc15d2f, 0xc171de10, 0x19821711, 0x825d2f21, 0xc1102118, 0x440aeb44, 0x17250ee3,
0x14060603, 0x0be54414, 0x04222322, 0x2a05b74e, 0x023e3233, 0x06061537, 0x4b242223, 0x242805ea, 0x16043233, 0x16140112, 0xc5081984, 0x23262637,
0x06020e22, 0x39251381, 0x2d3a614c, 0x06213449, 0x47361204, 0x774d3559, 0x6f3b2b52, 0x5a2d629e, 0x17174552, 0x22150101, 0x462e172b, 0x9856182f,
0xfea97bd1, 0x4f5aaffe, 0x3d93e399, 0x2b646f77, 0xb382d856, 0x66c3e7fe, 0x3701db76, 0x06019cc1, 0x15fc6abf, 0x4e375565, 0x0e041a32, 0x4a2a4d1c,
0x021c3f65, 0x717d3edb, 0x1e294861, 0x25234132, 0x381c3142, 0x65568e65, 0x08447aa8, 0xfe08110e, 0x101b1660, 0x44350308, 0x683d0f28, 0xdd8e4e8c,
0xc76f4f98, 0x97a2effe, 0x0e52a0ea, 0x8d111f18, 0xc3662c26, 0xbcb31901, 0x88ee4501, 0xf1febd65, 0x7785d5fe, 0x4573532d, 0x3a0d08fd, 0x0000785e,
0x00820002, 0xdd047e08, 0x0700bc05, 0x84001400, 0x05062440, 0x46010246, 0x14020114, 0x01084903, 0x08010149, 0x0e0e0001, 0x10000003, 0x07800107,
0x07d00790, 0xffb80703, 0x061840c0, 0x1007480a, 0x0f160707, 0x2f161f16, 0x9f168f16, 0x0616df16, 0xb8040307, 0x1140f0ff, 0x0e5f0204, 0x480e0a20,
0x1414050e, 0x00040305, 0x323f0012, 0x122f393f, 0x01e12b39, 0x5e33382f, 0x2f33115d, 0x715d2b38, 0x39121133, 0x2416823d, 0x125d5d39, 0x08048239,
0x31333397, 0x21032130, 0x33012303, 0x2e030101, 0x030e2703, 0x1f040307, 0xa2dffda0, 0xaa1902bc, 0x67fe1a02, 0x12110694, 0x12070812, 0x91061112,
0x3bfec501, 0x44fabc05, 0xa8016a02, 0x413c3412, 0x3d421f1f, 0x58fe1133, 0x00030000, 0x040000c7, 0x00b60587, 0x00220017, 0x4062002f, 0x5a1e0b3e,
0xe5010605, 0x0206f506, 0x060106d6, 0x5b2a2406, 0x11801170, 0x31671102, 0x318f317f, 0x01311002, 0x175a2418, 0x230b3064, 0x01187960, 0x0801180b,
0x24001818, 0x22121760, 0x494f8260, 0x5e3b06c7, 0x39e15d5d, 0xe1f61001, 0x105d5d32, 0x12e15df6, 0x5d5d2f39, 0x3132e171, 0x4a211330, 0x0721068e,
0x06554815, 0x47132121, 0x26270538, 0x11112323, 0x4e3e3221, 0x7508051c, 0x808f01c7, 0x274283c3, 0x45456d4a, 0x41345a79, 0xfe6fb07b, 0x54f4ba1b,
0x9a1f4672, 0x0a01dfa6, 0x20497758, 0x5c7c4b21, 0x5727b605, 0x6c3e678d, 0x0a093752, 0x784f2d0c, 0x6d9d6456, 0x1e4a033a, 0x783b593b, 0xfd97fd68,
0x654828f0, 0x435e383d, 0x01000025, 0xecff7d00, 0xcb059804, 0x4c002300, 0x0eaf1440, 0x15400e01, 0x0e0e4818, 0x0120ba18, 0x20702060, 0xb3412002,
0x20203807, 0x0125af25, 0x66185b05, 0x5f002124, 0x0a0d041d, 0x0013135f, 0x8233e13f, 0x26d68302, 0x2f33115d, 0x825d5d2b, 0x5d2b24d6, 0x48013031,
0x36240800, 0x030e1537, 0x080cf34e, 0x2607176a, 0x6b190326, 0x3b437bae, 0x5976b076, 0x4e274ea0, 0xa43b6155, 0x574c9df0, 0x6ca2faa9, 0x3f4e4fc4,
0x51270594, 0x8d89da98, 0x234e96db, 0x170fa217, 0xc66c070e, 0xa6a91601, 0x6ec61401, 0x209c2a2c, 0x0002002e, 0x040000c7, 0x00b605fc, 0x0017000c,
0x0d154026, 0x1967005b, 0x14011910, 0x1864065a, 0x03076013, 0x12066014, 0x3f219f82, 0x229d84e1, 0x82e1f610, 0x02143495, 0x21230406, 0x16322111,
0x34071216, 0x2323022e, 0x82203311, 0x60300846, 0xa8f7feb6, 0x970192fe, 0x5faef899, 0xb87e42c5, 0x01a2c975, 0x020c0108, 0xe9feb9e9, 0xb6055ebb,
0xf4feb55c, 0x8ad592b6, 0x0189fb43, 0x01000024, 0x03217d83, 0x087d82be, 0x42000b29, 0x08142640, 0x01080801, 0x0d670004, 0x015a0a06, 0x5f090c64,
0x0f01064f, 0x0206af06, 0x0a060608, 0x03025f05, 0x85015f0a, 0x3912258c, 0x715d5e2f, 0x322a9384, 0x1132e610, 0x315d2f39, 0x92822130, 0x03861520,
0xfdbe0335, 0xfdf70209, 0xfd1702c3, 0x053d02e9, 0x3cfea4b6, 0x8af8fda2, 0x00092471, 0x82114070, 0x0f24086e, 0x03ff0103, 0x90038001, 0x0303d003,
0xc0ffb803, 0x0a073840, 0x0b030348, 0x0b2f0b0f, 0x0baf0b8f, 0x00060704, 0x0a238d82, 0x830f5f09, 0x063f348d, 0x06ff066f, 0x40060804, 0x06481d1a,
0x48151040, 0x83000606, 0x8200209b, 0xe13f2199, 0x2b219882, 0x209a882b, 0x06ce415e, 0x16827120, 0x23229f82, 0x9f852111, 0xba810122, 0x9a829c87,
0xa4fcfd23, 0x06434200, 0x05f22908, 0x002b00cb, 0x2b1e4037, 0x5a290c2b, 0x2d670214, 0x1f012d10, 0x2c660c5b, 0x00005f2b, 0x115f1a24, 0x075f2404,
0xe13f0013, 0xe1206a84, 0x29069441, 0x3911e132, 0x0130312f, 0x24421121, 0x3324280a, 0x07171632, 0x4223032e, 0x55080844, 0x1137023e, 0x010e0321,
0x767037e4, 0xf29d4b82, 0xb65f56a6, 0x6fab0b01, 0x244858cc, 0x2e5d5853, 0x427fbc7a, 0x86be7837, 0x373e492c, 0x03d5fe1a, 0x1233fd04, 0x690a131c,
0xae1701c3, 0xc31601ac, 0xa22a2c69, 0x0e171e11, 0x89da9851, 0x569cd882, 0x050b0805, 0xbb83b401, 0x00c72d08, 0x05d50400, 0x000b00b6, 0x0923403d,
0x65005a01, 0x010dc00d, 0x20010dbf, 0x0408010d, 0x0c64055a, 0x080f5f03, 0x08080801, 0x0503060a, 0x24058f44, 0x5e2f3933, 0x27c1845d, 0x5d5d5d32,
0x32e1f610, 0x3b052241, 0x33112311, 0x33112111, 0xfdbad504, 0x02baba66, 0xaa02ba9a, 0xb60556fd, 0x680298fd, 0x52246b83, 0x64020000, 0x3b086b84,
0x0b264057, 0x020d2b0d, 0x0d9b0d7b, 0x0dfb0dab, 0x010d5404, 0x0d3b0d2b, 0x1f030d4b, 0x0802010d, 0x055a0a0b, 0x0103c902, 0xf8ffb803, 0x100d1040,
0x01030048, 0x04090306, 0x0a030306, 0xc1258383, 0x32c13f32, 0x28858201, 0x32c15d2b, 0x5f32c1f1, 0x2000825d, 0x08858271, 0x37352127, 0x21352711,
0x17110715, 0xeefd6402, 0x1202acac, 0x2966acac, 0x66299804, 0x68fb2966, 0xff010029, 0x017bfe48, 0x08858273, 0x2f001324, 0x15df1c40, 0x70156001,
0x152f0215, 0x0c5a0f01, 0x0c000303, 0x07020c10, 0x07030d0c, 0x2f00005f, 0x63833fe1, 0x102f3323, 0x235e82e1, 0x22033031, 0x8209bd50, 0x142408e9,
0x331d020e, 0x4e221c4c, 0x3d4b252d, 0x693bbb26, 0x0d7bfe93, 0x0b09a00b, 0x44583213, 0x5efab605, 0x31659a69, 0x20076341, 0x377182a2, 0x4064000c,
0x660c022d, 0x000c010c, 0x0b100b0a, 0x0000010b, 0x07020010, 0x00290482, 0x010eb00e, 0x10010e2f, 0x0575410e, 0x10020d2b, 0x0848100b, 0x40f0ffb8,
0x3208820c, 0x0a050802, 0x05000306, 0x333f0012, 0x3912333f, 0x452b2b39, 0x5d27064a, 0x382f3311, 0x82335d5e, 0x11332205, 0x270d8239, 0x23213031,
0x23110701, 0x373fa082, 0x04013301, 0x3dfed3a2, 0x79baba8b, 0xfdd1c401, 0x72ba02f8, 0xb605b8fd, 0x02a825fd, 0x4383fd33, 0x05360bc7, 0x13402300,
0x07af0704, 0x01071001, 0x64005a03, 0x03030106, 0x7082005f, 0x833fe121, 0x845d206a, 0x8233205a, 0x15212555, 0x3d02bac7, 0xf021df82, 0x059543a6,
0x822f0621, 0x00193cdb, 0x3613408b, 0x00390119, 0x080e1701, 0x39480f0c, 0x110e010e, 0xffb8195a, 0x821c40f8, 0x0019210e, 0x00321483, 0x090c0d0d,
0x4f1b6510, 0x1b20011b, 0x011b0f01, 0x20830b08, 0x20821a20, 0x010b263a, 0x5a08020b, 0x181a6409, 0x09100101, 0x0e014812, 0x0c11030b, 0xb6f0ffb8,
0x0c210c82, 0x298a8308, 0x322b3232, 0x2b33333f, 0xfd843311, 0x2b5d3231, 0x5d5d5d5e, 0x3911f610, 0x2b331139, 0x82e12b33, 0x31323411, 0x215d5d30,
0x17162301, 0x11151616, 0x01211123, 0x82210133, 0x343b0807, 0x37363736, 0x23030123, 0x060845fe, 0xac050404, 0x9c011401, 0x019e0106, 0x0304ba14,
0xfe080304, 0x4a000541, 0x398b3f49, 0xb60596fc, 0xa80458fb, 0x77034afa, 0x473d8634, 0x8502fb49, 0x0e0521e7, 0x2d08e782, 0x40510017, 0x01280e29,
0x5a150101, 0xb0196500, 0x198f0119, 0x10190001, 0x0c270219, 0x09030c01, 0x18640a5a, 0x06100216, 0x0b024818, 0xbd830d03, 0x0d210a82, 0x20bd860a,
0x86a5823f, 0x82b884ba, 0x21af82b0, 0xae892321, 0x3301332e, 0x032e2726, 0x05331135, 0x31fdd70e, 0xd533aa85, 0x0307cc02, 0x03030104, 0xba04ae01,
0x8e414c4d, 0x82e7fc39, 0x4c4c32a4, 0x4343204a, 0x20031a3e, 0x00020000, 0x05ecff7d, 0x068f5571, 0x40342108, 0x005b1e20, 0x29c02967, 0x0129bf01,
0x2f012970, 0x02295f29, 0x660a5b14, 0x0f5f2328, 0x055f1904, 0x41058944, 0x5d2105d9, 0x081d465d, 0x081f9d55, 0x51710548, 0xa39beda0, 0x4c4c9def,
0x9ba3f09e, 0xfb51a0eb, 0xa56b34d1, 0x6ba57272, 0xa46a3232, 0x6ca67272, 0xa9dd0234, 0x6cc6eafe, 0x1701c66c, 0x1501aaaa, 0xc56b6bc4, 0x89abebfe,
0x515199db, 0x8a89db99, 0x515197da, 0xb183da97, 0x00c74108, 0x05330400, 0x000e00b6, 0x40460019, 0x285b152c, 0x48003800, 0x67000300, 0x011bcf1b,
0x0f011b40, 0x0f06011b, 0x64085a07, 0x30600f1a, 0x02064006, 0x19070606, 0x07030960, 0x3f3f0012, 0x2f3911e1, 0x42068544, 0x5d310505, 0x013031e1,
0x23020e14, 0x11231123, 0x021e3221, 0x08454801, 0x33043608, 0x98cf7e37, 0x6a01ba96, 0x3c7ec286, 0x5d814efd, 0xa42e5b8b, 0x0a04a0ae, 0x4d81a85b,
0xb605c7fd, 0xfea06d39, 0x71472067, 0x00898e51, 0xfe7d0002, 0x057105a4, 0x089782cd, 0x38002d2b, 0x5b242240, 0xc02f6700, 0x2fbf012f, 0x012f7001,
0x2f5f2f2f, 0x105b1a02, 0x5f292e66, 0x5f1f0415, 0x07130b05, 0x333f2f00, 0x066a47e1, 0x8505d941, 0x0107248b, 0x41060123, 0x312b2154, 0x015d8e5f,
0xebfef452, 0x41122411, 0xef23055c, 0x41ec9aa4, 0x832a155c, 0x2585b5e2, 0x4c018bfe, 0x62410202, 0x0523481e, 0x05a03108, 0x000f00b6, 0x4082001c,
0x190f0956, 0x0ff9020f, 0x0b080f01, 0x0c0f480f, 0x07010c09, 0x5b16010c, 0x07180708, 0x09070702, 0x0ee9010e, 0x0e020ef9, 0x20081d83, 0x0d100d0e,
0x8f1e3f1e, 0xbf1e9f1e, 0x051edf1e, 0x10011e20, 0x64025a01, 0x10030c1d, 0x01000060, 0x32038208, 0x0303601c, 0x0012010e, 0xe13f333f, 0x5e2f3911,
0x4912e15d, 0xce2708e1, 0x5d2b3238, 0x832f3271, 0x5d5e2313, 0x0c823311, 0x01303131, 0x21112311, 0x14151620, 0x0107020e, 0x41270123, 0x7008059f,
0x2323022e, 0x01ba8101, 0xfe0a0164, 0x37685131, 0xfedb8e01, 0x5aa4e5a1, 0x2925517e, 0xa0577f53, 0xa4fd5c02, 0xd1ceb605, 0x3e5d8257, 0x0271fd14,
0x45239e5c, 0x64484567, 0x01001d40, 0xecff6800, 0xcb05c903, 0x42003300, 0x23592740, 0x5a112301, 0xbf356700, 0x0235ff35, 0x3f013560, 0x5a2a0135,
0x34661b09, 0x27052a11, 0x0420245f, 0x0509600e, 0x22b08213, 0x82333fe1, 0x21ad83ac, 0xaf41e132, 0x5d332105, 0x2205b141, 0x55262223, 0x36270512,
0x022e3435, 0x51032e27, 0x162505d3, 0x26260717, 0x06cf5223, 0x031e5b08, 0x8045c903, 0xc16f73b8, 0x60572241, 0x99a03266, 0x5d7a491d, 0x29558359,
0x61a17440, 0x434abe77, 0x7a58a541, 0x73461e86, 0x5c895b54, 0x6187012f, 0x23376a99, 0x1f10b222, 0x70780f18, 0x3f435036, 0x68532325, 0x8a585484,
0x232d325f, 0x712b1d9c, 0x43533960, 0x4c24213b, 0xd3827e60, 0x00145f08, 0x05120400, 0x000700b6, 0x0f32405e, 0x09d00109, 0xcf094f01, 0x09100209,
0x09300920, 0xef06af03, 0x06840206, 0x07060601, 0x0340025a, 0x0f0203e0, 0x03080103, 0x67025703, 0x03027702, 0xc0ffb802, 0x0a070b40, 0x03070248,
0x0003045f, 0x3f3f0012, 0x2f0132e1, 0x2f335d2b, 0x105d5d5e, 0xd64f32e1, 0x47712005, 0x353105b4, 0x02211521, 0x5efebb71, 0x5ffefe03, 0xa4a41205,
0x08818200, 0xecffb82b, 0xb805dd04, 0x2f001700, 0x5a161c40, 0xb0196501, 0x196f0119, 0x100219af, 0x5a0e0119, 0x1118640b, 0x0c13065f, 0x3f000300,
0x08f54232, 0x20054444, 0x07405f11, 0x11331122, 0x0806ef4d, 0xdd04112a, 0x88c98542, 0x4485c480, 0x59afadbb, 0x01285280, 0x4cfcb805, 0x5290c472,
0x7ac78e4d, 0x48fcae03, 0x6236c0af, 0xb8035188, 0x00247b82, 0x8b040000, 0x0c34fd82, 0x10406c00, 0x09090203, 0x01600004, 0x01b00170, 0x010401f0,
0x2608db83, 0x480a0616, 0x01011001, 0x7f0e2f0e, 0x030ebf0e, 0x0906400e, 0xb8040548, 0x04b4f0ff, 0x09030405, 0xb3e0ffb8, 0x8248110a, 0x40f02207,
0x251a820a, 0x12030209, 0xaa820100, 0x333f332d, 0x3f2b2b33, 0x382f0133, 0x4d5d2b33, 0x332c0549, 0x2f3d3912, 0x30313333, 0x23013301, 0x16360382,
0x36361716, 0xc6c50337, 0xfebb17fe, 0x2701c519, 0x0f112a1d, 0xf65a1f2e, 0x61fc2705, 0x4a4aa95b, 0xa34161a9, 0xfe062105, 0x2a2ea582, 0x10b6df00,
0x48181508, 0xffb80f10, 0x0882b5f8, 0x82070f21, 0x40f822a5, 0x210a8212, 0x19830001, 0x1d160022, 0x1d210683, 0x2120821c, 0x16822f40, 0x251c2808,
0x04010714, 0xb4074407, 0x04070307, 0x24251425, 0x54254425, 0x16070525, 0x07162525, 0x000d1e03, 0x0e70010e, 0x82c00e80, 0x38f083db, 0x480a0718,
0x0e0e100e, 0x7f2c6f2c, 0x2c20022c, 0x0f022c30, 0x1f08012c, 0x24f2821e, 0x161e1340, 0x21ed8220, 0xe9821016, 0x000d1627, 0x2507031e, 0x06014125,
0xf0210782, 0x241682b6, 0x121d1025, 0x21fb8400, 0x06823311, 0x2b2b3322, 0x20054b4e, 0x0603415d, 0x12337131, 0x2f3d3917, 0x5e5d2f2f, 0x3311715d,
0x892b332b, 0x30313b04, 0x1e133301, 0x033e1703, 0x01331337, 0x26260323, 0x06272627, 0x07060607, 0x19882303, 0x29034d08, 0x1d0fe5c5, 0x04061319,
0x0b13100c, 0x91fec7c8, 0x1a0efebc, 0x0b0b0c0b, 0x0e190a0b, 0x7efebcf2, 0x140cdfc5, 0x05050e11, 0x0d17140f, 0xa8fcb605, 0x5e697038, 0x635a2626,
0x72033167, 0xaa034afa, 0x372f6c33, 0x2f373334, 0x5cfc3670, 0x872a1f82, 0x5b62632e, 0x6c622526, 0x1142316f, 0x60440806, 0x0b00b605, 0x1d408100,
0x0a100a09, 0x0b37000a, 0x38080b01, 0x02050105, 0x00000102, 0x80007001, 0x0300c000, 0xc0ffb800, 0x0a071440, 0x00100048, 0x0d0f0d00, 0x0d2f0d1f,
0x08040d7f, 0xffb80607, 0x0606b3f0, 0x2b05644f, 0x02280410, 0x01082701, 0x09040802, 0x00301282, 0x323f0012, 0x3912333f, 0x015d5d39, 0x3232382f,
0x2a0c674f, 0x332f3d39, 0x5d33335d, 0x82183311, 0x30312517, 0x01012321, 0x33290282, 0x01330101, 0xfed36004, 0x39eb829e, 0x5afec501, 0x014c01c6,
0x5bfebe4e, 0x85fd7b02, 0xba02fc02, 0x2f02d1fd, 0x9a824cfd, 0x00820020, 0x82370421, 0x00083dbd, 0xef194073, 0x400a010a, 0x08480c09, 0x980107ab,
0x07400107, 0x01071b01, 0x0701070f, 0x403da082, 0x0507072f, 0x01028001, 0x1b01024f, 0x10020102, 0x04000202, 0x8705775a, 0x03059705, 0x06ad534f,
0x36050729, 0x01000100, 0x42071204, 0x122105d1, 0x25b48239, 0x5d5d5d5e, 0xb88239e1, 0x33240782, 0x382f3311, 0x5d260782, 0x5d2b335d, 0xa7833031,
0x1123113b, 0x1b023301, 0xfec85401, 0x42febb42, 0x02d302cb, 0xfd83fce3, 0x032f02c7, 0x06974b87, 0x82fe0321, 0x092108a1, 0x20403800, 0x07030909,
0x0b0f0b67, 0x0b4f0b3f, 0x08040b9f, 0x01040408, 0x04070a66, 0x0203055f, 0x05c54d08, 0xe13f392b, 0xe6100139, 0x5e322f32, 0x2606825d, 0x30312f32,
0x58352121, 0x213505c2, 0x54fcfe03, 0x4dfdc702, 0x3afd8303, 0x0491db02, 0xfb91a67f, 0x24658381, 0x02bcfea4, 0x3b658239, 0x40260007, 0xf3000417,
0x0100f106, 0x01b00110, 0x010401c0, 0xf802f505, 0xf901f506, 0x21082f5e, 0xba8232ed, 0x21112135, 0x33112315, 0x6bfe3902, 0xdfdf9501, 0xfa06bcfe,
0x8331fa95, 0x0017244b, 0x82e90200, 0x0003254b, 0x0102b721, 0x05284682, 0xffb80300, 0x0203b4f0, 0x3505ba5e, 0x382f012f, 0x38331133, 0x30313311,
0x01230113, 0xb22002c9, 0xc443e0fd, 0x243f8305, 0x01bcfe33, 0x368b84c9, 0x03144024, 0xf101f300, 0x06700660, 0x00090602, 0x03f907f5, 0x85f804f5,
0xd6102388, 0x8983e15d, 0x11331724, 0x8d823523, 0xdfdf333f, 0x6afe9601, 0x95cf05ae, 0x000006f9, 0x02290001, 0x05190425, 0x000600c1, 0x0303b612,
0x28128208, 0xcd3f0006, 0x33112f01, 0x2078832f, 0x087a8233, 0x01290121, 0xbf0166cb, 0xfeaffea1, 0x032502a3, 0x0264fc9c, 0x0021fddf, 0xfefcff01,
0xff4e03bc, 0x82030048, 0x0000293b, 0xba010105, 0xe12f0002, 0x012c3b86, 0x03213521, 0x03aefc4e, 0x8cbcfe52, 0x47085682, 0xd9048901, 0x21061203,
0x16000d00, 0x06000a40, 0x000f8008, 0x0002005f, 0x1a5d2f00, 0xcd2f01cc, 0x23013031, 0x3527032e, 0x17031e33, 0x23781203, 0x103f4d52, 0x2e2b10db,
0xd9041530, 0x5158531c, 0x5122151b, 0x001d4c51, 0x6f083282, 0x03ecff5e, 0x005e049c, 0x00320023, 0x10114054, 0x23472901, 0x340f3455, 0x0602346f,
0x1a0c4830, 0x40d0ffb8, 0x48110d1e, 0x0c09101a, 0x0c1a1a48, 0x16193356, 0x522a1d50, 0x101d1010, 0x07025024, 0x00150016, 0xe1333f3f, 0xe12f393f,
0x0132e110, 0x2f32e610, 0xe1102b2b, 0xf6105d5e, 0x313232e1, 0x23272130, 0x2223030e, 0x3435022e, 0x35373736, 0x21051664, 0x4d552707, 0x11620806,
0x023e3225, 0x0e073535, 0x16141503, 0x08251903, 0x604e4221, 0x5574453f, 0xb8ece730, 0x3451371d, 0x40428f53, 0x6664b64a, 0xfe306195, 0x4c683d2f,
0x7a5a8f2b, 0x98612049, 0x142a412d, 0x547b5127, 0x0708b0a4, 0x375a4345, 0x89223018, 0x59293828, 0x10fd628a, 0x754d267f, 0x0407634f, 0x33513920,
0xe583565c, 0xffae3308, 0x063f04ec, 0x001f0014, 0xb538002f, 0x5705482d, 0xffb83131, 0x0a1740b8, 0x25101549, 0x30541247, 0x15120013, 0x0a0f502a,
0x1b502016, 0x3f001000, 0xd483e132, 0x84013f21, 0x462b20c5, 0x275d05cc, 0x07232e0b, 0x11331123, 0x06070614, 0x033e3307, 0x089b4f17, 0x34353637,
0x5e9e0226, 0x3c3c6d9a, 0x3b5e9a6d, 0x173b4d60, 0xb685250c, 0x08008202, 0x3a170843, 0x5019604d, 0x1b1b416b, 0x87516c41, 0x5e047f7f, 0x8cd48f48,
0x4990d58d, 0x203a2b1a, 0xfe14068b, 0x224f2388, 0x3c232628, 0x3397192c, 0x65699c68, 0xda376b9d, 0x00ced0cc, 0xff710001, 0x046f03ec, 0x3ac1825e,
0x1d18402a, 0x215f210d, 0x1002217f, 0x48160121, 0x13205605, 0x19100a51, 0x51160051, 0x5d2909e0, 0x3132ce10, 0x2e220530, 0x08b04802, 0x032e4408,
0x15062223, 0x32331614, 0x06153736, 0x65520206, 0x4c4a82b0, 0x4e66b285, 0x17363295, 0x1a3a3c38, 0x9491909d, 0x36368351, 0x893f147b, 0xdb9d96d5,
0x19223e89, 0x0f130a9a, 0xd3d4c909, 0xa21925c3, 0x5d001e1d, 0x022206b9, 0x89821406, 0x00302008, 0x261d4034, 0x1e471b00, 0x32103255, 0x0b482e01,
0x151f3156, 0x502b001c, 0x20101016, 0x82060150, 0x41332090, 0x11420947, 0x42252007, 0xfb6a0810, 0x33172e05, 0x26262726, 0x11331135, 0x3e322523,
0x07234202, 0x2208aa82, 0x16085403, 0x3c604d3b, 0x3c6e9a5d, 0x5d9a6e3c, 0x3c4d603b, 0x03030c16, 0x93b60402, 0x694cc6fe, 0x41021f41, 0x9324064a,
0x1a2e3d22, 0x31084d41, 0x22203a2c, 0x10371a1f, 0xecf9b401, 0x8d5e2e83, 0x4941295e, 0xcdd12105, 0x3008bf85, 0x5e04e103, 0x27001e00, 0x28404300,
0x10194823, 0x29e02957, 0x01296f01, 0x05481122, 0x50112856, 0x222b221b, 0x01220f02, 0x14222206, 0x100a501f, 0x075b4114, 0x2f391224, 0xec505d5e,
0xf6102308, 0x6441e132, 0x021e240b, 0x60211515, 0xb90805cf, 0x030e1537, 0x07062203, 0x022e3421, 0xb66e6002, 0x78424883, 0x9e6365a7, 0x4cfd3b6e,
0x33979905, 0x274c5157, 0x57514d28, 0x0b857260, 0x391bec01, 0x8e4a1458, 0xd68887d2, 0x81474e95, 0xc1716eb5, 0x1d130ab6, 0x1c13a212, 0xdb030812,
0x7144959c, 0x01002c50, 0x00001d00, 0x1f06f002, 0x70001b00, 0x1dcf4e40, 0x60021ddf, 0x901d801d, 0x041da01d, 0x1d3f1d1f, 0x1b031d4f, 0xbf107f1b,
0x10100210, 0x0347021a, 0x050f0307, 0x052f051f, 0x050405af, 0x10030005, 0x80032003, 0xa0039003, 0x03060603, 0x074f0501, 0x07011a00, 0x50140f1a,
0x1502010d, 0xe13f3f00, 0x335d5e3f, 0xe35032e1, 0x115d2d05, 0x32e11033, 0x395d2f32, 0x5d5d5d2f, 0x2206c760, 0x4a373523, 0x0e200cfe, 0xb008ef82,
0xf58b0233, 0x2dc2c2b7, 0x3b4e7c55, 0x1f2f2763, 0x3a282849, 0x03f51326, 0x033ffcc1, 0x60444bc1, 0x23548d6b, 0x0b8d0e17, 0x53301311, 0x00006841,
0xfe250003, 0x04fc0314, 0x003f005e, 0x005e0052, 0x0d1940a7, 0x47530532, 0x602f1237, 0x80377037, 0x2f370337, 0x48272f37, 0x0547591d, 0x40c0ffb8,
0x480a074d, 0x0a010505, 0x1dfd011d, 0x011db001, 0x20011d88, 0x401d301d, 0x1d1d031d, 0x01601f60, 0x60df60bf, 0x0160a002, 0x0c402740, 0x0227480f,
0x040d3205, 0x0a52563c, 0x4f5c220a, 0x0f4e2c3c, 0x17070117, 0x45103c17, 0x011b224f, 0x3f000f00, 0x37e782c1, 0x5d5e2f39, 0xe11039c1, 0xe12f3911,
0x01391712, 0x5dc12b2f, 0x3311715d, 0x5d3aea83, 0x2f393371, 0xc110e12b, 0x2f393911, 0xc1105d2f, 0x3912e110, 0x01303139, 0xb4620715, 0x030e2609,
0x021e1415, 0x070f5a33, 0x2805dd44, 0x2637023e, 0x36343526, 0x09244c37, 0x25830120, 0x3536322e, 0x23022e34, 0x020e2223, 0x33161413, 0xd2080e83,
0x06222326, 0x1cc5fc03, 0x8c5f2f26, 0x0e2c165d, 0x111b2111, 0x1f382918, 0x51805db0, 0xcd864124, 0x6aa06b8b, 0x57422735, 0x40362a2f, 0x31472b45,
0x9262321b, 0x1b4f2561, 0x3b1a40fe, 0xb9ba4861, 0x415a3718, 0x3f4c23b0, 0x636c5c29, 0x64696764, 0x4a046a63, 0x6d231b71, 0x5e814c45, 0x0a030135,
0x18282019, 0x0612211b, 0x3d6d502f, 0x34618c58, 0x4771502a, 0x2a425b3c, 0x3552130b, 0x122a593d, 0x3360513f, 0x34628c59, 0x02fb090b, 0x1b2e4025,
0x3a2e6c73, 0x2c100c21, 0x7360034d, 0x7b776f70, 0x01007874, 0x0000ae00, 0x14061204, 0x32001900, 0x47001d40, 0x101b5519, 0x801b601b, 0x0e0f031b,
0x540b470a, 0x5004101a, 0x000c1015, 0x0015000b, 0x563f323f, 0x322a06f7, 0xf6105d32, 0x213031e1, 0xe4823411, 0x15020e27, 0x33112311, 0x05986111,
0x15165108, 0x695c0311, 0x436e5170, 0x08b6b61d, 0x5245190a, 0xb9b7305c, 0x8282c302, 0x60946634, 0x1406c7fd, 0x2b9032fe, 0xbf142a3f, 0x0033fdd2,
0xa0000200, 0x75010000, 0x0300e505, 0x25001100, 0x13101440, 0x0c021320, 0x01044700, 0x53071254, 0x0f020f0f, 0x27057b46, 0x1001e52f, 0x32e132f6,
0x2205a165, 0x5b340333, 0x250806a8, 0x26222306, 0xb6b66401, 0x162d3dc4, 0x3f111d27, 0x043d2d2c, 0x3c29014a, 0x2b1c0d36, 0x38393a1e, 0xbcff0200,
0x618414fe, 0x00132408, 0x402e0021, 0x20231019, 0x0f1c0223, 0x03140c47, 0x22540c03, 0x1f1f5317, 0x50070f0d, 0x3f001b00, 0x83333fe1, 0x32e62467,
0x8410322f, 0x5313206a, 0x132010fe, 0x422f788b, 0x1a173f30, 0x2e1b2336, 0x22b61323, 0x89136d48, 0x14fe3483, 0x0a940b0e, 0x41270f0b, 0xfbf40433,
0x577b4d18, 0x895f072f, 0x05794194, 0xf0033a08, 0x0e001406, 0x0b405e00, 0x02040407, 0x44060303, 0xb8050105, 0x1740c0ff, 0x05480a07, 0x10050510,
0x102f100f, 0x090d0702, 0x0f540a47, 0xb800000b, 0x1040f8ff, 0x07480f0c, 0x2a048208, 0x06030700, 0x0f03150a, 0x543f3f00, 0xc746051e, 0x4b5e2005,
0x332e06e1, 0x39331133, 0x30313311, 0x33013701, 0x20540101, 0x03250807, 0x01875601, 0x6ffed325, 0xfed1ac01, 0xb4b46db0, 0xaa370210, 0x25fe6901,
0xf80191fd, 0x065afe52, 0xfe36fd14, 0x219f85ed, 0x9f826401, 0x1a000332, 0x05100e40, 0x00020520, 0x04540147, 0x15000002, 0x01237182, 0x41e1f610,
0x0123068a, 0x82b6b664, 0x014a0827, 0x0000ae00, 0x5e048706, 0x65002c00, 0x0a233f40, 0x010bb947, 0x0ba60b96, 0x010b8902, 0x0b770b67, 0x160b0b02,
0x552c4700, 0x012ef02e, 0x20012ecf, 0x022e502e, 0x08012e0f, 0x16471519, 0x1a232d54, 0x500f041a, 0x17101f28, 0x6d42160f, 0x82322005, 0x32e122d7,
0x06f85332, 0x4f5d5e21, 0x112205b3, 0x08822f39, 0x32e15d22, 0x420d7e42, 0x17260a88, 0x33033e33, 0x06861632, 0x11152e08, 0x6964d105, 0x1e416649,
0x4d6963b7, 0xb61b3f68, 0x180a1a94, 0x2e594f42, 0x08269f78, 0x6057491a, 0x02b1af32, 0x2f8282c3, 0xfd58875b, 0x09a842a2, 0x944a0430, 0x142a3f2b,
0x442f5e58, 0xd2bf162d, 0x134133fd, 0x12042105, 0x183de182, 0x1c403000, 0x55184700, 0x601a101a, 0x031a801a, 0x0b470a0e, 0x040f1954, 0x0c101450,
0x0e2c430f, 0x88122b43, 0x082a439b, 0x2a439482, 0x84818610, 0x054b657b, 0x7b822d20, 0x1f001322, 0x1d3c7d82, 0x5700481a, 0xd0214021, 0x0321e021,
0x0601210f, 0x560a4814, 0x0f501d20, 0x05501710, 0x20092248, 0x08e7535e, 0x200de26e, 0x0aa34405, 0x432d042c, 0x676fb27d, 0x43477fae, 0x0784b37c,
0x8900fd25, 0x83879a9a, 0x02210803, 0x91d58927, 0xd5914c4c, 0x91d38889, 0xd3914b4b, 0xd3d3d188, 0xcfcfd1d1, 0x00020000, 0x0414feae, 0x8291823f,
0x0020088f, 0x2e1e4036, 0x32571b48, 0x26013210, 0x470c0610, 0x2031540d, 0x10161150, 0x1b0c0f0e, 0x0005502b, 0x32259282, 0x3f3f3fe1, 0x05435833,
0x24074144, 0x022e2205, 0x08b75527, 0x17413320, 0x021e2b05, 0x020e1415, 0x020e2203, 0x5b451507, 0x02262207, 0x0566499e, 0x0203032c, 0x1a94b604,
0x4d3a1708, 0x81493c60, 0x48812006, 0x14220b24, 0x18482b1a, 0x2bfe2806, 0x23943606, 0x481b2d3d, 0x03250732, 0x8c5e2edb, 0x0626485f, 0x83ced021,
0x827120c3, 0x820220c3, 0x001022c3, 0x26c38330, 0x2505202b, 0x83552447, 0x480e2fc6, 0x24315616, 0x200f221b, 0x101b500b, 0xcd82002c, 0x2506fa5b,
0x10013f3f, 0xe848e1f6, 0x31322205, 0x0ece4830, 0x8e491720, 0x021e2508, 0x33373317, 0x23088756, 0x3502030e, 0x6620a88b, 0x2f09f048, 0x08173c4c,
0x04b6931b, 0x0c030302, 0x604d3b16, 0x200dce48, 0x31bf8797, 0x233d2d1b, 0x01caf994, 0x1b3a13d5, 0x3d222220, 0x93421a2e, 0x08032105, 0x3308c182,
0x40410016, 0xc203b20b, 0x03900203, 0x030203a0, 0x40c0ffb8, 0x480b071b, 0x30180303, 0x80185018, 0x0d110318, 0x17540e47, 0x150d0f0f, 0x10000712,
0x33c13f00, 0x3220c985, 0x2306f85a, 0x32013031, 0x4506f352, 0x2c0806d3, 0x033e3317, 0x481d8902, 0x3b1c181a, 0x4b683f1a, 0x1694b629, 0x47391908,
0x055e0458, 0x0705a805, 0x51855f33, 0x4a04b0fd, 0x3d502bc9, 0x248b8225, 0x03ecff5a, 0x088b823f, 0x4800352e, 0x13252d40, 0xa0009047, 0x57000200,
0x5f373f37, 0x03379f37, 0x2c013710, 0x1d9f0947, 0x1d021daf, 0x29263656, 0x052c1350, 0x0e091022, 0x2c05b142, 0x39123f32, 0x0132e139, 0x325df610,
0x05305ee1, 0x9f533320, 0x05155e0e, 0x0818a053, 0x6d3a3f5d, 0x9c6d609a, 0x544c1f3b, 0x5b412c59, 0x35141a39, 0x7348485c, 0x64372b50, 0xa161568c,
0x89413f48, 0x17626647, 0x48465e38, 0x012a5071, 0x5178502d, 0xa6222328, 0x0f181f10, 0x243b2916, 0x3231321f, 0x4a3c1f1f, 0x6d464361, 0x222a264a,
0x432b1d93, 0x2e34233e, 0x3c1e1d2f, 0x8200604b, 0x214608df, 0x8f02ecff, 0x1d004605, 0x19b15000, 0xc0ffb805, 0x0b082f40, 0x1f050548, 0x1f4f1f3f,
0x471b1702, 0x2f121f14, 0x00120212, 0x20101010, 0xc010b010, 0x0610d010, 0x121a1006, 0x1714164f, 0x0b50000f, 0xe13f0016, 0x8049333f, 0x5dc62106,
0x5d240882, 0x2b2f3311, 0x2525e782, 0x37023e32, 0x06444d15, 0x23113e08, 0x33373735, 0x21152115, 0x01161411, 0x2a2d12fa, 0x280d0923, 0x3e193430,
0x9b2c4d6a, 0x01694e9b, 0x3fecfe14, 0x08060481, 0x0c068a03, 0x4e200509, 0x7d026585, 0xfce64e51, 0x6183fd89, 0x08a98262, 0xecffa422, 0x4a040804,
0x30001a00, 0x17011c40, 0x1c551a47, 0x1c601c10, 0x0f031c80, 0x1b540c47, 0x120f0d18, 0x200bd74d, 0x08d14233, 0xcb4d3120, 0x08ce530a, 0x09823520,
0x1b750322, 0x0805cd47, 0x5c8a5b22, 0x6f6ab62f, 0x1d436e51, 0x3f2b93b6, 0x622e1429, 0xcd026998, 0x82823dfd, 0x60946534, 0xb6fb3a02, 0x21060351,
0x8182d503, 0x6d00112f, 0xff1100b9, 0x0a0f40f8, 0x0011480e, 0x2c058208, 0x01090900, 0xffb8100f, 0x1512b3c0, 0x25078348, 0x0b071c40, 0x00821048,
0xbf132008, 0xef13cf13, 0x13500313, 0x2f130f01, 0x03134f13, 0xb8010207, 0x0a40f0ff, 0x01094701, 0x48010f09, 0x3927060d, 0x382f015d, 0x525d5ec1,
0x2b2906ce, 0x3d3912c1, 0x332b332f, 0x52be822b, 0x332005a2, 0x0805bd52, 0xfe770124, 0x0bc7bc89, 0x04191e1e, 0x1e180507, 0xbcc70b1e, 0x4a0489fe,
0x68219dfd, 0x1919606c, 0x21686c60, 0xb0826302, 0x14000126, 0xe3050000, 0x2f25af82, 0x00b9c300, 0x20af822f, 0x29a9820c, 0x0908002f, 0x2700480e,
0x1082b820, 0x0a821220, 0x831f2021, 0x091f2210, 0x21c78310, 0x16830f10, 0x16820920, 0x54180f32, 0xb8270127, 0x1540e0ff, 0x5b480a07, 0x20180118,
0x27290782, 0x09181809, 0x2d110327, 0x83eb862e, 0x13402107, 0x2e30eb82, 0x312e2e10, 0x31303120, 0x01310f02, 0xb8111207, 0x1624e282, 0x091f2d11,
0x113ae482, 0x0619270f, 0x76196619, 0x00190319, 0x3f001510, 0x115d3333, 0x5d333f33, 0xf4823333, 0xf4823320, 0x2f331125, 0x532b2b38, 0x2b2207c1,
0x1f822b5d, 0x270ec153, 0x032e0321, 0x23272627, 0x410cb653, 0x13230513, 0x8517031e, 0x01590809, 0x04a8f003, 0x060d0c0c, 0x0e060f0e, 0x0b190b0d,
0xe7fed3ac, 0x140a83bf, 0x06040e12, 0x16151105, 0xacc4b30a, 0x12161709, 0x0d030604, 0x890b1512, 0x02e4feba, 0x322d1268, 0x3e3a1934, 0x6a323a3f,
0x049cfd25, 0x2db8fd4a, 0x1d5b6769, 0x5f61571a, 0xfd6b0221, 0x5f5c2295, 0x080d8258, 0x2f6d6830, 0xb6fb4802, 0x23000100, 0xdb030000, 0x0b004a04,
0xa140e500, 0x86010989, 0x04060103, 0x0104f701, 0x360104e5, 0x05040104, 0x060106e8, 0x2982e703, 0x09098908, 0x02f80102, 0x0102ea01, 0x02010239,
0x7b056b01, 0x05570205, 0x4a053a01, 0x01640205, 0x58020174, 0x01350101, 0x05020145, 0x09010901, 0x060b0305, 0x08f70108, 0x0108e501, 0x08010836,
0x19164007, 0x0e400748, 0x076b4811, 0x5702077b, 0x073a0107, 0x0702074a, 0x300d100d, 0x0d90020d, 0x0f020db0, 0xd906010d, 0x0ac8010a, 0x010aba01,
0x0a010a09, 0x0b4b0b3b, 0x010b2802, 0x0b150b05, 0x15070b02, 0x3f000f01, 0x5d2f013f, 0x2605176b, 0x5d5d5e5d, 0x82de1071, 0x2b2b220d, 0x270582c1,
0x39171271, 0x2f182f3d, 0x0e821f83, 0x13841020, 0x5d331125, 0x855d3333, 0x30312d0b, 0x015d5d00, 0x13133301, 0x23010133, 0x21080283, 0xcf9ffe98,
0xfecffafa, 0xcf75019d, 0xf2fef4fe, 0x023302cf, 0x0166fe17, 0xfde9fd9a, 0xfeb401cd, 0xf782004c, 0x14fe0a32, 0x4a04df03, 0x64002200, 0x081022b6,
0x0f0e0008, 0x83063142, 0x40240807, 0x480b071d, 0x0f0f100f, 0xcf24bf24, 0x0324ef24, 0x0f012450, 0x4f242f24, 0x18070324, 0xffb80001, 0x000c40f0,
0x23263682, 0x1b15501c, 0xc182000e, 0xe13f322b, 0x33333311, 0xc1382f01, 0x0f244333, 0x30313324, 0x03423313, 0x030e220a, 0x09e44a23, 0x37374408,
0x0ed7bd0a, 0x0412191d, 0x1b160506, 0xbcc70b1d, 0x411c4efe, 0x34507456, 0x40151b4c, 0x34463023, 0x04390f25, 0x289bfd4a, 0x23525858, 0x5e615619,
0xfb630221, 0x5a815127, 0x91060b31, 0x2c170705, 0x83a02940, 0x005224d1, 0x82350300, 0x00092fd1, 0x090b406c, 0x03010397, 0x480d0908, 0xd6820703,
0x07114036, 0x0707480a, 0x5f0b3f0b, 0x030b7f0b, 0x08010898, 0xb5f8ffb8, 0x08221e82, 0x1f820204, 0x1512b727, 0x01023f48, 0x2c2b8202, 0x071240f0,
0x0407480c, 0x020f054f, 0x29098210, 0x014f0802, 0xe13f0015, 0x03832b32, 0x5d2f0127, 0x2b33332b, 0x0542455d, 0x825d2b21, 0x0a9354d9, 0x1dfd3533,
0x09fe1802, 0xf4fdb002, 0x037d1e02, 0xfc928944, 0x089983d1, 0xbcfe3d30, 0xb605a202, 0x40002700, 0x051a2540, 0x2720f705, 0x0f1323f1, 0x010c10f6,
0xf50f230c, 0x0f0110d9, 0x02105f10, 0x1a291010, 0x05f819f5, 0xa15406f5, 0x39122605, 0xe15d5d2f, 0x39738239, 0xf13333e6, 0x322fe232, 0x14053031,
0x1517021e, 0x1135032e, 0x35232634, 0x07823632, 0x0805c445, 0x1411154b, 0x16150706, 0xf4011516, 0x28412d18, 0x365f834d, 0x837d7d83, 0x4d835f36,
0x182d4128, 0x77737377, 0x233d3010, 0x0196010d, 0x4e6e4721, 0x56674e01, 0x0167569b, 0x476e4e4d, 0x01950121, 0x303d230d, 0x7b69b4fe, 0x7a140c14,
0x08b3826a, 0xfee90143, 0x067f0214, 0x00030014, 0x001f402d, 0x05300105, 0x05700540, 0x02040580, 0x100300aa, 0x80034003, 0x0503c003, 0x1b020307,
0x3f000000, 0x5e2f013f, 0x715de15d, 0x33013031, 0xe9012311, 0x14069696, 0x221882f8, 0x82330001, 0x829820fb, 0x832920fb, 0x0d2308fb, 0x07f72424,
0xf61af100, 0x1d900314, 0x1a041d01, 0xff19eff5, 0x19d90219, 0x0e191901, 0xf923f524, 0x550ef50d, 0x11200514, 0x3322fb88, 0xfb86e633, 0x36341326,
0x26263537, 0x5e7af282, 0x25f28205, 0x1533021e, 0x08820622, 0x07020e27, 0x35033e35, 0x87e783e1, 0x412123ff, 0x01413e60, 0x3b012309, 0xdd827a6a,
0x01697b27, 0x233d304c, 0x08f3820d, 0x6e472168, 0x34b3fe4e, 0x9b142d48, 0xb2fe6756, 0x21476e4e, 0x0d019601, 0x00303d23, 0x02660001, 0x0302044a,
0x0023005a, 0x1d0d403c, 0x01251025, 0x0a010a10, 0x1f0aad17, 0x40c0ffb8, 0x48131016, 0xad051f1f, 0x1f0d0f1c, 0x4f0d3f0d, 0x8f0d6f0d, 0x000d060d,
0xf1335d2f, 0x322b2fc8, 0x5d2f01e1, 0x31ce105d, 0x032e0130, 0x9c832223, 0x33362908, 0x17021e32, 0x3233031e, 0x1537023e, 0x2e222306, 0x25120202,
0x16292d37, 0x383b3c1c, 0x1d946419, 0x2f433732, 0x282f3725, 0x18221084, 0x10839563, 0x108b022f, 0x13050d16, 0xa2192c21, 0x190d056c, 0x330d8c14,
0x93000200, 0x91018bfe, 0x03005e04, 0x41001700, 0xff0000b9, 0x2f05317e, 0x19a01930, 0x19c019b0, 0x9a040204, 0x0e03030e, 0x0f39b283, 0x0e480a07,
0x139b0900, 0x02100200, 0x00020702, 0x2f5d5e2f, 0x2f01cef5, 0x08387e2b, 0x13331324, 0x585b1323, 0x06806d07, 0x3379d53b, 0x2313efdf, 0x2e1a1b2e,
0x23141423, 0x2e1b1a2e, 0xa4021323, 0x4805e7fb, 0x07377e26, 0x0806606d, 0x00010034, 0x03ecffbc, 0x00cb05ba, 0x405a0025, 0x46031225, 0x0a04040f,
0x40271525, 0x481e0127, 0x0a300a00, 0x0ad00a40, 0x1b0a0604, 0x0f120f73, 0x02057321, 0x9a830f05, 0x120f0c39, 0x0f050f48, 0x07100305, 0x3f001903,
0x3939123f, 0x112b2f2f, 0x83e11033, 0x055a4203, 0x32c61030, 0x332f3911, 0x303132e1, 0x15070624, 0x5a7c3523, 0x0c84540d, 0x6e760336, 0x8a57894c,
0x61353462, 0x4889568b, 0x17352e88, 0x193b3c38, 0x08068654, 0x021ed420, 0x4b0dcec8, 0x8d89c785, 0x0d4b88cb, 0x2103a4ac, 0x130a9a17, 0xd4ca090f,
0x1825c3d2, 0xc78200a1, 0x00004437, 0xc9052304, 0x75002800, 0x110d1140, 0x0f0f236f, 0x07020f1f, 0x2205821f, 0x82170319, 0x0ab323b3, 0x0782480e,
0x40c83008, 0x48090630, 0x102a1717, 0x1921012a, 0x480e0b40, 0x10291919, 0x2f0d7521, 0x8f227f22, 0xbf22af22, 0xff22df22, 0x22220722, 0x19741600,
0x71730718, 0xcb820a06, 0x33011127, 0x5d332b2f, 0x21058211, 0xf584332b, 0x845d5e21, 0x0c154be2, 0x21152127, 0x020e1415, 0x08078207, 0x033e3585,
0x35233535, 0x3e341133, 0x6a9a0202, 0x384242ae, 0x52304b8d, 0x7801213c, 0x271788fe, 0xec021b33, 0x492c21fc, 0xc6c61e35, 0x0592693b, 0x90232dc9,
0x3b1b2b1d, 0xd9fe425e, 0x593ed389, 0xa6102b40, 0x44290b9a, 0x89d54361, 0x89574401, 0x0200325f, 0x1d017b00, 0x8b04ec03, 0x37002300, 0x23408600,
0x01168f0e, 0xab2e1616, 0x180c0f15, 0x03211e06, 0x12700008, 0x39121201, 0x04013910, 0x80aa2420, 0x82000100, 0x404508ff, 0x480a0631, 0x17380000,
0x1f011f80, 0x1e18060c, 0x0904060f, 0x1b00ae29, 0x050d1b01, 0x09cfae33, 0x900209ef, 0xb009a009, 0x091f0309, 0x096f093f, 0x2f000903, 0xe15d5d5d,
0x5d2f32c6, 0x391712e1, 0x5dc63311, 0x83ff8432, 0x115d2413, 0x825d2f33, 0xf12b0815, 0x325d2fc0, 0x34133031, 0x37273736, 0x33363617, 0x37171632,
0x16160717, 0x07061415, 0x06270717, 0x26222306, 0x37270727, 0x72372626, 0x42080a05, 0x020e2223, 0x811f23ba, 0x6c2f7f62, 0x2e6b3c3c, 0x1f826381,
0x7f212325, 0x6b2e8160, 0x2d6e3c3c, 0x1f7f607f, 0x41258a23, 0x59333257, 0x42262642, 0x57323359, 0xd3022541, 0x812f6b3b, 0x24208162, 0x82812024,
0x886d202a, 0x2024212a, 0x2d223182, 0x25823c6c, 0x89262621, 0x55002035, 0x2208052b, 0xb6054c04, 0x95001600, 0x18305b40, 0x0c130f01, 0x0115aa16,
0x040c1515, 0x02ab0108, 0x01021f01, 0x82980202, 0x072e0828, 0x995a0b03, 0x10140114, 0x8a010c0f, 0x0c00010c, 0x0c400c10, 0x0a0c0703, 0x070f600e,
0x6012060f, 0x13000313, 0x0f8f0f7f, 0x01133002, 0x488213d0, 0x02131f2a, 0x130f130f, 0x15120b01, 0x2d07755b, 0x5d2f2f39, 0x115d715d, 0xe1103333,
0x04831132, 0x5e2f0122, 0x33281182, 0x32e15d33, 0x325d3932, 0x33341e82, 0x33113939, 0x12335d2f, 0x315d3939, 0x33010130, 0x21153301, 0x11240183,
0x35211123, 0x11820183, 0x0133022e, 0x7ffebf5a, 0x01d3feef, 0xb2d3fe2d, 0xea300685, 0x02c085fe, 0xfde302d3, 0x899e8900, 0x0601fafe, 0x03240682,
0x02000000, 0x080afd45, 0x39000726, 0x09002540, 0x40093001, 0x80097009, 0x06020409, 0x070003aa, 0x07400710, 0x07c00780, 0x04070705, 0x06030403,
0x20050546, 0x83af8239, 0xe13322a0, 0x070b4632, 0x0f461120, 0x96962906, 0xf4fc1406, 0xf3fc19fe, 0x5e085f82, 0xf6ff7900, 0x1f065e03, 0x5a004500,
0x4b407900, 0x51085605, 0x4c262146, 0x29463c46, 0x21ff1029, 0xb021a001, 0x5c210221, 0xbf015cc0, 0x4646015c, 0x08461700, 0x00003108, 0x10000001,
0xc0003000, 0xf000d000, 0x00080600, 0x054c265b, 0x4c561756, 0x370d0429, 0x14152e50, 0x00010d50, 0x423fe13f, 0x1133055f, 0xc6100133, 0x32715d5e,
0x10e12f32, 0x105d5de1, 0x835d5dce, 0x39122b0b, 0x11e11039, 0x30313939, 0x5b553413, 0x023e2206, 0x07864e33, 0x1415062c, 0x1e17021e, 0x0e141503,
0x99550702, 0x08be7609, 0x27022e25, 0x8337032e, 0x3e172423, 0x82343503, 0x0e28080e, 0x2d1a8903, 0x554b1f3a, 0x568c6437, 0x38489d61, 0x63478c41,
0x5f391866, 0x4e714846, 0x3429182a, 0x3b4c451c, 0x6c609b6c, 0x0805254e, 0x5d452bc5, 0x33111737, 0x73494c5e, 0x1c9a2950, 0x2348653f, 0x15212914,
0x526c411a, 0x17262f19, 0x53332903, 0x260f2d40, 0x623d5472, 0x20282544, 0x3b271c8b, 0x2c2e1b39, 0x411c1d2f, 0x343e614e, 0x10314455, 0x474e6d26,
0x21284d6f, 0x1e0f9e20, 0x27180e17, 0x2d1d1b33, 0x1f1f312d, 0x59644e3e, 0x373a3f25, 0x240d0f1e, 0x2622382e, 0x1e393b40, 0x3a2d1f08, 0x01020000,
0x030c0533, 0x00d9056a, 0x0019000b, 0x0c214035, 0x0114af86, 0x8606c014, 0x00100000, 0x00500040, 0x0f000604, 0x9f179103, 0x0209cf09, 0x09010930,
0x5d5d2f00, 0x0132e533, 0xe15d5e2f, 0xe15ddc1a, 0x34013031, 0x16323336, 0x23061415, 0x55252622, 0x24080c0b, 0x27283833, 0x28273a3a, 0x38770138,
0x1a231328, 0x28263a10, 0x36730538, 0x35353130, 0x36353232, 0x26190c30, 0x3b09821b, 0x00030000, 0x06ecff64, 0x00cb0544, 0x00410025, 0x406a0055,
0x1ac50543, 0x1a220f0f, 0x2c080182, 0x00c34c26, 0x34c00134, 0x42573401, 0xc90a26c3, 0x1fc90015, 0x151f150f, 0x157f152f, 0x159f158f, 0x1f000806,
0x1f601f10, 0x1f801f70, 0x2d178205, 0xc8472d1f, 0x2dc8513b, 0xe13f0004, 0x5757e12f, 0x5d5e2c05, 0xe110e110, 0x10e12f01, 0x85715dde, 0x33112313,
0xbe83102f, 0x20084a5b, 0x09f54e3e, 0xf9413420, 0x77012008, 0x042105f3, 0x05737515, 0x5e440420, 0x032f080f, 0x405e3d7b, 0x5f3d1d21, 0x39361743,
0x31181938, 0x66233c35, 0x36336598, 0x3f649969, 0x343e3b84, 0x36befc61, 0xc0a78a61, 0xa7c06868, 0x8b36618a, 0x656d280b, 0x8585eaaf, 0x8765afea,
0x04210807, 0x78532c1d, 0x52784e4b, 0x110c072b, 0x120b8309, 0x7a42070e, 0xa76567aa, 0x1d214378, 0xfe1c1a7f, 0x25448ebe, 0x35356289, 0x5c828962,
0x4d82458b, 0x00006008, 0x03440002, 0x05420210, 0x001e00c7, 0x404e002d, 0x0f012d2f, 0x101d00e0, 0x2f1d021d, 0x2f1f2f0f, 0x2f7f2f4f, 0x24052faf,
0x17170be0, 0x0b010b60, 0x0fe42d2e, 0x27011a0f, 0xc00600e4, 0xde1ae413, 0x1ae13f00, 0x39e1c4dc, 0xe12f3911, 0x5dc61001, 0xe1102f32, 0x5dd6105d,
0x313232e1, 0x5d270130, 0x26230c62, 0x5d062223, 0x5c080561, 0x03111516, 0x1415030e, 0x3e323316, 0x01353502, 0x27121ce7, 0x2b23382f, 0x8d1d3448,
0x383d638f, 0x302a5a30, 0x7d3c7533, 0x4433c977, 0x2a321229, 0x192b3a22, 0x16521d03, 0x1a0d1923, 0x66334d33, 0x1f04056c, 0x161d3948, 0x6a241a64,
0x013afe7a, 0x1e120339, 0x2d331d2b, 0x2c412c15, 0x08d38231, 0x73005253, 0xc7039303, 0x0d000600, 0x11406000, 0xeb0d0402, 0x6004500a, 0x0a040204,
0x0b060a04, 0xc0ffb809, 0x0c092140, 0x0f0f0948, 0xaf0f9f0f, 0xeb06030f, 0x0301039f, 0x0d030006, 0x050a0a07, 0x0c010303, 0x00010805, 0x332f332f,
0x2f3d3912, 0x33113912, 0x23028233, 0x5d2f1801, 0xc622dd82, 0x2d42322b, 0xe1102105, 0x2605ba5f, 0x07130317, 0x84012501, 0x01523f06, 0xeeee7535,
0x01cbfe75, 0x74360197, 0xfe74eded, 0x012902ca, 0xa4fe4e9e, 0x014ea4fe, 0x0a891b9b, 0x01003708, 0x06016600, 0x1d030204, 0x39000500, 0xaa022440,
0x07100701, 0x01049601, 0x7901048b, 0x04560104, 0x01044b01, 0x12010438, 0x04090104, 0xad040401, 0x3f00b305, 0xca4d01e1, 0x5d5d3d06, 0xe1de105d,
0x11013031, 0x35211123, 0xfc950204, 0xfd1d03f9, 0x968101e9, 0x00ffff00, 0x2706d77f, 0x10000602, 0x04000000, 0x08083743, 0x1e00085e, 0x4e003a00,
0x7d40c200, 0x16b416a4, 0xb40316c4, 0x0217c417, 0x52011617, 0x0e170e15, 0x0e15c516, 0x0e151514, 0x1900090e, 0xc5091ac5, 0x00041504, 0x1a00011a,
0x1ad01ac0, 0x048f0703, 0x1a041a01, 0xc3451f04, 0xc0012d00, 0x502d012d, 0x0e1fc33b, 0x0000c918, 0x15161b16, 0x1bc9081a, 0x26082c82, 0x1a1f1a0f,
0x1a7f1a2f, 0x1a9f1a8f, 0x1b000806, 0x1b601b10, 0x1b801b70, 0x1a1b1a05, 0xc840261b, 0xc84a1334, 0x71000426, 0x39310570, 0x5e5d2f2f, 0xe110715d,
0x11333311, 0xe1103912, 0x0c7b4332, 0x11201b83, 0x17821582, 0x87391132, 0x00102b10, 0x2b0587c1, 0x5d01c410, 0x015d3031, 0x3406b35a, 0x0e140523,
0x17160702, 0x1717021e, 0x11230323, 0x32331123, 0x1f8f4316, 0x48e7023d, 0x59534f5b, 0x1b920146, 0x431f392d, 0x212a1735, 0xceb30a0a, 0xa8e99d5f,
0x43ebfb9e, 0x033b2889, 0x4a454800, 0x4b30813b, 0x6e0d2839, 0x38472557, 0x60011111, 0x7d03a0fe, 0x43c3fe82, 0x01282883, 0x1406faff, 0xa0060604,
0x08196561, 0xfb060427, 0x060c04f4, 0x00008c14, 0x037b0002, 0x05f20256, 0x001300cb, 0x40430027, 0x0aab1e2c, 0x01299f29, 0x0030aa14, 0x301d8240,
0x0f10ae19, 0xe0020f20, 0x020ff00f, 0x00010f6f, 0x260e830f, 0x0f0f0603, 0x7605ae23, 0x5e2d0558, 0x715d5d5d, 0x5d2f01e1, 0xd6105de1, 0x05c746e1,
0x440b335c, 0x7b2a0fbb, 0x41735532, 0x32567341, 0x07835632, 0x7b32552c, 0x2846341e, 0x1e354628, 0x0783351e, 0x041e3423, 0x351e888f, 0x31315572,
0x27417255, 0x1e1e3445, 0x28274534, 0x1f1f3547, 0x97824735, 0x00662a08, 0x04020400, 0x000b00a2, 0x403a000f, 0x01111021, 0x0608080f, 0x010caa09,
0x00ef0301, 0x60002001, 0x0300a000, 0x0cad0d00, 0x38431809, 0x832f2009, 0x335d29a6, 0xe1331133, 0x33113232, 0x0f404318, 0x15213524, 0x4318e901,
0xfe230944, 0x189c037d, 0x08094843, 0x96fafe42, 0x00010096, 0x024a0231, 0x00c9056d, 0x4040001e, 0x00e10815, 0x204f2017, 0x2002207f, 0x480a0640,
0x0f01e11d, 0xffb8010f, 0x150e40c0, 0x08014818, 0x12e50b1d, 0x01e51dde, 0xe13f00dd, 0x3912e13f, 0x2f06dd4c, 0xde105d2b, 0x3031e132, 0x37352101,
0x3435033e, 0x5709c844, 0x390805f8, 0x02210707, 0xd1c4fd6d, 0x0f284839, 0x5d333642, 0x85364e2d, 0x44613c52, 0x4f361d25, 0x8c019433, 0xe4704a02,
0x3b43553e, 0x32404122, 0x41305e26, 0x395b3f21, 0x5b555632, 0x9f829d37, 0x39021f24, 0x9f826802, 0x61003038, 0x00033c40, 0x060e1919, 0x0000e11e,
0x3206e115, 0x328f325f, 0xa8833202, 0x0e27272a, 0x48201940, 0xe419030e, 0x35055f43, 0x1adf1a5f, 0x1a1a0805, 0xe5232612, 0xe512de2c, 0x00df0b0f,
0xb482333f, 0x39123326, 0xe15d5e2f, 0xb883ba85, 0x2f33e124, 0x148211e1, 0x82391221, 0x061421c0, 0x210b9448, 0x42431616, 0x84352007, 0x2e5d0808,
0x06222302, 0x033e2707, 0x021e3233, 0x45514e02, 0x53285858, 0x7b46567e, 0x35843f39, 0x606b5862, 0x545c6262, 0x1b2f2314, 0x4533613b, 0x4c443d1d,
0x4669452c, 0x4ee70423, 0x6a17186a, 0x47643c4e, 0x851f1928, 0x49532622, 0x4f71434a, 0x1e2f2040, 0x6025290e, 0x0f1a2517, 0x00533c22, 0x0d1d6401,
0x0500062e, 0x5f0c0f80, 0x000c020c, 0xcd1a5d2f, 0x08051d64, 0x37033e3d, 0x030e1533, 0x89012307, 0x2a2f2f16, 0x3f10db10, 0x7923514d, 0x4c1df404,
0x15225151, 0x5358511b, 0x0100001c, 0x14feae00, 0x4a041204, 0x37001d00, 0x090d2240, 0x1f550a47, 0x47201f10, 0x143507db, 0x541c471d, 0x031b1a1e,
0x0b161150, 0x0f091c15, 0x3f333f00, 0x0521703f, 0x105d3223, 0x051b7df6, 0x25057b46, 0x23113311, 0x174c2327, 0x078c6f05, 0x6401333b, 0x6e526f6a,
0x93b61c43, 0x90300a1b, 0x236a4867, 0x01020201, 0x8701b6b6, 0x08305682, 0x5453932d, 0x28262a2e, 0xfe2a5523, 0x823606c0, 0xfe712893, 0x066604fc,
0x82130014, 0x212d0893, 0x05009904, 0x05400530, 0x06040550, 0x010d0505, 0x10150099, 0x0d000115, 0x0d020d10, 0x05001203, 0x322f0000, 0x2f01c13f,
0xd6105d5d, 0x05b141e1, 0x2107cc60, 0xb75f0611, 0x33240807, 0x78660421, 0x553d79cf, 0x3c6d9b5f, 0x64a67741, 0xfcfe3302, 0x87f97906, 0x33123303,
0x938cc076, 0x003278c5, 0x93267982, 0x91014802, 0x79825e03, 0x1a40332b, 0x15801510, 0x15a01590, 0x94451804, 0x01e5271d, 0x5d5d2b2f, 0xfd435ded,
0x7a932011, 0x02210f0f, 0x12a94fd3, 0xfe233608, 0x00980114, 0x00190000, 0x141f4039, 0x7f151313, 0x02128f12, 0x0d061212, 0x061b0084, 0x158c121a,
0x480e0940, 0x0a131515, 0x2f00038d, 0x2f392fe1, 0x1001e12b, 0x27ed82c6, 0x5d2f3911, 0x33113333, 0x1420ef82, 0x2622ea82, 0x86423527, 0x2e340806,
0x33372702, 0x01031e07, 0x16968d98, 0x310f0f2d, 0x1a504710, 0x5a253f2e, 0x3a223979, 0xe1fe192b, 0x03066c61, 0x2b03036c, 0x1a231831, 0x73b00913,
0x3a291a08, 0x3c08ff83, 0x014a023f, 0x00b605ba, 0x4034000e, 0x7f104f21, 0x40100210, 0x0e480a06, 0x00e1020e, 0x038f037f, 0x30032002, 0x02030203,
0xe5090ddd, 0x3f00dc00, 0x013fcde1, 0x335d5d2f, 0x2b2f33e1, 0x0572525d, 0x34115308, 0x0637023e, 0x27070706, 0x91873301, 0x01030301, 0x5e16260e,
0xfcb6054a, 0x19040294, 0x16383c3c, 0x49112811, 0x02000060, 0x10034200, 0xc7058b02, 0x1f001300, 0x1ab22e00, 0xffb800e0, 0x091440c0, 0x2100480f,
0x1401210f, 0x17200ae0, 0x1dc005e4, 0x1b490fe4, 0x25f58205, 0x105de1d6, 0xf76f2bd6, 0x0a6c5b07, 0x080bd35c, 0x298b0234, 0x3f446d4d, 0x292b4e6a,
0x3e446d4c, 0xfe2c4e6b, 0x55564b3a, 0x56554b4b, 0x536d044b, 0x2f2f5982, 0x53538259, 0x2e2e5881, 0x77538158, 0x78777979, 0x8f837373, 0x73005424,
0xeb489603, 0x40562206, 0x06d0482f, 0x04eb0724, 0x01820a02, 0x090b0337, 0x9feb000e, 0x03100103, 0x03400320, 0x070d0303, 0x0300060a, 0x4801820a,
0x39230be3, 0x482f2f3d, 0x5d2309e3, 0x48c610e1, 0x112d05e2, 0x315de133, 0x27010130, 0x01370313, 0x08068505, 0xfe960320, 0xeded74ca, 0xfe360174,
0x75cbfe68, 0x0175eeee, 0xfe0e0235, 0x5c014e65, 0xfe4e5c01, 0x0a891b62, 0xff003f08, 0x003f00ff, 0x058b0500, 0x002600b6, 0x0000007b, 0x02170227,
0x0100004a, 0x023c0207, 0x00b7fdfc, 0x031d4030, 0x03181602, 0x0116bf02, 0x3f01168f, 0x01160116, 0x00011140, 0x00110111, 0x07820040, 0x11355d23,
0x2603845d, 0x0035355d, 0x8235353f, 0x822c2051, 0x85a02051, 0x85ed2051, 0x83352051, 0x74002351, 0x51823303, 0x1840282d, 0x02181402, 0x14011400,
0x8311b001, 0x0011244c, 0x85010070, 0x8249844c, 0x824a8351, 0x821f2049, 0x05ce2249, 0x209b82c9, 0x209b8675, 0x234983a8, 0x3f033c02, 0x3c254982,
0x02032740, 0x089b8238, 0x01387021, 0x38013850, 0x0133b401, 0x840133a4, 0x33640133, 0x01335001, 0x20013330, 0x0f330133, 0x825d014c, 0x835d20a3,
0x84ac8400, 0x020032a7, 0x77fe4400, 0x5e044403, 0x3b002700, 0x12404400, 0x06f57d32, 0x140b3208, 0x013d0f3d, 0x1c460b08, 0x40c0ffb8, 0x481b0f10,
0x27170b1c, 0x379b2d27, 0x51101310, 0xe12f0017, 0x32e53f33, 0x0139122f, 0x5ee12b2f, 0x11ce105d, 0x29128239, 0x3031e12f, 0x0e141501, 0xe5630702,
0x36322406, 0x44061737, 0x3724082b, 0x3535033e, 0x240f7c53, 0x27105002, 0x07fb7d41, 0x96543734, 0xbc524045, 0x67955d61, 0x51351b38, 0x26423436,
0x9953ba0e, 0x3a252411, 0x7d4c515b, 0x333509fb, 0x3a2a9223, 0x588a6033, 0x545a6844, 0x3e432d2f, 0x01132b43, 0x0e10442f, 0x00ffff22, 0x26080082,
0x7307dd04, 0x24002602, 0x07010000, 0xbdff4300, 0x15005201, 0x051502b4, 0xffb80226, 0x151bb49c, 0x01250704, 0x8200352b, 0x222f9202, 0x828d0076,
0x4013242f, 0x8221020b, 0x156c2230, 0x232d9b1b, 0x1f004b01, 0xff225d8b, 0x5d931db4, 0x8d873520, 0x06202b82, 0x1d205d86, 0x01225d82, 0x5d922c1e,
0xbb882b20, 0x21006a22, 0x172c2d82, 0x02030d40, 0x0326051e, 0x29150102, 0xbc832f85, 0x88003521, 0x860420bd, 0x06240831, 0x7d1f5001, 0x20403100,
0x1aef0203, 0x011adf01, 0x40011a50, 0x1a20011a, 0x011a1001, 0x1a011a00, 0x1f000203, 0x3521a086, 0x082a4200, 0x00353208, 0xfeff0200, 0x56060000,
0x0f00b605, 0x84001300, 0x13062a40, 0x015a0e0a, 0x03100111, 0x13a91304, 0x34132401, 0x03135413, 0x14010110, 0x0113010c, 0x0804820c, 0x0805033b,
0x04156700, 0xf0ffb805, 0x09052040, 0x03065f13, 0x5f0d105f, 0x010a4f0a, 0x0aaf0a0f, 0x0a100802, 0x03060a10, 0x055f0e04, 0x3f001201, 0x3f2fe133,
0x2f2f3939, 0x10715d5e, 0x280183e1, 0x382f0132, 0x32e61033, 0x063e7f11, 0x7d5d5d27, 0x11c4c487, 0x05215201, 0x2205e57a, 0x7a012303, 0x52080649,
0x21012111, 0x56062311, 0x25fe08fd, 0x8f02bacb, 0xc3fdc903, 0xeafd1602, 0x75fb3d02, 0x016c9301, 0x053bfec5, 0x3cfea4b6, 0x01f8fda2, 0x00a802c6,
0x7d00ffff, 0x980414fe, 0x2602cb05, 0x00002600, 0x7a000701, 0x0000fc01, 0x01b60b00, 0x18242a4f, 0x41012520, 0xc72a05ff, 0xbe030000, 0x26027307,
0x25842800, 0xb7ff4334, 0x15005201, 0x050c01b4, 0xffb80126, 0x0c12b4c2, 0x2f420001, 0x222f8f0a, 0x413f0076, 0x012105d1, 0x22308218, 0x9b120c4a,
0x4b01232d, 0x5d8bf1ff, 0x14b4fd22, 0x2b205d93, 0x6a228d88, 0x0142f5ff, 0x01022905, 0x02260515, 0x200c0101, 0x01425f85, 0x003e2408, 0x84640200,
0x852c20bf, 0xb5fe21bf, 0xa820618b, 0x5220bf8f, 0x8a202f82, 0x76222f8a, 0xbf8a78ff, 0xbf8e6a20, 0x2d821120, 0x2d89a920, 0x0f20bf82, 0x0c202d86,
0x0220ed82, 0x4020bd8e, 0x77212d82, 0x85bd8307, 0xff6a228b, 0x20bd8c0d, 0x08bd8d00, 0x00020040, 0x0400002f, 0x00b605fc, 0x001f0010, 0x1a3a405d,
0x5b110e1a, 0x20216708, 0x1c180121, 0x10100e5a, 0x20640e01, 0x185f101b, 0x0f01000f, 0x6f003f00, 0xdf00af00, 0x0600ff00, 0x1a400008, 0x6e82481d,
0x601c2208, 0x6017120e, 0x3f000302, 0x11e13fe1, 0x5e2b2f39, 0xe133715d, 0xe6100132, 0x102f3232, 0x105d32e1, 0x231683f6, 0x33133031, 0x3805c77d,
0x06021415, 0x11212304, 0x2e342523, 0x11232302, 0x11211521, 0x2f002033, 0x05cd7d98, 0xb6604508, 0xfea8f7fe, 0x08049892, 0x75b87e42, 0xfe5001c9,
0x0801a2b0, 0x25030c01, 0xb55c9102, 0xb9b0f4fe, 0x5ebbe9fe, 0x92608302, 0xfe438ad5, 0x1dfea20e, 0xffff2401, 0x0000c700, 0x35070e05, 0x31002602,
0x07010000, 0x8b20f582, 0x27062741, 0x01260520, 0x0a2f210a, 0x260b4342, 0x05ecff7d, 0x82730771, 0x4132202d, 0x002105b3, 0x2c2d8254, 0x2802b415,
0xb8022605, 0x2eb4abff, 0x222f9c28, 0x85020176, 0x3402215d, 0x58223082, 0x2d9b2e28, 0x004b0123, 0x832d86ae, 0x3005215e, 0xb9835b93, 0x29828b84,
0x8b857d20, 0x8b843020, 0x31b4f023, 0x205d923f, 0x22bb882b, 0x41aa006a, 0x032905e3, 0x26053102, 0x28010203, 0x422f853c, 0x210805a1, 0x8d000100,
0xdd032d01, 0x0b007b04, 0x00b98700, 0xb3f0ff06, 0x06481714, 0x40e0ffb8, 0x48120f18, 0x0d821000, 0x82200021, 0x83092009, 0x83092009, 0xb8032109,
0x07822485, 0x3040e022, 0x40341a82, 0x0507010d, 0x010b0305, 0x01035001, 0x0a0a0803, 0x20020204, 0x002a5982, 0x00500020, 0x00800070, 0x4a5500a0,
0x06092c05, 0x1900b300, 0x715d5e3f, 0x82331132, 0x2f012402, 0x8411335d, 0x315d2401, 0x822b0030, 0x84012000, 0x01800804, 0x17010137, 0x01070101,
0xcb012701, 0x0169c2fe, 0x6842013d, 0x3f01bffe, 0xfebefe66, 0xd30267c3, 0xfe693f01, 0x673e01c2, 0xc0febffe, 0xfe3d0166, 0x000067c5, 0xff7d0003,
0x057105b4, 0x001a00fc, 0x00310026, 0x293a405c, 0x041e2a1f, 0x015b271b, 0x040e0b19, 0x33670411, 0xbf0133c0, 0x33700133, 0x5f332f01, 0x5b1b0233,
0x1f326611, 0x042a1e29, 0x195f222d, 0x040b0e01, 0x04161a09, 0x090c5f2d, 0x26065477, 0xe1391712, 0x7a391711, 0x0c820957, 0x31321083, 0x16070130,
0x02141512, 0x22230606, 0x37270727, 0x50180226, 0x80080702, 0x14013717, 0x26011716, 0x0e222326, 0x27100502, 0x33161601, 0x05023e32, 0x5e5b5c14,
0x9beda051, 0x894e85bd, 0x4c5b615a, 0x5ea3f09e, 0xfc5042a1, 0x02302eb7, 0x47723043, 0x346ca672, 0xfd586a03, 0x45722fbe, 0x326ba572, 0x6395ae05,
0xa9b7defe, 0x6cc6eafe, 0x914e7f47, 0xbe2a0164, 0xc41501aa, 0x7f262a6b, 0xd183e1fc, 0x1db1034e, 0xda975120, 0x9701018a, 0x1e1c54fc, 0xffdb9951,
0xffb800ff, 0x065d47ec, 0xb9423820, 0x013d3106, 0xb4150052, 0x26051801, 0xc0ffb801, 0x0b181eb4, 0x8f0be942, 0x0076222f, 0x058b42c5, 0x82240121,
0x18482230, 0x232d9b1e, 0x79004b01, 0xfd225d8b, 0x5d9320b4, 0x26022b23, 0x228d8500, 0x427d006a, 0x0229058b, 0x26052101, 0x18010102, 0x475f852c,
0x37220c2f, 0x31827307, 0xbf843c20, 0x31007622, 0x15208f86, 0x63248f82, 0x02070f09, 0x2207eb45, 0x7b000200, 0x103f0771, 0x3c001b00, 0x5b172140,
0x9f1d6700, 0x1d10011d, 0x070b1101, 0x1c64085a, 0x1b066011, 0x82060b60, 0x7b072001, 0x12280666, 0x2f2f3939, 0xe110e110, 0x20051871, 0x05c1685d,
0x0e14012c, 0x11232302, 0x15331123, 0x697b3233, 0xb0ba2113, 0x2b0d697b, 0xa85b0e03, 0xc3fe4d81, 0x39fcb605, 0x21076a7b, 0xb282888f, 0xae005d08,
0x7504ecff, 0x4b001f06, 0x48406d00, 0x352e4607, 0x190f0047, 0x192f191f, 0x0d401903, 0x2e5f4813, 0x0f022e6f, 0x2f001f00, 0x19080300, 0x2e00002e,
0x24410319, 0x4d571147, 0x4d204d10, 0x40034dc0, 0x4c544147, 0x03350724, 0x47503a16, 0x1f154101, 0x16161a50, 0xe1333f00, 0x12e13f3f, 0x21068a42,
0x0a83f610, 0x2f2f2f27, 0x2b5d5d5e, 0x21cd835d, 0xc2823031, 0x58150421, 0x23200952, 0x6607f779, 0x04260b57, 0x022e3435, 0x01672223, 0x70342005,
0x530805bc, 0x3f2bf203, 0x0e2b3f4b, 0x38394627, 0x38213d58, 0x61558d65, 0x411a358b, 0x38254c48, 0x11183451, 0x3f38482b, 0x29163555, 0x293e483e,
0x33533c21, 0x27425831, 0x9c713fb6, 0x6c985c5c, 0x39ec043c, 0x373c4959, 0x21151e36, 0x25263127, 0x3e605248, 0x27517e57, 0x08067866, 0x402d194d,
0x383b2428, 0x4428233a, 0x362a4643, 0x3a363f4f, 0x3e2a2c43, 0x30131329, 0x4efb4153, 0x8d68b004, 0x4c262555, 0x00ffff74, 0x03ecff5e, 0x0221069c,
0x00440026, 0x00060100, 0x00009443, 0x3302b415, 0xb8022611, 0x39b4e5ff, 0x41220c33, 0x2d9207f7, 0x00357628, 0x0b401300, 0x2e823f02, 0x39338522,
0x01222b9b, 0x2b85e24b, 0x33215a83, 0x2157923b, 0x8587e305, 0xbd520122, 0x3b202b85, 0x29225782, 0x57914a3c, 0x88d90521, 0xde6a30b1, 0x40170000,
0x3c02030d, 0x02032611, 0x8547332f, 0x08d9422d, 0x8720e185, 0x50205b88, 0x38202f87, 0x30212f83, 0x8589863d, 0x0300222f, 0x082f8200, 0x04440661,
0x0038005e, 0x00500047, 0x2f1a407c, 0x481e4b14, 0x00424204, 0x1d26484c, 0x524f5257, 0x529f525f, 0x00483903, 0xc0ffb80e, 0x110d2e40, 0x000e0e48,
0x42005156, 0x42024210, 0x0400501e, 0x04020410, 0x4b1f4b0f, 0x4b4b0702, 0x503c2111, 0x16342c2f, 0x500a0d48, 0x10111417, 0x33333f00, 0x843232e1,
0x39113605, 0x335d5e2f, 0x5d32e15d, 0x32e61001, 0xe1102b2f, 0x32f6105d, 0x05055fe1, 0x7405be5a, 0x16210ff8, 0x06fe7417, 0x2e721520, 0x2223230a,
0xc6572726, 0x14372205, 0x05af5716, 0x030e0724, 0x44722201, 0x755e2005, 0x27080d0f, 0x332ba683, 0x9a6167a6, 0x60fd396c, 0x31939305, 0x254a4e55,
0x554f4b27, 0x3eca8a31, 0x745f4c22, 0x5a7b474a, 0x4f61bd34, 0x2b083175, 0x7f6e8503, 0x1ad7010b, 0x33015437, 0x230d3375, 0x5d555d55, 0x2c0f7472,
0x55367372, 0x51271f3b, 0x565c527b, 0x084c7526, 0x9c630237, 0x50714495, 0xffff002c, 0x14fe7100, 0x5e046f03, 0x46002602, 0x057d4a00, 0x0000422c,
0x01b60b00, 0x0520262f, 0x7d4a250d, 0xff712606, 0x06e103ec, 0x20258221, 0x0b974248, 0x2611282b, 0xb9ffb802, 0x05282eb4, 0x0a97420f, 0x76212d8f,
0x053f4252, 0x2e823420, 0x2e287622, 0x01222b9b, 0x2b85de4b, 0x03215a83, 0x21579230, 0x8588d905, 0x42da6a21, 0x3127066b, 0x02032611, 0x853c2800,
0x053b4259, 0xffffff22, 0x01214a82, 0x20b58467, 0x22db84f3, 0x8255fe43, 0xb4152cdb, 0x26110401, 0x9affb801, 0x4b040ab4, 0xae240c05, 0x42020000,
0x76222f8a, 0x2f8230ff, 0x0b401324, 0x30821001, 0x0a047422, 0xff212d8b, 0x202d82bd, 0x232d8955, 0xbbfe4b01, 0x5e832d86, 0x8c0c0021, 0xeeff215b,
0x25202d82, 0x8b85bb84, 0x2d846a20, 0x0d40172c, 0x110d0102, 0x00010226, 0x314b1804, 0x0061080b, 0xff6f0002, 0x062d04ec, 0x00270023, 0x40740039,
0x48281246, 0x16202300, 0x221c0419, 0x22221c18, 0x0a03181c, 0x403b5700, 0xe03bd03b, 0x3b0f033b, 0x48320601, 0x203a560a, 0x04162319, 0x1d212117,
0x120f502d, 0xbf0faf0f, 0x0f30020f, 0x170f1701, 0x37011d0f, 0x00160550, 0x393fe13f, 0x5d2f2f39, 0x05ee615d, 0x4b451120, 0x5d5e2406, 0x4ce6105d,
0x128305e2, 0xf2531020, 0x0b516e05, 0x37171627, 0x05272626, 0x21058327, 0x0d821637, 0x1e071724, 0x48450703, 0x1e142507, 0x36323302, 0x0805676e,
0x7faf6887, 0xa8763f47, 0x2b9a6669, 0x5a781f08, 0xd94a00ff, 0x462f5528, 0xe33b7a41, 0x6f43c34a, 0x22bc2c4f, 0x4d4b6e46, 0x2121466d, 0x9a4c6d47,
0x8e3d0287, 0x424f98dc, 0x7777b97f, 0x3b417eb8, 0xc076043c, 0x83729951, 0x7b1a371c, 0x8a2c4820, 0x9c417571, 0x38b0ddbb, 0x2e32526b, 0x4c558358,
0xc7315a7d, 0x00ffff00, 0x040000ae, 0x02e30512, 0x00510026, 0x01060100, 0x0000f952, 0x010b4013, 0x01261121, 0x0b302202, 0x0d914217, 0x062d0423,
0x202b8221, 0x05bf4252, 0x0000d82f, 0x2002b415, 0xb8022611, 0x26b4d7ff, 0x0c3b4a20, 0xecff7122, 0x76212d8c, 0x21598450, 0x2e822c02, 0x26204e22,
0x01222b9b, 0x598afb4b, 0x28b4fa22, 0xb3845992, 0x01228784, 0x2d84e252, 0x87842820, 0x29b4fd23, 0x215b9137, 0xb588d905, 0x00f96a2b, 0x03b61900,
0x26112902, 0x23b78203, 0x3420b4f9, 0x080cc34a, 0x66000375, 0x0204f800, 0x0300ac04, 0x2b001700, 0x15406000, 0x22012d30, 0x0e1818aa, 0x660356aa,
0x03280203, 0x03020338, 0xf0ffb800, 0x0d092840, 0x27040048, 0x011d10ad, 0x1d011d0f, 0xad09011d, 0x13101300, 0x13601320, 0x13c013b0, 0x070713d0,
0xad001313, 0x3f00b301, 0x5e2f33e1, 0x3311e15d, 0xe1715d2f, 0x2b332f01, 0xe15d5d33, 0x5de12f33, 0x35133031, 0x18011521, 0x180e3952, 0x340f4952,
0xfd9c0366, 0x291f12bf, 0x202a1718, 0x2a201212, 0x1f291817, 0x360f8f12, 0x96968702, 0x2f23eefe, 0x1e0d0d1e, 0x2f21232f, 0x1f0e0e1f, 0x8edb022f,
0x00550810, 0x73000300, 0x2f04b4ff, 0x1a009104, 0x2d002400, 0x3b405c00, 0x1e281f27, 0x48251b04, 0x15161817, 0x090a0807, 0x57000d08, 0xd02f402f,
0x032fe02f, 0x06012f0f, 0x560d481b, 0x271e282e, 0x222b041f, 0x180a0750, 0x16050415, 0x502b1012, 0x00160508, 0x3fe1c63f, 0x0adc4ac6, 0x5d5d5e24,
0xdb4af610, 0x0e142209, 0x06d64a02, 0x84352621, 0x171627e5, 0x16071737, 0xd94a0516, 0x05062207, 0x05d84a34, 0x2f043634, 0x6fb27d43, 0x8344627d,
0x43463f50, 0x3f6fb37c, 0x0b823171, 0xfd453e33, 0x01161300, 0x2d4b1d8d, 0x4402879a, 0x1f72fe27, 0x29098348, 0x91d58927, 0x4a6d354c, 0x76714883,
0x1d260805, 0x81496c1c, 0x5486d149, 0x87023383, 0xd1cf1211, 0x7bfd639f, 0x00d31011, 0xa400ffff, 0x0804ecff, 0x26022106, 0xbb425800, 0x00a33105,
0x01b41500, 0x0126111b, 0xb49bffb8, 0x190c1b21, 0x8f0ae942, 0x6076282d, 0x40130000, 0x8227010b, 0x1b57222e, 0x222b9b21, 0x85084b01, 0x215a832b,
0x57922300, 0x88d90521, 0x026a2b85, 0xb6190000, 0x11240102, 0x87820226, 0x1bb4fb23, 0x475b852f, 0x0a2408e9, 0xdf0314fe, 0x5c20b784, 0x7621b784,
0x205d850e, 0x2389822f, 0x00292367, 0x72083146, 0x2a080767, 0x20001406, 0x38003100, 0x482f1f40, 0x1033570a, 0x20270133, 0x471b151f, 0x1d32541c,
0x2c1b1b00, 0x160f1550, 0x05005021, 0x7a3f0010, 0x32200a8d, 0xbd4a0082, 0x05875906, 0x0e141525, 0x72222302, 0x11220c74, 0x6a722507, 0x6401210d,
0x7b0b5c72, 0x032806de, 0xb6040203, 0x1f0108b6, 0x210bc271, 0x5e72b603, 0x0a78720b, 0xfe000825, 0x72119436, 0xff220d6d, 0xf58400ff, 0x02d90524,
0xf5850026, 0x00b16a30, 0x0d401700, 0x112c0102, 0x0b010226, 0xf7853723, 0x220ce94b, 0x53c106dd, 0x4d220879, 0xa9533300, 0x05172905, 0xffb80226,
0x1615b4ff, 0x260c7b53, 0x03ecff5e, 0x496f059c, 0x4d21083f, 0x05c749e6, 0x5e823520, 0x34332322, 0x54056d49, 0x40200c33, 0x4e225b88, 0x454c2100,
0x1a022105, 0x62535c82, 0x852d8608, 0x88ee2059, 0xd44e2159, 0x38205985, 0x25205982, 0x86079749, 0xfe00262b, 0x05dd0442, 0x265988bc, 0x00620351,
0x82140000, 0x27803ae7, 0x01273001, 0x00272700, 0x2b012500, 0xff355d5d, 0xfe5e00ff, 0x04b80342, 0x2459865e, 0x02510107, 0x352d825a, 0x02164020,
0xa00145f0, 0x45900145, 0x01458001, 0x00014530, 0x36864545, 0x39855d20, 0xecff7d26, 0x73079804, 0x22081b53, 0x850a0176, 0x300127c1, 0xcd012605,
0x20532a24, 0x05235306, 0xecff7126, 0x21066f03, 0x3606cb48, 0x4a760006, 0x40170000, 0x112c010e, 0x20100126, 0x2620a701, 0x82250d05, 0x86352094,
0x235d8ec5, 0xb4004b01, 0x210af54d, 0x7e532c77, 0x205d8907, 0x225d898f, 0x85f54b01, 0x8320205d, 0x0128235d, 0x2f492853, 0x8d5d2005, 0x8737205d,
0x4f0123bb, 0x5d860002, 0xbb822f20, 0x2c248022, 0x0521bb91, 0x25bb86e5, 0x014f0107, 0x5f850033, 0xbd852b20, 0x28204d22, 0x4c22bd9d, 0x5f86a800,
0x5f822920, 0x912f6b21, 0x8aa020bd, 0x064c21bd, 0x25205d85, 0x2b235d83, 0x8e2b6401, 0x00c726bd, 0x07fc0400, 0x288f8273, 0x01000027, 0x004c0107,
0x0597424a, 0x26051d2a, 0xb7ffb802, 0x061823b4, 0x260b414f, 0x05ecff71, 0x82140652, 0x8347202f, 0x3802232f, 0xbf82d902, 0x02b60b28, 0x1d3e3e5e,
0x474a251d, 0x06475306, 0x00060223, 0x211d8292, 0x35820002, 0x9e044208, 0x27001406, 0x55003800, 0x1b1f3140, 0x26472d00, 0x220b1d1d, 0x103a5526,
0x4836013a, 0x2739560b, 0x4f1d2515, 0x101e1e22, 0x50330020, 0x10100016, 0x03102010, 0x50281010, 0x00160600, 0x3fe1333f, 0x2503825d, 0x332f3912,
0xb57532e1, 0x32e62b06, 0x102f3911, 0x323232e1, 0xa47e3031, 0x05a76716, 0x15331523, 0x2aac7e23, 0x0185fe27, 0x9c9cb67b, 0x12b27e93, 0x8a462508,
0xce8786cc, 0x2c19478b, 0x1f21203a, 0x9e10371a, 0x89b6b689, 0x2c832bfb, 0x275a8559, 0x34669561, 0xc3c6c3cf, 0x23058153, 0xc106be03, 0x22073955,
0x42004d01, 0x0e2607d1, 0x02012605, 0x914a0d0c, 0xff71260c, 0x05e103ec, 0x07f14a6f, 0x93432d82, 0x112a2605, 0x28110226, 0x0c494b29, 0x2005f155,
0x22598840, 0x42fbff4e, 0x1120060f, 0x06215982, 0x0dc15516, 0xee205985, 0x4e215988, 0x205985ea, 0x2159822d, 0x774b320f, 0x2059850d, 0x2a59881a,
0x013f014f, 0x40130035, 0x8217010b, 0x0c072259, 0x20b39214, 0x255986e5, 0x014f0107, 0x5b85002b, 0x5b823320, 0x30280c22, 0xfe25b58d, 0x05be0342,
0x225b88b6, 0x82210251, 0xb90e382d, 0xc1ff0100, 0x001212b4, 0x2b012500, 0x00ffff35, 0x0361fe71, 0x885e04e1, 0x51230855, 0x1f003b02, 0x13402700,
0x013bf002, 0xa0013be0, 0x3b90013b, 0x013b5001, 0xb8013b00, 0x3bb4caff, 0x821a1a3b, 0x845d203a, 0x00352100, 0x57077941, 0x01230941, 0x41f9ff4c,
0x04210a1f, 0x121f4117, 0x2209f14c, 0x41e44c01, 0x0921091f, 0x0d1f4133, 0xecff7d24, 0x5984f204, 0x00002a28, 0x4b010701, 0x5986d700, 0x26052c28,
0x2c346d01, 0xa147010c, 0xfe25240a, 0x84fc0314, 0x824a2059, 0x0106232d, 0x5984c64b, 0x115f0328, 0x67030326, 0x8155275f, 0x2059820e, 0x85f58240,
0x004e2259, 0x205986c9, 0x21598231, 0x5992365f, 0x82ee0521, 0x2759852d, 0x0000b14e, 0x6403b415, 0xb8245882, 0x69b4efff, 0x37205b93, 0x4f225b88,
0x5b860c02, 0x5b833720, 0x91342c21, 0xe50521b5, 0x07255b86, 0xf2004f01, 0x205d8400, 0x235d846a, 0x675fb4ec, 0xfe25b98d, 0x05f2043b, 0x235d87cb,
0x17013902, 0x0b252f82, 0x2c5101b6, 0x22588632, 0x4100ffff, 0x02220e0b, 0x0b412d3a, 0x21b28305, 0xaf8d651c, 0x0000c726, 0x7307d504, 0x2b215182,
0x05654100, 0x41587f20, 0xb4ff240b, 0x41050c14, 0xae200b3b, 0x12222f82, 0x2f82aa07, 0x2f864b20, 0x89012b39, 0x14401f00, 0x70010d70, 0x7001010c,
0x021a011a, 0x22190126, 0x41180b1a, 0x5d27059e, 0x005d5d35, 0x82000200, 0x05300800, 0x00b6059c, 0x00170013, 0x142f4056, 0x075a0c04, 0xb019650b,
0x19af0119, 0x01191001, 0x5a0f0317, 0x18641000, 0x16175f0e, 0x1360120a, 0x17130307, 0x01240182, 0x05120b10, 0x2505496c, 0x39391233, 0x466c2f2f,
0x10322205, 0x05d77ee1, 0x5d5d3230, 0x32f6105d, 0x313232e1, 0x33351330, 0x03822115, 0x23153326, 0x21112311, 0x23380382, 0x21350135, 0x02bac715,
0xc7c7ba9a, 0xba66fdba, 0xfd1b04c7, 0xf3c30466, 0x4f080082, 0x02d3fb96, 0x0456fdaa, 0x8bfe962d, 0x0100dfdf, 0x00001200, 0x14061204, 0x55002100,
0x0b133440, 0x55214700, 0x60231023, 0x03238023, 0x0a121617, 0x540b0f47, 0x4f0d1522, 0xcf0ebf12, 0x0e0e020e, 0x50041710, 0x1d101d00, 0x1d031d20,
0x0b001010, 0x2106ea7f, 0xa782e15d, 0x335d2f24, 0xa08632e1, 0x9f823220, 0x3912e122, 0x220d777d, 0x82333523, 0x152123a8, 0xfe7f1521, 0x9c9c2711,
0xfe7b01b6, 0x40180885, 0x2f080804, 0x3482829a, 0xfd609466, 0x89d504f0, 0xb889b6b6, 0x2a3f2b90, 0xfdd2bf14, 0xffff005c, 0x0000f5ff, 0x3507c402,
0x2c002602, 0x07010000, 0xf3fe5201, 0x26067142, 0x01260514, 0x44231501, 0xff210b47, 0x222d82a3, 0x82e30572, 0x86f3202d, 0x44a1202d, 0x01220547,
0x2d82110c, 0x441b0d21, 0x3d200c75, 0x7c222d82, 0x5b88c106, 0x22ff4d22, 0x0e205b86, 0x57455b83, 0xebff210d, 0x2a222d82, 0x5b886f05, 0xd0fe4d22,
0x06205b86, 0x04215b83, 0x205b8c05, 0x222d8230, 0x8840078a, 0xff4e215b, 0x20075d5a, 0x205b8211, 0x0d594502, 0x82deff21, 0x0538222d, 0x225b88ee,
0x86bdfe4e, 0x8209205b, 0x0e02215b, 0x270c1750, 0x42fe5200, 0xb6056402, 0x51225b88, 0x27439c00, 0x19002105, 0x2907a25b, 0x4400ffff, 0x830142fe,
0x2582e505, 0x00004c2f, 0x51010601, 0x10000025, 0x6f020a40, 0x82a88225, 0x0125240b, 0x82355d2b, 0x82522027, 0x0764227b, 0x224d8837, 0x4150004f,
0x17200605, 0x0020a982, 0x7c0ba945, 0x01240557, 0x004a0464, 0x200fff7f, 0x13ff7f0f, 0x834a0421, 0x7bfe265f, 0xb6052904, 0x06c14100, 0x022d0023,
0x08ad82b6, 0x0e403828, 0x187f1801, 0x01184f01, 0x07074018, 0xffb81848, 0x061740c0, 0x21bf4806, 0x0121a001, 0x5001218f, 0x210f0121, 0x1c832101,
0x835d2b21, 0x822b2000, 0x83112006, 0xfea026b1, 0x05870314, 0x835182e5, 0x000724d9, 0x8212024d, 0x402e3f51, 0x1e020320, 0xdf011ecf, 0x359f0135,
0x01358001, 0x4001355f, 0x35200135, 0x01350001, 0x5b824035, 0x4b824785, 0x82351121, 0x48ff2347, 0x5f5c7bfe, 0x002d2806, 0x01070100, 0x86cafe4b,
0x831420f9, 0x141c23f9, 0x83450e0d, 0xbcff2b09, 0x570214fe, 0x26022106, 0x2d863702, 0x2407a341, 0x01261114, 0x2b2d8d00, 0x3bfec700, 0xb605a204,
0x2e002602, 0x062e2d82, 0x00733902, 0x00b90e00, 0xb4b1ff01, 0x7344130d, 0xffff2905, 0x3bfeae00, 0x1406f003, 0x4e202582, 0x21202585, 0xc4252586,
0x0a150fb4, 0x087d8405, 0xae000137, 0xf0030000, 0x11004a04, 0x0a404900, 0x0e101001, 0x11440f0f, 0xffb81101, 0x071c40c0, 0x1011480a, 0x0f131111,
0x02132f13, 0x47030707, 0x0c125404, 0x0f050e01, 0x05b04304, 0x39393327, 0xe1f61001, 0xff411832, 0x11400808, 0x33113933, 0x01213031, 0x11231107,
0x06141133, 0x37070607, 0x01013301, 0xacfe2303, 0x05b4b46d, 0x83040403, 0xfecd3301, 0x01ac016f, 0x68fe51e9, 0xe7fe4a04, 0x2c26663c, 0x8101b024,
0xa0fd16fe, 0x200d1747, 0x24b7822f, 0xff760007, 0x05574565, 0x2605122b, 0x70ffb801, 0x000c06b4, 0x093b4104, 0x00ab0027, 0x07340200, 0x20e782ac,
0x352f864f, 0x008b0122, 0x7014401f, 0x02700103, 0x10700101, 0x26021001, 0x2e536601, 0x355d2309, 0x69845d5d, 0x473bfe21, 0x698306eb, 0x39020623,
0x0621412d, 0x6388dd20, 0x00ffff29, 0x013bfe66, 0x8714066c, 0x3902245f, 0x8600f7fe, 0xb4e02127, 0xcf475487, 0xb7052107, 0xb7842782, 0x01380234,
0x00a3ff00, 0x010d4016, 0x1001030b, 0x06600106, 0xb783020c, 0xbb625d20, 0x82ae2006, 0x88b420b7, 0x02063857, 0x00003b38, 0x01114018, 0x100e4004,
0x06400448, 0x045e4809, 0x82030304, 0x2b2b22e9, 0x205f8835, 0x2c5f87b6, 0xe3014f01, 0x0b0065fd, 0x06ab01b6, 0x0610410e, 0x2b058552, 0x1406a202,
0x4f002600, 0x07010000, 0x21082582, 0x0038fd2d, 0xff16402b, 0x13ef0113, 0x01139f01, 0x7f01138f, 0x135f0113, 0x01131f01, 0x2e01b801, 0x694804b4,
0x855d2006, 0x08368200, 0x001d0035, 0x05be0300, 0x000d00b6, 0x0b324061, 0x050c0506, 0x0d040300, 0x05050404, 0x0f08080a, 0x10010faf, 0x0d0c010f,
0x0703060d, 0x0a000b5a, 0x04050e64, 0x82040c0d, 0x07012a01, 0x01120a5f, 0x3f3f0003, 0x067146e1, 0x33112208, 0x32f61001, 0x3232e132, 0x5d332f33,
0x1133115d, 0x332f3912, 0x04877d10, 0x8710c4c4, 0x3031c4c4, 0x08138213, 0x05173725, 0x21152111, 0xc7270711, 0xfe4ee3ba, 0xfd3d02cf, 0x02496109,
0xfd1203a4, 0xbe7d8f63, 0x01a639fe, 0x827d3cf8, 0xf6ff2599, 0x1d020000, 0x0b2ddf82, 0x3b406900, 0x0d500d40, 0x05060902, 0x379e830a, 0x0b0b0a0b,
0x05dd0408, 0xcb05bb01, 0x050f0205, 0x052f051f, 0x05050603, 0x472aa482, 0x54080009, 0x050a0b0c, 0x01820a04, 0x15070124, 0xa2820001, 0x3227a190,
0x5d5d5e2f, 0x8211335d, 0x219f88a9, 0xa1875d01, 0x23110722, 0xae369f82, 0xb94e6bb6, 0x024e6ab6, 0xfd1e03f6, 0x78794559, 0x4a023ffd, 0xcb5e7946,
0x5e732008, 0x002307cb, 0x4df20076, 0x55220abd, 0x4b531e18, 0x00ae260c, 0x06120400, 0x072d5421, 0x6f76002f, 0x40130000, 0x1125010b, 0x195c0126,
0x0c2d541f, 0x3bfec726, 0xb6050e05, 0x02235987, 0x42d90039, 0xe1210781, 0x435787b4, 0x042305f1, 0x875e0412, 0x39022253, 0x06a7424c, 0x87b4de21,
0x23a79151, 0x9c004c01, 0x1d26a786, 0x00012605, 0xa79b1823, 0x0c4c0128, 0xb4150000, 0xa6821e01, 0xfaffb825, 0x8b1924b4, 0x085d82a9, 0xa1040034,
0x2700b605, 0x8f005100, 0x06010000, 0x00e80702, 0x1d402900, 0x27551800, 0xbf0127ef, 0x279f0127, 0x01275f01, 0x2701272f, 0x48080840, 0x06064027,
0x3b452b48, 0xf6102205, 0x23328234, 0x7bfec700, 0x4408ed83, 0x4a002500, 0x0c182a40, 0x04205a1f, 0x65201504, 0x0127b027, 0x0001278f, 0x02271027,
0x140e1317, 0x2664155a, 0x03160d1f, 0x0c181215, 0x005f0712, 0x3fe12f00, 0x333f3f33, 0xf6100133, 0x323232e1, 0x105d5d5d, 0x06774de6, 0x01303122,
0x2109707c, 0x43180135, 0x2c0809fd, 0x27263301, 0x11352626, 0x0e141133, 0x338b0302, 0x4e221b4d, 0x3d4b252d, 0x0808fd26, 0x05040406, 0xcc02d5ac,
0x03040307, 0x6437ae05, 0x775b188f, 0x1f59180a, 0x4175270b, 0x347d3841, 0x5b182003, 0xdd6a0989, 0x5e2f0805, 0x3a002800, 0x03032240, 0x24470c17,
0x2a102a55, 0x2a802a60, 0x47161a03, 0x1a295417, 0x10205010, 0x15170f18, 0x1b005007, 0x3fe13f00, 0x85e13f3f, 0x087861b8, 0x1320b18b, 0x116b4618,
0x82031521, 0xee0221b1, 0x090d4818, 0x70690229, 0x1d436e51, 0x481a94b6, 0x222208fc, 0x48186d48, 0x03210a14, 0x060b496d, 0x4a04c723, 0x05064994,
0x4d95fc3b, 0xff2f577b, 0xff7d00ff, 0x067105ec, 0x002602c1, 0x01000032, 0x004d0107, 0x051342bc, 0x052a0227, 0x28000226, 0x0c134229, 0xecff7126,
0x6f052d04, 0x2a070756, 0x00144d01, 0x0b401300, 0x82112202, 0x2120212b, 0x59842b8c, 0x88400721, 0x004e2259, 0x205986aa, 0x2159822d, 0x55613201,
0x2059850d, 0x275988ee, 0x0000004e, 0x2502b415, 0xb8245882, 0x2ab4ffff, 0x850dbd56, 0x080f625b, 0x00530123, 0x2a5b82ec, 0x030d4017, 0x26053402,
0x61430203, 0xe7820d53, 0x230e4957, 0x00465301, 0x21051d5c, 0x2f82112c, 0xbf564520, 0x0002210e, 0x44086182, 0xcd05a406, 0x2a001900, 0x36405b00,
0x16011614, 0x18140016, 0x0927275a, 0x2c670012, 0x1f012c1f, 0x2b66095b, 0x144f5f17, 0xaf140f01, 0x14080214, 0x5f121914, 0x5f1a0311, 0x5f24040e,
0x5f191304, 0x3f001200, 0x210185e1, 0x60183912, 0x5d270895, 0x1132e610, 0x83e12f39, 0x315d2504, 0x06212130, 0x0cbe5918, 0xbe651720, 0x08b67409,
0x37363108, 0x06262611, 0x2b0afda4, 0xefa3305b, 0x9e4c4c9d, 0x5462a3f0, 0xc2fdf402, 0xe9fd1702, 0x56fc3e02, 0x346ca672, 0x72a56b34, 0x26265a34,
0x6c0b0959, 0x081a5b18, 0xe1651720, 0x85043a05, 0x8ada9751, 0x5199db89, 0x58040f12, 0x00001110, 0xff710003, 0x04e106ec, 0x08df825e, 0x3f003641,
0x3b406400, 0x1d3f0313, 0x0131d048, 0x370b3131, 0x571c2548, 0x01410f41, 0x400141ff, 0x482b0141, 0x1d40560b, 0x2b3f1b50, 0x3f0f023f, 0x3f3f0601,
0x50343c2e, 0x10101316, 0x03502e20, 0x5c160600, 0x3f2405bd, 0x32e13333, 0x0ad04e18, 0x715d5d22, 0x2a06b75c, 0x3932e15d, 0x05303139, 0x68272622,
0x332109f8, 0x14b55c32, 0x18140121, 0x3d09d24c, 0x022e3405, 0x07062223, 0xcc826005, 0x80c63f41, 0x477fae67, 0x6fb37c43, 0x3c3fc379, 0x4e1875b9,
0xfb3711fc, 0x969a899a, 0x9a978c8b, 0x1bf00487, 0x723e5839, 0x70140b85, 0x18706d6d, 0x23075448, 0x70696a6f, 0x300f995c, 0xd3d13b02, 0xcedcd1c9,
0x714462cf, 0x959c2c50, 0x05294500, 0x07a00426, 0x00260273, 0x20059f6a, 0x076f6476, 0x2605292b, 0xeeffb802, 0x02231db4, 0x0a89480d, 0x0000ae23,
0x05195703, 0x00005527, 0x76000601, 0x05d345ce, 0x26112328, 0x1d174001, 0x2b8a030e, 0x3bfec726, 0xb605a004, 0x062b5b86, 0x00773902, 0x00b90e00,
0x88b6ff02, 0x26818255, 0x033bfe60, 0x825e0408, 0x25518325, 0xfe390207, 0x278400f1, 0x08ff0123, 0x915187b4, 0x4c012aa9, 0x52010e00, 0x02b41500,
0x23a98422, 0x1d28b4a9, 0x7220a98c, 0x0a22a982, 0x57872106, 0xff4c0123, 0x23578270, 0x1c01b415, 0xb825aa82, 0x22b4e3ff, 0x26ad8c17, 0x03ecff68,
0x827307c9, 0x4936202f, 0x00210563, 0x05c5433b, 0x05400128, 0x34700126, 0xe94e083a, 0x825a200b, 0x843f202d, 0x8256205d, 0x0006232d, 0x0741dc76,
0x82422005, 0x365d225c, 0x8e2b8c3c, 0x4b012359, 0x5986edff, 0x59823420, 0x343c2222, 0x598e2d8c, 0x9b4b0122, 0x36205985, 0x1c225982, 0x2b8c363e,
0x14fe6826, 0xcb05c903, 0x7a22b388, 0x3b413501, 0xb4fa2207, 0x2357863a, 0x5a00ffff, 0x3f222782, 0x27825e04, 0x0724ad83, 0xf0007a00, 0x0b242782,
0x3c0101b6, 0x25825087, 0x4c22a78f, 0xa786e6ff, 0xa7823920, 0x9d3f1b21, 0x974c21a7, 0x3b20a785, 0x1821a782, 0x26a78d41, 0x043bfe14, 0x82b60512,
0x0037277f, 0x02060100, 0xe141f939, 0xb4d82506, 0x05030e08, 0x26066f52, 0x023bfe21, 0x8246058f, 0x82572025, 0x02072425, 0x875dff39, 0xb4f724cd,
0x8712241e, 0x00142627, 0x07120400, 0x244d8673, 0xff4c0107, 0x20a786c8, 0x22a7820d, 0x85081303, 0x06715651, 0xecff2126, 0x1406e802, 0x062c5586,
0x006f3802, 0x01b60b00, 0x18242461, 0x18058350, 0x080a275c, 0x73000f5c, 0x111f4c40, 0x0111e001, 0x11df115f, 0x30112002, 0x03114011, 0xff05bf08,
0x05050205, 0x015a060a, 0x0250010f, 0x1f0202f0, 0x02020102, 0x8701770d, 0x03019701, 0x00010131, 0x20011001, 0x01070301, 0x07600d0a, 0x0b030000,
0x5f020612, 0x3f000303, 0x123f32e1, 0xe1332f39, 0x79490132, 0x2f333605, 0x39125d5d, 0x3232e110, 0x5d395d2f, 0x31715d5d, 0x21110130, 0x070c4535,
0x0b822320, 0xfeb6013c, 0xfefe035e, 0xfe27015f, 0xd7febbd9, 0xdf013303, 0x21fea4a4, 0x0262fd95, 0x4918959e, 0x41080a2f, 0xb66a0025, 0x20011f14,
0xb8051c1c, 0x3740c0ff, 0x05480b08, 0x272f2705, 0x1f02273f, 0x1347231b, 0x161f160f, 0x14181602, 0x10101000, 0x10b010a0, 0x070510c0, 0x4f221110,
0x0b1f1f14, 0x1a4f1e15, 0x49181b18, 0xa6890c3c, 0xc4333324, 0xa182325d, 0x33115d2b, 0x11332b2f, 0x315d0033, 0x49491830, 0x2335230c, 0x03823335,
0x33373723, 0x84b88215, 0x51491803, 0x8b8b2e11, 0x694e9b9b, 0xecfe1401, 0xfefe0201, 0x5749183f, 0x8afb2c0d, 0xe64e51f8, 0x8af889fc, 0x666261fb,
0x3521083d, 0x06af6502, 0x00520123, 0x2c038260, 0x2001b415, 0xb8012605, 0x21b4ffff, 0x0c0f662f, 0xecffa426, 0xe3050804, 0x58272f82, 0x06010000,
0x44f35201, 0x06220987, 0x735b3224, 0x82b8200c, 0x05ef592b, 0x2b823820, 0x4d010724, 0x5b858f00, 0x5b861a20, 0x92191821, 0x886f205b, 0x214d215b,
0x1d265b85, 0x05012611, 0x5b911c1b, 0x88400721, 0x004e22b7, 0x0b694a7d, 0x95662220, 0x20b5850d, 0x215988ee, 0x59850c4e, 0x59822020, 0x5b250421,
0xb5840dfd, 0x88d90721, 0x00502259, 0x07316b7b, 0x26051d25, 0x87000102, 0x08d75a5b, 0x06215d84, 0x205d8887, 0x245d8250, 0x020d4017, 0x225e8201,
0x87050102, 0x672f885f, 0x01230e81, 0x87b20053, 0x83242061, 0x67362061, 0x61831023, 0x175d0e20, 0x53012409, 0x84000050, 0x11272161, 0x48209182,
0x26108f5c, 0x0442feb8, 0x88b805dd, 0x02512ac3, 0x00000019, 0x0d01b60b, 0x07de6725, 0x00ffff23, 0x222582a4, 0x864a0416, 0x010724b7, 0x85b80251,
0x210e2525, 0x251a1a21, 0x2606c758, 0x06000014, 0x827307fe, 0x003a2725, 0x01070100, 0x9f45014b, 0x052b2707, 0x33000126, 0x6d501e2b, 0x8200200a,
0xe305212d, 0x5a20a984, 0x00212d85, 0x255382ae, 0x010b4013, 0x2d821130, 0x11303823, 0x0ee96f2e, 0x230afb67, 0xd0ff4b01, 0x2006c541, 0x225b8209,
0x67091102, 0x6f5c09fb, 0x09655d07, 0xa94b0122, 0x22097b42, 0x5d232b02, 0x2b820965, 0x04237482, 0x822b0737, 0x833c20b5, 0x6a002387, 0x6341ceff,
0x05122707, 0x01010226, 0x5b851d09, 0x23089541, 0x03000052, 0x3d20e785, 0x76223184, 0x8b863900, 0x8b821620, 0x100a5e22, 0x830c2753, 0x8435202d,
0x465d208b, 0xd6200587, 0x16208b85, 0x6020e582, 0xfe222b92, 0x8b823707, 0x01235984, 0x6829014f, 0x0b210ae1, 0x0d9f6e0a, 0x05215984, 0x832d82e5,
0x01072459, 0x41cd004f, 0x15200641, 0x14205b82, 0xb58a2d92, 0xff4c0123, 0x205b86e0, 0x21b5820f, 0xc7631506, 0x8e00200c, 0x4c0122b5, 0x20b58586,
0x2059820f, 0x082b8b10, 0x00010033, 0x020000ae, 0x001f06be, 0x40250013, 0x15090915, 0x15101500, 0x13031520, 0x14540047, 0x0106500d, 0x3f001500,
0x1001e13f, 0x115de1f6, 0x30312f33, 0x050d6133, 0x0a724f18, 0x552dae32, 0x633b4e7c, 0x481f2f26, 0x273a2828, 0x6bb00413, 0x0b595718, 0x824efb21,
0xcb320865, 0xe90314fe, 0x2b00cb05, 0x2a404a00, 0x29012d30, 0x47011f1f, 0x14121612, 0x0a0a1214, 0x12101200, 0x12401230, 0x13120704, 0x29166000,
0x50230d29, 0x7c82071c, 0x79001b21, 0xdf450583, 0x2f332107, 0x112f8282, 0x32e11033, 0x315d322f, 0x14110130, 0x4d23020e, 0x11200a96, 0x14065818,
0x8f021530, 0x4e7b552d, 0x1a1c3d20, 0x3b281f39, 0x58181326, 0xb1880713, 0x4403f624, 0xb4833ffc, 0x9906092d, 0x30130a08, 0xc3034153, 0x8c89444b,
0x899125c6, 0x00040000, 0xc8080082, 0xaa07dd04, 0x23001600, 0x3e003100, 0x5e400101, 0x29012989, 0x302a2abe, 0x381d3131, 0x1f0d0f83, 0x0d10020d,
0x0d020d20, 0x6623560d, 0x07230223, 0x69175908, 0x17060217, 0x83321d05, 0x001f000f, 0x0003006f, 0x010ad600, 0x0a470a37, 0x0ac70a57, 0x03d90a04,
0x48033801, 0xc8035803, 0x1d030403, 0x1005091d, 0x04800104, 0x04d00490, 0xffb80403, 0x061840c0, 0x1004480a, 0x0f400404, 0x2f401f40, 0x9f408f40,
0x0640df40, 0xb8090807, 0x3140f0ff, 0x235f0709, 0x0e0a201d, 0x030a1d48, 0x0135193c, 0x10128c35, 0x128f013c, 0x600212ef, 0x31100112, 0x23023120,
0x3131123c, 0x04233c12, 0x04092904, 0x333f0012, 0x3917122f, 0x2000822f, 0x2800825d, 0x115de110, 0x2b333333, 0xb86f1810, 0x3912260e, 0x5d332f3d,
0x2802835d, 0xe15d2f18, 0x39391211, 0x3a03835d, 0x715d2f33, 0x2f3311e1, 0xed2f3333, 0x0130315d, 0x01070614, 0x03210323, 0x62260123, 0x1e2c0653,
0x2e030302, 0x030e2703, 0x3e130307, 0x0807ce79, 0x26341326, 0x15062223, 0x33171614, 0x50033632, 0xfc01333c, 0xd3fd9abe, 0xf801bc9c, 0x3b203a33,
0x54313252, 0x940c233e, 0x0afb6f18, 0x30158523, 0x08ff792f, 0x3fbc7008, 0x333f3132, 0x3f320c31, 0x60469c05, 0x0123fb19, 0x0479fe87, 0x466019db,
0x1d384f33, 0xfc4f371d, 0x107d015f, 0x1c3b362e, 0x2e363c1c, 0x0483fe0f, 0x413d188b, 0x16101c40, 0x16424741, 0x3c34f6fe, 0x3b33343c, 0x05003c03,
0xecff5e00, 0xaa079c03, 0x31000d00, 0x54004000, 0x9c006000, 0x83552340, 0x411f410f, 0x4103412f, 0x4b835b41, 0x824b0d06, 0x1a500801, 0x47370f1e,
0x3f625531, 0x483e0162, 0xffb8281a, 0x0d3a40d0, 0x10284811, 0x28480c09, 0x61561a28, 0x50508c58, 0x700d600d, 0x0d0d030d, 0x5e055050, 0x5046408c,
0x46460246, 0x2b502427, 0x1e1e5238, 0x5032102b, 0x0e16150f, 0x01050f15, 0x5d2f0005, 0x0a8d5e18, 0x5d2f3326, 0x2f3911e1, 0x10210682, 0x059c69e1,
0x2b059d69, 0x113232e1, 0x2f2f3939, 0xe110cd10, 0xe1231c82, 0x41013031, 0x01200842, 0x29af5e18, 0x18140121, 0x200d3a55, 0x077d4107, 0x36323324,
0x5841c701, 0x23522508, 0x25520178, 0x27d95e18, 0x2386013c, 0x3231543d, 0x21213b52, 0x3032523b, 0x75233e54, 0x3f32313f, 0x3f313839, 0x6d41b806,
0x5cf9220a, 0x035f1898, 0x08052929, 0x1d385133, 0x334f381d, 0x2406c841, 0x3c3c3534, 0x2d038235, 0xfeffffff, 0x56060000, 0x26027307, 0xab458800,
0x25022105, 0x2905934c, 0x02260520, 0xb44801b8, 0x1f5b1a14, 0xff5e260c, 0x064406ec, 0x202f8221, 0x212f85a8, 0x53457501, 0x5d032905, 0x71032611,
0x1c005751, 0x220a9546, 0x72b4ff7d, 0x9a20060b, 0x02202d86, 0x28055345, 0x26053e03, 0x38325803, 0x0b235611, 0xb4ff7324, 0x5b842f04, 0x0946ba20,
0x05416705, 0x823a0321, 0x2e4c2359, 0xbd4c0d34, 0xfe68220b, 0x0a374c3b, 0x39020622, 0x2107674b, 0xe74cb4da, 0xffff2307, 0x25825a00, 0x8209354c,
0x4bbb2025, 0xe12106b5, 0x08e14cb4, 0x01016b08, 0x03d90402, 0x0021069a, 0x40250014, 0x040e0f11, 0x08c00004, 0x00800e04, 0x085f080f, 0x2f000802,
0xcc1a335d, 0x1a2f0132, 0x2f3d39cc, 0x30313333, 0x26262301, 0x07060627, 0x033e3523, 0x031e3337, 0x799a0317, 0x36346c33, 0x1a79336a, 0x103b4344,
0x433b10c0, 0xd9041945, 0x37376122, 0x1d1b2261, 0x2251514c, 0x4c515122, 0x6b8e001d, 0x10050630, 0x0bc00010, 0x10800d13, 0x065f060f, 0x6b840602,
0x6b8ccd20, 0x07030e33, 0x27032e23, 0x16163335, 0x37363617, 0x199a0333, 0x2b638645, 0x33791a44, 0x6c34366a, 0x06067933, 0x50236482, 0x82502323,
0x221b2664, 0x61383861, 0x206b8222, 0x32d7821b, 0x006f055a, 0x40150003, 0x0000010a, 0x5f030f8f, 0x82030203, 0x7ee12064, 0x212b0508, 0x1b012115,
0xc1fd3f02, 0x82966f05, 0x8221202f, 0x057b2d2f, 0x001500ee, 0x151c402f, 0x0100ff83, 0x83339c82, 0x0a7f000a, 0x0a9f0a8f, 0x10800a03, 0x5f050f8f,
0x83050205, 0xcd1a2241, 0x27a7825d, 0x5ddc1ae1, 0x013031e1, 0x0805ba6c, 0x1e332731, 0x3e323303, 0x7b033702, 0x6d4d2c04, 0x496d4947, 0x046c0327,
0x2c43301c, 0x22334124, 0x3dee0504, 0x27294a65, 0x2b3f6649, 0x09071932, 0x8228311b, 0x05a03c62, 0x05750100, 0x000d00e5, 0x0810401c, 0x91030087,
0x0bcf0b9f, 0x30030bef, 0x820b010b, 0xe55d2369, 0x62822f01, 0x46181320, 0xa0200bcc, 0x09505b18, 0x3c73052f, 0x2b1c0d36, 0x38393a1e, 0x01020000,
0x08c3826d, 0x87063131, 0x1f001300, 0x2d404000, 0x000f8314, 0x004f003f, 0x0004005f, 0x0a30831a, 0x8c170a01, 0x0f1f0f0f, 0x0f4f0f3f, 0x0faf0f5f,
0x06070fff, 0x898c1d0f, 0x5ed428d6, 0x2f01e15d, 0x84d4e15d, 0x1ae243d6, 0x43310321, 0x202106a9, 0x0fa94320, 0x43b20521, 0xed82166f, 0x42fe1f39,
0x00005e01, 0x16001400, 0x80060940, 0x120d8400, 0x000a8e03, 0x822fe12f, 0x1a3908e5, 0x173031cc, 0x32331614, 0x06153736, 0x26222306, 0x023e3435,
0xb4063337, 0x2d192234, 0x1d401a0e, 0x2f1e6464, 0x8b811a38, 0x052b2dee, 0x08087104, 0x4b2a5a68, 0x85133440, 0x06594200, 0x05d12808, 0x001b00e3,
0x0f234038, 0x02172f17, 0x20090017, 0x09070209, 0x0e8f0516, 0x48131040, 0x0b07400e, 0x130e0e48, 0x820f098f, 0x2f003489, 0x33e1325d, 0xe12b2b2f,
0x5e2f0133, 0x315dcc5d, 0x51220130, 0x232005c2, 0x83051367, 0x0e333b87, 0x28fe0203, 0x20464c4f, 0x680e302d, 0x4a352105, 0x4c512a2e, 0x2e2d1d45,
0x0d83690f, 0xdb042008, 0x35232b23, 0x45623c3e, 0x232a2325, 0x613c3e34, 0x00002645, 0x04df0002, 0x06be03d9, 0x820d0021, 0x402d2d8f, 0x0e0e1419,
0x00504007, 0x4f003f01, 0x13241c82, 0x1b809205, 0x08964018, 0xed1a332e, 0x5d2f0132, 0x39cd1a5d, 0x3031cd2f, 0x2009cf46, 0x08964525, 0x2f16df30,
0xc7102a2f, 0x514d3f10, 0x6b016523, 0x0d823015, 0x0d84c620, 0x40186420, 0x6b430cb5, 0xc1401805, 0xf8012108, 0x04208582, 0x272c8584, 0x10051640,
0x0548110c, 0x000c4006, 0x8182fd82, 0x1a218088, 0x247e82ed, 0x32cd1a33, 0x0c0a462b, 0x0af82308, 0x04101314, 0x2d2106c7, 0x046c1834, 0x514d1ef4,
0x18152150, 0x2056574e, 0x14010300, 0x89030c05, 0xdf84b406, 0x6600292b, 0x841c1940, 0x241f240f, 0x37048302, 0x240324cf, 0x480c0940, 0x160d2424,
0xffb80e84, 0x092740c0, 0x0e0e480d, 0x0c3b8086, 0x0c92050d, 0x91111f0c, 0x0119ff27, 0x19b01960, 0x0f0319d0, 0x02191f19, 0x4f001906, 0xe5230561,
0x822f3932, 0x82332093, 0x2f332491, 0x8211e12b, 0x715d2104, 0x200ca746, 0x0b0d4327, 0x0de74918, 0x190bfe39, 0xcf081618, 0x3d383012, 0x38ea5220,
0x1a231329, 0x29263a10, 0x18b50138, 0x320af649, 0x4f4b1e87, 0x20142451, 0x2551504d, 0x0c303606, 0x181b2619, 0x250c044a, 0xe9ffffff, 0xad670000,
0xfd54350c, 0x0097fff1, 0x1a02b618, 0x22300203, 0xe9ffb801, 0x042222b4, 0x18082b5b, 0x82732141, 0x82e720a5, 0x054d30a5, 0x002700b8, 0x008f0028,
0x01070100, 0x82effd54, 0x2e2a08a7, 0x031101b4, 0xffb81201, 0x0f08b2c0, 0x9dffb848, 0x12120f40, 0x00250202, 0xbf1b6700, 0x1b0f011b, 0x5d5d0101,
0x0134fe10, 0xe95b2b2b, 0x82ff2005, 0x50052149, 0x26234982, 0x897b2b00, 0x8a312047, 0x82112047, 0x40b12647, 0x06121212, 0x29478206, 0x011b6f65,
0x10011b2f, 0x0482011b, 0x5d5d5d24, 0x4a8534fe, 0x95850020, 0x84600321, 0x002c2295, 0x22958afc, 0x83164066, 0x12c03696, 0x0112a001, 0x20011230,
0x12100112, 0x01120001, 0x40a5ffb8, 0x3c58852f, 0xd00100f0, 0x00c00100, 0x0100af01, 0x60010070, 0x00500100, 0x01004001, 0x0001003f, 0x286c8220,
0x48070740, 0x0907401b, 0x21ba8248, 0x7882115d, 0x35200285, 0x5c059e59, 0xff2c06b7, 0x05ecffe7, 0x00cd05c3, 0x52320026, 0x2408cd89, 0x02304047,
0xa002032d, 0x2e80012e, 0x012e7001, 0x20012e50, 0x2e10012e, 0x012e0001, 0x0a2e2e24, 0x0001250a, 0x2a708450, 0x37bf6700, 0x01370f01, 0x82100137,
0x5d5d23da, 0x5f863434, 0xe3866084, 0x84540521, 0x013c22e3, 0x2fe38a1d, 0x0e01b44b, 0xb80f0103, 0x16b6c0ff, 0x0fa04817, 0x25080a84, 0x481109b2,
0x40d6ffb8, 0x070f0f1c, 0xc0002507, 0x05b00105, 0x01057f01, 0x05010520, 0x2f01183f, 0x180f0118, 0xc9820101, 0x3528d084, 0x2b5d2b2b, 0x353f0035,
0x06216786, 0x22c98300, 0x895a7601, 0x403539c9, 0x03350123, 0x01362001, 0x00013610, 0x36160136, 0x25131336, 0x011d5000, 0x1d280282, 0x013fbf67,
0x3f013f0f, 0xbb83bc87, 0xe42a4f87, 0x7702ecff, 0x2602b406, 0xb5848601, 0xd0fe5535, 0x18000000, 0x02030f40, 0x0124c001, 0x20012440, 0x6a153a24,
0x35230687, 0x82ffff35, 0x0509431d, 0x24000623, 0x07715600, 0xb6058726, 0x25000602, 0x3c081b82, 0x00c70001, 0x05be0300, 0x000500b6, 0xc40a4043,
0x0200f400, 0x020100b0, 0xc0ffb800, 0x13081f40, 0x07000048, 0x072f070f, 0x076f074f, 0x11400704, 0x5a034818, 0x02066404, 0x0303055f, 0x07f84d12,
0x115d2b3a, 0x5f2b2f33, 0x30315d5d, 0x11211501, 0xbe031123, 0x05bac3fd, 0xf0faa6b6, 0x00215882, 0x21698302, 0x63846804, 0x58000e30, 0x04051140,
0x0b020606, 0x7001605b, 0x6f18b001, 0x2608080c, 0x480a0627, 0x2f100101, 0x6f105f10, 0x9f107f10, 0x0610bf10, 0x09064010, 0x025b0a48, 0x110a2006,
0x03040648, 0x82025f0a, 0x3fe12674, 0x2f012b33, 0x227585e1, 0x4812e15d, 0x2e0806d8, 0x35211525, 0x06073301, 0x21030706, 0x04262603, 0x01bdfb68,
0x115ebbc2, 0x02fe1d2a, 0x2e1ffcae, 0x05857d7d, 0xa84acd31, 0x020afd5b, 0x41a861f0, 0xfb83060b, 0x00060224, 0x0f830028, 0x00005226, 0xb605fe03,
0x3d200f82, 0x20082b41, 0x210f84d5, 0x1a82002b, 0x2205c35a, 0x7000cd05, 0x2208056b, 0x00344053, 0x0e010001, 0x67045b22, 0x012dd02d, 0x80012dcf,
0x2d3f012d, 0x18022d6f, 0x2c660e5b, 0x7d0f6003, 0x042b0614, 0x1d000008, 0x04135f27, 0x18095f1d, 0x27083979, 0x01e15d5e, 0x5de1f610, 0x06820082,
0x3939122b, 0x30312f2f, 0x21152101, 0x055c7a25, 0x597a2620, 0x18162009, 0x28105c8a, 0x1602ec01, 0x8503eafd, 0xc4741851, 0x39032620, 0xfea945a1,
0xc67418ea, 0x0749631f, 0x2c20ed84, 0xa220fd88, 0x2e200f84, 0x0120fd82, 0x003a0382, 0xb6058b04, 0x5f000c00, 0x0e2f1c40, 0x0eff0eef, 0x12400e03,
0x400e4815, 0x0482100d, 0x09064c08, 0x050b0c48, 0xb80a0905, 0x2240f0ff, 0x002f010a, 0x005f004f, 0x00af009f, 0x00ef00cf, 0x01001007, 0x05001000,
0x480e0a20, 0x0a030b05, 0x3f001200, 0x2b333f32, 0x5d382f01, 0x382f325d, 0x2f3d3933, 0x2b2b3333, 0x30315d2b, 0x4a012321, 0x013e05a4, 0x04330123,
0xdbfec68b, 0x110f2e1f, 0xd9fe1d2a, 0xbbe701c5, 0xa8619a03, 0x5ba84b4b, 0x8c8260fc, 0x00ffff27, 0x060000c7, 0x20a7842f, 0x21b78730, 0x0f840e05,
0xb3823120, 0x52000326, 0xee030000, 0x032e2a82, 0x0b000700, 0x3e406300, 0x1b010014, 0x8e820101, 0x0b012408, 0x08000606, 0x0108c001, 0x0801083f,
0x6f0d4f0d, 0x0d30020d, 0x70070701, 0x020b800b, 0x0b010b4f, 0x820f5f03, 0x08022dbf, 0x0b040000, 0x07120a5f, 0x0003045f, 0x4906cf7e, 0x5d2f056b,
0x5d5d2f33, 0x5d5dce10, 0x112f3271, 0x822f3939, 0x3031260d, 0x21152113, 0x3c038203, 0x35211501, 0xfda602cd, 0x4a03525a, 0x7303b6fc, 0x4e0364fc,
0xa40a03a2, 0xa4a492fb, 0x07135d00, 0x02cd0525, 0x82320006, 0x830120a9, 0xc10421c9, 0x2008a982, 0x40310007, 0x005a011e, 0x09b00965, 0x9f096f01,
0x0309af09, 0x04010910, 0x0864055a, 0x03065f03, 0x053c4105, 0x25073f42, 0x31e1f610, 0x53672130, 0x04212b05, 0x7bfdbbc1, 0x05fa03ba, 0xf483fa12,
0x23051f41, 0xb6053304, 0x33206582, 0x4e206584, 0x1220cc82, 0x3a086582, 0x405a000b, 0x065b080d, 0x48171420, 0x06020602, 0xffb80a01, 0x062640c0,
0x0a0a4815, 0x2f0d0f0d, 0x8f0d6f0d, 0x0706040d, 0x2f035b09, 0x02013f01, 0x02020801, 0x045f0709, 0x835f0903, 0x3fe1217f, 0x24057a43, 0x5d2f1801,
0x06a16333, 0x39122b26, 0x2b2f2f39, 0x24088e82, 0x01013533, 0x21152135, 0x15210101, 0xfe9e014e, 0xfd7d036e, 0xfe850158, 0x98f70267, 0x25026602,
0xeefda493, 0x050541fd, 0x8f851420, 0x37229f82, 0xb1440000, 0x84372006, 0x823c20af, 0x035b08af, 0xecff6800, 0xcb05ba05, 0x2e002100, 0x81003b00,
0x02225040, 0x11011167, 0x9a213b5a, 0x12870112, 0x01127a01, 0x281b1212, 0x3d67085b, 0x00013d2f, 0x3dd0013d, 0xbf3daf01, 0x3d90023d, 0x013d5f01,
0x0f013d30, 0x023d1f3d, 0x1b5b3506, 0x3b223c66, 0x13101360, 0x21602f2e, 0x82132102, 0x13112601, 0x3f000400, 0x24b6833f, 0xe1103311, 0x24048432,
0xe1f61001, 0x0599465e, 0x82717121, 0x3911220b, 0x280d822f, 0x5de13333, 0x30313232, 0x052a7c01, 0x0e141535, 0x15232304, 0x22233523, 0x3435042e,
0x3333023e, 0x7b323313, 0x2b270574, 0x020e2203, 0x821e1415, 0x025c0813, 0x8649bbb4, 0x183c7ec2, 0x9f785434, 0x2fbb2f65, 0x54789f65, 0x7e3d1835,
0xbb4a85c2, 0x5b8b5d1a, 0x7f53292e, 0x39bb3957, 0x28547f57, 0x5d8b5b2e, 0xb4cb051a, 0x66c4995e, 0x6e7b813d, 0xe1e13052, 0x7b6e5230, 0xc4663d81,
0x53fc5e99, 0x5894693b, 0x3c688b4e, 0x4e8b683c, 0x3b699458, 0x08062d41, 0xb6056064, 0x3b000602, 0x01000000, 0x00006800, 0xb605ba05, 0x70002500,
0x671f4740, 0x5a090109, 0x010a9a1c, 0x7a010a87, 0x0a0a010a, 0x005b2313, 0x272f2767, 0x01270001, 0xaf0127d0, 0x0227bf27, 0x5f012790, 0x27300127,
0x1f270f01, 0x16060227, 0x2666135b, 0x08601c1f, 0x24090b0b, 0x0903141d, 0x3f3f0012, 0x9f583333, 0x151a4106, 0x325de12b, 0x14013031, 0x2323040e,
0x2b018211, 0x35042e22, 0x14113311, 0x3333021e, 0x33220782, 0x0e823632, 0x41ba0521, 0xc1200e03, 0x2608ee84, 0xb7ba1abb, 0x3dd703c0, 0x4e6a777f,
0x0142fe2e, 0x684e2dbe, 0x013d7e77, 0x5821fee3, 0x0334628d, 0xc6a6fc5a, 0x83e301b1, 0x824e20db, 0xa64908db, 0x2f00cd05, 0x51407c00, 0x220b5b0e,
0x0b20255b, 0x04020b30, 0x252f010b, 0x25df253f, 0x0b0425ef, 0x0b070125, 0x13250b25, 0x23065b2b, 0x23022316, 0xd031671d, 0x31cf0131, 0x01318001,
0x316f313f, 0x190d0902, 0x0d08020d, 0x2be68205, 0x185f0030, 0x0a222604, 0x0c255f0d, 0x3324e582, 0x323232e1, 0x2005cc54, 0x05ff4133, 0x32f61029,
0x3911e15d, 0x842f2f39, 0xe110210f, 0x0be75318, 0x2115172a, 0x032e2135, 0x023e3435, 0x085f8518, 0x13822120, 0x12823e20, 0x022e5808, 0xa472fa02,
0x5123326a, 0xb0fd5f83, 0x6f406201, 0xa0512e50, 0xeb9b9aec, 0x502e51a0, 0x6201416e, 0x835fb0fd, 0x6a322351, 0x442905a4, 0x6475ba81, 0x4197abbb,
0x8730a493, 0x966fc7a8, 0x5e5eacf4, 0x6f96f4ac, 0x3087a8c7, 0x974193a4, 0x7564bbab, 0x004481ba, 0x1800ffff, 0x572ec943, 0x20083403, 0x04ecff71,
0x02210691, 0x007e0126, 0x01060100, 0x00001954, 0x020b4013, 0x0226114a, 0x16443e16, 0x0a25512f, 0xecff5a24, 0x2b845c03, 0x2b858220, 0x2b84ca20,
0x11460129, 0x3a6d0126, 0x8a2d1840, 0xfeae222b, 0x05916414, 0x85840121, 0x8544202b, 0x8225202b, 0x6462202b, 0xa4240e91, 0x7702ecff, 0xe9485784,
0xfe542205, 0x053f5ece, 0x2c822220, 0xfdffb826, 0x152216b4, 0x820b5351, 0x3d04232f, 0xb382b406, 0x5b849220, 0x00105530, 0x03b21200, 0xffb80102,
0x422cb4ee, 0x87831b05, 0x00353524, 0xdd840002, 0x5e042908, 0x3d001000, 0x1e403800, 0x47051e38, 0x103f282f, 0x480e013f, 0x223e5616, 0x500b1e0f,
0x2f380f1b, 0x3350002c, 0x3f001611, 0x20061442, 0x06697133, 0xe132d424, 0x67183232, 0x162a1a1f, 0x36363317, 0x030e3337, 0x0c4f1115, 0x022e250a,
0x030e2327, 0x122a6718, 0x713d2f08, 0x907064a2, 0x210a0c31, 0x130b8f19, 0x2232080d, 0x0f08250e, 0x3f262241, 0x0c0c2432, 0x604d3b16, 0x98622f83,
0x9d650f68, 0xccda376b, 0x6718cdd1, 0x533a0836, 0x1f522355, 0x7e796821, 0x3c5dfe37, 0x85030733, 0x27101109, 0x3d223040, 0x5d761a2e, 0x06752406,
0x821b001f, 0x594308e3, 0x48393440, 0x1f050805, 0x02332f33, 0x05330533, 0x0c472c15, 0x3f203f57, 0x22023f30, 0x54164715, 0x081b153e, 0x330f5032,
0x33330801, 0x50272200, 0x501c1611, 0x3f000100, 0x32e13fe1, 0x5e2f3911, 0x8439e15d, 0x062b6dfc, 0x2f2f3934, 0x1039125d, 0x013031e1, 0x15021e32,
0x15070614, 0x82761616, 0x27262d05, 0x34112311, 0x2217023e, 0x1115020e, 0x25054f51, 0x022e3435, 0x91182323, 0x6608081f, 0xa3607702, 0x8f984376,
0x783fb9b0, 0xa4606dad, 0x7945b63c, 0x643863a8, 0x4e202c4b, 0x50245252, 0x351f466f, 0x664f8460, 0x4e77524d, 0x5f442625, 0x62311f06, 0xad956294,
0xca150617, 0x6da26cba, 0xfd1f2037, 0x7b3406e9, 0x963773b2, 0x607f4c1f, 0x1e1292fc, 0x4d280b15, 0x7550476f, 0x2898254d, 0x3f3d6649, 0x181f3e5e,
0x080a7f62, 0x63001b34, 0x401d1640, 0x50481512, 0x1d0f011d, 0x1d4f1d2f, 0x051a0703, 0x06480501, 0x40f0ffb8, 0x0b060615, 0x0c131300, 0x201b001a,
0x031b401b, 0x1b101b08, 0x19830c0d, 0x1a0c0a3a, 0x00130f0c, 0x1b05150b, 0x333f3f00, 0x01333f33, 0x2f33382f, 0x335d5e38, 0x3005744a, 0x382f1833,
0x5d5e5de1, 0x30312b5d, 0x15030e25, 0x20fa8223, 0xa9651837, 0x0237080b, 0x18221660, 0x1b0fbe0c, 0x60fe1525, 0x1e0ed9bd, 0x0604141a, 0x1b191405,
0x12bcc70b, 0x7e86883e, 0x89792a34, 0x3e043f8d, 0x5d28bafd, 0x1a1b505a, 0x215a5d52, 0x7d004c02, 0x4408080b, 0x0032001f, 0x40510044, 0x00461a2e,
0x2e050538, 0x240f4833, 0x46404657, 0x46e046d0, 0x01460f03, 0x2e483d06, 0x24004556, 0x380a1a42, 0x50420a38, 0x50151629, 0x00010a10, 0x3fe1333f,
0x2f3911e1, 0x39123912, 0x06ce4633, 0x32f61022, 0x39251283, 0x3031e139, 0x09b64401, 0x2e071722, 0x08a08318, 0x181e1721, 0x240c0d8f, 0x022e3401,
0x4b4c1827, 0x02c20808, 0x435d3814, 0x7d5c3325, 0x6071444a, 0x204a2351, 0x335b5149, 0x12273c2a, 0x47623c1b, 0x315c8655, 0x6db27f45, 0x477fae67,
0x01997243, 0x52391eb4, 0x687e3a35, 0x69492644, 0x03998e43, 0x564b20aa, 0x69483962, 0x1f142246, 0x14911327, 0x17121e26, 0x251b3225, 0x29413d3e,
0x937e6c31, 0x83c17f58, 0xaa753d43, 0x7aa36a6e, 0x4551fe53, 0x1f49596f, 0x91623a10, 0x516f4267, 0x0100b42d, 0xecff5a00, 0x5e045c03, 0x59003900,
0x231d3740, 0x10180101, 0xa03b572d, 0xc03bb03b, 0x3b3f033b, 0x10023b5f, 0x4634013b, 0x47052323, 0x1e3a5618, 0x39bf5002, 0x89397901, 0x39390239,
0x2850310a, 0x13500a10, 0x2e5a0016, 0x5d5d2d06, 0x100139e1, 0x2f33e1f6, 0x5d5d5de1, 0x2c052765, 0x30313912, 0x22231501, 0x1e141506, 0xf7891802,
0x022e2709, 0x023e3435, 0x2f413537, 0x5826200b, 0x268205a9, 0x9c025f08, 0x29858a81, 0x33376046, 0x1f47515c, 0x716d9e3b, 0x26356ca6, 0x2b2c523f,
0x3a1c3346, 0x35569069, 0x284d525a, 0x47814b3f, 0x4827736c, 0x87023d64, 0x335e5b99, 0x0f122a45, 0xa0101f18, 0x56312922, 0x583e4375, 0x0b0f293e,
0x503e2b0e, 0x4a6d4632, 0x1c130926, 0x26229314, 0x402d4d4d, 0xf7821227, 0xfe712b08, 0x066a036f, 0x00330014, 0x2e1f4039, 0x461f0303, 0x0114201a,
0x35103514, 0x0a0235c0, 0x00002948, 0x19345629, 0x5000032e, 0xdf820001, 0x2f323223, 0x27d08201, 0x5de1102f, 0x325dd610, 0x3320e282, 0x2105b47c,
0x4418050e, 0x07210a23, 0x05a34623, 0xd6832720, 0x36126608, 0x07063736, 0xae230606, 0xb880b602, 0x0d284c7e, 0x4b78542d, 0x193a5f47, 0x162b2215,
0x222b18aa, 0x5b300e14, 0x5c87594d, 0xc99a5c2e, 0x282f2b6c, 0x7b052f60, 0xcd768d99, 0x6f859ab3, 0x406c5930, 0x2e0f1123, 0x2d2a483b, 0x1f4b5258,
0x43484820, 0x2225141d, 0x42110f1f, 0x9466986c, 0xd9e80101, 0x0203036c, 0x93531804, 0x005e2808, 0x40310018, 0x1847001d, 0x2c0f696e, 0x1450040e,
0x0b0f0c10, 0x001b0015, 0x0daf683f, 0x01303122, 0x0b967118, 0x3e331729, 0x16323303, 0x18031115, 0x68079571, 0xfe230993, 0x68af0414, 0xfb221086,
0x89660047, 0x04210805, 0x002b0617, 0x001e0013, 0x405b0027, 0x4719253a, 0x0f295700, 0x29d00129, 0x9f297f01, 0x29400229, 0x080d8201, 0x1a240621,
0x28560a47, 0x24cb501a, 0x0124ba01, 0x24992489, 0x01240f02, 0x14242408, 0x010f501f, 0x42055014, 0x5e21084a, 0x2100825d, 0xa36e01e1, 0x200a8205,
0x3b541871, 0x06022107, 0x080c6e67, 0x12161698, 0x023e3201, 0x031e2137, 0x020e2213, 0x02022107, 0x70341704, 0xaf767eb3, 0x6f333874, 0xb0767eb1,
0x2bfe3a75, 0x23456849, 0x02cbfd03, 0x4a684421, 0x23446647, 0x09330205, 0xbc0c0384, 0x6dced7fe, 0x2901ce6d, 0x2901bcbc, 0xcd6b6cce, 0xb9fcd7fe,
0x95df944a, 0x4b95df93, 0x89451005, 0x110189cd, 0x00001301, 0xffa40001, 0x047702ec, 0x00150048, 0x30234035, 0x09090109, 0x10170017, 0x60172017,
0x90177017, 0xd017c017, 0x01080817, 0x16541447, 0x160f5004, 0xc44f0f00, 0x5d5e2407, 0x5d2f3311, 0x16200534, 0x5705fe42, 0x35390516, 0x3f5a0111,
0x2a2d1248, 0x290d0924, 0x3e183430, 0x042c4d6a, 0x61fcfc48, 0xa86b1862, 0x0403300c, 0xae00ffff, 0xf0030000, 0x06024a04, 0x8200fa00, 0xf2ff368b,
0x1704ecff, 0x2e002106, 0x2a406800, 0x1a151522, 0x29011212, 0x0801820a, 0x1a500030, 0x441a3401, 0x1a00021a, 0x1a201a10, 0x301a1a03, 0x30903060,
0x01300f02, 0xb8002e06, 0x0f40f0ff, 0x29152e00, 0x170e0101, 0x07161e50, 0x8d460e50, 0x39112405, 0x183f332f, 0x08092e6a, 0x5d5d5d26, 0x3d393912,
0x112f182f, 0x12113333, 0x31331139, 0x27012330, 0x2223032e, 0x36350706, 0x1e323336, 0x16011702, 0x9256ce82, 0x2e630806, 0x2e032702, 0x06232703,
0x0e030706, 0x0d35b801, 0x2b3d2b1f, 0x1a143222, 0x694a2342, 0x011f3f4f, 0x262e1248, 0x1708260e, 0x3b272537, 0x870f252f, 0x161b1d0b, 0x350d0605,
0x3304e51f, 0x314329a0, 0x9105071b, 0x592a0a07, 0x36fc5d87, 0x03073936, 0x110e0c85, 0x012e4028, 0x615e21a2, 0xaa4d1957, 0x82c1fd4f, 0x7b5618f7,
0x403f250a, 0x090c0d26, 0x0f7c5618, 0x471a002b, 0x1a1e541b, 0x030d141b, 0x7f561850, 0x4833200c, 0x322b0565, 0xf6105d32, 0x313232e1, 0x18140130,
0x084f8356, 0x0000003a, 0x4a04cf03, 0x3b001400, 0x13141640, 0x0d000707, 0x16570e47, 0xb0011610, 0x160f0116, 0x00010601, 0xb6f0ffb8, 0x15140700,
0x000f000d, 0x333f323f, 0x32382f01, 0x715d5d5e, 0xf7469382, 0x313c0805, 0x13331130, 0x3317031e, 0x3512023e, 0x02021433, 0xbc230706, 0x1e1f0cc9,
0x5a060519, 0xb6194272, 0x759a5c25, 0xfd4a04c0, 0x676321b0, 0xcd60195c, 0x970501e7, 0xfee0fea3, 0x007ffdf5, 0x320ad344, 0x407e0046, 0x3b3b324e,
0x41012a11, 0x2d2d3846, 0x65001c24, 0x4b0805c7, 0x1c010108, 0x01112046, 0x483f4811, 0x487f485f, 0x100448ef, 0x48070148, 0x3c475624, 0x39503832,
0x1c49002a, 0x1c691c59, 0x011c3803, 0x031c2407, 0x004f0116, 0x00391600, 0x3f00fa16, 0x2f39123f, 0x391711e1, 0x39115d5d, 0x3232e110, 0x28056451,
0xf15dd610, 0x5d5e2fc0, 0x271d8211, 0x3912e133, 0x332f3311, 0x4d05f045, 0xf94605a8, 0x08184506, 0x2105ab5e, 0x07863537, 0x06070629, 0x35232306,
0x4d231521, 0x032607d8, 0x7f51a223, 0x2a452d57, 0xb2270814, 0x664e2fb8, 0x2d726537, 0x223e6b4f, 0x2e552127, 0x3781023e, 0x47739149, 0x51724620,
0x31897703, 0x4e417155, 0x45223b60, 0x33081436, 0x4db5c722, 0x1143637f, 0x75861c0c, 0x31496648, 0x02030313, 0x268d9904, 0x354e754e, 0x001c3751,
0x7100ffff, 0x2d04ecff, 0x06025e04, 0x00005200, 0x19000100, 0x25080f82, 0x004a04c9, 0x40580018, 0x8f470a38, 0x16160116, 0x1414030e, 0x03100300,
0x1a030302, 0x1a9f1a2f, 0x10031aef, 0xb651470d, 0x15103608, 0x19540e48, 0x50100c15, 0x150e0f12, 0x16075000, 0x3fe13f00, 0x052f413f, 0xe15d2b33,
0x33115d33, 0x2f335d2f, 0x2f391211, 0x3031e15d, 0x09d65925, 0x21113c08, 0x23112311, 0x15213735, 0x16141123, 0x2f1c5004, 0x304a0f0f, 0x6dfe7171,
0x0489ddb6, 0x812fd327, 0x0990080d, 0x02828411, 0x0350fcbe, 0x9a504ab0, 0x37464efd, 0x00020000, 0x8314fea4, 0x1a002fb7, 0x39002700, 0x48252140,
0xcf295700, 0x74450129, 0x091f3006, 0x5410470f, 0x16501b28, 0x221b0f10, 0x82050850, 0x83332092, 0x10012293, 0x209782f6, 0x0528535e, 0x5e303121,
0x262105bb, 0x08636f27, 0x25067f4d, 0x07062201, 0xd36b1611, 0x04450806, 0xa7753f2d, 0x368f4b68, 0x02020106, 0x7841b601, 0xa36169a9, 0x3bfe4377,
0x36038289, 0x7b8c4b8f, 0x8927027d, 0x2d4c91d5, 0x272e2b2d, 0xddfe2e61, 0xd3881304, 0x914b4b91, 0xc41801d3, 0x33acfec8, 0xd1d1d331, 0x06ab42cf,
0x046f4708, 0x0031005e, 0x27364051, 0x10461527, 0x0a100a00, 0x0a030a20, 0x5f333f33, 0xef337f33, 0x33100433, 0x1f480001, 0x2d283256, 0x010a3751,
0x15381528, 0x15031548, 0x04001f0a, 0x0f10240f, 0x3f3f00fa, 0x5d391712, 0x8b42e15d, 0xe1322309, 0xc9832f33, 0x09086418, 0x240b9147, 0x3233023e,
0x07974916, 0x1c2d0125, 0x47617e49, 0x4d3b108e, 0x49376284, 0x4e6ab383, 0x17363295, 0x1a3a3c38, 0x22497250, 0x79600602, 0x47162f4e, 0x0f32138d,
0x82b47641, 0x4995e29a, 0x0a9a1922, 0x39090f13, 0x0b4da470, 0x85280806, 0x16004a04, 0x36002900, 0x21242140, 0x00101248, 0x2b102b57, 0x2ba02b90,
0x2be02bb0, 0x0a481705, 0x25122a56, 0x1c0f0f50, 0x8507f646, 0xf61023c6, 0x47183232, 0x21251033, 0x031e2115, 0x06414905, 0x34355908, 0x22232726,
0x2d04020e, 0x75b47a3e, 0x447daf6b, 0x80ce904d, 0xf6fee901, 0x1c304125, 0x472100fd, 0x6d4c4d6e, 0x4b4f2147, 0x5a8b5f3b, 0x6ff8012b, 0x46508dc0,
0x9c85cb8a, 0x9a3e8ada, 0x7c6c5d29, 0x69905536, 0x8662373b, 0x59d7904e, 0x00a1632c, 0x12000100, 0x6603e5ff, 0x2508b182, 0x403a001c, 0x0d0f0124,
0x06020d1f, 0x101e570d, 0x1a2b011e, 0x1a021a3b, 0x18104703, 0x180218e0, 0x1c501902, 0xf449080f, 0x01322c07, 0xc6e15d2f, 0xe6105d5d, 0x56325d5e,
0xe64905a6, 0x07e74608, 0x35213508, 0xfe660337, 0x3e2d198c, 0x282a1224, 0x270d0d24, 0x401b352e, 0xfe345975, 0x4a0486d7, 0x3ba2fd9a, 0x03173352,
0x87040706, 0x060b0c06, 0x68864d1d, 0x504a7302, 0xa4249383, 0x3d04ecff, 0x26089382, 0x4029001d, 0x1b471018, 0x1f101f57, 0x1f801f60, 0x05470803,
0x06151e54, 0x00500d0f, 0xe13f0016, 0x1001333f, 0x825de1f6, 0x30312503, 0x022e2205, 0x08072351, 0x35363259, 0x27022e34, 0x15031e33, 0x5c020210,
0x2964aa81, 0x664220b6, 0x098d9246, 0xb60f1710, 0x0810180f, 0x8c5014f4, 0x58026dbd, 0x8c56b2fd, 0xf7e83663, 0x74757d47, 0x77723d3d, 0xc1fe4b81,
0x0200d3fe, 0x14fe7100, 0x5e042505, 0x35002500, 0x3c405e00, 0x16472531, 0x82a60096, 0x06003718, 0x571f4826, 0x01372037, 0xe001370f, 0x376f0137,
0x379f377f, 0x0f834003, 0x02371f3b, 0x06471106, 0x502b3656, 0x31101a0b, 0x01245016, 0x001b0016, 0xe1333f3f, 0x53038232, 0x05530807, 0x23178208,
0x11013031, 0x21050d4b, 0x1b4c1737, 0x11172305, 0x00513634, 0x01112108, 0x08694e18, 0x033ea208, 0xb76d6602, 0x38204b86, 0x258d2d4e, 0x33192d3f,
0xa5407458, 0x66925a91, 0xbe905637, 0x1e4f0168, 0x1b2b4936, 0x48162531, 0xfe33597b, 0x05da0114, 0x97d58943, 0x7d8a9853, 0x68336037, 0x6f477d72,
0x07306199, 0xc1bc5e02, 0x7ac99050, 0x4a90d995, 0x0426fe05, 0x65946225, 0x57351733, 0x07a0fd41, 0x009f6b3b, 0xecff0100, 0x250414fe, 0x28004e04,
0x1a40a000, 0x1f781f68, 0x09671f02, 0x09c70977, 0x76060903, 0x1c37011c, 0x1e1c1c01, 0xffb80807, 0x130e40c0, 0x08344816, 0x08100801, 0x0112c008,
0x08128312, 0x0b06193d, 0x2a121248, 0x2a3f2a0f, 0x2acf2a4f, 0x25b00604, 0x250225c0, 0xb81e1d25, 0x1f40f0ff, 0x1e291e1e, 0x2706171b, 0x1c180206,
0x1c021c28, 0x04061f09, 0x16500f00, 0x230f071b, 0x450f0050, 0x12350536, 0x5d5d3917, 0x3301113f, 0x3333382f, 0x5d5e5d2f, 0x2b2f3311, 0x3b0d825d,
0x12332b5d, 0x5d2f3d39, 0x5d33335d, 0x30315d33, 0x021e3213, 0x33011317, 0x031e1301, 0x08082a5f, 0x27022ea5, 0x01230103, 0x23262603, 0x36350722,
0x492dbc36, 0x7b15313a, 0xfeb21f01, 0x1d0eb273, 0x1a253426, 0x3916102e, 0x475f4328, 0xfe831733, 0xc601c2b6, 0x35471ba0, 0x3e161c24, 0x3e1f4e04,
0xa8fe3d5c, 0xf8fc4a02, 0x422620fe, 0x03051d33, 0x260b068d, 0x01416646, 0x0383fd6a, 0x4fbe013e, 0x078f0a59, 0x0100000a, 0x14fea400, 0x12067105,
0x4c002700, 0x17012f40, 0x18182647, 0x1147061e, 0x29302957, 0x29902940, 0x29c029b0, 0x1f290f05, 0x21060229, 0x28541e47, 0x010f1f0b, 0x19165026,
0x001b1716, 0x423f0000, 0x4d4e0615, 0x11e12308, 0x0f422f39, 0x064d4c06, 0x3e4e3320, 0x11072505, 0x032e1123, 0x0806dc42, 0x0311174a, 0x5f834e56,
0x180f0834, 0x1810b610, 0x93570810, 0x6fb26dc4, 0xb64c89bc, 0x42785a36, 0x73fa1206, 0x9c6c3c09, 0x7e804767, 0x83484983, 0x9d447e7e, 0x07458cdc,
0xda0126fe, 0xd6884104, 0xfd1f029a, 0x619a72d9, 0x8f05052e, 0x3a08c182, 0x05ecff71, 0x004a0496, 0x4070003b, 0x1d673848, 0xd5471d01, 0x1ab7011a,
0x011aa901, 0x03011a9a, 0x25051a1a, 0x3d573048, 0x3d143d04, 0xf43dc402, 0x3d7b023d, 0x40023d9b, 0x5602013d, 0x103a0807, 0x3c560548, 0x0a2a1b1b,
0x5015200f, 0x16003539, 0x32323f00, 0x333f32e1, 0xdb862f39, 0xc84b5f20, 0x21e08206, 0x00825d5f, 0x395de122, 0x2406b043, 0x37023e34, 0x05f54233,
0x3e323322, 0x4905c043, 0xc04305a1, 0x14270807, 0x2223020e, 0x06232726, 0x5ae90106, 0x0f32608c, 0xba202f1f, 0x0f1f2f20, 0x2d4b361d, 0x162c442e,
0x2d5163b2, 0x831d364b, 0x83bb2017, 0x32470817, 0x6b5a8d60, 0x1f0a1f8b, 0x9252148b, 0x8f5179cb, 0x49488787, 0x528e8786, 0x34659662, 0x39624829,
0xcefe3201, 0x65348b81, 0x8e526296, 0x48498687, 0x518f8787, 0x5292cb79, 0x575b5b57, 0x00ffff00, 0x02ecff15, 0x5cd90577, 0x003b0713, 0x00e2fe6a,
0x40170000, 0x1f01020d, 0x01022611, 0x142a1632, 0x2b012500, 0x83003535, 0x24318203, 0x04ecffa4, 0x2631843d, 0x01000092, 0x826a0006, 0xb619242f,
0x83270102, 0xffb8252e, 0x321eb4de, 0x87062f53, 0x0fd57431, 0x000e5428, 0x0b401300, 0x31822c02, 0x18203d21, 0x840d1f4c, 0x2106215d, 0x5d848f82,
0x10540122, 0x01272b84, 0x0126112a, 0x85241e1d, 0x48588259, 0x052106c9, 0x202b8496, 0x24898296, 0x00540107, 0x248b82c3, 0x01094021, 0x302d8248,
0x3c013c60, 0x40c0ffb8, 0x480b0909, 0x05423c3d, 0x21c58230, 0x46185d2b, 0xc725076d, 0xbe030000, 0x91591807, 0x00690828, 0xff140001, 0x050605ec,
0x002500b6, 0x045a4085, 0x5a0c1304, 0xdf01210f, 0x0221ff21, 0x0f275521, 0x7f276f27, 0x1a060327, 0xa00118f4, 0x0218b018, 0x18011874, 0x135a1218,
0x15301500, 0x15501540, 0x150515c0, 0x0113b015, 0x13771367, 0x01135e02, 0x134f133f, 0x01130002, 0x1a5f1113, 0x1519071a, 0x1303165f, 0x005f0712,
0x05124413, 0x39123227, 0x2f01e12f, 0x2500835d, 0x105d2f33, 0x0b8332e1, 0x5d5e3227, 0x715df610, 0x271c82e1, 0x22053031, 0x16352726, 0x26053f42,
0x23263435, 0x70231121, 0x4708078b, 0x15021e32, 0x020e1415, 0x462f9e03, 0x27441d19, 0x21334020, 0xbbfe7b69, 0x03acfebb, 0x015efeb1, 0x65925d5a,
0x845f3535, 0xa00b0d14, 0x33130c09, 0x73854557, 0x0523fd74, 0xfea4a412, 0x8b5e316f, 0x9a698959, 0xffff3165, 0x2505df5d, 0x26027307, 0xc5666101,
0x33002105, 0x2905c566, 0x26051201, 0x0c063e01, 0x55180004, 0x4a080857, 0xff7d0001, 0x059804ec, 0x002600cb, 0x1113405f, 0x48181340, 0x11071107,
0x0123ca1b, 0x23802370, 0xffb82302, 0x072440c0, 0x2323480a, 0x0128bf28, 0x1b5b0805, 0x5f082766, 0x05af050f, 0x05050802, 0x5f00240d, 0x5f0d0420,
0x18131610, 0x240c6964, 0xe1f61001, 0x05124532, 0x215a5d20, 0x30312905, 0x020e2201, 0x21152107, 0x23060645, 0x2223030e, 0x330af15c, 0x26260717,
0xa05f1903, 0x020d4d78, 0x0586fd74, 0x71ab7640, 0x17609818, 0xaf7a4129, 0xc982a26f, 0x1823488a, 0x73146198, 0x05270759, 0x000602cb, 0x5c000036,
0x535712e9, 0x48ff2730, 0x73017bfe, 0x5182b605, 0x00002d24, 0x55820200, 0x06e96a08, 0x00b605df, 0x0035002a, 0x2b25b58d, 0x080d065a, 0x40f8ffb8,
0x48171453, 0x99235a08, 0x101e011e, 0x0600231e, 0x06020690, 0xb40123e0, 0xd423c423, 0x23000323, 0x23902350, 0x070423a0, 0x23062306, 0x005b2f15,
0x37cf3767, 0x06403701, 0x15154809, 0x0f5f3536, 0x0225af25, 0x2b252508, 0x03235f08, 0x13126019, 0x1206602b, 0x0aea7700, 0x0111e125, 0x792b2f33,
0x392005d1, 0x2a05a458, 0x33115d5e, 0xe1105d38, 0x4910322b, 0x2127089e, 0x030e2111, 0x6d030e07, 0x372c0a0c, 0x12123636, 0x33112137, 0x01021e32,
0x07da6518, 0x06237d08, 0xc27e3cdf, 0xfebffe86, 0x211f0fc2, 0x35141022, 0x234e6e4f, 0x3a171c4a, 0x2a3e3020, 0x200c0c1a, 0x02162b27, 0xcf986d93,
0x77fd377e, 0x2ea4ae77, 0x585d8b5b, 0x9e61ac01, 0x12053d70, 0xd4ecf471, 0x6fa26751, 0x9a0b0e3b, 0x623f100d, 0xc8393675, 0x3a010601, 0x4298fdaa,
0x9dfe9871, 0x61468884, 0x02001b3c, 0x0000c700, 0xb6050c07, 0x21001600, 0x32405300, 0x0e5a1711, 0x1b0a0606, 0x3108fe82, 0x01230f23, 0x231f230f,
0x23ff237f, 0x5a090d04, 0x2122640a, 0x0f115f08, 0x020daf0d, 0x0f0d0d08, 0x6017030b, 0x0012060a, 0x3fe1333f, 0x5e2f3933, 0x544b335d, 0x5d322105,
0x4606a75b, 0x14230590, 0x8223020e, 0x231125f3, 0x21113311, 0xe48d0382, 0x850c0721, 0xb8fd26e4, 0x4802baba, 0x29cd94ba, 0x56fdaa02, 0x98fdb605,
0xbc8d6802, 0x2105ad74, 0xbd820605, 0x00155008, 0x084d4073, 0x1755075a, 0x176f170f, 0x0603177f, 0xa00114f4, 0x0214b014, 0x14011474, 0x5a0e0014,
0x3011000f, 0x50114011, 0x0511c011, 0x0fb01111, 0x770f6701, 0x0f5e020f, 0x4f0f3f01, 0x0f00020f, 0x11150f01, 0x5f0d125f, 0x12070000, 0x83070f03,
0x123f25d6, 0x10e12f39, 0x2f20d482, 0x200a3844, 0x200c8332, 0x05374a5e, 0x32210125, 0x8215021e, 0x0b2f44d9, 0x44230221, 0xba200510, 0x290a2244,
0x5e318103, 0xf2fd598b, 0x1844f601, 0x050d4407, 0x07a20427, 0x01260273, 0x060d44b4, 0x0d448920, 0x05172606, 0x0b220126, 0x090d4411, 0x19262d82,
0xae04ecff, 0x2d826907, 0x2d83bd20, 0x00360223, 0x202d8623, 0x232d8227, 0x13222c0d, 0x080b3b44, 0x7ffec727, 0xb605c104, 0x63000b00, 0x02c64140,
0x020202d6, 0xd503c55a, 0x03a80203, 0x01039601, 0x110e1003, 0x01034748, 0x080a823a, 0x09050328, 0x0d65005a, 0x6f010db0, 0xaf0d9f0d, 0x0d10030d,
0x055a0801, 0x060a0c64, 0x055f0803, 0x05010202, 0x33332f00, 0x324b102f, 0x425d2007, 0x2f3005e2, 0x5d2b5d5d, 0x5de15d5d, 0x21213031, 0x21112311,
0x3405df41, 0x5afec104, 0xba5dfeb1, 0xfebb8502, 0x0581017f, 0x05f0fab6, 0x0ffb6210, 0x21057742, 0xa1823304, 0x00103108, 0x404b001b, 0x01085f2e,
0x15110808, 0x1d67005b, 0x1d5f1d0f, 0x1dcf1d7f, 0x110b0604, 0x1c64065a, 0x0b0f5f1b, 0x08020baf, 0x0a110b0b, 0x1103075f, 0x22077643, 0x612f3912,
0x322106b7, 0x8292835e, 0x208b820f, 0x066f4201, 0x4e431520, 0x3304330f, 0x86c27e3c, 0x140396fe, 0x9896a6fd, 0xfd377ecf, 0x3443a04e, 0x43812005,
0xb6230634, 0x433cfea4, 0xa3410b1c, 0x08a16306, 0x0a954118, 0x6101062c, 0x02000000, 0x7ffe0e00, 0xc5820a05, 0xc5821120, 0x408b7308, 0x281b180b,
0x071b021b, 0x14011437, 0x40f8ffb8, 0x4817140b, 0x0f0e5a14, 0x07070107, 0x40f0ffb8, 0xc00e3010, 0x0e07020e, 0x12050e07, 0x5a01105a, 0xc0ffb800,
0x15102540, 0x10000048, 0x1d201d65, 0x011d0f01, 0x055a0408, 0x5f141c05, 0x5109030e, 0x06101b08, 0x0500035f, 0x00120305, 0x332f333f, 0x3232e110,
0xe13fe22f, 0x2f330111, 0x5d5d5ee1, 0xab18e410, 0x56080a14, 0x5d5e385d, 0x5d2be110, 0x315d3311, 0x11230130, 0x11231121, 0x37053e33, 0x21331121,
0x050e2111, 0xb00a0507, 0x71b064fc, 0x414d562f, 0x02041d30, 0x83fec265, 0x1f04fafe, 0x4d463d2e, 0x017ffe27, 0x027ffe81, 0xd9c85527, 0x69e3e8e6,
0x6a04f0fa, 0xd1cab94c, 0x634bb7c8, 0x0027109b, 0x00040001, 0x84810600, 0xcb4f08f5, 0x09664e40, 0x09860976, 0x47093703, 0x03095709, 0x47060609,
0x020df70d, 0x00695a0d, 0x00890079, 0x48003803, 0x03005800, 0xa8030300, 0x020eb80e, 0x86010e99, 0x0e57010e, 0x0e770e67, 0x110e0e03, 0x0808070a,
0x010a000b, 0x0a800a70, 0x60030ac0, 0x3d0805f6, 0x0a480a07, 0x130a0a10, 0xbf0113f0, 0xdf13cf13, 0x13a00313, 0x01138f01, 0x0f011340, 0x02131f13,
0x01010208, 0xffb81110, 0x110f40f0, 0x03061211, 0x0a110403, 0x0107120e, 0x3f000304, 0x02823333, 0x11391223, 0x06004c33, 0x3d5e1120, 0x115d2906,
0x2b382f33, 0x3333715d, 0x12231a82, 0x825d2f39, 0x2e0a8200, 0x5de15d5d, 0x5d331132, 0x0130315d, 0x84013301, 0x01240836, 0x11012301, 0x23011123,
0xedfd2502, 0xb30a02cd, 0xfdcd0a02, 0xd32102ed, 0xfdb3eefd, 0xf202d3ee, 0x3cfdc402, 0xfd250387, 0xfde5020e, 0x0803831b, 0x0100004e, 0xecff4800,
0xcb05ec03, 0x68003900, 0x5b273f40, 0x00210500, 0x00002130, 0x13033021, 0x670b5b1c, 0x013b9f3b, 0x13801370, 0x4f133f02, 0x03135f13, 0x053a1313,
0x21aa6020, 0x01217801, 0x0801210f, 0x2f192121, 0x0435602c, 0x10146019, 0x820cb647, 0x833920a6, 0x20b482d0, 0x765c1810, 0x5b112007, 0x142306f8,
0x1807020e, 0x2b07e4a0, 0x35272622, 0x3233031e, 0x26343536, 0x210ae85b, 0x6c182223, 0x92080827, 0x5b33d103, 0x8a574b7d, 0x8843325e, 0xc06e89cd,
0x63602b55, 0xb0b22e63, 0xb0bfbacf, 0x32618e5c, 0x3a5f4425, 0x5c4ba96e, 0x83746226, 0x71a66d47, 0x49600439, 0x0c395878, 0x59390b06, 0xa0604877,
0x2d224074, 0x182417aa, 0x8787940d, 0x48279781, 0x53363d65, 0x36431e3a, 0x29361f7d, 0x85613618, 0x00010000, 0x050000c9, 0x00b60510, 0x406b0017,
0x0e0b141b, 0x19650d5a, 0xaf0119d0, 0x19200119, 0x16021930, 0x175a0209, 0x09171864, 0xb3e8ffb8, 0x82481814, 0x40e03107, 0x48130a23, 0x09160906,
0x09030926, 0x1814120d, 0x14211782, 0x35138220, 0x14191409, 0x07031429, 0x03000b14, 0x32323f00, 0x2b2b5d5e, 0x0482333f, 0x9a183320, 0x103108f3,
0x3232e1f6, 0x33133031, 0x020e1411, 0x33070607, 0x13851801, 0x01310809, 0x01aec923, 0x04020202, 0xcc020704, 0x0406acd5, 0xfd080504, 0xb605d731,
0x3e1ae0fc, 0x4a204343, 0xfab4044c, 0x3919034a, 0x4d4c418e, 0xff0046fb, 0x25bd85ff, 0x26026907, 0x6945b201, 0x01893206, 0xb4150052, 0x26051d01,
0xebffb801, 0x001822b4, 0x0aa7490c, 0x0000c724, 0xed82a204, 0x5e000a30, 0x09082140, 0x01091009, 0x00100000, 0x04820702, 0x0c002808, 0x2f010cb0,
0x0c10010c, 0x010a9701, 0x0a010a56, 0x40f8ffb8, 0x480c0814, 0x0307070a, 0x0b64045a, 0x08040207, 0x64040305, 0x33230545, 0x84393912, 0x331123d6,
0x00835d2b, 0x2f331131, 0x335d5e38, 0x33113833, 0x23213031, 0x42231101, 0x043705a1, 0xbafddba2, 0x3502baba, 0x02cbfdcf, 0x051bfde5, 0x023cfdb6,
0x8242fdc4, 0x000025b0, 0x9304e9ff, 0x1f258f82, 0x08b16200, 0x086f8303, 0x17143b39, 0x895a0348, 0x10190119, 0x011ee019, 0x1ec41eb4, 0x00031ed4,
0x801e501e, 0x1e07031e, 0x5a01101e, 0x0f216500, 0x7f211f21, 0x10080321, 0x5f032010, 0x6014031e, 0x83130d11, 0x05bf5c96, 0x2f330123, 0x06f8455e,
0x99825e20, 0x5d383325, 0x64322be1, 0xce4805ea, 0x93042416, 0x4885feba, 0xd0201aba, 0x441aa548, 0x4b660675, 0x6804200f, 0xb1650801, 0x2b0f820f,
0x040000c7, 0x02b605c1, 0x006e0106, 0x6b653f86, 0x272f8509, 0xcb059804, 0x26000602, 0xeb641f84, 0x06b9550c, 0x05ae5f08, 0x002100b6, 0x1210406f,
0x131b1b01, 0x70006021, 0xf000b000, 0xb8000400, 0x1040c0ff, 0x00480a06, 0x23000010, 0x237f230f, 0x13091402, 0x40f0ffb8, 0x2213130c, 0x1af71ae7,
0x011ad602, 0xe0ffb81a, 0x0e0a1040, 0x1a011248, 0x5f0d0003, 0x1313060a, 0x3f000300, 0xe1333f32, 0x2b391711, 0x94445d5d, 0x068c4406, 0x39123329,
0x31333311, 0x4a010130, 0x52080d0e, 0x1e013301, 0x3e331703, 0x04013703, 0x2654feae, 0x6f9c7053, 0x25255a33, 0x52353459, 0xfd1c3842, 0x7f01ccee,
0x09090a05, 0x0b030204, 0x01030b0b, 0xfbb60537, 0x7ba45dfa, 0xb90f0f48, 0x35171914, 0x3f043f56, 0x180ad7fc, 0x0909171a, 0x071d211f, 0x4b001803,
0x05210579, 0x21ff83ba, 0xff847301, 0x00000023, 0x0bad6404, 0x7ffec724, 0xff827105, 0x3b000b32, 0x5a032140, 0x5a090202, 0x0db00d00, 0x010daf01,
0x2d0a1248, 0x055f0800, 0x12050202, 0x2f333f00, 0xd982e110, 0xf6100130, 0x5d5d5de1, 0x33e1d410, 0x3031e12f, 0x0b483325, 0xb0b02a0b, 0x02ba06fc,
0xfda6bb85, 0x070b48d9, 0x00010023, 0x207982a6, 0x08698281, 0x48001532, 0x01131d40, 0x1765005a, 0x17a01770, 0x01172f02, 0x0d011710, 0x700a605a,
0xb00aa00a, 0xb80a040a, 0x0e40c0ff, 0x0a480a07, 0x055f1013, 0x030b1405, 0x27059042, 0x33e12f39, 0x5d2b2f01, 0xf6217884, 0x058742e1, 0x23060623,
0x06c75322, 0x33162908, 0x11373632, 0xba810433, 0x5d62c373, 0xba356592, 0xb95a7b69, 0x5602ba70, 0x5f312e2c, 0x4702598a, 0x7473d1fd, 0xc6022828,
0xc7248d82, 0x33070000, 0x603af784, 0x08564240, 0x175a0801, 0x05860105, 0x05a60596, 0x77056703, 0x05050205, 0xa3820901, 0x000d3208, 0x020d100d,
0x0d500d20, 0x0d800d70, 0x0dd00dc0, 0x0f070de0, 0x0407010d, 0x0c64015a, 0x0302060a, 0x015f0408, 0xe13f0012, 0x33333f32, 0xe1f61001, 0x05a8595e,
0x2f391122, 0x28490882, 0x05044b06, 0x33112129, 0x94f93307, 0x831f02ba, 0x05244902, 0x05f0fa24, 0x8f830010, 0x077ffe23, 0x088f82e3, 0x71000f47,
0x0c564b40, 0x175a0c01, 0x09860109, 0x09a60996, 0x77096703, 0x09090209, 0x005a0d05, 0x02025a03, 0x00116500, 0x02111011, 0x11501120, 0x11801170,
0x11d011c0, 0x0f0711e0, 0x08070111, 0x1064055a, 0x03060a0e, 0x0eb1410c, 0xe4259c8c, 0x10e12f32, 0x41a089e1, 0x11200bbd, 0xb021a484, 0x41a688b0,
0xab850ac4, 0x14000226, 0xd5040000, 0x2b06c549, 0x0b334052, 0x06905a11, 0x08060601, 0x2e06c849, 0x2f1d0f01, 0x5f1d3f1d, 0x051daf1d, 0x49080806,
0x08220bca, 0xca49095f, 0x0111240f, 0x4c5e2f33, 0x5d20073c, 0x200b304d, 0x10cc4935, 0x7e3cd538, 0x95fe86c2, 0x0f02acfe, 0x7fcf9895, 0xa04efd37,
0x5c2da3ae, 0xcc495d8a, 0xa4122107, 0x260d2c4c, 0x00c70003, 0x82cf0500, 0x0e3108ab, 0x1d001900, 0x2b404900, 0x00005b13, 0x06000001, 0x651d5a1a,
0x9f1f0f1f, 0x0906021f, 0x64065a0f, 0x0f5f191e, 0x0209af09, 0x1b090908, 0x600f0307, 0x0be44c1a, 0x68075f5e, 0xe121068a, 0x05035931, 0x2311d94c,
0x11331101, 0x2007734a, 0x0e704aba, 0xbb930322, 0x8c07734a, 0x56fd25a5, 0x4afab605, 0x830a1d4b, 0x404825ab, 0x905b132e, 0x6731a982, 0x5f1b0f1b,
0x1b06021b, 0x48181540, 0x130d401b, 0x20ae8448, 0x83ae891a, 0x21ac83ad, 0x1b4b3fe1, 0x2b2b2509, 0xf6105d5e, 0x91088574, 0x94a497a8, 0x088682a1,
0xecff3b43, 0xcb054404, 0x51002400, 0x201d2f40, 0x1e160c5b, 0x0c041e16, 0x26bf2667, 0x26df26cf, 0x25040403, 0x1faa5f1e, 0x011f7801, 0x08011f0f,
0x1a071f1f, 0x1311175f, 0x075f0003, 0xe13f0004, 0xe1333f33, 0x2e9e8311, 0x11e15d5d, 0x5d2f3301, 0x3911e610, 0x4f2f2f39, 0x22280521, 0x36270706,
0x16323336, 0x08d86718, 0x51022e21, 0x99080597, 0x35211312, 0x01032e21, 0x3f945eba, 0x6cc44f4e, 0x52a2f4a2, 0xa4f7a552, 0x4e56613a, 0x59a04e27,
0xfd06f7ed, 0x0971028b, 0x059d7347, 0x9c202e27, 0xc16d2c2a, 0xb39df6fe, 0x6dcae0fe, 0x0f170e07, 0x012317a2, 0xa2060117, 0x407ab06f, 0xc7000200,
0x9e07ecff, 0x1a00cd05, 0x5e002e00, 0x5b1b3c40, 0x0111900a, 0x250d1111, 0x3067005b, 0x3f01300f, 0x7f306f30, 0xff30ef30, 0x40300530, 0x10481411,
0x640d5a0c, 0x165f2a2f, 0x0f5f0b04, 0x10080110, 0x030e0d10, 0x5f20120d, 0xd4821305, 0x4c3f3f21, 0x3f20058d, 0x20051e42, 0x08c5422b, 0x31e13324,
0x446e0130, 0x21272908, 0x33112311, 0x033e2111, 0x9c59e184, 0x2e2b0809, 0x0e222302, 0x4f9e0702, 0x9796e59b, 0x065098e1, 0xbabaaefe, 0x550b5601,
0x9591db98, 0xfb4f9ae5, 0x9d6731fa, 0x669d6d6c, 0x82653030, 0x679e2e07, 0xa9dd0231, 0x6cc6eafe, 0x0301b764, 0x051e4fa0, 0xa7ec9226, 0xfec56b5a,
0x1415a318, 0x00192b08, 0x05f20300, 0x000f00b6, 0x409b001c, 0x01000609, 0x00f600e6, 0xffb80002, 0x0b2440f8, 0x0e1c480f, 0x0000035a, 0x1e650d08,
0xa1181e3f, 0x06280b9e, 0x01e60101, 0x010201f6, 0x0d202883, 0x59082882, 0x01024b01, 0x0b084002, 0xffb80248, 0x022640f0, 0xdf5b1602, 0xff08ef08,
0x40080308, 0x0748130f, 0x02081708, 0x1d660808, 0x0f03601c, 0x6011010f, 0x010e030b, 0x333f0012, 0x3912e13f, 0x01e1332f, 0x5d5ef610, 0x33e15d2b,
0x5d2b382f, 0x715d2b33, 0xf6105d5d, 0x33113911, 0x0c8232e1, 0x01303130, 0x2e012301, 0x36343503, 0x23112133, 0xe15d1111, 0x33890808, 0xb2fe4202,
0x377d01db, 0xfd2c4b63, 0xbb7501fb, 0x4f734abc, 0x774e2729, 0x5c02b451, 0x8f02a4fd, 0x88613e14, 0xfac9c65d, 0x025c024a, 0x613e1dbb, 0x4a694244,
0xffff0028, 0xecff5e00, 0x5e049c03, 0x44000602, 0x02000000, 0xecff7500, 0x23062104, 0x3b002700, 0x2c404900, 0x1e09482d, 0x3dd03d57, 0x013d7f01,
0x0f013d40, 0x1306013d, 0x56004837, 0x1350323c, 0x28081919, 0x09162350, 0x48100b08, 0x01085109, 0x2be13f00, 0x0569573f, 0x2b096462, 0xe132f610,
0x34133031, 0x37363612, 0x17230282, 0x8207030e, 0x18332002, 0x200d0c5e, 0x068b6c01, 0xc008cf83, 0x021e1407, 0xa2683175, 0x66f27d71, 0x7d7b3221,
0x643e2c75, 0x0d042948, 0x6b543e12, 0x65966340, 0xae7c4532, 0x7bad6b68, 0x3ce10142, 0x1a264662, 0x3d415a3a, 0x0d39536a, 0x02724119, 0x1901b593,
0x1b197ecb, 0x08a01431, 0x0a181816, 0xa571420e, 0x313c1d71, 0xb4834920, 0x8ace896c, 0xfdad5945, 0x582794fe, 0x8654698f, 0x4430335f, 0xbc641a49,
0x03005993, 0x0000ae00, 0x4a041904, 0x20001500, 0x5c002b00, 0x1b033a40, 0x00004621, 0x0947160f, 0x2d202d57, 0x902d4001, 0xd02db02d, 0x052df02d,
0x06012d0f, 0x0f471b26, 0x1a032c54, 0x0126bf50, 0x26892679, 0x1b262602, 0x0f105025, 0x150f501b, 0x0eb86500, 0x28098e60, 0x3912e12f, 0x14013031,
0x088e4c06, 0x21112129, 0x03021e32, 0x83232634, 0x863e2009, 0x32332109, 0x50080982, 0x386b7bf6, 0x2f294761, 0xfe719f65, 0x53c50139, 0x903b678e,
0x00ff8082, 0x5d380401, 0x6d1e2643, 0xecf5fe6c, 0x1f3f5c3e, 0x75683503, 0x24070712, 0x433f5b3d, 0x04305674, 0x6b401c4a, 0x485cc7fd, 0x2a12a8fe,
0x4d0c0245, 0x0fd7fe40, 0x00003c24, 0x21e38301, 0xe3820a03, 0x2f00053f, 0x00001c40, 0x00020010, 0x07a00700, 0x01078101, 0x02010750, 0x06540347,
0x0f045001, 0x24411802, 0x5d5d2509, 0x5d2f3311, 0x212fb282, 0x21112311, 0x5afe0a03, 0x035c02b6, 0x8250fcb0, 0x00022645, 0x0483fe29, 0x08098237,
0x17000f5a, 0x10407900, 0x46120717, 0x3f072f0c, 0x070b0207, 0x0702071b, 0x40f0ffb8, 0xb20ca239, 0x0c04020c, 0x07020c14, 0x050c070c, 0x010e4710,
0x20000046, 0x550e010e, 0xcf19af19, 0x19300219, 0x01192f01, 0x05054604, 0x0c4f1218, 0x060e170f, 0x05150350, 0x3f00fb00, 0x32e13f32, 0x11210382,
0x06f96601, 0x475de421, 0x392b068b, 0x5d5d2f2f, 0x105d5d38, 0x4f3311e1, 0x02210ac9, 0x05ca4f12, 0x0e233108, 0x37040703, 0xae4efdae, 0x43634156,
0x17020122, 0xc0b2fe97, 0x513a2407, 0x0183fe34, 0x0283fe7d, 0xf3df5f17, 0xfc7f0001, 0x67240350, 0x53c2d1d7, 0x2905a560, 0x5e04e103, 0x48000602,
0xc14f0000, 0xbe052105, 0x2208db82, 0x409c0011, 0x0303061f, 0x000f460a, 0x010bd600, 0x0bc90bb9, 0x010ba602, 0x0b010b97, 0x04070e0b, 0x82080505,
0xb3c024e8, 0x83481512, 0x402e0807, 0x480b0724, 0x0601070f, 0x07071007, 0x10130013, 0x13df0213, 0x70133001, 0x03139013, 0x0701130f, 0x0d101011,
0xf0ffb80e, 0x0e0e0f40, 0x69820312, 0x0a080d27, 0x01041115, 0x17984f0f, 0x33117128, 0x5d5e382f, 0x974f2b2b, 0x32e1210e, 0x8f4ffc84, 0x01013e0d,
0xa48f0233, 0xfec5a001, 0xcece0158, 0xfea443fe, 0xcf01cf44, 0x02c558fe, 0xfd150235, 0x250383eb, 0x2d02cbfd, 0x0384d3fd, 0xe9821382, 0xecff4432,
0x5e045203, 0x5f003900, 0x46053a40, 0x39161b16, 0x31080182, 0x2147340c, 0x3bb03b57, 0x3bd03bc0, 0x013b6f03, 0x29013b20, 0x1b3a560c, 0x39cf5038,
0x99398901, 0x390f0239, 0x39390801, 0x26502f11, 0x11500816, 0x69720010, 0x5d5d2708, 0x100139e1, 0x8a4f32e6, 0x39392306, 0x884f2f2f, 0x3e322506,
0x26343502, 0x200a6b4f, 0x139a4f15, 0x61082485, 0x71013523, 0x2748643d, 0x81476c73, 0x4d283f4b, 0x56355a52, 0x1c3a6990, 0x2c2b4633, 0x35263f52,
0x6d71a66c, 0x4c1f3aaf, 0x37336157, 0x85294660, 0x8702818a, 0x2d402712, 0x22264d4d, 0x131c1493, 0x6d4a2609, 0x3b4d3246, 0x0e0b0e29, 0x3e5a422c,
0x31567543, 0x10a62223, 0x120f181f, 0x5e33452a, 0x1143995b, 0x04310805, 0x004a043b, 0x4051000b, 0x0910031b, 0x06034818, 0x0d550546, 0x0d100d00,
0x0da00d20, 0x0dd00dc0, 0x0d070df0, 0xb3c0ffb8, 0x0948110e, 0x40f0ffb8, 0x2d258211, 0x0a460009, 0x03080c54, 0x02060f0b, 0xba41150a, 0x10012706,
0x2b32e1f6, 0x06845d2b, 0x30312708, 0x01071101, 0x11231133, 0x11230113, 0x020c5a01, 0x0bace904, 0x04eafefd, 0xfc64fd4a, 0xb6fb9803, 0x0f018702,
0x7c826afc, 0x3f058b66, 0x17063b04, 0xd2012602, 0x06010000, 0x00253602, 0x01b41500, 0x01261111, 0xb4ffffb8, 0x040a0c16, 0x240a4f4f, 0x030000ae,
0x283882e5, 0x4041000a, 0x01010023, 0x053a6304, 0x03031037, 0x010c0f0c, 0x4706020a, 0x050b5407, 0x070a0a02, 0x040f0800, 0x209f8307, 0x05494d3f,
0x3230a284, 0x2f33115d, 0x33335d38, 0x30313311, 0x01013301, 0x2b06354f, 0xfec4fa02, 0xcec60161, 0xb4b44bfe, 0xf126a582, 0x2d02c5fd, 0x0982d3fd,
0x0100eb28, 0xf2ff1000, 0x7382b003, 0x00143408, 0x0331404c, 0x01130446, 0x800113f4, 0xc0139013, 0x0413d013, 0x13011354, 0x47010b13, 0x0f165500,
0xff162f16, 0x0b060316, 0x5003150b, 0x4f0e0f13, 0x82011608, 0xe13f2181, 0x20059553, 0x06224f5e, 0x5d5d5d23, 0x06087471, 0x7d680220, 0x27300805,
0x32331635, 0x37123636, 0xb6b00321, 0x4014fefe, 0x1c56825f, 0x1b171031, 0x33455937, 0x03540212, 0xfefdfeb0, 0x0669e694, 0x75068306, 0xfa6f01f1,
0x2105bf41, 0x95821005, 0x00204208, 0x1f3f405e, 0x55004601, 0x0122cf22, 0x22502240, 0x01220f02, 0x46101306, 0x02215411, 0x4b0f3b0f, 0x030f5b0f,
0x0f190f09, 0x0f030f29, 0x340f121f, 0x54194419, 0x19060319, 0x19261916, 0x01091903, 0x25a38211, 0x5d333333, 0x04833f5d, 0x46331121, 0x102008bf,
0x2a073d4d, 0x0107030e, 0x032e0123, 0x82231127, 0x031e351e, 0x37033e17, 0x10053301, 0x141106a1, 0xf8fe0712, 0x05f7fe87, 0x32080983, 0x0b01dda2,
0x0f13160d, 0x130e0604, 0x0e010d16, 0x158103d9, 0x12363b39, 0xb00250fd, 0x3e3b310d, 0x047ffc1a, 0x2247fd4a, 0x10323c43, 0x413b3111, 0x42bd0221,
0x44080c89, 0x0217405b, 0x55054706, 0x200d000d, 0x0d30020d, 0x0d500d40, 0x0df00dd0, 0xffb80d05, 0x0e2340c0, 0x09014811, 0x0c540a47, 0x01eb5008,
0xb901a901, 0x010f0201, 0x012f011f, 0x01010603, 0x0315050a, 0x3f000f00, 0x056f5832, 0x495d5d21, 0x32260b6d, 0x11013031, 0x7e4e1121, 0x11233805,
0x21026401, 0xdffdb6b6, 0xfe4a04b6, 0xfbc70139, 0xfee901b6, 0x654a0417, 0x280812b1, 0x040000ae, 0x004a0412, 0x402d0007, 0x0447051c, 0x09100955,
0x09600920, 0x09800970, 0x01470005, 0x50070854, 0x00050f02, 0x84788315, 0x755d2071, 0x012e0ce5, 0x6403b664, 0x0408feb6, 0x03b6fb4a, 0x618200b0,
0x14feae2b, 0x5e043f04, 0x53000602, 0x240f8300, 0x03ecff71, 0x2a0f846f, 0x00000046, 0x00290001, 0x845e0300, 0x40582871, 0x0109203c, 0x830109df,
0x5f02286c, 0x000f0109, 0x8200cc01, 0x00bf2105, 0x003d3d82, 0x60034702, 0xd0057005, 0x051f0305, 0x00050501, 0xb0031003, 0x0403c003, 0x50050103,
0x06c94606, 0x2f013230, 0x5d2f335d, 0x32e1105d, 0x5d5d5e2f, 0x03825d71, 0x3b07d246, 0x5e032135, 0xfeb7c1fe, 0x033503c1, 0x0350fcb0, 0xffff9ab0,
0x14fe0a00, 0x4a04df03, 0x5c205f82, 0x032c8d82, 0x14fe7100, 0x14062305, 0x22001900, 0x30089982, 0x274b4074, 0x1d460b00, 0x130d0c17, 0xc90cb949,
0x0c97020c, 0x0c020ca7, 0x4823120c, 0x202b5705, 0x2b0f012b, 0xef2b9f01, 0x2b80022b, 0x012b6f01, 0x37108340, 0x06022b1f, 0x5612481a, 0x2600182a,
0x1700501e, 0x501d2710, 0x0b160d0a, 0x2209be62, 0x4f013f32, 0x9e830510, 0x2508c775, 0xe133332b, 0xad823232, 0x080cac60, 0x023e3483, 0x01331137,
0x11171614, 0x3405030e, 0x36112726, 0x71210336, 0x474c88bd, 0xaa77be86, 0x4c89bf72, 0x79c18547, 0x9c0cfeaa, 0x507d58ae, 0x9b390325, 0x0499acaa,
0x8f550c5a, 0xc87d7dc6, 0xfe0b5691, 0x0adc0124, 0x7ec99056, 0x558fc77d, 0xfcba010b, 0x13d2bb13, 0x3d093c03, 0xba5e9167, 0xc6fc14cc, 0xff00d114,
0x002300ff, 0x04db0300, 0x0006024a, 0x0000005b, 0xfeae0001, 0x04b20483, 0x000b004a, 0x32d68244, 0x01000f47, 0x07000006, 0x010a8f47, 0x0d100d0a,
0x4f600d20, 0x063206f9, 0x54034706, 0x0f04080c, 0x0350060a, 0x00fb0115, 0x09513f3f, 0xd4102808, 0x2f33e15d, 0x47e15d5e, 0xef4f06ba, 0x04333605,
0xb2fcb6b2, 0xb6f801b6, 0x0183fea0, 0xfc4a047d, 0xfcb00350, 0x20738250, 0x2083829a, 0x287382fe, 0x40310018, 0x470c081c, 0xf29b180b, 0x47012c08,
0x08195417, 0x12125003, 0x4209150b, 0x392205f6, 0xb664e12f, 0x82322008, 0x14112b60, 0x023e3233, 0x11331137, 0x3a651123, 0x012b0807, 0x502db850,
0xb62a4d4c, 0x55502cb6, 0x7a4e3a5e, 0x4a042b52, 0x0fae66fe, 0x011c2c1c, 0x01b6fbd5, 0x20301ee9, 0x73542f11, 0x43a60144, 0x06210599, 0x08f38446,
0x4340662f, 0x09b64700, 0xa90209c6, 0x74030109, 0x94098409, 0x09670309, 0x09090601, 0x04470105, 0x0d200d55, 0x010d0f01, 0x0df00d80, 0x010d6f02,
0x300d8340, 0x06020d2f, 0x54054708, 0x5008000c, 0x060a1505, 0x05e84702, 0x4132e121, 0xae6408ed, 0x5d5f2207, 0x2302825d, 0x253031e1, 0x2006285a,
0x2f078211, 0xba01d503, 0xb668fab7, 0x9ab6bb01, 0xb6fbb003, 0x41051741, 0x06210589, 0x2d9582e5, 0x4077000f, 0xb6470a4e, 0x0207c607, 0x958207a9,
0x07840732, 0x67030794, 0x07060107, 0x470b0307, 0x0e47010e, 0x24082e82, 0x010ebf00, 0x1120110e, 0x01110f01, 0x11801140, 0x11f011e0, 0x2f110f04,
0x06060211, 0x10540347, 0x0f04080c, 0x0bac410e, 0xa1513220, 0x1071260a, 0x2f325dc4, 0x0507515d, 0x0120a688, 0x8308d15a, 0x331126a8, 0xfab6e506,
0x82a8837f, 0x419f20b1, 0x032b0bc3, 0x0050fcb0, 0x00290002, 0x82fc0400, 0x0e3708b1, 0x5c001b00, 0x470f3e40, 0x501d5704, 0x901d601d, 0x041de01d,
0x00011d3f, 0x000a4716, 0x020c100c, 0x0cf00cb0, 0x000c0c02, 0x500a100a, 0xa00a600a, 0x0a08050a, 0x83bf5015, 0x0c1627c5, 0x160f0d50, 0x634b0a50,
0x01e12c09, 0x335d5e2f, 0x10715d2f, 0x5c5d32e1, 0xe1730874, 0x11212805, 0x01213521, 0x4b022e34, 0x0225065c, 0xd4140148, 0x05504bcc, 0x98fe2808,
0x02021f02, 0x40604121, 0x040100ff, 0x26445d37, 0x9b9c8702, 0x2f587c4d, 0xfc9ab003, 0x284231f8, 0x11a8fe11, 0x4c004229, 0x3f08051b, 0x4a045005,
0x10000c00, 0x61001d00, 0x47184040, 0x04100400, 0x04700420, 0x060504d0, 0x0e0a0404, 0x1f550d47, 0xbf011f0f, 0xdf1fcf1f, 0x041fff1f, 0x0f011fa0,
0x021f7f1f, 0x47120007, 0x111e540a, 0x0f25be85, 0x50120f0b, 0x5ebd830e, 0x9e450511, 0x635e2006, 0x164309c1, 0x32332105, 0x332bc087, 0x33112301,
0x32331101, 0x8335023e, 0x640122c8, 0x2dc186ec, 0xec03b662, 0x14fcb6b6, 0x435d38db, 0xc7822126, 0x0427bf87, 0x04b6fb4a, 0x84a4fd4a, 0x833020be,
0x000022c8, 0x08df4c02, 0x19000c3e, 0x29404000, 0x57044714, 0x011b001b, 0x1b201b00, 0x1b901b70, 0x1bd01bb0, 0x0e000806, 0x1a21ac82, 0x22ac850d,
0x410e0f0b, 0x39200668, 0x09f1b118, 0xf6107127, 0x013031e1, 0x22a08921, 0x89211111, 0x1501219c, 0x39239d86, 0x910401b6, 0x08948c98, 0x3700014b,
0x4203ecff, 0x26005e04, 0x3e405e00, 0x0c040e0e, 0x5722480f, 0xaf288f28, 0x28400228, 0x040f1801, 0x042f041f, 0x0c400403, 0x58044811, 0xef500d27,
0x0ea9010e, 0x0f020eb9, 0x2f0e1f0e, 0x0e06030e, 0x5112070e, 0x5107101d, 0x0ce17000, 0x1001e125, 0x42712be6, 0x3223050d, 0x622f3911, 0x372b0cba,
0x26213521, 0x0e222326, 0x4e270702, 0x4c080982, 0x7c594201, 0x52833636, 0x30527449, 0x0123fe04, 0x8c920ddb, 0x383c3b19, 0x40183517, 0x66264e48,
0x514d84b3, 0x1e14ba8c, 0x2519a21d, 0x5c845428, 0x0997a69a, 0x9a0a130f, 0x0910160c, 0x9ddb893e, 0x438ad492, 0x00020000, 0x06ecffae, 0x20d18208,
0x08d3821a, 0x4b407220, 0x200a481b, 0x114f0111, 0x0d111101, 0x57004821, 0x2f280f28, 0x28ef0228, 0x470228ff, 0x0c840128, 0x0c102608, 0x27540d47,
0x10165024, 0x10ef500b, 0xb910a901, 0x102c0210, 0x1b100b01, 0x10060210, 0x0f0e0d10, 0x501e150d, 0x21e08405, 0x1552123f, 0xe15d2105, 0x42064551,
0x5d210937, 0x05475171, 0x23020e25, 0x51022e22, 0x1e210b45, 0x95831802, 0x0623080b, 0xab784008, 0x75a2626a, 0xeffe0746, 0x1301b6b6, 0xa076480a,
0x79a76263, 0x8029fd44, 0x807e8f8e, 0x6c7e8e8f, 0x4230056b, 0xfe7cbe81, 0xfe4a0417, 0x78b17439, 0xd3914b3e, 0x0b77a018, 0x00233e08, 0x04910300,
0x0011004a, 0x4053001c, 0x11110214, 0x470f1807, 0x0f1e550e, 0x8f1e6f1e, 0x0006031e, 0xf0ffb801, 0x01011940, 0x40074612, 0x07481512, 0x10021d56,
0x00181850, 0x0f0d5019, 0x0629480f, 0xe137ce82, 0xf6100132, 0x2f33e12b, 0x5d5e3338, 0x32e1f610, 0x33113911, 0x50333031, 0x420805e4, 0x2133023e,
0x23112311, 0x021e1403, 0x23113333, 0xc6e90622, 0x542d2301, 0x64382841, 0xbc01538a, 0x25ddf4b6, 0xdb365a41, 0x01686bfe, 0x4c300ccd, 0x794e476c,
0xb6fb2a51, 0x5401b001, 0x162e4630, 0x485f6601, 0xe12b075d, 0x2602d905, 0x00004800, 0x18000601, 0x2b1c9774, 0x12000100, 0x120414fe, 0x31001406,
0x2c08db82, 0x0c171f32, 0x33552d47, 0x33603310, 0x23033380, 0x47161e22, 0x3254171b, 0x1e4f1921, 0x231c1a1a, 0x29005010, 0x29202910, 0x1c0f2903,
0xbf5c1800, 0xe15d220b, 0x08847c33, 0x32e13222, 0x22052571, 0x18313912, 0x200c7a5d, 0xc85c1811, 0x35232109, 0x10c66518, 0x020e1424, 0x5c18f002,
0x692809d1, 0x436e5170, 0x9c9cb61d, 0x0dd36518, 0x0ed55c18, 0x65184420, 0xfc2615e1, 0x577b4dbe, 0x6b4c002f, 0x0a032e05, 0x26022106, 0x0000cd01,
0x76000601, 0x05f166d4, 0x26111227, 0x0c064501, 0x0b256103, 0x08069749, 0x00220033, 0x1731404f, 0x0d1f1617, 0xaf248f24, 0x24400224, 0x48191601,
0x19235605, 0x0116ef50, 0x16b916a9, 0x1f160f02, 0x03162f16, 0x1c161606, 0x100a5113, 0x1194431c, 0x32e1f626, 0xce105d5d, 0x21079243, 0x8b7c022e,
0x063b6e05, 0x21070624, 0xfe722115, 0x52022208, 0x35ab1865, 0x928b380f, 0xfedb010e, 0x8a920923, 0x36368351, 0x893f147b, 0xdb9d96d5, 0x6e223e89,
0x97290522, 0xa4b89aa6, 0x1da21925, 0x23e3821e, 0x03ecff5a, 0x21055f4a, 0xf3830056, 0xe982a020, 0xe5057527, 0x4c000602, 0x210f8200, 0x7518eeff,
0xff262ded, 0xfebcffff, 0x41850114, 0x82004d21, 0x0041083c, 0x06f2ff10, 0x004a0412, 0x002a001d, 0x0c45406b, 0x25001c46, 0x1cd40a47, 0xa01c9001,
0x1c24021c, 0x011c0001, 0x0a1c0a1c, 0x04471e14, 0x2c0f2c57, 0x2c3f2c2f, 0x2c7f2c5f, 0x2cef2cbf, 0x2b141407, 0x05644524, 0x500c2529, 0x4f170f1c,
0x45251611, 0xe126066b, 0x3912e13f, 0xf8555d2f, 0xe1f62706, 0x2f393911, 0x00825d2f, 0x32e11027, 0x3031e110, 0x091b4601, 0x384d2320, 0x34013610,
0x2323022e, 0x3e323311, 0xec870302, 0x652ecbd4, 0x62fe719f, 0x0f4a4dd9, 0xd9012b2b, 0x40604121, 0x5d38dbd7, 0x0af64643, 0x470e5e4d, 0x02260b04,
0x0000ae00, 0xef827506, 0x00142a08, 0x40530021, 0x471c0530, 0x130f0f02, 0x57094715, 0x0123ef23, 0x3f012380, 0x23100123, 0x47120101, 0x1b225413,
0xbf055011, 0x24008201, 0x13501c00, 0x08924c0f, 0x2f21cc82, 0x0803655d, 0x20051e50, 0x08966b11, 0x33112122, 0xb947b982, 0x23112208, 0x24ce8a11,
0xcf016401, 0x08fa46b6, 0xb631fe2e, 0x41211505, 0xdcd83f61, 0x26445d37, 0x2105c04c, 0xbf473dfe, 0x05c64c05, 0x0127bd8b, 0x00001200, 0x85061204,
0x683226bb, 0x0b140114, 0x92691800, 0x0e0e2117, 0x0b8d6918, 0x00100f23, 0x8d69180b, 0x8c69180c, 0x3911230e, 0xa918315d, 0xc6430c84, 0x5c032112,
0x2016b943, 0x8d691802, 0xae00321b, 0xe5030000, 0x26022106, 0x0000d401, 0x76000601, 0x05a74308, 0x26111728, 0x110b0c01, 0x11500307, 0x07b14c07,
0x02170625, 0x835c0026, 0x3602222b, 0x202b85b1, 0x232b8228, 0x00232d0a, 0x09cb7318, 0x2205c34b, 0x824a0412, 0x592408d7, 0x06d63d40, 0xc706b701,
0x47060206, 0x07c507b5, 0x760307d5, 0x02078607, 0x075a074a, 0x09070702, 0x55044701, 0x340ad74b, 0x09470005, 0x00050c54, 0x06150950, 0x0f020afb,
0x3f333f00, 0x096f4b3f, 0x2f391128, 0xe15d5d5d, 0xc24a5d5d, 0x11232e08, 0x01331121, 0xb6f80164, 0xfeb7b3fe, 0x05c24aa0, 0x82051a4a, 0xc70021a6,
0xbe31e182, 0x0700e306, 0x2c404400, 0x03df5a00, 0x03ff03ef, 0x05cc5003, 0xb0090335, 0x0209d009, 0x09af090f, 0x065a0502, 0x5f040864, 0x82012007,
0x03072e00, 0x3f001206, 0x5d2f333f, 0x1001e110, 0x206e82f6, 0x260b8211, 0x3031e15d, 0x82331101, 0x1123316f, 0xfdb00e03, 0xb605bac3, 0x2dfe2d01,
0xb605f0fa, 0x2305c34b, 0x89050a03, 0x30346982, 0x47051c40, 0x00100000, 0x09000002, 0x54034702, 0x20061008, 0x0622ff82, 0xf9544f01, 0x834e8207,
0x83568358, 0x5d212055, 0x033205ae, 0xb65afe0a, 0x03b6a601, 0x043ffcc1, 0xff3f014a, 0x581800ff, 0x00230e65, 0x61e70043, 0x2b2b0507, 0xb8012605,
0x31b4acff, 0x410e1e2b, 0x58180aa5, 0x062a0d67, 0x004c4300, 0x01b41500, 0x2d831130, 0x36b49e25, 0x8d2e1130, 0xc358182d, 0x7600230b, 0x5d82a001,
0x0b401324, 0x5e823701, 0x312b6422, 0x07205b9a, 0x17242d82, 0x13000000, 0x3c202d82, 0x69225e82, 0x5b923630, 0x26022b2c, 0x00003a00, 0x6a000701,
0x5b823901, 0x02b61927, 0x26053401, 0x23bb8202, 0x3f2bb4ff, 0x876d5f85, 0x21bd8408, 0x3382d905, 0x33855a20, 0x82ac0021, 0x21338361, 0x33861139,
0x85443021, 0x82338865, 0x18042020, 0x230a2b59, 0x72ff4300, 0x20052141, 0x24c28209, 0xb4a4ffb8, 0x2d59180f, 0x8207201b, 0x824b202f, 0xb4152342,
0xc4822301, 0x29202f83, 0x080dcb42, 0xd1015225, 0x7902ae03, 0x1d000300, 0xff0200b9, 0x060b40c0, 0x0202480c, 0xb9000005, 0x3f00bd01, 0x112f01e1,
0x7c2b2f33, 0x52290553, 0xd1015c03, 0x0100a8a8, 0x20358200, 0x2035a807, 0x2835bb07, 0xfefcff02, 0xff4e0331, 0x34a182d3, 0x402a0007, 0x00000418,
0x05010509, 0xff06efba, 0x02060206, 0x064278ba, 0x2f000124, 0x0282e15d, 0x332f0122, 0x3325b082, 0x21013031, 0x25018435, 0xaefc4e03, 0x03835203,
0x8b31fe25, 0x82008b8c, 0x172808bd, 0x5001c103, 0x0c00b605, 0x17402500, 0x06010e5f, 0x075f070f, 0x07bf076f, 0x070507cf, 0x0c01980c, 0x0003069c,
0x2f01e53f, 0x33215082, 0x08fb825d, 0x033e2721, 0x030e3337, 0x0e0e2507, 0x19342e27, 0x1a1d0f89, 0xc1030816, 0x7c7a3616, 0x843d387b, 0x93357c83,
0x2d4a8255, 0x015f010f, 0x01bf016f, 0x010501cf, 0xc2829c06, 0xa7825583, 0x01215583, 0x20518217, 0x21598223, 0x56824201, 0x19332f33, 0x1b1d0e89,
0xb6050816, 0x7d793716, 0x843c387a, 0x82568284, 0xfe3f2657, 0x007901f8, 0x2cad82ee, 0x0e00b935, 0x1440c0ff, 0x0c48180a, 0x205a8598, 0x2a5a847f,
0xb8070601, 0x10b7c0ff, 0x82074815, 0x84a82065, 0x332b29bb, 0xe15d2f33, 0x2530312b, 0x6a226788, 0xd5180e0f, 0x012816f6, 0xc1031900, 0xb6055201,
0x2b3a6582, 0x0e5f1c40, 0x050f0601, 0x056f055f, 0x05bf057f, 0x05df05cf, 0x00050507, 0xc2880b98, 0x5b82e120, 0x2a08c383, 0x17031e13, 0x27032e23,
0x1608ee37, 0x890f1d1a, 0x272e3419, 0xb6050e0e, 0x84847c35, 0x7d7a383c, 0x00163779, 0x03170002, 0x84d102c1, 0x1938085b, 0x48406200, 0x90011bbf,
0x1b0f011b, 0x1b6f1b5f, 0x140f1303, 0x146f145f, 0x14bf147f, 0x14df14cf, 0x19141407, 0x980c0e98, 0x01500100, 0x01700160, 0x01c001b0, 0x010701d0,
0x2d0da341, 0x139c0c19, 0x3f000306, 0x0132e533, 0xe8845d2f, 0x92852f20, 0x315d5d24, 0xae410130, 0x87212007, 0xa6012108, 0x210bb841, 0xc641b8fd,
0x0bd14118, 0x002cb79e, 0x60145014, 0xb0147014, 0xd014c014, 0x0f2ab785, 0x6f0e5f0e, 0xcf0ebf0e, 0xc282050e, 0x2407a041, 0x01cf01bf, 0x25c284df,
0x9c061307, 0xb782000d, 0xb7833220, 0x5d20b685, 0xa841b78a, 0x42212007, 0x02211519, 0x18274248, 0x080b3242, 0x3f000230, 0xfa02f8fe, 0x0c00ee00,
0x7e001900, 0x1bd05140, 0x1bf01be0, 0xb41ba403, 0x031bc41b, 0x02011b90, 0x1b301b20, 0x1b601b40, 0x1b801b70, 0xc9871306, 0x062bc783, 0x98191414,
0x0ee00e90, 0x83030ef0, 0x8a0220ce, 0x21c683c8, 0x6b420106, 0x0a402405, 0x85481810, 0x00a822cf, 0x42cf843f, 0x2f210570, 0x23d1865d, 0x5d5d5d5f,
0x890a7c42, 0x0c8542d3, 0xee21d38d, 0x07514317, 0x8a357d21, 0x006a080a, 0x7b000100, 0x68030000, 0x0b001406, 0x52407c00, 0x0da00d90, 0x0df00de0,
0x010d6f04, 0x0d300d10, 0x07030d40, 0x0804c006, 0x0be40308, 0xd6020bf4, 0x0b77010b, 0x010b6a01, 0x45010b54, 0x0b26010b, 0x09c00b01, 0x0909010a,
0x02010236, 0x100300be, 0x0303a003, 0x00010403, 0x0a0bbf05, 0x08c20607, 0x2f000300, 0x3232f63f, 0x0382e132, 0x5d2f012a, 0x11325de1, 0xe6103333,
0x0283c282, 0x2f331125, 0x8433e633, 0x250136cf, 0x05132313, 0x33030535, 0x68032503, 0xd937b5fe, 0x01c9fe37, 0x31068237, 0xdd034b01, 0x0304fc1f,
0x1eb41ffc, 0x5ffea101, 0xb586001e, 0xb5827d20, 0x00154e08, 0x007140b0, 0x17a00117, 0x17f017b0, 0x01177f03, 0x17401720, 0x08031750, 0x0b0ec00d,
0x01050f0f, 0xf4011204, 0x12e60112, 0x01128701, 0x6401127a, 0x12550112, 0x46123601, 0xc0120212, 0x10111410, 0x00031510, 0x0a05be04, 0x0006090a,
0x08b98205, 0x20051025, 0xa0055005, 0x0605b005, 0x13140508, 0x12bf0c0b, 0xc20d0e11, 0x0109000f, 0x06bf0800, 0xc2070203, 0x872f0005, 0x27dc8ad3,
0x33715d5e, 0x102f3333, 0xe58cea83, 0x0d827120, 0x33332f24, 0xdd5532e6, 0x15252106, 0xf087eb87, 0x022e1082, 0xfe4c0131, 0x38d937b4, 0x4c01b4fe,
0x05832f2f, 0x37d93822, 0x2f301383, 0xb41ef001, 0x0187fe1f, 0x1eb41f79, 0x13012201, 0x78220683, 0x148388fe, 0x00ed3208, 0x96000100, 0x6d02e501,
0x1300f203, 0x24404600, 0x155f152f, 0x157f156f, 0x15ef15cf, 0x100715ff, 0x0a5f0115, 0x0a9f0a6f, 0x0adf0aaf, 0x0a060aef, 0x2f3082d0, 0x40c0ffb8,
0x480a070c, 0x010f1f00, 0x0105100f, 0x5d25cf82, 0x2f015dc5, 0x2005822b, 0xa694185d, 0x962b0812, 0x32563f24, 0x25405631, 0x31564025, 0x243f5632,
0x6447ec02, 0x3f1c1c3f, 0x64464764, 0x3f1e1e3f, 0x00030064, 0x05e3ff93, 0x82fa00db, 0x278a0885, 0xa8003900, 0x3b147640, 0xfb023b24, 0x3be4013b,
0xcb3bbb01, 0x3ba4023b, 0x013b8b01, 0x3b743b64, 0x013b4b02, 0x0b013b34, 0x961e013b, 0x14761466, 0x00141402, 0x32249628, 0x0132fb01, 0xd40132e0,
0x32bb0132, 0x0132a401, 0x7201328b, 0x32660132, 0x01324b01, 0x02013230, 0x0f013220, 0x32060132, 0x00e0960a, 0x540200f0, 0x02006400, 0x00100000,
0x07030020, 0x05192d00, 0x0f23379b, 0x33332f00, 0x013232ed, 0x5d5d5e2f, 0x0583ed5d, 0x6c425f20, 0x26068206, 0x3911ed71, 0x88ed5d2f, 0x31712410,
0x18343730, 0x2409744a, 0x022e2223, 0x210f9c25, 0x95189326, 0x252010b1, 0x13221191, 0xe3182e23, 0x363208bb, 0x35266f49, 0x210f0f21, 0x35252635,
0x22101022, 0x0f9b2535, 0x00425208, 0xff660007, 0x05f408ec, 0x000900cb, 0x0027001d, 0x003f003b, 0x005d0049, 0x405c4089, 0x4ab554b4, 0xb532b41e,
0xa028b423, 0x3c30013e, 0x3cb03c40, 0x40283003, 0x3c3e0228, 0x3e3c2828, 0xb4451403, 0x5f3f5f4a, 0x5f5f5f4f, 0x5faf5f7f, 0x0ab40505, 0x09e118b5,
0xb6472709, 0xb643b759, 0xe118194f, 0x3f231e11, 0x18e1f4e1, 0x290915e1, 0x2f391712, 0x5d5d2f2f, 0x1682105d, 0xe1f4102f, 0x14133031, 0x11323316,
0x06222310, 0x1a591805, 0x9901200e, 0x23012219, 0x3a1d9901, 0x9c5047fa, 0x0147509c, 0x734a24c7, 0x4c70494f, 0x71492326, 0x4d714b4e, 0x86ac0127,
0x18c62019, 0x261635e1, 0x51479702, 0x82519b9b, 0x2c208b3a, 0x274c724a, 0xa5a50204, 0x48014a01, 0x4fe118a3, 0x02fc252e, 0x4901a4a5, 0xab3d3784,
0x763f3f76, 0xaa6c6cab, 0x753e3e75, 0x00ffffaa, 0x01a60385, 0x02b6054a, 0x000a0006, 0x210f8500, 0x0f84b202, 0x00054008, 0x00010000, 0x01730052,
0x00c703fc, 0xb13c0006, 0xffb80204, 0x091f40c0, 0x0802480c, 0x089f083f, 0x08df08af, 0x08ff08ef, 0x9feb0606, 0x06030103, 0x01030300, 0x2f000105,
0x3d39122f, 0x1833332f, 0x2309ef9e, 0x01133031, 0x0dde9e18, 0x0bd49e18, 0x3f24658c, 0xeb002840, 0x25069b4c, 0x03200310, 0x698c0302, 0x023f0424,
0x68930201, 0x2f5d3325, 0x18e15d5d, 0x26086c96, 0xcbfefc01, 0x18eded75, 0x820e5b96, 0xff932cdf, 0x056203e3, 0x002700b6, 0x82d10104, 0x000622e0,
0x32e78204, 0x312fb509, 0x01311001, 0x00005d5d, 0x00a0fe01, 0x82680200, 0x00032223, 0x33de181d, 0x12012d0c, 0x3f000300, 0x382f013f, 0x33382f32,
0x2a051d64, 0xd5fc6802, 0x052b039d, 0x824afab6, 0x01380831, 0x1d036a00, 0xc7059302, 0x41001400, 0xe0001740, 0x14011400, 0xc0166016, 0xf016e016,
0x160f0416, 0xe00a0e01, 0xc0ffb80b, 0x0f0a0e40, 0x000a0b48, 0xe4040ec0, 0xdc0cde11, 0xe12d5682, 0x32cc1a33, 0xe12b2f01, 0x105d5d32, 0x52cb84d6,
0x29080ab0, 0x36331733, 0x11153233, 0x3f3f1402, 0x152a412d, 0x0910697f, 0x03e58240, 0x51a6011d, 0x57341544, 0x02a6fe41, 0xfa65589d, 0xc18250fe,
0x00600022, 0x8f82d682, 0x00112a08, 0x02484076, 0x05100210, 0x0b100b00, 0x0b030b20, 0x1330130b, 0x04000e01, 0x0509055a, 0x070107df, 0x10050007,
0x0305c005, 0x3e028207, 0x08000860, 0x0f0e5f11, 0x6f0e3f0e, 0x0e08030e, 0x48151040, 0x0e080e08, 0x0a5f0d04, 0x83120403, 0x39122aa3, 0x2b2f2f39,
0xe1105d5e, 0x0fa61811, 0x2f332207, 0x200b845d, 0x20068232, 0x05c3772f, 0x0130312c, 0x11211521, 0x35231123, 0x09831133, 0x013e0382, 0xfe2401c3,
0xb0b0b3dc, 0xc3fdf002, 0xeafd1602, 0xfe898f01, 0x890601fa, 0xfda42704, 0xb583a4fc, 0xb5824420, 0xc9052332, 0x87003000, 0x0d111040, 0x272b6f15,
0x23130f23, 0x4b080182, 0xb81b031e, 0x3e40c0ff, 0x1b480e09, 0x3210321b, 0x1e252901, 0x480e0b40, 0x7525141e, 0x10261126, 0x0d2a7529, 0x01266f2a,
0x0f012ad0, 0x3f2a1f2a, 0xaf2a4f2a, 0x062abf2a, 0x2a262a26, 0x741a1e00, 0x7307181d, 0x3f000700, 0x32e13fe1, 0x8407e351, 0x240484b4, 0x332b2f01,
0x21bd8333, 0xdf84332b, 0x11331122, 0x2307085c, 0x07171632, 0x2105c056, 0xc4821515, 0xa9180384, 0x35200e0d, 0x3527e482, 0x02023e34, 0x18ae6a9a,
0x240c11a9, 0x88fe7801, 0x15a91817, 0x17a9180c, 0x89c0310f, 0x3e13899e, 0x102b4059, 0x290b9aa6, 0x15436144, 0x23081082, 0x5f8957dd, 0x00030032,
0x05ecff96, 0x00b605b6, 0x002a001b, 0x40790035, 0x1c6f3118, 0x6e0f1012, 0x1c181518, 0x2c080182, 0x0105ff24, 0x15124005, 0xffb80548, 0x092c40c0,
0x0505480e, 0x01370f37, 0x100b4037, 0x6e232b48, 0x0f367c24, 0x12157518, 0x22732b15, 0x30018215, 0x25733524, 0x00182406, 0x00190975, 0x3f3fe13f,
0x41ea84e1, 0x102a07c7, 0x2b32e1f6, 0x2f33115d, 0xc2412b2b, 0x33112f05, 0x3232e110, 0x3031e110, 0x023e3225, 0xcd6c1537, 0x35233407, 0x15333737,
0x11231533, 0x14011614, 0x2323020e, 0x77112311, 0x4a620643, 0x054a0806, 0x23240f3b, 0x5017071e, 0x4058353f, 0x419c9c24, 0x34d1d16b, 0x7c348cfe,
0xb22f98cc, 0x7bbf86fb, 0x1abdfd3a, 0x2e5b8b5d, 0x8139aea4, 0x03080604, 0x22140c8a, 0x01486a46, 0xbd4d52bf, 0x56fe89d3, 0x89034e4c, 0x4d81a85b,
0xca18c7fd, 0x01320db3, 0xecff3f00, 0xcb054a04, 0x86003900, 0x280712b4, 0xfb831936, 0x094b5108, 0x1919480d, 0x013b103b, 0x1323232c, 0x2e6f0d05,
0x01286322, 0x133a2828, 0x10246023, 0x602c0824, 0x5f2d052d, 0x8f247f24, 0xff24ef24, 0x2d0f0524, 0x2d2f2d1f, 0x2d9f2d5f, 0x24062dcf, 0x162d242d,
0x33740037, 0x195f1607, 0x3f00191d, 0xe13fe133, 0x20050642, 0x05d7425d, 0x10331130, 0x011132e1, 0x335d2f33, 0x3232e133, 0x2a421133, 0x09aa7a09,
0x06071427, 0x14141514, 0x0b555517, 0x2e22232d, 0x35232702, 0x35342633, 0x82353634, 0x033e2208, 0x054f4233, 0x0803d308, 0x435e7645, 0xfeb00112,
0x02010141, 0x92fe8101, 0x4b95b922, 0x853b3b87, 0x87b6735b, 0x94a41558, 0xa0940202, 0xb8875812, 0x4fa06172, 0x05773350, 0x8f633427, 0x0e0f895b,
0x13091a0c, 0xaf891629, 0xa21a20b8, 0x87491f1c, 0x178979c1, 0x2e161d1e, 0xca7d8908, 0x312b4e90, 0x002b1f92, 0x8d000400, 0xdb05f8ff, 0x0300c105,
0x2b001700, 0x86004800, 0x02010a40, 0xb4184639, 0x0200030e, 0x40f0ffb8, 0x9046704a, 0xd046a046, 0x0edf0446, 0x02100001, 0x00000e46, 0x0402460e,
0x0fb42231, 0x04ef0104, 0x040204ff, 0x00b4404a, 0x31000131, 0x31203110, 0x31f031e0, 0x42310805, 0x3dfd2cfc, 0x270736fc, 0x1dfd13fc, 0x031909fc,
0x00180106, 0xe13f3f3f, 0x6247e1f4, 0x5d5e2505, 0xde10e171, 0x11230482, 0x822f3917, 0x5d382a00, 0x3311385d, 0x3311e110, 0x06304511, 0x60470120,
0x0f746a0e, 0x56220121, 0x51080aaa, 0x22232626, 0x33141506, 0x15373632, 0x0a050606, 0x039dd5fc, 0x2d6e012b, 0x3f447050, 0x2c2f516e, 0x3e447150,
0xfe2f526e, 0x3c261133, 0x253c2a2b, 0x3c251111, 0x263c2b2a, 0x45cbfd11, 0x35345a79, 0x33487d5c, 0x1f212064, 0x5f672255, 0x235a33c2, 0xa8456323,
0x98fb2905, 0x2d577f53, 0x537f572d, 0x7e080787, 0x233e5633, 0x33563e23, 0x213d5534, 0x01553d21, 0x80522692, 0x52845f5a, 0x6b0f1626, 0x7674140d,
0x6b1011e5, 0x00001312, 0xff770002, 0x057b03ec, 0x002d00cb, 0x4055003a, 0x23702e32, 0x48141040, 0x05112323, 0x28353c06, 0x1014196e, 0x30112011,
0x90118011, 0x18110511, 0x14763615, 0x00282811, 0x071e7630, 0x060b7500, 0x00190b06, 0x102f333f, 0x12e13fe1, 0x33332f39, 0x013232e1, 0x82c55d2f,
0xd6102207, 0x201182c1, 0x0771432b, 0x030e3330, 0x022e2223, 0x06063535, 0x36363507, 0xc5491137, 0x0701090a, 0x021e1411, 0x22233413, 0x1115020e,
0x6f02033e, 0x1e2e3920, 0x26046403, 0x3a466946, 0x2e30516a, 0x5f343161, 0x68401c2d, 0x3d57364b, 0x7c5c3521, 0x37241147, 0x29206663, 0x4e360917,
0x16771833, 0x533b5232, 0x25305a83, 0xe7638854, 0x790c1c11, 0x010f1e0e, 0x536c3bee, 0x6f4f2a31, 0x86a66345, 0xd3fe2668, 0x213b5130, 0x1bbc2104,
0xfe2a4532, 0x624e216a, 0x00040079, 0x070000c7, 0x00b60589, 0x002b0017, 0x003b0037, 0x0e7240ba, 0x005a1501, 0xe12c3939, 0x01001022, 0x9f0100b0,
0x00300100, 0x00020040, 0x0a220022, 0x0f18e132, 0x2f3a1f3a, 0x3a3a033a, 0x180118ef, 0x3d6f3d67, 0x3dcf3dbf, 0x013d4003, 0x0903080c, 0x3c640a5a,
0x351de52f, 0x1dcf27e5, 0x1def1ddf, 0x06401d03, 0x270f480b, 0x275f271f, 0x277f276f, 0x060627ef, 0x271d271d, 0x06100316, 0x0b034818, 0x38e53903,
0xf0ffb80e, 0x2b0d82b6, 0x120a010e, 0x33333f00, 0x3fe0332b, 0x39280482, 0x5e2f2f39, 0x105d2b5d, 0x08c69318, 0x5d5d3229, 0x325de610, 0x5710712f,
0x0a8208d7, 0x2305ce4c, 0x23213031, 0x0e897718, 0x35032e24, 0x9d423311, 0x08741811, 0x03230809, 0x04152135, 0x87fdcda8, 0x04040608, 0x02cfa605,
0x04030676, 0x01020301, 0x29e102a4, 0x3f446d4d, 0x832c4d6b, 0x6b3e3c07, 0x42fe2c4e, 0x47515148, 0x48515147, 0x04f00163, 0x414c4dba, 0xe7fc398e,
0x18fbb605, 0x2409cfd0, 0x8253b9fc, 0x969f1859, 0x717e080c, 0x72717373, 0x1ffd6d6d, 0x02009393, 0xe5022500, 0xb6055005, 0x20000700, 0x5d40a300,
0x1301c400, 0x11c4100a, 0x06d006c0, 0x6f0306e0, 0x06300106, 0x06500640, 0x01061f03, 0x20010604, 0x0211d011, 0x11110601, 0x03030106, 0x1815191e,
0xaf179fc4, 0x22170217, 0x222f220f, 0x2203223f, 0x48181540, 0x120f4022, 0xef03cf48, 0x1f030203, 0x0c200909, 0x07094818, 0x1804c803, 0xe0ffb814,
0x0e820c40, 0x0811142e, 0x12150101, 0x3f000304, 0x2f333333, 0x2b350382, 0x32e11033, 0x33112b33, 0x2b5d2f01, 0xd6105d2b, 0x3232e15d, 0x05dd4332,
0x4605744c, 0x01340727, 0x35231123, 0x01231521, 0x031e2303, 0x11231115, 0x33131333, 0x343b0682, 0x2337023e, 0x7f680103, 0xc70a02c4, 0x07ba4002,
0x01010201, 0xbfb4ba7b, 0x82017fb2, 0x06640800, 0x02e502c3, 0xfd6c6c65, 0x1025029b, 0x06181e22, 0xd10249fe, 0x2702d9fd, 0xac012ffd, 0x23231e09,
0xffdbfd0c, 0x004e00ff, 0x05a60500, 0x010602cd, 0x00000076, 0xff660002, 0x048b04dd, 0x00220048, 0x403b002f, 0x1e4a2321, 0x132f3111, 0x0105104a,
0x181d1d05, 0x2f2b4e12, 0x2f022f3b, 0x4e29182f, 0x4e180f0c, 0x2409b25e, 0x3911e15d, 0x23cb822f, 0xde1032e1, 0x0ae7c418, 0x3233042b, 0x2115021e,
0x33031e11, 0x08af8232, 0x030e1764, 0x032e1113, 0x020e2223, 0x79021107, 0x4586c682, 0x76664c2c, 0xc2713f80, 0xc5fc518e, 0x584d4016, 0x5e744a2e,
0x2448224d, 0xcc8f6e53, 0x5d4d3b13, 0x49573335, 0x5e23183c, 0x636ecc9d, 0x3c5c7ea0, 0xd1934f1d, 0x189cfe83, 0x2015222c, 0x2937573c, 0x2c4d6539,
0x15018b02, 0x16232a14, 0x172a2113, 0xd582e9fe, 0xff534208, 0x05d305ec, 0x002600b6, 0x0000147b, 0x02170227, 0x0100005e, 0x03400207, 0x00b3fd62,
0x041f4030, 0x19270203, 0x0111f401, 0xd00111e4, 0x11b00111, 0x0111a001, 0x11011130, 0x0f01592f, 0x5d5d0159, 0x05844111, 0x3f003525, 0x82353535,
0x84332051, 0x82c92051, 0x86752051, 0x8a8b2051, 0x403c2251, 0x08518228, 0x01194923, 0xd00133f0, 0x33c40133, 0x0133b401, 0x940133a0, 0x33600133,
0x01333001, 0x33013324, 0x0f017b2f, 0x825a897b, 0x205d8860, 0x825d844f, 0x3d0221af, 0x3d205d98, 0x273f5d82, 0x0127d001, 0xb40127c4, 0x27a00127,
0x01279401, 0x30012760, 0x27240127, 0x6f2f2701, 0x956f0f01, 0x8871205d, 0x423f215d, 0x20050d41, 0x22bb8a39, 0x82224034, 0x191f3dbb, 0x0109f401,
0xcb0109eb, 0x09b40109, 0x01099b01, 0x2b01097f, 0x2f090109, 0x510f0151, 0xb385578a, 0x02003408, 0xecff6200, 0xc5053b04, 0x43002b00, 0x21403b00,
0x00471933, 0x45404557, 0x01450f01, 0x21483f06, 0x3844560c, 0x2c13134f, 0x27501c21, 0x07502c04, 0x483f0016, 0x2f290501, 0xf61001e1, 0x5d5ee132,
0x0594685d, 0x0e14013a, 0x2e222304, 0x3e343502, 0x16323304, 0x35343617, 0x22232634, 0x3507020e, 0x2605da60, 0x043e3201, 0x82032e37, 0x047d0812,
0x021e1415, 0x41203b04, 0x6db18a65, 0x22538c6a, 0x73513217, 0x935b6299, 0x898b022d, 0x4143441f, 0x4b43181b, 0xa67d254f, 0x9efd2a63, 0x43515e35,
0x0a0a2535, 0x2a493b29, 0x3a4f663e, 0x2d151225, 0x6aa60346, 0x8dbcd4e1, 0x8f6e4252, 0x8d8d3c4c, 0x4f3d6583, 0x0b2a1345, 0x160cc9be, 0x0cae131f,
0x590a1117, 0x73fcc496, 0x7a684d2c, 0x45284385, 0x51301e33, 0x2f6e6f68, 0x24405632, 0x08f38200, 0x0000292a, 0xb6056204, 0x0e000500, 0x11405800,
0x09090102, 0x605b0e05, 0xb0047004, 0x0404f004, 0xc0ffb804, 0x0a062740, 0x10040448, 0x11556118, 0x055b0d37, 0x12055f0d, 0x110a2009, 0x03010948,
0x2b333f00, 0x2f01e13f, 0x051f4ae1, 0x4de15d21, 0x3b0805dd, 0x01373031, 0x21150133, 0x27262601, 0x03070606, 0xbe012921, 0xfbc001bb, 0x207702c7,
0x2a110f2d, 0xa602fa1d, 0xfa450571, 0x9a036fb9, 0x4b4ba861, 0x04fd5ba8, 0xc7000100, 0x270514fe, 0x072e9982, 0x11403700, 0x65075a00, 0x30090009,
0xdd684009, 0x83092005, 0x140f2f97, 0x5a034818, 0x02086404, 0x0403055f, 0xe6681b00, 0x5d2b2b08, 0x31e1f610, 0x21110130, 0x03822311, 0xfd6d0430,
0x6004ba14, 0xfc0614fe, 0xa20704f9, 0x5d825ef8, 0x14fe4a24, 0x5d82e304, 0x5c000b2f, 0x5b080b40, 0x02010670, 0x00060206, 0x2757820a, 0x480e09b7,
0x070d0a0a, 0xe02b6382, 0x180f0940, 0x00030948, 0x840d0c00, 0x18132571, 0x02020848, 0x07c05e18, 0xe1207182, 0x07c05e18, 0x33112b32, 0x33332f18,
0x3311322b, 0x39122b2f, 0x5d2f2f39, 0x13208282, 0x0ac15e18, 0x70024a3d, 0x4804a0fd, 0x3a02bcfc, 0x9b03b0fd, 0x037314fe, 0x722b0392, 0xfc09fda4,
0x8200a49d, 0x66240893, 0x02048702, 0x03001d03, 0x1f403200, 0x00960502, 0x01008b01, 0x56010079, 0x004b0100, 0x01003801, 0x09010014, 0x00242782,
0x00b301ad, 0x0ba0ad18, 0x31ce102e, 0x21351330, 0x9c036615, 0x96968702, 0x25304b83, 0xc504f2ff, 0x0800a006, 0x13402c00, 0x05060001, 0x0739de83,
0x03081008, 0x0404ae03, 0x2f000007, 0xe12f392f, 0x382f2f01, 0x19393933, 0x08ba822f, 0x33331122, 0x23053031, 0x21352301, 0x02330113, 0xebfe8573,
0xe52901b4, 0x0e920002, 0xfd8f0a03, 0x00ac0569, 0x79089982, 0x05910177, 0x000e0431, 0x00330023, 0x40760043, 0x0117494f, 0xf0010d48, 0x452f0145,
0x3a02455f, 0x6a274a27, 0x372a0327, 0x081a3701, 0x773f0427, 0x022f972f, 0x1220aa2f, 0x12021230, 0x3f013f78, 0x2a3400ab, 0x243a17ae, 0x273708ae,
0x0517041a, 0x0d100d00, 0x0d0d0702, 0x01179f1f, 0x17011720, 0x5d5d2f00, 0x5e2f3333, 0x1712335d, 0x1032e139, 0x2f0132e1, 0x5d2f5de1, 0x0f825de1,
0x00825d20, 0x5d30312b, 0x0e14015d, 0x26222302, 0x06f84827, 0x023e3426, 0x17163233, 0x08055b43, 0x3632058b, 0x23262637, 0x15020e22, 0x01021e14,
0x16070622, 0x3e323316, 0x2e343502, 0x2b310502, 0x5d426d4d, 0x461d419b, 0x412b534e, 0x2b2d4f6e, 0x55436f4e, 0x441d3e9e, 0x4230574f, 0xfc2b4d6d,
0x346c3f7b, 0x28456b31, 0x15182c40, 0x7c02412c, 0x33376b3f, 0x4027446c, 0x2e19182d, 0x3fcd0240, 0x69345772, 0x384f3073, 0x75522c1e, 0x56734148,
0x30706b31, 0x2d1f384e, 0x57f97552, 0x1d5a5e61, 0x24264433, 0x011e3242, 0x5d61576a, 0x080d825c, 0x43262744, 0x01001c31, 0x14fe1000, 0x14060603,
0x37002300, 0x25102340, 0x140225d0, 0x04060104, 0xac0d0401, 0x0901151b, 0x10150115, 0x021e201e, 0x12ae191e, 0x00ae071c, 0xe13f0000, 0x2f01e13f,
0x5d5d335d, 0xf68432e1, 0xe2820120, 0xd9861520, 0x72181120, 0x3b080f93, 0x02023e34, 0x164b2283, 0x33243d12, 0x32102742, 0x244a7c59, 0x3e14174b,
0x2a453323, 0x79572f12, 0x09091406, 0x27110993, 0xfa2d5441, 0x56865ed7, 0x93080b29, 0x40251008, 0x27053054, 0x282a0e82, 0x66000200, 0x02047b01,
0xa1822504, 0x00474308, 0x412e404b, 0x4910491d, 0x0a102e01, 0x0a020a20, 0x31ad2940, 0xad1743af, 0x1caf1f0a, 0x0ddfad05, 0x0dff0def, 0x0f400d03,
0x0d0d4812, 0x432ead3b, 0x333f00b3, 0x2b2f33e1, 0xf533e15d, 0xf510e132, 0xba8433e1, 0x32ce1026, 0x2e013031, 0x22051d47, 0x18333635, 0x20105aba,
0x271b9a03, 0x37251202, 0x1c16292d, 0x1a76ba18, 0x219a2f20, 0x1d97612e, 0x01433732, 0x0d1610bc, 0x2c211305, 0x1398ba18, 0x10ae0123, 0x281c8215,
0xa21a2c20, 0x190e056d, 0x200d8514, 0x082a852d, 0x00010074, 0x04a40066, 0x00040502, 0x40a60013, 0x0e0d0a11, 0x12091211, 0x04030012, 0x08130807,
0xffb81309, 0x094f40f0, 0x13091310, 0x0b100609, 0x01154015, 0x0106c601, 0xa90106bb, 0x06860106, 0x01067b01, 0x42010668, 0x06390106, 0x08090601,
0xad040d08, 0x12121307, 0x0ead0011, 0x032f031f, 0x01037f02, 0x03100300, 0x03030602, 0x0107f00a, 0x076f070f, 0xfd420702, 0x715d2f08, 0x3232e133,
0xe1103311, 0x33113332, 0xbb472f01, 0x5d5d2205, 0x05a86333, 0x2f2f3929, 0x33113838, 0x82c4877d, 0x33012200, 0x27078410, 0x23013031, 0x21132135,
0x17260382, 0x21153307, 0x03822103, 0x01272a08, 0x3e01f85e, 0x0149fe79, 0x698a85fc, 0x7bc1fefa, 0x00feba01, 0xba018981, 0x95040196, 0xe03b1b01,
0x96fcfe95, 0x0039eafe, 0x08ef8202, 0x02040021, 0x0600dd04, 0x52000a00, 0x00093240, 0x010c400c, 0x01014008, 0x05010201, 0x6f060305, 0x18007f00,
0x8433b5e7, 0x303135b4, 0x01350125, 0x35020915, 0x02041521, 0x9c0364fc, 0xdf0221fd, 0xee210783, 0xbee71801, 0x71fe2408, 0x92009696, 0x85052089,
0x01062a89, 0x01040506, 0x6f000301, 0x43e71806, 0x21898635, 0x8a830113, 0x82150121, 0x0266268a, 0x031efde2, 0x2c87839c, 0x42018f01, 0xfea26a01,
0x58fe661f, 0x088785ee, 0x00006d39, 0xc3053f04, 0x09000500, 0x36405d00, 0x05090102, 0x07090704, 0x00ac0603, 0x010bff0b, 0x0b500b40, 0x0bb00b80,
0x0f050bc0, 0x020b2f0b, 0x0310aa08, 0x08030301, 0x82080600, 0x07022201, 0x302c82ad, 0x2f0002ad, 0x12e13fe1, 0x2f3d3939, 0x1133112f, 0x05ec5433,
0x105d5d23, 0x211483de, 0x12823311, 0x31333108, 0x23010130, 0x09330101, 0xfe3f0403, 0x3efe4c3c, 0x014cc201, 0xfecffe0c, 0x023101cf, 0x021ffde1,
0xfde402df, 0xfe00021e, 0x00fefd00, 0x1d00ffff, 0x2d089782, 0x001f0617, 0x00490026, 0x00070100, 0x00a2024c, 0x40240000, 0xaf010218, 0x1d50011d,
0x011d1f01, 0x1d011d0f, 0x40012faf, 0x2f0f012f, 0xff495d01, 0x35352106, 0x06203d86, 0x4f203d8a, 0x22223d84, 0x3c8e1740, 0x40012126, 0x210f0121,
0x003f3c89, 0x04cf0001, 0x06cd03d9, 0x00150017, 0x0029403f, 0x02172017, 0x17cf17af, 0x70173002, 0x820f0217, 0x0000291f, 0x020a300a, 0x7f0a0a06,
0x40360c82, 0x00480906, 0x058e1000, 0x33e12f00, 0x335d2b2f, 0x5d5e2f01, 0x0a5a2f33, 0x05bd4506, 0x4b332721, 0x56820649, 0x5d314308, 0x8c67648d,
0xaa052958, 0x4c321b05, 0x36492c35, 0x17060622, 0x2951764e, 0x50775027, 0x10294939, 0x35482b13, 0xbcff0100, 0x640114fe, 0x13004a04, 0x13402300,
0x15201510, 0x0c470f02, 0x540c0303, 0xcc180d14, 0x5c1808af, 0x312207c1, 0x4d181330, 0x112a0a21, 0x0e141133, 0x3f304202, 0xcc181a17, 0x8418099d,
0x2c080a7d, 0x18fbf404, 0x2f577b4d, 0x01010000, 0x02cd0487, 0x00140679, 0x4019000d, 0x3f85050c, 0x0c060106, 0x05920c00, 0xe53f0000, 0xdd332f01,
0x906e185d, 0x87013a0c, 0x0e111209, 0x1f06b404, 0x60162e29, 0x4d1ee704, 0x14215051, 0x56564e19, 0x264b8220, 0x023bfe6f, 0x8283ff75, 0x4016284b,
0x00000c09, 0x83068505, 0x822f2049, 0x32e12548, 0x3031332f, 0x0a817518, 0x1a0b6f32, 0xb2041318, 0x362c1f06, 0x56fe621d, 0x53544c19, 0x4d234882,
0x83215657, 0x047d2695, 0x068302d9, 0x22498221, 0x850a4017, 0x92052149, 0x93830782, 0x0e384a86, 0x35230703, 0x3337033e, 0x1a0c8302, 0xb2041218,
0x372d1f05, 0x0606621c, 0x15214a84, 0x08938218, 0x0200212b, 0x39022500, 0xc7057f02, 0x1d000b00, 0x19402a00, 0x1f0ce106, 0x1f7f1f4f, 0x06401f02,
0xe100480a, 0x1be50916, 0x11e503de, 0x068b46df, 0x5d2be124, 0xf282de10, 0x4e141321, 0x045909e9, 0xb816240d, 0x824e5147, 0x0f925800, 0x049a952b,
0x9fa1a502, 0x9f9fa5a7, 0x065058a5, 0xa96c6c26, 0x00ec3c74, 0x0c3c8582, 0x8f024a02, 0x0a00bc05, 0x46001500, 0x02092a40, 0x03070be1, 0x175f1703,
0x1702178f, 0x25088983, 0x0105e115, 0x0f09e504, 0x2f0b1f0b, 0x0b08030b, 0xe50f020b, 0xdd02dc07, 0xe13f3f00, 0x5e2f3912, 0x32e1335d, 0x9d822f01,
0x08062651, 0x0130315f, 0x35231523, 0x33013521, 0x35213311, 0x0e373634, 0x02070703, 0xfe8f7d8f, 0x8d790189, 0x03f4fe7d, 0x16140503, 0x039b0918,
0x6fc0c00a, 0xcdfd4302, 0x31632ac3, 0x282a250b, 0x0000f00f, 0x023b0001, 0x05660237, 0x002400b6, 0x2117404a, 0x1d1e2222, 0x14200b1d, 0x4f2605e1,
0x02267f26, 0x35938326, 0xc0ffb80b, 0x18121140, 0xe5170b48, 0x21110000, 0x11dc1ee5, 0x294108e5, 0x29868205, 0x2b2f01e1, 0xde105d2b, 0x938433e1,
0x82331121, 0x1e322693, 0x06141502, 0xe8461823, 0x224c080c, 0x2707020e, 0x21152113, 0x01363607, 0x4f6b3d42, 0x3fa1a62d, 0x3c1a2c79, 0x55183b3d,
0x0d595f5f, 0x0e252725, 0xba012143, 0x1412befe, 0x236d0439, 0x8c416544, 0x8d1a1c9d, 0x0a131b12, 0x554d584c, 0x02070604, 0x7ba8012b, 0x000603d7,
0x3408d141, 0x001d00d5, 0x4038002d, 0x210a1020, 0x4f2f00e1, 0x022f7f2f, 0x2eb5832f, 0x0ae12915, 0x1915e424, 0xde0f1019, 0x8405e51e, 0x393323ae,
0xae82332f, 0x8432e121, 0x391221af, 0x7753a982, 0x1737280a, 0x3307030e, 0x82333636, 0x320522bd, 0x06c74c36, 0x14157508, 0x7f02021e, 0x446f4e2a,
0x2f526e40, 0x6eb27e45, 0x607f4f2d, 0x1b0b0f40, 0x5a364a63, 0xdbfe2440, 0x474d5444, 0x192d3f27, 0x033d2d19, 0x506f4166, 0x80582d2d, 0x8fb36e53,
0x1b6d276d, 0x3b604f40, 0x4825312b, 0x565cf769, 0x29195a52, 0x492c1e37, 0x01001d35, 0x4a022f00, 0xb6056402, 0x38000600, 0xff0000b9, 0x001f40f0,
0xe1010200, 0x084f0805, 0x0802087f, 0xd030c183, 0xf002e002, 0x02020302, 0x00dc03e5, 0x3f3f00dd, 0x5d20ba82, 0x1135b984, 0x31382f39, 0x21011330,
0x01152135, 0xfe40018d, 0xfe350262, 0x085182bf, 0x647bf125, 0x0300f8fc, 0x39023100, 0xc7057102, 0x34002500, 0x77004400, 0xe1382240, 0x05e14221,
0x1c323d0a, 0x82210504, 0x2c172a01, 0x4f460fe1, 0x02467f46, 0x086a8346, 0x17e12638, 0x40c0ffb8, 0x48181527, 0x3d1c0a17, 0x5b324b32, 0x9b326b32,
0x0532ab32, 0xb6351432, 0xd63dc63d, 0x003d033d, 0xdf14e529, 0xde00e535, 0x3fe13f00, 0x5d3911e1, 0x03841211, 0x2f013924, 0x9884e12b, 0x3939122b,
0x17122f2f, 0x10e11039, 0x070642e1, 0x07020e22, 0x18053874, 0x2607e174, 0x3435032e, 0x4303023e, 0x2e2e0659, 0x06272702, 0x06221306, 0x021e1415,
0x1b823e17, 0x0126aa08, 0x465e3452, 0x3427162a, 0x303e221e, 0x694d2a1c, 0x19968b3f, 0x1b1f382a, 0x2b13232e, 0x4a625f48, 0x164b4a48, 0x0f213727,
0x38944241, 0x2d20123f, 0x202c181a, 0xc7054113, 0x3854371b, 0x28323e25, 0x372d1311, 0x5d392a45, 0x73832442, 0x2b38452a, 0x352b1411, 0x5338253e,
0x68fd1c37, 0x3b46463b, 0x2027301e, 0x4d22060f, 0x3637e801, 0x1d242a1b, 0x231c0c0d, 0x37361c2c, 0x21000200, 0x7b023902, 0x2500c905, 0x3b003500,
0x11312240, 0x001c09e0, 0x7f374f37, 0x40370237, 0x29480a06, 0xe42c1ce1, 0x05171711, 0xde21e526, 0x0657420c, 0x4212e121, 0x2b250658, 0x11de105d,
0x14431839, 0x098b4508, 0x4b233721, 0x1e220bbf, 0xef832502, 0x0908ab4b, 0x217b021d, 0x1981a25a, 0x36151540, 0x406c5319, 0x0d09031d, 0x263d3024,
0x2444603c, 0x436c4b29, 0x30547241, 0x5644cbfe, 0x3f264c4a, 0x2a15182d, 0x6042043e, 0x085b93bb, 0x0a0d7d07, 0x3d725735, 0x111b2412, 0x41664725,
0x2d516f42, 0xac93612f, 0x584c585e, 0x1a332919, 0x243b4824, 0x00160000, 0x0781fe54, 0x00ee05c1, 0x000b0005, 0x00170011, 0x001f001b, 0x00270023,
0x002f002b, 0x00370033, 0x003f003b, 0x00470043, 0x005f0053, 0x0078006f, 0x00900081, 0x345940e4, 0x381c202c, 0x7a515718, 0x67746f70, 0x7e826464,
0xc051706b, 0x0351d051, 0x6b6b6f51, 0x5d03516f, 0x5f8c4f89, 0x8c8c028c, 0x09242844, 0x4b505d17, 0x4b024b60, 0x313d414b, 0x422a0c00, 0x32263e46,
0x6f8f8f86, 0x70706779, 0x6f7a607a, 0x70484854, 0x026f806f, 0x6f016f61, 0x40c0ffb8, 0x480c0725, 0x5a606f6f, 0x788a4e4e, 0x602f601f, 0x606f603f,
0x01606004, 0x12181c2c, 0x2135390c, 0x01010f07, 0x2f000107, 0x53335d5e, 0x33230673, 0x832f3912, 0x332f280c, 0x2b2f3311, 0x83335d5d, 0x44112008,
0x2f200673, 0x03830d82, 0x822f0121, 0x3333212d, 0x08882882, 0x2006d75e, 0x82468511, 0x843e8206, 0x30313c2d, 0x15211113, 0x35251523, 0x35231121,
0x15331101, 0x35211533, 0x11333533, 0x82213521, 0x15212209, 0x24078201, 0x33112301, 0x87038211, 0x2007830b, 0x20178633, 0x83178335, 0x26222b03,
0x37363435, 0x14151632, 0x39442706, 0x15062506, 0x33011614, 0x07221284, 0x19831615, 0x13232323, 0x221c8533, 0x86151523, 0x35052309, 0x0a831616,
0x23086382, 0x22230614, 0xc02f0154, 0x3001ce05, 0x6f00f96d, 0xc30e05c0, 0x0149fd6d, 0x01e1fb11, 0x01f2fe0e, 0x6db7040e, 0xfb310082, 0xfc1001c2,
0x026f6f30, 0x771001c0, 0xa8fa1101, 0x2900826f, 0x6d6dfe06, 0x877f99fa, 0x03837f87, 0x3f483e08, 0x4245483f, 0xac9f0142, 0x2d2d706d, 0x5e6d3338,
0x2e427bcf, 0x3b302924, 0x2625314a, 0x100e0134, 0x31251420, 0x3d5f687d, 0x3001be04, 0x6fc1c16f, 0xf9c1d0fe, 0xc22f0102, 0xfec26d6d, 0x326482d1,
0x6ffe066d, 0x01a8fa6f, 0x0102020e, 0x6d3bfa0f, 0x82a6016d, 0x824a207f, 0x6f4e0869, 0x10012ffc, 0xfd0f0179, 0xfe100168, 0x918e9f8a, 0x919c019b,
0x67689f8e, 0x66665e5e, 0x01675e5e, 0x315343ea, 0x0b040844, 0x59513a44, 0x20226201, 0x9ae31d22, 0x2a20252b, 0x050366fc, 0x92013224, 0x645e72fe,
0x54000300, 0xaa07c1fe, 0x09821406, 0x00233e08, 0x4050002f, 0x23230428, 0x302a2024, 0x032a402a, 0x244f2a2a, 0x02242401, 0x020b0b1c, 0x23021515,
0x012d3023, 0x27272d2d, 0x10101903, 0x2f190003, 0x332f1833, 0x332f3311, 0x2f335d2f, 0x830e8401, 0x8203820d, 0x825d200f, 0x31333706, 0x05030930,
0x37363435, 0x34353636, 0x2223022e, 0x1707020e, 0x8d413636, 0x06062306, 0x7d441515, 0x26720807, 0x03062223, 0xfcac03fe, 0x0356fc54, 0x634c21eb,
0x835b314d, 0x575a2b51, 0x44522252, 0x3e3f387e, 0x4a455227, 0x4446471b, 0x46444747, 0xfc140647, 0x0357fc56, 0x2c2ffba9, 0x834c3a3e, 0x4a6b4559,
0x231b1027, 0x2e22b214, 0x44312f3a, 0x50793541, 0x3eedfe3b, 0x403e4949, 0xff004949, 0xfebcffff, 0x06550214, 0x02260221, 0x00000037, 0xfe4c0107,
0x178200bb, 0x69170021, 0x0223053f, 0x82070206, 0x02560817, 0xecff0a00, 0x2b06b204, 0x4f000c00, 0x47407500, 0x10430d4d, 0x083b003e, 0x1a434347,
0x004f473b, 0x10100110, 0x0151a051, 0x3301513f, 0x101a0047, 0x031a201a, 0x2950221a, 0x4e4f4f3e, 0x29004e00, 0x29302910, 0x29502940, 0x4e290605,
0x05384e29, 0x38014850, 0xb3531550, 0x58122005, 0x11290502, 0x32e11033, 0x2f01e110, 0x06ad6c5d, 0x11e13324, 0x03822f39, 0x82113921, 0x30312521,
0x23032e01, 0x27058345, 0x15161605, 0x06060214, 0x7f06d553, 0x3627082d, 0x1e323336, 0x50141502, 0x3326056c, 0x34111232, 0xcb452726, 0x08188305,
0x1533172a, 0x390d6a03, 0x4c305b4d, 0xab6a2e56, 0x02023c01, 0x83c48140, 0x2256926f, 0x1f0a0b0a, 0x1036181f, 0x36642525, 0x132c4532, 0x60080f82,
0x3a4e3015, 0x0202a4a4, 0x4396f2ae, 0x597f5127, 0x4b75a168, 0xd1038f12, 0x3d74aa6c, 0x69384858, 0x168a3352, 0xfe9f1f3a, 0x3773c9ee, 0x28457d5f,
0x184b595d, 0x0a0f212d, 0x1c1a117f, 0x23284432, 0x2d615d56, 0x1f364a2a, 0x30013201, 0x02143e17, 0x519a784b, 0x2e527043, 0x8bdf9c54, 0x01000089,
0x08008200, 0x0548047d, 0x002200c3, 0xaf1b408f, 0x0224ef24, 0x0c094024, 0x21ab2248, 0x01219801, 0x1b012140, 0x210f0121, 0xffb82101, 0x214440f0,
0x1b1f0021, 0x0d0f010d, 0x12200d01, 0x0d9f4816, 0x7d020daf, 0x0d6b010d, 0x010d5a01, 0x2b010d4f, 0x020d3b0d, 0x5a1e0d0d, 0x1f871f77, 0x4f031f97,
0x1f00011f, 0x07021f10, 0x1f001d1f, 0x121f0321, 0x00040a11, 0x3f3fc13f, 0x01393912, 0x5d5d5e2f, 0x4e32e15d, 0x2b2706c6, 0x39117171, 0x82382f33,
0x5d5d2a13, 0x315d2b33, 0x033e0130, 0x05f35c37, 0x0806e150, 0x050e0759, 0x11231107, 0x1d023301, 0x3c3f3d19, 0x352f1618, 0x2b232940, 0x0d200d11,
0x23201c0b, 0x32280d13, 0x13323636, 0xcb42febb, 0xa84bdb02, 0x282c89a0, 0x0914273d, 0x05039108, 0x232a1707, 0x806e5518, 0xfd3c8585, 0x032f02e3,
0x00020087, 0x06ecff12, 0x004a0460, 0x823c001c, 0x476e08fb, 0x012f6719, 0x2cd5472f, 0x012cb701, 0x9a012ca9, 0x2c03012c, 0x4837032c, 0x12bb12ab,
0x3e121202, 0x54013e14, 0x843e643e, 0xb43ea43e, 0x3e40053e, 0x3e300201, 0x013e0f01, 0x03004822, 0x03300310, 0x03500340, 0xb8030605, 0x1540c0ff,
0x03481512, 0x2d2d001a, 0x080e1d27, 0x320f0b50, 0x00165027, 0x323f0016, 0xe13f32e1, 0x39123232, 0xfe82122f, 0x5d5e2b31, 0x5f5d5de1, 0x11715d5d,
0xe15d2f33, 0x822f3911, 0x825d200b, 0x31393213, 0x26220530, 0x023e3435, 0x37352137, 0x1e231521, 0x06244a03, 0x06062323, 0x235c1803, 0x3335230a,
0x1b471415, 0x278b0808, 0xc3b62902, 0x1a2b2012, 0x0586ebfe, 0x2618f3c8, 0xb5c40f1b, 0x0b1f8b6a, 0x16ba8b1f, 0x1d121f28, 0x2e2d4b36, 0xb3162c44,
0x4b2d5262, 0x190f1d36, 0xea141524, 0x7e7d39f3, 0x504a387b, 0x7e7b389a, 0xeaf3397d, 0x575b5b57, 0x7636c403, 0x623a7a79, 0x29214e83, 0xb0396248,
0x218a82b0, 0x3a62834e, 0x3676797a, 0x00ffff00, 0x060000c7, 0x0275072f, 0x00300026, 0x00070100, 0x01790176, 0x40130054, 0x0527010b, 0x1a4b0126,
0x6f0f0920, 0xae200a19, 0x87222d82, 0x2d822106, 0x2d865020, 0x2d843f82, 0x26113a28, 0x332d7a01, 0x2d8a2b16, 0xd5fd0026, 0xbc05dd04, 0x24202d82,
0x022f2d83, 0x001b015b, 0xb70d0000, 0x1f010203, 0x83070415, 0x83352029, 0xfd5e2683, 0x049c03d5, 0x2027825e, 0x21278544, 0x2786bc00, 0x183d1421,
0x2508f5ac, 0xd3feffff, 0x7918ecff, 0x02230bef, 0x8240fe5c, 0x3f300827, 0x2d0203b6, 0x35020303, 0xb2c0ffb8, 0xb8480f09, 0x1a4021ff, 0x0a0a3535,
0xb0000125, 0x00800100, 0x01007f01, 0x40010050, 0x001f0100, 0x5d110001, 0x35270084, 0x352b2b35, 0x823f0035, 0x02003203, 0xd5fd7300, 0x83ff3702,
0x1f001300, 0x28403a00, 0x517f1814, 0x1d200810, 0x1005008c, 0x40053005, 0xa0055005, 0x0705f005, 0x8c170506, 0xe12f000f, 0xe15d5ed4, 0xe15d2f01,
0x204b7f18, 0x37022008, 0x31543d23, 0x203b5232, 0x32523b20, 0x233e5430, 0x32314074, 0x3138393f, 0x33aefe40, 0x181d3851, 0x8212bb82, 0x04932899,
0x05d90268, 0x820d00c7, 0x40422b99, 0x0e301509, 0x0e020e40, 0xec821a11, 0x1c403108, 0x1a481009, 0x010d2b1a, 0x0d140d04, 0x05060d02, 0x3f0c050c,
0x5f114f11, 0x1d110311, 0x5dcc2f00, 0x2f2f3939, 0x5dcd2f01, 0x2b2f325d, 0x395dcd33, 0x2f058643, 0x030e1533, 0x34252307, 0x06153736, 0x1e141506,
0x3d06b44c, 0x190bb001, 0xcf081618, 0x3e383012, 0xe3fe521f, 0x393c7a78, 0x321f251f, 0x04453a2f, 0x7d181e89, 0x7838094a, 0x4c1f734e, 0x13182e16,
0x1c1a1012, 0x00462725, 0x1d00ffff, 0xb9060000, 0x08076f50, 0x0027003a, 0x00a20249, 0x00070100, 0x0044054c, 0x40380000, 0x8f020326, 0x39700139,
0x01394001, 0x0f01392f, 0x01390139, 0xb0011fe0, 0xaf1f011f, 0x4b70014b, 0x014b4001, 0x5d014b0f, 0x2005c450, 0x05a34135, 0x2107c950, 0x5992a806,
0x59844f20, 0x25403622, 0x3d295899, 0x013d7001, 0x0f013d40, 0x08588f3d, 0x0002004a, 0x06ecff7d, 0x00140625, 0x00340020, 0x1b2c404b, 0x20091306,
0x2b01015b, 0x3667095b, 0xbf0136c0, 0x36700136, 0x5f362f01, 0x5b210236, 0x06356613, 0x5f300e1b, 0x26041820, 0x00130e5f, 0xce3fe13f, 0x393912e1,
0xe1f61001, 0x5d20b182, 0x33220682, 0x5146e12f, 0x0e172306, 0x4b460703, 0x26262708, 0x12343502, 0xbc563636, 0x01352405, 0x56021e14, 0x232e07a9,
0x06020e22, 0x280c0e17, 0x2b3f5a3f, 0x7918512d, 0x280808a0, 0xec9ea4ef, 0x19312951, 0x34f2fb08, 0x7272a56b, 0x32326ba5, 0x7272a46a, 0x06346ca6,
0x703c1614, 0x59184c61, 0xfeaa7fd8, 0xaa7918eb, 0x666f2b0b, 0x5d4a350c, 0x89c9fc34, 0xee1899db, 0x71260f75, 0xf404ecff, 0xe982f204, 0x002c2d08,
0x172c404a, 0x1e19194a, 0x48270a12, 0x00100000, 0x00000702, 0x902e102e, 0xb02ea02e, 0x4821042e, 0x122d560a, 0x502a051e, 0x24100f17, 0x2006fa7a,
0x24e988c6, 0x5e2f3311, 0x820d835d, 0x0d434eec, 0x3320de86, 0xf57afb85, 0x0423080b, 0xb27d432d, 0x7fae676f, 0xb37c4347, 0x3fa9646f, 0x0619342e,
0x2d100fc6, 0x2039563f, 0x8900fd24, 0x83879a9a, 0x02660803, 0x91d58927, 0xd5914c4c, 0x91d38889, 0x0d44474b, 0x335d4b37, 0x5e784a17, 0x9e411443,
0xd3d3d15e, 0xd0d0d0d1, 0x00010000, 0x06ecffb8, 0x0014064e, 0x40510024, 0x085b0632, 0x015a2308, 0xb0010e9f, 0x0eaf010e, 0x260e0e01, 0x26802670,
0x5f0326f0, 0x26000126, 0x1b022610, 0x2564185a, 0x240d0d01, 0x1e031906, 0xbb41135f, 0x33332305, 0xbb41332f, 0x24d38206, 0x33715d5d, 0x23d285e1,
0x35033e15, 0x1120c484, 0x2207204f, 0x45113311, 0x42080594, 0xdd041137, 0x0a203e34, 0x320f0fc6, 0x425b8055, 0x8088c985, 0xbb4485c4, 0x8059b0ac,
0x05012852, 0x3206c4b6, 0x1638644e, 0x4a698247, 0x7291fd0f, 0x4d5290c4, 0x037ac78e, 0xb048fcae, 0x886236bf, 0x82b60351, 0xa44708bd, 0x7905ecff,
0x2700f204, 0x33405400, 0x21214a1f, 0x1a471701, 0x10292727, 0x29800129, 0x29e029a0, 0x01296f03, 0x29202900, 0x07032930, 0x540c470f, 0x26261a28,
0x0f0d181f, 0x07025012, 0x00150016, 0xe1333f3f, 0x86c6333f, 0x5d5e21c0, 0x22056f46, 0x8432e133, 0x272121c0, 0x8807704d, 0x113522b7, 0x34d58933,
0x0a1b7503, 0x5c524519, 0x5c8a5b30, 0x6f6ab62f, 0x1d436e51, 0x24d58ab6, 0x293f2b93, 0xd1d81814, 0x827b200f, 0x38653cd8, 0x6d884717, 0xb0fc0748,
0xfc010000, 0xfed9048f, 0x00210619, 0x4016000d, 0x1806000a, 0x3a1b9be7, 0x237919fe, 0x10404d51, 0x2e2b10db, 0xd9041630, 0x5158531c, 0x5023151b,
0x821d4c51, 0x48fd2149, 0xd1204982, 0x06254987, 0x0f800500, 0xc7c3180c, 0x48fd2517, 0x2b2e3015, 0x3f2b4882, 0x7922524d, 0x4c1df404, 0x18235051,
0x2c080583, 0xd90446fc, 0xe30514ff, 0x38001b00, 0x19841840, 0x42fe374c, 0x474c4f28, 0x0e302d1f, 0x35210568, 0x51292e4a, 0x2d1d454d, 0x0d830f2e,
0xdb04492b, 0x35232b23, 0x45613c3e, 0x19841826, 0xfd01280a, 0xfeb80404, 0x828f0679, 0x4026288d, 0x08080512, 0x8215000d, 0x0f123405, 0x02191f19,
0x00068019, 0x5dcc1a2f, 0x33113932, 0x83cc2f01, 0x054d4306, 0x23070725, 0x4b033e27, 0x580805ba, 0x36350706, 0x16323336, 0x2d1b79fe, 0x710a223c,
0x2a3c250e, 0x32241517, 0x10341c1d, 0x85293210, 0x27d30585, 0x071b293a, 0x1006b06f, 0x18182118, 0x03071320, 0x05036c03, 0x0100005b, 0x98fe31fd,
0x7dff06fe, 0x0f000d00, 0x008708b5, 0x0003910b, 0x2f01e52f, 0x053031e1, 0x050e4c34, 0x020e2008, 0xfd262223, 0x2b2d3e31, 0x271d113f, 0xf63e2d15,
0x3c37373c, 0x0e1c2b1d, 0x00ffff37, 0x180000c7, 0x2a2c51bd, 0x050000c9, 0x02730710, 0x82b20126, 0x0007347e, 0x01420043, 0xb4150052, 0x26051801,
0xa3ffb801, 0x18181eb4, 0x82099558, 0xff712a5f, 0x06e103ec, 0x00260221, 0x242f8248, 0x94430006, 0x202d8200, 0x33b31802, 0x00ae2416, 0x833b0400,
0xd201212d, 0xca202d85, 0x01222d83, 0x5b85110c, 0x180c1221, 0x080ca149, 0xecff7d5f, 0xc9055e07, 0x71004500, 0x04144840, 0xc5255a39, 0x36960136,
0x890236a6, 0x36360136, 0x0c5b411d, 0x47004767, 0x00024710, 0x50472047, 0xd0477047, 0x0647e047, 0x1d5b2e07, 0x37374666, 0x5f290033, 0x07262603,
0x20140422, 0x14480e09, 0x115f333c, 0x3f001318, 0x3232e133, 0x33333f2b, 0x26088211, 0x012f3912, 0x18e1f610, 0x21090e54, 0x15825d5d, 0x30313923,
0x21521801, 0x27262611, 0x23060623, 0x0b074622, 0x2907436a, 0x33021e14, 0x11373632, 0xbe5c1133, 0x6877080a, 0x4c2a5e3c, 0x77518f3b, 0x3f407db7,
0x6f88c681, 0x4b0249aa, 0xc6886ea8, 0x7d403f81, 0x8f5177b7, 0x5f294c3b, 0x5071453c, 0x8a5c2e2b, 0x2e76395c, 0x3b762ebb, 0x2e5c8b5c, 0x0571502c,
0x9c202e25, 0xb8632c2a, 0xaaa6f8fe, 0x77d2dffe, 0x32303032, 0x2101d277, 0x0801a6aa, 0x2a2c63b8, 0x462e209c, 0x8d88cf8a, 0x2459a4e5, 0xfebd0126,
0x59242643, 0x888de5a4, 0x4c468acf, 0x053a053b, 0x004a04f4, 0x40e7002c, 0x01106509, 0x22f922c9, 0xffb82102, 0x100ab3f0, 0x07832c48, 0x841b1221,
0x19403a07, 0x00480f0a, 0x481b0a10, 0x0e220d26, 0x2c152221, 0x0f560600, 0x0f020f66, 0x0825820e, 0x1f484049, 0x0e6f010e, 0x0e9f0e7f, 0x59040edf,
0x0e4f010e, 0x01157401, 0x2401156b, 0x02153415, 0x06340624, 0x06740644, 0x0e050694, 0x0e151506, 0x1b010306, 0x101c0047, 0x1c07021c, 0x2e102e1c,
0x2e302e20, 0x2ee02ed0, 0x83010205, 0x011e2a4c, 0x1d154026, 0x0c202648, 0x086d8214, 0x1b031022, 0x150f010e, 0x36062606, 0x22060206, 0x3f001500,
0x115d3232, 0x33333f33, 0x2b2b3917, 0x33382f01, 0x2f2a0d82, 0x12e15d5e, 0x2f3d3917, 0x8e4c182f, 0x715d2106, 0x33261884, 0x11333311, 0x29823912,
0x5d2b2b36, 0x215d3031, 0x16133301, 0x3e331716, 0x03133703, 0x031e1333, 0x98080a83, 0x02143335, 0x23070602, 0x35262603, 0x0307030e, 0x89fe7701,
0x261ce0bc, 0x15070709, 0x770f1d1a, 0x0cc9bca2, 0x05181e1f, 0x41725a07, 0x5c25b719, 0x77c0759a, 0x06010d0c, 0x98040a09, 0x56fd4a04, 0x16339d57,
0x2045413a, 0xcf010c01, 0x6321b0fd, 0x67195c67, 0x98ffe2d0, 0xfedffea3, 0x017ffcf5, 0x03352054, 0x1d1b1301, 0x00aafe0a, 0x14000200, 0xbc040000,
0x16001406, 0x9b002100, 0x00130a40, 0x150c5a17, 0x0c100615, 0x40c0ffb8, 0x48271a0d, 0x02010c20, 0x0ca00c90, 0x23118302, 0x481813b3, 0x44081984,
0x480e0b40, 0x1b0e0c0c, 0x2367065b, 0x23302300, 0x23602350, 0xe0052380, 0x239f0123, 0x01235001, 0x005f210e, 0x105f0d16, 0x00b01013, 0x01008901,
0x0f01004f, 0x00070110, 0x11100010, 0x0c601700, 0xe13f0012, 0x05234f3f, 0xdb6a5d20, 0xe1102306, 0x0b822f01, 0xf6107137, 0x2f3911e1, 0x5f5d2b2b,
0x12332b71, 0xe1102f39, 0x30313232, 0x07064f01, 0x1121232a, 0x11213521, 0x15211133, 0x32200582, 0x08056a50, 0x0a022338, 0x7ecf9896, 0xc27e3c37,
0xfe96fe86, 0xba3c01c4, 0x87fe7901, 0x2ea4aea0, 0x815d8b5b, 0x71424e03, 0x9e615798, 0x60043d70, 0xfe1001a4, 0x40fca4f0, 0x61468884, 0x01411b3c,
0x056d3206, 0x00140027, 0x40810021, 0x16021309, 0x0c001047, 0x2ce68401, 0x481a0d47, 0x000c000c, 0x06471c0e, 0x3fe88257, 0x70022310, 0xc0239023,
0x0423e023, 0x0250150e, 0x10500d01, 0x020f1013, 0x0202021f, 0x481e0c40, 0x0f34e382, 0x02101f10, 0x02100207, 0x01117f10, 0x11011130, 0x150c5016,
0xdb82ed82, 0x7122ef85, 0x16505d2b, 0x20ed8309, 0x22178312, 0x85335d2b, 0x30de82e7, 0x14151632, 0x2123020e, 0x33352311, 0x21153335, 0x68451801,
0xe3023209, 0x1501d5fe, 0x652fcdd3, 0x39fe719f, 0x01b6eeee, 0x2c10822b, 0x435e3704, 0x60412126, 0xfeb00340, 0xcb4618d7, 0xdddd2108, 0x0e754518,
0xffc73708, 0x05ec06ec, 0x002d00cb, 0x082f4058, 0x221b5b05, 0x07111107, 0x2a1e0322, 0x1d212f2a, 0x2e641e5a, 0x275f002b, 0x1c081b04, 0x0f05225f,
0x21080121, 0x1e031f21, 0x67180d12, 0x3f230828, 0x6c5e2f39, 0x3f320579, 0x100133e1, 0x1132e1f6, 0x122f7d33, 0x2f183917, 0xbf822f2f, 0x2c09836c,
0x3233031e, 0x0e153736, 0x26222303, 0x95441826, 0x1716270c, 0x05262607, 0x67185f6d, 0x23080933, 0x5971ac75, 0x4e274ea0, 0x9e3a6156, 0x05529deb,
0xbabab0fe, 0x630e5601, 0x6c95e9a7, 0x3f4e4fc4, 0x41270595, 0x0e3b6718, 0xb8644a08, 0xfd9f0301, 0xfdb60556, 0xa7eb8f98, 0x9c2a2c5c, 0x00002e20,
0xffae0001, 0x047105ec, 0x0029005e, 0x20394064, 0x4f05481d, 0x1f0c010c, 0x27081f0c, 0x0b2b1414, 0x54084707, 0x15511a2a, 0x05201011, 0x0c1d5006,
0x0bb90ba9, 0x06f45902, 0x0b0b0629, 0x15080f09, 0x4f265123, 0x3f20055b, 0xec86eb84, 0x88e13321, 0x123322ec, 0x20ed8339, 0x22ed845d, 0x8f2e2205,
0x822e20db, 0x070621f1, 0x3c0b7a6d, 0xa9615404, 0xfe074f81, 0x01b6b6f1, 0x81550c13, 0x954e5ea5, 0x38173632, 0x8c193b3c, 0xd8421891, 0x82523b07,
0x147c3536, 0x87c17b3a, 0x4a0417fe, 0xb58039fe, 0x19223472, 0x0f130a9a, 0x42189709, 0x002308de, 0x82000200, 0x05490800, 0x00b6052f, 0x0018000b,
0x084940ae, 0x06d80106, 0x070206e8, 0x07d70107, 0xa60207e7, 0x019b0107, 0xa7007701, 0x0a0d0200, 0x04030c09, 0x13130607, 0x0100a708, 0x05010100,
0x01080009, 0x08100800, 0x08700820, 0x08c00880, 0x080b8206, 0x901a084f, 0x021aa01a, 0xc0ffb81a, 0x18150f40, 0x011a8f48, 0x0f011a40, 0x0408011a,
0xf0ffb805, 0x0b051340, 0x10135f03, 0x13480e0a, 0x04060c0c, 0x06120900, 0x3f3f0003, 0x39123333, 0xe12b392f, 0x382f0132, 0x5d5d5e33, 0x115d2b5d,
0x5d382f33, 0x25178371, 0x39115d33, 0x22832f3d, 0x39123923, 0x2d1c8239, 0x715d715d, 0x23213031, 0x23012311, 0x03823301, 0x27239508, 0x032e2721,
0x07030e27, 0x7fa6ec02, 0x02c5fefe, 0x3b02bb39, 0x7afefec7, 0x352301e8, 0x11161c12, 0x15110907, 0xaa021119, 0xb60556fd, 0xaa024afa, 0x4c308fa4,
0x25254143, 0x2d494341, 0x00020000, 0x0400000a, 0x004a045a, 0x0017000b, 0x393840cf, 0x79025902, 0x04028902, 0x022b021b, 0x0105b502, 0x05a60596,
0x01058702, 0x03190309, 0x16080602, 0x12090208, 0x06021219, 0x02111611, 0x02031207, 0xb6090811, 0xb8000100, 0x1b40f8ff, 0xb9480f0a, 0x080b010b,
0x00360782, 0x010cb40b, 0x05050c0c, 0x010a0606, 0xb8010210, 0x12b3c0ff, 0x07834815, 0x18403708, 0x01480b07, 0x19c01901, 0xaf0219e0, 0x19500119,
0x1f190f01, 0x0a090219, 0x40f0ffb8, 0x08040a0f, 0x110b0c50, 0x0f0b0111, 0x1501060a, 0x33333f00, 0x2f39123f, 0x23413912, 0x825d2005, 0x33112600,
0x332b2b2f, 0x2e158238, 0x3d391233, 0x33335d2f, 0x5d2b5d2b, 0x82393912, 0x825e2002, 0x2902831f, 0x5d5d3031, 0x03230101, 0x01821123, 0x23032b08,
0x030e1701, 0x032e3307, 0x01a60227, 0x60bbbcb4, 0xbdba60a2, 0x0571b401, 0x0d25231b, 0x23250ef0, 0x4a04041b, 0xe901b6fb, 0x038317fe, 0x794a043f,
0x5e605519, 0x605f2222, 0x00001954, 0x00c70002, 0x05290700, 0x001300b6, 0x40bf0020, 0x081a421b, 0x050e0627, 0x14111215, 0x263e8203, 0x0f010005,
0x83051b0e, 0x5d6208c3, 0xcb010180, 0x1b84011b, 0x7b1b2b01, 0x050f021b, 0x052f051f, 0x05cf057f, 0x05ff05df, 0x01050807, 0x05011b1b, 0x10101103,
0x10101000, 0x10b01070, 0x100510f0, 0x22302210, 0x22c02250, 0x22e022d0, 0x5a080c05, 0x13216409, 0x0d5f0306, 0x1009201b, 0x14141b48, 0x0104090e,
0x0e0a1211, 0x333f0003, 0x3742333f, 0xe1333606, 0x10013232, 0x5d32e1f6, 0x5d2f3311, 0x39173338, 0x2f182f3d, 0x0504412f, 0x33113824, 0x01831133,
0x39391223, 0x82028211, 0x5d5d2106, 0x22083e42, 0x82231121, 0x1321211c, 0x2f0d4642, 0x81a5e704, 0x01c4fdfe, 0xba7ffe08, 0xf1c101ba, 0x2a054d42,
0x2301e979, 0x151c1335, 0x42080811, 0x5142074d, 0x98fd2305, 0x55426802, 0xae3c0813, 0x08060000, 0x13004a04, 0xeb001f00, 0x05a53140, 0x96058601,
0x05770205, 0x16090601, 0x02190209, 0x02490229, 0x02790269, 0x01020b05, 0x1902031a, 0x12091408, 0x110a130b, 0xc60e470d, 0x28064e42, 0x480f0a17,
0x130113c9, 0x29078208, 0x14c41300, 0x05141401, 0x25420605, 0x2f133205, 0xaf0a3f0a, 0x060a030a, 0x0e01060a, 0x01022054, 0x0c624210, 0x072c3d08,
0x0101480b, 0x0121d021, 0x600121bf, 0x90217021, 0x214f0321, 0x01210001, 0x08040b08, 0x13141250, 0x0f021919, 0x090e0f13, 0x00150206, 0x3333333f,
0x3912333f, 0x3339122f, 0x013232e1, 0x31053e41, 0x2b2f3311, 0x1033382b, 0x393911e6, 0x385d2f2f, 0x6d421133, 0xe110240b, 0x41121132, 0x11200554,
0x23059b43, 0x30315d5d, 0x200a7142, 0x07604113, 0x79421720, 0x54042106, 0x28087942, 0xb6e9fec3, 0xb55401b6, 0x167f4270, 0x28058342, 0xc70139fe,
0x60541979, 0x0987425f, 0x00142408, 0x056a0500, 0x002300b6, 0x40c00026, 0x01228611, 0x59011a86, 0x02128912, 0x0c091025, 0xffb82648, 0x822c40f0,
0x25520808, 0x24060b0a, 0x1b5a1a24, 0x0a000726, 0x0a200a10, 0x071b0a03, 0x030a1b07, 0x11101200, 0xd0021120, 0x11800111, 0x11021190, 0x40c0ffb8,
0x480a073b, 0x1f281111, 0x28f00128, 0xdf28cf01, 0x28400228, 0x28702850, 0x3f280f03, 0x23070228, 0x611c1900, 0x05190b24, 0x002d0a19, 0x5f26070a,
0x121b0308, 0x3f001200, 0x073d5532, 0x715d5e2b, 0x32e13333, 0x5e332f01, 0x2000825d, 0x05e75a71, 0x5a337121, 0x240808c1, 0x3d39e110, 0x1133332f,
0x5d2b2b33, 0x5d30315d, 0x033e1333, 0x21350137, 0x031e0115, 0x03231317, 0x2323032e, 0x08018211, 0x020e2259, 0x01010307, 0x187b1421, 0x5f7c5436,
0x490490fe, 0x806185fe, 0x7a183756, 0x26147bbe, 0x183d4f36, 0x4f3d18bb, 0x7b142636, 0x4a01eb01, 0xc5016ffd, 0x3a628855, 0x8be70106, 0x0619fe8b,
0x56896238, 0xc1013bfe, 0x17395f48, 0xb80248fd, 0x485f3917, 0x5a033ffe, 0x4400b801, 0xe53506ef, 0x23004a04, 0xc7002600, 0x1a760d40, 0x1a961a86,
0x07102503, 0x053d410c, 0x08821820, 0x0112093c, 0x0b012306, 0x1a242406, 0x0a251b46, 0x1ba70726, 0xffb80a01, 0x161040c0, 0x48414819, 0x11202308,
0xd6441101, 0x28078306, 0x0b073f40, 0x28111148, 0x06434110, 0x28602e08, 0x1f022890, 0x02284f28, 0x070a0023, 0x19085026, 0x2416521c, 0x24362426,
0x240424a6, 0x1f060f0b, 0x5f064f06, 0x06070406, 0x1b0f0806, 0x05034b12, 0x18483f20, 0xe15d2905, 0x32e11032, 0x332f0132, 0x20074841, 0x0747412b,
0x115d2b25, 0x41331133, 0x5d26064a, 0x5d2b2b5d, 0x48413031, 0x1353081d, 0x167b0a21, 0x5367422c, 0xcf03cefe, 0x6853c9fe, 0x7b172c43, 0x24147bba,
0x04354430, 0x463504a6, 0x7a142530, 0xfefcb401, 0x3d54010a, 0x09314d65, 0x69696401, 0x31089cfe, 0xfe3d674c, 0x365001ac, 0xfd112b48, 0x110a02f6,
0xfe36482b, 0x018302b0, 0x4500002d, 0x24080511, 0x00b60589, 0x002b0028, 0x861540ca, 0x1759011f, 0x10021789, 0x1f29290b, 0x102a205a, 0x2b480c09,
0x40f0ffb8, 0x3c088233, 0x0c2b0f2a, 0x0f100f00, 0x07030f20, 0x20200c0f, 0x16030f0c, 0xc000b028, 0x000f0200, 0x084b821f, 0x1707004e, 0x16101600,
0x80167002, 0x0316c016, 0xc0ffb816, 0x0a073440, 0x2d161648, 0x9f012de0, 0x022dbf2d, 0x2f012d40, 0x060a012d, 0x2c64075a, 0x5f2b0c0f, 0x21051e0d,
0x0f102961, 0x0b08010b, 0x030d080b, 0x03201707, 0x3f001200, 0x333f3217, 0x21054341, 0x434132e1, 0xf6102305, 0x344632e1, 0x05564707, 0x425d5d21,
0x5e270693, 0x1133115d, 0x412b2b33, 0x3126084d, 0x36132130, 0xb9433736, 0x1a9a4206, 0x7b330237, 0xfe1c2913, 0x02baba7b, 0x0495fea4, 0x6185fe4a,
0x18375580, 0x069f427b, 0x19ba1923, 0x0c9f423c, 0x2e734422, 0x21056549, 0xa342dd01, 0x00ae3822, 0x04980600, 0x0028004a, 0x40cf002b, 0x861f760d,
0x031f961f, 0x4107102a, 0x2c200653, 0x28080882, 0x10011709, 0x1f29290b, 0x0f2a2046, 0x20a70c2b, 0x0c200f01, 0x030f200c, 0x2f001f16, 0x00ff0200,
0x07000001, 0x01162017, 0x06a24216, 0x3a080783, 0x0b073f40, 0x2d161648, 0xb0012dcf, 0x2d9f012d, 0x012d6001, 0x00012d4f, 0x022d302d, 0x0747060a,
0x0c0f2c54, 0x1e0d502b, 0xa6522105, 0x10290129, 0x0b1f0b0f, 0x0b0b0702, 0x820f0d08, 0x0003224b, 0x0b5f4115, 0x60415d20, 0x5d5d2d0f, 0x2b2f3311,
0x1233712b, 0x715d2f39, 0x4208f543, 0x2b2209ac, 0x60415d2b, 0x21133a26, 0x107bbc01, 0xedfe131d, 0x0b02b6b6, 0xce03d5fe, 0x6853c9fe, 0x7b172d43,
0x09b742bb, 0x24314524, 0xb7427b14, 0x4b2a2206, 0x05ef4920, 0x425e0121, 0x8f0820bb, 0xfe390001, 0x06ec0346, 0x007600d5, 0x2127409f, 0x480e0918,
0x51596259, 0x51474d4d, 0x6c675b3b, 0x35446751, 0x14511467, 0x44355167, 0x5b2e2405, 0x05786772, 0xffb8245a, 0x143640c0, 0x5d244818, 0x568f4d52,
0x56af569f, 0x07405603, 0x5656480b, 0x60346c47, 0x0f01354f, 0x0235af35, 0x29353508, 0x03625143, 0x03476140, 0x1f5f0a15, 0x006029fb, 0xe13f0013,
0x3f33e13f, 0x123317e1, 0x5d5e2f39, 0x1139e171, 0x5d2b2f33, 0x2f01e133, 0xf610e12b, 0x2105e34e, 0x00822f18, 0x39121128, 0x3311e110, 0x03832f33,
0x00303125, 0x5c22052b, 0x3e2707af, 0x1e323302, 0x6b151702, 0x23200586, 0x6d085077, 0x2322052e, 0x8f563523, 0x07062b09, 0x37363627, 0x3527032e,
0x6b6d1633, 0x17162105, 0x6207ac5b, 0x5f1805cb, 0x2d08073c, 0x5a47e101, 0x240e1434, 0x61412f3d, 0x2b325153, 0x0c233142, 0x4d361f08, 0x4a473135,
0x8868465c, 0x6631204f, 0x80596c9d, 0x67392651, 0x6b185891, 0x80080dbc, 0x1867a63b, 0x14323637, 0x36613379, 0x4b433b1a, 0x0e2f1f2a, 0x1611220b,
0x142e3030, 0x2b557e52, 0x4b7d5b33, 0x325e8a57, 0x14c48343, 0x18292012, 0x0e1a2416, 0x07040404, 0xb6070f0a, 0x0c101207, 0x29020303, 0x3c376048,
0x26264662, 0x47446948, 0x971d3f65, 0x3e644827, 0x1e3a5336, 0x307d3643, 0x411e114b, 0x1b173a3f, 0x24386122, 0x09233846, 0x07057705, 0x21382917,
0x765c3f0d, 0x58774a45, 0x2e6c1839, 0x0080080a, 0xfe170001, 0x05520373, 0x00700052, 0x407140b7, 0x480e0918, 0x6c626868, 0x6c030c03, 0x16114658,
0x5fe0116c, 0x11525f01, 0x11336c33, 0x055f526c, 0x1c474d43, 0x72c07257, 0x72e072d0, 0x01727f03, 0x0f017230, 0x26070172, 0x0c404346, 0x16434811,
0x89505116, 0x02529952, 0x0801520f, 0x48625252, 0x00520768, 0x48141040, 0x0c074000, 0x6c5e0048, 0x505b0300, 0x3410620c, 0xfb3e502b, 0x16215048,
0x3806e241, 0x3317e133, 0xe12b2b2f, 0x39121133, 0x5d5d5e2f, 0x2f3d39e1, 0x2b2f1801, 0x210b82e1, 0xea415d5d, 0x415d200c, 0x356e10eb, 0x0672640a,
0x2007a641, 0x0c054223, 0x04421620, 0x8b6d1815, 0x23262109, 0x4205bf52, 0x02300a02, 0x0e2f1fcf, 0x1511210b, 0x132d2e2e, 0x233f5937, 0x0b045e18,
0x594b5308, 0x220e0f2f, 0x63322c3a, 0x4221535d, 0x22090d47, 0x20132c28, 0x396f6455, 0x18407058, 0x6e905622, 0x2c4c6437, 0x61818a85, 0x2748643d,
0x81476c73, 0x6b393f4b, 0x30311741, 0x3379122c, 0x3a1a3662, 0x52054b43, 0x05770509, 0x33261507, 0x45310e1f, 0x5e183558, 0x3a080836, 0x74443d5b,
0x1a0e3156, 0x23161726, 0x04030d18, 0x97131603, 0x060a0f0a, 0x2e030303, 0x2f295647, 0x132a4659, 0x5e33452b, 0x2712995b, 0x4d4d2d40, 0x1c932226,
0x3b1c0822, 0x41153237, 0xff3907fa, 0x006800ff, 0x05ba0500, 0x010602b6, 0xff000075, 0xfea400ff, 0x06710514, 0x080f8212, 0x00009547, 0x7d000300,
0x7105ecff, 0x1300cd05, 0x29001e00, 0x32404f00, 0x005b1925, 0x2bd02b67, 0x012bcf01, 0x3f012b80, 0x022b6f2b, 0x0a5b1a24, 0x601a2a66, 0x0f01244f,
0xdf24af24, 0x24080324, 0x5f1f1424, 0x5f14040f, 0x05a54305, 0xa0431220, 0x05524b05, 0x5d5d5d22, 0x20072574, 0x0efc5302, 0x85181620, 0x2e240edd,
0x51710503, 0x3e0afa59, 0x51a0ec9a, 0x9e6a87fd, 0xfc06396b, 0x6b3a069a, 0x9c696d9e, 0x03083d6c, 0x693b0864, 0x59dd029b, 0x6b370ef5, 0xfdebfec5,
0xc2864707, 0x86c27a7a, 0x439a0447, 0x7575b880, 0x834380b8, 0xff7126d9, 0x042d04ec, 0x22d9825e, 0x8221001a, 0x333008d9, 0x0048171f, 0x23402357,
0x23e023d0, 0x01230f03, 0x0a48181e, 0x50182256, 0xa9011eef, 0x021eb91e, 0x1e1f1e0f, 0x06031e2f, 0x1b141e1e, 0x14100f50, 0x2006fe59, 0x21da84e1,
0x814f5d5d, 0x21d98905, 0x4b44020e, 0x021e2f09, 0x37363201, 0x13161621, 0x21070622, 0xf4592626, 0xae67340d, 0x23fe477f, 0xfd0a888d, 0x8c8c09be,
0x020e8889, 0x598a0d3e, 0x4b250def, 0xd4fdd391, 0x290082b2, 0xa4a24403, 0x0000a2a4, 0x00820001, 0x02052208, 0x1c00c305, 0x29405a00, 0x0d0b0607,
0x010dfb01, 0x90080d0d, 0x0219d019, 0x001e1919, 0x1eb0011e, 0x08b48501, 0x5f1e4f22, 0x061e7f1e, 0xb8080907, 0x0c40f0ff, 0x16600008, 0x03080904,
0x1207060d, 0x33333f00, 0xe13f333f, 0x2c06264f, 0x2f331171, 0x3d39125d, 0x33715d2f, 0x062d5133, 0x0123012e, 0x16160133, 0x37363617, 0x33033e13,
0x08058371, 0x2496043c, 0x12242a35, 0xfecdd7fe, 0x2701c519, 0x0e112e1d, 0x1f8d1a2a, 0x4b674c3d, 0x171a4423, 0x252d0535, 0xfb426748, 0xfcb605e9,
0x4faf5b61, 0x0261bc4e, 0x629c7100, 0x97080d2b, 0xbf860d09, 0x040e0433, 0x001f0052, 0x1e00b96d, 0x1640f8ff, 0x1f480e0a, 0x08048308, 0x20071e2b,
0x0748110d, 0x16e00007, 0xffb81601, 0x071a40e0, 0x1616480a, 0xcf21bf21, 0x0321ef21, 0x0f012150, 0x4f212f21, 0x01070321, 0x30d08400, 0x1f071e00,
0x134f1a15, 0x0f00010f, 0x3f323f00, 0x86d482e1, 0x825d20d0, 0x842b20d0, 0x332b27d1, 0x312b2b33, 0xc7541130, 0x08cc8a07, 0x06222342, 0xbc230307,
0x1f200bc9, 0x0406051a, 0x09191814, 0x43351956, 0x221a3c58, 0x12260b11, 0xe0183a2f, 0xfd4a04f3, 0x6e6a21a2, 0x5f191961, 0x0121676c, 0x42755e40,
0x87050518, 0x58500503, 0xffffdffc, 0x25058f41, 0x26027307, 0xde828002, 0x76030738, 0x5201b804, 0x02b61900, 0x26051d01, 0xffb80102, 0x1d31b482,
0xd35f1908, 0x352b2305, 0x33850035, 0x060e0423, 0x20338221, 0x20338681, 0x83478250, 0x11202133, 0x94253384, 0x002034b4, 0x08338916, 0x00030045,
0x0914fe7d, 0x00cd055a, 0x00270013, 0x40a1004a, 0x1e5b000a, 0x2f2f4a38, 0xb8282937, 0x2340f0ff, 0x00402828, 0x02401040, 0x1f0140f0, 0x3f402f40,
0x1e000340, 0x1e401e01, 0x37360a40, 0xe037d010, 0x4a370237, 0x2f080506, 0x3737480b, 0x014c0f4c, 0x4c1f4c0f, 0x4c4f4c2f, 0x4cbf4c7f, 0x4cef4cdf,
0x5b140708, 0x384b660a, 0x284a4a2f, 0x1b3d5044, 0x230f2836, 0x19040f5f, 0x2607ca43, 0xe13f333f, 0x18113911, 0x4c07256d, 0x3826058e, 0x393912c1,
0x554b2f2f, 0x280d8306, 0x33332f3d, 0x3031e110, 0x05346401, 0x230ae057, 0x14051216, 0x200de65d, 0x09934125, 0x0e013324, 0x20692303, 0x3748080a,
0x964c1f05, 0xe09891dd, 0x93474793, 0xdd9099e1, 0x23fc4c95, 0x6796612f, 0x2e609667, 0x6794602e, 0x2f619768, 0xd7bd4304, 0x13191d0d, 0x17040604,
0xc70b1d1b, 0x1d4efebc, 0x50745640, 0x151b4c34, 0x46302340, 0x390f2534, 0x20141c44, 0x0e0e5eab, 0xfde39608, 0x5858289b, 0x56192253, 0x02215e61,
0x5127fb63, 0x0b315a81, 0x07059106, 0x29402c17, 0xffff00a0, 0x14fe7100, 0x5e044e08, 0x52002600, 0x07010000, 0x6f045c00, 0x11000000, 0xb80202b1,
0x20b41404, 0x25000a2f, 0x00352b01, 0x02000035, 0x83ff7d00, 0x3106c305, 0x3f001f00, 0x33405200, 0x67005b30, 0xc441b441, 0x41900241, 0x41300201,
0x20024180, 0x4066105b, 0x0b011819, 0x08040118, 0x07020814, 0x5f3b3538, 0x0315181b, 0x085f2528, 0x00120b05, 0xe133333f, 0x2b048432, 0x5d5d5e32,
0xf610015d, 0x5d5f5de1, 0x2706dc77, 0x07020e14, 0x22230606, 0x2d077065, 0x33363637, 0x1e171632, 0x1e140503, 0x555f1702, 0x2e342308, 0x26852702,
0x030e9508, 0x8949c305, 0x4a0e7cc5, 0x0d483b37, 0x4587c781, 0x81c78745, 0x373b480d, 0xc57b0e4a, 0x7ffb4a89, 0x537f572d, 0x31354311, 0x80521145,
0x572d2d57, 0x46105280, 0x11433531, 0x2d577f53, 0xfc95dd02, 0x3f177dc0, 0x163f3636, 0x96fec07d, 0x7bbffb96, 0x33313f17, 0xbf7d173d, 0xc07496fb,
0x30156292, 0x152e2826, 0x74c09262, 0x6292bf73, 0x29293216, 0x91611630, 0x020000bf, 0x91ff7100, 0xb604a804, 0x37001f00, 0x2cb55400, 0x39570048,
0xc0ffb839, 0x48140eb3, 0x40290783, 0x480c0924, 0x56104820, 0x0b0d4138, 0x352f322f, 0x15021b50, 0x2326290f, 0x0b050850, 0x050e4116, 0x240e0f41,
0xf6102b2b, 0x06215ce1, 0x20160d41, 0x060c4116, 0x35363624, 0x0b412634, 0x06480806, 0x39a80406, 0x095f996b, 0x3b3a383c, 0x6e995d08, 0x9a6c393d,
0x3a3b0862, 0x5b093d37, 0xfc3c6d98, 0x0b7b6f85, 0x39323439, 0x6e6d790c, 0x32390c78, 0x7b0b3934, 0x7627026f, 0x125a8ebf, 0x382d2e39, 0xc08e5a12,
0x8dbf7577, 0xe8080d82, 0x123a2a29, 0x75bc8d5b, 0x2c1fcdac, 0x1f2a2020, 0xc8a9abcc, 0x20202b20, 0x00c81f2d, 0x7d000300, 0x3507ecff, 0x45003d08,
0x6d005b00, 0x9240da00, 0x04241437, 0x24140414, 0x5b411c03, 0x006f670c, 0x026f106f, 0x6f206f00, 0x6f806f50, 0x6fa06f90, 0x6fe06fd0, 0x1c5b2d08,
0x68636e66, 0x685c4747, 0x50524051, 0x03526052, 0x005f5252, 0x20681068, 0x90688068, 0x68070568, 0x4d014de0, 0x56cf56bf, 0xef525602, 0x47460146,
0x01524f47, 0x6b605252, 0x6bd06bc0, 0x6b046be0, 0x5f7f5f6f, 0x5fef5faf, 0x015f1004, 0x5f3c325f, 0x377f1411, 0x3702378f, 0x480a0740, 0x11173737,
0x03032513, 0x215f0028, 0x3f000407, 0x3332e133, 0x333f3311, 0x5d2b2f33, 0x32e11033, 0xcc5d5d2f, 0x712f325d, 0x5dcd1033, 0xcd5ddd10, 0x5e2f015d,
0x2c1d825d, 0xcd10cd5d, 0x39112f32, 0x5de1f610, 0x0a7a4971, 0x5b331121, 0xe24716e0, 0x5b17200e, 0x3e220cdf, 0xfc723702, 0x34353e05, 0x1503022e,
0x022e2223, 0x15062223, 0x34352315, 0x1e323336, 0x14053302, 0x36350706, 0x841e8336, 0x05162212, 0x0e025c3f, 0x45a26725, 0x5c67a047, 0x2a291601,
0x17424e56, 0x564e4217, 0x06045c2a, 0x5610033d, 0x2a647a90, 0x7c853a2e, 0x77703a6d, 0xeffe4e85, 0x383c7978, 0x321f241f, 0x5c443b2e, 0x2a231022,
0x5c2a2c2c, 0x13281622, 0x1c1c2f23, 0x5913232f, 0x2b06225c, 0x2481a602, 0x352d242a, 0x656b2310, 0xe2270882, 0x4c1f734d, 0x64192d16, 0x8b080506,
0x03004626, 0xecff7100, 0x0807df05, 0x59004300, 0xb2006c00, 0x67606b40, 0x675a4545, 0x5050404f, 0x50500250, 0x9f676f5d, 0x67100267, 0x15246701,
0x033f350b, 0x482c0b03, 0x1e6e573f, 0x6d560b48, 0x4b014b00, 0x540154df, 0x01440f50, 0x6f454544, 0x50500150, 0xe0016a00, 0x026af06a, 0x7f5d0f6a,
0x5d07025d, 0x34511b2f, 0x103a1616, 0x51292110, 0x40240300, 0x24481510, 0x480c0740, 0x00062424, 0x323f0016, 0x2b2b2f32, 0x32e11033, 0x2506a65d,
0xcc5d5e2f, 0xe141715d, 0x10712905, 0x71cd5ddd, 0xe1f61001, 0x122b0282, 0x122f3d39, 0x33391239, 0x415d2f18, 0x31230bf1, 0x43220530, 0x2e23053d,
0x4d343502, 0x07230638, 0x6e23032e, 0x362106b5, 0xbe781837, 0x18222008, 0x200dc45e, 0x18d84113, 0x2e343523, 0x05d74104, 0x10043d08, 0x2b2b6d51,
0xa95f506a, 0x6d3f4a7f, 0x401f5493, 0x3f14343c, 0x2b2b2911, 0x8d697012, 0x29734988, 0x42393116, 0x698c8529, 0x2b2b1270, 0x14401129, 0x203f3c35,
0x3f6d9354, 0x3aa97e4a, 0x2507d541, 0x396e7c86, 0xd5417870, 0x0f742e05, 0x0f151a15, 0x443b2e32, 0x20202314, 0x955b1823, 0x10093907, 0x0a9a0c16,
0xca090f13, 0x34c3d3d3, 0x181e1020, 0xd3d3c30e, 0x130f09ca, 0x09355f18, 0x89d5962e, 0x82aa063f, 0x2e242b24, 0x6c231134, 0x0808cf41, 0x0d332934,
0x0f0a0c0f, 0x26261217, 0x02000046, 0xecff7d00, 0x04075e07, 0x53000d00, 0x62409b00, 0x5a471223, 0x0144c533, 0x44a64496, 0x01448902, 0x4f2b4444,
0x1d821a5b, 0x2b0d4708, 0x0055671a, 0x02551055, 0x55205500, 0x55705550, 0x55e055d0, 0x5b3c0706, 0x4554662b, 0x370e4145, 0x3411305f, 0x00040409,
0x3f060a80, 0xcf027f02, 0xef02df02, 0x34020502, 0x4a043015, 0x0e092023, 0x5f412348, 0x695f261f, 0x322b3205, 0x2f33333f, 0x1a33335d, 0x332f39cd,
0xe1103311, 0x0a735f32, 0x25055755, 0x3911e110, 0x795f5d2f, 0x07152408, 0x86232723, 0x5f352003, 0x8b2d4287, 0xb8322252, 0xb8312331, 0x03502232,
0x0e91431c, 0x242b945f, 0xac1b0407, 0x23008267, 0x21fe1bac, 0x203a9e5f, 0x05795a00, 0xa405f42a, 0x3a000d00, 0x0d402301, 0x0d290782, 0x30b90f2a,
0x01308201, 0x06a55f2f, 0x07833a20, 0x481b1322, 0x40290783, 0x480f0a19, 0x0e010ea9, 0x21108210, 0x0c82100e, 0x1c1b3028, 0x011d6634, 0x25821c1d,
0x53405408, 0x1c1f1c0f, 0x4f031c3f, 0x7f1c6f1c, 0xbf1c9f1c, 0x1c1c051c, 0x232f3034, 0x74012390, 0x236b0123, 0x34232401, 0x0e3a0223, 0x01349014,
0x14341424, 0x14741444, 0x23051494, 0x34141434, 0x290f0323, 0x102a0047, 0x2a07022a, 0x3c103c2a, 0x3c303c20, 0x830f1003, 0x0f352157, 0x0806e541,
0x7f020f30, 0x9f028f02, 0x40020402, 0x02481714, 0x1d154034, 0x0c203448, 0x341b4814, 0x290e031e, 0x230f0f1c, 0x36142614, 0x30140214, 0x3f00150e,
0xc75f3333, 0x17122605, 0x2f2b2b39, 0x07fc412b, 0xd25f0120, 0x5d2f210f, 0x33202782, 0x31059853, 0x18331133, 0x38715d2f, 0xc0875d33, 0x2b2b01c0,
0x03822b5d, 0x12115d29, 0x2f2f3939, 0x42013031, 0x03200c13, 0x2123eb5f, 0xf641ba04, 0x23312307, 0xf75f0450, 0xa4052129, 0x2107e441, 0x03605cfa,
0x01490830, 0x14fe7d00, 0xcb059804, 0x54002300, 0x5a111740, 0x0701100f, 0x120f4010, 0x18101048, 0x600120ba, 0x02207020, 0xc0ffb820, 0x0a061a40,
0x25202048, 0x050125af, 0x2466185b, 0x1d5f0021, 0x5f0a0f04, 0x1b101313, 0xe13f3f00, 0x06145e33, 0x2705134c, 0x2f39125d, 0xe15d5e2b, 0x2005e54c,
0x06924a15, 0x23113723, 0x108e6211, 0x19033a08, 0x437bae6b, 0x76b0763b, 0x25282d1d, 0xa410bb15, 0x574c9df0, 0x6ca2faa9, 0x3f4e4fc4, 0x51270594,
0x8d89da98, 0x044e96db, 0xfd090d09, 0x6cd80162, 0xaa1501c6, 0xc61401a6, 0x08f95d6e, 0xfe713508, 0x046f0314, 0x001f005e, 0x1d25403e, 0x0e401c47,
0x1c1c4811, 0x5f210c04, 0x02217f21, 0x15012110, 0x20560448, 0x1f51181b, 0x121b1c16, 0x10090d51, 0xe1333f00, 0x0128b583, 0x5de1f610, 0x11ce105d,
0xad82af82, 0x7c450420, 0x17162107, 0x830c7b45, 0xed0128b8, 0x4c4a82b0, 0x5d66b285, 0x9d2908c1, 0x3e949190, 0x12b72368, 0x07fe4414, 0x0806b55d,
0xd3d3ca4e, 0xfd141bc3, 0x00d8015a, 0x68000100, 0x7904faff, 0x13000a05, 0x67402501, 0x111d110d, 0x1d010d02, 0x0b020201, 0x02020b12, 0x02071207,
0x0c111007, 0x000b1213, 0x02030801, 0x040f0407, 0x0a0c110d, 0x01090b12, 0x07020608, 0x0d050e05, 0x11211e82, 0x2120820a, 0x22820912, 0x82060121,
0x02440824, 0x0b0c0504, 0x0f0e0102, 0x4001014f, 0x0b05010b, 0x010f0f01, 0x1204050b, 0x11701160, 0x110311f0, 0x40c0ffb8, 0x480a074d, 0x11070811,
0x30152015, 0x06030215, 0x07040900, 0x13020101, 0x040d100a, 0x1211110b, 0x30080d82, 0x0b080707, 0x0b0b010b, 0xc00cb00c, 0x120f020c, 0x0002121f,
0x02081008, 0x0c081202, 0x0212080c, 0x0e0f0404, 0x480d0740, 0x0004050e, 0x2b2f332f, 0x05215533, 0xcf5c2f20, 0x11712305, 0x03832f33, 0x09821482,
0x01210582, 0x2707825d, 0x5d2b2f32, 0x2f391733, 0x5d200082, 0x11210f82, 0x23018333, 0xc0c08710, 0x0821038d, 0x210185c0, 0x07858710, 0x31c00825,
0x825e0030, 0x015d2a58, 0x03250705, 0x37251327, 0x21038405, 0x0f820317, 0x4c023308, 0xfe471c01, 0xb481b4e3, 0x0146e5fe, 0xe4fec61f, 0xb61d0147,
0x1f01b67f, 0x01e5fe4a, 0xa47ba6b0, 0x014ac7fe, 0xa47ba43b, 0x7da45a01, 0x493901a4, 0x0c82c4fe, 0x00010039, 0x038f04c9, 0x00b805b0, 0xb5420015,
0x0a07200f, 0xffb80348, 0x821e40e0, 0x0c280808, 0x00171212, 0x06100600, 0x06900620, 0x070506a0, 0x0f160606, 0x03000b0f, 0x2f000003, 0xcd102f32,
0x01112f32, 0x5d5e2f33, 0x2f29c182, 0x2b2b0033, 0x06013031, 0x06527706, 0x21332f08, 0x32333636, 0x06141516, 0x068b0123, 0x2838302c, 0x1d251709,
0x2d05c101, 0x2b2a3830, 0x2cee0439, 0x1c383333, 0x2d091625, 0x39363231, 0x89820029, 0xe504f426, 0xd905df03, 0x403c8983, 0x90088011, 0x08080208,
0x10140017, 0x03142014, 0xffb81407, 0x0d1240c0, 0x14144810, 0x14345482, 0xbf400e09, 0x80050105, 0x1a2f0009, 0xcd1a5ddd, 0xcd2f3311, 0x2b228c83,
0x0a825d5e, 0x89825d20, 0x023e3222, 0x28087f83, 0x34352315, 0x0e222326, 0x35232302, 0x854e0201, 0x6d3a7077, 0x2e3a857c, 0x9179652a, 0x66051055,
0x65242b24, 0x3411236c, 0x2008822e, 0x08858281, 0x04e10129, 0x06d302d7, 0x00110035, 0x0b124020, 0x4f063f0e, 0x00060206, 0x034f033f, 0x0303035f,
0xcc2f000f, 0xcd2f015d, 0x8239325d, 0x08b06763, 0x14152408, 0x26151716, 0x44e10126, 0x1f322f3b, 0x3c391f25, 0xb605787a, 0x26264639, 0x11111a1b,
0x152e1913, 0x8b731f4c, 0x8313205d, 0x3f07295d, 0x02004f00, 0x3f0e0300, 0x2006176e, 0x6e5d8503, 0x7c4a060d, 0x06a44808, 0x78d30225, 0x48393c7a,
0x05280857, 0x1f734db6, 0x192e154c, 0x2e0b1548, 0xfe290008, 0x05c107c1, 0x00130091, 0x823b0027, 0x0063265f, 0x008b0077, 0x567c829f, 0x07290565,
0x33363623, 0x17021e32, 0x200f8e03, 0x200f8e01, 0xbf0f8e21, 0x6f04351f, 0x2e241803, 0x212f1e19, 0x054b0314, 0x4d316764, 0x4f031e36, 0x01231392,
0x821703f4, 0x2f1f2728, 0x4c031321, 0x28856505, 0x922ffb21, 0x31042114, 0x29951492, 0x6882f020, 0x82192d21, 0x277c8453, 0x364c3168, 0xbef9031f,
0x04313e92, 0x13231ccf, 0x23120506, 0x1c685a1e, 0xf92b4833, 0x270f87f2, 0x331d6959, 0x16012b47, 0x0f821f88, 0x8d2b4821, 0xdb03210d, 0x0d8d0f8d,
0x8819fe21, 0x8368200f, 0x080d8d4b, 0x08000027, 0x7ffe2900, 0xd3057d07, 0x19000c00, 0x33002600, 0x4d004000, 0x67005a00, 0x17050000, 0x2307030e,
0x0337033e, 0x20048227, 0x2a0c8233, 0x031e3701, 0x032e1517, 0x82070527, 0x82352004, 0x3701210c, 0x27831a82, 0x82070121, 0x2127831f, 0x1a822703,
0x1a833720, 0x04821720, 0x042e2783, 0x1c0a0b37, 0x61122320, 0x1012150a, 0x0c8b3b05, 0x0e230233, 0x57575526, 0x5b5d2a27, 0x68fb2557, 0x5755270e,
0x320c8556, 0x2202a603, 0x28565450, 0x4e4f2545, 0xeafc1e49, 0x884f2302, 0x112b330d, 0x24272914, 0x3317430f, 0x03173234, 0x2814116a, 0x0d822527,
0x32343424, 0x428a2316, 0x8a980421, 0x16fe215c, 0x01228498, 0x4f8210aa, 0x440f2522, 0x16224f83, 0x0d8b95fc, 0x83de0221, 0x28552286, 0x20868546,
0x878683e9, 0x004f080d, 0xfec90002, 0x07d3057f, 0x001b0068, 0x40b30031, 0x301c1c48, 0x26d00126, 0xcf26af01, 0x26200226, 0x26802630, 0x17262603,
0x1a1a190a, 0x07151b18, 0x65175a00, 0x0133d033, 0x200133af, 0x02333033, 0x5a0c0813, 0x26326409, 0x1c011c9f, 0x82090640, 0x8e2c2d3e, 0xfb1a0521,
0xe8ffb813, 0x481814b3, 0xe0340782, 0x130a2640, 0x16130648, 0x03132613, 0x5f171309, 0x18061200, 0x06211a82, 0x37168220, 0x06190609, 0x07030629,
0x030a1606, 0x33333f00, 0x2b2b5d5e, 0x3333e13f, 0x07820683, 0x5d2b2f2e, 0xf6100133, 0x5d3232e1, 0xf4105d5d, 0x33280782, 0x332f3933, 0x2f391211,
0x71311082, 0x30312f33, 0x36341121, 0x23373637, 0x33112301, 0x91841811, 0x03332b09, 0x0e031323, 0x2e222303, 0x41182702, 0xae0807ac, 0x04056404,
0xfd080604, 0x01aed731, 0x04010303, 0xcc020703, 0xda8fc3d5, 0x31069da6, 0x67648d5d, 0x042a588c, 0x321c04aa, 0x492b354c, 0x03062237, 0x418f3819,
0x46fb4d4c, 0xe0fcb605, 0x44433e1a, 0x044c4a1f, 0xfdf0fab4, 0x078101d9, 0x50774d68, 0x774f2729, 0x29483950, 0x472c1210, 0x02000035, 0x83feae00,
0x1706f204, 0x25000f00, 0x3a409600, 0x1a041010, 0x1a841a34, 0x1a1a0703, 0x0e0d050b, 0x090c0f0e, 0x48180910, 0x46000209, 0xa427550b, 0xd427c427,
0x0427f427, 0x02012780, 0x27102700, 0x27502720, 0x27702760, 0xffb80306, 0x822540f0, 0x08033f29, 0x54044607, 0x107f1a26, 0x06401001, 0x10104809,
0x11158e20, 0x0209fb0e, 0x600b0f05, 0x2a5f0408, 0x3fe12405, 0x413f3333, 0x2b220c2d, 0x2f415f5d, 0x412b2006, 0x5e210830, 0x052e415d, 0x23011329,
0x07113311, 0x41113301, 0x032f1323, 0xfefd0b8f, 0x020cacea, 0x7bb7e904, 0x41477ab6, 0x76181419, 0xfd2e076d, 0x9803fc64, 0xe9fd50fc, 0x17067d01,
0x4218764e, 0x123609f1, 0x0035482c, 0x002f0002, 0x05330400, 0x001600b6, 0x40520021, 0x096a132c, 0x06e66908, 0xd2690e20, 0x00892108, 0x2009cc69,
0x0ecc6903, 0x6908da68, 0xc06905c6, 0x06d76815, 0x210bc069, 0xc0698101, 0x9898260a, 0xfe3b01ba, 0x14be69c5, 0x69b2b221, 0xb58209bc, 0x00001228,
0x14061904, 0xb5821400, 0x40613d08, 0x0e01013b, 0x5708471c, 0xbf236f23, 0xff23df23, 0x00030423, 0x11124716, 0x1522540e, 0x0f030450, 0x12001250,
0x24074004, 0x01120f48, 0x121f120f, 0x12040702, 0x00131204, 0x150e5016, 0x2109916a, 0xc5872b71, 0xc4f61027, 0x3232e133, 0x26cc825d, 0x312f3912,
0x82210130, 0x692120b3, 0x11200d9f, 0x25099d69, 0x17016401, 0x9f69e9fe, 0x9c9c2309, 0x9b6901b6, 0x21053a08, 0x9ceffd89, 0x587c4d9b, 0x8998042f,
0xfedafbf3, 0x422911a8, 0x28423130, 0x20c78211, 0x36c782c7, 0x00b60533, 0x00220013, 0x1b4f4088, 0x1a061a05, 0x07190818, 0x82190607, 0x0c4a0801,
0x00285b1e, 0x00480038, 0x24670003, 0x400124cf, 0x240f0124, 0x0c140601, 0x23640d5a, 0xaf1b1819, 0x1a1a011a, 0xb0062214, 0x07070107, 0x1408050c,
0x400b3060, 0x0b0b020b, 0x0e60220c, 0x00120c03, 0x11e13f3f, 0xe15d2f39, 0xc7823939, 0x93435d20, 0x39392105, 0x2205ae43, 0x825d5d5e, 0xe15d27e0,
0x2f393912, 0x1b83112f, 0x74323921, 0x142b064c, 0x1707020e, 0x23062707, 0x82231123, 0x1e4f08e6, 0x32330102, 0x37273736, 0x35363617, 0x23232634,
0x2f163304, 0x6a6e364b, 0x967c5d81, 0x866a01ba, 0xfd3c7ec2, 0x4426814e, 0x706d5c1f, 0xaea43433, 0x3a0a04a0, 0x2056646f, 0x1bb64e9b, 0xb605c7fd,
0xfea06d39, 0x85050567, 0x7324a04c, 0x82898e57, 0xae4b08f7, 0x3f0414fe, 0x23005e04, 0x72003900, 0x35344040, 0x2a333332, 0x1f1f1e20, 0x2a214837,
0x303b571b, 0x102a013b, 0x540d470c, 0x3235333a, 0x1f340f2f, 0xcf346f34, 0x34070434, 0x50242f34, 0x0e101610, 0x20201f0f, 0x211b0c00, 0x51502f1e,
0xe3820586, 0xe4823f20, 0x3f3f3323, 0x21f38333, 0xd7825d5e, 0x3220e885, 0x1127e682, 0x2f39e139, 0x82113339, 0x33392e04, 0x22053031, 0x2327022e,
0x16161716, 0x28e18215, 0x3e331733, 0x1e323303, 0x64011902, 0x22032408, 0x4c07020e, 0xf78505bc, 0xad08f682, 0x603b9e02, 0x0c163c4d, 0x04020303,
0x081a94b6, 0x604d3b16, 0x6e995e3c, 0x6d525a3c, 0x411f756a, 0x41694c46, 0x411b021f, 0x2111516c, 0x6e6d6a0f, 0x19147f54, 0x22203a2c, 0x10371a1f,
0x36062bfe, 0x2d3e2294, 0xd48f481b, 0x44f2af8c, 0x09a64e9a, 0x2edb030b, 0x295e8d5e, 0x376b9d65, 0x4c980503, 0xd0ee6a9e, 0x010000ce, 0x00002f00,
0xb605be03, 0x89000d00, 0x051f1540, 0x0502052f, 0x000f0805, 0x9002001f, 0xe000a000, 0xb8000300, 0x1e40c0ff, 0x00480a07, 0x0f1f0f00, 0x0f9f0f3f,
0x03040fbf, 0x000c5a07, 0x0a06010a, 0x08c00880, 0x22830802, 0x0a062632, 0x09060848, 0x0c0f035f, 0x0c3f0c2f, 0x0f040c4f, 0xaf300682, 0xff0cdf0c,
0x0c08050c, 0x5f02070c, 0x1207030d, 0x08ee4418, 0xe133712a, 0x2b2f0132, 0x5d5ec65d, 0xcf4d0982, 0x12712b05, 0x315d2f39, 0x21150130, 0x5b182111,
0x0337084f, 0x01c3fdbe, 0xbab0fe50, 0xb6059898, 0xa215fea6, 0x83027dfd, 0x839102a2, 0x821220bd, 0x040a22bd, 0x3ebd824a, 0x0b1d406e, 0x0620000b,
0x06020630, 0x0f700f06, 0x0fc00fa0, 0x470d0903, 0xef02df04, 0x83020202, 0x12b323c5, 0x07834815, 0x21402208, 0x00480b06, 0x094f010c, 0x045f044f,
0x17400402, 0x040b481c, 0x0702041b, 0x08000404, 0x000f0550, 0x20a58815, 0x829c832b, 0xc62b21a6, 0x5d20a587, 0x3125a382, 0x23113330, 0x051e6e35,
0xae3ca883, 0x5c029c9c, 0x17015afe, 0xe101e9fe, 0x9ae00189, 0xfe89bafe, 0x0001001f, 0x0400fec7, 0x3408b582, 0x66002600, 0x15094140, 0x07070701,
0x125b2205, 0x0128c028, 0x288f287f, 0x40281002, 0x1c1c0228, 0x055a040a, 0x201d2764, 0x001c175f, 0x2f0d0f60, 0x030d3f0d, 0x2d04820f, 0x0dff0ddf,
0x0d0d0804, 0x065f0905, 0x3b410503, 0x4fe1200a, 0xf1290506, 0x5d2fc032, 0xde105d5d, 0x299484e1, 0x015d5e00, 0x11070622, 0x94831123, 0x08059f4a,
0x0e141556, 0x2e222302, 0x16352702, 0x11203316, 0x01022e34, 0x1a3c25fc, 0xfdf702ba, 0x2d471dc3, 0x57a5f09a, 0x76c99252, 0x3d444e31, 0x487f3f1f,
0x7b437701, 0x058302ae, 0x0587fd05, 0x0bfea6b6, 0xab5c0305, 0xf8aa97f2, 0x0c064fa2, 0x17a20c13, 0x79ef0118, 0x00407eb9, 0x4a08db82, 0x030afeae,
0x004a04c5, 0x405c0023, 0x19220939, 0x03222922, 0x0a121414, 0x0f251f48, 0x02251f25, 0x257f255f, 0x030325ff, 0x47111703, 0x04245412, 0x0b510d00,
0x021a1b1a, 0x121a1a07, 0x0f135016, 0x51071512, 0x3f001b00, 0x5d3f3fe1, 0xe9210580, 0x05424311, 0x5d2f3923, 0x82d28871, 0x842620d1, 0x363225bb,
0x23263435, 0x3b08de93, 0x6a4b2902, 0x426a2b2e, 0x9d907576, 0xb61f3e1a, 0x5afe5c02, 0x661f3b1d, 0x404c85b3, 0x0afe966f, 0x18a11d1f, 0xd4d2c325,
0xfe080aca, 0x9a4a0435, 0x0505c3fe, 0x9ddb8a3e, 0x4088d596, 0x043cc782, 0xcb067ffe, 0x1500b605, 0x5740e200, 0x18144011, 0x09201148, 0x110a4813,
0x0002111a, 0x00200e83, 0x003c0e84, 0x0702001a, 0x020d0d10, 0x0a0a075a, 0x03b803a8, 0x01039902, 0x5701038d, 0x77036703, 0x5e08e582, 0x06120303,
0x100f0e00, 0x180c400f, 0x0f110f48, 0x12045a15, 0x84127401, 0x0312c412, 0xc0ffb812, 0x0a072740, 0x17121248, 0xf0011704, 0x17e40117, 0x0117a001,
0x30172002, 0x70176017, 0x05179017, 0x0801170f, 0x08050809, 0xf0ffb806, 0x06061340, 0x0dfb1316, 0x0f000a0a, 0x11030b08, 0x6803055f, 0xe135054e,
0x1233333f, 0x3f331139, 0x2f330111, 0x11333338, 0x5d5d5e33, 0x06b25b5f, 0x715d2b30, 0x2f3333e1, 0x3233382b, 0x2f391211, 0x00825d5f, 0xe1212182,
0x33258332, 0x2b5d2b2b, 0x2130312b, 0x11231101, 0x01012301, 0x33110133, 0x08824482, 0x053c1082, 0xb3eefdae, 0x02d3eefd, 0xcdedfd21, 0x02b30a02,
0xedfdcd0a, 0xb0c3a801, 0x1bfde502, 0xf2240384, 0x3cfdc402, 0x2e080387, 0xd9fdb4fd, 0x00008101, 0xfe040001, 0x04040683, 0x0115004a, 0x276c4011,
0x02103710, 0x0e390e29, 0x36092602, 0x0a270209, 0x27020a37, 0x86043704, 0x37012304, 0x5e410201, 0x0d10371d, 0x0746020d, 0x03cd0a0a, 0x0103b901,
0x960103a9, 0x03870103, 0x5a410301, 0x410a2009, 0x4628055a, 0xc0ffb812, 0x481512b3, 0x40380783, 0x480b0717, 0x10171212, 0x17000117, 0xf417e401,
0x17b40217, 0x170217c4, 0x402f2382, 0x48110d13, 0x02011730, 0x0f011720, 0x41070117, 0x0f241560, 0x03056011, 0x41093949, 0x2b251260, 0x71715d5d,
0x05bf6211, 0x200e6141, 0x0662415d, 0x61415d20, 0x5d002406, 0x835d015d, 0x156a4100, 0xfef0043c, 0x44fea443, 0xfecf01cf, 0x9f01c558, 0xc5a001a4,
0x4f0158fe, 0x2d02aec5, 0x0384d3fd, 0x15023524, 0x0387ebfd, 0x65fe2a08, 0x7d01e9fd, 0x4800ffff, 0xec0342fe, 0x2602cb05, 0x0000b101, 0x7f030701,
0x00004801, 0x01b11100, 0xffffb801, 0x134248b4, 0x06b35c0b, 0x44202b82, 0x52222b82, 0x2b825e04, 0x2b85d120, 0x88f20021, 0x82f8202b, 0x2129212b,
0x24082b86, 0xc7000100, 0xec047ffe, 0x1000b605, 0x5940a600, 0x18144005, 0xcd05bd48, 0x0305dd05, 0x10092005, 0x2a051a48, 0x05044305, 0xcd00bd27,
0x0300dd00, 0x3c158400, 0x02002a00, 0x08101006, 0x7f100f0e, 0x020f9f0f, 0x0f300f00, 0x06030f40, 0x04050f0f, 0x3a72825a, 0x07020110, 0xb0120101,
0x080c0112, 0x1164095a, 0xf0ffb80c, 0x100b1640, 0x82100648, 0x060c3a04, 0x030a0f09, 0x05055f00, 0xfb021209, 0x333f3f00, 0x333fe12f, 0x2b393912,
0x08af6d2b, 0x335d5e2a, 0x2f3332e1, 0x385d5d5e, 0x11231982, 0x852b5d33, 0x30312901, 0x23113325, 0x07012311, 0x333f0582, 0x33013711, 0xb7350401,
0x3dfe6cb1, 0x79baba8b, 0xfdd1c401, 0xd9fda6f8, 0xba028101, 0x19b8fd72, 0x2f09142d, 0xfeae0001, 0x042b0483, 0x000e004a, 0x086a4099, 0x0826e784,
0x08dd08cd, 0xd1840803, 0x082a0824, 0x15840302, 0x03cd0326, 0x030303dd, 0x3f081584, 0x02032a03, 0x00460708, 0x86017601, 0x016d0201, 0x01015501,
0x013b012b, 0x1403014b, 0x010b0101, 0x01030601, 0x04100400, 0x10040402, 0x470a020e, 0x090f540b, 0x000e0e02, 0x0850030b, 0x0cfb0515, 0x2105ca60,
0xc284e13f, 0x2505dc44, 0x2f331132, 0x066c335d, 0x5d5d2205, 0x89e58211, 0x20cc82da, 0x84dd8501, 0xfa0238dc, 0x0161fec4, 0x66aec14b, 0xb4b44bfe,
0xf1fd4a04, 0xe9fd5ffe, 0x18027d01, 0x08093781, 0x0000c748, 0xb605a204, 0x97001200, 0xff0f00b9, 0x125d40e0, 0x0f504815, 0x22020f60, 0x420f320f,
0x4002030f, 0x0b480d09, 0x34085a07, 0x02125412, 0x03570f12, 0x1d0c0301, 0x040b0104, 0x00040401, 0x10136408, 0x00011111, 0x02820010, 0x07022008,
0xb0140000, 0x142f0114, 0x01141001, 0x0809050b, 0x04300420, 0x04030440, 0x100d040d, 0x82080309, 0x323f2e65, 0x3939333f, 0x115d2f2f, 0x01393912,
0x08c0835d, 0x5d5e2f24, 0x11333338, 0x11e61033, 0x5d5d2f39, 0x325dc133, 0xe1105d32, 0x00303132, 0x2b5d5d2b, 0x15012321, 0xad411123, 0x33112206,
0x08e38215, 0xd3a2043c, 0x7785aefe, 0x8577baba, 0xfdd14101, 0xcdf401f8, 0xfd626401, 0xfdb605d7, 0x6301a406, 0xfda601b3, 0x00010065, 0x040000ae,
0x004a0423, 0xb59c0013, 0x110b4011, 0xffb80a48, 0x0782b3c0, 0xb80e5208, 0x5740f0ff, 0x0e480d08, 0x0112260a, 0x13890712, 0x13a91399, 0x2f131f03,
0x03133f13, 0x1301130b, 0x02060f13, 0x14540347, 0x100c0c0b, 0x0f20100f, 0x0f020f30, 0x1500150f, 0x00021510, 0x60154015, 0xa0158015, 0xe015c015,
0x0e070715, 0x0806060d, 0x2b018213, 0x0f040b02, 0x00150210, 0x333f333f, 0x2f2ddc82, 0x1139122f, 0x5e013333, 0x3311715d, 0x22e2862f, 0x4e32e1f6,
0xe5840568, 0xe2832b20, 0x27012b28, 0x33112311, 0xdb823711, 0x01331324, 0xef830115, 0xcf012708, 0x6db4b46d, 0xfec5eb7d, 0xcfd70150, 0x017df8fe,
0xd3fd7bb2, 0xebfd4a04, 0xb946017b, 0x16fe0d01, 0x01e9fd49, 0x7f49cd27, 0x04270805, 0x00b605a2, 0x40850014, 0x66140240, 0x13140114, 0x500e4004,
0x0e0e020e, 0x040c1000, 0x0507095a, 0x13121564, 0x41131310, 0x163b0aa7, 0x2f0116b0, 0x16100116, 0x5f060f01, 0x0009090c, 0x100b1002, 0xffb81048,
0x830c40f0, 0x05022508, 0x05030a12, 0x8206b041, 0x2b2b21cd, 0x3322b782, 0xb24132e1, 0x382f250b, 0xc6f61033, 0xd3841482, 0x39121128, 0x3133115d,
0x5a432130, 0x053d4d05, 0x23153322, 0x2a056243, 0x3dfed3a2, 0x9898ba8b, 0x43d5d5ba, 0x02310564, 0xb8fd72ba, 0xb2a46004, 0x7bfea4b2, 0xfd3302a8,
0x08cb8283, 0x00001222, 0x1406f003, 0x84001600, 0x0e110f40, 0x08040f0e, 0x47130309, 0x01060014, 0xc0ffb806, 0x481510b3, 0x3a080783, 0x0e093540,
0x0f060648, 0x54140116, 0x100d0c17, 0x35100f0d, 0x0f00010f, 0x0f200f10, 0x0f0f0803, 0x01180f18, 0x14021109, 0x15070f14, 0x0101044f, 0x0c150f02,
0x0000020f, 0x853f3f3f, 0x053f4cc5, 0xaf820120, 0x21052044, 0xc9821133, 0x82c63221, 0x2b2b281c, 0x17e11071, 0x83391132, 0x33132fca, 0x21153335,
0x03112115, 0x33013733, 0xd9860101, 0x9c122e08, 0xfe7b01b4, 0x87041085, 0xfed32501, 0xd1ac016f, 0xb46db0fe, 0xb65e059c, 0x75fe89b6, 0x01aaedfe,
0xfd25fe69, 0x52f80191, 0xd5045afe, 0x3dd78200, 0x05000014, 0x00b60544, 0x4057000e, 0x0e0e0233, 0x5a040a0d, 0x05300520, 0x05800540, 0x008205f0,
0x0c070024, 0x9e410d0d, 0x10102a0a, 0x0a020110, 0x5f070c05, 0x07854108, 0x1233e124, 0xb2863939, 0x82333821, 0x822f20b1, 0xe15d21ae, 0x7541aa86,
0x35212306, 0xaa831121, 0xd344052a, 0xbb8b3dfe, 0x0f02acfe, 0x240a6e41, 0xfda41205, 0x076b4125, 0x00294008, 0x04c90400, 0x000d004a, 0x02404067,
0x060b0d0d, 0x01070047, 0x07100700, 0x07600720, 0x080507c0, 0x09030707, 0x01d50100, 0x010201f5, 0x00100304, 0x02031003, 0x400f0303, 0x020fe00f,
0x82010f0f, 0x09072733, 0x0f0a0050, 0xf4420307, 0x12e12705, 0x01331139, 0xee425d5d, 0x82078306, 0x5d5e29a2, 0x3232e171, 0x30313311, 0x22054241,
0x82112311, 0x076908a5, 0xc5dd0311, 0xc70160fe, 0xb54cfecf, 0x1f0298fe, 0xfd4a0402, 0x02c5fdf1, 0x03d3fd2d, 0xfd029ab0, 0x010000ed, 0x7ffee500,
0xb605a405, 0x63000f00, 0x5a043f40, 0x74010104, 0x94018401, 0x01010301, 0x5a050d11, 0x11e41100, 0xc00211f4, 0x10020111, 0x40112011, 0x04118011,
0x095a080c, 0x5f071064, 0x08010c0f, 0x0e050c0c, 0x21c3820a, 0x2646055f, 0x33e12305, 0x9184333f, 0x2646e120, 0x5d5f2605, 0xe1dc105d, 0x21af8332,
0x1846e171, 0x6e112007, 0x112d06a0, 0xb0f40433, 0x67fdbbb0, 0x9902bbbb, 0x051346bb, 0x676eaa20, 0x68022105, 0xae269b82, 0xdb0483fe, 0x9b824a04,
0x5240793a, 0x04470008, 0x0b0b010b, 0x0cc4470f, 0x0c020cd4, 0x1104110c, 0xd4021124, 0xb0209e83, 0x30209e82, 0x50209c82, 0x26089e82, 0x11a01190,
0x47030706, 0x0d105404, 0xeb5002fb, 0x07a90107, 0x0f0207b9, 0x2f071f07, 0x07060307, 0x05090007, 0x51500b0f, 0xe1200585, 0x5d23ad86, 0x883fe15d,
0x837120b0, 0x33e128ad, 0x32e15d2f, 0x89213031, 0x33112fac, 0x03112311, 0xb6dffd85, 0xb62102b6, 0xe572b6a0, 0x054d5109, 0xe536b182, 0x48060000,
0x0d00b605, 0x3b405d00, 0x005a0109, 0x0b400500, 0xb782e001, 0x43200f21, 0x2108053e, 0x0f400f30, 0x0fa00f60, 0x0fe00fb0, 0x04080608, 0x0e64055a,
0x0a0a5f0d, 0x0f5f0306, 0x08080108, 0x8d420608, 0x2f392407, 0x82e15d5e, 0x0549418a, 0x715d5e29, 0x715dc610, 0x842f3911, 0x88232095, 0x15212496,
0x41f40421, 0x02240643, 0x02acfe0f, 0x21084141, 0xa14500a4, 0xa4052305, 0x91824a04, 0x21406833, 0x05470408, 0x00470109, 0x54050b00, 0x0f0b0b0e,
0x21958200, 0x8b829002, 0x0fc03208, 0x0ff00fd0, 0xffb80f05, 0x071f40c0, 0x5003480c, 0xa90108eb, 0x0208b908, 0x081f080f, 0x0603082f, 0x0d000808,
0x050f060a, 0x3f001500, 0xc4333f32, 0x249e8312, 0x01e15d5d, 0x2394822b, 0xe6102f33, 0x10209984, 0x3b219c92, 0x053141b6, 0xfe1f0223, 0x09324197,
0x9b829a20, 0xfec72e08, 0x05db0700, 0x002700b6, 0x093a405f, 0x1207010b, 0x5a200012, 0x18252121, 0x6f29085b, 0x5a240129, 0x1d286425, 0x2f030f60,
0x03033f03, 0x3c04820f, 0x03ff03df, 0x03030804, 0x265f2325, 0x12252103, 0x0d5f1613, 0xe13f001c, 0x3f333f33, 0x299284e1, 0x1001e171, 0x105de1f6,
0x9084e1de, 0x312f3927, 0x5d5e0030, 0x17684d01, 0x07222323, 0x054b4111, 0xc1042129, 0x9a2e491e, 0x4d56a5f0, 0x4335056b, 0x7e3f1f3d, 0x43770149,
0x4b6bae7c, 0x7bfdbb33, 0x03fa03ba, 0x166b4d1b, 0x89fd0c26, 0xeefa1205, 0x5808cb82, 0xfeae0001, 0x0475060a, 0x0024004a, 0x0b4e4077, 0x02231b23,
0x11190303, 0x01120247, 0xa60112c2, 0x0212b612, 0x12871277, 0x16121202, 0x2620480a, 0x261f260f, 0x5f264f02, 0xff26af26, 0x26100426, 0x16471501,
0x510d2554, 0x1b1b1b0b, 0x1b1b0702, 0x17501416, 0x1516120f, 0x06884d04, 0xe885e989, 0x85715d21, 0x5d5d25ea, 0x32e1715d, 0x8e4dee84, 0x18e68415,
0x2108444c, 0x8f4dd904, 0x3e1c2a09, 0x08feb61f, 0x3a6403b6, 0x158f4d3f, 0xfcb00328, 0xfe4a0450, 0x914d0c27, 0x02660808, 0xacff7d00, 0xcd059605,
0x52003e00, 0x50407a00, 0x32104e05, 0x5b490004, 0x20102000, 0x35203502, 0x5b3f1820, 0x0f546700, 0x4f541f54, 0x7f545f54, 0xaf549f54, 0x2b070754,
0x5366185b, 0x054e6044, 0x3a103a00, 0x3a603a20, 0x3a803a70, 0x073a3a06, 0x1d215f26, 0x30321004, 0x5f07135f, 0x13130e0e, 0x2f333f00, 0xd08210e1,
0xe1333f28, 0x5d2f3912, 0xee843939, 0xa2185e20, 0x5d36083a, 0x391712e1, 0x14013031, 0x1607020e, 0x37363233, 0x23060615, 0x04652722, 0x032e2110,
0x21097d6e, 0x4f632637, 0x34072308, 0x1887022e, 0x3e17ee08, 0x276f0503, 0x362d5541, 0x1f462551, 0xa6264f1d, 0x3c7c328b, 0x519de896, 0xa6f29e4d,
0x35257842, 0x3330280a, 0x6ca97615, 0xa0703c33, 0x4f263064, 0x8360375b, 0x62854b4c, 0x2a16c539, 0x3d29273d, 0x29181529, 0x422a1f36, 0xa602182e,
0x6f90af65, 0x0b0e1924, 0x620c0daa, 0xc06a1111, 0xb5a50e01, 0x69c71f01, 0x059c0f16, 0x5105090a, 0x948dde9a, 0x074690da, 0x9b160169, 0x3b7bc185,
0x95c67b38, 0x36638954, 0x50876237, 0x65768548, 0x77622127, 0x02000088, 0xc5ff7100, 0x5e04a404, 0x4d000d00, 0x49407900, 0x32110544, 0x48003f04,
0x21642154, 0x35213502, 0x48081921, 0x3f4a4a3f, 0x4f7b4f57, 0x4fbb4f8b, 0x6f4f5f03, 0x4f1b024f, 0x014f0f01, 0x482a0207, 0x0b4e5619, 0x3a3a0544,
0x22502547, 0x3211101e, 0x4714502f, 0x140e0e50, 0x0a5a4116, 0x3912e92d, 0xc139392f, 0xe1f61001, 0x825d5e5f, 0xe6102500, 0xe1102f32, 0x41053078,
0x1e210760, 0x06e55302, 0x01062223, 0x0d976422, 0x64661620, 0x3736270d, 0x34352626, 0x3953023e, 0x020e2305, 0x99411607, 0x02920807, 0x2a2014dd,
0x38483915, 0x01413e3d, 0x3988454c, 0x75476228, 0x3c3f7ab3, 0x4279b478, 0x13291a52, 0x70542a4a, 0x431e1c43, 0x3225506e, 0x314a3903, 0x40417255,
0x1e2e526f, 0x14274534, 0x391a1d37, 0x0142191c, 0x4b5c35f4, 0x96281239, 0x7a7a676b, 0x252a68fd, 0x97571711, 0xd68375cc, 0x06105397, 0x3a100596,
0x5967a06f, 0x083c6b94, 0x77b44202, 0x2b59885e, 0x638a5627, 0x4d637846, 0x060d0a1b, 0x07099308, 0x7d00ffff, 0x980442fe, 0x2602cb05, 0x754d2600,
0x2f022d05, 0x0e000000, 0x750101b7, 0x20182c32, 0x8205724d, 0xfe712a27, 0x046f0342, 0x0026025e, 0x21278546, 0x27867101, 0x282e5224, 0x27850d05,
0x01005708, 0x7ffe1400, 0xb6051204, 0x6f000b00, 0x0d1f3940, 0x010de001, 0x0ddf0d5f, 0x300d2002, 0x030d400d, 0x010f5a04, 0x0702011f, 0x0aaf0101,
0x0a020aef, 0x065a0b0a, 0x07e00740, 0x01070f02, 0x57070708, 0x77066706, 0xb8060306, 0x0f40c0ff, 0x06480a07, 0x085f070b, 0x4b470003, 0xe13f3108,
0x2b2f0132, 0x5e2f335d, 0xe1105d5d, 0x395d2f32, 0xe1240982, 0x715d5d5d, 0x37094947, 0x21152135, 0xb0b07102, 0x035efebb, 0xa65ffefe, 0x8101d9fd,
0xa4a41205, 0x0027b682, 0x0383fe29, 0x844a045e, 0xf04d399d, 0x0daf010d, 0x500d4001, 0x0d2f020d, 0xaf470b01, 0xcf08bf08, 0x40080308, 0x33087882,
0x05df0808, 0x01059d01, 0x0501058f, 0x00470705, 0x02700260, 0x1f0302d0, 0x02020102, 0x00100000, 0x00c000b0, 0xfb090004, 0x03500206, 0x0050070f,
0xe13f0015, 0x3f209c82, 0x0a568b18, 0x39209582, 0x9d83ab82, 0x30315d25, 0x83211121, 0x33113898, 0x01112311, 0x03c1fe68, 0x9fc1fe35, 0x9ab003b6,
0xfdeafc9a, 0x6d7d01e9, 0x37270795, 0x0602b605, 0x83003c00, 0xfe0024ad, 0x82d50314, 0x001336ad, 0x0a13407c, 0xa647000a, 0x01870101, 0x01020197,
0x12110301, 0x0c4e5010, 0x07204208, 0x1212480b, 0x0115f015, 0x15ef15df, 0x90155002, 0x0315a015, 0x3001154f, 0x150f0115, 0xb8030401, 0x1040f0ff,
0x0f031103, 0x0a150a05, 0x0a130702, 0x1b001502, 0x333f3f00, 0x3f5d5e33, 0x382f0133, 0x82b08233, 0x33112902, 0x382b2b2f, 0x2f391233, 0x2205ed72,
0x82013031, 0x333908b1, 0x17031e13, 0x37033e33, 0x02013313, 0x71feb746, 0x2010c7bc, 0x0705141b, 0x201b1504, 0xfebcc710, 0x0114fe71, 0xfd4e04e8,
0x5e642ecf, 0x4f19194f, 0x022e645e, 0x00b2fb31, 0x21c98201, 0xd5820400, 0x10002e08, 0x19409f00, 0x120112ef, 0x480c0940, 0x08040000, 0x090d095a,
0x77010996, 0x02098709, 0xc0ffb806, 0x18150d40, 0x06090b48, 0x030b0906, 0x05b36402, 0xab383c08, 0x0f90010f, 0x010f1401, 0x1002010f, 0xef010210,
0x02d00102, 0x0102bf01, 0x4f010280, 0x02025f02, 0x00010214, 0x02070102, 0x0a071202, 0x0d00045f, 0x1208010d, 0x0003010f, 0x823f333f, 0x333928c2,
0x011132e1, 0x855e2f33, 0x715d23db, 0xd6823338, 0xde825d20, 0x2f39172e, 0x5d2b2f2f, 0x1033115d, 0x3d3932e1, 0xe8820a82, 0x01330123, 0x05c25515,
0x35212808, 0x33013521, 0x54011b02, 0x0142fec8, 0xbbd9fe27, 0x2601dafe, 0x02cb42fe, 0xfce302d3, 0xfea43d83, 0xa45801a8, 0x41870333, 0x19310ba7,
0x15408500, 0x01170e0e, 0x02a60647, 0x97028701, 0x23008202, 0x10161507, 0x080cb277, 0x0b072037, 0x1b161648, 0xdf011bf0, 0x021bef1b, 0x1b901b50,
0x4f031ba0, 0x1b30011b, 0x011b0f01, 0xffb80708, 0x071340f0, 0x000f0715, 0x0e054f03, 0x07020e15, 0x1506170e, 0x07ac4101, 0x4132e121, 0xec8217ae,
0x3125c982, 0x23110530, 0x20c08211, 0x0bb44101, 0x0215212a, 0xf6feb746, 0x73fe0801, 0x2910ba41, 0xfe890a01, 0x8963019d, 0xbe414a04, 0xb62b080e,
0x00010089, 0x047ffe00, 0x00b605b4, 0x4006010f, 0x010f4788, 0x03010948, 0x060b000f, 0x0e070a05, 0x0b000c07, 0x080a0509, 0x820c080d, 0x09002112,
0x32081482, 0x0f0c0905, 0x0e060603, 0x01050a08, 0x05ba05aa, 0x05ea05ca, 0x050505fa, 0x480e0b30, 0x015a0405, 0x0b100e0d, 0x0eab010e, 0x0ecb0ebb,
0x0efb0eeb, 0x82400e05, 0x0a0e2f19, 0x00aa0100, 0x00ca00ba, 0x00fa00ea, 0x2d830005, 0x000e3e08, 0x01140104, 0x01010702, 0xe411d411, 0x0311f411,
0x020111c0, 0x11401120, 0xffb81102, 0x100b40c0, 0x110f4814, 0x0a0a0b01, 0xffb80807, 0x081440f0, 0x27010628, 0x060c010c, 0x030a0d05, 0x09354407,
0x333f3328, 0x5d393912, 0x7c54015d, 0x2b5d2405, 0x4d5d5f5d, 0x33250586, 0x715d2b33, 0x2403822f, 0xe1103338, 0x30078232, 0x3d391211, 0x1033172f,
0x04c00e87, 0xc08710c0, 0x2204820e, 0x8608c008, 0x82012005, 0x08cb5137, 0x08058f54, 0x01330143, 0xb0b6fe03, 0xfe9efe77, 0xc501bc91, 0x01c65afe,
0xbe4e014c, 0xfda65bfe, 0x028101d9, 0x0285fd7b, 0xfdba02fc, 0xfd2f02d1, 0x0100004c, 0x83fe2300, 0x4a041f04, 0x39010f00, 0x0d592540, 0x01035601,
0x3ab282b4, 0x48110e20, 0x29010c3d, 0x0c0b010c, 0x0c020c1b, 0x0008460b, 0x0d030603, 0x8304010d, 0x714508da, 0xb5481815, 0x04990104, 0x6a0204a9,
0x8a047a04, 0x04450304, 0x06020455, 0x05040104, 0x02eb02db, 0xc90302fb, 0x02bb0102, 0xa6029601, 0x02650202, 0x02850275, 0x5a024a03, 0x01020202,
0x05ef05df, 0x050305ff, 0x3a638240, 0x054b053b, 0x01052702, 0x051a050a, 0x44013402, 0x01280201, 0x15010501, 0x82050201, 0x3b0f2406, 0x83070107,
0x0754088a, 0xc0ffb808, 0x0c074940, 0x11080848, 0x11801160, 0x11b01190, 0x11e011d0, 0xdb0711f0, 0x0ec9010e, 0x010eba01, 0x0e750e65, 0x4a030e85,
0x020e5a0e, 0x0e010e09, 0x0f4b0f3b, 0x010f2802, 0x0f150f05, 0x0d030f02, 0x50070e01, 0xfb09150c, 0x000f0104, 0x3f3f333f, 0x24054c4e, 0x5d5d5d2f,
0x068e43c5, 0x2f33112a, 0x5d2b332b, 0x2f393912, 0x15821683, 0x105d2b22, 0x07861c86, 0x90412b20, 0x32e12106, 0x312a1d84, 0x5d5d0030, 0x13330101,
0x04563313, 0x232c0805, 0x01230101, 0xcf9ffe98, 0xfecffafa, 0xaa0f019d, 0xf4fe65ae, 0x02cff2fe, 0xfe170233, 0xfd9a0166, 0xfd67fee9, 0x017d01e9,
0x004cfeb4, 0x33059f46, 0xb6056006, 0x94000f00, 0x5a010d40, 0x5a080404, 0xd0010510, 0xf183fd82, 0x07444408, 0x05054812, 0x0111df11, 0x0f0111a0,
0x4f112f11, 0x04118f11, 0x200e1007, 0x500e400e, 0x800e600e, 0x0e0e060e, 0x0f095a00, 0x2f0b1f0b, 0x6f0b5f0b, 0x060baf0b, 0x300b0b08, 0x50094009,
0x90098009, 0x83090509, 0x07112348, 0x2482480a, 0x0c025f30, 0x5f000403, 0xfb061209, 0xe13f3f00, 0x3e5a3f32, 0x2f332206, 0x05bf465e, 0xd5825e20,
0x2f33112f, 0xe1715d2b, 0x31e12f33, 0x11212530, 0x21018233, 0x2f461123, 0x71022806, 0xb0ba8502, 0x4606fcb0, 0x052106cc, 0x05b85f10, 0xa4120523,
0x26cd82a4, 0x0583fe29, 0x824a046d, 0xb68028cd, 0x0e0e470b, 0x820f4702, 0x0eb3237d, 0x07834818, 0x0733402a, 0x0f0f480b, 0x1f110f11, 0xbf20ca84,
0x062ed882, 0xe0086007, 0x0308f008, 0x470a0808, 0x1a421f03, 0x00052a06, 0x60031003, 0x04037003, 0x2fbd8403, 0x03481814, 0x0c500509, 0x0a0e0f06,
0x00150350, 0xbc87bd8f, 0x2b20ba83, 0x0120b985, 0xbb82b388, 0x0524c382, 0xb2fcb76d, 0x2705e746, 0xa0b6f801, 0x7d0183fe, 0x2405ed46, 0x50fcb003,
0x3ebb8200, 0x057ffea6, 0x00b60531, 0x4063001d, 0x1b0d0b12, 0x041a020d, 0xa01d905a, 0x1d1d021d, 0x83005a03, 0x2c2b0887, 0x00481007, 0x1f0f1f00,
0x1f2f1f1f, 0x1f5f1f4f, 0x1faf1f7f, 0x07081fbf, 0x640f5a12, 0x1a5f151e, 0x1b040a0a, 0x5f1d0310, 0x84011204, 0x333f25a2, 0x332f3912, 0x8306184b,
0x07b44e9c, 0x11255d23, 0x26018223, 0x2223030e, 0x1835022e, 0x2008834f, 0x35098237, 0xbab03105, 0x6163693a, 0x65925d31, 0x7b69ba35, 0x665e5a2d,
0xbe43ba38, 0x16563605, 0x310c1622, 0x02598b5e, 0x73d1fd47, 0x1e140a74, 0xfac60214, 0x08bd82f0, 0x83fe9a23, 0x4a049e04, 0x61001c00, 0x090b1740,
0x092b091b, 0x00150703, 0x1c181847, 0x10190047, 0x03192019, 0x08c28319, 0x150e2522, 0x1e191948, 0x1e5f1e0f, 0x1ebf1e7f, 0x0e051ecf, 0x1d540b47,
0x1015fb1a, 0x00060650, 0x180f0c16, 0x83063d48, 0x33e127ba, 0xf610013f, 0xba835de1, 0xbb825d20, 0x3132e127, 0x215d5e30, 0x23b78a11, 0x023e3233,
0x3320b683, 0x0334ce82, 0x55502c48, 0x7a4e3a5e, 0xb8b62b52, 0x4d4c502d, 0xb7a0b62a, 0x0baa9118, 0xae66fe28, 0x1d2b1c0f, 0x8f4fd501, 0xa6580808,
0x81040000, 0x1d00b605, 0x2e407000, 0x041b040b, 0x1d0f1c02, 0x0e140e04, 0x0e0e0702, 0x5a171306, 0x701f6516, 0x021fa01f, 0x10011f2f, 0x5a09011f,
0x06700660, 0x06b006a0, 0xffb80604, 0x071640c0, 0x0e06480a, 0x131d0e10, 0x0c031d1b, 0x1701015f, 0x17030714, 0x3f3f0012, 0x1726be84, 0x32322f33,
0xf648012f, 0x27c98206, 0x2f391132, 0xc1335d5e, 0x5d21c782, 0x0a7b4101, 0x33113325, 0x83363611, 0x112329c7, 0x11070606, 0x21500223, 0x2c067f41,
0x7638850c, 0x42baba44, 0x01853977, 0x097b41fc, 0x58012108, 0x2209b4fe, 0xfac60219, 0x1a56024a, 0xc9fe0b25, 0x9a000100, 0xfe030000, 0x1c004a04,
0x42406b00, 0x2308cd84, 0x1c0e1b07, 0x04010d50, 0x240d140d, 0x0d08030d, 0x1612060d, 0x1e55155a, 0x1e601e10, 0x09031e80, 0x1d54065a, 0x28068b4a,
0x1c0d0f0d, 0x031c1a12, 0x25c6820b, 0x0f071316, 0xc68d1516, 0x8805f374, 0x23c585c4, 0x30315d5e, 0x3320c889, 0x0e21c791, 0x058e412f, 0x7d062708,
0xb6335b2f, 0x325932b6, 0x2f6a017d, 0x01447354, 0xae66fea6, 0xe5fe2d01, 0x0123300e, 0x01b6fbd5, 0x103323e9, 0xc58200ff, 0x08070f57, 0x5000173a,
0x07043640, 0x07020714, 0x650b5a0c, 0x5f192f19, 0x8f196f19, 0xaf199f19, 0xef19cf19, 0x0919ff19, 0x02011910, 0x64175a16, 0x5f101518, 0x05100500,
0x17050502, 0x0300120b, 0x3923b983, 0x57e15d2f, 0x5d2005ae, 0x2505a675, 0x135d5e00, 0xe84f1133, 0x11330806, 0x26341123, 0x020e2223, 0xc7231107,
0x62c373ba, 0x3565925d, 0x2d7b68bb, 0x38655f5a, 0xfdb605ba, 0x312d2daa, 0xfd598a5e, 0x732f02b8, 0x1e140a75, 0x5139fd14, 0x2408052d, 0x4a041204,
0x3f001800, 0xff1400b9, 0x072240e0, 0x4700480a, 0xef1a5518, 0x1a10011a, 0x1a801a60, 0x47090d03, 0x7494180a, 0x0a0f2107, 0x21050f51, 0x8b8e2f39,
0x11212b23, 0x227e8634, 0x60113311, 0x1122064c, 0xb7425c03, 0x42b62006, 0x6b0808c9, 0x0fae9a01, 0xfe1c2c1c, 0xfe4a042b, 0x202f1f16, 0x73532f11,
0x005afe44, 0xff3d0002, 0x050606ec, 0x002b00cd, 0x40640036, 0x145b323e, 0x0f38670b, 0x02381f38, 0x01222029, 0x0c312222, 0x1f70005b, 0x1fc01f80,
0x1f371f03, 0x4f31600c, 0x2b0f012b, 0x2bff2baf, 0x01250f03, 0x2b252b08, 0x5f110525, 0x2c131a14, 0x0004055f, 0x333fe13f, 0x3905d84d, 0x715d5d5e,
0x0132e133, 0x325dd610, 0x2f3332e1, 0x105dc15d, 0x31e132f6, 0xa6830130, 0x1216162c, 0x1e211515, 0x36323303, 0x88431537, 0x27eb0805, 0x34352622,
0x06333736, 0x33141506, 0x020e2201, 0x2e342107, 0x0a660102, 0x8ddd9c5b, 0x3e88d699, 0x3f0725fc, 0x8070a974, 0x5b2a5bcf, 0x984c7c69, 0x095ca4eb,
0x0b129a8f, 0x670f069c, 0x955b8902, 0x0307416e, 0x8b562512, 0xf49a3903, 0xc56b5bab, 0x45abebfe, 0x4786c27a, 0x0faa202c, 0x610a121a, 0x759bfdb3,
0x17422a7a, 0x61233e0f, 0x7e41f001, 0xb87578b9, 0x00004380, 0xff330002, 0x04b604ec, 0x002c005e, 0x40840035, 0x2748312b, 0xff37571e, 0x37900137,
0x1f0237b0, 0x02377f37, 0x05481f30, 0x0108df0f, 0x00130808, 0x20051005, 0x05400305, 0x05020550, 0x40c0ffb8, 0x48131028, 0x1f053605, 0x121b3050,
0x0f02122b, 0x0b1b0112, 0x0f020b2b, 0x1206010b, 0x220b120b, 0x1018502d, 0x00275122, 0x323f0016, 0x12e13fe1, 0x4b2f3939, 0x3332053b, 0x100132e1,
0x715d2bc6, 0x5d2f3232, 0x32e110c1, 0x23415d5d, 0x22052506, 0x2627022e, 0x21090f41, 0x29623316, 0x15340807, 0x33161621, 0x37023e32, 0x03030e15,
0x21070622, 0x03022e34, 0x82b36b35, 0x8e85044b, 0x06950912, 0x1b31310e, 0x98744c0e, 0x6e9e635a, 0x054cfd3b, 0x57339799, 0x0e9b3819, 0x14598208,
0x81c78846, 0x27726f02, 0x3a0e153f, 0x6c312f22, 0x473e75a9, 0x716eb581, 0x130ab6c1, 0x13a2121d, 0x0308121c, 0x44959cdb, 0x002c5071, 0x3d000200,
0x06067ffe, 0x2e00cd05, 0x72003900, 0x5a1b4640, 0x35221c1c, 0x670b145b, 0x1f3b0f3b, 0x202c023b, 0x25250125, 0x005b0c34, 0x22802270, 0x220322c0,
0x600c223a, 0x012e4f34, 0x2e3f2e0f, 0x0f032eaf, 0x2e080128, 0x05282e28, 0x6011141a, 0xfb1b121d, 0x062b422f, 0x33e13f22, 0x42056159, 0x1222162d,
0x31422f39, 0x11072516, 0x032e1123, 0x2a2a3342, 0x64584e25, 0xc480b63a, 0x42084d8a, 0x0e2d2634, 0x020b1117, 0x730191fe, 0xebb06d10, 0x133a428e,
0x00027508, 0x0483fe33, 0x005e04b6, 0x0036002d, 0x04304092, 0x0b050547, 0x242d4832, 0x38ff3857, 0xb0389001, 0x381f0238, 0x3102387f, 0x150b4825,
0x0e010edf, 0x0b00190e, 0x0b200b10, 0x500b4003, 0xb80b020b, 0x2b40c0ff, 0x0b481310, 0x50250b37, 0x2b181b31, 0x180f0218, 0x2b111b01, 0x110f0211,
0x11180601, 0x2e281118, 0x28101e50, 0x06032d51, 0x00fb0416, 0x33333f3f, 0x41244342, 0x25220539, 0x28410606, 0x1d4c4206, 0x49420120, 0x85042a06,
0xb64c8042, 0x38638954, 0x1c4d4203, 0x7283fe36, 0xec010b85, 0x3559391b, 0xfe042320, 0x11750195, 0x6fb28454, 0x21195242, 0x4d42f002, 0xff3a0806,
0x005200ff, 0x05640200, 0x000602b6, 0xff00002c, 0x000400ff, 0x07810600, 0x01260269, 0x010000b0, 0x00360207, 0x005201f4, 0x010b4013, 0x01260517,
0x11121c00, 0x2b01250a, 0x02820035, 0x05232d85, 0x821706be, 0x86d0202d, 0x0093212d, 0x09af8e18, 0x0e212d82, 0x202d8707, 0x05756300, 0x05e14308,
0x002500b6, 0x1b3f4067, 0x5b21051b, 0x100a0911, 0x180c400a, 0x040a0a48, 0x27102711, 0x0b022740, 0x5a040808, 0x1f266405, 0x1c161c5f, 0x60000308,
0x0c5f0c2f, 0x0cff0cef, 0x10400c04, 0x0c0c4815, 0x73630905, 0x12332906, 0x5d2b2f39, 0x3f3333e1, 0x23050f49, 0x5d331132, 0x2905ca71, 0xe1103338,
0x312f3911, 0x97620130, 0x11332405, 0x52013301, 0x756307a1, 0x46022c0d, 0xba285c41, 0xcf3502ba, 0x5606d1fd, 0x7f370d09, 0x43770148, 0x6f02ae7c,
0xb0fd0e11, 0x3cfdb605, 0x58fdc402, 0x63eca355, 0xb3220e76, 0xdb823a76, 0xfeae5408, 0x04e9030a, 0x0023004a, 0x0b474072, 0x02081b08, 0x1f102322,
0x23230123, 0x0d0d051d, 0x0548141e, 0x01250f25, 0x256f255f, 0x259f257f, 0x25df25bf, 0x000725ff, 0x471d2121, 0x2124541e, 0x0b51191c, 0x02001b00,
0x1e000007, 0x1e0f1f22, 0x0e511115, 0x82001b0a, 0x057648d8, 0x825d5e21, 0x100123e6, 0xe383e1f6, 0x2006fd55, 0x29fe8211, 0x31333871, 0x015d0030,
0x4f64031e, 0x09926305, 0x63022e21, 0xfb830693, 0x2b022908, 0x4578a35e, 0x57966f3f, 0x2c2f694c, 0x75764369, 0x4e724a23, 0xb4295520, 0xc49801b4,
0x40056a02, 0x9694d084, 0x1f4088d5, 0x2d059263, 0x2d60976a, 0x50fe0d10, 0x0afe4a04, 0xdd82f601, 0x7ffe0026, 0xb6055605, 0x3a08dd82, 0x0207b173,
0x40f8ffb8, 0x48171446, 0x18895a02, 0x18101801, 0xb4011de0, 0xd41dc41d, 0x1d00031d, 0x07021d50, 0x0f1f1d1d, 0x00222221, 0x1f20235a, 0xc0259025,
0x0325f025, 0x821f250f, 0x080333f9, 0x02fb210f, 0x13031d5f, 0x1f130c60, 0x0012005f, 0x0184e13f, 0x5e2f012a, 0xd4105d5d, 0x39e13232, 0x8205356c,
0x335d2f0e, 0x2be15d38, 0x21303132, 0x030e2111, 0xbc7e0e07, 0x3636250c, 0x21371212, 0x2a05196b, 0x0f85fed9, 0x10212120, 0x184f3514, 0x2c120ab8,
0xd98fc3d0, 0x711205a5, 0x51d4ebf5, 0xf9b71867, 0x056e4c12, 0xe5820020, 0xfe104108, 0x04660483, 0x0018004a, 0x02384058, 0xe412d446, 0x12600212,
0x12a01270, 0x340412b0, 0x12120112, 0x1717160a, 0x15184700, 0x201a5514, 0x021ab01a, 0x08011a0f, 0x02fb160a, 0x0d0f1250, 0x1416074f, 0x8306e84a,
0x20d185d3, 0x25d186f4, 0x5d5d2f39, 0xca84e15d, 0xa0180220, 0xc4840ff8, 0xfefa0239, 0x5f4014fe, 0x311c5682, 0x371c1610, 0x12334559, 0x7ab65402,
0x18037bb7, 0x250f00a1, 0xe9fd50fc, 0xaf837d01, 0xfee53b08, 0x05f40400, 0x001b00b6, 0x052b404b, 0x0c141005, 0x1d65175a, 0xbf011dc0, 0x1d20011d,
0x5a0f1301, 0x0e1c6410, 0x01130f5f, 0x10131308, 0x10031115, 0x065f0912, 0x3f001c00, 0x5742e132, 0x10012208, 0x06eb46f6, 0x4332e121, 0x2e210633,
0x07d96502, 0x11211125, 0x82331123, 0x11332605, 0x02020e14, 0x078e66d1, 0xfdc6bb22, 0x2405c05b, 0xfec99252, 0x06826600, 0x02f7f023, 0x07c95b1f,
0xaaddfa25, 0x434fa2f8, 0x04230517, 0x824a043b, 0x406924a3, 0x8203031a, 0x473408a3, 0x001d5517, 0x021d201d, 0x1d401d30, 0x1dd01d50, 0x1d051df0,
0x40c0ffb8, 0x48110e28, 0x10470f13, 0x500e1c54, 0xa90113eb, 0x0213b913, 0x131f130f, 0x0603132f, 0x0f25bf84, 0x51071510, 0x8a4a8204, 0x1d4418bf,
0x5d2b2207, 0x86c88371, 0x060743c1, 0x35023e22, 0xa02ac18e, 0x2c2f694c, 0x5b3b4269, 0xa15a1f3d, 0x3fb62105, 0x2f088a66, 0x6996612d, 0x17feb201,
0x39fe4a04, 0xf3fbc701, 0x36068766, 0x057ffee5, 0x00b605b6, 0x4052000f, 0x03030232, 0x045a050d, 0x5d110001, 0xc020071a, 0x5d053350, 0x102f2b20,
0xe13232d4, 0x332f3932, 0x33253031, 0x5b132303, 0x332609d8, 0x8fc2f404, 0x1e5da6d9, 0x01002917, 0x83feae00, 0x4a04f204, 0x76318d82, 0x0e0d4f40,
0x4700080e, 0x0bab0c0f, 0x0b020bbb, 0x581c5d11, 0x5dd41022, 0x1c5db188, 0x20bc820c, 0x071c5d03, 0xb67bb723, 0x09eb5b7a, 0x2209a542, 0x4d7ffea6,
0x592a068f, 0x5a1d2140, 0x00161a1a, 0x824d195a, 0x0e30080c, 0x700b605a, 0xb00ba00b, 0xb80b040b, 0x1440c0ff, 0x0b480a07, 0x065f1116, 0x1b1a0c06,
0x1a5f1dfb, 0x030c1712, 0x3f333f00, 0x12113fe1, 0x33e12f39, 0x250b7e4d, 0x31e12f32, 0x3f4e2530, 0x0592490b, 0x11331123, 0x21018223, 0xf94ec703,
0xb0ba2411, 0x4eb001a6, 0x4a2414f7, 0x27027ffe, 0x4d05fb4e, 0x402a0675, 0x471b2540, 0x1c141818, 0x624d1747, 0x470d3308, 0x191d540a, 0x500f14fb,
0x1b0b0505, 0x15151850, 0x9e840f0b, 0xdf4e9c84, 0xf6102305, 0x9a8432e1, 0xd94e0120, 0x20988312, 0x13da4e33, 0x4ea0b621, 0xfb2514db, 0x0283feb6,
0x3d978217, 0x067ffec7, 0x00b605f2, 0xb69a001f, 0x39011f36, 0xb81f0100, 0x2c40f8ff, 0x1f480f0c, 0x05820800, 0x0d0d0029, 0x1209100c, 0x830e1313,
0x0e39340d, 0x151d0e01, 0x1011145a, 0xc0212021, 0x210f0221, 0x830b0801, 0x82102030, 0x0b263f2a, 0x08020b01, 0x2064095a, 0xb80c5f10, 0x1640f0ff,
0x00481209, 0x15030c09, 0x1efb1212, 0x46820101, 0x0e014824, 0xd982030a, 0x112b332a, 0x173f3f33, 0x01e12b33, 0x5d21d784, 0x07ad452b, 0x5d323223,
0x05b1452b, 0x3311392b, 0x312b332b, 0x215d5d30, 0x08546d01, 0x33012123, 0x05a44501, 0x11233908, 0x37023e34, 0x01233736, 0x45fe2303, 0x04040508,
0x1401ac06, 0x01069c01, 0xc314019e, 0xbaa6d990, 0x02020201, 0xfe080403, 0x4a000541, 0x398b3f49, 0xb60596fc, 0xa80458fb, 0x2a059f45, 0x3d197703,
0x471e4241, 0x4302fb49, 0x70080505, 0x4a04c705, 0x87002400, 0x07085a40, 0x20101818, 0x1e232322, 0x21244600, 0x20bf20af, 0xe0262002, 0x26cf0126,
0x40263001, 0xa0265026, 0x260f0426, 0x0f120601, 0x25541046, 0x3b01fb22, 0x5b0e4b0e, 0x0e0b030e, 0x0e2b0e1b, 0x1e0e0e03, 0x50200f11, 0x18441834,
0x05031854, 0x25181518, 0x10080318, 0x15000318, 0x32173f00, 0x3fe15d5d, 0x5d2f3333, 0x05b8505d, 0xf9823220, 0x435d5d21, 0x11210910, 0x38f88212,
0x21303133, 0x07030e11, 0x2e012301, 0x23112703, 0x1e013311, 0x033e1703, 0x06bb7137, 0x066f0422, 0x142da618, 0x06050e2f, 0x0d16130e, 0xb7d90e01,
0x037ab67b, 0x31a61881, 0x0554431f, 0x2b12b549, 0x04000000, 0x026907dd, 0x00240026, 0x2005b549, 0x05b54921, 0x051a0228, 0x1f000226, 0x87490415,
0x263d8208, 0x03ecff5e, 0x821706a1, 0x8244202d, 0x0206322d, 0x0000d436, 0x020b4013, 0x02261138, 0x0c333d25, 0x07b34922, 0x59852b82, 0x59872b20,
0x006a0022, 0x172c5983, 0x02030d40, 0x0326051e, 0x29150102, 0x95185b85, 0x5d8308fd, 0x19059c21, 0x2d287b14, 0x0000feff, 0xb6055606, 0x88000602,
0x9d850000, 0x04440623, 0x200f825e, 0x240f84a8, 0x030000c7, 0x20db84c8, 0x21db8528, 0xdb85fbff, 0x05110129, 0x16060126, 0x8a00010c, 0x827120af,
0x84e120db, 0x854820db, 0x19ea20db, 0x22164107, 0x82000200, 0x053e082b, 0x00cd0512, 0x0029001e, 0x242f4049, 0x670e5b1a, 0x8f2b0f2b, 0xbf2baf2b,
0x402b042b, 0x25480f0b, 0x6619035b, 0x2f5f252a, 0x7f195f19, 0x19190319, 0x135f1f09, 0x5f000313, 0x3f000409, 0x597133e1, 0x10012a06, 0x2be132f6,
0xe1f6105d, 0x05734a32, 0x564f3520, 0xa1471807, 0x35520809, 0x03032e21, 0x37023e32, 0x021e1421, 0xcf807902, 0x695a2a5b, 0xf4a04c7d, 0x9d5154a5,
0xd79996e8, 0xdb033e87, 0xa9734007, 0x6d955b43, 0xedfc0742, 0x058c5526, 0xaa202c29, 0x0a131a0f, 0xe9fec66c, 0xebfeaeab, 0xc46b68c2, 0x46ab1501,
0x4786c17a, 0x354f66fb, 0x447f2205, 0x20cb8200, 0x22f78266, 0x825e04d7, 0x272d08cb, 0x29404300, 0x05481122, 0x29b02957, 0x01293f01, 0x10194823,
0x50232856, 0x10af109f, 0x10df10cf, 0x00101004, 0x160a501f, 0x00511419, 0x20c58f10, 0x22c5875d, 0x4a021e32, 0x2e2b0553, 0x21353502, 0x22232626,
0x8207020e, 0x321322d7, 0x08c28436, 0x6ee7013a, 0x424983b6, 0x6366a778, 0x023b6e9e, 0x979a05b5, 0x4c505733, 0x514c2827, 0x85736057, 0x1b14fe0b,
0x5e045839, 0x87d28e4a, 0x4e95d688, 0x6eb58147, 0x0ab6c071, 0xa1121c13, 0x09220382, 0x834c25fc, 0x712a0809, 0x1205ecff, 0x26022b07, 0x0000e102,
0x6a000701, 0x52014600, 0x03b61900, 0x26053302, 0xffb80203, 0x3e2ab4d3, 0x01250e18, 0x6542352b, 0x21ef8408, 0x3382d905, 0x3382e220, 0x6a000624,
0x318400c4, 0x84113121, 0xb4f42531, 0x050f3c28, 0x0424318c, 0x81060000, 0xd94c6583, 0x20658205, 0x2c6582f4, 0x020d4017, 0x26051b01, 0x12000102,
0x05db4c26, 0x31826388, 0x83be0521, 0xd0012263, 0x21978500, 0x65830091, 0x11203082, 0xb8253082, 0x12b4ffff, 0x05e14c26, 0x48243388, 0xec03ecff,
0xb1206584, 0xff213385, 0x22cb84bf, 0x83430102, 0xffb82764, 0x4e3ab4f4, 0x998c0b13, 0x33824420, 0x67845220, 0x3386d120, 0x67865520, 0x67854320,
0x3382d920, 0x85051c6c, 0x01002267, 0x08678400, 0x00b60564, 0x40720020, 0x1b5b002d, 0x20205b1c, 0x48181040, 0x20201b1d, 0x0d031d1b, 0x67055b16,
0x01229f22, 0x0d800d70, 0x4f0d3f02, 0x030d5f0d, 0x5f1d200d, 0xffb81b1e, 0x071840f0, 0x191b480d, 0x780100aa, 0x000f0100, 0x00000801, 0x6013031e,
0x00130a0e, 0x3fe1333f, 0x5d5e2f39, 0x33335d5d, 0x32e1102b, 0x0a822f01, 0xe1f61023, 0x054e5c12, 0x10e11025, 0x4c3031e1, 0x44180b6f, 0x23310897,
0x35210135, 0xf4011521, 0x4784ba73, 0x89cd8843, 0x44bd186e, 0x7b21080a, 0xa6fda601, 0x3b033d03, 0x97643505, 0x74a06066, 0xaa2d2240, 0x0d182417,
0x81878794, 0xa6d10197, 0x23d38291, 0x0314fe1b, 0x08054563, 0x3e40643d, 0x201f4a00, 0x4024244a, 0x21481813, 0x1f24241f, 0x180d0321, 0x26570547,
0x269f266f, 0x01263002, 0x0701260f, 0x110c400d, 0x21240d48, 0x1d1f2250, 0x0c092000, 0x22000048, 0x4d50130f, 0x3924073a, 0x33332b2f, 0x2b20c384,
0xc59fd083, 0x08965218, 0x3e08c785, 0x7da85fa8, 0xba844749, 0x3ab57373, 0x665b4e1f, 0x56774736, 0x8b633730, 0x92016d54, 0x0603c6fd, 0x4107d501,
0x6e6ca675, 0x244984b7, 0x1f10a622, 0x572e0f18, 0x7d564e7d, 0x017d2752, 0x18859aed, 0x3d0731bd, 0x2602c106, 0x0000b201, 0x4d010701, 0x5201b000,
0x01b41500, 0x0126051a, 0xb4feffb8, 0x64181918, 0xae260c9b, 0x3b040000, 0x2f826f05, 0x2f82d220, 0x4d010624, 0x2d830039, 0x83110e21, 0xb4ff252d,
0x040a0d0c, 0x260ae944, 0x050000c9, 0x872b0710, 0x6a00235d, 0x69429c00, 0x42212006, 0x5f820569, 0x5f852c20, 0x82053542, 0x20618591, 0x226187d9,
0x42256a00, 0x152005cf, 0x82056742, 0x85202063, 0x24318863, 0x05ecff7d, 0x21658371, 0x9b423200, 0xaa002105, 0x2b053543, 0x05310203, 0x01020326,
0x000a3c28, 0x250ccd42, 0x04ecff71, 0x6382052d, 0x43520021, 0xf9200599, 0x20059943, 0x05994329, 0x20b4f923, 0x84318e34, 0xcd052a63, 0x7e020602,
0xffff0000, 0x21418400, 0x0f825e04, 0x0f847f20, 0x1f838388, 0x82070121, 0x298386e9, 0x05330304, 0x01030426, 0x518e3e2a, 0x02208388, 0x01214182,
0x28318206, 0x40170000, 0x2b03040d, 0x222f8211, 0x8e362200, 0x823b202f, 0x834420b3, 0xc70121e5, 0x6182b382, 0x4197ff21, 0x2e20064b, 0x25054b41,
0x3925b4a6, 0xe78c0c04, 0xecff3724, 0xe7834203, 0x86e70121, 0x43382033, 0x302006b5, 0x25054d41, 0x3b27b4ca, 0x338c2203, 0x67821920, 0xc106ae26,
0xbd012602, 0x01233383, 0x4227004d, 0x24210511, 0x05114205, 0x13232222, 0x2a0bcd46, 0x0314fe0a, 0x026f05df, 0x425c0026, 0xbb2d0511, 0x40130000,
0x1125010b, 0x23010126, 0x47f61824, 0x845b840c, 0x825b84c3, 0x861220f3, 0x852b20c3, 0xb4fd23c3, 0x5d853622, 0x1908dd41, 0x28101713, 0x170000a7,
0x01020d40, 0x22c2832c, 0x85372301, 0x852f8861, 0x88732063, 0x005322bf, 0x050d4266, 0x2e010222, 0x51206483, 0x06216195, 0x21c18821, 0x61860053,
0x61832f20, 0x61905a20, 0x0000a623, 0x05a54504, 0x5541c120, 0x54002105, 0x1f206187, 0x0f226183, 0xbb412a16, 0x009a260e, 0x05fe0300, 0x209382d9,
0x233182e1, 0x066a0006, 0x22206186, 0x08246183, 0x0a172d19, 0x4b098341, 0x4b080543, 0xb605be03, 0x64000900, 0x00140b40, 0x0100e401, 0x020100d0,
0xc0ffb800, 0x13083540, 0x0b000048, 0x0b4f0b2f, 0x0b8f0b6f, 0x11400b04, 0x5a074818, 0x04cf04bf, 0x01048402, 0x041f040f, 0x04040702, 0x64085a03,
0x095f020a, 0x075f0303, 0x2006f85c, 0x051a4b3f, 0x5d5e2f34, 0x2be15d5d, 0x2f33115d, 0x5d5d5f2b, 0x01303171, 0x8a4c2115, 0xfdbe2e07, 0xbab0b0c3,
0xfba6b605, 0x01d9fd96, 0x28838281, 0xfeae0001, 0x040a0383, 0x268d824a, 0x2032404e, 0x82023002, 0x0b2a0800, 0xa1010bc0, 0x0b70010b, 0xbf470901,
0x0206cf06, 0x0f010684, 0x02061f06, 0x05060607, 0x0a540047, 0x15095005, 0x5004fb08, 0xa6750f01, 0x10012405, 0x8532e1f6, 0x056d5d7a, 0x30315d25,
0x86211133, 0x02ae2879, 0xa05afe5c, 0x634a04b6, 0xff2d0688, 0x00c700ff, 0x07cf0500, 0x0126022b, 0x066541c5, 0x6541fc20, 0x03042b05, 0x04260527,
0x321e0003, 0xb9421c06, 0x82ae200c, 0x05502231, 0x203182d9, 0x203186e5, 0x05c941b0, 0x11203182, 0x0a213185, 0x2a318c0d, 0x036dfe2f, 0x02b605be,
0x839b0226, 0x80032331, 0x3182a600, 0x01b30a2a, 0x01071f1f, 0x35113c10, 0x12208782, 0xfd822382, 0x9c202382, 0x81222384, 0x23878900, 0x23870d20,
0x6dfe002a, 0xb6059a04, 0x3b002600, 0x80222384, 0x23822303, 0x01b11735, 0xc0ffb81d, 0x481513b2, 0xb49effb8, 0x00001d1d, 0x542b0125, 0x23200595,
0x11223182, 0x31824a04, 0x31845b20, 0x9a028122, 0x12283182, 0x1d5001b3, 0x9affb801, 0x07212c82, 0x212c8207, 0xbb63355d, 0x82602006, 0x1133085d,
0x2740b200, 0x0f560f46, 0x59094902, 0x00360209, 0x01063901, 0x000f0906, 0x03030c04, 0x01113001, 0x0701073f, 0x05110711, 0xb80a0b01, 0x0ab3f0ff,
0x8205040a, 0x14403407, 0x100e0d05, 0x01020e0e, 0x01010010, 0x01800170, 0x820301c0, 0x40c02864, 0x480a0727, 0x50130101, 0x7f3a05c0, 0x00080413,
0x090f5f06, 0x27010328, 0x0c03010c, 0x0109090a, 0x05030a0d, 0xd8701201, 0x112f2b06, 0x5d5d3939, 0x32e13311, 0x06825e01, 0x2205b161, 0x83382f33,
0x25038302, 0x39391211, 0x21822f2f, 0x2f3d3926, 0x5d331733, 0x31240082, 0x23010130, 0x21250283, 0x33012135, 0x26028201, 0xc5021521, 0x61d39b01,
0x9a2605a9, 0x1401dffe, 0xad6192fe, 0x8e400806, 0xb4021c01, 0x7b024cfd, 0xb40285fd, 0xfd5e02a4, 0xfd2f02d1, 0x0100a4a2, 0x00002300, 0x4a04db03,
0x17011100, 0x0880bf40, 0x08020890, 0x0b000800, 0x0105060f, 0xe50105f7, 0x05360105, 0x07060501, 0x9508f082, 0x1010010d, 0x0103090d, 0xea0103f8,
0x03390103, 0x6b020301, 0x02067b06, 0x3a010657, 0x02064a06, 0x02740264, 0x01025802, 0x02450235, 0x0d020602, 0x03060d02, 0x010c060f, 0xe5010cf7,
0x0c36010c, 0x400b0c01, 0x0b481916, 0x48110e40, 0x0b7b0b6b, 0x010b5702, 0x0b4a0b3a, 0x130b0b02, 0x13301310, 0xb0139002, 0x130f0213, 0x010e0901,
0xea010ef8, 0x0e39010e, 0x0f6b0e01, 0x58020f7b, 0x0f35010f, 0x0f020f45, 0x4f100a0d, 0x01ef0704, 0x1b010b01, 0x5b012b01, 0x9c826b01, 0x02010128,
0x05150b0f, 0x4c410f02, 0x5d5e2607, 0xe133335d, 0x05bd4832, 0x5d5dc124, 0x0282715d, 0x2fce1022, 0x2b210982, 0x250f842b, 0x3d391712, 0x9461182f,
0x84102007, 0x33112113, 0x04820183, 0x72410e86, 0x30312305, 0x8e612113, 0x15212205, 0x06704121, 0x01685f08, 0xcfcffe00, 0xfecffafa, 0xfe0401cd,
0xcf4a01f7, 0xf2fef4fe, 0xfe4a01cf, 0x017b02fb, 0x0166fecf, 0x8931fe9a, 0xb4010efe, 0xf2014cfe, 0x00020000, 0x03000089, 0x00b605f6, 0x0019000e,
0x06294040, 0x65095a19, 0x011b9f1b, 0x15011b10, 0x1a66005b, 0x063f5f0f, 0x066f064f, 0x06bf069f, 0x008206df, 0x5f190728, 0x03071209, 0x634c3f00,
0x4be12009, 0x1324079c, 0x33023e34, 0x1125a782, 0x022e2221, 0x05d36a01, 0x33162e08, 0x7f378933, 0xbb9598cf, 0xc28695fe, 0xb2023c7e, 0x5b8a5d81,
0x9fafa32e, 0x9857ac01, 0x68024271, 0x703d4afa, 0x1b5f019e, 0x8846613c, 0x07674784, 0x14060227, 0x47000602, 0x23a38400, 0x3b06ecff, 0x2108a382,
0x00320023, 0x183f4063, 0x1a5a3209, 0x5a22111a, 0x0f346501, 0x346f0134, 0x34ef349f, 0x50344003, 0x0e820234, 0x2a063308, 0x3366115b, 0x23175f24,
0x4f173f23, 0xbf176f17, 0x0517df17, 0x03181717, 0x09602d1d, 0x00130e06, 0xe133333f, 0x2f393f32, 0x102f335d, 0xf61001e1, 0x69185ee1, 0xe12f09e2,
0x30313239, 0x0e141101, 0x26222302, 0x18030e27, 0x83075647, 0x161428d4, 0x023e3233, 0x87051135, 0x080d83d8, 0x2d3b0653, 0x725e8c5b, 0x3f182b99,
0xd73f6752, 0xd78a41e4, 0x67bb7a96, 0x33482c61, 0x81bafd1c, 0x2d5b8b5d, 0x5b43867e, 0x50031738, 0x8b5118fe, 0x4d613a66, 0x192e3f26, 0xa367d6d2,
0x68023c72, 0x6970b2fb, 0x3250391e, 0x1ea6e801, 0x804d6b43, 0x4d3e2582, 0x20f38329, 0x22f38271, 0x8214065a, 0x433d08f1, 0x39405c00, 0x47382c10,
0x2e012e50, 0x47031b2e, 0x6f455506, 0x9f457f45, 0xef45cf45, 0x45400545, 0x2f450f01, 0x41060245, 0x44561b48, 0x3e330404, 0x10202550, 0x3300002c,
0x160b1050, 0x22ed8616, 0x18e1333f, 0x21082e4e, 0xf3825d5d, 0xff821120, 0x3932e12a, 0x32253031, 0x33113536, 0x2e23f185, 0x52232702, 0x3a6b0616,
0x33172506, 0x26262726, 0x1e222083, 0xef822103, 0x35373708, 0x23022e34, 0x14150622, 0x6fd30416, 0x5c2fb662, 0x67415b8b, 0x06173d51, 0x795b441b,
0x6e9a5d51, 0x9a6e3c3c, 0x4d603b5d, 0x030c173b, 0xb6040203, 0x512c0f01, 0x7e7ea6fd, 0x7f873e08, 0x8282837f, 0xc1fe3501, 0x2e629869, 0x2c4a361e,
0x20374a29, 0x8cd48f48, 0x4990d58d, 0x05937e1a, 0x11366d08, 0x92fbb401, 0x2d4e6a3e, 0x5f8c5e2e, 0x6b9d6529, 0xd1ccda37, 0x010000cd, 0xecff4e00,
0xcb054406, 0x85003f00, 0x5b0d5640, 0x2b5b0020, 0x20072025, 0x07202b2b, 0x5a331603, 0x7f416536, 0x9f418f41, 0xff41ef41, 0x41000541, 0x41304120,
0x80167003, 0x163f0216, 0x1602164f, 0x06254016, 0x34000760, 0xdf343401, 0x07aa0107, 0x01077801, 0x2805006b, 0x3b5f301b, 0x60121513, 0x09404f1b,
0x825d5e21, 0x2f332700, 0x39e1105d, 0x07820111, 0x2705714c, 0x2f391711, 0x39122f2f, 0x2706724c, 0x23022e34, 0x32333523, 0x2106a54b, 0xaf180622,
0x07230bc9, 0x7f031e15, 0x644106a9, 0x033a080a, 0x92653529, 0x5cb0bf5d, 0x2532618e, 0x6e3a5f44, 0x265c4ba9, 0x47837462, 0x3971a66d, 0x4b7d5b33,
0x325e8a57, 0x374f3218, 0x38b7626f, 0x57599166, 0x013c6c94, 0x466d4d87, 0x5d189721, 0x74080ad5, 0x1829361f, 0x4f856136, 0x3958774a, 0x390b060c,
0x4a487759, 0x771e4168, 0xfec90181, 0x6298692d, 0x9c642f2e, 0x00010000, 0x05ecff50, 0x005e04a2, 0x4081003b, 0x00471523, 0x36314620, 0x31001931,
0x00311919, 0x47082703, 0x0f3d550b, 0x3dd0013d, 0x013dbf01, 0x27013d30, 0x40c0ffb8, 0x48151229, 0x2701275f, 0x19363c27, 0x09091a50, 0x99011adf,
0x021aa91a, 0x06907d0b, 0x2326052e, 0x05102c50, 0x00161050, 0xe13fe13f, 0x23056673, 0x2f335d5d, 0x20072a41, 0x0752432b, 0x2f391725, 0x41112f2f,
0x1423082d, 0x4233021e, 0x35220c70, 0x3e412634, 0x23262108, 0x31113d41, 0x31155203, 0x60693b50, 0x8f5f2fb6, 0x64905c60, 0x5d188535, 0x28360c3b,
0x355a524d, 0x3a699056, 0x2b46331c, 0x223c5332, 0x49274c01, 0x61422138, 0x542b2309, 0x5d184f7b, 0x13240b10, 0x2609131d, 0x088bbb18, 0x3e290939,
0x01000052, 0x7ffe4e00, 0xcb059c04, 0x83003100, 0x5b0f5440, 0x82220927, 0x184a0801, 0x2e705a01, 0x2e022e80, 0x2f5a002e, 0x3300332f, 0xd033c001,
0x339f0233, 0x20330001, 0x03333033, 0x18801870, 0x4f183f02, 0x18180218, 0x27fb3032, 0x09df6008, 0x0109aa01, 0x0f010978, 0x09080109, 0x14170109,
0x2e041d60, 0x4f5a015f, 0x07264105, 0x39e15d23, 0x0750423f, 0x11715d36, 0x32e12f33, 0x12e15d2f, 0x2f2f3939, 0x31e13912, 0x11232130, 0x29215542,
0x23113315, 0x38bbec03, 0x49429567, 0xb0b0271f, 0x6443a001, 0x3c422041, 0xfdfa381e, 0x000100d9, 0x0383fe50, 0x005e04f2, 0x408d002d, 0x1d460c1a,
0x82061d22, 0x13230801, 0x29294700, 0x2a20472d, 0x2a402a30, 0x2a042a60, 0x40c0ffb8, 0x48130f0e, 0xc02f2a2a, 0xe02fd02f, 0x8313032f, 0x2d2a0812,
0x5f481512, 0x13130113, 0x22fb2b2e, 0x06df5005, 0xa9069901, 0x064f0206, 0x0b02065f, 0x02061b06, 0x00060607, 0x18500f12, 0x925a2910, 0x08144107,
0x1441e920, 0x05a44a06, 0x32e15d23, 0x0712412f, 0x31e11025, 0x42112130, 0x15281e28, 0x23113315, 0x819c0211, 0x29191f42, 0x263f522c, 0x2b01b7a0,
0x5f18655e, 0x0f420920, 0x2c0e250d, 0x913d5b42, 0x0807c75a, 0xe9ff0077, 0xb605ec06, 0x92003100, 0x06d76540, 0x060206e7, 0xd7010107, 0x0201f701,
0x171c5a01, 0x48181010, 0x1701178b, 0x480e0710, 0x5a311c17, 0x011eb01e, 0xb4011ce0, 0xd41cc41c, 0x1c00031c, 0x1c901c50, 0x07041ca0, 0x1e1c1e1c,
0x275a240e, 0x334f3365, 0x337f336f, 0x33af339f, 0x200633df, 0x330f0133, 0x25250e01, 0x1c5f0112, 0x60122103, 0x00130b2c, 0x32e1333f, 0x20f7823f,
0x07df502f, 0x39391122, 0x2f060862, 0x3311e110, 0x102b5d2b, 0x32715de1, 0x0130315d, 0x20187b5c, 0x47821814, 0x020e2708, 0x022e2223, 0x885c0335,
0x6e63211e, 0x22076844, 0x5c3a6892, 0xfb231a91, 0x447781d1, 0x4d08095e, 0x6c99602c, 0x00010000, 0x06ecff10, 0x004a0400, 0x405c0028, 0x11460139,
0xa0134728, 0x11db0113, 0x0111c401, 0x11a01190, 0x01112402, 0x11011110, 0x09131113, 0x551e471b, 0xcf2a7f2a, 0x032aef2a, 0x0c1c1c09, 0x0f115001,
0x234f0c18, 0xf98c1606, 0xe1f61022, 0xac6af784, 0x06684505, 0xa05c2120, 0x114d4411, 0x4414ae5c, 0x91220b41, 0xb95c3666, 0x3dfd2510, 0x20416241,
0x23093344, 0x6996622e, 0xc728d983, 0x2d07ecff, 0x1d00b605, 0x3724d982, 0xa05a131b, 0x3108ed82, 0x5a061700, 0xc01f6509, 0x1faf011f, 0x20021fbf,
0x1f0f011f, 0x5a161a01, 0x151e6417, 0x07071a5f, 0x08011a0f, 0x1c171a1a, 0x12170318, 0x130e5f03, 0xd25c3f00, 0x076e4808, 0xd6833220, 0x22088247,
0x41013031, 0x1c5c10b0, 0xd5043709, 0x636e6f62, 0x906638b6, 0x68915859, 0xba66fd3a, 0xba9a02ba, 0x88418701, 0x2d01210f, 0x080bab78, 0x06ecff37,
0x004a048b, 0x406c001f, 0x471a0247, 0x0d1e0505, 0x21551047, 0x21202100, 0x50214002, 0x90218021, 0xf021b021, 0x210f0621, 0x471d0101, 0x1c20541e,
0x0e0e0150, 0xc1bd18eb, 0x031e2910, 0x151e0f1f, 0x1615500a, 0xe745c78a, 0x5d012005, 0x7120059f, 0xe121c885, 0x5dc78232, 0xe145058f, 0x21353b10,
0x01112311, 0xb6210264, 0x3b503115, 0x2fb65f6a, 0x5b608f5f, 0xfd366692, 0xd35cb6df, 0x13804105, 0x17fe6e22, 0x3808c282, 0x7d000100, 0x5205ecff,
0x2a00cb05, 0x29404700, 0x290c2a2a, 0x4014015b, 0x14480e09, 0x2c670114, 0x70012cbf, 0x5b1f012c, 0x2a2b660c, 0x2400005f, 0x11155f1a, 0x075f2404,
0x25af8313, 0x3912e133, 0xa883e12f, 0x105d5d27, 0x2b2f32e6, 0x82108310, 0x152121a8, 0x0ca15e18, 0x32332427, 0x2e071716, 0x05d74903, 0x021e5408,
0x023e3233, 0x17032135, 0x8e423b02, 0xf29d9cde, 0xb65f56a6, 0x6fab0b01, 0x244858cc, 0x2e5d5853, 0x427fbc7a, 0x75ab7036, 0x295d956c, 0xf60288fe,
0xfefea856, 0xc3695baf, 0xacae1701, 0x69c31601, 0x11a22a2c, 0x510e171e, 0x8289da98, 0x42569cd8, 0x8264a677, 0xff7131c7, 0x047b04ec, 0x0028005e,
0x285a4081, 0x47270c28, 0x0c21c782, 0x08c78311, 0x142a574b, 0x022a242a, 0x2af42ae4, 0x012ad002, 0x502a4002, 0xa02a802a, 0x052ac02a, 0x560c481d,
0x00502829, 0x48191540, 0x00db00cb, 0xa90300eb, 0x0200b900, 0x009f008f, 0x1b000b02, 0x03002b00, 0x22000006, 0x11155018, 0x07502210, 0x21f88816,
0x00825d5e, 0xfe852b20, 0x5d5d5f23, 0x0f014171, 0x21061c44, 0xef823e34, 0x4957fe82, 0x05ac4805, 0xfe823e20, 0x7b024508, 0x78390002, 0xcb8781ba,
0x954c4488, 0xad6f8fdb, 0x943c3e4d, 0x6595615b, 0x87562934, 0x4a74515e, 0x02b8fe23, 0xc882444a, 0x934f4789, 0xd38284d3, 0x27255094, 0x3a291d8d,
0x5d629d6d, 0x2d3e709b, 0x00447050, 0x1420f782, 0x3508f782, 0x00b605c9, 0x40650019, 0x095a062f, 0x1b4f1b65, 0x1b9f1b7f, 0x00041baf, 0x18af011b,
0x840218ef, 0x18180118, 0x40135a00, 0x150f0115, 0x15150801, 0x13671357, 0x53461377, 0x07102c05, 0x1913480a, 0x07165f15, 0x43031607, 0x39210752,
0x053f552f, 0x490a9074, 0x4e43059d, 0x21352a15, 0x71022115, 0x626e6f62, 0x054a43b7, 0xfe3a6927, 0xfefe035e, 0x1149435f, 0x6d950321, 0xb58205df,
0x046f3c08, 0x001b004a, 0x0d4a406d, 0x1d551047, 0xcf011d0f, 0xff1def1d, 0x1d30031d, 0x1d601d40, 0x1f1d0f03, 0x030f021d, 0x0103cc01, 0x03bf030f,
0x03030602, 0x601a4705, 0xd0007000, 0x821f0300, 0x00003df9, 0x021a101a, 0x010e0e1a, 0x1615500a, 0x01500004, 0xe13f000f, 0x11e13f32, 0x2f012f39,
0x4a75ba82, 0x5d5e2305, 0x2e49715d, 0x30312206, 0x20aa8313, 0x11d84411, 0x0329113a, 0x15c1fe35, 0x693b5031, 0x5f2fb75f, 0x925c608f, 0xb0033666,
0xd7fd9a9a, 0x2111bc44, 0x7d823502, 0xc1826f20, 0x050c4308, 0x003900cb, 0x5b13b45d, 0xb8001a34, 0x2e40c0ff, 0x00481a17, 0x2f1a001a, 0x3b270a0a,
0x20013b9f, 0x3a662f5b, 0xaa601b34, 0x18780118, 0x01180f01, 0x05181808, 0x2a266023, 0x0b600e13, 0x3f000405, 0x0282e133, 0xa482af82, 0x39e15d34,
0xe1f61001, 0x32ce105d, 0x3939122f, 0x122b2f2f, 0xb182e139, 0x023e3426, 0x021e3233, 0x210c7f77, 0x244d1533, 0x79362008, 0x2e22050e, 0x28823502,
0x35376308, 0x3b9c032e, 0x486da973, 0x265a697b, 0x67a24b5c, 0x26445f39, 0x5782572c, 0x925dbfc3, 0xa4aa3565, 0x5353cc6c, 0xc38080c0, 0x5f314283,
0x784a5789, 0x60042d54, 0x3661854f, 0x1f362918, 0x1e43367d, 0x3e36533a, 0x97274864, 0x43654321, 0x2b318e89, 0x3c2526aa, 0x48609c6f, 0x0b3d5e7b,
0x58390c06, 0xfb820077, 0xecff5c30, 0x5e046a03, 0x6d003700, 0x1e4632b4, 0xfb832301, 0xfb823d20, 0x01233908, 0x2b180123, 0x39d0390f, 0x39f039e0,
0x01398f03, 0x05013940, 0x38561847, 0xef50021d, 0x37a90137, 0x0f0237b9, 0x2f371f37, 0x37060337, 0x502f0a37, 0x0a10282c, 0x16130f50, 0x20060a41,
0x05845812, 0x25060a41, 0xce105d5d, 0x0b411132, 0x15012409, 0x43062223, 0xf78f0743, 0x3321ff83, 0x066a4332, 0x83082585, 0x8a819e02, 0x60462985,
0x57613337, 0xaf3c1e4d, 0x6ba26e73, 0x59432835, 0x35492b30, 0x90693a1e, 0x50a25a56, 0x47834b3f, 0x44266d66, 0x8702395f, 0x335e5b99, 0x0e122a45,
0xa2101e16, 0x5630281d, 0x5b3d4778, 0x0b0d2940, 0x4d3b290e, 0x4a6d4632, 0x93272526, 0x4d4d2622, 0x1227402d, 0x00ffff00, 0x056dfe00, 0x02b6052f,
0x00b50126, 0x03070100, 0x00b80380, 0xb40d0000, 0x31310101, 0x3c100100, 0x35003511, 0x10262783, 0x4c046dfe, 0x27824a04, 0x2784d520, 0x82028121,
0x21278407, 0x278b2626, 0x98fe0026, 0xbc05dd04, 0x2208cf5d, 0x82d30467, 0x40132a4f, 0x1418020b, 0x15000227, 0x0dcf5d1b, 0x1898fe21, 0x220cc384,
0x866f0467, 0x1736262d, 0x330d0227, 0x12d15d39, 0x5b88e120, 0xd1046622, 0x26054f5d, 0x26051b02, 0x5e2a2102, 0x9c22112b, 0x2d828f06, 0xb1834420,
0x04660223, 0x255b8675, 0x02261139, 0x2d5e4836, 0x87d12013, 0x7703235b, 0x5b82cb04, 0x03b6192d, 0x26051502, 0xffb80203, 0x861db4ff, 0x0853565f,
0xecff5e26, 0x7f064704, 0x33826187, 0x59548920, 0x02032305, 0x34821133, 0x863b3321, 0x82318863, 0xdd04221e, 0x20658907, 0x20658878, 0x2165871d,
0x955e1d25, 0xff12240e, 0x8a9c03ec, 0x04782165, 0x3b206588, 0x43216584, 0x0525413b, 0x0821658d, 0x20cb884a, 0x22cba679, 0x88f80606, 0x897920cb,
0x21cb9b65, 0x65886208, 0xcba27a20, 0xcb835e20, 0x88100721, 0x8e7a2065, 0x410b20cb, 0xfe251131, 0x07dd0498, 0x2a658573, 0x4b012700, 0x52011f00,
0x42020701, 0x25310557, 0x2d031040, 0x15022714, 0x00032605, 0x0704302a, 0x0ca94125, 0x00352b24, 0x5955352b, 0xfe5e2605, 0x069c0398, 0x25798521,
0x4b012600, 0x458400d4, 0x00006f2b, 0x16402200, 0x27174b03, 0x27e88302, 0x0c4e480d, 0x25022522, 0x42868887, 0x82ffff21, 0x04002427, 0x881308dd,
0x847b20ef, 0x401725ef, 0x2602030d, 0x02237e82, 0x41212900, 0xed840eb9, 0x88c10621, 0x047b22ed, 0x071f427b, 0x26114427, 0x471e0203, 0x14b9413f,
0x7c206389, 0x7c2063b0, 0x582063a6, 0x7d20c788, 0x1a206389, 0xe742c784, 0x9c032313, 0xc7880607, 0x63897d20, 0xc7843820, 0x2311b541, 0xdd040000,
0x200a1b42, 0x4263a67e, 0x7e200919, 0x5021638f, 0x0f2b415e, 0x0498fe25, 0x425b07dd, 0x4e240819, 0x6d012100, 0x27081942, 0x03164022, 0x0227142e,
0x0026d283, 0x0704312b, 0x4c620225, 0x09d34108, 0x98fe5e26, 0xee059c03, 0x20081542, 0x0e15424e, 0x27174c23, 0x22e28302, 0x824f490d, 0x1e02217d,
0x89076262, 0x82c72041, 0x05be2241, 0x214182b6, 0x51420028, 0x44aa2005, 0x01270565, 0x0127140f, 0x61120c03, 0x2d820de3, 0x5e04e122, 0x48202d82,
0xbe202d86, 0x02212d85, 0x2469822b, 0x052e2830, 0x0a275d0f, 0x0000c726, 0xe107be03, 0x66225b88, 0xef449104, 0x12012605, 0x0d012605, 0x133f6221,
0x5b888f20, 0x98046622, 0x2e265b86, 0x2d022611, 0x5b92283d, 0x5b873520, 0xff520123, 0x235b82d4, 0x1401b415, 0xb8255a82, 0x15b4fbff, 0x25b98d23,
0xe103ecff, 0x5d86e305, 0x5201062a, 0x130000de, 0x30020b40, 0x1e225b82, 0x5b8f3f31, 0x075c0423, 0x235b87d1, 0x9e047703, 0x19245b82, 0x0c0102b6,
0x2007cf5b, 0x44bb8614, 0x712008b3, 0x24084b45, 0x01000048, 0x0b4b4507, 0x26112825, 0x19030203, 0x8807bb35, 0x00272431, 0x8abe0300, 0x88782065,
0x27c28265, 0xffb80102, 0x141cb4fd, 0x3388c385, 0xc5831220, 0x867f0621, 0x030721c5, 0x820a4b45, 0x216582c8, 0xc9853038, 0xc7263188, 0x1b040000,
0xcb884a08, 0xcba67920, 0x85054b45, 0x0a4b45cb, 0x6582cb96, 0x08be0323, 0x20658862, 0x20cba27a, 0x21cb8371, 0xcb881007, 0x970a4b45, 0x98fe25cb,
0x7307be03, 0x00256585, 0xff4b0127, 0x064b45f1, 0x0000aa3a, 0x10402500, 0x27142402, 0x26050c01, 0x27210302, 0x01250001, 0xb4fdffb8, 0x4507a941,
0x71200a4b, 0xe1224782, 0x79852106, 0x01260024, 0xf942de4b, 0x40222709, 0x17400316, 0xe8830227, 0x433d1c25, 0x41250f05, 0x354309ba, 0x00522609,
0x07640200, 0x214182e1, 0x3b83002c, 0xb0036622, 0x200ad942, 0x0ed94213, 0x23826220, 0x8f06d722, 0xf3202d82, 0x5e202d86, 0x132aaf82, 0x0a010b40,
0x13012611, 0xa9420419, 0xfe52260c, 0x05640298, 0x225b88b6, 0x82be0367, 0xb415232d, 0xdc820f01, 0xffffb823, 0x0e9343b4, 0x98fe9e26, 0xe5057501,
0x4c202f82, 0x67225d84, 0x2f846d03, 0x82150221, 0xffb827c6, 0x1812b4fe, 0x95430c04, 0xfe7d260a, 0x05710598, 0x202f82cd, 0x212f8532, 0x8d855c05,
0x142b0228, 0x28000227, 0x075f0a2e, 0xfe71260b, 0x042d0498, 0x822d825e, 0x070125f3, 0xb2046702, 0x23205d85, 0xff235d84, 0x8c2620b4, 0x0531602f,
0x5d88e120, 0x4e056622, 0x27051941, 0x26052e02, 0x283d1502, 0x71262d8c, 0x2d04ecff, 0x5d888f06, 0xa4046622, 0x26268b86, 0x13022611, 0x2d8c2035,
0xd1205b85, 0x03235b87, 0x5d580577, 0x0328053b, 0x26052802, 0x30050203, 0x95435d86, 0x0668220c, 0x235f877f, 0xaa047703, 0x19255f82, 0x200203b6,
0x24308211, 0xb4faffb8, 0x61638628, 0x65890e77, 0x65897820, 0x65843020, 0x5f303821, 0x33200e07, 0x6589c584, 0x65887820, 0x65872820, 0xcb849990,
0x884a0821, 0xa47920cb, 0x062d22cb, 0x20cb88f8, 0x21cba779, 0x65886208, 0xcba07a20, 0xcb837120, 0x88100721, 0xa37a2065, 0x98fe25cb, 0x73077105,
0x00256585, 0x004b0127, 0x059743ae, 0x005c0522, 0x2d059d48, 0x02271440, 0x03260528, 0x0a433d00, 0xa8412500, 0x09514309, 0x98fe7126, 0x21062d04,
0x00247785, 0xfb4b0126, 0x20059343, 0x314182b2, 0x03094028, 0x02271738, 0x03261120, 0xb5ffffb8, 0x44833b35, 0x890bbc41, 0xff7d2447, 0x832506ec,
0x5f02228b, 0x23418200, 0x06017600, 0x28067f42, 0x02260541, 0x133b3502, 0x0db36801, 0x83f40421, 0x60022175, 0x06342d82, 0x00507600, 0x02b41500,
0x0226113a, 0xb4ebffb8, 0x190a332d, 0x5b8f2d8a, 0x54004322, 0x2f825b82, 0x5a823520, 0x51ffb825, 0x9c353bb4, 0xd843215d, 0x2e205d84, 0xd7235d84,
0x422d34b4, 0xb9820fdd, 0x2602e122, 0x0220b985, 0x23053943, 0x3c02b415, 0xbc225d84, 0x5d934ab4, 0x2f828f20, 0x0721bb83, 0x053b4302, 0x34202f82,
0xb0235f84, 0x922d42b4, 0x873520bd, 0x20b9825f, 0x20bd857d, 0x235f843d, 0x4c3eb496, 0x0521bd91, 0x235f86e3, 0xe2520106, 0x2d20bd84, 0xfd235d84,
0x8d4436b4, 0x98fe25bd, 0x14062506, 0x6723bd88, 0x84005c05, 0x1438272f, 0xffb80227, 0x7941b4a7, 0x98fe250f, 0xf204f404, 0x5744bd88, 0x17302108,
0x9b202f83, 0x200f7b41, 0x2e2f82b8, 0x02b805dd, 0x00380026, 0x02070100, 0x442f0567, 0x01280529, 0x0127141b, 0x0b1e1800, 0x200bb544, 0x222d82a4,
0x824a0408, 0x8558202d, 0xb804212d, 0x012b8d84, 0x0127171e, 0xb4feffb8, 0x410c211b, 0xb8260bd9, 0xdd04ecff, 0x5d88e107, 0x1d056622, 0x27053542,
0x26051e01, 0x182d1101, 0x2d825d8d, 0x8f060822, 0x66225d88, 0x8b86a604, 0x26112126, 0x1b300e01, 0x06235b8f, 0x8273074e, 0x426120e9, 0x00210591,
0x235b82c5, 0x3101b415, 0xb8275a82, 0x25b490ff, 0x4208182b, 0xa4260a65, 0x7905ecff, 0x2f822106, 0x2f826220, 0x76000628, 0x11000060, 0xb68201b1,
0x28b49f25, 0x84210c2e, 0x0035272a, 0xb800ffff, 0x598cecff, 0x3d004322, 0x25205985, 0x08235984, 0x9c252bb4, 0xa3432159, 0xfe245986, 0x282eb4e2,
0xe1205991, 0x0220b387, 0x85050f41, 0xb4592285, 0x8456873a, 0x20af8585, 0x21af868f, 0x0d410207, 0x222b8505, 0x923db456, 0x87352057, 0x491e1957,
0x842d2009, 0xb44723b1, 0xb1913c2e, 0x86e30521, 0x0106235b, 0xb186f352, 0xb44eff24, 0xb18c3f31, 0x0698fe25, 0x8814064e, 0x051f42b1, 0x01b41529,
0x01271428, 0x4148ffb8, 0xfe251065, 0x04790598, 0x20b588f2, 0x07214267, 0x83172b21, 0x4145202f, 0x7f4d096a, 0xfe002a05, 0x05370498, 0x002602b6,
0x0651423c, 0x51427f20, 0x840c2005, 0xb4ff255f, 0x02070f09, 0x260ac541, 0x0314fe0a, 0x654a04df, 0x0724067d, 0x8b056702, 0x11292f82, 0xb80101b1,
0x23b43201, 0x05de6529, 0x82059b50, 0x37042318, 0x5b88e107, 0x71046622, 0x26067d42, 0x0126050f, 0x91091e14, 0x8f062159, 0x66225988, 0x7d424a04,
0x11292106, 0x38212d82, 0x0c9b6623, 0x35205b85, 0x01235b87, 0x86b3ff52, 0x8211205b, 0x1201225b, 0x215b9120, 0x3366e305, 0x8c522808, 0x40130000,
0x822b010b, 0x2c012259, 0x26598c3a, 0x04bcfe71, 0x8214069e, 0x00d3282b, 0x00070100, 0x82b40042, 0x0e56086c, 0xff0200b9, 0x393ab4d2, 0x0125230b,
0x0200352b, 0xd904dbfb, 0x2106bafe, 0x1b000d00, 0x19402d00, 0x070e0e14, 0x01005040, 0x004f003f, 0x07150002, 0x0f0f8092, 0x02015f01, 0x5d2f0001,
0x32ed1a33, 0x5d5d2f01, 0x2f39cd1a, 0x013031cd, 0x27032e23, 0x031e3335, 0x09880517, 0x64bafe32, 0x3f4d5123, 0x2a10c610, 0xfe15302f, 0x52236496,
0xc7200d82, 0x042d0d84, 0x58531cd9, 0x23151b51, 0x1d4c5150, 0x080b8a1b, 0xfc020042, 0xffd9046a, 0x007f06be, 0x001c0010, 0x0d314052, 0x1710040c,
0x2f401701, 0x4f1c3f1c, 0x041c031c, 0x002f1c04, 0x008f005f, 0x0004009f, 0x1b1608c0, 0x0c7f041b, 0x0c020c8f, 0x080f0080, 0x0802085f, 0xcc229d84,
0x9882325d, 0x1a2f012a, 0x39395dcc, 0x2f182f3d, 0x5d23a982, 0x83333311, 0x262634aa, 0x07060627, 0x36363523, 0x16163337, 0x033e2717, 0x83153337,
0xfe3c0811, 0x6c3364d9, 0x336a3634, 0x30753365, 0x337430c0, 0x1d21144e, 0x2db4101d, 0x0465376a, 0x305422d9, 0x1b225430, 0x4545843b, 0x19c23b84,
0x21342e2d, 0x2b673c15, 0x89fb0200, 0xddfed904, 0x4a2fb186, 0x03042a40, 0x01161f0c, 0x0c1c4016, 0x822f1c0c, 0x088f3392, 0x0804089f, 0x121600c0,
0x037f0c12, 0x0302038f, 0xaa8a1080, 0xaa8fcd20, 0x86cd1a21, 0x21a086a9, 0xb1862315, 0x08833720, 0x1e333528, 0x6ffc1703, 0xa1847433, 0x6a336434,
0x336b3536, 0x38644d64, 0x10b42d6a, 0x14201e1d, 0xa285f404, 0xb0851b20, 0x672bc329, 0x3421153c, 0x41192d2e, 0x2008065b, 0x00f8067d, 0x00280010,
0x1638405e, 0x06201919, 0x1c19480e, 0x232f8011, 0x234f233f, 0x04042303, 0x0c5e4123, 0x1f191925, 0x41181826, 0xcc241862, 0x33113932, 0x230d6641,
0x112b3932, 0x36136741, 0x020e1413, 0x27230707, 0x34353636, 0x06222326, 0x36363507, 0x41163233, 0xa4331074, 0x192e2214, 0x370a5606, 0x162b3941,
0x260b0b27, 0x4164631f, 0x01330e7d, 0x1e2b1d76, 0x83510615, 0x25251f09, 0x52030319, 0x82450303, 0x232682dd, 0x1007e9fe, 0x2c2bdd82, 0x3b406100,
0x0c0c0304, 0x41282800, 0x003a0982, 0x001a1ac0, 0xcf8e1627, 0xef1fdf1f, 0x401f031f, 0x1f480d09, 0x198e241f, 0x98411111, 0x2f322816, 0x2f33e133,
0x82e15d2b, 0x2f332ce3, 0x5dcc101a, 0x39112f32, 0x83332f3d, 0x0f9e41e0, 0x2e220123, 0x2dd78302, 0x33033e23, 0x33021e32, 0x33373632, 0xaa41030e,
0xbe013410, 0x40454724, 0x0e2a281c, 0x301d055d, 0x4a252a41, 0x821a3e45, 0x055c240d, 0x4141301c, 0x012a0ebc, 0x1c221c5a, 0x5130322a, 0x0882213b,
0x83312b21, 0x82002008, 0x04733be9, 0x06cdfed9, 0x000b00c1, 0x4032001f, 0x0b800619, 0x0c2f1f0b, 0x15c00c01, 0x0a820514, 0x1a801436, 0x115f110f,
0x2f001102, 0xcd1a335d, 0xcc2f3232, 0x1a332f01, 0x3926bd82, 0x31cd1a2f, 0xf2420130, 0x0e252808, 0x26222303, 0x821e3327, 0x023e27b2, 0x145efd37,
0xf1421e20, 0x01260806, 0x4d2b056f, 0x9192466e, 0x1b046c06, 0x242c4430, 0x05213341, 0x2c19f805, 0x1521352e, 0x062c673c, 0x2645633c, 0x19197e8c,
0x02210845, 0x29958bfc, 0x051e4038, 0x13400b80, 0x9a8a4816, 0x1f000022, 0xcd209a91, 0x2b209a88, 0xe4429b84, 0x8e172008, 0x42d1209b, 0xfc2009e3,
0xdd2a9a93, 0x153c672c, 0x2c2e3521, 0x9a8e1519, 0x2c073141, 0x13000607, 0x42002a00, 0x1c192140, 0x288a821c, 0x2f132525, 0x09000100, 0x2e0e8208,
0x1bc02822, 0x8008131b, 0x5f050f0e, 0x41050205, 0x39220639, 0xe2421a2f, 0x41332006, 0x0d84053d, 0x01303122, 0x27209b8d, 0x2411db42, 0xfe163233,
0x20a692cd, 0x06de422b, 0x3941382c, 0x0b27152c, 0x63643a15, 0xaf8de305, 0x2b1d9632, 0x2906141f, 0x2520095a, 0x03031825, 0x00450652, 0x2d0add42,
0x002f0013, 0x1c274048, 0x2a081d1d, 0xc0842b2b, 0x0809c030, 0x22cf192a, 0x22ef22df, 0x1c272203, 0xc7901414, 0x332f3227, 0x325dcd33, 0x066b4132,
0x11230e82, 0x91332f33, 0x14c242c7, 0x2f20c794, 0x8f1ac542, 0x425020d0, 0x013b13c5, 0x42fe3100, 0x00007101, 0x18001400, 0x800f0940, 0x02080800,
0x00020b12, 0x82332f2f, 0x332f2ea6, 0x3031cc1a, 0x33273417, 0x1415031e, 0x947b1806, 0x363a0808, 0x1a818bdb, 0x651e2f39, 0x1a401d64, 0x22192d0e,
0x8569ee34, 0x4b403413, 0x08685a2a, 0x05047108, 0x0001002b, 0x016dfe10, 0x00a60077, 0xb6120011, 0x0d100109, 0x0000fa06, 0x56833f2f, 0x0879c420,
0x06fe7a07, 0x35362208, 0x01770111, 0x3f59391a, 0x0e163f26, 0x322e223b, 0x42d9fea6, 0x11244666, 0x0e079609, 0x3c013131, 0x204f8800, 0x224fb49a,
0x8be5fe9a, 0x3034084f, 0x00020000, 0x0414fe71, 0x005e0402, 0x003e0010, 0x2d21403b, 0x47063e2c, 0x1040552f, 0x480e0140, 0x3f562136, 0x1b325039,
0x0b2c0f2e, 0x16102650, 0x161c5000, 0x2f058174, 0xe13f3f33, 0xc4f61001, 0xf6105de1, 0x323232e1, 0x0667ca82, 0x3405250d, 0x37363736, 0x22103667,
0x41113337, 0x3e240a40, 0x35023502, 0x220b0367, 0x8201a001, 0x17042500, 0x3c604d3a, 0x32093467, 0x08173c4c, 0xe8eb931b, 0x4545b077, 0x69466cbf,
0x67832347, 0x772a0c00, 0x1a172d0c, 0x2e3c231d, 0x3067481a, 0x2d1b3506, 0xfb94223e, 0x24eaeea2, 0x2e28a622, 0x4470502d, 0x1400ffff, 0x1237e982,
0x2602b605, 0x00003700, 0x7a000701, 0x00002201, 0x01b60b00, 0x511c1b03, 0x2582064c, 0x14fe2126, 0x46058f02, 0x57202582, 0x00212585, 0x05a148be,
0xf6ff012b, 0x101e25b4, 0x2b012506, 0x24118235, 0x004a011b, 0x83078201, 0x82342002, 0x240b8504, 0x000a0001, 0x24178634, 0x00070002, 0x240b863e,
0x00150003, 0x200b8645, 0x24238a04, 0x000c0005, 0x2417865a, 0x00090006, 0x240b8666, 0x004e0007, 0x240b866f, 0x00140008, 0x240b86bd, 0x0067000a,
0x240b86d1, 0x012e000d, 0x230b8638, 0x012a000e, 0x12203b87, 0x03245f84, 0x09040100, 0x68239782, 0x85009001, 0x0001240b, 0x86f80114, 0x0002240b,
0x860c020e, 0x0003240b, 0x861a022a, 0x8a04200b, 0x00052423, 0x8644022c, 0x00062417, 0x86700212, 0x0007240b, 0x8682029c, 0x0008240b, 0x861e0328,
0x000a240b, 0x864603ce, 0x000b240b, 0x86140438, 0x000c240b, 0x864c045c, 0x820d200b, 0x86a8200b, 0x0e54080b, 0x04055400, 0x69676944, 0x657a6974,
0x61642064, 0x63206174, 0x7279706f, 0x74686769, 0x3220a920, 0x2c373030, 0x6f6f4720, 0x20656c67, 0x70726f43, 0x7461726f, 0x2e6e6f69, 0x696f7244,
0x61532064, 0x6552736e, 0x616c7567, 0x63734172, 0x65646e65, 0x202d2072, 0x56231b89, 0x82737265, 0x3120242d, 0x8430302e, 0x84308315, 0x69203108,
0x20612073, 0x64617274, 0x72616d65, 0x666f206b, 0x61326587, 0x6d20646e, 0x62207961, 0x65722065, 0x74736967, 0x99827265, 0x206e6927, 0x74726563,
0x27078261, 0x6972756a, 0x63696473, 0x73218783, 0x8a77882e, 0x8580899d, 0x75682466, 0x826e616d, 0x73202149, 0x2035af82, 0x69726573, 0x79742066,
0x61666570, 0x64206563, 0x67697365, 0x2462826e, 0x20726f66, 0x221c8275, 0x826e6920, 0x211b8373, 0x8c832073, 0x656c652f, 0x6f727463, 0x2063696e,
0x6d6d6f63, 0x41088275, 0x4c210503, 0x20f28269, 0x20398273, 0x27f88475, 0x20656874, 0x63617041, 0x19860682, 0x41202c21, 0x322e0700, 0x7468302e,
0x2f3a7074, 0x7777772f, 0x2584612e, 0x726f2e25, 0x856c2f67, 0x2f732943, 0x4543494c, 0x2d45534e, 0x00252982, 0x00690044, 0x20038267, 0x26038274,
0x0065007a, 0x82200064, 0x00612403, 0x82610074, 0x00632809, 0x0070006f, 0x84720079, 0x82682025, 0x00202215, 0x221782a9, 0x82300032, 0x00372201,
0x200b822c, 0x20238247, 0x2043826f, 0x223d826c, 0x82430020, 0x8272200d, 0x826f2033, 0x20458333, 0x220f8269, 0x822e006e, 0x82722067, 0x84692009,
0x8253205f, 0x006e245b, 0x82520073, 0x00672631, 0x006c0075, 0x202d8261, 0x20118241, 0x20118263, 0x2023826e, 0x220f8265, 0x822d0020, 0x8244205d,
0x826f2009, 0x8797837d, 0x82562037, 0x82722025, 0x225b852d, 0x82310020, 0x228f835f, 0x82620020, 0x8269204d, 0x8264204f, 0x82312039, 0x8a342017,
0x8b3d8777, 0x82692051, 0x84202045, 0x847420e9, 0x826420af, 0x846d2059, 0x826b208d, 0x006f2241, 0x21df9066, 0x9f830061, 0x83002021, 0x82792025,
0x8462201d, 0x847220f5, 0x204d83c9, 0x419b8474, 0x69200547, 0x20222b82, 0x11846300, 0x55827420, 0x6a200f85, 0x7220a382, 0x7322d182, 0x05826400,
0x74006322, 0x6f200582, 0x73202982, 0x0341c582, 0x154f4111, 0x20131541, 0x85538420, 0x826820cd, 0x20a18363, 0x2013846e, 0x20a78274, 0x207f8273,
0x20ed846e, 0x208f8473, 0x24db8469, 0x00790074, 0x200f8270, 0x201d8266, 0x20c98463, 0x20058264, 0x20358273, 0x85918267, 0x006624c5, 0x8272006f,
0x82752041, 0x0597413d, 0x7420c783, 0x37874584, 0x1f827320, 0x22071941, 0x826c0065, 0x20d7831b, 0x83398272, 0x42632081, 0x6d220649, 0x97826d00,
0x1b421185, 0x0068220b, 0x24018274, 0x003a0070, 0x2101822f, 0x01830077, 0x91822e20, 0x42007321, 0x63200b0f, 0x70228784, 0x15822e00, 0x49826f20,
0xb7002f21, 0x8df58737, 0x827220eb, 0x842e20df, 0x826d2053, 0x004c22c1, 0x207d8669, 0x20cd8273, 0x42ff8464, 0x74200999, 0x65202782, 0x41221382,
0xa7827000, 0x0d866320, 0x2c20338d, 0xa9421f82, 0x8232200f, 0x983020bd, 0x204b89b7, 0x22eb842e, 0x822f0067, 0x20878b89, 0x2a118273, 0x0049004c,
0x00450043, 0x8253004e, 0x002d2105, 0x00235385, 0x84000200, 0x66ff2300, 0x08846600, 0x0325048e, 0x01000085, 0x08258202, 0x04000338, 0x06000500,
0x08000700, 0x0a000900, 0x0c000b00, 0x0e000d00, 0x10000f00, 0x12001100, 0x14001300, 0x16001500, 0x18001700, 0x1a001900, 0x1c001b00, 0x1e001d00,
0xcf821f00, 0x22002130, 0x24002300, 0x26002500, 0x28002700, 0xc7192900, 0x750e70dd, 0x00a300ac, 0x00850084, 0x009600bd, 0x008600e8, 0x008b008e,
0x00a9009d, 0x000301a4, 0x0004018a, 0x00930083, 0x00f300f2, 0x0097008d, 0x00050188, 0x00f100de, 0x00aa009e, 0x00f400f5, 0x00a200f6, 0x00c900ad,
0x00ae00c7, 0x00630062, 0x00640090, 0x006500cb, 0x00ca00c8, 0x00cc00cf, 0x00ce00cd, 0x006600e9, 0x00d000d3, 0x00af00d1, 0x00f00067, 0x00d60091,
0x00d500d4, 0x00eb0068, 0x008900ed, 0x0069006a, 0x006d006b, 0x006e006c, 0x006f00a0, 0x00700071, 0x00730072, 0x00740075, 0x00770076, 0x007800ea,
0x0079007a, 0x007d007b, 0x00b8007c, 0x007f00a1, 0x0080007e, 0x00ec0081, 0x01ba00ee, 0x01070106, 0x01090108, 0x000b010a, 0x01fe00fd, 0x010d010c,
0x000f010e, 0x010001ff, 0x01110110, 0x01130112, 0x01150114, 0x01170116, 0x01190118, 0x011b011a, 0x011d011c, 0x001f011e, 0x01f900f8, 0x01210120,
0x01230122, 0x01250124, 0x01270126, 0x01290128, 0x012b012a, 0x012d012c, 0x012f012e, 0x01d70030, 0x01320131, 0x01340133, 0x01360135, 0x01380137,
0x013a0139, 0x013c013b, 0x013e013d, 0x00e2003f, 0x014001e3, 0x01420141, 0x01440143, 0x01460145, 0x01480147, 0x014a0149, 0x014c014b, 0x004e014d,
0x01b100b0, 0x0150014f, 0x01520151, 0x01540153, 0x01560155, 0x00580157, 0x00fc00fb, 0x01e500e4, 0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f,
0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169, 0x016c016b, 0x006e016d, 0x016f01bb, 0x01710170, 0x00e60072, 0x007301e7, 0x017401a6,
0x01760175, 0x01780177, 0x017a0179, 0x00d8007b, 0x007c01e1, 0x00dc00db, 0x00e000dd, 0x01df00d9, 0x017e017d, 0x0180017f, 0x01820181, 0x01840183,
0x01860185, 0x01880187, 0x018a0189, 0x018c018b, 0x018e018d, 0x0190018f, 0x01920191, 0x01940193, 0x01960195, 0x01980197, 0x019a0199, 0x019c019b,
0x019e019d, 0x01a0019f, 0x01a201a1, 0x01a401a3, 0x01a601a5, 0x01a801a7, 0x01aa01a9, 0x01ac01ab, 0x01ae01ad, 0x01b001af, 0x01b201b1, 0x01b401b3,
0x019b00b5, 0x01b701b6, 0x01b901b8, 0x01bb01ba, 0x01bd01bc, 0x01bf01be, 0x01c101c0, 0x01c301c2, 0x01c501c4, 0x01c701c6, 0x01c901c8, 0x01cb01ca,
0x01cd01cc, 0x01cf01ce, 0x01d101d0, 0x01d301d2, 0x01d501d4, 0x01d701d6, 0x01d901d8, 0x01db01da, 0x01dd01dc, 0x01df01de, 0x01e101e0, 0x01e301e2,
0x01e501e4, 0x01e701e6, 0x01e901e8, 0x01eb01ea, 0x01ed01ec, 0x01ef01ee, 0x01f101f0, 0x01f301f2, 0x01f501f4, 0x01f701f6, 0x01f901f8, 0x01fb01fa,
0x01fd01fc, 0x02ff01fe, 0x02010200, 0x02030202, 0x02050204, 0x02070206, 0x02090208, 0x020b020a, 0x020d020c, 0x020f020e, 0x02110210, 0x02130212,
0x02150214, 0x02170216, 0x02190218, 0x021b021a, 0x021d021c, 0x021f021e, 0x02210220, 0x02230222, 0x02250224, 0x02270226, 0x00290228, 0x02b300b2,
0x002b022a, 0x00b700b6, 0x002c02c4, 0x00b500b4, 0x008200c5, 0x008700c2, 0x02c600ab, 0x002e022d, 0x02bf00be, 0x02bc002f, 0x02f70030, 0x02320231,
0x02340233, 0x00360235, 0x029f008c, 0x02380237, 0x023a0239, 0x0298003b, 0x009a003c, 0x00ef0099, 0x009200a5, 0x00a7009c, 0x0094008f, 0x02b90095,
0x023e023d, 0x0240023f, 0x02420241, 0x02440243, 0x02460245, 0x02480247, 0x024a0249, 0x024c024b, 0x024e024d, 0x0250024f, 0x02520251, 0x02540253,
0x02560255, 0x02580257, 0x025a0259, 0x025c025b, 0x025e025d, 0x0260025f, 0x02620261, 0x02640263, 0x02660265, 0x02680267, 0x026a0269, 0x026c026b,
0x026e026d, 0x0270026f, 0x02720271, 0x02740273, 0x02760275, 0x02780277, 0x027a0279, 0x027c027b, 0x027e027d, 0x0280027f, 0x02820281, 0x02840283,
0x02860285, 0x02880287, 0x028a0289, 0x028c028b, 0x028e028d, 0x0290028f, 0x02920291, 0x02940293, 0x02960295, 0x02980297, 0x029a0299, 0x029c029b,
0x029e029d, 0x02a0029f, 0x02a202a1, 0x02a402a3, 0x02a602a5, 0x02a802a7, 0x02aa02a9, 0x02ac02ab, 0x02ae02ad, 0x02b002af, 0x02b202b1, 0x02b402b3,
0x02b602b5, 0x02b802b7, 0x02ba02b9, 0x02bc02bb, 0x02be02bd, 0x02c002bf, 0x02c202c1, 0x02c402c3, 0x02c602c5, 0x02c802c7, 0x02ca02c9, 0x02cc02cb,
0x02ce02cd, 0x02d002cf, 0x02d202d1, 0x02d402d3, 0x02d602d5, 0x02d802d7, 0x02da02d9, 0x02dc02db, 0x02de02dd, 0x02e002df, 0x02e202e1, 0x02e402e3,
0x02e602e5, 0x02e802e7, 0x02ea02e9, 0x02ec02eb, 0x02ee02ed, 0x02f002ef, 0x02f202f1, 0x02f402f3, 0x02f602f5, 0x02f802f7, 0x02fa02f9, 0x02fc02fb,
0x02fe02fd, 0x030003ff, 0x03020301, 0x03040303, 0x03060305, 0x03080307, 0x030a0309, 0x030c030b, 0x030e030d, 0x0310030f, 0x03120311, 0x03140313,
0x03160315, 0x03180317, 0x031a0319, 0x031c031b, 0x031e031d, 0x0320031f, 0x03220321, 0x03240323, 0x03260325, 0x03280327, 0x032a0329, 0x032c032b,
0x032e032d, 0x0330032f, 0x03320331, 0x03340333, 0x03360335, 0x03380337, 0x033a0339, 0x033c033b, 0x033e033d, 0x0340033f, 0x03420341, 0x03440343,
0x03460345, 0x03480347, 0x034a0349, 0x034c034b, 0x034e034d, 0x0350034f, 0x03520351, 0x03540353, 0x03560355, 0x03580357, 0x035a0359, 0x035c035b,
0x035e035d, 0x0360035f, 0x03620361, 0x03640363, 0x03660365, 0x03680367, 0x036a0369, 0x036c036b, 0x036e036d, 0x0370036f, 0x03720371, 0x03740373,
0x03760375, 0x03780377, 0x037a0379, 0x037c037b, 0x037e037d, 0x0380037f, 0x03820381, 0x03840383, 0x03860385, 0x03880387, 0x038a0389, 0x038c038b,
0x6e2e058d, 0x076c6c75, 0x30696e75, 0x09444130, 0x7265766f, 0x726f6373, 0x65700e65, 0x646f6972, 0x746e6563, 0x64657265, 0x616d4107, 0x6e6f7263,
0x07856107, 0x62410628, 0x65766572, 0x06846106, 0x6f410729, 0x656e6f67, 0x8561076b, 0x430b2d07, 0x63726963, 0x6c666d75, 0x630b7865, 0x04260b89,
0x746f6443, 0x04826304, 0x63440623, 0x214e8261, 0x06856406, 0x72634425, 0x8274616f, 0x2106830d, 0x63854507, 0x85650721, 0x45062107, 0x06216484,
0x21068465, 0x3e82450a, 0x83636121, 0x650a2198, 0x07210a88, 0x21798545, 0x07856507, 0x85450621, 0x84652058, 0x470b2106, 0x0b218389, 0x210b8967,
0x40824704, 0x82670421, 0x470c2604, 0x6d6d6f63, 0x21578561, 0x0c8a670c, 0x89480b21, 0x680b212f, 0x04260b89, 0x72616248, 0x04826804, 0x74490628,
0x65646c69, 0x06846906, 0x85490721, 0x690721b5, 0x06210785, 0x21b68449, 0x06846906, 0x85490721, 0x6907219f, 0x0a210785, 0x27c28849, 0x024a4902,
0x4a0b6a69, 0x0b216289, 0x210b896a, 0x938a4b0c, 0x8c6b0c21, 0x7267330c, 0x6c6e6565, 0x69646e61, 0x614c0663, 0x65747563, 0x06846c06, 0x8b4c0c21,
0x8a6c2027, 0x4c06280c, 0x6f726163, 0x846c066e, 0x4c042106, 0x04218582, 0x2104826c, 0x3f854e06, 0x3f856e20, 0x328a4e20, 0x8a6e0c21, 0x4e06210c,
0x06213884, 0x3506846e, 0x70616e0b, 0x7274736f, 0x6568706f, 0x676e4503, 0x676e6503, 0xff854f07, 0x856f0721, 0x4f062807, 0x76657262, 0x846f0665,
0x4f0d2f06, 0x676e7568, 0x6d757261, 0x7475616c, 0x0d8b6f0d, 0x84520621, 0x7206217c, 0x0c210684, 0x21768a52, 0x0c8a720c, 0x84520621, 0x7206217c,
0x53200685, 0x06212e84, 0x21068473, 0x3a41530b, 0x730b2109, 0x0c210b89, 0x21408a54, 0x0c8a740c, 0x85540621, 0x84742046, 0x54042606, 0x04726162,
0x28048274, 0x69745506, 0x0665646c, 0x21068475, 0xcd855507, 0x85750721, 0x55062107, 0x0621ce84, 0x27068475, 0x69725505, 0x7505676e, 0x0d210583,
0x20e18c55, 0x210d8b75, 0xfd415507, 0x75072105, 0x0b210785, 0x21a18957, 0x0b8a770b, 0x0b8a5920, 0x0b897920, 0x845a0621, 0x7a0621e4, 0x0a210684,
0x0843425a, 0x887a0a21, 0x6c05270a, 0x73676e6f, 0x8b83410a, 0x61202685, 0x07220a88, 0x12844541, 0x65610722, 0x0b260784, 0x616c734f, 0x0b856873,
0x0b896f20, 0x41530c21, 0x0c210a20, 0x200c8a73, 0x2efe8506, 0x6e6f7405, 0x640d736f, 0x65726569, 0x84736973, 0x410a250d, 0x6168706c, 0x092e0a84,
0x746f6e61, 0x69656c65, 0x70450c61, 0x91826973, 0x08221684, 0x1f867445, 0x866f4921, 0x4f0c2709, 0x7263696d, 0x1f846e6f, 0x8a550c21, 0x4f0a242c,
0x8567656d, 0x6911212e, 0x6b8c2e82, 0x6b840520, 0x65420433, 0x47056174, 0x616d6d61, 0x696e7507, 0x34393330, 0x216f8607, 0x1a825a04, 0x6f820320,
0x68540522, 0x04200982, 0x05367083, 0x7070614b, 0x614c0661, 0x6164626d, 0x02754d02, 0x5802754e, 0x81860769, 0x69500231, 0x6f685203, 0x67695305,
0x5403616d, 0x86077561, 0x5003258d, 0x43036968, 0x50220382, 0x66856973, 0x0c394122, 0x91874f83, 0x28860f20, 0x0a210f87, 0x08084161, 0x8a650c21,
0x820820d1, 0x20e78488, 0x84cf8309, 0x75142109, 0xdc8d1f85, 0x04213f84, 0x212e8262, 0xdc836705, 0x65640526, 0x0761746c, 0x04214b86, 0x2018827a,
0x21038203, 0xda847405, 0x05214c83, 0x20da846b, 0x85da846c, 0x434229a4, 0x02756e02, 0x6f076978, 0x25056141, 0x6f687203, 0xdc837306, 0x84053121,
0x74032106, 0x7f86e382, 0x82700321, 0x826320df, 0x268e8203, 0x656d6f05, 0x410c6167, 0x0f200b73, 0x0c20a68e, 0xc3845386, 0x1c860c20, 0x0a200c84,
0x0a843c84, 0x66610929, 0x30316969, 0x87333230, 0x31352109, 0x32200988, 0x1d890988, 0x13883420, 0x09883520, 0x09883620, 0x09883720, 0x09883820,
0x09873920, 0x88303621, 0x20638809, 0x21638736, 0x4f883431, 0x45883120, 0x45883120, 0x45883120, 0x45883220, 0x45883220, 0xa9883220, 0x9f883220,
0x4f883220, 0x9f883220, 0x59883220, 0x59883220, 0x59883220, 0x59883320, 0x59883320, 0x59883320, 0x03413320, 0x88332008, 0x88332063, 0x88332063,
0x88332063, 0x88332063, 0x88332063, 0x88342063, 0x88342063, 0x88342063, 0x88342063, 0x88342063, 0x09174163, 0x63883420, 0x63883420, 0x63883420,
0x63883420, 0x95883620, 0x31883620, 0x31883620, 0x31883620, 0x31883620, 0x95883720, 0x8b883720, 0x8b883720, 0x8b883720, 0x59883720, 0x59883720,
0x59883720, 0x59883720, 0x59883720, 0x59883820, 0xef883820, 0x63883820, 0x63883820, 0x63883820, 0x63883820, 0x63883820, 0x63883820, 0x63883820,
0x63883820, 0x63883920, 0x63883920, 0x63883920, 0x63883920, 0x63883920, 0x63883920, 0x63883920, 0x63883920, 0x45893720, 0x31216387, 0x21638730,
0x1d873031, 0x42303121, 0x302008bb, 0x31216387, 0x21638730, 0x63873031, 0x87303121, 0x30312163, 0x31216387, 0x21c78730, 0x63883031, 0x63883120,
0x3520b389, 0x3829db89, 0x72675706, 0x06657661, 0x24068577, 0x75636157, 0x840d8274, 0x57092106, 0x21079d44, 0x09877709, 0x85590621, 0x84792028,
0x61092d06, 0x30696966, 0x38303230, 0x646e750d, 0x2b06484a, 0x0d6c6264, 0x746f7571, 0x76657265, 0x65251282, 0x696d0664, 0x2c55836e, 0x6f636573,
0x6509646e, 0x616c6378, 0x2925826d, 0x75736e09, 0x69726570, 0x4785726f, 0x3439382f, 0x65700631, 0x61746573, 0x72754504, 0x2215846f, 0x42323136,
0x0982068f, 0x3d069f41, 0x35333136, 0x73650932, 0x616d6974, 0x09646574, 0x65656e6f, 0x74686769, 0x68740c68, 0x0b866572, 0x660b7324, 0x0b877669,
0x82730c21, 0x856e208b, 0x05732e24, 0x746c6544, 0x6e750761, 0x30424669, 0x2a078631, 0x79630d32, 0x6c6c6972, 0x83626369, 0x64082db7, 0x656c746f,
0x106a7373, 0x6f726163, 0x200b0849, 0x0a14470b, 0x0b8a1120, 0x746f7222, 0x0c248c82, 0x6f72657a, 0x0c24d687, 0x72756f66, 0x8e820c89, 0x0b230c87,
0x87786973, 0x840d200b, 0x840d889b, 0x233488a4, 0x656e696e, 0xa9830c87, 0x30303223, 0x84078630, 0x303223b9, 0x0f863230, 0x07863320, 0x07863420,
0x07863520, 0x07863620, 0x07863720, 0x07863820, 0x07863920, 0x07864120, 0x07834220, 0x46454623, 0x22078446, 0x86434646, 0x83442007, 0x31302307,
0x07843046, 0x84423221, 0x33302317, 0x0f843144, 0x84443321, 0x840f827f, 0x45312367, 0x17834533, 0x47840782, 0x85453121, 0x840782af, 0x4631222f,
0x2b4f8534, 0x09334632, 0x69736164, 0x69786f61, 0x84078b41, 0x42462bc1, 0x4f053430, 0x6e726f68, 0x05846f05, 0x05845520, 0x05837520, 0x51857185,
0x41333021, 0x078205bb, 0x6804332e, 0x086b6f6f, 0x62746f64, 0x776f6c65, 0x34202584, 0x34212586, 0x216f8530, 0xbf853534, 0x86353421, 0x8636200f,
0x8436200f, 0x34302297, 0x21c78536, 0x85843634, 0x34200f82, 0x36214785, 0x84078635, 0x201782df, 0x200f8637, 0x20078638, 0x20078639, 0x20078641,
0x41078642, 0x34210527, 0x206f8736, 0x20178645, 0x21078546, 0x07863037, 0x07863120, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86,
0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x38217f86, 0x21778530, 0x07863138, 0x38207f86,
0x38207f86, 0x38207f86, 0x38207f86, 0x38207f86, 0x38207786, 0x38207786, 0x38207786, 0x38207786, 0x38207786, 0x38207786, 0x38207786, 0x39207786,
0x39206786, 0x39206786, 0x39206786, 0x39206786, 0x39206786, 0x3920e786, 0x39206f86, 0x39206f86, 0x39206f86, 0x39206f86, 0x39206f86, 0x39206f86,
0x39206f86, 0x41216f86, 0x21df8530, 0x07863141, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86,
0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x41207f86, 0x42217f86, 0x21778530, 0x07863142, 0x42207f86, 0x42207f86, 0x42207f86, 0x42207f86,
0x42207f86, 0x42207f86, 0x42207f86, 0x42207f86, 0x42207f86, 0x8f437f86, 0x42342106, 0x42207f86, 0x42207f86, 0x43217f86, 0x21778530, 0x07863143,
0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x4320ff86, 0x43207f86,
0x43207f86, 0x44217f86, 0x44778530, 0x3420062f, 0x21062f44, 0x7f864434, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420,
0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864420, 0x7f864520, 0x85314521, 0x86452087, 0x864520ff, 0x8645207f, 0x8645207f,
0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x0637457f, 0x31463422,
0x46207f85, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0x46207f86, 0xa7457f86, 0x34302205,
0x207f8646, 0x457f8646, 0x302105c7, 0x06074535, 0x2d453520, 0x46352006, 0x1782052f, 0x35217f85, 0x217f8530, 0x7f853035, 0x85303521, 0x3035217f,
0x35217f85, 0x217f8530, 0x7f853035, 0x85303521, 0x3035217f, 0x35217f85, 0x21ff8530, 0x7f853035, 0x85303521, 0x3035217f, 0x3522ff85, 0xf7843031,
0x31313522, 0xff850786, 0x84313521, 0x4531217f, 0x82059f43, 0x821f8407, 0x821f8407, 0x841f8707, 0x840f829f, 0x8407829f, 0x8407829f, 0x8407829f,
0x8407829f, 0x8407829f, 0x8407829f, 0x8407829f, 0x8407829f, 0x8407829f, 0x8407829f, 0x4531219f, 0x82059f43, 0x46312007, 0x422005b7, 0x9f437f86,
0x86178205, 0x059f437f, 0x7f860f82, 0x82059f43, 0x437f860f, 0x0f82059f, 0x9f437f86, 0x860f8205, 0x059f437f, 0x7f860f82, 0x21059f43, 0x9f434531,
0x86078205, 0x8643207f, 0x059f437f, 0x7f861782, 0x82059f43, 0x437f860f, 0x0f82059f, 0x9f437f86, 0x860f8205, 0x059f437f, 0x7f860f82, 0x82059f43,
0x437f860f, 0x3121059f, 0x059f4345, 0x7f860782, 0x82059f43, 0x067f410f, 0x82059f43, 0x067f410f, 0x82059f43, 0x067f410f, 0x82059f43, 0x067f410f,
0x82059f43, 0x067f410f, 0x82059f43, 0x067f410f, 0x82059f43, 0x067f410f, 0x21059f43, 0x9f434531, 0x86078205, 0x059f43ff, 0xff860f82, 0x82059f43,
0x43ff860f, 0x0f82059f, 0x9f43ff86, 0x860f8205, 0x059f43ff, 0xff860f82, 0x82059f43, 0x43ff860f, 0x3121059f, 0x059f4345, 0x31200782, 0x4305ff41,
0x0f82058f, 0x8f43ef86, 0x860f8205, 0x058f43ef, 0xef840f82, 0x46303221, 0x33230607, 0x51134630, 0x612809af, 0x65747563, 0x626d6f63, 0x6723138a,
0x84766172, 0x89122013, 0x6f682327, 0x268e6b6f, 0x6c697423, 0x25268464, 0x6572620e, 0x49886576, 0x44880e85, 0x1d840d20, 0x1c853f87, 0x10203a88,
0x8307cb4a, 0x656c241f, 0x4a117466, 0x692108dc, 0x21138367, 0x118f4355, 0x05434c32, 0x6c612e67, 0x63540874, 0x6c696465, 0x7408616c, 0x00200886,
0x022a0084, 0x02000500, 0x0300ffff, 0x0f820100, 0x03820c20, 0x03821620, 0x0d830220, 0x82840321, 0x82042005, 0x2219830d, 0x82010000, 0x000a2e09,
0x002c001e, 0x74616c01, 0x0008006e, 0x20118204, 0x203b8200, 0x23078201, 0x72656b01, 0x00211383, 0x820d8400, 0x8202201b, 0x83012021, 0xc8a52103,
0x38080d82, 0x03f10100, 0x07ec03ec, 0x08600752, 0x096007de, 0x0bce0a3c, 0x0d220c34, 0x0f3a0e54, 0x11061020, 0x13ca1298, 0x15d214a0, 0x1a8a1904,
0x21ba1d18, 0x27922360, 0x285207ac, 0x20018292, 0x26038298, 0x294429aa, 0x8260295a, 0x29922a09, 0x28802972, 0x2afe2998, 0x08018214, 0x042b2a22,
0x52071a2b, 0xf22be42b, 0x522e002c, 0x002c522e, 0xe2329830, 0x3835340b, 0x38351e36, 0x3a0e3835, 0x36230185, 0x877e37fc, 0x98112301, 0x0185dc38,
0x84e63921, 0x82658361, 0x72292503, 0xa43e9828, 0xae220186, 0x0187bc3e, 0x3e722923, 0x260186d6, 0x096640e0, 0x8392283c, 0x84402703, 0x340b9228,
0x01839828, 0x42210783, 0x214b851a, 0x07839842, 0x423a0e23, 0x23db839e, 0x06106029, 0x42210183, 0x8505831a, 0x98112121, 0x7220c382, 0x3f850585,
0x2888432b, 0x44964498, 0x191a4296, 0x3101858a, 0x142aba1d, 0x042b9223, 0xac271049, 0x8a4dac27, 0x7383a050, 0x98285b08, 0x9c516e51, 0xd851aa51,
0x78526a52, 0x2054de52, 0x4c568254, 0x38591659, 0x6c5a565a, 0x585e165b, 0x845f665e, 0x04615e60, 0x6465ae64, 0xec658e65, 0x2c661e66, 0x9c6ade66,
0x9228a26a, 0x9c6abc6a, 0x146b0e6b, 0x4c6b426b, 0x92287a6b, 0x2e6cec6b, 0x8a6c546c, 0xb66ca86c, 0x0382cc6c, 0xfc6cde2c, 0x486d366d, 0x9e6d7229,
0xa383b06d, 0xfe6d7708, 0xd66fe06e, 0xaa732c73, 0x2a74c073, 0xda750875, 0x1677a076, 0x6a7acc78, 0x3e7d947c, 0x0680c87d, 0xd6811081, 0xa2837082,
0x16860085, 0x6e8c2087, 0xa68efc8d, 0x2290608f, 0x96911c91, 0xa6921892, 0x82931c93, 0x9a940894, 0xfa94b894, 0xb2953095, 0xae962896, 0x86973897,
0xa698e497, 0xaa993899, 0x769a209a, 0x9828d09a, 0xa89b369b, 0x9828ee9b, 0x3e9c309c, 0x07829828, 0xba9cb032, 0xbe9d409d, 0x369ec49d, 0x9a94ac9e,
0x142aba1d, 0x23250387, 0xa2042b92, 0x0801821a, 0x28a22820, 0x3c093c09, 0x7ca53aa5, 0xa283fa94, 0x9691a698, 0x1686ae96, 0x6a7a8697, 0x10816a7a,
0x03833095, 0x96a28325, 0x830085ae, 0x6e8c2305, 0x0383a698, 0x98a69823, 0x850f83a6, 0xa6982703, 0x608fbea5, 0x3b83209a, 0x96008529, 0x972087ae,
0x83a076e4, 0xae962111, 0x47870583, 0x0f830783, 0x3b831f85, 0x0d836983, 0x98208723, 0x830383a6, 0x2703871d, 0xa283a076, 0xc073a283, 0x4d853583,
0x73211987, 0x219d83c0, 0xb183fa94, 0x83ae9621, 0x83a58747, 0x85118531, 0xae962199, 0x0783b187, 0x97216985, 0x859387e4, 0x89a385d1, 0x833f85cd,
0x21278399, 0x01953c09, 0x420bf542, 0x0e2505ad, 0x2998113a, 0x21039772, 0x01873aa5, 0x198a1925, 0x877ca58a, 0x92232301, 0x0387042b, 0x00964431,
0xff2400d9, 0x002c00ae, 0x00370029, 0x82390052, 0x003a2403, 0x823b0066, 0x823c200f, 0x823d200b, 0xff462407, 0x824700c3, 0x82482003, 0xff4a2403,
0x825200d7, 0x82542007, 0x82572003, 0x8259201b, 0x005a2403, 0x825c0014, 0x82822007, 0x82832047, 0x82842003, 0x82852003, 0x82862003, 0x82872003,
0xff882403, 0x828e005c, 0x828f201f, 0x82902003, 0x82912003, 0x829f2003, 0x82a8205b, 0x82a92043, 0x82aa2003, 0x82ab2003, 0x82ac2003, 0x82ad2003,
0x82b42003, 0x82b52003, 0x82b62003, 0x82b72003, 0x82b82003, 0x82ba2003, 0x82bf2003, 0x82c12037, 0x82c22003, 0x82c42053, 0x82c62003, 0x82c92003,
0x82cb2017, 0x82cd2003, 0x82cf2003, 0x82d52003, 0x82d72003, 0x82d92003, 0x82db2003, 0x82dd2003, 0x82ec2003, 0x82f02033, 0x00f22803, 0xff0f0129,
0x821101c3, 0x82132003, 0x82152003, 0x00242403, 0x82260152, 0x00362803, 0x00370166, 0x82380114, 0x8239200b, 0x823a2027, 0x823b2007, 0x21ff8207,
0x07823f01, 0xaeff4324, 0x03825f01, 0x03826920, 0x1b827120, 0x3b827920, 0x03827e20, 0x1b828020, 0x07828220, 0x07828a20, 0x07828c20, 0x03828e20,
0x03829020, 0x0121e382, 0x20078293, 0x20178294, 0x20078296, 0x20038299, 0x2003829b, 0x243b829d, 0x019affa4, 0x240782a6, 0x013d00a8, 0x244f82aa,
0x0185ffae, 0x200b82b0, 0x207f82b1, 0x200b82b5, 0x201b82bc, 0x820f82bd, 0xc40121ef, 0xd7820b82, 0x82d80121, 0x82db203b, 0x82dc2003, 0x82dd204f,
0x82de2003, 0x82ea200b, 0x82ed2003, 0x82fa2003, 0x82fb20bb, 0x82fc203b, 0x82fd2007, 0x82fe2007, 0x00ff3007, 0x00000214, 0x00010252, 0xff280229,
0x825802ae, 0xff602403, 0x826a02c3, 0x826d2003, 0x82722013, 0x0076240f, 0x827f023d, 0x8281200f, 0x8283200f, 0x82852003, 0x8287200b, 0x82892003,
0x828b2003, 0x828d200f, 0x829f2007, 0x82a92023, 0x82aa2047, 0x82b2200f, 0x82b4200f, 0x82b52003, 0x82b6200f, 0x82b7200f, 0x82b82007, 0x82b92007,
0x82ba2007, 0x82bb2007, 0x82bd202b, 0x82ca200b, 0xffce2407, 0x82d90285, 0x82db2063, 0x82dd2003, 0x82e02003, 0x82e52037, 0x82f02017, 0x82f22007,
0x82f42003, 0x82f72003, 0x82f8200f, 0x82f92037, 0x82fa2007, 0x82fb2007, 0x00fc2807, 0x00050329, 0x8207033d, 0xff0a2403, 0x820c03c3, 0x820e2003,
0x82102013, 0xff112403, 0x82160385, 0x0017240f, 0x82180352, 0x821a200f, 0x821b200b, 0xff1d2413, 0x821f03ae, 0x82212003, 0x82232003, 0x82252003,
0x82272003, 0x82292003, 0x822b2003, 0x822d2003, 0x822f2003, 0x82312003, 0x82332003, 0x82362003, 0x82382037, 0x823a2003, 0x823c2003, 0x823e2003,
0x82402003, 0x82422003, 0x82442003, 0x82452003, 0x8247205b, 0x824a2003, 0x824c200b, 0x824e2003, 0x82502003, 0x82522003, 0x82542003, 0x82562003,
0x82582003, 0x825a2003, 0x825c2003, 0x825e2003, 0x82602003, 0x826f2003, 0x82702097, 0x82712037, 0x82722007, 0x82732007, 0x82742007, 0x00832e07,
0x00030052, 0x007b002d, 0x017b00f6, 0x260782a3, 0xff26005f, 0x822a00c3, 0x82322003, 0x82342003, 0xff372803, 0xff38009a, 0x823900d7, 0xff3a2407,
0x823c00ae, 0x82892007, 0x82942017, 0x82952003, 0x82962003, 0x82972003, 0x82982003, 0x829a2003, 0x829b2003, 0x829c202b, 0x829d2003, 0x829e2003,
0x829f2003, 0x82c8202f, 0x82ce2017, 0x82de2003, 0x82e02003, 0x82e22003, 0xffe42403, 0x820e01c3, 0x82122003, 0xff242403, 0x8226019a, 0xff2c2403,
0x823001d7, 0x82322003, 0x82342003, 0xff362403, 0x823801ae, 0x823a2017, 0x82662003, 0x826d2027, 0x82712003, 0x82b8200b, 0x82bb2007, 0x82bc2003,
0x82fa200b, 0x82fc2023, 0xfffe3003, 0xff0002ae, 0xff5f029a, 0xff6102c3, 0x826c02d7, 0x827e2007, 0x82842003, 0x82862003, 0x82882003, 0x828a2003,
0x828c2003, 0x82a92003, 0x82b12027, 0x82b32007, 0x82b52003, 0x82b7200b, 0x82b92003, 0x82bd2003, 0x82e12003, 0x82e32013, 0x82ef2003, 0x82f12003,
0xfff32403, 0x821503c3, 0xff172403, 0x8219039a, 0x82492007, 0x824b2003, 0x824d2003, 0x824f2003, 0x82512003, 0x82532003, 0x82552003, 0x82572003,
0x82592003, 0x825b2003, 0x825d2003, 0x258b8203, 0xd7ff6103, 0x03826303, 0x03826520, 0x03826720, 0x03826920, 0x03826b20, 0x03826d20, 0x53826f20,
0x03827120, 0x03827320, 0x9aff8326, 0x37001700, 0x1182d182, 0xff720129, 0xffb001c3, 0x82b501d7, 0x20e58303, 0x20dd82c4, 0x20d58276, 0x8303829f,
0x20b58bbd, 0x201382bb, 0x20b982bd, 0x200782ca, 0x200382ce, 0x205982e5, 0x20038205, 0x20038207, 0x83038211, 0xff1b2ab9, 0x006400d7, 0x00aeff05,
0x2403820a, 0x00ecff26, 0x2003822a, 0x20038232, 0x24038234, 0x0085ff37, 0x24078238, 0x00c3ff39, 0x4129823a, 0xec2205e3, 0x13829400, 0x03829520,
0x03829620, 0x03829720, 0x03829820, 0x03829a20, 0x03829b20, 0x03829c20, 0x03829d20, 0x03829e20, 0x2205e341, 0x82ce00ec, 0x82de200b, 0x82e02003,
0x82e22003, 0xffe42403, 0x820e01ec, 0x82122003, 0x82142003, 0xff2424c9, 0x82260185, 0x822c2003, 0x8230200f, 0x82322003, 0x82342003, 0x82362003,
0x09e7411b, 0x6d01ec22, 0x71201382, 0xb8202782, 0xbb200782, 0xbc200382, 0xfa200b82, 0xfc202382, 0xfe200382, 0x0020e182, 0x0724ed82, 0x0b02aeff,
0x5f240382, 0x6102ecff, 0x6c200382, 0x7e200382, 0x84200382, 0x86200382, 0x88200382, 0x8a200382, 0x8c200382, 0xa9240382, 0xb10285ff, 0xb3200782,
0xb5200382, 0xb7200b82, 0xb9200382, 0xbd200382, 0xe1200382, 0xe3201382, 0xef200382, 0xf1200382, 0xf3240382, 0x1503ecff, 0x17240382, 0x190385ff,
0x49200782, 0x4b200382, 0x4d200382, 0x4f200382, 0x51200382, 0x53200382, 0x55200382, 0x57200382, 0x59200382, 0x5b200382, 0x5d200382, 0x5f200382,
0x61200382, 0x63200382, 0x65200382, 0x67200382, 0x69200382, 0x6b200382, 0x6d200382, 0xef410382, 0x0085280d, 0xff2c0019, 0x823700ec, 0x82392003,
0x823b2003, 0x823c2003, 0x829f2003, 0x822420f1, 0x82262003, 0x82382003, 0x823a2003, 0x82712003, 0x82bc2003, 0x8400209d, 0x02ec22cd, 0x200782b5,
0x200382b7, 0x200382b9, 0x22ad84bd, 0x824503ec, 0x84472007, 0x03ec2165, 0x03212f82, 0x200b8273, 0x264f8283, 0x0005003b, 0x820a0029, 0x820c2003,
0xff262403, 0x822a00d7, 0x82322003, 0x82342003, 0x82402003, 0x82602013, 0x82892003, 0x8294200b, 0x82952003, 0x82962003, 0x82972003, 0x82982003,
0x829a2003, 0x82c82003, 0x82ce2003, 0x82de2003, 0x82e02003, 0x82e22003, 0xffe42403, 0x820e01d7, 0x82122003, 0x82662003, 0x826d2003, 0x82b82003,
0xffbb2803, 0x000702d7, 0x820b0229, 0x825f2003, 0x826c200b, 0x827e2003, 0x82842003, 0x82862003, 0x82882003, 0x828a2003, 0x828c2003, 0x82b12003,
0x82b32003, 0x82e12003, 0x82e32003, 0x82ef2003, 0x82f12003, 0xfff32403, 0x821503d7, 0x82192003, 0x82492003, 0x824b2003, 0x824d2003, 0x824f2003,
0x82512003, 0x82532003, 0x82552003, 0x82572003, 0x82592003, 0x825b2003, 0x825d2003, 0x276f8203, 0x0f004c00, 0x1100c3ff, 0x24200382, 0x5f41fb82,
0x00c32205, 0x200b8239, 0x0863413a, 0x3d00d722, 0x82200b82, 0x83200382, 0x84200382, 0x85200382, 0x86200382, 0x87200382, 0x88200382, 0x8e203b82,
0x8f200782, 0x90200382, 0x91200382, 0x9f200382, 0xc220f182, 0xc4200782, 0xc6200382, 0xec200382, 0xf0200382, 0xf2280382, 0x2401ecff, 0x2601c3ff,
0x36280382, 0x3801ecff, 0x3a01d7ff, 0x3b200382, 0x3d200b82, 0x3f200382, 0x43200382, 0x5f200382, 0x69200382, 0x71200382, 0xaa202782, 0xbc200782,
0xfa200782, 0xfc200782, 0xfe240382, 0x0002ecff, 0x2820f582, 0x58200782, 0x72200382, 0xa9240382, 0xb502c3ff, 0xb7200382, 0xb9200382, 0xbd200382,
0xd9200382, 0xdb201782, 0xdd280382, 0x1703ecff, 0x1d03c3ff, 0x1f200782, 0x21200382, 0x23200382, 0x25200382, 0x27200382, 0x29200382, 0x2b200382,
0x2d200382, 0x2f200382, 0x31200382, 0x33200382, 0x1f420382, 0x03d72609, 0x03d7ff71, 0x20038273, 0x26eb8283, 0x00050039, 0x820a003d, 0x000c2803,
0xff0f0029, 0x8211009a, 0x82222003, 0x8224200b, 0x003924f5, 0x823a0014, 0x823c2003, 0x072b4203, 0x17828220, 0x03828320, 0x03828420, 0x03828520,
0x03828620, 0x03828720, 0x4d828820, 0x27829f20, 0x0b82c220, 0x0382c420, 0xd7ffc628, 0x14003601, 0x03823801, 0x03823a20, 0x0f824320, 0x03825f20,
0x03826920, 0x0382aa20, 0x1382fa20, 0x0382fc20, 0x1400fe24, 0x03820002, 0x3d000724, 0x03820b02, 0xd7ff2824, 0x03825802, 0x03827220, 0x0382d920,
0x0382db20, 0xad82dd20, 0x03821d20, 0x03821f20, 0x03822120, 0x03822320, 0x03822520, 0x03822720, 0x03822920, 0x03822b20, 0x03822d20, 0x03822f20,
0x03823120, 0x03823320, 0x14006f24, 0x03827103, 0x93827320, 0x0543e583, 0x0ffd4405, 0x44ff8921, 0xc82019e9, 0xd5441b82, 0x01ec231d, 0xb144ff66,
0x06ad4405, 0x210afd42, 0x954402ec, 0x0791441b, 0x44178144, 0x0020327d, 0xe743e58b, 0x3bdf430d, 0xe3431420, 0x0064268e, 0x009aff05, 0x4103820a,
0xc9460fcb, 0x00ae2409, 0x48c3ff3a, 0xdf4106ad, 0x35c94619, 0x4601ec21, 0xc32019c9, 0x460ab148, 0xc32917c9, 0xc3fffc01, 0xc3fffe01, 0x05c94602,
0x0b029a25, 0x46029aff, 0x7545bbc9, 0x00d72117, 0x23057545, 0xff3c00d7, 0x211f7545, 0x754500d7, 0x003526eb, 0x0033ff0f, 0x20038211, 0x06914924,
0x2307ff47, 0x00d7ff3d, 0x2619b14e, 0xff890071, 0x829f00ec, 0x0b6d4e03, 0x2006a744, 0x072f4801, 0xd7ff3b24, 0x03823d01, 0x03823f20, 0x280b214e,
0x01aeffaa, 0x02ecffbb, 0x4d038200, 0x7222077d, 0x114daeff, 0x4c03200b, 0x6f212fb5, 0x086f48ff, 0x42187d47, 0xc3202b07, 0x22ec0742, 0x4937000c,
0xe7490aef, 0xffa92107, 0x2015e349, 0x262b8283, 0x00050021, 0x820a0052, 0xff0f2403, 0x4710009a, 0x85200caf, 0x2c10bf4d, 0x00ecff36, 0x00140037,
0x0085ff44, 0x20038246, 0x20038247, 0x20038248, 0x2437824a, 0x00aeff50, 0x20038251, 0x200f8252, 0x20078253, 0x20078254, 0x20078255, 0x20078256,
0x24078258, 0x00c3ff59, 0x2003825a, 0x2003825b, 0x2003825c, 0x2003825d, 0x201b8282, 0x20038283, 0x20038284, 0x20038285, 0x20038286, 0x23038287,
0x0071ff88, 0x201b174e, 0x202382a2, 0x200382a3, 0x200382a4, 0x200382a5, 0x200382a6, 0x200382a7, 0x200382a8, 0x200382a9, 0x200382aa, 0x200382ab,
0x200382ac, 0x200382ad, 0x207f82b3, 0x200782b4, 0x200382b5, 0x200382b6, 0x200382b7, 0x200382b8, 0x200382ba, 0x201b82bb, 0x200382bc, 0x200382bd,
0x200382be, 0x209782bf, 0x200382c1, 0x201b82c2, 0x200382c3, 0x200382c4, 0x200382c5, 0x200382c6, 0x200382c7, 0x201b82c8, 0x200782c9, 0x200382cb,
0x200382cd, 0x200f82ce, 0x200782cf, 0x200382d5, 0x200382d7, 0x200382d9, 0x200382db, 0x4e0382dd, 0x06240fa3, 0x0801aeff, 0x0a200382, 0x0e280382,
0x0f01c3ff, 0x110185ff, 0x12200382, 0x13200b82, 0x14200782, 0x15200782, 0x1c240782, 0x1d01ecff, 0x1f200782, 0x20200382, 0x21200b82, 0x22200782,
0x23200782, 0x24240782, 0x26011400, 0x37200382, 0x39202b82, 0x40200382, 0x43200382, 0x44201782, 0x4a200382, 0x5f200382, 0x66200382, 0x69201382,
0x6d200782, 0x71200782, 0x79202b82, 0x7b200b82, 0x7e207382, 0x80200782, 0x82201382, 0x84200782, 0x8a200f82, 0x8c200b82, 0x8e200b82, 0x90200382,
0x91200382, 0x93200f82, 0x94200782, 0x96200782, 0x99200782, 0x9b200382, 0xa0200382, 0xaa207b82, 0x2b4f0782, 0x20538208, 0x820f82ca, 0xd80121f7,
0xdb200782, 0xdc200382, 0xdd203382, 0xde200382, 0xea200b82, 0xed200382, 0xee200382, 0xfb200382, 0xfd201382, 0xff240382, 0x0102c3ff, 0x022c0382,
0x0302aeff, 0x07029aff, 0x0b025200, 0x28240382, 0x580285ff, 0x59200382, 0x5f200382, 0x60201f82, 0x6a200782, 0x6c200382, 0xbf820b82, 0x82720221,
0x827e200b, 0x827f200b, 0x82812007, 0x4f832007, 0x85200687, 0x86200f82, 0x87200b82, 0x88200782, 0x89200782, 0xcf820782, 0x828b0221, 0x828c200b,
0x828d2003, 0x00a9240f, 0x82aa0214, 0x82b1200b, 0x82b22003, 0x82b3200f, 0x82b42007, 0x82b52007, 0x82b62017, 0x82b7200b, 0x82b82007, 0x82b92007,
0x82ba2007, 0x82bd2007, 0x82d92007, 0x82da201f, 0x21d38203, 0x0782dc02, 0x0382dd20, 0x0382e020, 0x200bcb4f, 0x200f82f0, 0x202f82f1, 0x200782f2,
0x200782f3, 0x200782f4, 0x200782f8, 0x280382fa, 0x03c3fffc, 0x0385ff0a, 0x2003820c, 0x200b820e, 0x20038210, 0x20038215, 0x240f8216, 0x03140017,
0x200b8218, 0x20038219, 0x200f821a, 0x2003821d, 0x2003821e, 0x2003821f, 0x20038221, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x20038226,
0x20038227, 0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, 0x2003822e, 0x2003822f, 0x20038230, 0x20038231, 0x20038232,
0x20038233, 0x20038234, 0x20038236, 0x20038238, 0x2003823a, 0x2003823c, 0x2003823e, 0x20038240, 0x20038242, 0x20038244, 0x20838249, 0x2007824a,
0x2007824b, 0x2007824c, 0x2007824d, 0x2007824e, 0x2007824f, 0x20078250, 0x20078251, 0x20078252, 0x20078253, 0x20078254, 0x20078255, 0x20078256,
0x20078257, 0x20078258, 0x20078259, 0x2007825a, 0x2007825b, 0x2007825c, 0x2007825d, 0x2007825e, 0x2007825f, 0x24078260, 0x03aeff62, 0x20038264,
0x20038266, 0x20038268, 0x2003826a, 0x2003826c, 0x2003826e, 0x20238270, 0x20038272, 0x2a038274, 0x00140083, 0xff0f0023, 0x821100d7, 0x4d242003,
0xd7211c4b, 0x0a374d00, 0x0b4d0120, 0xffaa230b, 0xf34c02ec, 0x0bdf4c0b, 0x212edb4c, 0x1345e800, 0x09bf4c0c, 0x4e00c321, 0x44230fef, 0x5600c3ff,
0xc3220d37, 0xc5825000, 0x3f565120, 0x82532006, 0x82542007, 0x82552023, 0x82562007, 0x82582003, 0x82822003, 0x8283200f, 0x82842003, 0x82852003,
0x82862003, 0x82872003, 0xff882303, 0x574b0085, 0x82a2201b, 0x82a32023, 0x82a42003, 0x82a52003, 0x82a62003, 0x82a72003, 0x175f5603, 0x6b82b320,
0x6356b420, 0x82bb2016, 0x82bc201b, 0x82bd2003, 0x82be2003, 0x82c22003, 0x82c32027, 0x82c42003, 0x82c52003, 0x82c62003, 0x82c72003, 0x82c82003,
0x0b7b561b, 0x0f82ce20, 0x4f177f56, 0x06240fcf, 0x0801d7ff, 0x0a200382, 0x0e200382, 0x93560382, 0x82122007, 0xff13240b, 0x821401c3, 0x82152007,
0x821d2007, 0x821f2007, 0x82212003, 0x82232003, 0x82432003, 0x82442013, 0x824a2003, 0x825f200b, 0x82662007, 0x82692007, 0x826d2007, 0x82792007,
0x827b2007, 0x827e2007, 0x82822007, 0x82842003, 0x0b8f560b, 0x13829320, 0x200b8756, 0x500f82aa, 0x01210647, 0x560b82ca, 0x5b560b63, 0xffee220b,
0x0a8f44d7, 0x5802c326, 0x5902c3ff, 0x5f200382, 0x4f561782, 0x826c2007, 0x8272200b, 0x827e2013, 0x827f2007, 0x217b8207, 0x07828502, 0x0f828620,
0x07828720, 0x07828820, 0x07828920, 0x20078f50, 0x200b828d, 0x201382b1, 0x200782b2, 0x200782b3, 0x200782b4, 0x200382d9, 0x200382da, 0x200382db,
0x200382dc, 0x200382dd, 0x500382e0, 0xf0200bb3, 0xf1200f82, 0xf2202f82, 0xf3200782, 0xf4240782, 0x0a03c3ff, 0x0c200382, 0x15240382, 0x1603d7ff,
0x19200782, 0x1a200782, 0x1d200782, 0x1e200382, 0x1f200382, 0x21200382, 0x22200382, 0x23200382, 0x24200382, 0x25200382, 0x26200382, 0x27200382,
0x28200382, 0x29200382, 0x2a200382, 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, 0x30200382, 0x31200382, 0x32200382, 0x33200382,
0x34200382, 0x3f560382, 0x8249201f, 0x824a2083, 0x824b2027, 0x824c2007, 0x824d2007, 0x824e2007, 0x824f2007, 0x82502007, 0x82512007, 0x82522007,
0x82532007, 0x82542007, 0x82552007, 0x82562007, 0x82572007, 0x82582007, 0x82592007, 0x825a2007, 0x825b2007, 0x825c2007, 0x825d2007, 0x825e2007,
0x825f2007, 0x82602007, 0x82622007, 0x82642007, 0x82662003, 0x82682003, 0x826a2003, 0x826c2003, 0xff6e2a03, 0x00e900d7, 0x00660005, 0x2403820a,
0x00aeff0f, 0x20038211, 0x4d158224, 0x44200fbf, 0x46201382, 0x47200382, 0x48200382, 0x4a240382, 0x5000ecff, 0x51200382, 0x52200382, 0x53200f82,
0x54200782, 0x55200782, 0x56200782, 0x58200782, 0x5d200782, 0x91500382, 0x00ae2119, 0x201bdf4f, 0x204382a2, 0x200382a3, 0x200382a4, 0x200382a5,
0x200382a6, 0x200382a7, 0x200382a8, 0x200382a9, 0x200382aa, 0x200382ab, 0x200382ac, 0x200382ad, 0x206b82b3, 0x200782b4, 0x200382b5, 0x200382b6,
0x200382b7, 0x200382b8, 0x200382ba, 0x201b82bb, 0x200382bc, 0x200382bd, 0x200382be, 0x201382c2, 0x200382c3, 0x200382c4, 0x200382c5, 0x200382c6,
0x200382c7, 0x201b82c8, 0x200782c9, 0x200382cb, 0x200382cd, 0x200f82ce, 0x200782cf, 0x200382d5, 0x200382d7, 0x200382d9, 0x200382db, 0x550382dd,
0x06240f4d, 0x0801ecff, 0x0a200382, 0x24065955, 0x01d7ff0f, 0x20038211, 0x200f8212, 0x20078213, 0x20078214, 0x43078215, 0x40200fa1, 0x43201782,
0x44201782, 0xa5430382, 0x01d72205, 0x20138266, 0x200f8269, 0x2007826d, 0x20078279, 0x2007827b, 0x2007827e, 0x20038282, 0x200b8284, 0x2007828c,
0x2003828e, 0x20038290, 0x20038293, 0x20038296, 0x20038299, 0x06bd519b, 0x2106ef50, 0x0f82ca01, 0x0382cf20, 0x0382d820, 0x0382db20, 0x0382de20,
0x0382ea20, 0x0382ed20, 0x2a05a543, 0x000b0266, 0xff280266, 0x825802d7, 0x82592003, 0xff5f2403, 0x826002ec, 0x826a2007, 0x826c2003, 0x8272200b,
0x827e2007, 0x827f2007, 0x82842007, 0x82852007, 0x82862007, 0x82872007, 0x82882007, 0x82892007, 0x07cd5507, 0x0b828d20, 0x1382b120, 0x0782b220,
0x0782b320, 0x0782b420, 0x0382d920, 0x0382da20, 0x02217f82, 0x200782dc, 0x200382dd, 0x510382e0, 0xf0200b5b, 0xf1200f82, 0xf2202f82, 0xf3200782,
0xf4240782, 0x0a03d7ff, 0x0c200382, 0x15240382, 0x1603ecff, 0x19200782, 0x1a200782, 0x1d200782, 0x1e200382, 0x200a6d52, 0x200b8222, 0x20038223,
0x20038224, 0x20038225, 0x20038226, 0x20038227, 0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, 0x2003822e, 0x2003822f,
0x20038230, 0x20038231, 0x20038232, 0x20038233, 0x20038234, 0x20038236, 0x20038238, 0x2003823a, 0x2003823c, 0x2003823e, 0x20038240, 0x20038242,
0x20038244, 0x20838249, 0x2007824a, 0x2007824b, 0x2007824c, 0x2007824d, 0x2007824e, 0x2007824f, 0x20078250, 0x20078251, 0x20078252, 0x20078253,
0x20078254, 0x20078255, 0x20078256, 0x20078257, 0x20078258, 0x20078259, 0x2007825a, 0x2007825b, 0x2007825c, 0x2007825d, 0x2007825e, 0x2007825f,
0x20078260, 0x20078262, 0x20038264, 0x20038266, 0x20038268, 0x2003826a, 0x2403826c, 0x00ecff6e, 0x082b568c, 0x200f3747, 0x201d8246, 0x20038247,
0x20038248, 0x20038252, 0x46038254, 0xa8201bfb, 0xa9201f82, 0xaa200382, 0xab200382, 0xac200382, 0xad200382, 0xb4200382, 0xb5200382, 0xb6200382,
0xb7200382, 0xb8200382, 0xba200382, 0xb7460382, 0x00ec2205, 0x200b82cb, 0x460382cd, 0xec2205b7, 0x0b82d500, 0x0382d720, 0x0382d920, 0x0382db20,
0x0382dd20, 0x460fb746, 0xec2505ab, 0xecff1101, 0x05ab4601, 0xab46ec20, 0x01ec2106, 0x20079b56, 0x201b8279, 0x2003827e, 0x20038282, 0x2003828c,
0x2003828e, 0x20038290, 0x20038293, 0x20038296, 0x20038299, 0x4603829b, 0xcf20077b, 0xd8200b82, 0xdb200382, 0xde200382, 0xea200382, 0xed220382,
0xdb56ecff, 0x8260200c, 0x826a200f, 0x07e35603, 0x0b827f20, 0x21056346, 0x634602ec, 0x02ec2105, 0x21056346, 0x634602ec, 0x02ec2109, 0x21056346,
0x634602ec, 0x02ec2205, 0x463782e0, 0xec260d4f, 0xd7fff102, 0x1782f202, 0x26054f46, 0xff0a03ec, 0x820c03ec, 0x054f4603, 0x4603ec21, 0xec22054f,
0x13823603, 0x03823820, 0x03823a20, 0x03823c20, 0x03823e20, 0x03824020, 0x03824220, 0x03824420, 0x2105f345, 0xf34503ec, 0x03ec2105, 0x2105f345,
0xf34503ec, 0x03ec2105, 0x2105f345, 0xf34503ec, 0x03ec2105, 0x2105f345, 0xf34503ec, 0x03ec2105, 0x2105f345, 0xf34503ec, 0x03ec2105, 0x2105f345,
0xf34503ec, 0x01ec2205, 0x16794906, 0x79499a20, 0xff362810, 0xff4400ec, 0x8246009a, 0x82472003, 0x82482003, 0x05854e03, 0x5100c326, 0x5200c3ff,
0x53200f82, 0x54200782, 0x55200782, 0x56240782, 0x5800aeff, 0x5b240782, 0x5c00d7ff, 0x7d4e3b82, 0x009a2205, 0x201f8283, 0x20038284, 0x20038285,
0x20038286, 0x4e038287, 0xd721057d, 0x17c15800, 0x2382a220, 0x0382a320, 0x0382a420, 0x0382a520, 0x0382a620, 0x0382a720, 0x0382a820, 0x0382a920,
0x0382aa20, 0x0382ab20, 0x0382ac20, 0x0382ad20, 0x7782b320, 0x0782b420, 0x0382b520, 0x0382b620, 0x0382b720, 0x0382b820, 0x0382ba20, 0x1b82bb20,
0x0382bc20, 0x0382bd20, 0x0382be20, 0x9b82bf20, 0x0382c120, 0x1b82c220, 0x0382c320, 0x0382c420, 0x0382c520, 0x0382c620, 0x0382c720, 0x2205d942,
0x82cb009a, 0x82cd200b, 0x05d94203, 0xd5009a22, 0xd7200b82, 0xd9200382, 0xdb200382, 0xdd200382, 0xd9420382, 0xff06240f, 0x820801c3, 0x820a2003,
0x05e54203, 0x11019a24, 0xe5429aff, 0x429a2006, 0x9a2106e5, 0x057d4e01, 0x1f01ae25, 0x4e01aeff, 0xae21057d, 0x057d4e01, 0x3901ae25, 0x4e01ecff,
0x9a220571, 0x3b824401, 0x23824a20, 0x07825f20, 0x2105a549, 0xa549019a, 0x019a2205, 0x2063827b, 0x2017827e, 0x202f8280, 0x20078282, 0x200f8284,
0x200b828a, 0x200b828c, 0x2003828e, 0x20038290, 0x20038293, 0x20038296, 0x20038299, 0x4e03829b, 0x9a210565, 0x09b14901, 0xcf019a22, 0xd8201782,
0xdb200382, 0xdd200382, 0xde203f82, 0xea200782, 0xed200382, 0xee260382, 0x0102aeff, 0xb949ecff, 0x029a260a, 0x029aff58, 0x49038259, 0x9a2205b9,
0x0b826a02, 0xd7ff6c24, 0x27826d02, 0x0b827220, 0x2205bd49, 0x8281029a, 0x4383200f, 0x9a200861, 0x20066143, 0x0661439a, 0x8a029a22, 0x8b203382,
0x8c201f82, 0x8d200782, 0x65433782, 0x439a2005, 0x9a220665, 0x1b82b802, 0x0382ba20, 0x1b82d920, 0x0382da20, 0x02219f82, 0x200782dc, 0x200382dd,
0x430382e0, 0x9a200d81, 0x21068143, 0x8143029a, 0x029a2205, 0x203b82f8, 0x280382fa, 0x03ecfffc, 0x039aff0a, 0x2003820c, 0x200b820e, 0x08954310,
0x95439a20, 0x039a2206, 0x201b821d, 0x2003821e, 0x2003821f, 0x20038221, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x20038226, 0x20038227,
0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, 0x2003822e, 0x2003822f, 0x20038230, 0x20038231, 0x20038232, 0x20038233,
0x20038234, 0x20038236, 0x20038238, 0x2003823a, 0x2003823c, 0x2003823e, 0x20038240, 0x20038242, 0x43038244, 0x9a2005f1, 0x2006f143, 0x06f1439a,
0xf1439a20, 0x439a2006, 0x9a2006f1, 0x2006f143, 0x06f1439a, 0xf1439a20, 0x439a2006, 0x9a2006f1, 0x2006f143, 0x06f1439a, 0xf1439a20, 0x039a2606,
0x03c3ff62, 0x20038264, 0x20038266, 0x20038268, 0x2003826a, 0x2003826c, 0x2403826e, 0x03ecff70, 0x22038272, 0x58ecff74, 0x6f5e0c8b, 0x1b91490d,
0x48217159, 0x6d2305b9, 0x5901ecff, 0x01268371, 0xd7ff0a00, 0x435b0400, 0x5a022007, 0x002106c3, 0x08ef4a26, 0x14005923, 0x05896400, 0xbf001422,
0xc1240b82, 0x37011400, 0x39200382, 0x80200382, 0x8a200382, 0x91200382, 0x94200382, 0xdc200382, 0xdd200382, 0xfb200382, 0xfd200382, 0xff240382,
0x01021400, 0x07210382, 0x05434900, 0x0b826d20, 0x03828120, 0x03828320, 0x03828b20, 0x0382aa20, 0x0382b620, 0x0382b820, 0x0382ba20, 0x0382f820,
0x0382fa20, 0x1400fc24, 0x03820e03, 0x03821020, 0x03821820, 0x03827020, 0x03827220, 0x7f827420, 0xe3470520, 0x844a2008, 0x02292559, 0x0029000b,
0xc320c783, 0x2924c784, 0x29000a00, 0x2307e746, 0x5b000300, 0x5d28df82, 0x4001ecff, 0x1f00ecff, 0x4420d588, 0x4a200d82, 0xa2200382, 0xa3200382,
0xa4200382, 0xa5200382, 0xa6200382, 0xa7200382, 0xc3200382, 0xc5200382, 0xc7200382, 0x2b823982, 0xffca0123, 0x855382ec, 0x825920c5, 0x82da200b,
0xffdc2403, 0x821e03ec, 0x82222003, 0x82242003, 0x82262003, 0x82282003, 0x822a2003, 0x822c2003, 0x822e2003, 0x82302003, 0x82322003, 0x82342003,
0x20b9834b, 0x229d8252, 0x84570052, 0x825220b9, 0x825220b9, 0x070f5591, 0x158a4920, 0xe5883620, 0xbf825220, 0x0382a820, 0x2016b74b, 0x07434b01,
0xd7ff1324, 0x03821501, 0x201bf74a, 0x05df4ad8, 0x4a080548, 0x7f2407c3, 0x8502d7ff, 0x87200382, 0x89200382, 0x8d200382, 0xb2200382, 0xb4200382,
0x2006874a, 0x200782f0, 0x4a0382f2, 0x16240b73, 0x1a03d7ff, 0x4a200382, 0x4c200382, 0x4e200382, 0x50200382, 0xaf820382, 0x82540321, 0x82562007,
0x82582003, 0x825a2003, 0x825c2003, 0x825e2003, 0x82602003, 0x5d0520c7, 0xef8508af, 0x0b023d2c, 0x32003d00, 0xecff5200, 0x0382a800, 0x82166149,
0x01ec26e7, 0x01ecff11, 0x20038213, 0x1e054915, 0x1f82d820, 0xecffde23, 0x07e14802, 0x0b827f20, 0x03828520, 0x03828720, 0x03828920, 0x03828d20,
0x0382b220, 0x0382b420, 0x0382e020, 0x0382f020, 0x0382f220, 0x48fff421, 0x162009a9, 0x1a200b82, 0x4a200382, 0x4c200382, 0x4e200382, 0x50200382,
0xa7820382, 0xec22df82, 0x0b825603, 0x03825820, 0x03825a20, 0x03825c20, 0x03825e20, 0xbf826020, 0x71010326, 0x7801d7ff, 0x91230382, 0x83002900,
0x019a240d, 0x82c3ff72, 0x00c32211, 0x08c36294, 0x85ff0d28, 0x44000f00, 0x03821e00, 0xc3ff2224, 0x39822600, 0x03822a20, 0x5e002d23, 0x1bd76200,
0x3b003d24, 0x27824900, 0x03825720, 0xd7ff5924, 0x07825a00, 0x07825c20, 0x03828220, 0x5c1b9744, 0xbf201329, 0xc1203382, 0x5e06d14d, 0x00231225,
0x625e00f6, 0x372828ff, 0x3801ecff, 0x39019aff, 0x3a20f782, 0x3b230782, 0x82013b00, 0x3f0121ab, 0x66200782, 0x2406615e, 0x0185ff71, 0x201f8280,
0x2003828a, 0x20038291, 0x20038294, 0x636382a3, 0xdc200b27, 0xdd201382, 0xfa200382, 0xfb200382, 0xfc203782, 0xfd200782, 0xfe200782, 0xff2b0782,
0x0002ecff, 0x01029aff, 0x6302d7ff, 0x6d20133f, 0x2006854d, 0x20078281, 0x63038283, 0x8b200f4b, 0x4f631382, 0x82aa2007, 0x0b53630b, 0x0f82b620,
0x85ffb724, 0x0782b802, 0x0782b920, 0x0782ba20, 0x21165f63, 0x1b82f802, 0x0382fa20, 0xd7fffc24, 0x03820e03, 0x03821020, 0xecff1528, 0x85ff1703,
0x854d1803, 0x4f776306, 0x57827020, 0x9aff7124, 0x07827203, 0x07827320, 0x07827420, 0x85ff8324, 0x51429100, 0x334d4220, 0x104e4942, 0xa0014502,
0x45429220, 0x447f200a, 0xd7200a97, 0x282c9744, 0x00e5ff57, 0x00d5ff59, 0x2207825a, 0x52dbff5c, 0x8f441cb9, 0x00db2215, 0x493782c1, 0x8f441643,
0x44e5202e, 0xdb21068f, 0x1d8f4401, 0x8a01db26, 0x9101d5ff, 0x94200382, 0x8f440382, 0x01d52511, 0x01dbffdd, 0x21058f44, 0x8f4401e5, 0x01e52105,
0x20058f44, 0x068f44e5, 0x8f44db20, 0x02db2a16, 0x02ecff7e, 0x02dbff81, 0x44038283, 0xdb21118f, 0x098f4402, 0xe367d520, 0xffb6230c, 0x8f4402d5,
0x02db2105, 0x21058f44, 0x8f4402db, 0x02db2219, 0x245f82fa, 0x03dbfffc, 0x2003820e, 0x44038210, 0xd520098f, 0x20540768, 0x44638270, 0xdb21058f,
0x058f4403, 0x8303db2c, 0x950085ff, 0x66ff0500, 0x03820a00, 0x10ff0d21, 0x35014902, 0x66ff0628, 0xaeff0702, 0x07820a02, 0x07820b20, 0x5b632020,
0xff6d210e, 0x66f15542, 0x10200917, 0x46067557, 0x842407d5, 0x8900ecff, 0x8a200382, 0x6b06f168, 0x534417f3, 0x00f62207, 0x088d463d, 0x20079748,
0x4d1382a3, 0x3720838b, 0x8f08f34b, 0x20e183e5, 0x22e7678b, 0x229bdd40, 0x5d240020, 0x655d1a69, 0x00572463, 0x6bd7ff0c, 0x2d24105f, 0x3600f6ff,
0x37249982, 0x3900c3ff, 0xf1651f82, 0x8240200f, 0x82602013, 0x196f6b03, 0x292cf965, 0xf6fff600, 0xecff1c01, 0x03822001, 0x7f6b2220, 0x82a02032,
0x82a32033, 0x8f876b43, 0x515f4220, 0xff30240c, 0x823d00ec, 0x41442003, 0x88231af3, 0x4f00d7ff, 0xc220177f, 0x2006834f, 0x06874fc4, 0x8b4fc620,
0x0f996c06, 0x01205f82, 0x24079d6c, 0x01ecffaa, 0x0a955fca, 0x0b825920, 0x03827220, 0x0382d920, 0x0382da20, 0x0382db20, 0x0382dc20, 0xecffdd24,
0xbb4f1d03, 0x821f2006, 0x82212007, 0x82222003, 0x82232003, 0x82242003, 0x4f252003, 0x272006cb, 0x28200782, 0x29200382, 0x2006d34f, 0x06d74f2b,
0xdb4f2d20, 0x4f2f2006, 0x312006df, 0x32200782, 0x2006a56c, 0x2a838234, 0x0005002f, 0xff090052, 0x820a00c3, 0x000c2507, 0x000d003d, 0x6405996c,
0x63560ded, 0xff2d2409, 0x823000be, 0xff32242f, 0x823400d7, 0x82362003, 0x003724ed, 0x82390027, 0x003a2437, 0x82400014, 0x0f7b5643, 0xe5ff4923,
0x237f5600, 0x5607254e, 0x60200b87, 0x82214f82, 0xec8b56ff, 0xfff60024, 0x8f5601be, 0x00242443, 0x82260127, 0x00362603, 0xff370114, 0x249f56ec,
0x2f827120, 0x56ff7921, 0xd72117a3, 0x0ba35601, 0xd7ff9124, 0x2b829301, 0x07829420, 0x200fab56, 0x20c382a3, 0x561b82aa, 0xbc2007af, 0xca205782,
0xb3560f82, 0x05414f0b, 0x5601ec21, 0x01210eb7, 0x20af82fa, 0x20af82fb, 0x200782fc, 0x200782fd, 0x220782fe, 0x56ecffff, 0xa92368cf, 0x4f022700,
0xd7230575, 0x56ffb202, 0xb52009d7, 0xb6241782, 0xb702d7ff, 0xb8200782, 0xb9208f82, 0xba200782, 0xbd200782, 0xeb560782, 0x0017225b, 0x06ad4f27,
0x1a03d723, 0xf31610ff, 0x032f0401, 0x00270083, 0xff050002, 0xff0a0098, 0x870300d7, 0x0b022109, 0x06200d82, 0x6f200d82, 0x6f241782, 0xdbff4900,
0x830c5555, 0x82be2031, 0x00be2219, 0x08db5361, 0xbeff0f24, 0x03821100, 0xb4ff2228, 0xf6ff4600, 0x03824700, 0x03824820, 0x14004924, 0x07824a00,
0x03825220, 0x03825420, 0x06005724, 0x0782a800, 0x0382a920, 0x0382aa20, 0x0382ab20, 0x0382ac20, 0x0382ad20, 0x0382b420, 0x0382b520, 0x0382b620,
0x0382b720, 0x0382b820, 0x0382ba20, 0x0382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0xf6ffdd24,
0x03820f01, 0x03821120, 0x03821320, 0x03821520, 0x03827920, 0x03827e20, 0x03828220, 0x03828c20, 0x03828e20, 0x03829020, 0x03829320, 0x03829620,
0x03829920, 0x03829b20, 0x01214f82, 0x200782d8, 0x200382db, 0x200382de, 0x2c0382ea, 0x02f6ffed, 0x023d0007, 0x028dff08, 0x2007820b, 0x2807820c,
0x0281ff10, 0x020c0015, 0x201b8260, 0x2003826a, 0x2003827f, 0x20038285, 0x20038287, 0x20038289, 0x2003828d, 0x200382b2, 0x200382b4, 0x200382e0,
0x200382f0, 0x240382f2, 0x03f6fff4, 0x2003820a, 0x2003820c, 0x20038216, 0x2003821a, 0x20038236, 0x20038238, 0x2003823a, 0x2003823c, 0x2003823e,
0x20038240, 0x20038242, 0x20038244, 0x2003824a, 0x2003824c, 0x2003824e, 0x20038250, 0x20038252, 0x20038254, 0x20038256, 0x20038258, 0x2003825a,
0x2003825c, 0x2003825e, 0x20ff8260, 0x10854107, 0x200b6955, 0x08eb4f65, 0x20097354, 0x1c7354e1, 0x4f2f0d52, 0x055216bf, 0xf34b7728, 0x28099958,
0x008f000c, 0x00a40022, 0x24038240, 0x00520045, 0x2403824b, 0x003d004c, 0x2003824d, 0x200b824e, 0x2c03824f, 0x00b80060, 0x00f600ae, 0x00cd00b0,
0x200382b1, 0x201382e7, 0x242f82e9, 0x000a01eb, 0x200f82ed, 0x241b82ef, 0x002900f1, 0x243382f5, 0x00e100f7, 0x201f82f9, 0x240382fc, 0x015200fe,
0x20038200, 0x28038202, 0x02520004, 0x028f0007, 0x266f820b, 0x002d0001, 0x4c3a0066, 0x1942087f, 0x42522009, 0x05420819, 0x21f1411b, 0x208d6774,
0x22e98843, 0x4b140030, 0xd72006fd, 0x710a6577, 0x592405ef, 0x5c00ecff, 0x9f240382, 0xbf00d7ff, 0x4b05255f, 0x23280cb9, 0x2401ecff, 0x2601d7ff,
0x36200382, 0x38200b82, 0x39200782, 0x3a200782, 0x71200782, 0x80200382, 0x8a200b82, 0x91200382, 0x94200382, 0xa0200382, 0xbc200382, 0xdc201782,
0xdd200782, 0x41770382, 0x05595e0f, 0x0b022928, 0x6d022900, 0x315eecff, 0x828b2008, 0xffa9240b, 0x82aa02d7, 0x82b52007, 0x82b62007, 0x82b72007,
0x82b82007, 0x82b92007, 0x82ba2007, 0x82bd2007, 0x0be15d07, 0x2807d95d, 0x03d7ff17, 0x03ecff18, 0x2007826f, 0x20078270, 0x20078271, 0x20078272,
0x20078273, 0x20078274, 0x208f8283, 0x1603611e, 0x028d2f10, 0x852f1055, 0x01200a02, 0x4f057944, 0x5c201529, 0x4f0ac77b, 0xec210f29, 0x0f294f00,
0x103b214f, 0x4f01190f, 0x4f23b165, 0xec201d11, 0x650c114f, 0x094f13b5, 0x1fbd6523, 0xd7ff0f25, 0x65ff2802, 0xa92259c1, 0x2b692700, 0x0ded4e06,
0x2173e94e, 0x0e10ff19, 0x200d01e5, 0x08014ac5, 0x7d611020, 0x0755580a, 0xd7ff3627, 0xecff3800, 0x13356c00, 0x22054f53, 0x615c00d7, 0x516c2e71,
0x0b9d612f, 0x8b82c920, 0x2209596c, 0x82cf00ec, 0x15596c0f, 0x1800ec21, 0x240fbd44, 0x01ecff0f, 0x20038211, 0x063b6312, 0x26050573, 0xff1c01ec,
0x822001d7, 0x82222003, 0xd1441803, 0x8237200f, 0x82392013, 0x07215903, 0x20077d6c, 0x20138280, 0x20478282, 0x6c07828a, 0xb3520b85, 0x01ec2105,
0x2105b352, 0x8d6c01ec, 0x82a02007, 0x82b82027, 0x82bb202f, 0x0b916c03, 0x2105a352, 0x996c01d7, 0xfb01210a, 0xfd202b82, 0xff220382, 0xe161d7ff,
0x85431805, 0x05c76308, 0xad6c6120, 0x02ec2108, 0x2007e961, 0x6113827f, 0x85200bed, 0x776f0f82, 0x02ec2105, 0x2205776f, 0x828a02ec, 0x07f96113,
0x0b828d20, 0x22058352, 0x82b202ec, 0x057f6f0b, 0xb602ec22, 0xb8207382, 0xba200382, 0xcd6c0382, 0x02ec2105, 0x07554518, 0x2782f020, 0x2105776f,
0x776f02ec, 0x62ec2005, 0x0a240c01, 0x0c03ecff, 0x09620382, 0x8216200b, 0x0709620f, 0x0b821a20, 0x2221e56c, 0x824a03ec, 0x05336f27, 0x6f03ec21,
0xec220533, 0x73644f03, 0x05336f06, 0x6f03ec21, 0xec210533, 0x05336f03, 0x6f03ec21, 0xec220533, 0x27825903, 0x03825a20, 0x2105336f, 0x336f03ec,
0x03ec2105, 0x2105336f, 0x451803ec, 0x70241bd5, 0x7203d7ff, 0x74240382, 0x3300d7ff, 0x22548565, 0x6514000b, 0x0b247489, 0x29006201, 0x82052772,
0xff6d3007, 0xff7101ec, 0xff720185, 0xff73019a, 0x827501d7, 0x82782003, 0x8288200b, 0xff91241b, 0x180300c3, 0x26080943, 0x00ecff73, 0x825f010b,
0x8264202f, 0x82672003, 0x826c2003, 0x84702003, 0x82c3203f, 0x01d7223f, 0x203b8274, 0x200f8277, 0x20078278, 0x222d8288, 0x82100024, 0xff6d2241,
0x223582c3, 0x7662019a, 0x73200a43, 0x76202182, 0x79200382, 0x7a206982, 0x20060156, 0x201f827d, 0x240b827e, 0x01aeff81, 0x20078282, 0x201f8283,
0x20138284, 0x20078285, 0x20078286, 0x20038287, 0x20038289, 0x06b96c8c, 0x07828f20, 0x03829020, 0x13829220, 0x33829320, 0x27829420, 0x0b829520,
0x0b829620, 0x0b829820, 0x1b829920, 0x0f829a20, 0xaeff9b28, 0xc3ff0202, 0xcd840302, 0x11827120, 0x03827220, 0x0d827820, 0x79011922, 0x7d202782,
0x7e200382, 0x80200382, 0x81200382, 0x83200382, 0x7385c182, 0x8801d726, 0x8a012900, 0x8b201382, 0x8c201382, 0x8d200782, 0x8f200782, 0x90200382,
0x91200b82, 0x92200782, 0x93200782, 0x94200382, 0x95200b82, 0x96200782, 0x7b850782, 0x9a01d722, 0x9b240f82, 0x5000d7ff, 0x64105952, 0x4f501b7b,
0x131d621b, 0x20216350, 0xd74218d7, 0x18d7201a, 0x4214d742, 0xc329090b, 0x9aff7801, 0xc3ff9101, 0xa9491801, 0x6503201e, 0x71204fd9, 0x08414b18,
0x18008523, 0x4d491800, 0x05914223, 0x4201d721, 0xec260591, 0xecff7201, 0x03827401, 0x20059142, 0x29c582ec, 0xff9401ec, 0xff0002ec, 0x401803ec,
0x03250add, 0x00ecff83, 0x7b441872, 0x0b7d7f08, 0x180fc776, 0x25138744, 0x009aff6d, 0x8f76ff7d, 0x35b7411d, 0x258f4418, 0x85ff5f28, 0x9aff6201,
0xe9826601, 0x07826920, 0x07826d20, 0xaeff7323, 0x055d4301, 0x7a018522, 0x200e717e, 0x7e238281, 0xc3210575, 0x0b554301, 0xc3ff8a24, 0x2b828c01,
0x07828d20, 0x23828e20, 0x897e8f20, 0x0561430a, 0x94018522, 0x61431b82, 0x019a2605, 0x01290097, 0x200f8298, 0x43278299, 0x9a220565, 0x0f82fa01,
0x0b034518, 0x9aff0224, 0x03820302, 0x03820720, 0x0a0b4518, 0x205c2b42, 0x16b551b2, 0x01333c10, 0x00622271, 0x08a77514, 0x6bff7121, 0x614605ed,
0x01c32a09, 0x01c3ff79, 0x01290088, 0x1df37b8d, 0x5b7b0320, 0x470820f7, 0x01250b79, 0x01d7ff92, 0x43038295, 0xd7260577, 0xd7ff9a01, 0xb5614700,
0x17ad6110, 0x1846a561, 0x2028154d, 0x24a98262, 0x01ecff67, 0x16254869, 0x1f827820, 0x240fe755, 0x02ecff28, 0x06836058, 0x43014d18, 0x3f410520,
0x8281200c, 0x00882489, 0x792a0029, 0xf778180b, 0x2b4f181b, 0x4b4b181f, 0xff73240b, 0x419101ae, 0x517005a9, 0xff5f2308, 0x4e1803d7, 0xd0202ff3,
0x20083748, 0x20b78222, 0x128f4d24, 0x13e15118, 0x51094118, 0x2d674b18, 0x751d4118, 0x1800ec21, 0x210d1d41, 0x411800ec, 0x0b4e191d, 0x1d41180d,
0x01ec210d, 0x091d4118, 0x1801ec21, 0x181b1d41, 0x49192b4c, 0x41180953, 0xed6f0b41, 0x115f490b, 0x5f49d720, 0xff282118, 0x0b054118, 0x6002ec22,
0x61220f82, 0x1545ecff, 0x03ec257e, 0x03c3ff4a, 0x2005974d, 0x06974dc3, 0x974dc320, 0x03c32106, 0x2005974d, 0x06974dc3, 0x974dc320, 0x4dc32006,
0xc3200697, 0x2106974d, 0x974d03c3, 0x4dc32005, 0xc3200697, 0x2106974d, 0xdf8303c3, 0xd7ff6224, 0xe7826303, 0x07826420, 0x07826520, 0x07826620,
0x07826720, 0x07826820, 0x07826920, 0x07826a20, 0x07826b20, 0x07826c20, 0x07826d20, 0x55186e20, 0x85201079, 0x220abb4c, 0x45290088, 0x29459a2d,
0x05bd4a1b, 0x4501d721, 0x36205f2d, 0x70b94c18, 0xaeff6228, 0xecff6401, 0x07826901, 0x07827420, 0x03827820, 0xd7ff8124, 0x03828801, 0xd7ff8e22,
0x0bcd4c18, 0x3cbd4c18, 0xf1452920, 0x77b58262, 0x0220095d, 0x2033ed45, 0x0cb74aea, 0x5c0d1167, 0xc54c6171, 0x00d72105, 0x01074c10, 0x05a14d57,
0x1801c321, 0x240b0b4c, 0x01c3ff73, 0x21038276, 0xa54dff79, 0x187d2009, 0x510a1b4c, 0x85220507, 0x13828401, 0x03828620, 0x03828720, 0x14008824,
0x4c188901, 0xa94d0e2f, 0x01ae210d, 0x07374c18, 0x27829520, 0x5b829620, 0x3d009724, 0x0b829801, 0x2205a94d, 0x189b01ae, 0x4d140b4c, 0x4c1806a9,
0x0320190b, 0x01234b10, 0x002d2107, 0x25052350, 0xff1100c3, 0xdd52009a, 0x019a2511, 0x01d7ff6d, 0x2105dd41, 0xe15201d7, 0x01ae2905, 0x01c3ff7b,
0x01ecff7c, 0x22056d52, 0x827f019a, 0x058b4f23, 0x5201ae21, 0xe94113e9, 0x01c32105, 0x21057952, 0x934f019a, 0x019a2505, 0x019aff90, 0x20057952,
0x080f69c3, 0x2005934f, 0x0a934fae, 0x52019a21, 0x0a250ff9, 0xd7ff5f01, 0x09974b01, 0x5301d721, 0x74200709, 0x77209982, 0x78201b82, 0x88240782,
0x1700d7ff, 0x8308b54d, 0x827920c3, 0x22b785b3, 0x827e01ec, 0x8281200b, 0x82852003, 0x82862003, 0x20a38303, 0x0811538c, 0x9782ec20, 0x5301d721,
0xec210511, 0x0d0d5301, 0x0d53ec20, 0x00ec2a06, 0xff0f000c, 0xff1100ae, 0x208f82ae, 0x208f84c3, 0x20778269, 0x95461881, 0x82ec2008, 0x01ec21d5,
0x0abb4318, 0x86030021, 0x01d722a9, 0x209d8278, 0x108d632c, 0x53074d53, 0x25531b39, 0x09896321, 0x8b827320, 0xe9868020, 0x9120e183, 0x0c1f4418,
0xbd50ec20, 0xef00212f, 0x5d1af76c, 0x6d2779cd, 0x7d00c3ff, 0x1000d7ff, 0x3f01ef2c, 0x5617d55d, 0x0f4409ed, 0x01c3231f, 0x0f44ff7e, 0x05754205,
0xfd569a20, 0x0da3530c, 0x0f44ec20, 0xff8d2208, 0x0e1344d7, 0x5301d721, 0x9a2105a7, 0x09095701, 0x440ba753, 0x9a200713, 0x5d0cdb6c, 0x421016ed,
0x2f0301eb, 0x27008303, 0x88010100, 0x06002900, 0xd7ff7901, 0x2408ff44, 0x01ecff8c, 0x24038290, 0x00ecff93, 0x20198214, 0x06d945ec, 0x4101ec21,
0xec2105c1, 0x09214501, 0x83053f58, 0x093b5831, 0x22072945, 0x829501ec, 0x82972045, 0x82982003, 0x82992003, 0x829a2003, 0x01012651, 0x00ecff94,
0x08ad6a0b, 0x63824920, 0x1b828120, 0x29008d24, 0x07828e01, 0x0f829120, 0x03829420, 0x5d189620, 0x0022095b, 0x4d670102, 0x89d72005, 0x83b18437,
0x828c2037, 0x07b358b9, 0x0b829320, 0xd7ff9922, 0x08cf4218, 0x25821c20, 0x7a01ae22, 0x20080559, 0x26c182c3, 0xff8101d7, 0x828201c3, 0x05974613,
0xcd82d720, 0x8601d722, 0x87200f82, 0x11597d82, 0x01d72209, 0x2027828c, 0x2003828d, 0x2003828f, 0x20038290, 0x42038291, 0xc3200583, 0xc322d982,
0x0f829601, 0x03829820, 0x03829920, 0x22058f46, 0x821000c3, 0x005224d7, 0x8452000a, 0x827d209f, 0x827e2051, 0x82802003, 0x0573595d, 0x7359ec20,
0x828d2008, 0x82912013, 0x20b38303, 0x5d461897, 0x09002109, 0x84070146, 0x827e2041, 0x82812021, 0x82822003, 0x458c2045, 0x002109a9, 0x0c3f410d,
0x80206783, 0x63832182, 0x3d008824, 0x31828a01, 0xc3225f85, 0x0f419401, 0x09236c0a, 0x14004924, 0x03828d01, 0x53848e20, 0x0b023d28, 0x03003d00,
0x3b821e00, 0x05417e20, 0x185f8205, 0x410a4343, 0x0421087f, 0x82cf8401, 0x008a2839, 0x00910129, 0x6e070014, 0x01200b15, 0x071b4418, 0x91245b83,
0x0e002900, 0x8208f74b, 0x7d002171, 0x21833382, 0x63828120, 0x8c203f83, 0x4b82a783, 0x07828f20, 0xfb419020, 0x65471805, 0x04002107, 0x9424578c,
0x1500ecff, 0x01214b8b, 0x20338279, 0x2003827a, 0x8503827e, 0x01d72253, 0x200b8282, 0x42478285, 0xd7220513, 0x0f829001, 0xc9429220, 0x94012105,
0xb5477b82, 0x01d72205, 0x0a6f4199, 0x4982678d, 0x82130021, 0x01ec215b, 0x2005bb41, 0x063142d7, 0x4101ec21, 0x2922055b, 0x4f828c01, 0x73428d20,
0x09eb4208, 0x4207235b, 0x01210aeb, 0x20b5829b, 0x10df7738, 0x3d002d22, 0x78085f6b, 0x635f3bc9, 0x47be2007, 0x5f180dc1, 0x3d2e70bf, 0xc3ff0500,
0xc3ff0a00, 0x85ff9d01, 0x0382a601, 0xd7ffb024, 0x0782bc01, 0x0782bd20, 0xecffbf24, 0x1b82c101, 0x5718c420, 0xec2208bb, 0x1382df01, 0x1382e120,
0xaeffe428, 0xc3ff0702, 0x03820b02, 0xc5826d20, 0xd7ff7624, 0x0b827c02, 0x03827d20, 0x03828020, 0x13828120, 0x07828220, 0x07828320, 0x03828b20,
0x1f829f20, 0x85ffa924, 0x1382aa02, 0x0782b520, 0x0782b620, 0x0782b720, 0x2205136b, 0x82ba0285, 0x82bb2023, 0x82bd2023, 0x82bf2013, 0x82c0201b,
0x82c12003, 0x82c22003, 0x82ca2003, 0x82d42017, 0x82d52007, 0x82e52003, 0x82f7200b, 0x82f82003, 0x82f9202f, 0x82fa2007, 0x82fb2007, 0x82fc2007,
0x82fd2007, 0xfffe281f, 0xff0503c3, 0x820703d7, 0x820d2003, 0xff0e240b, 0x820f03ec, 0x18102007, 0x2208ef41, 0x42d500c3, 0x1022088d, 0x317f5cff,
0x11fb5c08, 0x81d35f18, 0xecff9f2c, 0x9affa401, 0x85ffaa01, 0x0382ae01, 0x0382b520, 0x26054b74, 0xffbe01ec, 0x82ca01c3, 0xffcb240f, 0x82cc01d7,
0x82cd200b, 0xffce2403, 0x82cf015c, 0x82d02013, 0x82d1200b, 0x82d22003, 0x82d32003, 0x82d42003, 0x82d52003, 0x82d6201b, 0x82d72007, 0x82d82003,
0x82d92023, 0x82da2007, 0x99591803, 0x82df200f, 0x82e02013, 0x82e12003, 0x82e22003, 0x82e32003, 0x82e42003, 0x82e52003, 0x82e62003, 0x82e72003,
0x82e82003, 0x82e92003, 0x82ea2097, 0x82ec2047, 0x82ed200b, 0xffee2807, 0x00f001ae, 0x82f2013d, 0x82f32067, 0x82f52013, 0x82f72003, 0x82f92003,
0x0f7f5b03, 0xcd4d0720, 0xff5f2306, 0x276202ec, 0x02852905, 0x02c3ff6b, 0x02d7ff6c, 0x07d15918, 0x55187d20, 0x85210849, 0xd5591802, 0x02d72609,
0x0285ff85, 0x20278286, 0x20078287, 0x20078288, 0x20078289, 0x2007828a, 0x202f828b, 0x2007828c, 0x200f828d, 0x200b8296, 0x2003829a, 0x200382a0,
0x200382a4, 0x200382a6, 0x200382aa, 0x200382ac, 0x200382ae, 0x200382b0, 0x202b82b1, 0x202b82b2, 0x200782b3, 0x069142b4, 0xc3ffb824, 0x0382ba02,
0x8142bc20, 0x82c22006, 0x82c42007, 0xffc52803, 0xffc602ae, 0x82c70271, 0x82cb2007, 0x82ce200f, 0xffcf242f, 0x82d1025c, 0x42d3200b, 0xd7200699,
0xd9200782, 0x18195a18, 0xe302d722, 0xe6206782, 0xec202382, 0xee200382, 0xef200382, 0xf0200f82, 0xf1202f82, 0xf2200782, 0xf3200782, 0x5a180782,
0x02250e25, 0x03c3fffe, 0x20038200, 0x20038206, 0x28038208, 0x035cff09, 0x0385ff0a, 0x1807820b, 0x200b3d5a, 0x20138211, 0x20138212, 0x01561814,
0x03852208, 0x660b8218, 0x85220545, 0x1f821b03, 0x1f821c20, 0x205b0b5f, 0x08fd461f, 0x45649f20, 0x01d72608, 0x01ecffbe, 0x200f82de, 0x20dd82e1,
0x06216407, 0xecff6c24, 0x0f827d02, 0x173f6918, 0x07e74518, 0x2382c020, 0x0382c220, 0x5318d520, 0xf1200e59, 0xf3203f82, 0xfe2e0382, 0x1503d7ff,
0x1903ecff, 0x0500ecff, 0x6982a001, 0x2982dc20, 0x0382aa20, 0x1982b620, 0xd7ff1826, 0x9f011a00, 0x01211585, 0x820782dd, 0xe4012183, 0x6d203782,
0x4d187f86, 0x8b2007e1, 0x64066564, 0xec220555, 0x0f82ba02, 0xc5207b87, 0xc7204d82, 0xaf6f8386, 0x8302200a, 0x07b36f7b, 0x0b7e6983, 0x0f9b5f09,
0x833ffd4d, 0x062f46c1, 0x000b0225, 0x185f0229, 0x411e7d6a, 0x5418073d, 0x31410b8b, 0x072d4106, 0x2030294e, 0x07856034, 0xffa60129, 0xffa80185,
0x82b001d7, 0xffb52203, 0x062b46ec, 0x4601ec21, 0xae21052b, 0x052b4601, 0x4101d721, 0xc321056b, 0x07615f02, 0x2a051f46, 0xff7d02ae, 0xff8002d7,
0x828202ae, 0x09134603, 0x4602d721, 0xd7260513, 0x85ffb702, 0x0382b902, 0x22090b46, 0x82c002ae, 0x82c12033, 0x82c2202f, 0x82ca2007, 0xffce2403,
0x82d402ec, 0x82d5200f, 0x050f460b, 0xf902ec22, 0xfb201382, 0xfd200382, 0xfe221782, 0x0346d7ff, 0x03ae260a, 0x03aeff0f, 0x08ff4511, 0x1b03d726,
0x3100ecff, 0xf946d188, 0x87d58507, 0x01d721d1, 0xcd887182, 0x2205f546, 0x82e401ec, 0x22d18971, 0x827c02ec, 0x827d206d, 0x21d18975, 0xe54602ec,
0x21d19305, 0xdd4602ec, 0x82ae2005, 0x02ec21d1, 0xec22d185, 0xcd88ca02, 0xe502ec22, 0xf7200b82, 0xf9206382, 0xfb200382, 0xcd850382, 0xcd82ec20,
0x0703ec22, 0x0d20c182, 0xcd83c982, 0x85ff172e, 0xd7ff1803, 0x9d011d00, 0xa6019aff, 0x77410382, 0x09e74207, 0xf601c322, 0x2056eb42, 0x58b7566d,
0xd7ff9f28, 0x2900a401, 0x0382b501, 0x2d05e746, 0xffbe01d7, 0xffcb01ae, 0x00ce01ec, 0x57180114, 0x93680bf7, 0x01d72109, 0x22059148, 0x82ea01d7,
0x44ed203f, 0x5f200a69, 0x08f35718, 0x6d02d722, 0x53460b82, 0x02d72109, 0x22098768, 0x828502d7, 0x0553461b, 0x4602d721, 0xd7220553, 0x13828a02,
0x22058768, 0x448d02d7, 0x33460657, 0x02d72105, 0x20053346, 0x0c8768d7, 0xad48c020, 0x00ce2406, 0x82d50229, 0x18e0200b, 0x200e696c, 0x450f82f0,
0xd72105eb, 0x05eb4502, 0x9768d720, 0xfe02230b, 0x5818c3ff, 0x0e24081f, 0x1003d7ff, 0x11240382, 0x15032900, 0x16200782, 0x2005cf44, 0x05cf4503,
0x1b03d722, 0xb55d1782, 0x4c67202f, 0x514808df, 0x01712e09, 0x019affb5, 0x01d7ffbb, 0x012900bc, 0x2c0782be, 0x011400c4, 0x01ecffc9, 0x01aeffca,
0x200f82cc, 0x480382cd, 0xae220555, 0x0b82d101, 0x0382d220, 0x0382d320, 0x0382d420, 0x22055148, 0x82d701d7, 0x82d8200b, 0x82d9202f, 0x82da2007,
0x82db2003, 0x82de200b, 0x45e02003, 0x012105f7, 0x200782e2, 0x200382e3, 0x200382e5, 0x200382e6, 0x200382e8, 0x200382e9, 0x200382ea, 0x200382ec,
0x202b82ed, 0x280782ee, 0x015200f0, 0x0171fff2, 0x200b82f3, 0x200382f5, 0x200382f7, 0x0a8361f9, 0xaeff6a24, 0x0f826b02, 0x85ff7224, 0x07827d02,
0x0f827f20, 0x03828520, 0x03828720, 0x03828920, 0x03828d20, 0x17829620, 0x03829a20, 0x0382a420, 0x0382a620, 0x2900a924, 0x0782ac02, 0x0382ae20,
0x0382b020, 0x2382b220, 0x0382b420, 0x1782b520, 0x0382b720, 0x0382b920, 0x0382bd20, 0x2007ef45, 0x232382c4, 0x029affce, 0x2105dd47, 0xeb8202d7,
0x82d50221, 0x82d72013, 0x05dd4703, 0xdb02ae22, 0xdc207f82, 0xdd204382, 0xe0200782, 0xc3820782, 0xbf820220, 0x82f00221, 0x82f2200b, 0x44f42003,
0x00280683, 0x0a03d7ff, 0x0c03aeff, 0x11230382, 0x47039aff, 0xd72205a1, 0x0f821603, 0x29001724, 0x07821a03, 0x17821b20, 0x5cff1c24, 0x8b678a00,
0xff9d30a4, 0xff9f019a, 0x00a401ec, 0xffa6013d, 0x43ae0185, 0xec2108ab, 0x39711801, 0xffbe2107, 0x22073b45, 0x82d5019a, 0x82dc201f, 0x059f430f,
0xe701c322, 0xf2200f82, 0xb3670382, 0x6c02231e, 0x5b45ecff, 0x02c32206, 0x0a5f457e, 0x0f914918, 0x098d4918, 0x4918d720, 0x49460e8d, 0x09734509,
0x7345c320, 0x02c32106, 0x2a05cf49, 0xffc702c3, 0x00ce02ae, 0x82cf0229, 0x05514603, 0x4702c321, 0x02201237, 0x21058745, 0x7f4503c3, 0x00112407,
0x82120329, 0xb5491803, 0x03d72609, 0x03ecff19, 0x2013821b, 0x4903821c, 0x2a265b67, 0xd7ff9d01, 0x0382bc01, 0x220da34d, 0x48d001d7, 0xe12006eb,
0xe4211b82, 0x078f4dff, 0x8002d726, 0x8202c3ff, 0xa0200382, 0x21089778, 0x977802d7, 0x02d72205, 0x202782b7, 0x200382b9, 0x069378bc, 0x21057b4d,
0x7b4d02d7, 0x02d72205, 0x4d1782cb, 0xd722057b, 0x9d46e602, 0x02c32610, 0x03d7fffe, 0x20f98206, 0x24038208, 0x03c3ff0d, 0x2003820f, 0x05ad4417,
0x69220021, 0xb020241d, 0x7d82b582, 0x82bd0121, 0x82bf2007, 0x82002061, 0x82762003, 0x189f2003, 0x20127b72, 0x47a584bb, 0x2b470533, 0x08f94705,
0x20082347, 0x12456917, 0xf14d8f20, 0x05c1420b, 0x4d12554d, 0x4d4d0751, 0x0767519e, 0xff6a0222, 0x01350d10, 0x42002f64, 0xd7ff9d01, 0xf600a301,
0x2900a401, 0x0b82a601, 0x1400aa22, 0x4c12fb44, 0xc12005ed, 0xc4201f82, 0xce200382, 0xd5202b82, 0xe1200382, 0xe7200b82, 0xf1320782, 0xf2016600,
0x6c022900, 0x7202ecff, 0x7c021400, 0x054dd7ff, 0x82802008, 0x1882200b, 0x44120153, 0xdb4405df, 0x09b1430b, 0x2f82bd20, 0x0382bf20, 0x22051d4b,
0x82c202d7, 0x82c6200b, 0x09cf4403, 0xd502d722, 0xd9200f82, 0xdb206b82, 0xdd200382, 0xdb440382, 0x02d72615, 0x03d7fffe, 0x2003820d, 0x0673480f,
0x4409db44, 0x00210cd7, 0x08bb5431, 0xd5821020, 0x2215ad49, 0x82cb01c3, 0x09f9451b, 0xf584ae20, 0x3d000724, 0x03820b02, 0xf5846c20, 0x7e02ae22,
0x16a37518, 0x4905ed71, 0xb6200561, 0xae20dd84, 0xae2ad982, 0xc3ffc502, 0x9affc602, 0x0782c702, 0xd523e187, 0x1802aeff, 0x8212cb75, 0x03ae21cd,
0x2009a145, 0x354418d7, 0x069d4508, 0x4e260021, 0xb12408a9, 0xb501ecff, 0x22084d45, 0x82be01ec, 0x82bf200f, 0x82c1200f, 0x82c42007, 0x53c72003,
0x7c200a9f, 0x80200b82, 0x82200382, 0xa1200382, 0xa9200382, 0x3b829d82, 0x41084145, 0xec21058f, 0x213b8202, 0x1b82ce02, 0x2382d420, 0x0382e720,
0x0382e920, 0x0382f520, 0x0382f720, 0x2609a54c, 0xff0d03ec, 0x820f03ec, 0xff112403, 0x821703d7, 0xff1b2403, 0x544c00d7, 0xd7210e71, 0x3b771800,
0x3f07680b, 0x2005af41, 0x125d4b3d, 0x4201d721, 0xae2205a9, 0xfd82e401, 0x3162f220, 0x4102200d, 0x77181fb3, 0xc0210757, 0x05ab41ff, 0x202f9f41,
0x47fd8319, 0xd7210839, 0x7f771803, 0x6a57202b, 0x9d249469, 0xa401d7ff, 0xa6200382, 0xaa240382, 0xae01ecff, 0x59550382, 0x01c32205, 0x200b82bf,
0x19656ac4, 0xff720225, 0x187602ec, 0x18087b7b, 0x4f0d9777, 0xc3220515, 0x1f82ca02, 0x2782d920, 0x0382db20, 0x0382dd20, 0x0b837b18, 0x4bab7718,
0xef434520, 0x3d721808, 0xffa4246b, 0x82aa01ae, 0xffae2203, 0x069f4c9a, 0xce01ec22, 0xd5200b82, 0xf2241382, 0x0002aeff, 0x7718f182, 0xae2209bb,
0x13825802, 0x03827220, 0x1805b74b, 0x240d5d72, 0x03aeff09, 0x087f4b0b, 0x4b03ae21, 0xae20056f, 0x203cb765, 0xe17a1842, 0x05415360, 0xbb01d726,
0xbe01d7ff, 0x18058b55, 0x430c0964, 0xc3200591, 0x43184545, 0xc32a0991, 0xc3ffc202, 0xaeffc602, 0x0782d502, 0x20152d45, 0xfd7a18c3, 0x53012137,
0x107c1b66, 0x53011326, 0xc3ff9f27, 0xecffa001, 0x05834301, 0x43018521, 0x71180783, 0xbe200bd7, 0xc4262382, 0xca011400, 0x795885ff, 0x5871200a,
0x75581079, 0x01712105, 0x20377558, 0x206782e5, 0x580382e6, 0xc322056d, 0x6f82ea01, 0x2900eb23, 0x09715801, 0x50018521, 0x85210533, 0x0f715801,
0x0f537218, 0x18077158, 0x58174b72, 0xc320057d, 0x210e7d58, 0x721802c3, 0x7d583353, 0x00a92313, 0x81580214, 0x02c32611, 0x0285ffb2, 0x737218b3,
0x82bc201e, 0x82bd201f, 0x0761523f, 0x22059158, 0x82c602c3, 0x82c7203b, 0x82cb201b, 0x05fb4403, 0x91587120, 0x02c3222a, 0x583782e3, 0xc3210d91,
0x05915802, 0x1802c321, 0x5816b772, 0x85201291, 0x18069158, 0x500dcf72, 0x712105ef, 0x05915803, 0x1803c321, 0x4513db72, 0x7120058b, 0x01bf2710,
0x4b632008, 0xff25115d, 0xffaa01ae, 0x06fb5b9a, 0x2705a953, 0x01ecffbe, 0x012900c4, 0x2105a153, 0xf75b01c3, 0x01712205, 0x10ef5bcf, 0x210b7943,
0xef5b019a, 0x01c32209, 0x5b5782de, 0x6d430fe3, 0x43c32011, 0xc3220669, 0x5b82ee01, 0x4305db5b, 0xb1611069, 0x6a022907, 0x6b029aff, 0x7202c3ff,
0x7d200782, 0x7f200782, 0x85200782, 0x87200382, 0x89200382, 0x8d200382, 0x19430382, 0x5ba42007, 0x8f5b0693, 0x82b2200b, 0x82b4201f, 0x0be54203,
0xd547c620, 0x13d94208, 0xda029a22, 0xdb201f82, 0x8d533382, 0x029a2205, 0x200b82e0, 0x065f5bec, 0x0b82f020, 0x0382f220, 0x0382f420, 0x2807475b,
0x0385ff09, 0x039aff0a, 0x2007820b, 0x4207820c, 0x16200ba5, 0x1a200f82, 0x95420382, 0x51002006, 0xc5490567, 0x01c32a05, 0x01ecffa8, 0x01d7ffaa,
0x220382ae, 0x4cc3ffb0, 0xc3220635, 0x0f82bf01, 0x0f82c420, 0x0782c720, 0x0782ce20, 0x0382d520, 0x8182f220, 0xd7ff7224, 0x07827602, 0x03829f20,
0x0b82a120, 0x8118a920, 0xbb200e61, 0xbd200f82, 0xca200382, 0xce200382, 0xcf201f82, 0x80180782, 0x02210a7b, 0x200f82e5, 0x201782e7, 0x280382e9,
0x03d7fff5, 0x03c3ff05, 0x20038207, 0x200b8211, 0x20078212, 0x20038217, 0x240b821b, 0x00c3ff1c, 0x0c795b2e, 0x3d00a422, 0x210e9b4e, 0x935301d7,
0x01ec2205, 0x5b5582e1, 0x7c230b85, 0x5702ecff, 0xec210513, 0x07db4c02, 0x20136353, 0x202782b1, 0x200382b3, 0x5f0382bf, 0xec220599, 0x894dc202,
0x82d42006, 0x055b4813, 0x837fec20, 0x066f5a08, 0x82fd0221, 0x82fe201b, 0x08eb4ca9, 0x53063353, 0x0021062b, 0x08554f30, 0x210b514f, 0x894dffbc,
0x14002306, 0x0b82c101, 0x2005494f, 0x21bd8214, 0x494f01d7, 0x05454f0b, 0x87054b5c, 0xc97a18bd, 0x85022012, 0x02d722b5, 0x248d82c1, 0x02d7ffc2,
0x200382c5, 0x200382c6, 0x082d4fc7, 0x85021421, 0x02d721c5, 0x850b2d4f, 0x4dd720bd, 0xbd8209a9, 0x14001224, 0xe9531703, 0x00142408, 0x829d013e,
0x00a32aa1, 0x00a401e1, 0x00aa013d, 0x087b4129, 0xbd20c583, 0xbe200f82, 0xbf201f82, 0xc420c986, 0xc7200b82, 0xce200b82, 0xd1202b82, 0x254f0782,
0x84ec2005, 0x82e420d9, 0x21dd8d1b, 0x9f410229, 0x41d72005, 0xa123089b, 0x83021400, 0x82aa20e1, 0x82b520c9, 0x18b62003, 0x900d9785, 0x090b50e9,
0x0b50ec20, 0x02292606, 0x022900db, 0x200382dd, 0x204b82e7, 0x200382e9, 0x200382f5, 0x200f82f7, 0x200382f9, 0x950382fb, 0x842920f5, 0x881820f5,
0x002922f9, 0x0e3b621e, 0xa8017123, 0x053b62ff, 0x20093362, 0x06315bd7, 0x22052762, 0x54c3ff7c, 0x255b088b, 0x05ad5517, 0x8202c321, 0xd4022143,
0xfd232f82, 0x5403c3ff, 0xf55a0957, 0x5b202005, 0xbc2214bb, 0xad6285ff, 0x2579870a, 0xff0b029a, 0x79af029a, 0x7982c520, 0x0382c720, 0x23218197,
0x0be14d01, 0x1744f783, 0x05515007, 0x9f55c320, 0x01ec2606, 0x01d7ffbf, 0x200382d5, 0x0a0f44f2, 0x440f3950, 0xd721050b, 0x050b4402, 0xcf02c322,
0xe5202b82, 0x31507d82, 0x0aff430a, 0x1203c322, 0x22083150, 0x5c1c03c3, 0x6f4e0605, 0xffa82209, 0x06a544ec, 0x8501d721, 0x55d7208d, 0xd722065b,
0x8d8cce01, 0x9f02d722, 0xbb206982, 0x2008555d, 0x217986d7, 0x798d02d7, 0x0703d722, 0x79447182, 0x03d72105, 0x24057544, 0x001900d7, 0x204d820a,
0x5c0382dc, 0xec220573, 0x0b82e401, 0x4d82f620, 0x18055f5f, 0x5f0d0f4f, 0x6d180695, 0xc0240815, 0xc202ecff, 0xd5200382, 0x575f0382, 0x03ec210d,
0x200b575f, 0x20b38421, 0x226988d0, 0x82df01d7, 0x82e1200b, 0x226d89e3, 0x187d02d7, 0x200a5744, 0x2081828b, 0x090760a0, 0xd7227182, 0x0f82ba02,
0x0382bc20, 0xcb207587, 0x79830b82, 0x0782e620, 0x0a1d6618, 0xfffe0225, 0x820603ec, 0x820820eb, 0x07835b03, 0xd7ff1824, 0x99472400, 0x08635707,
0x8582dd20, 0x934e898f, 0x05695c07, 0xd722ff83, 0x61828302, 0xec219185, 0x09034102, 0xec219187, 0x21918902, 0x918502ec, 0x0cad4418, 0xec229186,
0x44180803, 0x91830ab1, 0x114f0720, 0x019a2e06, 0x01ecffed, 0x029afff2, 0x039affcf, 0x2a038212, 0x009aff1c, 0x00ca0110, 0x59ce0114, 0xd72a087d,
0xc3ffe401, 0x7b00f101, 0x19417d02, 0x0b5f610a, 0x1400da24, 0x0382dc02, 0xf982fe20, 0x0d225f83, 0xe1820a00, 0x25057741, 0xffdf01ec, 0x534102ec,
0x02ec2205, 0x200b82b6, 0x204582bc, 0x200382cb, 0x412d82e6, 0x1824072f, 0x2000ecff, 0x5d088946, 0xff6109a9, 0x109d5d08, 0x41826a20, 0x6a188f83,
0xa38b1bcd, 0x2f82e020, 0x0ad96a18, 0xab830220, 0x0321a582, 0x2085820c, 0x24038216, 0x00d7ff1a, 0x08a9411d, 0xecffd124, 0x0382dc01, 0x0382dd20,
0x2205bf5f, 0x50f601d7, 0x05620a39, 0x20df8515, 0x622782b8, 0xd5200b05, 0x0dad5118, 0x220efd61, 0x882100ec, 0x18cb20f7, 0x20129d76, 0xa17618e1,
0x08c54f09, 0x2220fbd3, 0x200c7769, 0x207582d0, 0x20fb82d1, 0x0a0163d5, 0x1382df20, 0x0f82f220, 0x1960f620, 0x0b016306, 0x630d3343, 0xe7410505,
0x82cf2007, 0x052b432f, 0x1802ec21, 0x43079370, 0xec260927, 0xecff1003, 0x03821203, 0xd7ff1829, 0xecff1c03, 0x8d011300, 0x01ec227d, 0x207582df,
0x820382e4, 0x1449427d, 0x7d436186, 0x204d8508, 0x204d84ec, 0x08d34117, 0x01212582, 0x197518d8, 0x05515608, 0x9b826a20, 0x3a2f6c18, 0x6a300021,
0xca270c9b, 0xce01d7ff, 0x83019aff, 0xffd52269, 0x226d82c3, 0x82db01d7, 0x00dd2413, 0x82de0114, 0x82ed2007, 0x82f22003, 0x18f6201f, 0x2509fb6d,
0xd7ff6a02, 0x0f826d02, 0x07827f20, 0x07828120, 0x03828320, 0x0b9d6d18, 0x0f828b20, 0x6d188d20, 0xb8200aa1, 0xba200f82, 0xcf240382, 0xda02c3ff,
0xdc201782, 0x11b56d18, 0x6f180220, 0xe3420b59, 0x616f1807, 0xff122307, 0xef4203c3, 0x1c032306, 0x9d44c3ff, 0x49002109, 0xca22a582, 0xc182ecff,
0x8501c321, 0x01ec22bd, 0x22b984dc, 0x82f201ec, 0x07a1446d, 0x20173341, 0x249582aa, 0x02ecffb2, 0x200382b4, 0x22a188b6, 0x18dc02ec, 0x851a776d,
0x03ec288d, 0x03140018, 0x84ecff1a, 0x421c2091, 0x4d631c89, 0x4595820a, 0x7d4205bd, 0x0fa9450b, 0x2746cf20, 0xffe62206, 0x0ca145d7, 0x220b7142,
0x18cb011d, 0x200eb34a, 0x200f82de, 0x200382e1, 0x062f42ea, 0x7d20f383, 0x461e2b42, 0x6e180b95, 0x79840e67, 0xdf820a20, 0x03820c20, 0x03821620,
0x0022eb82, 0x9b4a0115, 0x01292205, 0x206d86dc, 0x06ed59e4, 0x1400e924, 0xf159f101, 0xf6012405, 0x83021400, 0x49aa2079, 0x658706b1, 0x2900cf24,
0x1382d502, 0x4d82fe20, 0x29001224, 0x07821803, 0x29001c24, 0x55821600, 0x4a013d21, 0xec21091b, 0x051b4a01, 0x86011421, 0x2059b8cb, 0x21a78219,
0xbb46019a, 0x07754a05, 0xf6017124, 0x1d63c3ff, 0x09156306, 0xd7ff8b28, 0x9affaa02, 0x0382b602, 0x07694b18, 0x470b8b45, 0x6d180d35, 0x18240957,
0x1c009aff, 0x2108af43, 0x6d90ffdc, 0x47082f4e, 0x71c50525, 0x25481120, 0x07f14408, 0x24056f44, 0xfff201d7, 0x22df82ec, 0x48a002d7, 0xcb200601,
0x6b440782, 0xff1c2413, 0x981000ec, 0x46f62045, 0x0f4506ff, 0x0cad440e, 0x5d184183, 0x01200881, 0x00217f82, 0x0649441c, 0xd501d724, 0x49449aff,
0x050d4706, 0x4705a764, 0x6a2005b7, 0x01479182, 0xffcf231b, 0xf946029a, 0x0827640e, 0x9aff1222, 0x2d0a0944, 0x0102009a, 0x013d00eb, 0x003d00f4,
0xbb470121, 0x019a2605, 0x01c3ffdd, 0x0a0347de, 0x8b82e420, 0x2205a549, 0x827d02c3, 0xff81247b, 0x828302c3, 0x828b2003, 0x05854303, 0x6b07f541,
0xd721070b, 0x07f94102, 0x22053749, 0x82e602d7, 0xcd841837, 0xfe02210a, 0x240a0748, 0x03c3ff0e, 0x24038210, 0x009aff18, 0x43858c1f, 0xd72105f7,
0x21818201, 0x6d826d02, 0x01217ddf, 0x21e78201, 0x9b471c00, 0x66ec200a, 0x89410a41, 0x0719480b, 0x0b022925, 0x41022900, 0x8d411f91, 0x08834817,
0xffca0123, 0x0c7f45d7, 0xd7fff222, 0xec215582, 0x13a74602, 0x21157345, 0x154602d7, 0x02ec2105, 0x13eb7218, 0x20137345, 0xc4d56edb, 0x85ffbc22,
0x6108d96e, 0x4a189e87, 0xd56e1055, 0x71a92073, 0xd96e0653, 0x0d6f711b, 0xb902c322, 0xba203382, 0x2006e56e, 0x560b82bd, 0xe96e0d57, 0x050d6bb1,
0x1d69c320, 0x65ed6e06, 0x99180320, 0x00210b3b, 0x3b9e18c4, 0x858f1844, 0x379e1819, 0xc18f1845, 0x2f9e180b, 0x2b9e1853, 0x279e1827, 0x239e186f,
0xa1901827, 0xff602407, 0x826a02c3, 0x1b9e1803, 0x8285200b, 0x8287200f, 0x82892003, 0x0f9e1803, 0x00b92423, 0x18bb0252, 0x2032079e, 0x223382f9,
0x183d00fb, 0x1810fb9d, 0x24a3f39d, 0x03520071, 0x2e038273, 0x00520083, 0x00450010, 0x0049003d, 0x824b0066, 0x0f631807, 0x003d2209, 0x200f824f,
0x20178257, 0x20038259, 0x2403825a, 0x0029005b, 0x2807825c, 0x0329005d, 0x03660070, 0x20038272, 0xa70f8274, 0x00522141, 0x14204189, 0x022e418c,
0x85ff0903, 0x85ff0b03, 0x97000200, 0x01820500, 0x0a000032, 0x01000b00, 0x11000f00, 0x24000300, 0x06002700, 0x29207d82, 0x2c221582, 0x19822c00,
0x2f002e38, 0x32000c00, 0x0e003500, 0x3e003700, 0x44001200, 0x1a004600, 0xc5824800, 0x4e001d22, 0x21220182, 0xdd825000, 0x5500222e, 0x25005700,
0x5e005900, 0x6d002800, 0x2e220182, 0x01827d00, 0x82002f3c, 0x30008700, 0x92008900, 0x94003600, 0x40009800, 0x9f009a00, 0xa2004500, 0x4382ad00,
0xb800b322, 0xba2c3782, 0x5d00bf00, 0xc900c100, 0xcb006300, 0x6c240182, 0xcf00cd00, 0xd1264382, 0x7000d100, 0x0182d500, 0xd7007122, 0x72280182,
0xdb00d900, 0xdd007300, 0x76220182, 0x0182ec00, 0xf0007722, 0x78220182, 0x0182f200, 0xf8007922, 0x7a280182, 0xfb00fa00, 0xfd007b00, 0x04090182,
0x01ff007d, 0x017e0001, 0x00030103, 0x01060181, 0x01820006, 0x00080108, 0x010a0183, 0x0184000a, 0x000f010e, 0x01110185, 0x01870013, 0x00150115,
0x011d018a, 0x018b001d, 0x001f011f, 0x0121018c, 0x018d0024, 0x00270126, 0x012c0191, 0x0193002c, 0x00300130, 0x01320194, 0x01950032, 0x00340134,
0x01360196, 0x0197003b, 0x003d013d, 0x013f019d, 0x019e0040, 0x00440143, 0x014a01a0, 0x01a2004a, 0x00560156, 0x015a01a3, 0x01a40062, 0x00640164,
0x016601ad, 0x01ae0069, 0x006d016c, 0x016f01b2, 0x01b4007c, 0x0084017e, 0x018601c2, 0x01c90088, 0x008e018a, 0x019001cc, 0x01d10091, 0x00970193,
0x019901d3, 0x01d80099, 0x00a2019b, 0x01a401d9, 0x01e100a8, 0x00ae01aa, 0x01b001e6, 0x01eb00b1, 0x00b401b4, 0x01b801ed, 0x01ee00b8, 0x00c001ba,
0x01c301ef, 0x01f600c4, 0x00c801c6, 0x01ca01f8, 0x01fb00d1, 0x220182d4, 0x82d80103, 0x01043401, 0x01e001da, 0x01e30105, 0x010c01ea, 0x01ee01ec,
0x82f00114, 0x17840901, 0xf601f201, 0xf8011801, 0x1d010302, 0x06020602, 0x0a022901, 0x2a010a02, 0x28022802, 0x58022b01, 0x2c015802, 0x60026002,
0x62022d01, 0x2e016202, 0x6a026a02, 0x6c022f01, 0x30017202, 0x74027402, 0x76023701, 0x38017c02, 0x8c027e02, 0x95023f01, 0x4e019d02, 0xa0029f02,
0xa2025701, 0x5901af02, 0xc002b102, 0xc3026701, 0x7701c302, 0xc502c502, 0xc7027801, 0x7901c702, 0xcc02c902, 0xce027a01, 0x7e01cf02, 0xd302d202,
0xd6028001, 0x8201d902, 0xdb02db02, 0xde028601, 0x8701de02, 0xe902e002, 0xef028801, 0x9201fc02, 0x0003ff02, 0x0303a001, 0xa2010803, 0x1d030b03,
0x1f03a801, 0xbb011f03, 0x21032103, 0x2303bc01, 0xbd012303, 0x25032503, 0x2703be01, 0xbf012703, 0x29032903, 0x2b03c001, 0xc1012b03, 0x2d032d03,
0x2f03c201, 0xc3012f03, 0x31033103, 0x3303c401, 0xc5013303, 0x36033603, 0x3803c601, 0xc7013803, 0x3a033a03, 0x3c03c801, 0xc9013c03, 0x3e033e03,
0x4003ca01, 0xcb014003, 0x42034203, 0x4403cc01, 0xcd014503, 0x47034703, 0x4903cf01, 0xd0015603, 0x58035803, 0x5a03de01, 0xdf015a03, 0x5c035c03,
0x5e03e001, 0xe1015e03, 0x61036003, 0x6303e201, 0xe4016303, 0x66036603, 0x6803e501, 0xe6016803, 0x6a036a03, 0x6c03e701, 0xe8016c03, 0x74036e03,
0x8303e901, 0xf0018303, 0x01000000, 0x0a240382, 0x1e001c00, 0x108fa918, 0x00000024, 0xfa050000, 0x4812c497,
};
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/DroidSans.hpp
|
C++
|
gpl-3.0
| 418,892
|
// File: 'FiraCode-Retina.ttf' (295252 bytes)
// Exported using binary_to_compressed_c.cpp
namespace tracy
{
static const unsigned int FiraCodeRetina_compressed_size = 191172;
static const unsigned int FiraCodeRetina_compressed_data[191172/4] =
{
0x0000bc57, 0x00000000, 0x54810400, 0x00000400, 0x00010025, 0x82120000, 0x00042604, 0x49534420, 0x240d8247, 0x81040001, 0x2c07824c, 0x45444708,
0x051f0446, 0x0100008d, 0x0803822c, 0x5047ea2c, 0x03c0534f, 0x0000bc3b, 0x00001803, 0x53476c1e, 0x6a844255, 0x00006f79, 0x00008421, 0x534f3e6f,
0x08a7322f, 0x0000c707, 0x3f82c490, 0x6d63603c, 0xe1bd7061, 0x0000d394, 0x00002491, 0x7663f441, 0x43472074, 0x0400f819, 0x1f82b471, 0x7066a834,
0x369e6d67, 0x0400d215, 0x00005c72, 0x6167150e, 0x17827073, 0x1f821020, 0x0782ac20, 0x6c67083c, 0x9b6c6679, 0x000003a3, 0x030018d3, 0x6568240d,
0x96106461, 0x03008fa5, 0x1f823ce0, 0x82683621, 0x70022310, 0x0f82f004, 0x0f827420, 0x6d682428, 0xcf8e7874, 0x0f82b467, 0x00982008, 0x6cf01c00,
0x0961636f, 0x00e0aa69, 0x0088fd03, 0x6d081d00, 0x0c707861, 0x00b61277, 0x82901a04, 0x6e20282f, 0x3a656d61, 0x826bbb77, 0x00b03f0f, 0x70c10900,
0x9474736f, 0x005b5263, 0x00742404, 0x70354d00, 0x8a706572, 0x001e9ccd, 0x0f828004, 0x00d60023, 0x20358201, 0x8303820c, 0x00022602, 0x0004004f,
0x2213822b, 0x822e002d, 0x00302205, 0x22058262, 0x82880064, 0x008b2205, 0x2205829e, 0x82bc00a0, 0x00be2205, 0x220582d2, 0x82df00d4, 0x00e12205,
0x280582ed, 0x001301ef, 0x01150101, 0x22058217, 0x821b011b, 0x011d2805, 0x0102001d, 0x82440121, 0x0146220b, 0x2205824e, 0x82520150, 0x01542205,
0x2205825e, 0x82650160, 0x01682205, 0x22058268, 0x8275016a, 0x01772205, 0x2205827b, 0x827d017d, 0x017f2205, 0x2105827f, 0x77820181, 0x018a0123,
0x220b82a0, 0x82af01a2, 0x01b12205, 0x220582b2, 0x82bf01b4, 0x01c12205, 0x220582c4, 0x82d401c6, 0x01d62205, 0x220582ee, 0x82f101f0, 0x01f32205,
0x280582f5, 0x000602fa, 0x02090201, 0x2205820b, 0x820f020f, 0x02112205, 0x21058218, 0xd782021a, 0x02300223, 0x220b8230, 0x823c0232, 0x023e2205,
0x2205823f, 0x824b0241, 0x024d2205, 0x280582fc, 0x00fe02fe, 0x03000301, 0x22058205, 0x82070307, 0x03092205, 0x2205828c, 0x8290038f, 0x03942e05,
0x04010094, 0x00720446, 0x04780402, 0x22058279, 0x8282047d, 0x04862205, 0x21058288, 0xa78204af, 0x04b10423, 0x222382b1, 0x82dc04dc, 0x04fe2105,
0x05294d82, 0x00020502, 0x061a0601, 0x2105821a, 0x7d82062f, 0x06320623, 0x220b8232, 0x82430643, 0x06452205, 0x22058245, 0x82480647, 0x064a2105,
0x06238982, 0x8250064d, 0x0652220b, 0x2205825a, 0x825c065c, 0x06692205, 0x2205826c, 0x8275066f, 0x06772205, 0x22058277, 0x827b067a, 0x06852805,
0x060200b0, 0x82c006b4, 0x06c42805, 0x060200e3, 0x82e606e6, 0x06ed2817, 0x070300ff, 0x820e070e, 0x071d2805, 0x0003001e, 0x82010000, 0x0a2c0803,
0x46032401, 0x46440600, 0x2600544c, 0x6c727963, 0x72673400, 0x42006b65, 0x6e74616c, 0x697a5000, 0xfe00686e, 0x7979797a, 0x04000c01, 0x00242f82,
0x0200ffff, 0x8805c142, 0x0001220d, 0x3a1b8a11, 0x00120002, 0x410a0040, 0x00204b46, 0x455a414a, 0x43540020, 0x00205441, 0x8252435e, 0x4b682e05,
0x00205a41, 0x4c4f4d72, 0x507c0020, 0x2723824c, 0x4d4f5286, 0x54900020, 0x9a222383, 0x11825254, 0x8500a421, 0x00032265, 0x22098613, 0x86140004,
0x00052209, 0x22098615, 0x86160006, 0x00072209, 0x22098617, 0x86180008, 0x00092209, 0x22098619, 0x861a000a, 0x000b2209, 0x2209861b, 0x861c000c,
0x000d2209, 0x22bb8a1d, 0x8a1e000e, 0x000f2a0d, 0x6d20001f, 0x006b7261, 0x200584c2, 0x200584ce, 0x200584da, 0x200584e6, 0x200584f2, 0x210583fe,
0x05840a01, 0x05841620, 0x05842220, 0x05842e20, 0x05843a20, 0x05844620, 0x05845220, 0x05845e20, 0x05846a20, 0x6b6d7626, 0x82016b6d, 0x8c200584,
0x96200584, 0xa0200584, 0xaa200584, 0xb4200584, 0xbe200584, 0xc8200584, 0xd2200584, 0xdc200584, 0xe6200584, 0xf0200584, 0xfa200584, 0x02210583,
0x20058404, 0x2205840e, 0x84000018, 0x000124d1, 0x40030002, 0x0326b60b, 0x05000400, 0xbd820600, 0x2e930940, 0x00100007, 0x00200018, 0x00300028,
0x41400038, 0x3820066d, 0x02210785, 0x21078544, 0x07858e08, 0x847e1121, 0x170122c7, 0x2107858a, 0x07860818, 0x01003432, 0x1019fa18, 0x0c000200,
0x14005e00, 0x18010100, 0x1e20038e, 0x1f8f0f8e, 0x1f822420, 0x03822a20, 0x00003024, 0x03880c01, 0x002c4783, 0x2e001201, 0xea00e400, 0xf600f000,
0xfc220784, 0x07840201, 0x0b841383, 0x01080135, 0x0014010e, 0x011a01e4, 0x01260120, 0x0132012c, 0x823e0138, 0x0144340f, 0x0150014a, 0x015c0156,
0x01680162, 0x0174016e, 0x8c80017a, 0x831b8303, 0x01862223, 0x832b848c, 0x0192220b, 0x83438498, 0x224b831b, 0x84a4019e, 0x225b8343, 0x83b001aa,
0x831f885b, 0x83438723, 0x8603873b, 0x01002937, 0x0000a8fd, 0x26fd0100, 0xa8260584, 0x01001e04, 0x058359fd, 0x840dfe21, 0x8456200b, 0x83a42005,
0x58022105, 0x02272383, 0x00620558, 0x84bc0201, 0x84da200b, 0x8427200b, 0x842e200b, 0x8454200b, 0x01792805, 0x0201001c, 0x82860679, 0x05582805,
0x0301006a, 0x82ca01f2, 0x03f52205, 0x20058291, 0x200b841c, 0x200b8422, 0x200b84f9, 0x820b8396, 0x82c62059, 0x84e6201d, 0x84e62011, 0x841e201d,
0x841e200b, 0x84f6200b, 0x84f4200b, 0x83662029, 0x6402210b, 0x77200b84, 0x81200b84, 0xe5202384, 0xe5202384, 0x04210b83, 0x210b8307, 0x17841104,
0x17841d20, 0x0b841d20, 0x2f843120, 0x0b83ce20, 0x17e61623, 0x0913425c, 0x00540423, 0x20038c01, 0x8f0f8e5a, 0x8260201f, 0x8266201f, 0x006c2403,
0x88480400, 0x2a438303, 0x004e0400, 0x042004fd, 0x862c0426, 0x04322303, 0x03870438, 0x13823e20, 0x4a044423, 0x83038704, 0x04502223, 0x872b8856,
0x042c2233, 0x8313825c, 0x89478903, 0x0426281b, 0x04680462, 0x8274046e, 0x867a2023, 0x22278703, 0x822c0480, 0x8b2b888f, 0x228f860b, 0x868c0486,
0x8a92206f, 0x88982077, 0x8a3e200b, 0x854788bb, 0x204d8213, 0x2227889e, 0x82a4042c, 0x04aa250b, 0x04b604b0, 0xcb853387, 0xbc22b785, 0x1788c204,
0xb3891f83, 0x3782c820, 0x26200383, 0xb3821f86, 0x03830420, 0x8b89eb91, 0x20048022, 0x57418382, 0x04ce2405, 0x824a0444, 0x86d42043, 0x04262103,
0x20154341, 0x831f8226, 0x072341e3, 0x80240783, 0x38043204, 0xda26c384, 0xe604e004, 0x7b41ec04, 0x24738910, 0x04f20426, 0x411f90f8, 0xfe220b13,
0xc3840405, 0x830f3341, 0x2913840f, 0x2c040a05, 0x16051005, 0x03871c05, 0x053e0423, 0x20138222, 0x20038628, 0x2407822e, 0x05bc0422, 0x20078434,
0x831b842c, 0x823a201f, 0x8303830f, 0x23038c0b, 0x46054005, 0x22231b82, 0x84050000, 0x204f8203, 0x243b8610, 0x0050044c, 0x8b478900, 0x2257860b,
0x86520586, 0x0458231f, 0x0082002c, 0x005e0525, 0x82640500, 0x20438713, 0x204f8422, 0x202f846e, 0x84938e6a, 0x202f8287, 0x83238270, 0x8276207b,
0x827c201f, 0x05822403, 0x848e0588, 0x84c785d7, 0x940523b7, 0x13849a05, 0xb387ef82, 0x57840f87, 0xa0221783, 0x0b82a605, 0x03824c20, 0xac051028,
0xb805b205, 0x1b87be05, 0x2c222b84, 0x0f820a05, 0x7382c420, 0x0782ca20, 0x07822820, 0x0382d020, 0x0b82d620, 0xbc04dc24, 0x2b84e205, 0xdc052c22,
0xdc200782, 0x76201782, 0x5e200382, 0xe8200b82, 0x9f830782, 0xb3831383, 0x1605ee24, 0x33841c05, 0x57867382, 0xf3831783, 0x9341f785, 0x0c674105,
0x93418788, 0x8b1f8509, 0x820b8743, 0x2c4f4507, 0x4f455420, 0x8358200a, 0x6501210b, 0xb4281184, 0x01006205, 0x6afe5802, 0x89200582, 0x82201184,
0x49201184, 0x51200b84, 0x80200b84, 0x20108545, 0x201d8456, 0x20178456, 0x2005846c, 0x20058442, 0x20178452, 0x200b8464, 0x2005843f, 0x200584bc,
0x20058436, 0x27058345, 0xcd07e101, 0xa0010100, 0xef202984, 0x57201784, 0x57200b84, 0x5e200b84, 0xcf200584, 0x4a220584, 0x29826305, 0x1d83bc20,
0x840b0321, 0x843b2011, 0x843b2029, 0x8494200b, 0x8494200b, 0x844f200b, 0x8477200b, 0x4648200b, 0x0521053f, 0x203b82c6, 0x20178490, 0x841185a8,
0x856c2005, 0x7e052505, 0x49020100, 0x80200b84, 0xa6200584, 0xb0262984, 0x01000c04, 0x11843e02, 0x05846920, 0x05844f20, 0x2f845a20, 0x0b83e020,
0x05730123, 0x20238218, 0x8417853d, 0x84552005, 0x06f12217, 0x20718289, 0x204784cc, 0x201784e4, 0x200b844a, 0x200b844a, 0x200b8444, 0x200b842a,
0x200b844e, 0x21a1834e, 0x0b84cf02, 0x0b840f20, 0x65844820, 0x23846720, 0x05855b20, 0x58201184, 0x49200584, 0x4f200584, 0x3e200584, 0x10230583,
0x46b61194, 0x05230951, 0x8c010080, 0x8e862003, 0x201f8f0f, 0x201f828c, 0x24038292, 0x05000098, 0x83038874, 0x05002c43, 0x0548017a, 0x0552054c,
0x825e0558, 0x055e2407, 0x846a0564, 0x05702207, 0x20078276, 0x200b847c, 0x221b864c, 0x86880582, 0x8c8e200f, 0x221f8717, 0x829a0594, 0x8ca02017,
0x82a6201b, 0x8258203b, 0x854f8503, 0x212f8563, 0x1b8305a0, 0x07850b87, 0xac221f85, 0xa5825e05, 0xb2055e24, 0x4b88b805, 0x8200ac21, 0xa0052300,
0x03850000, 0x3b8b638c, 0x58220b83, 0xcf82be05, 0x0382c420, 0x0382ca20, 0x0382d020, 0x0382d620, 0x0382dc20, 0x0382e220, 0xeb84e820, 0x03879383,
0x5e05ee24, 0x3382ee05, 0xc405ee22, 0xca200782, 0xd0200382, 0xd6200382, 0xdc200382, 0xe2200382, 0xe8240382, 0xf4057005, 0xfa240382, 0x00067005,
0x06200382, 0x0c200382, 0x12200382, 0x76201382, 0x4c260384, 0x4c051806, 0x03821e06, 0x03822420, 0x03822a20, 0x03823020, 0x03823620, 0x03823c20,
0xaf874220, 0x05480627, 0x0648065e, 0x20038218, 0x2003821e, 0x20038224, 0x2003822a, 0x20038230, 0x20038236, 0x8203823c, 0x4e06212b, 0x54203382,
0x5a200382, 0x60200382, 0x66200382, 0x6c200382, 0x72200382, 0x78200382, 0x0621fb91, 0x2017827e, 0x20038284, 0x2003828a, 0x20038290, 0x20038296,
0x2127899c, 0x0f82a206, 0x0382a820, 0x0382ae20, 0x0382b420, 0xa741ba20, 0x88a02006, 0x82a62007, 0x06a62643, 0x06a605c0, 0x200382c6, 0x200382cc,
0x200382d2, 0x200382d8, 0x240382de, 0x05a605e4, 0x2103835e, 0xbf82ea06, 0x7e06ea26, 0xc006ea06, 0xc6200382, 0xcc200382, 0xd2200382, 0xd8200382,
0xde200382, 0xe42c0382, 0xf606f006, 0xfc06ac05, 0x0207ac05, 0xfc246b82, 0x0e070807, 0x07230f83, 0x831a0714, 0x4c05230f, 0x03822007, 0x23851b84,
0x2f832782, 0x07824c20, 0xac220383, 0x17882607, 0x02201389, 0x53831384, 0x27849420, 0x2c204383, 0x07214b89, 0x82538532, 0x831f821b, 0x85778383,
0x84138273, 0x895f888b, 0x834c204b, 0x88ab89a7, 0x232f8643, 0x38070000, 0xcf861384, 0x073e0727, 0x07f00644, 0x2003824a, 0x20038250, 0x20038256,
0x2003825c, 0x20038262, 0x20038268, 0x2103826e, 0xff820674, 0x072b038f, 0x07f6067a, 0x0780077a, 0x8286077a, 0x824a2003, 0x82502003, 0x82562003,
0x825c2003, 0x82622003, 0x82682003, 0x826e2003, 0x82742003, 0x828c2003, 0x829220bb, 0x82982003, 0x829e2003, 0x82a42003, 0x82aa2003, 0x84b02003,
0x070822d3, 0x20d7820e, 0x200382b6, 0x200382bc, 0x200382c2, 0x200382c8, 0x200382ce, 0x200382d4, 0x200382da, 0x200382e0, 0x2603881a, 0x071a07e6,
0x82ec07e6, 0x82f22003, 0x82b62003, 0x82bc2003, 0x82c22003, 0x82c82003, 0x82ce2003, 0x82d42003, 0x82da2003, 0x82e02003, 0x82f82003, 0x05fe24ef,
0x8204084c, 0x820a2003, 0x82102003, 0x82162003, 0x821c2003, 0x82222003, 0x41282003, 0x20200673, 0x08210795, 0x2023822e, 0x20038234, 0x2003823a,
0x20038240, 0x20038246, 0x2003824c, 0x095b4152, 0x05580825, 0x995e08ac, 0x64082127, 0x6a201b82, 0x03422f88, 0x25078c07, 0x94057008, 0x03823408,
0x03823a20, 0x03824020, 0x03824620, 0x03824c20, 0x03825220, 0x03826420, 0x94056a24, 0x03870207, 0x07760827, 0x08760802, 0x2003827c, 0x20038282,
0x20038234, 0x2003823a, 0x20038240, 0x20038246, 0x2003824c, 0x20038252, 0x20038264, 0x2503826a, 0x008e0888, 0x03820800, 0x94208782, 0x252c7d47,
0x00000058, 0x0b470201, 0x0a894705, 0x470c8347, 0x7b220b7d, 0x2f826205, 0x35847e20, 0x0b848520, 0x05845920, 0x200b7747, 0x2011845e, 0x2523845a,
0x006afe58, 0x59850101, 0x1783a320, 0x05dd002e, 0x00010076, 0x007705bb, 0x0576ff01, 0x00231d82, 0x82700548, 0x83032011, 0x86ff2105, 0x5b221184,
0x11827505, 0x23834220, 0xfeea0223, 0x200b8282, 0x20358433, 0x21058312, 0x2383e6fe, 0x84c0ff21, 0x835b202f, 0xdefe2105, 0xe0201184, 0xff211d83,
0x202384bf, 0x20118493, 0x2023846d, 0x20238408, 0x2011848b, 0x2159834c, 0x598432ff, 0x5984ee20, 0x59840820, 0x8f840f20, 0x23841220, 0x3584e320,
0x35843020, 0x1184b320, 0x35847420, 0x23835a20, 0x84260021, 0x83dd2065, 0x91fe210b, 0x6b201d84, 0x26202f84, 0xa8202f84, 0xf8201184, 0xa3202384,
0x5a205384, 0x29201784, 0xfe211783, 0x201184ce, 0x203b84dc, 0x20298490, 0x203b846a, 0x20238427, 0x201184a9, 0x206b8492, 0x20a18478, 0x21a183f0,
0xa1475502, 0x0558280a, 0x020100c6, 0x821e0458, 0x846f2005, 0x83782017, 0x1101210b, 0x59200b84, 0x3b201784, 0x66200584, 0x3b200584, 0x200aa747,
0x261184e0, 0x006afe95, 0x84a30201, 0x0670260b, 0x01010048, 0x200584e4, 0x2305837d, 0x4e062e02, 0x30201d82, 0x01210583, 0x22118476, 0x82d40660,
0x062e2211, 0x200582d6, 0x228f84eb, 0x82460632, 0x8416200b, 0x052f2205, 0x200b82b6, 0x202984be, 0x20478432, 0x200b84cb, 0x2047847c, 0x2047847e,
0x201184c4, 0x2005849f, 0x20238413, 0x200b84ac, 0x2023845d, 0x2023845f, 0x201184a5, 0x206b848f, 0x216b835d, 0x6b84a701, 0x65846120, 0x05844520,
0x6b845e20, 0x41848120, 0x0584f520, 0x35848e20, 0x47843f20, 0x47844120, 0x11848720, 0x47847120, 0xb3843f20, 0x41054322, 0x9e20a182, 0x12201784,
0xab203584, 0x5c200b84, 0x5e203584, 0xa4203584, 0x95851184, 0x0b842020, 0x41848e20, 0x41845c20, 0x41846020, 0x8f84ec20, 0x89846020, 0x05844420,
0x8f845d20, 0x17846c20, 0x1e044f28, 0x9c070100, 0xf748ec08, 0x88042309, 0x038c0100, 0x0f8e8e20, 0x94201f8f, 0x9a201f82, 0xa0240382, 0x7c040000,
0x43830388, 0x82040028, 0x54040a01, 0x03a45a04, 0x66046023, 0x24038504, 0x046c045a, 0x26039472, 0x04780460, 0x8284047e, 0x23078527, 0x0490048a,
0x602003a3, 0x96238382, 0x8f049c04, 0xad178303, 0x82a22003, 0x04a2247b, 0x84ae04a8, 0x04b42303, 0x038f04ba, 0xc0049622, 0x5a202382, 0xc6200382,
0x1b830396, 0xcc2003b5, 0x038bc782, 0xd804d223, 0x23039304, 0x04e404de, 0xe7ad038f, 0xea209f9b, 0x038fd782, 0x1382f020, 0x6c220389, 0xfb867204,
0x9f845a20, 0x83046021, 0x82f6201b, 0x20038b13, 0x840f8efc, 0x0000231b, 0x03830205, 0x05600427, 0x050e0508, 0x84039314, 0x051a261b, 0x05de0420,
0x200b8226, 0x2003922c, 0x23138f32, 0x3e053805, 0x44205782, 0x2782038f, 0x03890820, 0x00820020, 0x004a0523, 0x20038c00, 0x870f8e50, 0x8256201f,
0x21038417, 0xab825c05, 0x47820382, 0x68056224, 0x03936e05, 0x74231b84, 0x83056205, 0x057a2203, 0x86078480, 0x8e1b830f, 0x8b862003, 0x2067820f,
0x87038362, 0x8c052213, 0x24b38305, 0x05920562, 0x23038b98, 0x9e05d204, 0x05230393, 0x8faa05a4, 0x8a538703, 0x92862007, 0x8a778c13, 0x8e9f8893,
0x41438433, 0x0e22107b, 0xef831405, 0xa3833f84, 0x2c056025, 0x82006004, 0x56052500, 0xb0056805, 0xff47c383, 0x107d4f2c, 0xe14e0220, 0x0bd95405,
0x62053826, 0x6c020100, 0x01226482, 0x0b844c02, 0x200b1148, 0x0aed4e94, 0x48054748, 0x92200b1d, 0x01211d83, 0x21358366, 0x2f486801, 0x8459200a,
0x0b954f35, 0x48114148, 0x354f056b, 0x0b814e05, 0x4f050347, 0x1b200b17, 0x1b264d84, 0x0100c605, 0x05845602, 0x200b4d4f, 0x201d840d, 0x201784e4,
0x0a1d4f4d, 0x3b4f5a20, 0x61022109, 0x57472384, 0x0bf94e05, 0x4705c548, 0x6d200569, 0x58203b84, 0xd7483584, 0x84c92005, 0x4f932035, 0xe3200a95,
0xe726ef84, 0x01001805, 0xef830f02, 0x0324032b, 0x00010034, 0x004e000c, 0x201b8210, 0x20038e4a, 0x8f0f8e50, 0x8256201f, 0x825c201f, 0x84622003,
0x00032927, 0x002c0026, 0xfd010032, 0x211ca356, 0xa383a8fd, 0x06a9fd23, 0x85858289, 0x02b822af, 0x5a8584c4, 0x1620057b, 0x03874d82, 0x17821c20,
0x33421020, 0xfebc220e, 0x22398282, 0x8a96026a, 0x8b8583b9, 0x86622003, 0x87178f99, 0x8268200f, 0x826e201f, 0x84742003, 0x000c3827, 0x003e0038,
0x004a0044, 0x00560050, 0x0062005c, 0x006e0068, 0xa07a0074, 0x05ad22cb, 0x228b82b6, 0x8248065e, 0x835d2005, 0xb4012105, 0x8e220b84, 0x11824e06,
0x05830f20, 0x84860121, 0x066d2211, 0x201182d4, 0x0ab34754, 0x0909ad47, 0x03000220, 0xfd06ed06, 0x0e070000, 0x11000e07, 0x1e071d07, 0x01001200,
0x8f032e00, 0x94039003, 0xb104af04, 0xfe04dc04, 0x1a060205, 0x30062f06, 0x43063206, 0x47064506, 0x4a064806, 0x4d064b06, 0x4f064e06, 0x52065006,
0x54065306, 0x56065506, 0x58065706, 0x5a065906, 0x69065c06, 0x6b066a06, 0x6f066c06, 0x71067006, 0x73067206, 0x75067406, 0x7a067706, 0x02007b06,
0x21011c00, 0x00004401, 0x4e014601, 0x50012400, 0x2d005201, 0x5e015401, 0x60013000, 0x3b006501, 0x68016801, 0x6a014100, 0x42007501, 0x7b017701,
0x7d014e00, 0x53007d01, 0x7f017f01, 0x81015400, 0x55008801, 0xa0018a01, 0xa2015d00, 0x7400af01, 0xb201b101, 0xb4018200, 0x8400bf01, 0xc401c101,
0xc6019000, 0x9400d401, 0xee01d601, 0xf001a300, 0xbc00f101, 0xf501f301, 0xfa01be00, 0xc1000602, 0x0b020902, 0x0f02ce00, 0xd1000f02, 0x18021102,
0x1a02d200, 0xda002e02, 0x30023002, 0x3202ef00, 0xf0003c02, 0x3f023e02, 0xab82fb00, 0x02076208, 0x004b0241, 0x024d0200, 0x020b00fc, 0x00fe02fe,
0x030003bb, 0x03bc0005, 0x00070307, 0x030903c2, 0x06c3008c, 0x01e606e6, 0x00020047, 0x0004000c, 0x0000002b, 0x002e002d, 0x00300028, 0x002a0062,
0x00880064, 0x008b005d, 0x0082009e, 0x00bc00a0, 0x00be0096, 0x00b300d2, 0x00df00d4, 0x00e100c8, 0x2c0982ed, 0x001301ef, 0x011501e1, 0x01060117,
0x2001821b, 0x304b8209, 0x06ed0602, 0x070000fb, 0x001d071d, 0x0001000f, 0x220f8203, 0x820007f9, 0x06042809, 0x07fd06fc, 0x821e070e, 0x8401200b,
0x820c2005, 0x07223425, 0x07250724, 0x07270726, 0x07290728, 0x072d072a, 0x8230072e, 0x00002621, 0x22b8030a, 0x0c6b5e72, 0x72675c38, 0x92006b65,
0x6e74616c, 0x697ac800, 0x4203686e, 0x7979797a, 0x855d7803, 0x82162008, 0x001022c5, 0x08c38220, 0x5a004022, 0x7a006a00, 0x9a008a00, 0xba00aa00,
0xda00ca00, 0xfa00ea00, 0x1a010a01, 0x3a012a01, 0x5a014a01, 0x012e358a, 0x21001100, 0x41003100, 0x6b005b00, 0xf7827b00, 0xab009b2e, 0xcb00bb00,
0xeb00db00, 0x0b01fb00, 0x2b26dd82, 0x4b013b01, 0x358a5b01, 0x00022a08, 0x00220012, 0x00420032, 0x006c005c, 0x008c007c, 0x00ac009c, 0x00cc00bc,
0x00ec00dc, 0x010c01fc, 0x012c011c, 0x014c013c, 0x08e35e5c, 0x41722b08, 0x0020455a, 0x544143a6, 0x43da0020, 0x01205452, 0x5a414b0e, 0x4d420120,
0x01204c4f, 0x4b4c5076, 0x52aa0120, 0x01204d4f, 0x238254de, 0x12023908, 0x204b5254, 0x00004602, 0x1600ffff, 0x13000300, 0x33002300, 0x5d004300,
0x7d006d00, 0x9d008d00, 0xbd00ad00, 0xdd00cd00, 0xfd00ed00, 0x1d010d01, 0x3d012d01, 0x5d014d01, 0x17203184, 0x2a08ad82, 0x00240014, 0x00440034,
0x005e0050, 0x007e006e, 0x009e008e, 0x00be00ae, 0x00de00ce, 0x01fe00ee, 0x011e010e, 0x013e012e, 0x865e014e, 0x052c0833, 0x25001500, 0x45003500,
0x5f005100, 0x7f006f00, 0x9f008f00, 0xbf00af00, 0xdf00cf00, 0xff00ef00, 0x1f010f01, 0x3f012f01, 0x5f014f01, 0x06203386, 0x28089d82, 0x00360026,
0x00520046, 0x00700060, 0x00900080, 0x00b000a0, 0x00d000c0, 0x01f000e0, 0x01100100, 0x01300120, 0x01500140, 0x08338660, 0x1700072c, 0x37002700,
0x53004700, 0x71006100, 0x91008100, 0xb100a100, 0xd100c100, 0xf100e100, 0x11010101, 0x31012101, 0x51014101, 0x33866101, 0x00082c08, 0x00280018,
0x00480038, 0x00620054, 0x00820072, 0x00a20092, 0x00c200b2, 0x00e200d2, 0x010201f2, 0x01220112, 0x01420132, 0x86620152, 0x092c0833, 0x29001900,
0x49003900, 0x63005500, 0x83007300, 0xa3009300, 0xc300b300, 0xe300d300, 0x0301f300, 0x23011301, 0x43013301, 0x63015301, 0x2c083386, 0x001a000a,
0x003a002a, 0x0056004a, 0x00740064, 0x00940084, 0x00b400a4, 0x00d400c4, 0x01f400e4, 0x01140104, 0x01340124, 0x01540144, 0x08338664, 0x1b000b2c,
0x3b002b00, 0x57004b00, 0x75006500, 0x95008500, 0xb500a500, 0xd500c500, 0xf500e500, 0x15010501, 0x35012501, 0x55014501, 0x33866501, 0x000c2c08,
0x002c001c, 0x004c003c, 0x00660058, 0x00860076, 0x00a60096, 0x00c600b6, 0x00e600d6, 0x010601f6, 0x01260116, 0x01460136, 0x86660156, 0x0d2c0833,
0x2d001d00, 0x4d003d00, 0x67005900, 0x87007700, 0xa7009700, 0xc700b700, 0xe700d700, 0x0701f700, 0x27011701, 0x47013701, 0x67015701, 0x080aaf42,
0x1e000e2a, 0x3e002e00, 0x68004e00, 0x88007800, 0xa8009800, 0xc800b800, 0xe800d800, 0x0801f800, 0x28011801, 0x48013801, 0x68015801, 0x3208358a,
0x001f000f, 0x003f002f, 0x0069004f, 0x00890079, 0x00a90099, 0x00c900b9, 0x00e900d9, 0x010901f9, 0x01290119, 0x01490139, 0x01690159, 0x6c61616a,
0x847e0874, 0x84862005, 0x848e2005, 0x84962005, 0x849e2005, 0x84a62005, 0x84ae2005, 0x84b62005, 0x84be2005, 0x84c62005, 0x84ce2005, 0x84d62005,
0x84de2005, 0x84e62005, 0x84ee2005, 0x63f62105, 0xfe205f83, 0x09210583, 0x210583d0, 0x0583a20a, 0x83740b21, 0x460c2105, 0x0d210583, 0x20058418,
0x210583ea, 0x0583bc0e, 0x838e0f21, 0x60102105, 0x11210583, 0x21058332, 0x05840412, 0x0583d620, 0x83a81321, 0x7a142105, 0x15270583, 0x7361634c,
0x841e1665, 0x84242005, 0x842a2005, 0x84302005, 0x84362005, 0x843c2005, 0x84422005, 0x84482005, 0x844e2005, 0x84542005, 0x845a2005, 0x826b8205,
0x84662047, 0x846c200b, 0x84722005, 0x64782605, 0x166d6f6e, 0x2005847e, 0x20058484, 0x2005848a, 0x20058490, 0x20058496, 0x2005849c, 0x200584a2,
0x200584a8, 0x200584ae, 0x200584b4, 0x200584ba, 0x200584c0, 0x200584c6, 0x200584cc, 0x260584d2, 0x617266d8, 0x84de1663, 0x84e82005, 0x84f22005,
0x83fc2005, 0x06172105, 0x10200584, 0x1a200584, 0x24200584, 0x2e200584, 0x38200584, 0x42200584, 0x4c200584, 0x56200584, 0x60200584, 0x6a200584,
0x74260584, 0x6c636f6c, 0x05847e17, 0x05848420, 0x05848a20, 0x05849020, 0x05849620, 0x05849c20, 0x0584a220, 0x0584a820, 0x0584ae20, 0x756eb426,
0xba17726d, 0xc0200584, 0xc6200584, 0xcc200584, 0xd2200584, 0xd8200584, 0xde200584, 0xe4200584, 0xea200584, 0xf0200584, 0xf6200584, 0xfc200584,
0x18210583, 0x20058402, 0x20058408, 0x2105840e, 0x06826f14, 0x841a1821, 0x84202005, 0x84262005, 0x842c2005, 0x84322005, 0x84382005, 0x843e2005,
0x84442005, 0x844a2005, 0x84502005, 0x84562005, 0x845c2005, 0x84622005, 0x84682005, 0x846e2005, 0x6f742605, 0x186e6472, 0x2005847a, 0x20058482,
0x2005848a, 0x20058492, 0x2005849a, 0x200584a2, 0x200584aa, 0x200584b2, 0x200584ba, 0x200584c2, 0x200584ca, 0x200584d2, 0x200584da, 0x200584e2,
0x260584ea, 0x6c6173f2, 0x83fa1874, 0x00192105, 0x06200584, 0x0c200584, 0x12200584, 0x18200584, 0x1e200584, 0x24200584, 0x2a200584, 0x30200584,
0x36200584, 0x3c200584, 0x42200584, 0x48200584, 0x4e200584, 0x54260584, 0x666e6973, 0x05845a19, 0x05846020, 0x05846620, 0x05846c20, 0x05847220,
0x05847820, 0x05847e20, 0x05848420, 0x05848a20, 0x05849020, 0x05849620, 0x05849c20, 0x0584a220, 0x0584a820, 0x0584ae20, 0x7373b426, 0xba193130,
0xc0200584, 0xc6200584, 0xcc200584, 0xd2200584, 0xd8200584, 0xde200584, 0xe4200584, 0xea200584, 0xf0200584, 0xf6200584, 0xfc200584, 0x1a210583,
0x20058402, 0x20058408, 0x2005840e, 0x22058214, 0x841a1a32, 0x84202005, 0x84262005, 0x842c2005, 0x84322005, 0x84382005, 0x843e2005, 0x84442005,
0x844a2005, 0x84502005, 0x84562005, 0x845c2005, 0x84622005, 0x84682005, 0x846e2005, 0x82742005, 0x1a332205, 0x2005847a, 0x20058482, 0x2005848a,
0x20058492, 0x2005849a, 0x200584a2, 0x200584aa, 0x830584b2, 0x1a3322ef, 0x200b84c2, 0x830584ca, 0x1a3322e9, 0x200b84da, 0x830584e2, 0x1a3322e3,
0x220b82f2, 0x83fa1a34, 0x001b2105, 0x06200584, 0x0c200584, 0x12200584, 0x18200584, 0x1e200584, 0x24200584, 0x2a200584, 0x30200584, 0x36200584,
0x3c200584, 0x42200584, 0x48200584, 0x4e200584, 0x54200584, 0x35220582, 0x05845a1b, 0x3522dd83, 0x0b846a1b, 0x05847220, 0x3521d783, 0x21d7831b,
0xd7831b35, 0x831b3521, 0x1b3521d7, 0x3521d783, 0x21d7831b, 0xd7831b35, 0x831b3521, 0x1b3521d7, 0x3521d783, 0x21d7831b, 0xd7831b35, 0x831b3521,
0x1b3621d7, 0x3621d783, 0x21d7831b, 0xd7831b36, 0x831b3621, 0x1b3621d7, 0x3622d783, 0x6b82021c, 0x0a1c3622, 0xd1830584, 0x1a1c3622, 0x22200b84,
0xcb830584, 0x321c3622, 0x3a200b84, 0xc5830584, 0x4a1c3622, 0x52200b84, 0x37210582, 0x21bf831c, 0xbf831c37, 0x6a1c3722, 0xbf831184, 0x831c3721,
0x1c3721bf, 0x3721bf83, 0x21bf831c, 0xbf831c37, 0x831c3721, 0x1c3721bf, 0x3721bf83, 0x21bf831c, 0xbf831c37, 0x831c3721, 0x1c3721bf, 0x3721bf83,
0x21bf831c, 0xbf831c37, 0x831c3821, 0x1c3822bf, 0x225982e0, 0x84e61c38, 0x84ec2005, 0x22c58305, 0x84f81c38, 0x83fe200b, 0x041d2105, 0xcb830584,
0x101d3822, 0x16200b84, 0x1c200584, 0xd1830584, 0x281d3822, 0x2e200b84, 0x34260584, 0x73627573, 0x05843a1d, 0x05844020, 0x05844620, 0x05844c20,
0x05845220, 0x05845820, 0x05845e20, 0x05846420, 0x05846a20, 0x05847020, 0x05847620, 0x05847c20, 0x05848220, 0x05848820, 0x05848e20, 0x75739426,
0x9a1d7370, 0xa0200584, 0xa6200584, 0xac200584, 0xb2200584, 0xb8200584, 0xbe200584, 0xc4200584, 0xca200584, 0xd0200584, 0xd6200584, 0xdc200584,
0xe2200584, 0xe8200584, 0xee200584, 0xf4260584, 0x6d756e74, 0x0583fa1d, 0x84001e21, 0x84062005, 0x840c2005, 0x84122005, 0x84182005, 0x841e2005,
0x84242005, 0x842a2005, 0x84302005, 0x84362005, 0x843c2005, 0x84422005, 0x84482005, 0x844e2005, 0x7a542605, 0x1e6f7265, 0x2005845a, 0x20058460,
0x20058466, 0x2005846c, 0x20058472, 0x20058478, 0x2005847e, 0x20058484, 0x2005848a, 0x20058490, 0x20058496, 0x2005849c, 0x200584a2, 0x200584a8,
0x240584ae, 0x000000b4, 0x20038202, 0x0807fa01, 0x190067d1, 0x1b001a00, 0x1d001c00, 0x1f001e00, 0x21002000, 0x23002200, 0x25002400, 0x27002600,
0x29002800, 0x2b002a00, 0x2d002c00, 0x2f002e00, 0x31003000, 0x33003200, 0x35003400, 0x37003600, 0x39003800, 0x3b003a00, 0x3d003c00, 0x3f003e00,
0x41004000, 0x43004200, 0x45004400, 0x47004600, 0x49004800, 0x4b004a00, 0x4d004c00, 0x4f004e00, 0x51005000, 0x53005200, 0x55005400, 0x57005600,
0x59005800, 0x5b005a00, 0x5d005c00, 0x5f005e00, 0x61006000, 0x63006200, 0x65006400, 0x67006600, 0x69006800, 0x6b006a00, 0x6d006c00, 0x6f006e00,
0x71007000, 0x73007200, 0x75007400, 0x77007600, 0x79007800, 0x7b007a00, 0x7d007c00, 0x7f007e00, 0x10000000, 0x4d0cd100, 0x0d000125, 0xdb000000,
0x84052005, 0x2605d75f, 0x00060003, 0x82080007, 0x95094063, 0x17000122, 0x1420ff84, 0x15200584, 0x16200584, 0x12200584, 0x10200584, 0x13200584,
0x11200584, 0x0e200584, 0x0f200584, 0x04200584, 0x0c2005de, 0x05d75f84, 0x09000224, 0x61820a00, 0x012207f7, 0xdf848000, 0x8c2005d9, 0x05d45f84,
0x00c83d27, 0x3d810001, 0x200584c2, 0x200584bc, 0x200584b6, 0x200584b0, 0x200584aa, 0x200584a4, 0x2005849e, 0x20058498, 0x20058492, 0x2005848c,
0x20058486, 0x20058480, 0x2005847a, 0x20058474, 0x2005846e, 0x22058272, 0x846c3d82, 0x84662005, 0x84602005, 0x845a2005, 0x84542005, 0x844e2005,
0x84482005, 0x84422005, 0x843c2005, 0x84362005, 0x84302005, 0x842a2005, 0x84242005, 0x841e2005, 0x84182005, 0x00202805, 0x00830002, 0x86183d84,
0x86102007, 0x86082007, 0x85002007, 0xf83c2107, 0xf0200786, 0xe8200786, 0xe0200786, 0xd8200786, 0xd0200786, 0xc8200786, 0xc0200786, 0xb8200786,
0xb0200786, 0xa8200786, 0xd2200786, 0x85228582, 0x0584cc3c, 0x0584c620, 0x0584c020, 0x0584ba20, 0x0584b420, 0x0584ae20, 0x0584a820, 0x0584a220,
0x05849c20, 0x05849620, 0x05849020, 0x05848a20, 0x05848420, 0x05847e20, 0x05847820, 0x67828420, 0x87008624, 0x07867c3c, 0x07867420, 0x07866c20,
0x07866420, 0x07865c20, 0x07865420, 0x07864c20, 0x07864420, 0x07863c20, 0x07863420, 0x07862c20, 0x07862420, 0x07861c20, 0x07861420, 0x07860c20,
0x07823220, 0x89008824, 0x07862a3c, 0x07862220, 0x07861a20, 0x07861220, 0x07860a20, 0x07850220, 0x86fa3b21, 0x86f22007, 0x86ea2007, 0x86e22007,
0x86da2007, 0x86d22007, 0x86ca2007, 0x86c22007, 0x86ba2007, 0x82d82007, 0x008a2407, 0x86d03b8b, 0x86c82007, 0x86c02007, 0x86b82007, 0x86b02007,
0x86a82007, 0x86a02007, 0x86982007, 0x86902007, 0x86882007, 0x86802007, 0x86782007, 0x86702007, 0x86682007, 0x85602007, 0x063c2707, 0x8d000100,
0x0583003c, 0x0124d382, 0xf43b8d00, 0xee200b84, 0xe8200584, 0xe2200584, 0xdc200584, 0xd6200584, 0xd0200584, 0xca200584, 0xc4200584, 0xbe200584,
0xb8200584, 0xb2200584, 0xac200584, 0x00200583, 0xbd545983, 0x2005d905, 0xd9658403, 0x840b2005, 0x2005d95f, 0xd55f8418, 0xf5f40905, 0xf401ec01,
0x0402fc01, 0x14020c02, 0x24021c02, 0x36022c02, 0x48024002, 0x58025002, 0x68026002, 0x78027002, 0x88028002, 0x98029002, 0xaa02a202, 0xba02b202,
0xdc02ca02, 0x0003ee02, 0x20031203, 0x3e032e03, 0x62035003, 0x88037403, 0xb0039c03, 0xd403c003, 0xfc03ea03, 0x34041e04, 0x5c044804, 0x7c046c04,
0x94048804, 0xb004a004, 0xd004c004, 0xf004e004, 0x10050005, 0x2e052005, 0x4a053c05, 0x66055805, 0x86057405, 0xa6059405, 0xc605b605, 0xe605d605,
0x0806f405, 0x28061a06, 0x5c064806, 0x80066e06, 0xa0068e06, 0xbc06ae06, 0xde06ca06, 0xfa06ec06, 0x16070807, 0x32072407, 0x4e074007, 0x6a075c07,
0x86077807, 0xa2079407, 0xbe07b007, 0xda07cc07, 0xfa07ec07, 0x16080808, 0x36082808, 0x58084808, 0x74086608, 0x8a088208, 0xfa08f008, 0x12090409,
0x68095a09, 0x84097609, 0x9e099209, 0xb809b009, 0xc809c009, 0xda09d009, 0xea09e209, 0xfc09f409, 0x120a040a, 0x280a200a, 0x380a300a, 0x480a400a,
0x580a500a, 0x680a600a, 0x780a700a, 0x880a800a, 0x980a900a, 0xa80aa00a, 0xb80ab00a, 0xc80ac00a, 0xd80ad00a, 0xe80ae00a, 0xf80af00a, 0x080b000b,
0x180b100b, 0x280b200b, 0x380b300b, 0x480b400b, 0x580b500b, 0x680b600b, 0x780b700b, 0x880b800b, 0x980b900b, 0xa80ba00b, 0xb80bb00b, 0xc80bc00b,
0xd80bd00b, 0xe80be00b, 0xf80bf00b, 0x080c000c, 0x180c100c, 0x280c200c, 0x380c300c, 0x480c400c, 0x580c500c, 0x680c600c, 0x780c700c, 0x880c800c,
0x980c900c, 0xa80ca00c, 0xb80cb00c, 0xc80cc00c, 0xd80cd00c, 0xe80ce00c, 0xf80cf00c, 0x080d000d, 0x180d100d, 0x280d200d, 0x380d300d, 0x480d400d,
0x580d500d, 0x0100600d, 0x01000000, 0x03004c38, 0x39210783, 0x210f85ac, 0x07866c0b, 0x07868620, 0x0786a220, 0x0786be20, 0x0786da20, 0x0600d822,
0x02243782, 0xe80bd60b, 0xf0240986, 0x0400020c, 0x01221382, 0x23850a0c, 0x86160c21, 0x86142007, 0x862a2007, 0x21638607, 0x0f866a0c, 0x07866820,
0x07866e20, 0x07867420, 0x07867220, 0x61858620, 0x0c840c23, 0x20118698, 0x206986a2, 0x200f86a0, 0x202184b6, 0x26ff8205, 0x0cdc0cca, 0x84040df0,
0x8206200f, 0x821c20fb, 0x0d4624f5, 0x86720d5c, 0x0d762a11, 0x0d9e0d8a, 0x0dca0db4, 0x2a1186e0, 0x0ef60de4, 0x0e1a0e08, 0x85420e2e, 0x440e2b11,
0x680e560e, 0x8e0e7a0e, 0x1184a20e, 0xa40e0428, 0xc40eb40e, 0x0d86d60e, 0xea0eda26, 0x0c0ffa0e, 0x052a0d84, 0x220f100f, 0x480f340f, 0x0f845c0f,
0x600f062c, 0x840f720f, 0xaa0f960f, 0x1186be0f, 0xd20fc02a, 0xf60fe40f, 0x1e100a10, 0x102a1185, 0x10301020, 0x10501040, 0x97851060, 0x7210072e,
0x92108210, 0xb210a210, 0xd410c210, 0x072e2584, 0xe210d210, 0x0211f210, 0x22111211, 0x13853411, 0x1132112d, 0x115a1146, 0x11861170, 0x84b2119c,
0x11052a13, 0x11c611b4, 0x12ec11d8, 0x2e0f8400, 0x12041207, 0x12281216, 0x124c123a, 0x84741260, 0x12083013, 0x12861274, 0x12ac1298, 0x12d012be,
0x84f812e4, 0x12062c15, 0x130813f6, 0x132e131a, 0x84561342, 0x130e3c11, 0x136a1358, 0x1390137c, 0x13ba13a6, 0x13de13cc, 0x140414f2, 0x142a1416,
0x8452143e, 0x14083021, 0x14561444, 0x147c1468, 0x14a41492, 0x84cc14b8, 0x14072e15, 0x14dc14ca, 0x150215ee, 0x152c1518, 0x2d138540, 0x52154015,
0x76156415, 0x9c158815, 0x1384b015, 0xb015052a, 0xd415c215, 0xfc15e815, 0x16290f85, 0x16121600, 0x16381624, 0x260f844c, 0x16501603, 0x86781664,
0x1680240b, 0x86a81694, 0x16b0230b, 0x734216c4, 0x16052a05, 0x17f216e0, 0x17181704, 0x2a1b842c, 0x17301705, 0x17541742, 0x867c1768, 0x1780270f,
0x17a41792, 0x9b8517b8, 0xd017052a, 0xf417e217, 0x1c180818, 0x18291f85, 0x18321820, 0x18581844, 0x280f866c, 0x18821870, 0x18a81894, 0x270f86bc,
0x18d218c0, 0x19f818e4, 0x2806e141, 0x22191019, 0x48193419, 0x05e14119, 0x60190428, 0x80197019, 0x2d849219, 0x96190428, 0xb619a619, 0x0d86c819,
0xdc19cc26, 0xfe19ec19, 0x1a260d85, 0x1a121a02, 0xbb411a22, 0x1a042805, 0x1a481a38, 0x866a1a58, 0x1a6e261b, 0x1a8e1a7e, 0x2c0d84a0, 0x1aa41a06,
0x1ac41ab4, 0x1ae41ad4, 0x281184f6, 0x1bf61a04, 0x1b161b06, 0x2c0d8428, 0x1b2c1b06, 0x1b4c1b3c, 0x1b6c1b5c, 0x2a11847e, 0x1b7e1b05, 0x1b9e1b8e,
0x86c01bae, 0x1bc2270f, 0x1be21bd2, 0xfb421cf2, 0x1c052a05, 0x1c161c06, 0x1c361c26, 0x291f8548, 0x5a1c4a1c, 0x7a1c6a1c, 0x0f848c1c, 0x8e1c0427,
0xae1c9e1c, 0x2d3d851c, 0x1cc41c07, 0x1ce41cd4, 0x1d061df6, 0x73861d16, 0x1d261d2b, 0x1d461d36, 0x1d681d58, 0x2733857a, 0x8a1d7a1d, 0xac1d9a1d,
0x0d390d84, 0xc01db01d, 0xe21dd01d, 0x081ef61d, 0x281e181e, 0x4a1e3a1e, 0x6c1e5a1e, 0x2da1851e, 0x1e701e07, 0x1e901e80, 0x1eb61ea2, 0xbb411ec6,
0x1e062c05, 0x1ee61ed6, 0x1f081ff6, 0x842e1f1c, 0x1f062c45, 0x1f3e1f2e, 0x1f5e1f4e, 0x84801f6e, 0x1f042811, 0x1f901f80, 0x84b21fa0, 0x1f062c0d,
0x1fc61fb6, 0x1fe61fd6, 0x840820f6, 0x20042811, 0x20182008, 0x863a2028, 0x203e260d, 0x205e204e, 0x260d8670, 0x20842074, 0x84a62094, 0x20072e0d,
0x20ba20aa, 0x20dc20ca, 0x21fc20ec, 0x2813840e, 0x210c2104, 0x212c211c, 0x250d863e, 0x21522142, 0x25432162, 0x21042805, 0x21882178, 0x86aa2198,
0x21ae251b, 0x21ce21be, 0x28052744, 0x21e42104, 0x220422f4, 0x261b8516, 0x2a221a22, 0x42223a22, 0x042805b5, 0x60225022, 0x82227022, 0x86261b86,
0xa6229622, 0x0d86b822, 0xcc22bc26, 0xee22dc22, 0xf2260d86, 0x12230223, 0x0d852423, 0x23282327, 0x23482338, 0x260d865a, 0x236e235e, 0x8690237e,
0x2394260d, 0x23b423a4, 0x250d86c6, 0x23da23ca, 0x354323ea, 0x24042805, 0x24102400, 0x85322420, 0x3624271b, 0x56244624, 0x0d866824, 0x7c246c26,
0x9e248c24, 0xa2250d86, 0xc224b224, 0x05514424, 0xd824062c, 0xf824e824, 0x18250825, 0x1f852a25, 0x252a2526, 0x254a253a, 0x2606d942, 0x70256025,
0x42258025, 0x252606d9, 0x25a62596, 0xd94225b6, 0x25062c05, 0x25dc25cc, 0x26fc25ec, 0x851e260c, 0x1e26273b, 0x3e262e26, 0x0d845026, 0x5426062b,
0x74266426, 0x94268426, 0x057d4126, 0xa626052a, 0xc826b626, 0xec26da26, 0x04282184, 0xfe26ee26, 0x20270e27, 0x27260d85, 0x27342724, 0x77442744,
0x27043005, 0x276e275a, 0x00962782, 0x00000002, 0x849c2701, 0x305f0823, 0xbe27ac27, 0xe027ce27, 0x0628f427, 0x32281c28, 0x5e284828, 0x8a287428,
0xb628a028, 0xde28ca28, 0x0629f228, 0x2e291a29, 0x56294229, 0x7e296a29, 0xa6299229, 0xce29ba29, 0xf229e029, 0x162a042a, 0x3e2a2a2a, 0x662a522a,
0x8e2a7a2a, 0xb62aa22a, 0xdc2acc2a, 0x042bf02a, 0x282b162b, 0x412b3a2b, 0x022405bd, 0x0a2bf82a, 0x02236f84, 0x412b122b, 0x2b270699, 0x2b3e2b2c,
0x84642b50, 0x21410817, 0x7c2b6a2b, 0x9e2b8c2b, 0xc42bb22b, 0xf02bda2b, 0x1c2c062c, 0x482c322c, 0x702c5c2c, 0x982c842c, 0xc02cac2c, 0xe82cd42c,
0x0e2dfc2c, 0x322d202d, 0x5a2d462d, 0x822d6e2d, 0xaa2d962d, 0xce2dbc2d, 0x0643422d, 0xba240d82, 0xdc2dca2d, 0x04285584, 0xf02de02d, 0x122e002e,
0x2e260d85, 0x2e262e16, 0xad432e36, 0x2e042705, 0x2e5c2e4c, 0x49432e6c, 0x2e032605, 0x2e962e82, 0x2c2784a8, 0x2eae2e06, 0x2ed82ec2, 0x2ffe2eec,
0x05fd4612, 0x14200788, 0x16200f86, 0xef440786, 0x2f022405, 0x86302f1e, 0x863c2011, 0x84462007, 0x2f02234b, 0x7f412f44, 0x2f012205, 0x22118462,
0x846a2f01, 0x2f042707, 0x2f882f78, 0x09432f98, 0xae2f2706, 0xce2fbe2f, 0x3d86e02f, 0x0785e420, 0x85023021, 0x86342007, 0x3a342155, 0x21059547,
0x17864034, 0x07865620, 0x07865a20, 0x0f8e5c20, 0x178e5e20, 0x0f866020, 0x07866220, 0x64200f8f, 0x66201786, 0x68200786, 0x6a200786, 0x6c200786,
0x76200786, 0x78200786, 0x7a200786, 0x1f870f8e, 0x1f8e7420, 0x0f867c20, 0x07868020, 0x07868420, 0x07868820, 0x07868c20, 0x07869a20, 0x0f969c20,
0x17869e20, 0x0786a020, 0x0786a220, 0x0786a820, 0x0786b020, 0x0786ba20, 0x0786bc20, 0x0786c420, 0x0786ca20, 0x0786c820, 0x0f96c620, 0x1786ce20,
0x0786cc20, 0x21069741, 0x0f86f034, 0x0786f620, 0x0786f420, 0x0786fa20, 0x0786f820, 0x0786fe20, 0x0f8dfc20, 0x85043521, 0x4135200f, 0x352106df,
0x200f860a, 0x2007860e, 0x8707860c, 0x870f8717, 0x8610201f, 0x069f421f, 0x86143521, 0x861a200f, 0x86202007, 0x86222007, 0x86242007, 0x86262007,
0x862c2007, 0x862e2007, 0x06bd4207, 0x86323521, 0x8634200f, 0x06774207, 0x85183621, 0x8636200f, 0x1c36215f, 0x1e200f86, 0x67860786, 0x86243621,
0x8626200f, 0x86282007, 0x862c2007, 0x862e2007, 0x206f8607, 0x216f8636, 0x17863636, 0x07863820, 0x2106df42, 0x0f863e36, 0x179e4220, 0x1f864420,
0x07864620, 0x00482208, 0x004a3602, 0x03ae030e, 0x03b003af, 0x03b203b1, 0x03b403b3, 0x03b603b5, 0x040804b7, 0x04ea0409, 0x082182ba, 0x0f003e20,
0xcd03cc03, 0xcf03ce03, 0xd103d003, 0xd303d203, 0xd503d403, 0x15041404, 0xbb04eb04, 0x2382ad04, 0x23821a20, 0x03c22008, 0x03c403c3, 0x03c603c5,
0x03c803c7, 0x03ca03c9, 0x047304cb, 0x06b10674, 0x00b306b2, 0x82f63502, 0xb8220823, 0xba03b903, 0xbc03bb03, 0xbe03bd03, 0xc003bf03, 0x4404c103,
0x82064504, 0x84068306, 0xee350100, 0x0583e1ff, 0x002b0023, 0x20078203, 0x240382f2, 0x000000f8, 0x20038201, 0x2011848e, 0x201182f0, 0x20118ce6,
0x201182c4, 0x201186e8, 0x2023848f, 0x201182b2, 0x261188de, 0x00d43501, 0x82080001, 0x06042803, 0x00030042, 0x82e703d5, 0x00c6221f, 0x3a918205,
0x010c00c6, 0x03a2031c, 0x03a503a4, 0x03a703a6, 0x03a903a8, 0x03ab03aa, 0x82a303ac, 0xb846081d, 0xf8032200, 0x1604f903, 0x18041704, 0x1a041904,
0x2d041b04, 0x2f042e04, 0x40043004, 0x42044104, 0x04054304, 0x0f070e07, 0x11071007, 0x13071207, 0x15071407, 0x17071607, 0x19071807, 0x20071a07,
0x31072f07, 0x6d823f07, 0x0600b622, 0xb0200582, 0x022c0582, 0x0400b035, 0x68006200, 0xf300ed00, 0xa2206382, 0x01220d8a, 0x21848e35, 0x0b009a38,
0x85008400, 0x87008600, 0x0f018800, 0x11011001, 0x13011201, 0x43821b07, 0x21826c20, 0xdb820320, 0x92350224, 0x0f829835, 0x01009222, 0x90200d82,
0x0026d782, 0x8a350200, 0x13828435, 0x13868a20, 0x3e350122, 0x76267784, 0x0a000200, 0x15821400, 0xd0000422, 0xce200b82, 0x0228098a, 0x02006035,
0xad03a103, 0x01224182, 0x3d825e35, 0x47825e20, 0x6a356422, 0x03205582, 0x012a0382, 0x03004c35, 0x58355235, 0x11845835, 0x0b820220, 0x01004c24,
0x0d824635, 0x03820120, 0x37849120, 0x11823820, 0x03822c20, 0x8305a742, 0x82002013, 0x8212200d, 0x35182149, 0x8505fb42, 0x82042027, 0x82042015,
0x3504244f, 0x820a3504, 0x2561843d, 0x0400f034, 0x0182f034, 0xf634f622, 0x03221384, 0x0183ee34, 0x34010023, 0x286586e2, 0x00030092, 0x34d83402,
0x201382d8, 0x200382c6, 0x83e184cc, 0x34012215, 0x200f82c2, 0x221d82b0, 0x88b634b0, 0x257d8215, 0x03009a34, 0x01829a34, 0x1588a020, 0x7e340122,
0x7e202b82, 0x84211782, 0x88018234, 0x826a207f, 0x3470217f, 0x13840184, 0x6e340322, 0x68200182, 0x5c202b82, 0x01200f82, 0x93200382, 0x58227f84,
0x13825234, 0x03854620, 0x94201582, 0x01221582, 0x0f823c34, 0x7f823020, 0x30343023, 0x832b8300, 0x207f8315, 0x21678214, 0x0182341a, 0x01221588,
0x2b820434, 0x2b820420, 0x88340421, 0xf23329fd, 0xf2330300, 0xf833f833, 0x03245182, 0xda330100, 0xe0260382, 0xe0330200, 0x1184e633, 0xe0200983,
0xd4201382, 0x5f870d82, 0xcc330122, 0xba201182, 0xc0200382, 0x73825d88, 0x82a63321, 0x33a62237, 0x221388ac, 0x828c3301, 0x828c2023, 0x33922215,
0x834d8492, 0x827a2025, 0x33802171, 0x11880182, 0x11826820, 0x6e336e24, 0x11847433, 0x09820220, 0x3320fd82, 0x9521fd87, 0x20978300, 0x20498254,
0x82038548, 0x82962025, 0x204b8313, 0x225b822e, 0x84343334, 0x22138371, 0x82203301, 0x20038323, 0x205d8826, 0x22238210, 0x84163316, 0x3301220f,
0x201f8212, 0x830b8206, 0x254586cb, 0x0100ee32, 0x4389f432, 0x82d63221, 0x2003830f, 0x203384dc, 0x260d8200, 0x320200c6, 0x84cc32cc, 0x3201220f,
0x201182c8, 0x830b82bc, 0x85972043, 0xa4322189, 0xaa201382, 0x11834384, 0x98320122, 0x98200f82, 0x98203582, 0x00200982, 0x86242386, 0x86320300,
0x3b820183, 0x1b820320, 0x25820b82, 0x0120f583, 0x98211182, 0x21e78200, 0x11827232, 0x03856020, 0x99201382, 0x4c203986, 0x4c222d82, 0x5f844c32,
0x01221383, 0x23823e32, 0x15823e20, 0x09823e20, 0x2c205f87, 0x2c215f82, 0x82018232, 0x204b8339, 0x2023822c, 0x2223821a, 0x841a321a, 0x32022411,
0x82243224, 0x82082013, 0x8601200d, 0x3201255d, 0x31010010, 0x0383fd82, 0x9a201382, 0x31257185, 0x310200e0, 0x830582e0, 0x22138327, 0x82c03101,
0x82c02027, 0x82c02015, 0x25718609, 0x0300ae31, 0x0183ae31, 0x03203982, 0x01220382, 0x11829c31, 0x9c319c24, 0x1184ba31, 0x09820220, 0x01009c24,
0x71868a31, 0x88204985, 0x76201182, 0x17820385, 0x71869b20, 0x5b826220, 0x62316222, 0x1383e384, 0x54310122, 0x03852382, 0x44206f87, 0x44222382,
0x35824431, 0x3121df82, 0x201f825c, 0x87038434, 0x8224201f, 0x3124221f, 0x201f864c, 0x201b8226, 0x200b8214, 0x20658a01, 0x82138202, 0x82118203,
0x010023a9, 0x0388f630, 0x30254386, 0x300200e6, 0x830582e6, 0x3001220f, 0x201f82e8, 0x890384d6, 0x82c6200f, 0x84c6200f, 0x82002063, 0x82b62009,
0x30b6222f, 0x220f84d8, 0x82c23001, 0x86a62011, 0x83618373, 0x82942021, 0x82038213, 0x009d2215, 0x820b8203, 0x853020fb, 0x20738703, 0x22438266,
0x88663066, 0x82562053, 0x3056220f, 0x200f8474, 0x22078201, 0x82463001, 0x88462037, 0x8236201f, 0x3036221f, 0x220f8464, 0x82383001, 0x8626201b,
0x83618373, 0x82142073, 0x82038213, 0x849e2015, 0x82022073, 0x0002280f, 0x30383003, 0x823e303e, 0x82032015, 0x2f012803, 0x300400ee, 0x832a3024,
0x28138401, 0x30223002, 0x2f01001c, 0x232982da, 0x30163010, 0x26053543, 0x30183003, 0x82d62f12, 0x21248241, 0x53860100, 0xfc2f0224, 0x2b82c02f,
0x0385ea20, 0x9f221582, 0x0b820300, 0x0382aa20, 0x0200ce26, 0xd42fd42f, 0x15832b84, 0x13820020, 0x03008228, 0xbe2fb82f, 0x1588be2f, 0xc62f0122,
0xc6201782, 0xc6222b82, 0x9388782f, 0x2782b420, 0x662fb424, 0x1184662f, 0xa82f0224, 0x2582a82f, 0x0d825420, 0x63857983, 0x11829420, 0x03828e20,
0x618c4020, 0x49827a20, 0x2c2f7a22, 0x01221388, 0x2382722f, 0x15827220, 0x09827220, 0x67420020, 0x602f2105, 0x60215f82, 0x8201822f, 0x21af8251,
0x2382fc2d, 0x23824e20, 0x4e2f4e22, 0x3c208388, 0x3c242382, 0xea2d3c2f, 0x02241184, 0x302f302f, 0x2a202582, 0x1c20838c, 0x16201182, 0x17820385,
0x5d86a020, 0x49820220, 0x422f0221, 0x13830561, 0xfa2e0123, 0x22038300, 0x82fa2e02, 0x25838609, 0x0300e82e, 0x0183e82e, 0x03263982, 0xac2e0200,
0x2582a62e, 0x0982d620, 0xd62ed622, 0x00201384, 0xc2200f82, 0xc2242582, 0xc82ec22e, 0x01221184, 0x1382b62e, 0x2382b020, 0xb02eb022, 0xac203788,
0x9e201382, 0x6f859786, 0x11829820, 0x03858a20, 0xa1201782, 0x2e219785, 0x20378276, 0x20058276, 0x22138601, 0x82622e01, 0x82622023, 0x82622015,
0x20978715, 0x23718250, 0x2e642e50, 0x24055942, 0x2e142e02, 0x2025820e, 0x2225823e, 0x82522e3e, 0x22ab8339, 0x84382e38, 0x88a18213, 0x8224204b,
0x82162011, 0x002a2103, 0x1d825f87, 0x82022e21, 0x2e022137, 0x27881782, 0x23820220, 0x02201585, 0x00284d84, 0xf02d0100, 0xf02d0300, 0x11840183,
0xa02d0224, 0x15829a2d, 0x0200de26, 0xde2dde2d, 0x03261384, 0x8c2d442d, 0x1582862d, 0x1582ca20, 0xca2dca22, 0x02241584, 0x2e2d762d, 0xb4201382,
0xb4221382, 0x1384b42d, 0xa62d0122, 0xa0201182, 0xa0221182, 0x6188a02d, 0x61828e20, 0x8e2d8e22, 0xe7835782, 0x09820220, 0x25827c20, 0x25827c20,
0x7c2d7c22, 0x01222584, 0x1182822d, 0x11826820, 0x682d6822, 0x56203788, 0x56243782, 0x702d562d, 0x44221188, 0x8b820400, 0x13824420, 0x13844420,
0x09820220, 0x39825620, 0x0d823020, 0xa222f983, 0x0d820300, 0x03824220, 0x03851c20, 0xa3201782, 0x21058141, 0x5d82082d, 0x05820820, 0x13832783,
0xa42c0123, 0x24038300, 0x2cf42c02, 0x202782f4, 0x26038203, 0x00922c01, 0x83e22c03, 0x2e118401, 0x2c922c02, 0x2c01008c, 0x2c020080, 0x84d02cd0,
0x2c032613, 0x2c7e2c36, 0x20158278, 0x2215826c, 0x84bc2cbc, 0x2c012215, 0x201182a6, 0x20118256, 0x840982a6, 0xba2c23e7, 0x13825c2c, 0x9b869420,
0x8200a421, 0x482c219b, 0x51834d84, 0x17820120, 0x9b85a520, 0x821c2c21, 0x2c6c2337, 0x1387006c, 0x082c0122, 0xb1822782, 0x2c082c23, 0x84278284,
0xf62b299b, 0xf62b0300, 0x722c722c, 0x022e1184, 0xf02bf62b, 0xe42b0100, 0xe42b0200, 0x1384602c, 0x9a2b0326, 0xdc2be22b, 0xd0201582, 0xd0221582,
0x15844c2c, 0xd22b0224, 0x4f82d22b, 0x0d823620, 0x2b216188, 0x832582be, 0x882220b3, 0x82002075, 0x82922011, 0x2c922137, 0x8305414d, 0x2b01229d,
0x20158284, 0x20158284, 0x20098284, 0x21af8500, 0x8982722b, 0x822b7221, 0x82518201, 0x207184d5, 0x21238260, 0x87852b60, 0x4e204983, 0x4e232382,
0x422b4e2b, 0x2b23062d, 0x82542b54, 0x8c3c2049, 0x82402083, 0x85282011, 0x20178203, 0x205d86a6, 0x22498214, 0x84142b14, 0x23138397, 0x00c42a01,
0x02240383, 0x1e2b1e2b, 0x03202782, 0x01220382, 0x5f82b22a, 0x822b0c21, 0x22118401, 0x82002b02, 0x2a012211, 0x200d82fa, 0x264b8601, 0x009e2a01,
0x85e62a01, 0x20138203, 0x285f85a7, 0x0200782a, 0xd22ad22a, 0x83278300, 0x2a012213, 0x20238264, 0x21158264, 0x6b422abe, 0x522a2908, 0xac2a0300,
0x5e2a5e2a, 0x03203982, 0xa0201b82, 0x01221182, 0x0d824c2a, 0x3e203789, 0x86203782, 0x38200382, 0x00204b88, 0x18200d82, 0x72222d82, 0x1388242a,
0x702a0224, 0x1782162a, 0x3b861020, 0x0300a822, 0x02200d82, 0x56240382, 0xfc290100, 0xa8202784, 0x29279b85, 0x2a0200dc, 0x88e82942, 0x2a022413,
0x82da298a, 0x86d42025, 0x82a9203b, 0x29012227, 0x203b82c6, 0x2115827c, 0x8b8300c0, 0x00201383, 0xa0200d82, 0x68223b82, 0x1388ac29, 0x5a2a0224,
0x17829e29, 0x3b869820, 0x3b84aa20, 0x3b828a20, 0x15824c20, 0x27848420, 0x3b831383, 0x3822fd83, 0x13887029, 0x50290122, 0x50262382, 0x64280200,
0x3f825c29, 0x03820320, 0x3e29012a, 0x52280300, 0x4a294a29, 0x02221184, 0x1182062a, 0x38290122, 0x01200d82, 0xab200382, 0x2a285f84, 0x2c280100,
0x24290100, 0x13834b84, 0x04205f83, 0x18224982, 0x13881029, 0xd0290122, 0xd0262382, 0xd6290200, 0x5f883229, 0x0300be28, 0x2029c429, 0x11842029,
0xbe290224, 0x2582b829, 0x5f8c0e20, 0x1182a420, 0x2821d582, 0x205f8cfa, 0x22498284, 0x88e6288a, 0x29012213, 0x20278242, 0x22158242, 0x88162942,
0x8230205f, 0x2930245f, 0x84042904, 0x29022411, 0x82642964, 0x8cf220ad, 0x20f7835f, 0x2015820a, 0x204b88de, 0x200d8200, 0x21bf82f6, 0x115128f6,
0x21e78405, 0x1582e228, 0x1582e220, 0x3028e222, 0x25834d84, 0x0300d027, 0x1e28d028, 0x05a54228, 0x69840220, 0x0c280122, 0x01201f82, 0xac220382,
0x33820300, 0x0382f020, 0x0100aa24, 0x5f84f827, 0x39831383, 0x49829620, 0xe4279622, 0x01221388, 0x27828228, 0x15828220, 0x09828220, 0x1d420020,
0x70282105, 0x70215f82, 0x82018228, 0x8203204d, 0x28a4221b, 0x202582a4, 0x200d825e, 0x20038201, 0x205f84ad, 0x20118290, 0x8203854a, 0x86ae2013,
0x82362039, 0x2836222d, 0x835f8436, 0x28012213, 0x20238244, 0x20158244, 0x87098244, 0x8232205f, 0x2832215f, 0x39820182, 0x1a225f83, 0x25821a28,
0x0d822020, 0x4b860120, 0x06280122, 0x0c201182, 0x13820385, 0x5f85af20, 0x0222cd82, 0xd386f827, 0x01231383, 0x83002426, 0x26022203, 0x20098224,
0x25258500, 0x03001226, 0x01831226, 0x5f823982, 0x27c62723, 0x822582c6, 0x8497840c, 0xb2272537, 0xec250100, 0x18820385, 0x3985b020, 0x00d82525,
0x82d82502, 0x86012005, 0x27012313, 0x038300ae, 0xae270222, 0x5f860982, 0x009c2725, 0x839c2703, 0x83258201, 0x2790225f, 0x4a258290, 0x4b8307fd,
0x7c270122, 0x76201182, 0x25820385, 0x5f85b120, 0x00622725, 0x82622702, 0x86012005, 0x27012213, 0x8523825a, 0x205d8703, 0x2123824a, 0xfb42274a,
0x27012205, 0x201f8240, 0x872d823a, 0x82002031, 0x8528200f, 0x20158203, 0x225782b2, 0x82222701, 0x2003820f, 0x087d4d26, 0x00122727, 0x26822602,
0x20218282, 0x201b8203, 0x20fd8208, 0x83438672, 0x21438231, 0x1382f026, 0x83006021, 0x20438455, 0x853f8326, 0x09454103, 0x43410220, 0x26012208,
0x202f8208, 0x20438d02, 0x83438225, 0x21158203, 0x678200b3, 0x00de2523, 0x21038301, 0x1182a626, 0x03820320, 0xce250122, 0x96228782, 0x0f849626,
0xc4250122, 0x86204382, 0x31834386, 0x25218782, 0x201382ac, 0x85878474, 0x009a2343, 0x03832501, 0x43884c20, 0x02008a26, 0x3c253c25, 0x01220f84,
0x1f828025, 0x438e2c20, 0x13826820, 0x438a1a20, 0x0f825620, 0x38200383, 0x46204388, 0x28224382, 0x0f842825, 0x4b820120, 0x18250122, 0x2420438e,
0x06203382, 0x1e20438a, 0x03850f82, 0xbb410020, 0x0e252105, 0x0e204382, 0x0f830582, 0x82230121, 0xfe2423b7, 0x03820100, 0x24271f86, 0x240200ee,
0x829c23ee, 0x82032057, 0x82e42017, 0x071f5203, 0x2421eb86, 0x821382cc, 0x21218203, 0x238300b4, 0x0f82ba20, 0xcd460383, 0xaa242108, 0x50224382,
0x21825024, 0xa0201f83, 0x40201f82, 0x01200b82, 0x00203186, 0x88200f82, 0x2e200382, 0x4385a784, 0x0f827620, 0x23210382, 0x83338424, 0x00662621,
0x23142302, 0x220f8414, 0x82042301, 0x0056211f, 0xa7870783, 0x02004626, 0x4624f422, 0x24251f85, 0x2201003c, 0x20638ee4, 0x20138224, 0x216389d2,
0x3f82b223, 0x24210382, 0x823384d4, 0xa2232163, 0xc422a782, 0x0f84c424, 0x82240121, 0x922321c3, 0xb4206782, 0x23210f85, 0x200b8294, 0x21538da4,
0x13827023, 0xc9862382, 0x5e230122, 0x03835382, 0x83057b4b, 0x824e2053, 0x23da22b7, 0x204386da, 0x201f82c4, 0x4703823e, 0x012205d7, 0x0b824023,
0x538eba20, 0x13821c20, 0xa789a820, 0x82322421, 0x21038263, 0x0b410a23, 0x82222008, 0x22fa22eb, 0x200f88fa, 0x220f8212, 0x840c24ea, 0x2401220f,
0x83e78208, 0x8201206f, 0x41b5200f, 0x232105e5, 0x201382f0, 0x835384c8, 0x23012211, 0x8263823c, 0xb6222103, 0x2c20fb88, 0xa6214382, 0x08e34222,
0x821c2321, 0x2396220f, 0x221f8422, 0x82ba2301, 0x8286203f, 0x2053830b, 0x825385b6, 0x2201227f, 0x83538474, 0x22012211, 0x822382ee, 0x205b8203,
0x20218600, 0x22fb82de, 0x822c232c, 0x82032037, 0x827c206f, 0x8e1c2003, 0x82bc2043, 0x8a0a2013, 0x828a2043, 0x87038543, 0x827a2043, 0x227a2287,
0x2443847a, 0x22402202, 0x2021823a, 0x8703846a, 0x82582021, 0x22582221, 0x2221845e, 0x824e2201, 0x8448201b, 0x221f8303, 0x82462201, 0x8e38200b,
0x82262075, 0x82038213, 0x00b72215, 0x200b8203, 0x20038614, 0x20118228, 0x22038203, 0x82042201, 0x22182253, 0x2c0f8418, 0x21ca2102, 0x210100c4,
0x220100f4, 0x22118408, 0x82f62101, 0x82e2200f, 0x86f62003, 0x82e0200f, 0x86e6200b, 0x20538365, 0x200f8200, 0x220382c0, 0x880100d4, 0x82042065,
0x2103823f, 0x33844821, 0xf4252183, 0x38210200, 0x829d8321, 0xde212185, 0x81832f82, 0x21833187, 0x1382d220, 0x43891620, 0x827e2121, 0x2003850f,
0x05634100, 0x826e2121, 0x826e2043, 0x240f8305, 0x21202102, 0x2021821a, 0x8303845e, 0x20032611, 0x210e21c6, 0x200f8208, 0x8403844c, 0xfa202325,
0x0d82b220, 0x03843820, 0x01221183, 0x0b822c21, 0x03842620, 0x16205787, 0x16215782, 0x05ff4121, 0x18210224, 0x1d820621, 0x31850385, 0x01000e24,
0x0384f420, 0x20273186, 0x200200e4, 0x87fe20e4, 0xd42027dd, 0xd4200300, 0x0782e620, 0x20213184, 0x202d82e8, 0x201d82c2, 0x20038201, 0x21bd85b8,
0x1382b020, 0x11820382, 0x1182b920, 0x4e200122, 0x03830f82, 0x45889e20, 0x55823e20, 0x8e208e22, 0x02240f84, 0x3a204020, 0x2e202182, 0x7e200382,
0x03261184, 0x2e20e61f, 0x0f822820, 0x03821c20, 0x13846c20, 0x58200122, 0x08200b82, 0x58200382, 0x10200f86, 0x48200b82, 0xba207986, 0x1f217985,
0x211382e6, 0x8b830036, 0x01231183, 0x8700d41f, 0x86002003, 0x00c42521, 0x1fc41f02, 0x24050d44, 0x1fc61f02, 0x202182c0, 0x830384b4, 0x1f032621,
0x1fb41f6c, 0x200f82ae, 0x840384a2, 0xa61f21e3, 0xab830b82, 0x6d820120, 0x4786bb20, 0x13827c20, 0x11820382, 0x1182bc20, 0x401f0122, 0x03830f82,
0x1182ba20, 0x03820320, 0x301f0122, 0xaa226982, 0x0f84aa1f, 0x9a1f0126, 0x201f0100, 0x9a200382, 0x10201f88, 0x8a211f82, 0x063b4720, 0x821c1f21,
0x827a201b, 0x8601201b, 0x00002451, 0x82ee1e01, 0x00682113, 0x01221187, 0x0f820c1f, 0x2a200383, 0x1e214387, 0x224382fc, 0x841a1f1a, 0x1f01220f,
0x201f8204, 0x20438e0a, 0x204782da, 0x214389f8, 0x0f82c81e, 0xdb830385, 0xb8266583, 0xb81e0200, 0x4386b81e, 0x1f822420, 0x0384a820, 0x98201f87,
0x98211f82, 0x06a3451f, 0x82a01e21, 0x8288201b, 0x8201202b, 0x41bd2003, 0x1e21050b, 0x82138276, 0x20118203, 0x221182be, 0x82281e01, 0x2003830f,
0x20a78882, 0x22438218, 0x84721e72, 0x1e01220f, 0x201f821a, 0x83438662, 0x21858231, 0x1382f61d, 0x83005021, 0x23438455, 0x0100e41d, 0x1e200383,
0x83051f41, 0x82d42021, 0x1e3a2243, 0x2143853a, 0x2f82d61d, 0x438e2a20, 0x1382b220, 0x438a1820, 0x1d20ab82, 0x3f4faf83, 0x901d2108, 0x58214382,
0x0641421e, 0x82921d21, 0x8e48202f, 0x826e2043, 0x8a362013, 0x825c2043, 0x20038387, 0x837784e2, 0x004c2687, 0x1dd21d02, 0x240f84d2, 0x1d841d02,
0x2021827e, 0x2003823c, 0x221184c2, 0x82b01d01, 0x822a200b, 0x88b02003, 0x821a2031, 0x1ea02231, 0x220f8460, 0x821c1d01, 0x8d90201b, 0xf81c2175,
0x47821382, 0x23074141, 0x0100e61c, 0xf2200384, 0x75823384, 0x00d61c26, 0x1ce21c02, 0x01228585, 0x1f82d81c, 0x2f418183, 0x20218307, 0x201382b4,
0x21b989c0, 0x0f82a21c, 0x1d210382, 0x20438876, 0x22878292, 0x84661d66, 0x1c01220f, 0x20738294, 0x20878e56, 0x20138270, 0x20438a44, 0x8243825e,
0x411b2003, 0x658305b9, 0x02004e26, 0x621b621b, 0x50244386, 0x521b0100, 0x2c20438e, 0x40201382, 0xfa20438a, 0x03824382, 0x21451d20, 0xea1c2108,
0x38228782, 0x4386381d, 0x1d21eb82, 0x20438e28, 0x208782c8, 0x20438a16, 0x834382b6, 0x83778503, 0x00a62587, 0x1c521c02, 0x03207b83, 0x1c21e785,
0x20438e42, 0x20178284, 0x20438a30, 0x830f8272, 0x41042003, 0x6220080f, 0xf421cb82, 0x05e9501b, 0x5e1c0122, 0xe420b782, 0xc782438e, 0x8ad21b21,
0x822e2043, 0x20038243, 0x085d481b, 0x821e1c21, 0x1bc42243, 0x05d942c4, 0x821a1c21, 0x82b42043, 0x8201200b, 0x43bf2003, 0x1b21051d, 0x201382fc,
0x834384a2, 0x1b012211, 0x830f82ea, 0x82402003, 0x82032023, 0x1b012203, 0x224382da, 0x42301b30, 0x1b2505d9, 0x1b0100d6, 0x20438e20, 0x201382b8,
0x20438a0e, 0x830f82a6, 0x88082003, 0x00962643, 0x1af81a02, 0x260f84f8, 0x00921b01, 0x8ee81a01, 0x82742043, 0x865b8213, 0x1b012299, 0x82438262,
0xca1a2103, 0x52204388, 0xba224382, 0x0f84ba1a, 0x4e1b0122, 0xaa202f82, 0x3020438e, 0x98201382, 0x1e20878a, 0x03834382, 0x2108d149, 0xcb820e1b,
0x141b1422, 0x0a204386, 0x04201f82, 0x1a21438d, 0x204382ec, 0x20438af2, 0x85238250, 0x41002003, 0x40200631, 0x40214382, 0x051f411b, 0x361b0122,
0x30201f82, 0x1b20438d, 0x15827786, 0x3382c020, 0x681a0122, 0x03835382, 0x11823c20, 0x03820320, 0x581a0122, 0x2c22cb82, 0x0f842c1a, 0x8e1a0126,
0x1c1a0100, 0x31834386, 0x0f820020, 0x1a215782, 0x8587840a, 0x82242043, 0x21038213, 0x4388ae19, 0x02001426, 0x9e199e19, 0x01250f84, 0x01004a1a,
0x07054619, 0x19204386, 0x1921c782, 0x2143897c, 0x2382e019, 0x00200385, 0x1921cb85, 0x204382d0, 0x830582d0, 0x1a01220f, 0x201f8206, 0x204f82c0,
0x20038201, 0x202186c1, 0x821382ae, 0x20118203, 0x221182c2, 0x829c1901, 0x5003830f, 0x19210803, 0x2243828c, 0x82221922, 0x82032021, 0x82c2201b,
0x86122003, 0x82318343, 0x6a1921cb, 0x07821382, 0x7a204388, 0x03820f82, 0x84b21821, 0x24218533, 0x18a21802, 0x260f84a2, 0x00541901, 0x8e921801,
0x82482043, 0x84802013, 0x208785cb, 0x85438236, 0x83bb8303, 0x82262043, 0x19262187, 0x2205c75a, 0x82101901, 0x8616201f, 0x86c32043, 0x820420cb,
0x23038213, 0xc4000000, 0x01221182, 0x53826618, 0xa4200383, 0x03201182, 0x01280382, 0x02005618, 0x94189418, 0x01260f84, 0x01004018, 0x03824618,
0x0f858420, 0x82ee1721, 0x2173820b, 0x0f857418, 0x1f831920, 0x63866420, 0x85825183, 0x82141821, 0x84522023, 0x206385a7, 0x830f8202, 0x846c2003,
0x00002433, 0x82f21701, 0x185c2263, 0x220f845c, 0x82fc1801, 0x8d4c201f, 0xd0172143, 0x3a201382, 0x17214389, 0x853582be, 0x25eb8603, 0x0200ae17,
0x0582ae17, 0x01220f83, 0x1f82b818, 0x43869e20, 0xeb85c520, 0x828c1721, 0x82038213, 0x84c62015, 0x829a20eb, 0x86038553, 0x8a182543, 0x8a180200,
0x43850582, 0x1f828020, 0x43867a20, 0xa9823183, 0x82681821, 0x82038213, 0x83c72015, 0x02162343, 0x03830100, 0x82541721, 0x82032011, 0x15012103,
0x1723cb82, 0x88441744, 0x82e2200f, 0x15342197, 0x25060746, 0x01002417, 0x8782d215, 0x1f842420, 0x88170122, 0x14200b82, 0x51836386, 0x1f820020,
0x1382b020, 0xeb840220, 0x15216384, 0x8213829e, 0x96162103, 0x8e265388, 0x86160200, 0x0f848616, 0x6b820120, 0x76160122, 0x6c20438e, 0x64209782,
0x5a20438a, 0x03854382, 0x0020db83, 0x4a260d82, 0x4a150200, 0x43854a15, 0x82ac1621, 0x843a2011, 0x201f8703, 0x221f822a, 0x869c162a, 0x82e0201f,
0x821a201b, 0x8201200b, 0x41c82003, 0x1521054f, 0x82138208, 0x20118203, 0x211185c9, 0x97825416, 0x10165a22, 0x03201182, 0x4620c382, 0x44208382,
0x21833386, 0x3e170122, 0x38201182, 0x8782118a, 0x82261621, 0x84202013, 0x204587a9, 0x2011820e, 0x21118814, 0x0f821701, 0xff821420, 0x84241721,
0x00002357, 0xff821401, 0x16141722, 0x2205e34a, 0x82441601, 0x8d04206b, 0x83142055, 0x05b344ff, 0x16217984, 0x825382ca, 0x5a1421c3, 0x16264387,
0x140200d0, 0x3b45164a, 0xc6162106, 0x3a205582, 0xca204386, 0xae20cd86, 0x28201382, 0x11838784, 0xa8160122, 0xb0204382, 0xb6200382, 0xd820138a,
0x9c200f82, 0xe2200382, 0xcb201384, 0x01223982, 0x0f820217, 0xc3418820, 0x83cc2008, 0x22ab8213, 0x82741601, 0x84fe2017, 0x82cd2027, 0x00f43009,
0x000a0002, 0x04030012, 0x04750476, 0x82020077, 0x83772007, 0xa014212b, 0xa0207782, 0xa0229d82, 0x91822015, 0xef840320, 0x0122f383, 0x0f850e15,
0x82c21621, 0x827e2013, 0x147e2221, 0x2011867e, 0x201182b8, 0x205582ec, 0x825f86e4, 0xa4162135, 0xd8201382, 0x01201f82, 0xce220382, 0x2f820300,
0x8a165222, 0x40201382, 0xef820382, 0x97841586, 0x822a1421, 0x142a211d, 0x1582dd82, 0x2b84cf20, 0x5e163c22, 0x20202782, 0x9a200382, 0x15835384,
0x48160122, 0x0a200f82, 0x0a222b82, 0x15848414, 0x2b84d020, 0x32160026, 0xee130100, 0x6e201b82, 0x01221588, 0x13821c16, 0x0200d826, 0x5814d813,
0xd1201584, 0x96262b84, 0x01000616, 0x2b82d012, 0x15884220, 0xf0150122, 0xba261382, 0xba120200, 0x15842c14, 0x2b82d220, 0xda150122, 0x90204182,
0x16202982, 0xb982138a, 0x82881321, 0x05214313, 0xb2202785, 0x79822782, 0xbf828183, 0x9e201385, 0x68205182, 0xda201782, 0xd3203b84, 0x8a204f84,
0x2b830f82, 0x1385fd85, 0x13827620, 0x17856220, 0x13833b82, 0x2a130223, 0x20118315, 0x200f8218, 0x22138601, 0x824e1501, 0x85042023, 0x20138203,
0x244f82d4, 0x15181302, 0x2065823a, 0x832786fc, 0x15012213, 0x20118226, 0x820385e8, 0x83d52017, 0xe0122327, 0x11821215, 0x2786ce20, 0x01221383,
0xf184fe14, 0xba120122, 0xd6209f84, 0x7a264f84, 0x0100ea14, 0x2786b411, 0x01221383, 0x1182d614, 0x0385a020, 0xd7201782, 0x01222782, 0x3b82c214,
0x25867820, 0xb0201185, 0x72201182, 0xff83118c, 0x118c5a20, 0x45828c20, 0x11865620, 0x4783d820, 0x82421221, 0x82302035, 0x05d14203, 0x00201383,
0x1c260d82, 0x1c120200, 0x9784a212, 0x2784d920, 0x14202383, 0x8e201982, 0x27831388, 0x27820020, 0x7a120022, 0xda201384, 0x11212783, 0x206182f8,
0x202782e6, 0x82138866, 0xd2112627, 0xd2110200, 0x05014612, 0x4f84db20, 0x01009224, 0x2782cc10, 0x27843e20, 0x27821383, 0x00b81027, 0x12b81002,
0x2013842a, 0x058343dc, 0x009c1129, 0x11161203, 0x8c201490, 0x83862015, 0x7a112179, 0x0320cb82, 0x01220382, 0x6182f011, 0xfa136a22, 0xdc20238c,
0x6a204d82, 0x87061142, 0x21ef824d, 0x258cc811, 0x01003c23, 0x87fd8511, 0x82242023, 0x8ba42011, 0x82102023, 0x8211207b, 0x206982b1, 0x239586dd,
0x13010080, 0x83051543, 0x13012211, 0x200f8296, 0x201f82a0, 0x84238601, 0xb4102111, 0x9020118c, 0xb2202382, 0xa620118c, 0xc2201182, 0x0020118a,
0x8b820f82, 0x9d421320, 0x20598505, 0x201382b4, 0x25238ea4, 0x13020092, 0x9f4113b2, 0x24258305, 0x139e1302, 0x2027828e, 0x23278a7e, 0x005a1001,
0x02240383, 0x90105a10, 0x03201782, 0x48200d82, 0x27830386, 0x13210f82, 0x260f826e, 0x10020038, 0x85381038, 0x64132121, 0x5c201182, 0xdb434982,
0x20818505, 0x82358450, 0x2223829b, 0x820300de, 0x130c262f, 0x0f010036, 0x821782fa, 0x22158607, 0x82201301, 0x00e42513, 0x10e40f02, 0x15820982,
0x2b83df20, 0x13f60f23, 0x2017820a, 0x822b82da, 0x22158607, 0x82f41201, 0x82c42013, 0x0fc4212b, 0x15820982, 0x2b84e020, 0xde12ba22, 0xa8201782,
0x07820382, 0x01221586, 0x0f82c812, 0x0f22f182, 0x09820f92, 0xe1201582, 0x01222b82, 0x1582b212, 0x03827620, 0x13880782, 0x0f829e20, 0x0f20d382,
0x13880782, 0x13828a20, 0x03825420, 0x13820782, 0x6784e220, 0x83124c21, 0x07ed4539, 0x01221383, 0x23826212, 0x03852620, 0xe3202782, 0x3a222784,
0x11824e12, 0x55411e20, 0x22138306, 0x823a1201, 0x20c98211, 0x20cd850f, 0x212784e4, 0x39821202, 0x86f00e21, 0x84e42027, 0x0012249f, 0x85dc0e01,
0x20178203, 0x211383e5, 0x0f82fe11, 0x8507ef41, 0x82ec2011, 0x86bc2011, 0x20118537, 0x411182da, 0xe62007ef, 0x0e203583, 0x0e21cd82, 0x8515828c,
0x201383fd, 0x280d8200, 0x0e020078, 0x00b40e78, 0x203d8201, 0x832784e7, 0x82702023, 0x88a02019, 0x20278313, 0x2027825c, 0x823f835c, 0x84e82027,
0x82542027, 0x84422023, 0x833b8341, 0x20278313, 0x2227822e, 0x84640e2e, 0x42e9203b, 0x0e2105e5, 0x20258214, 0x20118c50, 0x2011820e, 0x21118b3e,
0x1182f60d, 0x11842c20, 0x3586ea20, 0x01001a23, 0x05d94511, 0x01221183, 0x21823c11, 0x13820820, 0x81826a20, 0x07820320, 0x01005a24, 0x0782f80d,
0x0f842c20, 0x0d217b82, 0x200d82e8, 0x2143844a, 0x218300eb, 0x21823820, 0x1d82d620, 0x11849f83, 0x2f821020, 0x825c0e21, 0x82262025, 0x20218315,
0x24538216, 0x1001004c, 0x820f84e8, 0x820e2043, 0x06112165, 0x10214389, 0x202182f4, 0x20438c2a, 0x205582b4, 0x493382aa, 0x10210689, 0x200f82d2,
0x200f829a, 0x208788a4, 0x200d828a, 0x20438ac2, 0x202182b0, 0x20438c78, 0x20118270, 0x20258272, 0x2233849e, 0x828e1001, 0x8262200f, 0x8660200f,
0x8250200f, 0x8a52200f, 0x21998231, 0x1f82400d, 0x85053341, 0x827620cb, 0x859c2023, 0x85298203, 0x21438213, 0x3786880d, 0x4741ec20, 0x830d2005,
0x82038227, 0x82ed2015, 0x10012511, 0x0c010046, 0x0d21a182, 0x85a1846a, 0x823a2013, 0x00562647, 0x0d760c02, 0x20158a56, 0x82158224, 0x88798375,
0x8210203d, 0x822c2013, 0x8201200d, 0x86ee2003, 0x821a2061, 0x0d3a2239, 0x2039841a, 0x201386ef, 0x41278206, 0xef260547, 0xe20f0100, 0xc2823700,
0x0f210282, 0x2a0984d8, 0x0f020001, 0x060200d4, 0x82dd06dc, 0x82022014, 0x82ce200d, 0x067f220d, 0x213d857f, 0x3382f20c, 0x4f84cc20, 0x1185f020,
0x82c00f21, 0x82038211, 0x82f02075, 0x82032031, 0x00b22a31, 0x06a00404, 0x06df06de, 0x201182e0, 0x22d58204, 0x854e00ca, 0x020c212d, 0xa6202d82,
0xf1203f84, 0x01221182, 0x0f82ea0b, 0x3b829420, 0x03820120, 0x0000f124, 0x27850501, 0x86140d21, 0x82f22013, 0x0f01220f, 0x20258274, 0x22118874,
0x84060100, 0x00da233b, 0x03830b01, 0x26081d4e, 0x0200ca0b, 0x410b9e0b, 0x0b2106bb, 0x201f82e0, 0x2035868e, 0x215785f3, 0x1382a80b, 0x83007c21,
0x84f3206d, 0x82462043, 0x6a03830f, 0x0b21084b, 0x22438236, 0x825a0b5a, 0x82032037, 0x823e201b, 0x824a2003, 0x2031830b, 0x204386f4, 0x20138214,
0x24438438, 0x090200f4, 0x1e9b6cae, 0x07010030, 0xb60e0200, 0x87040400, 0xe2068804, 0x0d82e306, 0x00b44008, 0x001e01b1, 0x01850084, 0x0086001f,
0x00620087, 0x01880068, 0x010f011e, 0x01170116, 0x011f0110, 0x011b0111, 0x00ed0012, 0x011301f3, 0x0261021c, 0x02420262, 0x02480246, 0x0250024a,
0x82590255, 0xa642200d, 0x82462003, 0x20038b37, 0xa1458248, 0x824a2003, 0x20039369, 0x8b7f8250, 0x82522003, 0x8c55208d, 0x82592003, 0x2403a09d,
0xad03a303, 0x12676d03, 0x03f80325, 0x6c0604f9, 0x04270dbf, 0x050d0592, 0x82800604, 0x067f2c01, 0x06dc06de, 0x06e006df, 0x6c8106dd, 0xd36c08d5,
0x700e2318, 0x60182b00, 0x5808086d, 0x0088007c, 0x00a00094, 0x00b800ac, 0x00d000c4, 0x00e800dc, 0x010401f4, 0x0114010a, 0x012c011e, 0x01540138,
0x016c015c, 0x01800178, 0x018e0186, 0x01ae0196, 0x01c201ba, 0x02e001d6, 0x024c020a, 0x02800270, 0x028a0286, 0x029a0290, 0x000200c6, 0x001501bb,
0x011d0102, 0x2a05821a, 0x001c0114, 0x03ae0306, 0x82c203cc, 0x03a22ed5, 0x030500a1, 0x03cd03af, 0x03b903c3, 0x280b82a4, 0x03ce03b0, 0x03ba03c4,
0x280b82a5, 0x03cf03b1, 0x03bb03c5, 0x280b82a6, 0x03d003b2, 0x03bc03c6, 0x280b82a7, 0x03d103b3, 0x03bd03c7, 0x280b82a8, 0x03d203b4, 0x03be03c8,
0x280b82a9, 0x03d303b5, 0x03bf03c9, 0x280b82aa, 0x03d403b6, 0x03c003ca, 0x080b82ab, 0xd503b74c, 0xc103cb03, 0x0500ac03, 0xfc035904, 0x4d044e04,
0x07005c04, 0xfd035404, 0x66045304, 0x7804fa03, 0x02000704, 0xfe035704, 0xff030400, 0x67045804, 0x04007904, 0x51046804, 0x5d040004, 0x60040600,
0x5f040104, 0x6c049706, 0x4382fb03, 0x04022c08, 0x047b044b, 0x007c047a, 0x04d6030d, 0x046f0403, 0x04a80662, 0x0471046e, 0x047e0481, 0x047d0480,
0x007f0482, 0x04700403, 0x82050404, 0x04082c67, 0x04730414, 0x04160444, 0x8263046b, 0x0409283f, 0x04740415, 0x82170445, 0x04182423, 0x8264041f,
0x0619227b, 0x240d8286, 0x0421041a, 0x3c078265, 0x0487061b, 0x040b0022, 0x0496062d, 0x06470432, 0x044604aa, 0x0475044c, 0x04760477, 0x28418231,
0x046a0433, 0x04830484, 0x382b8285, 0x049d069f, 0x040900a0, 0x06eb04ea, 0x058206b1, 0x068f0608, 0x058e069f, 0x08c18207, 0xbb04bab0, 0x8306b206,
0xad041400, 0x8406b306, 0x92065504, 0x5b040905, 0xaf064f04, 0x91065604, 0x93065a04, 0x6904a106, 0x5e045204, 0xc206c106, 0x2000c306, 0x8a069c06,
0x8c068b06, 0x0a059506, 0xae069406, 0x9806a606, 0xa0069e06, 0xac06a906, 0x8d066104, 0x9006a206, 0x05056d04, 0xc506c406, 0xc906c606, 0xc806c706,
0xcb06ca06, 0xcf06cc06, 0xce06cd06, 0x0b051100, 0xa306a406, 0x06055004, 0xd106d006, 0xd406d206, 0xd506d306, 0xd706d606, 0xda06d806, 0xdb06d906,
0x0c050700, 0xad06a706, 0xa5064804, 0x8604e106, 0xb0060200, 0x01000e05, 0x0982d204, 0x06ab4e08, 0x06040081, 0x067d0685, 0x0080067f, 0x067e0615,
0x069a069b, 0x06890699, 0x04490488, 0x06b4064a, 0x06b606b5, 0x06b706bc, 0x06b806bd, 0x06ba06b9, 0x06bb06be, 0x00c006bf, 0x07120702, 0x0501001b,
0x00f6ff8e, 0x00f80b02, 0x011e0104, 0x2203831f, 0x820b0100, 0x08356f11, 0x0200412a, 0x0100f003, 0xcb000400, 0x02260984, 0x0300ea06, 0xb7829c06,
0x37827e20, 0x8382d420, 0x7e068a28, 0x22060100, 0x0b825f00, 0x1b82ce20, 0x1b848b20, 0x10060124, 0x11825e00, 0x1182bc20, 0x11848c20, 0xae0b0224,
0x09820200, 0x75829920, 0x4d00f422, 0x96203d82, 0x95201f82, 0x02223d82, 0x19825606, 0xa4060a22, 0x8a201382, 0x88202384, 0x78200982, 0x94201d82,
0x38201d84, 0xa3201d84, 0x74201382, 0x96221382, 0x09820b05, 0x0600722e, 0x6004ff03, 0xae063204, 0x0c050b05, 0x70261182, 0x54040200, 0x09820104,
0xa9826e20, 0x5504fd22, 0x0c229582, 0x0582c801, 0x3f000622, 0x00220582, 0x1b8291ff, 0x04005a24, 0x39825904, 0x09054722, 0x58200d82, 0x32223382,
0x0982a706, 0xa7825620, 0x4986a620, 0x03005426, 0x98060104, 0x52206784, 0x9f220b82, 0x0b849e06, 0x03005026, 0xa0060805, 0x4e300b84, 0xfc030800,
0x03040204, 0x33046b04, 0xa9064f04, 0x4c201584, 0xfc227982, 0xe1825004, 0x6700be22, 0x44205582, 0x06210f83, 0x2009828f, 0x22698242, 0x8208056f,
0x00402609, 0x041d0102, 0x20098203, 0x2209823e, 0x8285061a, 0x003c2a09, 0x06af0604, 0x060d05ad, 0x2c0d827d, 0x0405003a, 0x06aa065f, 0x060c05ac,
0x2e0f82ab, 0x04060038, 0x06620401, 0x04870686, 0x827e0661, 0x82362011, 0x041f224d, 0x20098249, 0x282b8234, 0x044b0453, 0x04220421, 0x300f824a,
0x03040032, 0x049f04fd, 0x008d0656, 0x010c0501, 0x830582c7, 0x0b0222ff, 0x288b8224, 0x005a04ff, 0x00a60401, 0x2c29826c, 0x0305001c, 0x063204ff,
0x040a0593, 0x22158248, 0x82230096, 0x00142e15, 0x0666040d, 0x06020497, 0x046404a8, 0x2a1f8265, 0x069f069d, 0x05a206a1, 0x82a5060b, 0x0012261f,
0x04670407, 0x26f98268, 0x046a0463, 0x82b00669, 0x82102013, 0x04fc2673, 0x0552044c, 0x2247820e, 0x826600c4, 0x84082013, 0x05512413, 0x82900608,
0x01d22213, 0x2a1382c8, 0x04040000, 0x0500045c, 0x825e0408, 0x00322613, 0x0a02006f, 0x22c982f8, 0x82000457, 0x82f62009, 0x04fe2c31, 0x0403046c,
0x0201006d, 0x827900e0, 0x00ee2413, 0x82fa0305, 0x05702411, 0x82060505, 0x00ec280f, 0x04140103, 0x82040471, 0x005822d5, 0x22058217, 0x820f0052,
0x00de2a17, 0x061c0102, 0x060200c1, 0x22038224, 0x82d006c2, 0x82022055, 0x05c42c09, 0x0902000b, 0x0502002e, 0x82b4060a, 0x82be2027, 0x06812217,
0x2005827e, 0x268b820c, 0x06c50603, 0x82b506d1, 0x82ae2017, 0x0478290d, 0x067e0479, 0x030200d2, 0x0621ab82, 0x213983c6, 0x3984f408, 0x2182b620,
0x33828420, 0x39838020, 0x84d20321, 0x06c92439, 0x82bc06d4, 0x82802017, 0x067d2217, 0x203582d3, 0x206f8292, 0x203584c7, 0x203584be, 0x201d82b7,
0x201d824e, 0x2d358382, 0x0500600a, 0xc3060304, 0xd506c806, 0x1982bd06, 0x6f005e28, 0x16011501, 0x85471701, 0x7f0429d1, 0xc3067504, 0xc6070200,
0x772cfd82, 0x0200d606, 0x02007602, 0x0b05ca06, 0xa2261382, 0x0a050200, 0x1382b806, 0x0300a228, 0xd706cb06, 0x15827e06, 0x1f829420, 0xb906d822,
0x4c201582, 0xcc200982, 0x78202984, 0xba202984, 0x78201382, 0xcf222982, 0x2984da06, 0x1f826a20, 0xbe06d922, 0x22201582, 0xcd200982, 0x4e202984,
0xbb202984, 0x4e201382, 0xce222982, 0x2983db06, 0x823c0921, 0x0676387d, 0x090200bf, 0x0405003a, 0x04fb0307, 0x0531047b, 0x02010007, 0x82860050,
0x00322815, 0x047c0403, 0x82c00684, 0x00442211, 0x22058258, 0x825a003e, 0x82242017, 0x06802143, 0x0b820182, 0x04236382, 0x828106d2, 0x82202009,
0x0405224d, 0x20098206, 0x226d821e, 0x82e10609, 0x001c2509, 0x04ff0302, 0x00374b82, 0x03970303, 0x040000a0, 0x000b040a, 0x04c6040a, 0x000c00c7,
0x91040002, 0xca042b15, 0x0e00ca04, 0x01000100, 0x2182f503, 0x21850120, 0xd6200f84, 0xc2240f84, 0x0000cb03, 0xb8220984, 0x0982c103, 0x0b820120,
0x8b000423, 0x22078300, 0x82d5004a, 0x00012207, 0x21058344, 0x19828d04, 0x1401022a, 0x00001401, 0xa1039703, 0x22241984, 0xef03ed03, 0x3b088583,
0x0d040c04, 0x0f040e04, 0x24042304, 0x26042504, 0x3b043a04, 0x3d043c04, 0xfc06d504, 0x01070007, 0x03070207, 0x05070407, 0x07070607, 0x09070807,
0x0b070a07, 0x2e071f07, 0x3e073007, 0xb5204984, 0x04280582, 0x67006000, 0xf200eb00, 0x0b360b82, 0x45001200, 0x5e004b00, 0x99008100, 0xd600cf00,
0x0c01e900, 0x2b840307, 0xbf84c720, 0x0b84f020, 0x05823d20, 0x39040224, 0x07833f04, 0xa2209782, 0xcd20ab84, 0x06210583, 0x200b843c, 0x210583cc,
0x11840b05, 0x05827e20, 0xf2030326, 0xc6049604, 0x0a201584, 0x23223d84, 0x5184ca04, 0x2f84ec20, 0x05842320, 0x01221983, 0x1784ee03, 0x1184ff20,
0x05843220, 0x3784d220, 0x17840c20, 0x1184f220, 0x0b840120, 0x4984e920, 0x8404cc21, 0xfd032179, 0x55841984, 0x840e0421, 0x840f200b, 0x03e9229f,
0x230782ec, 0x04f50304, 0x9f852982, 0x84090521, 0x82e7203f, 0x89032005, 0x9f042115, 0x96203584, 0x08206d84, 0xb1840b84, 0x84030421, 0x84f4202d,
0x842b2011, 0x84022005, 0x84332005, 0x83fc2017, 0x00012105, 0x1a200584, 0x3420f184, 0x7d200584, 0xd4202384, 0x0d204d84, 0x2f841184, 0x0b840420,
0x840c0421, 0x841f201d, 0x84212005, 0x82222005, 0x03062105, 0xa98bad82, 0x84e80421, 0x84cf853f, 0xea032163, 0xfe207584, 0x03260582, 0x0505fa03,
0x0f840605, 0x0200fa24, 0x09820300, 0x0000022e, 0x8c040400, 0x93040200, 0x8b044007, 0xf6201b84, 0x04205f84, 0x02200582, 0x21074542, 0x0d820501,
0x04001938, 0x11001000, 0x1b001700, 0x8b002500, 0x98009700, 0xa2009e00, 0x2582ac00, 0x99039836, 0x9b039a03, 0x9d039c03, 0x9f039e03, 0xa103a003,
0x79067806, 0xa2247584, 0xad03a303, 0x18200982, 0x21833f98, 0x20117578, 0x85a382ad, 0x84002081, 0x820b204b, 0x0301220f, 0x834b82a2, 0x040224d9,
0x822a0429, 0x06022455, 0x82c306c1, 0x04143407, 0x04790478, 0x047f047e, 0x06820481, 0x06b506b4, 0x83bd06b7, 0xc4062f1b, 0xc706c506, 0xd006c806,
0xd306d106, 0x2b82d506, 0x37410720, 0x41ca2006, 0x022408cd, 0xcd04ca04, 0xf522f184, 0x0782ca04, 0x21830520, 0xcc221382, 0x0d823c06, 0xac000326,
0x16011501, 0x02240982, 0xc100b500, 0x04280782, 0x2e002500, 0x17016400, 0x053e9382, 0x5b025a02, 0x5e020000, 0x02005f02, 0x92027602, 0xb2020400,
0x2100b902, 0xc202bb02, 0x2d822900, 0x4a020122, 0x04202782, 0x5e202788, 0x03202786, 0x20202784, 0x55202184, 0x02202182, 0x60202182, 0x76244982,
0x0700d502, 0x42220f84, 0x0f866202, 0x25832120, 0x2305b341, 0x76047504, 0x0e200d82, 0x06370783, 0x06b906b8, 0x06bf06bb, 0x06cb06ca, 0x06ce06cd,
0x06d706d6, 0x82db06d9, 0x0404221f, 0x20df8623, 0x084d8202, 0x8a000428, 0x21010000, 0x8700b001, 0xd5024102, 0x97031701, 0xac01a003, 0x0f040a04,
0x3c06b601, 0xbc013c06, 0x79067806, 0x5d44bd01, 0x14012105, 0x1d302d82, 0x8a002001, 0x4002b101, 0xd6028e00, 0x1e018c03, 0x02245582, 0x7c047b04,
0x84220784, 0x07828504, 0x82040321, 0xc0062107, 0xe4209d84, 0x02240582, 0xa1069306, 0x34210784, 0x221f8306, 0x867f0601, 0x2807830d, 0x06960404,
0x069d068d, 0x2213829e, 0x83ab0601, 0x05042105, 0x04280582, 0x5b045a04, 0x92069106, 0x30227d82, 0x01820400, 0x12000022, 0x01220182, 0x01824500,
0x4a000224, 0xfb824b00, 0x5e005e26, 0x60000500, 0x06220182, 0x01826700, 0x81000722, 0x08220182, 0x01828b00, 0x99000922, 0x0a220182, 0x0182c100,
0xc7000b22, 0x0c220182, 0x0182cf00, 0xd5000d28, 0x0e00d600, 0x0182e400, 0xe9001022, 0x11220182, 0x0182eb00, 0xf2001222, 0x13270182, 0x0c010c01,
0x82011400, 0x00330801, 0x024a0215, 0x0216004a, 0x00550255, 0x025a0217, 0x02180060, 0x00d50276, 0x03a1031f, 0x037f00a2, 0x00cb03c2, 0x03ed0381,
0x038b00ed, 0x00ef03ef, 0x8205048c, 0x8d2008bb, 0x26042404, 0x3a048e00, 0x91003d04, 0x8d048d04, 0xd4049500, 0x9600d504, 0x7d067d06, 0x7f069800,
0x9926ff82, 0x85068506, 0xf9829a00, 0x008d4e08, 0x0693069b, 0x069c0093, 0x009e069d, 0x06a1069d, 0x069f00a1, 0x00ab06ab, 0x06fc06a0, 0x07a100fc,
0x00020700, 0x070407a2, 0x07a5000b, 0x001f071f, 0x072e07ad, 0x07ae002e, 0x00300730, 0x073e07af, 0x00b0003e, 0x002b0001, 0x010001b5, 0x14794305,
0xe903e730, 0xec03ea03, 0xf203ee03, 0xf503f403, 0xfd45f603, 0x042b3a0e, 0x04c60496, 0x04ca04c7, 0x04cd04cc, 0x05e804d2, 0x0633060c, 0x073c0634,
0x28598203, 0x00040004, 0x008b004a, 0x240b82d5, 0x003d0002, 0x200783c7, 0x05074304, 0xcd040224, 0x0f843c06, 0xcd042322, 0x06200782, 0xf2206582,
0x21056542, 0x0f82d204, 0x79820220, 0x0785f220, 0x82ca0421, 0x03042407, 0x82ec03e7, 0x200b831f, 0x83078202, 0x85032023, 0x221d8275, 0x83f20303,
0x8209830b, 0x848b8291, 0x86c62009, 0x82082013, 0x82bd823b, 0x852b20bb, 0x205784a9, 0x247784e7, 0x04e70302, 0x200f84c6, 0x230785f5, 0xf5030001,
0x01230f83, 0x82340600, 0x82042007, 0x04d22231, 0x200b84d4, 0x20658205, 0x22538223, 0x843306d2, 0x03f226b1, 0x040d04f5, 0x20d1880f, 0x20d1840c,
0x24b98205, 0x040e04f4, 0x220d840f, 0x82e90304, 0x04ca2291, 0x206384cc, 0x20cb84ec, 0x83c98505, 0x20158249, 0x212f820d, 0x9f8303f2, 0x35820c20,
0x2d822320, 0xa585c620, 0xe3830420, 0xec030726, 0xf403ee03, 0xe820bb86, 0x04202f82, 0x2320b182, 0x0b862182, 0x04ee0322, 0x1785e782, 0xca200b84,
0xea226984, 0x1384ee03, 0x8303ea21, 0x837d83a5, 0x03f52297, 0x061341f6, 0x05010323, 0x840d8203, 0x840520e9, 0x03022295, 0x82b187f5, 0x44f52073,
0xcd2008c3, 0x2b822382, 0x21829385, 0x0a000224, 0x0182b500, 0xc1000022, 0x01220182, 0x0182c700, 0x4a020238, 0x03004a02, 0x55025502, 0x5a020400,
0x05006002, 0xd5027602, 0x63820c00, 0x6c00f528, 0x23042304, 0x41826d00, 0x6e00ca22, 0x4105f341, 0xf9820829, 0xc6201d82, 0x03201582, 0x2b20e582,
0x03241784, 0x7d063406, 0x2305eb43, 0xab060c05, 0xf622cf84, 0x39840504, 0x4204ca21, 0xec20051d, 0x00280782, 0xb9040400, 0x0500c201, 0xf3270882,
0x00009204, 0x84049200, 0xaa022b07, 0x78023200, 0x0b020000, 0x1c820908, 0x0400022c, 0x87020040, 0x01390002, 0x00850002, 0x44544337, 0x00c00042,
0x07ffff0d, 0x00a8fd08, 0x02080700, 0x00006058, 0x231d839f, 0x62051e04, 0x20200782, 0x00215783, 0x20098204, 0x20038203, 0x82038224, 0xcc0e250b,
0x01000300, 0x03290f84, 0x00000a00, 0x0400cc0e, 0x213f820e, 0x14827c01, 0x0007f409, 0x000d007c, 0x0039002f, 0x017e017e, 0x02ff0192, 0x0237021b,
0x02bc02ba, 0x02c902c7, 0x030803dd, 0x030f030c, 0x03270314, 0x03420336, 0x03770345, 0x038a037f, 0x0390038c, 0x03a903a1, 0x03c903b0, 0x041a04e1,
0x042f0423, 0x04350433, 0x043a0439, 0x05790443, 0x1405142f, 0x1e851e0a, 0x1ff31e9e, 0x1f0f1f07, 0x1f1d1f15, 0x1f2f1f27, 0x1f3f1f37, 0x1f4d1f45,
0x1f591f57, 0x1f5d1f5b, 0x1f671f5f, 0x1f7d1f6f, 0x1f8f1f87, 0x1f9f1f97, 0x1faf1fa7, 0x1fc41fb4, 0x1fd31fcf, 0x1fef1fdb, 0x20fe1ff4, 0x200b2008,
0x201e201a, 0x20262022, 0x203a2030, 0x204a2044, 0x20792070, 0x2089207f, 0x20ac208e, 0x20ba20af, 0x210221bd, 0x2113210d, 0x211a2116, 0x2122211d,
0x212e2124, 0x215e2154, 0x218b215f, 0x21a92199, 0x21df21b3, 0x220022ea, 0x220f220d, 0x22152212, 0x221e221a, 0x2236222b, 0x22622248, 0x228b2265,
0x230023af, 0x23102306, 0x23212318, 0x232b2328, 0x238b2388, 0x24cf23ad, 0x25802526, 0x25942588, 0x25ab259f, 0x25b225af, 0x25ba25b6, 0x25c025bc,
0x25c725c4, 0x25cf25cb, 0x25d525d3, 0x25e525d7, 0x25f325eb, 0x261226f7, 0x26372620, 0x2640263c, 0x26602642, 0x26662663, 0x2713276b, 0x27a12771,
0x27f327e9, 0x2b052bff, 0x303b2e07, 0xe003e00d, 0xfeb3e0a2, 0xff63ffff, 0x000000ff, 0x0020000d, 0x003a0030, 0x019201a0, 0x021802fc, 0x02b90237,
0x02c602bc, 0x03d802c9, 0x030a0300, 0x0313030f, 0x03350326, 0x03450342, 0x037a0370, 0x038c0384, 0x0391038e, 0x03aa03a3, 0x03ca03b1, 0x041b04f0,
0x04300424, 0x04360434, 0x043b043a, 0x148a0444, 0x1e0a1405, 0x1e9e1e80, 0x1f001ff2, 0x1f101f08, 0x1f201f18, 0x1f301f28, 0x1f401f38, 0x41501f48,
0x3008087d, 0x1f681f60, 0x1f801f70, 0x1f901f88, 0x1fa01f98, 0x1fb01fa8, 0x1fc61fb6, 0x1fd61fd0, 0x1ff21fdd, 0x200720f6, 0x2012200b, 0x2020201c,
0x20302026, 0x067d4139, 0x7a20742c, 0x8a208020, 0xaf20ac20, 0x7d41b920, 0x21152208, 0x087d4119, 0x21535008, 0x215f2155, 0x2190218a, 0x21b021a9,
0x22e421de, 0x22022200, 0x2211220f, 0x22192215, 0x2227221e, 0x22482234, 0x22642260, 0x23a22282, 0x23022300, 0x23182310, 0x23242320, 0x2387232b,
0x239b238b, 0x250024ce, 0x25812500, 0x25952589, 0x41ac25a0, 0xc63a0c7d, 0xce25c925, 0xd525d025, 0xd925d625, 0xef25e725, 0x1026f425, 0x30262026,
0x7d413926, 0x65290808, 0x13276a26, 0xa1277027, 0xf027e827, 0x052bf427, 0x3a2e062b, 0x00e00c30, 0xb0e0a0e0, 0x62fffffe, 0xf5ffffff, 0x67030000,
0x21008200, 0x04820703, 0x8bfe002a, 0x2d040000, 0x22043f04, 0x002d0d83, 0x03ea0300, 0x03d603e7, 0x03db03c9, 0x2b1185d9, 0x0000d2fe, 0xb0feb1fe,
0x25ff0000, 0xfd251183, 0xfd000018, 0x20038281, 0x20038285, 0x37118388, 0x84ef88ef, 0xc5e10000, 0x12e40000, 0x1be46ee3, 0x13e473e3, 0x1ae46be3,
0x1a2a0b82, 0x14e46ae3, 0x61e362e3, 0x1d8260e3, 0x5be31430, 0xa2e30000, 0xb1e3fbe2, 0xe2e306e3, 0x3d8326e3, 0x49821182, 0xe4220985, 0x0b86e486,
0xe4c5e32d, 0xe303e4b9, 0xe3ade392, 0x825ce35c, 0x822e2023, 0xe3ec2203, 0x320582e8, 0xe28ee2de, 0x002be584, 0xe27ae200, 0xe217e578, 0x8213e572,
0xe288220b, 0x23438378, 0x6ce372e3, 0x02200784, 0xce201382, 0x91200382, 0xb7210382, 0x21bd82e2, 0x178389e2, 0xe3210383, 0x22ad823b, 0x844fe3df,
0x8235200b, 0x83bb201f, 0x38038309, 0x0000b9df, 0x02e0b7df, 0x05e00000, 0x01e002e0, 0xfadffddf, 0xaddff8df, 0x29008200, 0x8edf8ddf, 0x00008bdf,
0x0382c7df, 0xe0703808, 0xdffcdf09, 0xdfecdfed, 0xdfe8dfe9, 0xdfc9dfcb, 0xdf7ae0c8, 0xdda2dc1c, 0x00a1dc98, 0xda39dd00, 0x0022da25, 0x2704d400,
0x26972633, 0x0494058a, 0x000100ba, 0x827a0100, 0x02962803, 0x0300001e, 0x82de03d8, 0x82e22005, 0x25028258, 0xe803de03, 0x0882f803, 0x03290288,
0x04fe03f0, 0x04000008, 0x83128312, 0x1c042705, 0x00004a04, 0x03829c04, 0x0420cd82, 0xae220383, 0x1d831805, 0x005e0625, 0x83660600, 0x21039709,
0x19834c06, 0x83480621, 0x24038705, 0x5e065606, 0x278f8206, 0x94068a06, 0xbc06b806, 0x06251783, 0x06d806c8, 0x890983dc, 0xd2062503, 0xda060000,
0x06210f83, 0x830583de, 0xd8062103, 0x03850583, 0x84d00621, 0x86ce2011, 0x06de2607, 0x060000e0, 0x200382ea, 0x820385fe, 0x82fc2005, 0x07fe2a03,
0x07040702, 0x07000016, 0x272f832e, 0x34073207, 0x3a070000, 0x07290383, 0x0760075e, 0x080000ac, 0x201983aa, 0x83898408, 0x23038509, 0xb808b408,
0x00230987, 0x85ca0800, 0x2105970b, 0x1985b408, 0x0d850787, 0x2c080582, 0x04ec0303, 0x04f4033e, 0x06e80496, 0x043f0434, 0x030b040a, 0x03c604f2,
0x032304e8, 0x03f503e7, 0x04ea03e9, 0x04ca04cd, 0x06ee03cc, 0x0cb74c33, 0x00263208, 0x002e002b, 0x003b0039, 0x0043003d, 0x004a0044, 0x00580056,
0x005d0059, 0x00690064, 0x00750074, 0x007b007a, 0x030e0480, 0x040f04f6, 0x072b04d4, 0x0b2b4d02, 0x00300807, 0x00b200ad, 0x00c100b5, 0x00c700c4,
0x00ce00cd, 0x00e100d5, 0x00e400e3, 0x00ef00e8, 0x01ff00f4, 0x01050100, 0x040b0106, 0x043c060c, 0x04d2040d, 0x04ed038f, 0x049d0494, 0x069e0495,
0x0736063d, 0x01370600, 0x043a041e, 0x062404d3, 0x060a0738, 0x03d0043a, 0x07cf03ce, 0x06e00403, 0x07f00335, 0x01cd030b, 0x033b041f, 0x03d803db,
0x00ef03dc, 0x00050009, 0x000d0007, 0x000c0008, 0x0014000e, 0x001c0022, 0x0020001f, 0x00300035, 0x00330032, 0x00490018, 0x004b004f, 0x0054004d,
0x00c8044e, 0x006e0052, 0x006c006a, 0x007c006d, 0x00ee0057, 0x008c0090, 0x0094008e, 0x0093008f, 0x009b0095, 0x00a300a9, 0x00a700a6, 0x00b700bc,
0x00ba00b9, 0x00d4009f, 0x00d600da, 0x00df00d8, 0x00c904d9, 0x00f900dd, 0x00f700f5, 0x000701f8, 0x000901e2, 0x0091000a, 0x008d0006, 0x0092000b,
0x00990012, 0x009c0015, 0x009d0016, 0x009a0013, 0x00a00019, 0x00a1001a, 0x00aa0023, 0x00a4001d, 0x00a80021, 0x00ab0024, 0x00a5001e, 0x00af0028,
0x00ae0027, 0x00b1002a, 0x00b00029, 0x00b4002d, 0x00b3002c, 0x00c00038, 0x00be0036, 0x00b80031, 0x00bf0037, 0x00b60034, 0x00bd002f, 0x00c3003a,
0x00c5003c, 0x003e00c6, 0x004000c8, 0x003f00ca, 0x004100c9, 0x004200cb, 0x004500cc, 0x004700cf, 0x004600d2, 0x00d000d1, 0x00d30048, 0x00dc0051,
0x00d7004c, 0x00db0050, 0x00e00055, 0x00e5005a, 0x00e7005c, 0x00e6005b, 0x00e9005e, 0x00ec0061, 0x00eb0060, 0x00ea005f, 0x00f20067, 0x00f10066,
0x00f00065, 0x00fe0073, 0x00fb0070, 0x00f6006b, 0x00fd0072, 0x00fa006f, 0x00fc0071, 0x00020177, 0x0008017d, 0x0181007e, 0x0183000c, 0x0182000e,
0x000f000d, 0x00530096, 0x006200de, 0x006800ed, 0x06ec06f3, 0x070707ea, 0x07080701, 0x0709070c, 0x06ef0604, 0x06f206f0, 0x06f706f6, 0x06f406f8,
0x06ed06ee, 0x06f106f5, 0x026302f3, 0x026402fa, 0x06e706fb, 0x026502e8, 0x028c03fc, 0x02fe02fd, 0x028c04ff, 0x071f0741, 0x045a0221, 0x025b028b,
0x025d025c, 0x0260025f, 0x026102f1, 0x02f70262, 0x02f902f8, 0x02f402ef, 0x02f302f0, 0x02f202f5, 0x036b02f6, 0x02070306, 0x026d026c, 0x0308036e,
0x02050309, 0x02000366, 0x02010367, 0x02020368, 0x02030369, 0x0304036a, 0x030b030a, 0x020d030c, 0x060e036f, 0x037002e6, 0x0271020f, 0x03100372,
0x02730211, 0x01750274, 0x012a0129, 0x01250152, 0x0149014a, 0x014d014c, 0x0147014e, 0x014f0148, 0x012f0132, 0x0143013c, 0x01220121, 0x01240123,
0x01280127, 0x012c012b, 0x012e012d, 0x013d0131, 0x0140013e, 0x0141013f, 0x01450142, 0x01440146, 0x0150014b, 0x01b70151, 0x01c101b8, 0x01ce01cd,
0x01cf01d0, 0x01d201d1, 0x01d601d5, 0x01db01d4, 0x01e101e0, 0x01ba01b9, 0x01b501e2, 0x01d901da, 0x01dd01dc, 0x01d701de, 0x01df01d8, 0x01bf01c2,
0x01d301cc, 0x01e30153, 0x01e40154, 0x01e50155, 0x01e60156, 0x01e70157, 0x01e80158, 0x01e90159, 0x01ea015a, 0x01eb015b, 0x01ec015c, 0x01ed015d,
0x01ee015e, 0x01ef015f, 0x01c00130, 0x013b02ab, 0x013c02ac, 0x01b60126, 0x01f00160, 0x01f10161, 0x01f20162, 0x01f30163, 0x01f40164, 0x01f50165,
0x01f60166, 0x01f70167, 0x01f80168, 0x01f90169, 0x01fb016a, 0x01fc016c, 0x01fd016d, 0x01fe016e, 0x01ff016f, 0x01000270, 0x01010271, 0x01020272,
0x01030273, 0x01040274, 0x01050275, 0x01070277, 0x01080278, 0x027a0179, 0x027b010a, 0x027c010b, 0x027d010c, 0x027e010d, 0x027f010e, 0x0280010f,
0x01090210, 0x01110281, 0x01120282, 0x01130283, 0x01140284, 0x01150285, 0x01160286, 0x01170287, 0x01180288, 0x01190289, 0x011a028a, 0x011b028b,
0x011c028c, 0x011d028d, 0x011e028e, 0x011f028f, 0x01200290, 0x01210291, 0x01220292, 0x01230293, 0x01240294, 0x01250295, 0x01260296, 0x01270297,
0x01280298, 0x01290299, 0x012a029a, 0x012b029b, 0x012c029c, 0x012d029d, 0x012e029e, 0x012f029f, 0x013002a0, 0x013102a1, 0x013202a2, 0x013302a3,
0x013402a4, 0x013502a5, 0x013602a6, 0x013702a7, 0x013802a8, 0x013902a9, 0x013a02aa, 0x01fa016b, 0x01060276, 0x013d02ad, 0x013e02ae, 0x013f02af,
0x004002b0, 0x00040179, 0x00010176, 0x00030178, 0x020a017f, 0x031a03be, 0x0331031b, 0x033b0332, 0x0352033c, 0x03600353, 0x036c0361, 0x037c036d,
0x031d037d, 0x0320031e, 0x0321031f, 0x022a031c, 0x02810280, 0x027f027e, 0x03230782, 0x0722078b, 0x032d0732, 0x033e033f, 0x033d0340, 0x02910249,
0x029b0292, 0x079d029c, 0x07270725, 0x03540329, 0x02b00259, 0x02ae02b1, 0x072607af, 0x032a0728, 0x0370036f, 0x03720371, 0x03630362, 0x0273036e,
0x02c202c1, 0x02c002bf, 0x072b07ba, 0x032e072c, 0x037f0380, 0x037e0381, 0x02b8028a, 0x02cb02b9, 0x07cd02cc, 0x04240730, 0x04250428, 0x03270426,
0x042c04f3, 0x04390438, 0x04360434, 0x06350437, 0x0340063f, 0x04eb04f1, 0x04ad04bb, 0x01150414, 0x04ea0420, 0x04ac04ba, 0x04090408, 0x039a049c,
0x03420692, 0x06da03d9, 0x05780679, 0x050f0515, 0x05130511, 0x05180517, 0x05100516, 0x06140512, 0x05650666, 0x051a0519, 0x05220525, 0x06240523,
0x04e1045e, 0x04fe04af, 0x04dc04d6, 0x04aa04b1, 0x04ab04c1, 0x04c004f9, 0x04de04a4, 0x04a304c7, 0x04ff04df, 0x04ec04a2, 0x04ae04cb, 0x04cf04c2,
0x04f704ce, 0x04c304fa, 0x04ed04c4, 0x04be04ee, 0x04f804bf, 0x04f604fb, 0x05fc04fd, 0x04a10403, 0x040105bc, 0x040005b0, 0x04a804a9, 0x04a704c5,
0x065d06bd, 0x06260549, 0x046d066e, 0x05b204b3, 0x06640627, 0x065f0661, 0x06310663, 0x04e4045b, 0x04e304e2, 0x04e504e7, 0x04b904e6, 0x04b804b7,
0x04f304f5, 0x04b604f4, 0x04b404b5, 0x04f204a5, 0x06f004f1, 0x06620668, 0x0673066c, 0x06530674, 0x06560654, 0x06430630, 0x065c0632, 0x067b0669,
0x06480659, 0x06700671, 0x064e064a, 0x064f0650, 0x066a064d, 0x06550677, 0x06520647, 0x06570675, 0x065a0658, 0x067a066f, 0x064b0672, 0x06440645,
0x064c066b, 0x05830576, 0x058405d3, 0x05f705e0, 0x05f805d9, 0x05f405da, 0x05f505d6, 0x057a05d7, 0x05c405ca, 0x057c05d2, 0x05c205c8, 0x067b05d1,
0x0508060e, 0x067d05df, 0x0506060c, 0x068105dd, 0x05070614, 0x051106c5, 0x050d06cb, 0x068205e3, 0x05050613, 0x051006c3, 0x050b06c9, 0x057f05e2,
0x05fc05e5, 0x05c105c7, 0x05e805ff, 0x058005d0, 0x06fd05e6, 0x0604060a, 0x05e90500, 0x057e05dc, 0x06fe05e7, 0x05030612, 0x050f06c6, 0x050206eb,
0x05fb05e4, 0x060906cc, 0x05ea0501, 0x05ef05e1, 0x05f005cd, 0x059605ce, 0x059e058a, 0x0592059f, 0x05870588, 0x059d058b, 0x0591059c, 0x058d058e,
0x058f058c, 0x05950590, 0x05860585, 0x059a0589, 0x0594059b, 0x05990598, 0x05a10593, 0x069705a0, 0x06160615, 0x05180617, 0x05ed05ee, 0x05f205ec,
0x05f605f9, 0x05d405f1, 0x05d805db, 0x05f305cf, 0x05d505fa, 0x054205de, 0x0549054a, 0x05470548, 0x05450546, 0x054b0544, 0x05580557, 0x05430559,
0x05780577, 0x05790576, 0x05750568, 0x0569055b, 0x056a055a, 0x056c056b, 0x0570056f, 0x05720571, 0x056e056d, 0x05bf05be, 0x05bd05c0, 0x05b3055c,
0x05b505b4, 0x052b05b6, 0x0520052c, 0x042a0421, 0x000c0029, 0x33210082, 0x82048228, 0x42042102, 0x0d200482, 0x02240386, 0x20000000, 0x03200386,
0x21200782, 0x03210385, 0x200782ec, 0x21038522, 0x07823e04, 0x03852320, 0x82f40321, 0x85242007, 0x96042103, 0x25200782, 0x04210385, 0x200782e8,
0x21038526, 0x07823406, 0x03852720, 0x823f0421, 0x24778307, 0x04000029, 0x200b820a, 0x2103852a, 0x0782f203, 0x03852b20, 0x82c60421, 0x852c2007,
0x83032003, 0x822d2047, 0x2003820b, 0x20738304, 0x820b822e, 0xe7032103, 0x2f200782, 0x03210385, 0x200782f5, 0x24038230, 0x03000039, 0x20078297,
0x2003823a, 0x200b823b, 0x200782e9, 0x2103853c, 0x0782cd04, 0x03853d20, 0x82ca0421, 0x853e2007, 0xcc042103, 0x3f200782, 0x03210385, 0x200782ee,
0x21038540, 0x07823306, 0x03864120, 0x07820420, 0x03824220, 0x03824320, 0x03821020, 0x03864420, 0x07821720, 0x03864520, 0x07821b20, 0x03824620,
0xff854720, 0x82480021, 0x83038307, 0x824920d3, 0x8203830b, 0x4a0021b7, 0x03830b82, 0x07823920, 0x03864b20, 0x07823b20, 0x03864c20, 0x07823d20,
0x03824d20, 0x6f864e20, 0x07824f20, 0x33830383, 0x0b825020, 0x56200383, 0x51200782, 0x52200382, 0x58200382, 0x53200382, 0x5d200386, 0x54200782,
0x64200386, 0x55200782, 0x69200386, 0x56200782, 0x57200382, 0x74200382, 0x59203386, 0x7a200782, 0x5a200382, 0x80200386, 0x5b200782, 0x04210385,
0x2007820e, 0x2103855c, 0x0782f603, 0x03825783, 0x820f0421, 0x855e200b, 0xd4042103, 0x5f200782, 0x04200385, 0x6020e383, 0x03820b82, 0x00020725,
0x86610000, 0x828b2003, 0x82622007, 0x82632003, 0x82972003, 0x83938303, 0x829e2003, 0x8665200b, 0x82a22003, 0x82662007, 0x82672003, 0x82ac2003,
0x86682003, 0x82b22003, 0x83b78307, 0x82b52003, 0x866a200b, 0x82c12003, 0x866b2007, 0x82c42003, 0x866c2007, 0x82c72003, 0x826d2007, 0x826e2003,
0x82cd2003, 0x866f2003, 0x82d52003, 0x86702007, 0x82e12003, 0x82712007, 0x82722003, 0x82e32003, 0x86732003, 0x41e82003, 0x74200617, 0xef200782,
0x75200382, 0xf4200386, 0x76200782, 0x77200382, 0xff200382, 0x78200382, 0x79240382, 0x05010000, 0x20063b41, 0x200b827a, 0x200b820b, 0x2103857b,
0x07820c04, 0x03857c20, 0x823c0621, 0x857d2007, 0x0d042103, 0x7e200782, 0x04210385, 0x200782d2, 0x210385a0, 0x07828f04, 0x0385a120, 0x82ed0321,
0x85a22007, 0x94042103, 0xa3200782, 0x04210385, 0x2007829d, 0x210385a4, 0x07829504, 0x0385a520, 0x829e0421, 0x85a62007, 0x3d062103, 0xa7200782,
0x06210385, 0x20078236, 0x200385a8, 0x21068207, 0x0482a900, 0x06210382, 0x20078237, 0x210385aa, 0x07821e01, 0x0385ab20, 0x413a0421, 0xac240677,
0xd3040000, 0xad200b82, 0x04210385, 0x20078224, 0x210385ae, 0x07823806, 0x0385af20, 0x820a0721, 0x85b02007, 0x3a062103, 0xb1200782, 0x04210385,
0x200782d0, 0x240382b2, 0x030000b3, 0x200782ce, 0x210385b4, 0x07820307, 0x0385b520, 0x82e00421, 0x85b62007, 0x35062103, 0xb7200782, 0x03210385,
0x200782f0, 0x210385b8, 0x07820b07, 0x0385b920, 0x82cd0321, 0x85ba2007, 0x1f012103, 0xbb200782, 0x04210385, 0x2007823b, 0x210385bc, 0x0782db03,
0x0385bd20, 0x82d80321, 0x85be2007, 0xdc032103, 0xbf200782, 0x03210385, 0x200782ef, 0x200386c0, 0x20078209, 0x200386c1, 0x20078205, 0x200386c2,
0x20078207, 0x200386c3, 0x2007820d, 0x200386c4, 0x20078208, 0x200386c5, 0x2007820c, 0x200386c6, 0x2007820e, 0x200386c7, 0x20078214, 0x200386c8,
0x20078222, 0x200386c9, 0x2007821c, 0x200382ca, 0x830382cb, 0x82cc20bf, 0x83038307, 0x83db83fb, 0x82302003, 0x82ce2013, 0x82cf2003, 0x82322003,
0x86d02003, 0x82182003, 0x86d12007, 0x82492003, 0x86d22007, 0x824f2003, 0x86d32007, 0x824b2003, 0x86d42007, 0x824d2003, 0x86d52007, 0x82542003,
0x86d62007, 0x824e2003, 0x85d72007, 0xc8042103, 0xd8200782, 0x52200386, 0xd9200782, 0x6e200386, 0xda200782, 0x6a200386, 0xdb200782, 0xdc200382,
0x20065743, 0x830782dd, 0x827c2003, 0x86de2007, 0x82572003, 0x86df2007, 0x82ee2003, 0x86e02007, 0x82902003, 0x86e12007, 0x828c2003, 0x86e22007,
0x438e2003, 0xe320066f, 0x94200782, 0xe4200382, 0x8f200386, 0xe5200782, 0x93200386, 0xe6200782, 0x95200386, 0xe7200782, 0x9b200386, 0xe8200782,
0xa9200386, 0xe9200782, 0xa3200386, 0xea200782, 0xeb200382, 0x21050343, 0x0782ec00, 0xbc200383, 0xed200782, 0xb7200386, 0xee200782, 0x2006d343,
0x200782b9, 0x200386f0, 0x2007829f, 0x200386f1, 0x200782d4, 0x200386f2, 0x200782da, 0x200386f3, 0x200782d6, 0x200386f4, 0x200782d8, 0x830386f5,
0x82f620f7, 0x2003830b, 0x200782d9, 0x210385f7, 0x0782c904, 0x0386f820, 0x0782dd20, 0x038af920, 0x0b82fa20, 0xf5200383, 0xfb200782, 0xfc200382,
0x00213385, 0x820782fd, 0x07012103, 0xfe200782, 0xe2200386, 0xff200782, 0x01240385, 0x01000009, 0x03830a82, 0x820a0021, 0x2008820b, 0x21038201,
0x0b829100, 0x03850220, 0x00060025, 0x85030100, 0x8d002103, 0x04200782, 0x00210385, 0x2007820b, 0x21038505, 0x07829200, 0x03850620, 0x82120021,
0x85072007, 0x99002103, 0x08200782, 0x00210385, 0x20078215, 0x21038509, 0x07829c00, 0x03850a20, 0x44160021, 0x012505e3, 0x0000000b, 0x200b829d,
0x2103850c, 0x07821300, 0x03850d20, 0x829a0021, 0x850e2007, 0x19002103, 0x0f200782, 0x00210385, 0x200782a0, 0x21038510, 0x07821a00, 0x03851120,
0x82a10021, 0x85122007, 0x23002103, 0x13200782, 0x00210385, 0x200782aa, 0x21038514, 0x07821d00, 0x03829383, 0x82a40021, 0x8516200b, 0x21002103,
0x17200782, 0x00210385, 0x200782a8, 0x21038518, 0x07822400, 0x03827b83, 0x82ab0021, 0x851a200b, 0x1e002103, 0x1b200782, 0x00210385, 0x200782a5,
0x2103851c, 0x07822800, 0x03826383, 0x82af0021, 0x851e200b, 0x27002103, 0x1f200782, 0x00210385, 0x200782ae, 0x21038520, 0x07822a00, 0x03827b83,
0x82b10021, 0x8522200b, 0x29002103, 0x23200782, 0x00210385, 0x830782b0, 0x21038287, 0x0b822d00, 0x03852520, 0x82b40021, 0x85262007, 0x2c002103,
0x27200782, 0x00210385, 0x200782b3, 0x21038528, 0x07823800, 0x03824b83, 0x82c00021, 0x852a200b, 0x36002103, 0x2b200782, 0x00210385, 0x830782be,
0x2103823f, 0x0b823100, 0x03826383, 0x82b80021, 0x852e200b, 0x37002103, 0x2f200782, 0x00210385, 0x200782bf, 0x21038530, 0x07823400, 0x03823383,
0x82b60021, 0x8532200b, 0x83002003, 0x8233202b, 0x2103820b, 0x0782bd00, 0x03822783, 0x823a0021, 0x8535200b, 0xc3002103, 0x36200782, 0x00210385,
0x2007823c, 0x20038237, 0x05134538, 0x82390121, 0x2103820b, 0x07823e00, 0x03853a20, 0x82c80021, 0x853b2007, 0x40002103, 0x3c200782, 0x00210385,
0x200782ca, 0x2103853d, 0x07823f00, 0x03853e20, 0x82c90021, 0x820f8307, 0x41002103, 0x33830b82, 0x00210382, 0x830b82cb, 0x2103820f, 0x0b824200,
0x00210386, 0x200b82cc, 0x21038543, 0x07824500, 0x03854420, 0x82cf0021, 0x820f8307, 0x47002103, 0x46200b82, 0x00210385, 0x830782d2, 0x2003820f,
0x20138300, 0x820f8248, 0xd1002103, 0x49200782, 0x00210385, 0x200782d0, 0x2103854a, 0x07824800, 0x03854b20, 0x82d30021, 0x854c2007, 0x51002103,
0x4d200782, 0x00210385, 0x200782dc, 0x2103854e, 0x07824c00, 0x03854f20, 0x82d70021, 0x85502007, 0x83002003, 0x82338307, 0xdb002103, 0x52201382,
0x00210385, 0x20078255, 0x21038553, 0x0782e000, 0x03855420, 0x825a0021, 0x821b8307, 0xe5002103, 0x56200b82, 0x00210385, 0x2007825c, 0x21038557,
0x0782e700, 0x03855820, 0x825b0021, 0x85592007, 0xe6002103, 0x5a200782, 0x00210385, 0x2007825e, 0x2103855b, 0x0782e900, 0x03855c20, 0x82610021,
0x855d2007, 0xec002103, 0x5e200782, 0x00210385, 0x20078260, 0x2103855f, 0x0782eb00, 0x03820f83, 0x13830020, 0x03823383, 0x82ea0021, 0x85622017,
0x67002103, 0x63200782, 0x00210385, 0x200782f2, 0x21038564, 0x07826600, 0x03856520, 0x82f10021, 0x820f8307, 0x83002003, 0x82672013, 0x2103820f,
0x0782f000, 0x03856820, 0x82730021, 0x85692007, 0xfe002103, 0x6a200782, 0x00210385, 0x20078270, 0x2103856b, 0x0782fb00, 0x03856c20, 0x13830020,
0x0b826d20, 0x00210382, 0x200782f6, 0x2103856e, 0x07827200, 0x03856f20, 0x82fd0021, 0x85702007, 0x83002003, 0x82712013, 0x2103820b, 0x0782fa00,
0x03857220, 0x0f820020, 0x82730121, 0x2103820b, 0x0782fc00, 0x03857420, 0x82770021, 0x86752007, 0x82022003, 0x85762007, 0x7d002103, 0x77200782,
0x08200386, 0x78200782, 0x00210385, 0x2007827e, 0x21038579, 0x07828100, 0x03867a20, 0x07820c20, 0x03857b20, 0x82830021, 0x867c2007, 0x820e2003,
0x824b8307, 0x82002103, 0x7e200b82, 0x0d200386, 0x92200782, 0x04210385, 0x83078299, 0x21038293, 0x0b820f00, 0x0382cf83, 0x82960021, 0x85fe200b,
0x53002103, 0xff200782, 0x00250385, 0x020000de, 0x21038518, 0x07826200, 0x03851920, 0x82ed0021, 0x851a2007, 0x68002103, 0x1b200782, 0x00210385,
0x200782f3, 0x21038537, 0x0782c200, 0x0385b920, 0x82ec0621, 0x85ba2007, 0xea062103, 0xbc200782, 0x06210385, 0x200782e9, 0x240382c6, 0x070000c7,
0x20078205, 0x210385c9, 0x0782eb06, 0x0385d820, 0x82070721, 0x85d92007, 0x01072103, 0xda200782, 0x07250385, 0x02000008, 0x210385db, 0x07820c07,
0x0385dc20, 0x82090721, 0x85dd2007, 0x04072503, 0x00030000, 0x01240382, 0xef060000, 0x02200782, 0x06210385, 0x200782f2, 0x20038203, 0x20178205,
0x200782f6, 0x21038506, 0x0782f406, 0x03850720, 0x82ee0621, 0x85082007, 0xed062103, 0x0a200782, 0x06210385, 0x200782f5, 0x2103850b, 0x0782f106,
0x03850c20, 0x82f30621, 0x850f2007, 0xf9062103, 0x13200782, 0x14200382, 0xfa205f82, 0x26200782, 0x27200382, 0xfc200b82, 0x35200782, 0x36200382,
0x21055758, 0x0b824203, 0x07210382, 0x2007821d, 0x21038545, 0x07821e07, 0x03857020, 0x82630221, 0x85712007, 0x83022003, 0x82722047, 0x2103820b,
0x07826402, 0x03857320, 0x82fb0221, 0x82742007, 0x82752003, 0x82e72053, 0x85762007, 0x65022103, 0x77200782, 0x02200385, 0x7a207783, 0x03830b82,
0x07828c20, 0x03827b20, 0x00007d24, 0x0782fd02, 0x03857e20, 0x17830420, 0x0b827f20, 0x02210382, 0x20078241, 0x21038584, 0x07821f07, 0x03858520,
0x82210721, 0x85862007, 0x5a022103, 0x87200782, 0x04210385, 0x2007828b, 0x20038288, 0x2053828a, 0x8307825b, 0x2103824b, 0x0b825e02, 0x03828e20,
0x17828f20, 0x07825f20, 0x03859020, 0x82f10221, 0x82912007, 0x82a12003, 0x21ff8217, 0x0b82a303, 0x0b82a920, 0x07825320, 0x0382aa20, 0x0b82ab20,
0x07826120, 0x0382ac20, 0x0b82ae20, 0x0782f720, 0x0385af20, 0x82ef0221, 0x85b02007, 0xf4022103, 0xb1200782, 0xc9200382, 0xd6202382, 0xca200782,
0x02210385, 0x200782f0, 0x210385cb, 0x0782f302, 0x0385cc20, 0x82f50221, 0x85cd2007, 0xf2022103, 0xce200782, 0x02210385, 0x200782f6, 0x210385cf,
0x07826b02, 0x0382d020, 0x1342d120, 0xd2032105, 0xd4200782, 0x6c205f82, 0xd5200782, 0xd6200382, 0x21051342, 0x0782d703, 0x05200383, 0xd8200782,
0x02210385, 0x20078266, 0x200386d9, 0x20078200, 0x210385da, 0x07826702, 0x0386db20, 0x07820120, 0x0385dc20, 0x82680221, 0x86dd2007, 0x82022003,
0x85de2007, 0x69022103, 0xdf200782, 0x03200386, 0xe0200782, 0x02210385, 0x2007826a, 0x200386e1, 0x20078204, 0x830382f0, 0x820a20df, 0x85f42007,
0x6f022103, 0xe7830782, 0x0e200383, 0xf620cb82, 0x06210385, 0x200782e6, 0x210385f7, 0x07827002, 0x0386f820, 0x07820f20, 0x0382f920, 0x0000fa24,
0x07827102, 0x0382fb20, 0x0382fc20, 0x03821020, 0x0382fd20, 0x1782ff20, 0x00007324, 0x03820004, 0x00000124, 0x07822901, 0x03850220, 0x82520121,
0x85032007, 0x25012103, 0x04200782, 0x01210385, 0x2007824a, 0x21038505, 0x07824901, 0x03820620, 0xe7460820, 0x09042105, 0x0a200b82, 0x47200b82,
0x0b200782, 0x01210385, 0x2007824f, 0x2103850c, 0x07823201, 0x03850d20, 0x822f0121, 0x850e2007, 0x3c012103, 0x0f200782, 0x01210385, 0x24078243,
0x04000010, 0x05374913, 0x82140421, 0x8215200b, 0x8227200b, 0x82162007, 0x48192003, 0x042105d3, 0x820b821a, 0x31012103, 0x1b200782, 0x23200382,
0x21058b48, 0x0b822404, 0x2b482520, 0x26042105, 0x03820b82, 0x82400121, 0x85272007, 0x3f012103, 0x28200782, 0xeb820382, 0x82410121, 0x822a2007,
0x822b2003, 0x8245202f, 0x852c2007, 0x44012103, 0x2d200782, 0x01210385, 0x2007824b, 0x2003822e, 0x059b472f, 0x82300421, 0x8233200b, 0x82b1200b,
0x82342007, 0x82352003, 0x82b7200b, 0x82362007, 0x82392003, 0x82bb200b, 0x853a2007, 0xc1012103, 0x3b200782, 0x43200382, 0xc3201782, 0x57830782,
0x01216782, 0x200b82cd, 0x21038546, 0x0782d001, 0x03854720, 0x82cf0121, 0x82482007, 0x82492003, 0x82d1202f, 0x824a2007, 0x824b2003, 0x82d5200b,
0x854c2007, 0xd4012103, 0x4d200782, 0x01210385, 0x200782db, 0x2003824e, 0x2023824f, 0x200782e0, 0x20038250, 0x200b8251, 0x200782b9, 0x21038552,
0x0782e201, 0x03855320, 0x82b50121, 0x85542007, 0xda012103, 0x55200782, 0x01210385, 0x200782d9, 0x20038256, 0x203b8258, 0x200782dc, 0x20038259,
0x200b825a, 0x200782d7, 0x2103855b, 0x0782df01, 0x03855c20, 0x82c20121, 0x855d2007, 0xbf012103, 0x5e200782, 0x01210385, 0x200782cc, 0x2103855f,
0x0782d301, 0x03856020, 0x7f830120, 0x0b826120, 0x01210382, 0x200782e3, 0x21038562, 0x07825401, 0x03856320, 0x82e40121, 0x85642007, 0x83012003,
0x82652097, 0x2103820b, 0x0782e501, 0x03856620, 0x82560121, 0x85672007, 0xe6012103, 0x68200782, 0x01210385, 0x20078257, 0x21038569, 0x0782e701,
0x03856a20, 0x82580121, 0x856b2007, 0xe8012103, 0x6c200782, 0x01210385, 0x20078259, 0x2103856d, 0x0782e901, 0x03856e20, 0x825a0121, 0x856f2007,
0xea012103, 0x70200782, 0x01210385, 0x2007825b, 0x21038571, 0x0782eb01, 0x03857220, 0x825c0121, 0x85732007, 0xec012103, 0x74200782, 0x01210385,
0x2007825d, 0x21038575, 0x0782ed01, 0x03857620, 0x825e0121, 0x85772007, 0xee012103, 0x78200782, 0x01210385, 0x2007825f, 0x21038579, 0x0782ef01,
0x03858a20, 0x82300121, 0x858b2007, 0xc0012103, 0x8c200782, 0x01210385, 0x200782ab, 0x2103858d, 0x07823b02, 0x03858e20, 0x82ac0121, 0x858f2007,
0x3c022103, 0x90200782, 0x01210385, 0x20078226, 0x21038591, 0x0782b601, 0x03859220, 0x82600121, 0x85932007, 0xf0012103, 0x94200782, 0x01210385,
0x20078261, 0x21038595, 0x0782f101, 0x03859620, 0x82620121, 0x85972007, 0xf2012103, 0x98200782, 0x01210385, 0x20078263, 0x21038599, 0x0782f301,
0x03859a20, 0x82640121, 0x859b2007, 0xf4012103, 0x9c200782, 0x01210385, 0x20078265, 0x2103859d, 0x0782f501, 0x03859e20, 0x82660121, 0x859f2007,
0xf6012103, 0xa0200782, 0x01210385, 0x20078267, 0x210385a1, 0x0782f701, 0x0385a220, 0x82680121, 0x85a32007, 0xf8012103, 0xa4200782, 0x01210385,
0x20078269, 0x210385a5, 0x0782f901, 0x0385a620, 0x826a0121, 0x85a72007, 0xfb012103, 0xa8200782, 0x01210385, 0x2007826c, 0x210385a9, 0x0782fc01,
0x0385aa20, 0x826d0121, 0x85ab2007, 0xfd012103, 0xac200782, 0x01210385, 0x2007826e, 0x210385ad, 0x0782fe01, 0x0385ae20, 0x826f0121, 0x85af2007,
0xff012103, 0x09610782, 0x70012106, 0xb1200b82, 0x02210385, 0x20078200, 0x210385b2, 0x07827101, 0x0385b320, 0x82010221, 0x85b42007, 0x72012103,
0xb5200782, 0x02210385, 0x20078202, 0x210385b6, 0x07827301, 0x0385b720, 0x82030221, 0x85b82007, 0x74012103, 0xb9200782, 0x02210385, 0x20078204,
0x210385ba, 0x07827501, 0x0385bb20, 0x82050221, 0x85bc2007, 0x77012103, 0xbd200782, 0x02210385, 0x20078207, 0x210385be, 0x07827801, 0x0385bf20,
0x82080221, 0x82c02007, 0x00c12403, 0x82790100, 0x85c22007, 0x0a022103, 0xc3200782, 0x01210385, 0x2007827b, 0x210385c4, 0x07820b02, 0x0385c520,
0x827c0121, 0x85c62007, 0x0c022103, 0xc7200782, 0x01210385, 0x2007827d, 0x210385c8, 0x07820d02, 0x0385c920, 0x827e0121, 0x85ca2007, 0x0e022103,
0xcb200782, 0x01210385, 0x2007827f, 0x210385cc, 0x07820f02, 0x0385cd20, 0x82800121, 0x85ce2007, 0x10022503, 0xcf040000, 0x02210385, 0x20078209,
0x210385d0, 0x07828101, 0x0385d120, 0x82110221, 0x85d22007, 0x82012103, 0xd3200782, 0x02250385, 0x04000012, 0x210385d4, 0x07828301, 0x0385d520,
0x82130221, 0x85d62007, 0x84012103, 0xd7200782, 0x02210385, 0x20078214, 0x210385d8, 0x07828501, 0x0385d920, 0x82150221, 0x85da2007, 0x86012103,
0xdb200782, 0x02210385, 0x20078216, 0x210385dc, 0x07828701, 0x0385dd20, 0x82170221, 0x85de2007, 0x88012103, 0xdf200782, 0x02210385, 0x20078218,
0x210385e0, 0x07828901, 0x0385e120, 0x82190221, 0x85e22007, 0x8a012103, 0xe3200782, 0x02210385, 0x2007821a, 0x210385e4, 0x07828b01, 0x0385e520,
0x821b0221, 0x85e62007, 0x8c012103, 0xe7200782, 0x02210385, 0x2007821c, 0x210385e8, 0x07828d01, 0x0385e920, 0x821d0221, 0x85ea2007, 0x8e012103,
0xeb200782, 0x02210385, 0x2007821e, 0x210385ec, 0x07828f01, 0x0385ed20, 0x821f0221, 0x85ee2007, 0x90012103, 0xef200782, 0x02210385, 0x20078220,
0x210385f0, 0x07829101, 0x0385f120, 0x82210221, 0x85f22007, 0x92012103, 0xf3200782, 0x02210385, 0x20078222, 0x210385f4, 0x07829301, 0x0385f520,
0x82230221, 0x85f62007, 0x94012103, 0xf7200782, 0x02210385, 0x20078224, 0x210385f8, 0x07829501, 0x0385f920, 0x82250221, 0x85fa2007, 0x96012103,
0xfb200782, 0x02210385, 0x20078226, 0x210385fc, 0x07829701, 0x0385fd20, 0x82270221, 0x85fe2007, 0x98012103, 0xff200782, 0x02250385, 0x05000028,
0x21038500, 0x07829901, 0x03850120, 0x82290221, 0x85022007, 0x9a012103, 0x03200782, 0x02210385, 0x2007822a, 0x21038504, 0x07829b01, 0x03850520,
0x822b0221, 0x85062007, 0x9c012103, 0x07200782, 0x02210385, 0x2007822c, 0x21038508, 0x07829d01, 0x03850920, 0x822d0221, 0x850a2007, 0x9e012103,
0x0b200782, 0x02210385, 0x2007822e, 0x2103850c, 0x07829f01, 0x03850d20, 0x822f0221, 0x850e2007, 0xa0012103, 0x0f200782, 0x02210385, 0x20078230,
0x21038510, 0x0782a101, 0x03851120, 0x82310221, 0x85122007, 0xa2012103, 0x13200782, 0x02210385, 0x20078232, 0x21038514, 0x0782a301, 0x03851520,
0x82330221, 0x85162007, 0xa4012103, 0x17200782, 0x02210385, 0x20078234, 0x21038518, 0x0782a501, 0x03851920, 0x82350221, 0x851a2007, 0xa6012103,
0x1b200782, 0x02210385, 0x20078236, 0x2103851c, 0x0782a701, 0x03851d20, 0x82370221, 0x851e2007, 0xa8012103, 0x1f200782, 0x02210385, 0x20078238,
0x21038520, 0x0782a901, 0x03852120, 0x82390221, 0x85222007, 0xaa012103, 0x23200782, 0x02210385, 0x2007823a, 0x21038524, 0x07826b01, 0x03852520,
0x82fa0121, 0x85262007, 0x76012103, 0x27200782, 0x02210385, 0x20078206, 0x21038528, 0x0782ad01, 0x03852920, 0x823d0221, 0x852a2007, 0xae012103,
0x2b200782, 0x02210385, 0x2007823e, 0x2103852c, 0x0782af01, 0x03852d20, 0x823f0221, 0x852e2007, 0xb0012103, 0x2f200782, 0x02250385, 0x14000040,
0x21038505, 0x07828d03, 0x03850a20, 0x008e0325, 0x85801e00, 0x79002103, 0x81200782, 0x01210385, 0x20078204, 0x20038582, 0x21a78200, 0x0b82831e,
0x01210382, 0x20078201, 0x25038584, 0x00007800, 0x0385851e, 0x82030121, 0x859e2007, 0x63002103, 0xf2200782, 0x00210385, 0x2007827f, 0x200385f3,
0x29738201, 0x0000001f, 0x0000071f, 0x07821203, 0x03820820, 0x00000f23, 0x215f8202, 0x0b82101f, 0x17821520, 0x1f21df82, 0x200b8218, 0x2017821d,
0x2007828b, 0x20038220, 0x20178227, 0x20078233, 0x82038228, 0x930221cf, 0x30200782, 0x37200382, 0x4a201782, 0x38200782, 0xf7820382, 0x82a60221,
0x21e78207, 0x1782451f, 0x0b825a20, 0x03824820, 0x47824d20, 0x0782b220, 0x03825020, 0x17825720, 0x07826420, 0x03855920, 0x82bb0221, 0x855b2007,
0xbc022103, 0x5d200782, 0x02210385, 0x200782bd, 0x2103855f, 0x0782be02, 0x03826020, 0x3b826720, 0x07827420, 0x03826820, 0x53826f20, 0x0782c320,
0x03827020, 0x17827120, 0x07821a20, 0x03827220, 0x0b827320, 0x07823120, 0x75202783, 0x3b200b82, 0x76200b82, 0x77200382, 0x52200b82, 0x78200782,
0x79200382, 0x4f830b82, 0x0b827a20, 0x0b827b20, 0x07826c20, 0x00007c24, 0x0b827d1f, 0x00007c24, 0x0382801f, 0x0b828720, 0x07822220, 0x03828820,
0x6b828f20, 0x07828320, 0x03829020, 0x17829720, 0x07824120, 0x03829820, 0x17829f20, 0x07829e20, 0x0382a020, 0x1782a720, 0x07828220, 0x0382a820,
0x1782af20, 0x0782ce20, 0x0382b020, 0x1782b120, 0x07821d20, 0x0385b220, 0x82200321, 0x85b32007, 0x1f032103, 0xb4200782, 0x03210385, 0x20078221,
0x210385b6, 0x07821c03, 0x0385b720, 0x822a0321, 0x82b82007, 0x82b92003, 0x82802053, 0x82ba2007, 0x82bb2003, 0x007e240b, 0x85bc1f00, 0x82022103,
0xbd200782, 0x07210385, 0x20078223, 0x210385be, 0x07828b03, 0x0385bf20, 0x82220721, 0x85c02007, 0x32072103, 0xc1200782, 0x07210385, 0x2007822d,
0x210385c2, 0x07823f03, 0x0385c320, 0x823e0321, 0x85c42007, 0x40032103, 0xc6200782, 0x03210385, 0x2007823d, 0x210385c7, 0x07824903, 0x0382c820,
0x8f82c920, 0x07829120, 0x0382ca20, 0x0b82cc20, 0x07829b20, 0x0385cd20, 0x82250721, 0x85ce2007, 0x27072103, 0xcf200782, 0x07210385, 0x20078229,
0x240382d0, 0x030000d3, 0x20078255, 0x210385d6, 0x07825403, 0x0385d720, 0x82590321, 0x82d82007, 0x82d92003, 0x82b02053, 0x82da2007, 0x82db2003,
0x82ae200b, 0x85dd2007, 0x26072103, 0xde200782, 0x07210385, 0x20078228, 0x210385df, 0x07822a07, 0x0382e020, 0x5f82e320, 0x07826f20, 0x0382e420,
0x0b82e520, 0x07826220, 0x0385e620, 0x826e0321, 0x85e72007, 0x73032103, 0xe8200782, 0xe9200382, 0xc1205f82, 0xea200782, 0xeb200382, 0xbf200b82,
0xec200782, 0x02210385, 0x200782ba, 0x240382ed, 0x070000ee, 0x2007822b, 0x210385ef, 0x07822e07, 0x0385f220, 0x82800321, 0x85f32007, 0x7f032103,
0xf4200782, 0x03210385, 0x20078281, 0x250385f6, 0x00007e03, 0x0385f71f, 0x828a0321, 0x82f82007, 0x82f92003, 0x82b8206b, 0x82fa2007, 0x82fc2003,
0x82cb200b, 0x85fd2007, 0x30072103, 0xfe200782, 0x07250385, 0x20000024, 0x24038207, 0x04000008, 0x2007828d, 0x2103850b, 0x07829004, 0x03851220,
0x82280421, 0x82132007, 0x00152403, 0x82250400, 0x85162007, 0x82032003, 0x17202197, 0x03820b82, 0x822c0421, 0x82182007, 0x82192003, 0x82382023,
0x851a2007, 0x34042103, 0x1c200782, 0x1d200382, 0x2105b34e, 0x0b821e20, 0x04210382, 0x20078235, 0x24038220, 0x06000021, 0x2007823f, 0x21038522,
0x0782f103, 0x03852620, 0x82eb0321, 0x20ab8207, 0x21038220, 0x0b82e904, 0x03823920, 0x47823a20, 0x07823c20, 0x03854420, 0x82d60321, 0x854a2007,
0xf7032103, 0x70200782, 0x03210385, 0x200782cc, 0x24038274, 0x03000079, 0x200782d0, 0x2103857a, 0x0782eb04, 0x03857b20, 0x82bb0421, 0x857c2007,
0xad042103, 0x7d200782, 0x7e200382, 0x14205f82, 0x7f200782, 0x01210385, 0x24078220, 0x20000080, 0x20478289, 0x200782ae, 0x2103858a, 0x0782ea04,
0x03858b20, 0x82ba0421, 0x858c2007, 0xac042103, 0x8d200782, 0x8e200382, 0x2005a750, 0x820f8320, 0x98042103, 0xaf201382, 0x04210385, 0x20078297,
0x210385b9, 0x07829c04, 0x03823f83, 0x829a0421, 0x85bd200b, 0x9b042503, 0x02210000, 0x03210385, 0x20078290, 0x2103850d, 0x07829103, 0x03851320,
0x823e0621, 0x85152007, 0x92032103, 0x16200782, 0x06210385, 0x20078242, 0x20038219, 0x20b3821a, 0x20078293, 0x2103851d, 0x07829503, 0x03852220,
0x82390621, 0x85242007, 0x96032103, 0x2e200782, 0x06210385, 0x20078241, 0x20038253, 0x203b8254, 0x200782d9, 0x20038255, 0x200b825e, 0x200782dd,
0x2103855f, 0x0782d703, 0x03858a20, 0x82790621, 0x858b2007, 0x78062103, 0x90200782, 0x05200385, 0x91209783, 0x03820b82, 0x820f0521, 0x85922007,
0x11052103, 0x93200782, 0x05210385, 0x20078213, 0x82038294, 0x17052197, 0x96200782, 0x05200385, 0x9720c783, 0x03820b82, 0x82100521, 0x85982007,
0x12052103, 0x99200782, 0x05210385, 0x20078214, 0x210385a9, 0x07821b05, 0x0382b020, 0x0000b324, 0x07821c05, 0x0385de20, 0x82660621, 0x85df2007,
0x65062103, 0xe4200782, 0xe5200382, 0x19202382, 0xe6200782, 0x05210385, 0x20078225, 0x200382e7, 0x201782e9, 0x20078222, 0x200385ea, 0x82f38206,
0x8300200e, 0x02052403, 0x86220000, 0xe1042103, 0x03200b82, 0x04210385, 0x200782af, 0x21038504, 0x0782fe04, 0x03850520, 0x82d60421, 0x85062007,
0xdc042103, 0x07200782, 0x04210385, 0x200782b1, 0x21038508, 0x0782aa04, 0x03850920, 0x82c10421, 0x850a2007, 0xab042103, 0x0b200782, 0x04210385,
0x200782f9, 0x2103850c, 0x0782c004, 0x03850d20, 0x82a40421, 0x850f2007, 0xdd042103, 0x11200782, 0x04210385, 0x200782de, 0x21038512, 0x0782c704,
0x03851520, 0x82a60421, 0x20f38207, 0x21038222, 0x0b82a304, 0x03851a20, 0x82df0421, 0x851e2007, 0xd5042103, 0x27200782, 0x2b200382, 0x21057b4c,
0x0b823422, 0x04210382, 0x200782ff, 0x21038535, 0x0782a204, 0x03853620, 0x82ec0421, 0x85482007, 0xd1042103, 0x60200782, 0x04210385, 0x200782cb,
0x21038561, 0x0782ae04, 0x03856220, 0x82c20421, 0x85642007, 0xcf042103, 0x65200782, 0x04210385, 0x200782ce, 0x21038582, 0x0782f704, 0x03858320,
0x82fa0421, 0x82842007, 0x4d852003, 0x222105fb, 0x200b8286, 0x050f4c87, 0x00882225, 0x4e892200, 0x22250543, 0x2200008a, 0x05a34b8a, 0x008b2224,
0x03822200, 0x82fb0421, 0x82ab8307, 0xf6042103, 0xf3830b82, 0x04210382, 0x200b82fd, 0x210385a4, 0x0782fc04, 0x0385a520, 0x82030521, 0x85a62007,
0xa1042103, 0xa7200782, 0x04210385, 0x200782bc, 0x210385a8, 0x07820105, 0x0385a920, 0x82b00421, 0x85aa2007, 0x00052103, 0xab200782, 0x04210385,
0x200782a9, 0x210385ac, 0x0782a804, 0x0385ad20, 0x82c50421, 0x85ae2007, 0x83042003, 0x82af205b, 0x2303820b, 0x0000bd04, 0x22069e66, 0x823b0600,
0x8502200b, 0x5d062103, 0x03200782, 0x06210385, 0x20078249, 0x21038504, 0x07822605, 0x23207082, 0x06210382, 0x200b826e, 0x21038506, 0x07826d06,
0x03851020, 0x82ef0421, 0x85182007, 0x67062103, 0x20200782, 0x04210385, 0x200782b3, 0x21038521, 0x0782b204, 0x03852420, 0x82270521, 0x85252007,
0x64062103, 0x26200782, 0x06210385, 0x20078261, 0x21038527, 0x07825f06, 0x03852820, 0x82630621, 0x852b2007, 0x60062103, 0x87200782, 0x06210385,
0x20078231, 0x21038588, 0x07825b06, 0x03858b20, 0x82460621, 0x859b2007, 0xe4042103, 0x9c200782, 0x9d200382, 0x21055b4e, 0x0b829e23, 0x04210382,
0x200782e7, 0x2003829f, 0x054f4ea0, 0x82a12321, 0x2103820b, 0x0782b904, 0x0382a220, 0x8350a320, 0xa4232105, 0x03820b82, 0x82f50421, 0x82a52007,
0x4da62003, 0x232105d7, 0x820b82a7, 0xb6042103, 0xa8200782, 0x04210385, 0x200782b5, 0x210385a9, 0x0782b404, 0x0385aa20, 0x82a50421, 0x85ab2007,
0xf2042103, 0xac200782, 0x04210385, 0x200782f1, 0x210385ad, 0x0782f004, 0x0385ce20, 0x82680621, 0x85cf2007, 0x62062503, 0x00240000, 0x06210385,
0x2007826c, 0x24038201, 0x06000002, 0x20078273, 0x20038203, 0x200b8204, 0x20078253, 0x21038505, 0x07825606, 0x03850620, 0x82300621, 0x85072007,
0x43062103, 0x08200782, 0x06210385, 0x20078232, 0x21038509, 0x07825c06, 0x03850a20, 0x82690621, 0x850b2007, 0x7b062103, 0x0c200782, 0x06210385,
0x20078259, 0x2103850d, 0x07824806, 0x03850e20, 0x82710621, 0x850f2007, 0x70062103, 0x10200782, 0x06210385, 0x2007824a, 0x21038511, 0x07824e06,
0x03851220, 0x82500621, 0x85132007, 0x4f062103, 0x14200782, 0x06210385, 0x2007824d, 0x21038515, 0x07826a06, 0x03851620, 0x82770621, 0x85172007,
0x55062103, 0x18200782, 0x06210385, 0x20078247, 0x21038519, 0x07825206, 0x03851a20, 0x82750621, 0x821b2007, 0x001c2403, 0x82570600, 0x851d2007,
0x5a062103, 0x1e200782, 0x06210385, 0x2007826f, 0x2103851f, 0x07827a06, 0x03852020, 0x82720621, 0x85212007, 0x4b062103, 0x22200782, 0x06210385,
0x20078245, 0x21038523, 0x07824406, 0x03852420, 0x826b0621, 0x85252007, 0x4c062103, 0x26200782, 0x06230385, 0x69000076, 0x002206e6, 0x0b828305,
0x03850120, 0x82d30521, 0x85022007, 0x84052103, 0x03200782, 0x05210385, 0x200782e0, 0x21038504, 0x0782f705, 0x03850520, 0x82d90521, 0x85062007,
0xf8052103, 0x07200782, 0x05210385, 0x200782da, 0x21038508, 0x0782f405, 0x03850920, 0x82d60521, 0x850a2007, 0xf5052103, 0x0b200782, 0x05210385,
0x200782d7, 0x2003850c, 0x21ef8205, 0x0b820d25, 0x05210382, 0x200782ca, 0x2103850e, 0x0782c405, 0x03850f20, 0x82d20521, 0x85102007, 0x7c052103,
0x11200782, 0x05210385, 0x200782c8, 0x21038512, 0x0782c205, 0x03851320, 0x82d10521, 0x85142007, 0x7b052103, 0x15200782, 0x06200385, 0x16205b83,
0x03820b82, 0x82080621, 0x85172007, 0xdf052103, 0x18200782, 0x05210385, 0x2007827d, 0x21038519, 0x07820c06, 0x03851a20, 0xf7830620, 0x0b821b20,
0x05210382, 0x200782dd, 0x2103851c, 0x07828105, 0x03851d20, 0x82140621, 0x851e2007, 0x07062103, 0x1f200782, 0x05210385, 0x200782c5, 0x21038520,
0x07821106, 0x03852120, 0x82cb0521, 0x85222007, 0x0d062103, 0x23200782, 0x05210385, 0x200782e3, 0x21038524, 0x07828205, 0x03852520, 0x82130621,
0x85262007, 0x05062103, 0x27200782, 0x05210385, 0x200782c3, 0x21038528, 0x07821006, 0x03852920, 0x82c90521, 0x852a2007, 0x0b062103, 0x2b200782,
0x05210385, 0x200782e2, 0x2103852c, 0x07827f05, 0x03852d20, 0x82e50521, 0x852e2007, 0xfc052103, 0x2f200782, 0x05210385, 0x200782c7, 0x21038530,
0x0782c105, 0x03853120, 0x82ff0521, 0x85322007, 0xe8052103, 0x33200782, 0x05210385, 0x200782d0, 0x21038534, 0x07828005, 0x03853520, 0x82e60521,
0x85362007, 0xfd052103, 0x37200782, 0x06210385, 0x2007820a, 0x21038538, 0x07820406, 0x03853920, 0x82000621, 0x853a2007, 0xe9052103, 0x3b200782,
0x05210385, 0x200782dc, 0x2103853c, 0x07827e05, 0x03853d20, 0x82e70521, 0x853e2007, 0xfe052103, 0x3f200782, 0x06210385, 0x20078212, 0x21038540,
0x07820306, 0x03854120, 0x82c60521, 0x85422007, 0x0f062103, 0x43200782, 0x05210385, 0x200782eb, 0x21038544, 0x07820206, 0x03854520, 0x82e40521,
0x85462007, 0xfb052103, 0x47200782, 0x05210385, 0x200782cc, 0x21038548, 0x07820906, 0x03854920, 0x82010621, 0x854a2007, 0xea052103, 0x4b200782,
0x05210385, 0x200782e1, 0x2103854c, 0x0782ef05, 0x03854d20, 0x82cd0521, 0x854e2007, 0xf0052103, 0x4f200782, 0x05210385, 0x200782ce, 0x25038550,
0x00009605, 0x03855125, 0x828a0521, 0x82522007, 0x00532403, 0x829e0500, 0x85542007, 0x92052103, 0x55200782, 0x05210385, 0x20078288, 0x21038556,
0x07828705, 0x03855720, 0x828b0521, 0x85582007, 0x9d052103, 0x59200782, 0x05210385, 0x2007829c, 0x2103855a, 0x07829105, 0x03855b20, 0x828e0521,
0x855c2007, 0x8d052103, 0x5d200782, 0x05210385, 0x2007828c, 0x2003825e, 0x2083825f, 0x2007828f, 0x21038560, 0x07829505, 0x03826120, 0x17826220,
0x07828520, 0x03856320, 0x82890521, 0x82642007, 0x82652003, 0x829a2017, 0x85662007, 0x94052503, 0x67250000, 0x68200382, 0x98201782, 0x69200782,
0x05210385, 0x20078293, 0x2103856a, 0x0782a105, 0x03856b20, 0x82a00521, 0x856c2007, 0x97052103, 0x6d200782, 0x70240382, 0x15060000, 0x71200782,
0x05210385, 0x200782ee, 0x21038572, 0x0782ed05, 0x03857320, 0x82ec0521, 0x85742007, 0xf2052103, 0x75200782, 0x05210385, 0x200782f9, 0x21038576,
0x0782f605, 0x03857720, 0x82f10521, 0x85782007, 0xd4052103, 0x79200782, 0x05210385, 0x200782db, 0x2103857a, 0x0782d805, 0x03857b20, 0x82cf0521,
0x857c2007, 0xf3052103, 0x7d200782, 0x05210385, 0x200782fa, 0x2103857e, 0x0782d505, 0x03857f20, 0x82de0521, 0x85802007, 0x42052103, 0x81200782,
0x88240382, 0x3a050000, 0x89200782, 0x05210385, 0x2007824a, 0x2103858a, 0x07824905, 0x03858b20, 0x82480521, 0x858c2007, 0x47052103, 0x8d200782,
0x05210385, 0x20078246, 0x2103858e, 0x07824505, 0x03858f20, 0x82440521, 0x85902007, 0x4b052103, 0x91200782, 0x93200382, 0x57206b82, 0x94200782,
0x05210385, 0x20078243, 0x20038295, 0x2017829f, 0x2007824c, 0x200382a0, 0x200b82ab, 0x200782a2, 0x200382ac, 0x200b82ad, 0x20078277, 0x210385ae,
0x07827605, 0x0385af20, 0x82790521, 0x85b22007, 0xb7052103, 0xb6200782, 0x05210385, 0x200782b8, 0x210385ba, 0x0782bb05, 0x0385bc20, 0x82b90521,
0x85c02007, 0x83052003, 0x82c4201f, 0x2003820b, 0x201f8305, 0x200b82c6, 0x206b82c7, 0x20078273, 0x210385c9, 0x07826805, 0x0385ca20, 0x82750521,
0x85cb2007, 0x5b052103, 0xce200782, 0x05210385, 0x20078269, 0x210385cf, 0x07825a05, 0x0382d020, 0x4782d320, 0x07825d20, 0x0385d520, 0x82630521,
0x82d62007, 0x82d72003, 0x82612017, 0x82d92007, 0x82db2003, 0x826a200b, 0x82dc2007, 0x82df2003, 0x826f200b, 0x82e02007, 0x82e12003, 0x826d200b,
0x82e22007, 0x82e42003, 0x82be200b, 0x85e52007, 0xbd052103, 0xe7200782, 0xeb200382, 0xae201782, 0xef200782, 0x05210385, 0x2007825c, 0x200382f0,
0x201782f3, 0x200782b3, 0x200382f4, 0x240b82f7, 0x26000064, 0x24038210, 0x06000012, 0x20078219, 0x21038520, 0x07821c06, 0x03823020, 0x17823720,
0x07821d20, 0x03823920, 0x0b823c20, 0x07822520, 0x03854020, 0x82290621, 0x85422007, 0x2a062103, 0x60200782, 0x06210385, 0x2007822b, 0x21038563,
0x07822c06, 0x03826520, 0x3b826620, 0x07822d20, 0x2621cf82, 0x820b826b, 0x132724b7, 0x82270000, 0x2f062103, 0x70200782, 0x71240382, 0x12040000,
0xa1200782, 0x05200385, 0x27217382, 0x240b82e8, 0x040000e9, 0x82078289, 0xf12721bf, 0x5f82b382, 0x82f22721, 0x56f3200f, 0x27200523, 0x2721cb82,
0x240b82ff, 0x2b00002d, 0x20038505, 0x218f8205, 0x0b82062b, 0x17820720, 0x00002824, 0x03853a2e, 0x822a0421, 0x853b2007, 0x29042503, 0x0c300000,
0x0d200382, 0x10245f82, 0x00e00000, 0x03240382, 0x33070000, 0xa0200782, 0xa2200382, 0xff820b82, 0x82b0e021, 0x82b3200b, 0x2043820b, 0x836782fe,
0x93042503, 0x62ff0000, 0xe7820382, 0x001c0425, 0x8439d501, 0x03002603, 0xf301008f, 0x08038410, 0x51060026, 0x50000400, 0x600498ff, 0x0300c605,
0x27000700, 0x5e003300, 0x01275b40, 0x4c010504, 0x05060700, 0x80050706, 0x28087482, 0x03000803, 0x00080067, 0x06080706, 0x00050069, 0x04050904,
0x00090069, 0x0a09020a, 0x01020069, 0x00570201, 0x5f010202, 0x3509820b, 0x00004f01, 0x292b2f31, 0x1a1c2022, 0x0f101517, 0x06070a0c, 0x5e820405,
0x0c11033e, 0x172b1706, 0x25112111, 0x01211121, 0x22230614, 0x3e353526, 0x26343502, 0x07062223, 0x34260e84, 0x16323336, 0x0d821415, 0x23830886,
0x04502508, 0x035efc10, 0x01cafc36, 0x14131fa8, 0x204e481e, 0x2d1e4634, 0x160b0f1d, 0x7844761a, 0x78635b66, 0x281e1e28, 0x21080383, 0xf92e0668,
0x5e0568d2, 0x1b15a6fc, 0x04a8161a, 0x42373f20, 0x060c0a48, 0x2925141a, 0x736a6680, 0x2682ec0f, 0x2a2a202d, 0x00020020, 0x0400001f, 0x82620592,
0x000a2cf5, 0x00234026, 0x01000004, 0x82680004, 0x4d382dc7, 0x01020305, 0x4e013901, 0x090a0000, 0x07302082, 0x06111111, 0x212b1909, 0x23032103,
0x01013301, 0xc03f0782, 0x68f6fd68, 0xfabc01c7, 0xc2fdbd01, 0x01ae01d8, 0x05a9fe57, 0x049efa62, 0x0034fdc2, 0x85ffff00, 0x2307235f, 0x59832200,
0x07020025, 0x89000312, 0xff062117, 0x16211788, 0x21178afe, 0x17882807, 0x16821420, 0x06214788, 0x211788e5, 0x2f8bff0f, 0x17882920, 0x178b1120,
0x88c20621, 0x83192017, 0x21ef8317, 0xef842dfe, 0x001a2b08, 0x4065001d, 0x0301130a, 0x00010902, 0x4b4c0203, 0x585019b0, 0x06001f40, 0x06030200,
0x04006802, 0x074d3804, 0x03030205, 0x69824d39, 0x0061012a, 0x013d0101, 0x1c401b4e, 0x00252188, 0x01000100, 0x08288a65, 0x594e0328, 0x00001040,
0x1a001c1d, 0x11111a00, 0x08262317, 0x212b1b09, 0x1415020e, 0x37323316, 0x22230607, 0x34352626, 0x40413736, 0x33043109, 0x35286b62, 0x1343373b,
0x734c3c41, 0x5d8f8b3e, 0x300d4f41, 0x28464c2a, 0x8e0e312f, 0x3b5d350f, 0x01369262, 0x0b5e4133, 0x21081741, 0xe7886d07, 0xff8c1720, 0x20095f41,
0x08ff8518, 0x00e8ff30, 0x05be0400, 0x000f0062, 0x403c0012, 0x00040039, 0x05040805, 0x00080067, 0x00080600, 0x03030067, 0x02005f02, 0x004d3802,
0x5f010606, 0x01420709, 0x11122107, 0x0f213282, 0x22008511, 0x421d090a, 0x21250605, 0x21132107, 0x08038315, 0x2103012e, 0xfe45d302, 0x01c75c7d,
0x17f9028b, 0x01603afe, 0x62b2fe6b, 0x24fd5001, 0x013701ab, 0x05a8fe58, 0x40fe9a62, 0x9a2cfe9a, 0x2afdcc04, 0x8b85bb82, 0x82230721, 0x000e27bb,
0x07020000, 0x06827a12, 0x00030023, 0x20a382b4, 0x2ca38441, 0x00210018, 0x0c2c402f, 0x01030401, 0x2419824c, 0x04030504, 0x249e8267, 0x01005f01,
0x23a38201, 0x5f000505, 0x26083382, 0x214e0039, 0x212a2124, 0x1c090622, 0x0606242b, 0x21112123, 0x14150432, 0x16160706, 0x23260015, 0x32331123,
0x87123536, 0x04390808, 0x8eec9341, 0x630180fe, 0x921801d6, 0xfeb3886d, 0xbc7f86fa, 0x367b7acc, 0xd2db8399, 0xb1fca97c, 0xa162054b, 0x19987bbb,
0x029d9b17, 0x56fe63da, 0x19fe716a, 0x651dfe70, 0x356b8284, 0x75000100, 0x7604e7ff, 0x1c007b05, 0x31403400, 0x03000102, 0x05820310, 0x02011125,
0x824c0301, 0x61032721, 0x03030104, 0xa2824d3e, 0x82610221, 0x023f22ac, 0x3615824e, 0x251b001c, 0x09052426, 0x16002b19, 0x23260717, 0x15060622,
0x82161614, 0x17372198, 0x3e08b182, 0x35022422, 0x33241234, 0x57bb5003, 0x74a57a6b, 0xb4686cb5, 0x42946777, 0x8cd14863, 0x9deefead, 0xa61101a0,
0x46437b05, 0xf76e667e, 0x70f5c0c3, 0x477f373e, 0x4301a655, 0x4201e1e2, 0x85ffffa6, 0x23072593, 0x11002200, 0x03266c82, 0x85001207, 0x17880000,
0x17881e20, 0x82001522, 0xc3821f82, 0x841bfe21, 0x313008c3, 0x1b407c00, 0x0304011f, 0x0502202d, 0x06012e04, 0x02010005, 0x01010b06, 0x00010a02,
0x4b4c0601, 0x58500db0, 0x02002340, 0x02060106, 0x00010072, 0x65260282, 0x03040400, 0xe3840061, 0x0605052c, 0x06060061, 0x1b4e063f, 0x25852440,
0x9b800121, 0x59240826, 0x26150a40, 0x25132824, 0x1d090726, 0x1616052b, 0x06061415, 0x27262223, 0x33161637, 0x26343532, 0x26263723, 0x20050b41,
0x12284132, 0xe702073a, 0x73445e5f, 0x28703d46, 0x21491c39, 0x0f595675, 0xa07ee192, 0x84a61101, 0x3b0e3841, 0x6f83c646, 0x40445f09, 0x171c2f5b,
0x4f110f69, 0x18b82230, 0xca2e01b2, 0xa64201e1, 0x230c4741, 0x00045444, 0x200a2b41, 0x082b4128, 0x82001422, 0x0720178a, 0x10221788, 0x30828100,
0x9d000230, 0x58040000, 0x09006205, 0x1f001300, 0x97421c40, 0x0303210a, 0x32089742, 0x04212126, 0x002b1a09, 0x11212100, 0x12043221, 0x42022e11,
0x2e08058f, 0xfe580411, 0xfef3fe97, 0xba2f01bb, 0xd2b41e01, 0x9370ad73, 0x01e0ae95, 0x05cffe31, 0xd2fe6f62, 0xe8d8f3fe, 0xefd6fb4d, 0x00002e01,
0x82250002, 0x826c206b, 0x0d44086b, 0x3f001b00, 0x01063c40, 0x02010703, 0x67020304, 0x00050500, 0x0001085f, 0x094d3800, 0x01040401, 0x0101005f,
0x0f4e0139, 0x1a00010e, 0x16171819, 0x0f1b0e14, 0x0a0b0c1b, 0x00060809, 0x0a0d010d, 0x012b1609, 0x10208683, 0x232a9083, 0x01113335, 0x34113632,
0x94822626, 0x21152125, 0x83e00111, 0x2598858c, 0x5b018c8c, 0x9783e0ae, 0xfe300123, 0x2a9486d0, 0xcffe79fe, 0x02907a02, 0x8239fb58, 0x28a2829a,
0xfe9045fe, 0xff000021, 0x050f41ff, 0x001e0726, 0x00170022, 0x0722b382, 0x0682e015, 0xbb871782, 0x18000222, 0x01221082, 0xcb82f000, 0xcb822220,
0x29000b2a, 0x01002640, 0x01030200, 0x0023c782, 0x825f0500, 0x4d382dcc, 0x04030300, 0x0404005f, 0x114e0439, 0x10270083, 0x2b1c0906, 0x83112101,
0x3503849e, 0xbbfdfc03, 0x06fefa01, 0xcefc6b02, 0xc6042303, 0xfe9d45fe, 0x50829b2d, 0x5b846b82, 0x82230721, 0x841b2083, 0x2d122183, 0x17848385,
0x88ff0621, 0x28162117, 0xb384178a, 0x15212f85, 0x20178b2a, 0x202f8828, 0x21178b14, 0x1788e506, 0x8b290f21, 0x8807202f, 0x8c102017, 0x88292017,
0x8b112017, 0xc2062117, 0x19201788, 0x00271783, 0xfef00001, 0x8222042d, 0x001f28ca, 0x010cb56e, 0x46010102, 0x282b0698, 0x08000700, 0x67080700,
0x41060600, 0x00370727, 0x045f0100, 0x39010101, 0x0202004d, 0x03006103, 0x4e033d03, 0x8825401b, 0x0002252a, 0x65030203, 0x01253193, 0x0c40594e,
0x2c008211, 0x11262316, 0x1f090910, 0x1521252b, 0x11a94623, 0x21112123, 0x26038207, 0xb7012115, 0x467a6b02, 0x62260cab, 0x0319fe65, 0x8a411723,
0x9b9b2105, 0x290ba946, 0x05328153, 0x45fe9c62, 0x0082009d, 0x0b010126, 0x46040000, 0x0924d382, 0x20402300, 0x260aef41, 0x04005f04, 0x824d3804,
0x033922b7, 0x248b824e, 0x09051011, 0x07e9411b, 0x21112334, 0xa2fd2f04, 0xedfd1302, 0x043b03c6, 0x9b30fec6, 0x4482a5fd, 0x20083f82, 0x04e7ff54,
0x007b053f, 0x4041001f, 0x01010a3e, 0x04010b00, 0x02011701, 0x05011c03, 0x004c0402, 0x23f68204, 0x00670304, 0x61201982, 0x3e2d8082, 0x0202004d,
0x01066105, 0x053f0505, 0x2810824e, 0x111e001f, 0x26252512, 0x206d8207, 0x0b6b4404, 0x08059545, 0x33121023, 0x21113732, 0x06112127, 0xcd012306,
0x01a184f5, 0xb8839e0c, 0x883f7456, 0x68ab6953, 0x7384b1ae, 0x086e82ff, 0xd56cd925, 0x01a11987, 0x01e4ea40, 0x4f4ca342, 0x6d373b78, 0xdefec4f7,
0x013ff8fe, 0x6afd9e93, 0x0000403b, 0x8400ffff, 0xff0625ab, 0x26002200, 0x02237982, 0x823a1607, 0x21178706, 0x17882807, 0x863c1421, 0xb8fd2117,
0x2f85db84, 0xfc060324, 0x4789ec04, 0x88070721, 0x3b10212f, 0x002f2f82, 0x009d0001, 0x05130400, 0x000b0062, 0x821e4021, 0x000130f9, 0x05670104,
0x38030301, 0x0001024d, 0x43003900, 0x21270a43, 0x11211123, 0x82331123, 0x04333705, 0x16fec613, 0xea01c6c6, 0xfd8202c6, 0xfd62057e, 0x003d02c3,
0x41820200, 0xac040022, 0x2e084f82, 0x00170013, 0x08334036, 0x0b000206, 0x0a010205, 0x00670100, 0x0203000a, 0x0967030a, 0x38070701, 0x0201044d,
0x4e023902, 0x14151617, 0x86111213, 0x0c102800, 0x012b1f09, 0x82231533, 0x82212066, 0x35233403, 0x15333533, 0x01333521, 0x04213521, 0xc7999913,
0x82c718fe, 0xe8013a05, 0x0151fdc7, 0x0418fee8, 0x09fc8d84, 0x7dfd8302, 0xde8df703, 0xc3fddede, 0x064744d2, 0x28071322, 0x2b20eb82, 0x0222e482,
0x05821407, 0x01000028, 0x0000c500, 0xeb84eb03, 0x20402328, 0x01010105, 0x19825f00, 0x03218a85, 0x0946425f, 0x0610112a, 0x132b1c09, 0x11211521,
0x35200382, 0xc5340582, 0xd1fe2603, 0xdafc2f01, 0xd1fe2f01, 0xfb9b6205, 0x049c9cd5, 0x01265c82, 0xe1fe1600, 0x53823104, 0x2700142a, 0x01142440,
0x01044902, 0x26088844, 0x01010103, 0x84005f02, 0x20e084e7, 0x26578315, 0x35023e05, 0x84112111, 0x231121d6, 0x29085d82, 0x01050010, 0x52d6c281,
0xfd9730fe, 0x04bfbfe4, 0xfed8fe1b, 0x83158e8f, 0x50039dd2, 0x9999d0fb, 0xfc993004, 0xfef0fe10, 0xdb8226a5, 0x0721c384, 0x20db8223, 0x4bdb842e,
0x1784070f, 0x88ff0621, 0x070f4b17, 0x07211784, 0x20178828, 0x20358214, 0x21478700, 0x1788e506, 0xf7490f20, 0x202f8506, 0x20178807, 0x20178c10,
0x20178829, 0x21178b11, 0x1788c206, 0x17831920, 0x00010032, 0x032dfec5, 0x006205eb, 0xb562001f, 0x0203010e, 0x08078744, 0x0107222c, 0x5f080000,
0x38080800, 0x0101064d, 0x055f0201, 0x39020201, 0x0303004d, 0x04006104, 0x4e043d04, 0x001f401b, 0x03040003, 0x2b956504, 0x7b440220, 0x23162306,
0x7b441126, 0x05dc4505, 0x2d127d44, 0x21112135, 0xeb032135, 0x2f01d1fe, 0x7e44d1fe, 0x83da200f, 0x26032614, 0xd5fbc704, 0x0e7e449c, 0x2b049c24,
0x2741009b, 0x09574109, 0x2405074b, 0xff860001, 0x25df84e8, 0x40290012, 0xc7820826, 0x0127ab82, 0x02004c02, 0x825f0302, 0x4d3822cb, 0x063d4400,
0x4e003f2b, 0x23251311, 0x2b1a0904, 0x0ba94801, 0x85353621, 0xd9603e9a, 0x54c26bab, 0x478f5155, 0x65fe9a89, 0xd0016102, 0x4088dc84, 0x2a34813e,
0xed029eb1, 0x8283839d, 0x0b042e6b, 0x22002807, 0x00003900, 0x14070200, 0x34068264, 0xc3000200, 0x9c040000, 0x03006205, 0x2b000900, 0x05082840,
0x2b748202, 0x0204024c, 0x4d380101, 0x00020305, 0x4e222f82, 0x25820404, 0x09040924, 0x27820607, 0x11032008, 0x2b170906, 0x11231101, 0x01330209,
0xc6890101, 0xe9fde702, 0xfddf0402, 0x052802fe, 0x839efa62, 0xe0022703, 0x8bfd8202, 0xff8413fd, 0xb8fdc322, 0x222a6384, 0x00003b00, 0x0e070300,
0x0782d604, 0x00233a82, 0x82380400, 0x0005247b, 0x4b164019, 0x0223054c, 0x82600002, 0x00393e1b, 0x1011114e, 0x2b190903, 0x33112121, 0x22042111,
0x02c7dffc, 0xfb620570, 0x00ffff4a, 0x21378377, 0xcb822307, 0x2b823d20, 0x12070324, 0x678311ff, 0x83010121, 0x77052117, 0x02231786, 0x824c0d07,
0xffff231e, 0x7f820101, 0x22216783, 0x222f8500, 0x8aea040e, 0x8562202f, 0x0701372f, 0x57010107, 0x090061fd, 0xb80101b1, 0x35b061fd, 0x0100002b,
0x53824700, 0xa3823a20, 0x26000d31, 0x0c0d2340, 0x0607080b, 0x00080005, 0x4c4c0102, 0x238205a1, 0xed486020, 0x11152205, 0x28b08311, 0x07211101,
0x27071121, 0x3fb78237, 0xca011725, 0xfc167002, 0xbc4d6fdf, 0x503b01c7, 0x25fe8702, 0x450c02ac, 0xac02747b, 0x79c3d0fd, 0x39245f82, 0x77040000,
0x142a5f82, 0x2b402e00, 0x03070a13, 0x5a820301, 0x00030129, 0x80000103, 0x45020405, 0xcc820a44, 0x00144d08, 0x16161114, 0x1a090611, 0x2313012b,
0x34352603, 0x03230337, 0x07141516, 0x21132303, 0x29041313, 0x0827ba4e, 0xecbadc02, 0xb6210406, 0xd401014e, 0xfa6205ca, 0xa0bb029e, 0xfc2676b9,
0x72bb0345, 0xfd5d7fa7, 0xfc620545, 0x00a70359, 0xbb45bb82, 0x000f2608, 0x081a401d, 0x27ca8201, 0x0101024c, 0x034d3801, 0x2306b945, 0x04141115,
0x172a6e83, 0x23111512, 0x27012111, 0xd9823502, 0x01212208, 0xb4160536, 0xd6010701, 0xfeb41803, 0x42ab04f4, 0xfdafddfe, 0xfb620569, 0x1d012952,
0xfa9702d1, 0x455e829e, 0x23240847, 0x44002200, 0x02221082, 0xe74a1207, 0x829d2006, 0x071322f7, 0x2017881e, 0x206e8215, 0x252f8300, 0x1304b8fd,
0x17866205, 0x0e070324, 0xa785b004, 0x8452fe21, 0x001b2f17, 0x182f4032, 0x00030210, 0x03020108, 0x04820107, 0x82054c21, 0x4d382a3b, 0x03030104,
0x02004d39, 0x07274f02, 0x12151130, 0x06102324, 0x012b1c09, 0x06141133, 0xde4b2223, 0x23352206, 0x2ecc8a01, 0xa4b45f03, 0x4a658390, 0x792d3e28,
0x882ffe46, 0x62052bd5, 0xa29c2efa, 0x15187e4d, 0xde8f7d93, 0x0621d787, 0x20bf88ff, 0x2fa58218, 0x00020000, 0x04e7ff55, 0x007b055b, 0x001b000f,
0x2a068f4b, 0x01010061, 0x03004d3e, 0x82610003, 0x003f2c24, 0x2625244e, 0x1a090422, 0x8202002b, 0x02263e94, 0x36123435, 0x12163233, 0x23020215,
0x10110222, 0x12323312, 0x755b0411, 0xe7a7a6e8, 0x08058575, 0xa292cf2a, 0x9e9693a1, 0xdb0192a2, 0xafb3bffe, 0xd6d84001, 0xb0b44301, 0x01d9befe,
0xfe130117, 0xfee9feeb, 0x01edfeed, 0x00160112, 0x83849b82, 0x82230721, 0x454a209b, 0x17840cdf, 0x1785b384, 0x8407df45, 0x28072117, 0xdf452f88,
0x21178407, 0x1788e506, 0xaf450f20, 0x21178406, 0x17882907, 0x178c1120, 0x17887f20, 0x82591321, 0x218f877e, 0x1788c206, 0x0805df45, 0x55000330,
0x5b0424ff, 0x17004606, 0x29002000, 0x44404700, 0x01020115, 0x1d1e2627, 0x0c020304, 0x03000209, 0x16174c03, 0x0b4a0102, 0x4900020a, 0xd9410104,
0x4d3e2306, 0x4b410105, 0x21213e09, 0x29211818, 0x20182821, 0x262a1f18, 0x2b180906, 0x15121601, 0x23060214, 0x27072722, 0x075d4137, 0x37172108,
0x11020017, 0x01171614, 0x12122326, 0x27263411, 0x03331601, 0x757b766a, 0x3b40a6e8, 0x7549a23f, 0x42200983, 0x42080982, 0x349300fe, 0x2c260137,
0x3393a230, 0x2cdafe38, 0x56270530, 0xd5dcbbfe, 0x0eb3bffe, 0x55ea2cd1, 0xd6db4401, 0x0fb44301, 0xbffe2bda, 0xe9feebfe, 0x033de7b3, 0xaefb0bf8,
0x16011201, 0xfc3de7b8, 0x41000b07, 0xdb820583, 0x82230721, 0x415220f3, 0x0b461c83, 0x00023105, 0x04e7ff01, 0x007b05cc, 0x00260016, 0x13b04bbd,
0x3705f04e, 0x02040300, 0x090b6703, 0x00010102, 0x02070a61, 0x4d380000, 0x04040108, 0x2605494a, 0x1b4e0539, 0x8215b04b, 0x0038222a, 0x272a8a02,
0x010a6107, 0x4d3e0707, 0x9f483785, 0x24358405, 0x0505005f, 0x4f408439, 0x33200930, 0x01223a88, 0x39870909, 0xd7480020, 0x82002008, 0x2236856c,
0x87080800, 0x59592d35, 0x17171840, 0x26170000, 0x1d1f2517, 0x1523b382, 0x82121122, 0x0c113001, 0x002b1d09, 0x21072117, 0x15211316, 0x82070221,
0x06062904, 0x10112023, 0x020e3312, 0x08066a50, 0x3435364e, 0x01232626, 0x7b024bf7, 0x6b2dfe17, 0xfe28010e, 0x027809d8, 0x2970fd01, 0x56fe2543,
0x634ed5d5, 0x4d633230, 0x2f306451, 0x7b055264, 0xfe8a9a19, 0xc1fe9aca, 0x0d0c9a95, 0x5d01c702, 0x729c7001, 0xf5c7c9f6, 0xc9f47170, 0x0070f4cb,
0xd634be82, 0x60040000, 0x0a006205, 0x23001300, 0x04002040, 0x04010000, 0x380c4752, 0x01390101, 0x2124214e, 0x09052111, 0x04002b1b, 0x23112323,
0x04202111, 0x51898215, 0x23080598, 0xe2fe6004, 0x01c7acf9, 0x0102016d, 0x92a6d21b, 0xa596b6b9, 0xfed9d002, 0xd5620509, 0xfd838fd6, 0x009e84ca,
0xc7206b83, 0x5e206b82, 0x0c2f6b82, 0x34001500, 0x00003140, 0x04050107, 0x82670500, 0x02012a74, 0x06670104, 0x38030301, 0x05af494d, 0x000d0d37,
0x0d150d00, 0x000e1014, 0x110c000c, 0x09082124, 0x15012b19, 0x20778233, 0x08828214, 0x1123152f, 0x32331113, 0x26343536, 0xb88d0123, 0x16010301,
0xbef7e4fe, 0x93cec6c6, 0x0592a4a0, 0xdbdae762, 0x05fde1e8, 0xfd80fe62, 0x94a387b6, 0x397f848c, 0x04a6fe57, 0x007b05ae, 0x00230017, 0x0227402a,
0x01030001, 0x0206074c, 0x73824900, 0x6a440120, 0x442a2013, 0x0728056a, 0x0717021e, 0x2223022e, 0x08177044, 0x98865a2d, 0x22618a65, 0x9c692dc4,
0x71de9e74, 0xa7a6e675, 0x92ce75e6, 0x9592a1a2, 0x0192a29e, 0x53c1fecb, 0x67824c13, 0x498c714b, 0x443d01ad, 0x29081180, 0x01eefeec, 0x00160112,
0x00bd0002, 0x05850400, 0x000d0062, 0x402b0016, 0x01010228, 0x004c0105, 0x00010005, 0x00670105, 0xdd480404, 0x46022006, 0x212f0561, 0x11112124,
0x1c090613, 0x0706002b, 0x41012301, 0x2e08119a, 0x0193b43b, 0x95feeb91, 0x6f01c7ab, 0x0b010401, 0xb99a91d3, 0x039693bb, 0xfd26c247, 0xfd4502a1,
0xc56205bb, 0xfe727dc2, 0x00867912, 0x85ffff00, 0x2307257f, 0x59002200, 0x840c7b43, 0x1e072197, 0x15201788, 0x2f841d82, 0x84b8fd21, 0x242f85af,
0x040e0703, 0x371982b1, 0xff4d0001, 0x053b04e7, 0x002c007b, 0x1e29402c, 0x01030607, 0x1d4c0103, 0x4b290482, 0x02030300, 0x02020061, 0x0ba2493e,
0x252e2522, 0x5205d645, 0x6c080a4b, 0x34353636, 0x2e272626, 0x36343502, 0x16323336, 0x26260717, 0x15062223, 0x17161614, 0x0415021e, 0xa0e77a3b,
0x7159f99b, 0x5377bc4b, 0x7e34538b, 0x66c19574, 0x8d84d175, 0x476e5ada, 0x95735aa9, 0x7f848f3e, 0x080168ad, 0x565e68b9, 0x364b467f, 0x59424e6d,
0x682c2246, 0xa46a6a96, 0x7c50515c, 0x5d633d3f, 0x2744503a, 0x7ca36025, 0x84cb8300, 0x20fb84b3, 0x20fb855d, 0x2106820f, 0xcb85ffff, 0x1785fb84,
0x820c1521, 0x82002017, 0x1bfe21e3, 0x413ee384, 0x1a407b00, 0x031b1c33, 0x03040604, 0x0f030202, 0x0e020101, 0x04010001, 0x0601324c, 0x82534b01,
0x01032208, 0x09825303, 0x05060628, 0x05050061, 0x8c534d3e, 0x033f2107, 0x83058253, 0x09825325, 0x59322693, 0x2e250a40, 0x25131125, 0x1d09072a,
0x0606002b, 0x86531507, 0x05b44715, 0x22204741, 0x538cc969, 0x86220f93, 0x574150d9, 0xb111241f, 0x53580b6c, 0xb1230da0, 0x414d5c09, 0x4f411f69,
0x00282308, 0x4f410022, 0x0c142105, 0x25066741, 0x3b04b8fd, 0x17867b05, 0x0e070324, 0x1882aa04, 0x8500012c, 0x9104f3ff, 0x25008705, 0xdd453701,
0x02153705, 0x19050301, 0x04030418, 0x010e0302, 0x010d0201, 0x4c040100, 0x1791401b, 0x17820420, 0xb04b5929, 0x4058500a, 0x4102001f, 0x0321065a,
0x05034603, 0x2a068142, 0x00000104, 0x1b4e0039, 0x9f0cb04b, 0x843f2026, 0x9f102026, 0x204d8526, 0x85269f13, 0x4617204d, 0x9b9105ae, 0x39040422,
0x83082243, 0x23402151, 0x258bc193, 0x59205082, 0x40370083, 0x0000000e, 0x12240025, 0x29251424, 0x2b1b0907, 0x15171600, 0x4c110401, 0x56080dff,
0x35272634, 0x23262601, 0x23111120, 0x36363411, 0xf4c90233, 0x01a3fe7c, 0x81c76fb5, 0x3b2b7b4b, 0x78334c24, 0x01d3c988, 0x54994f5a, 0x67c2fefe,
0x87058dc7, 0xfe6a4248, 0xa8fe3582, 0x1a5fb77f, 0x0f0e8517, 0x88897d81, 0x85017c0c, 0xf0fe2622, 0xd3032dfc, 0x8264be85, 0x0100337a, 0x00004a00,
0x62056704, 0x1b000700, 0x01021840, 0x964d0000, 0x01392c09, 0x1111114e, 0x1a090410, 0x8221012b, 0x3521327a, 0xfe520421, 0x58fec666, 0xbd041d04,
0xbd0443fb, 0x2f438da5, 0x402f000f, 0x0101052c, 0x03020104, 0x06670201, 0x07264d82, 0x0701085f, 0x7b523807, 0x212e8206, 0xdc58000f, 0x09092907,
0x07012b1d, 0x15211121, 0x23085c86, 0x04352111, 0x66fe1567, 0xfdfe0301, 0x01fffec6, 0x0558fe01, 0x82fea562, 0x0250fd8f, 0x7e018fb0, 0xffff00a5,
0x0724af85, 0x0022001e, 0x0223c083, 0x86fe1507, 0x1bfe2183, 0x1d29c784, 0x3a403d00, 0x00030102, 0x2184820d, 0x0482010c, 0x03004c28, 0x03000200,
0x05828002, 0x0102012e, 0x05010765, 0x005f0605, 0x4d380606, 0x82065142, 0x13112ae5, 0x08102725, 0x212b1e09, 0x14a34323, 0x9c822320, 0x21072125,
0x4322b802, 0x10250e81, 0x0458fe24, 0x57b5821d, 0xc8240e03, 0xa5a5bd04, 0xfd21af83, 0x859784b8, 0x070324af, 0x82ae040e, 0x000137b0, 0x04e7ff87,
0x00620529, 0x401b0012, 0x01010318, 0x004d3801, 0x3d4b0202, 0x23122207, 0x0b094f14, 0x35262b08, 0x14113311, 0x11203316, 0x29043311, 0x908fd371,
0x85c66ed1, 0xc80b0184, 0xd78cc101, 0x8dd67777, 0x6efca103, 0x4401a2a2, 0x73829203, 0x07255b84, 0x00220023, 0x0c1b4669, 0x06211784, 0x4b1788ff,
0x1784071b, 0x88280721, 0x82142017, 0x87002035, 0xe5062147, 0x1b4b1788, 0x202f8507, 0x20178829, 0x061b4b11, 0x7f201785, 0x1b4b1788, 0x21178407,
0x1788c206, 0x33051b4b, 0xfe870001, 0x0529042d, 0x00240062, 0x0e18b64c, 0x01040102, 0x3c068455, 0x00040019, 0x01040001, 0x00010380, 0x004d3800,
0x62020101, 0x3d020200, 0x401b4e02, 0x821b8716, 0x01022321, 0x22846602, 0x594e0027, 0x231b23b7, 0x05d8542a, 0x14113324, 0xe5500706, 0x022e2111,
0x27084641, 0xa7c86103, 0x26665d95, 0x3409115c, 0xab785251, 0x8485c65a, 0x62050b01, 0xf1ab5ffc, 0x454a292a, 0x07115c27, 0x2f784b26, 0x7fc87e10,
0x41076441, 0x0721081b, 0x20d3886d, 0x0b034117, 0x4a0a6341, 0x012605fb, 0x00002900, 0xeb828704, 0x2100062d, 0x01011e40, 0x4c010001, 0x86020203,
0x392808dd, 0x00004e01, 0x06000600, 0x09041211, 0x01132b18, 0x23013301, 0x5e01fe01, 0xfec96201, 0x3dfed83d, 0x6dfb6205, 0x9efa9304, 0x20059755,
0x204b8207, 0x2c0a82a9, 0x4028000c, 0x04090c25, 0x01040103, 0x0d32414c, 0x62820220, 0x12225582, 0xec551211, 0x03332306, 0x02820323, 0x1313333a,
0xf4031333, 0x95f6cab5, 0xc3bafc97, 0x95e09d83, 0x9efa6205, 0xf9fb0704, 0x6b246382, 0x0bfcf503, 0xff228982, 0x638400ff, 0x82230721, 0x427520df,
0x17850c43, 0x17882820, 0x84072b42, 0xe5062117, 0x0f201788, 0x84060f41, 0x29072117, 0x11201788, 0x2006f752, 0x20c38235, 0x08c3827b, 0x1f000b24,
0x06091c40, 0x00020303, 0x01014c01, 0x4d380000, 0x02020103, 0x124e0239, 0x04111212, 0x012b1a09, 0x02843301, 0x01232708, 0xdf012301, 0x01e07afe,
0xd521011f, 0xb0017dfe, 0xfeb9fee0, 0xde02d5b6, 0xfdfd8402, 0x86fd0302, 0x5f0218fd, 0xae82a1fd, 0x00010023, 0x205f8225, 0x335f828b, 0x40230008,
0x01040720, 0x01010003, 0x0202034c, 0x4d380101, 0x39222182, 0x05824e00, 0x08000827, 0x09041212, 0x22638218, 0x83112311, 0x8b043967, 0xfec831fe,
0x5c01db31, 0x62056001, 0xeffdaffc, 0x53030f02, 0xa2025efd, 0x22065f59, 0x8223078b, 0x417b20cb, 0x09200513, 0x22097759, 0x8828078b, 0x06142117,
0x0621178a, 0x211788e5, 0x178a050f, 0x88290721, 0x83112017, 0x20b38217, 0x20b38284, 0x2cb3822a, 0x40290009, 0x02010026, 0x01010503, 0x0c2b5300,
0x01000022, 0x2206775a, 0x41111211, 0x213f061d, 0x01352107, 0x04213521, 0x023afd29, 0x71fc17c7, 0x7bfdcd02, 0xc3045d03, 0x9ea8e5fb, 0x85a51f04,
0x845b8473, 0x858020bb, 0x8b2620bb, 0x821e2017, 0x2117858b, 0x178b2315, 0x17880720, 0x5b221021, 0x38200bbb, 0x2208a35b, 0x5ac8001c, 0x13210893,
0x51178307, 0x1c210503, 0x4f2f8547, 0x17830547, 0x21058f4f, 0xab49461c, 0x4817830b, 0x1c21055b, 0x83778b52, 0x218f8517, 0x1782691c, 0x02002f08,
0xe7ff7e00, 0x37041b04, 0x29001e00, 0x40404300, 0x03020119, 0x02010118, 0x05020621, 0x02030404, 0x4c040500, 0x04000100, 0x67040105, 0xa4590200,
0x4d412505, 0x05050106, 0x08075245, 0x1f1f1f21, 0x26281f29, 0x28252324, 0x2b1b0907, 0x17161425, 0x06272607, 0x26222306, 0x24343526, 0x62353333,
0x27290518, 0x16323336, 0x37360015, 0x05c34a35, 0x03334408, 0x2d2c27c8, 0xad382f9d, 0x539b6968, 0x99f10101, 0x9038777d, 0xacb7314d, 0x8dfecec8,
0xa18c2c88, 0xf2606192, 0x840e3b3d, 0x4c487f14, 0xa4629451, 0x606950b1, 0x458c1b1b, 0x9afda4b6, 0x6dff444c, 0x855f5d66, 0x25c384db, 0x22004606,
0x10828b00, 0x03070223, 0x20178bf0, 0x2017881c, 0x20178c07, 0x20178833, 0x21178b05, 0x1788f405, 0x2f8c0020, 0x17883520, 0x2f8c0220, 0x1788d120,
0x17830a20, 0x02003108, 0x15fe7e00, 0x37041b04, 0x3c003100, 0x47404a00, 0x05040128, 0x04030127, 0x0702153c, 0x02133106, 0x01090702, 0x4c050200,
0x06000300, 0x67060307, 0x0132ac82, 0x00650100, 0x61050404, 0x41050500, 0x0707004d, 0x785f6102, 0x27242c05, 0x2a252324, 0x09082623, 0x45052b1e,
0x6841117a, 0x14112419, 0x41011716, 0x32240669, 0xee033736, 0x230c7c56, 0x1a3c948e, 0x2f137841, 0xeefe2c27, 0x6192a18c, 0x2c884a60, 0x464c2a18,
0x2408bb61, 0x24379363, 0x0f864148, 0x3d15fe2e, 0x9a010e3b, 0x5f5d666d, 0xffff444c, 0x21054b42, 0x0f417c06, 0x41082008, 0x0e200c3f, 0x09201788,
0x66081783, 0xf4ff0300, 0xbb04e7ff, 0x2c003704, 0x41003500, 0x61406400, 0x06050124, 0x04022329, 0x0b123f05, 0x0c000103, 0x04010201, 0x0e04004c,
0x04000a01, 0x0800690a, 0x08010000, 0x090d6700, 0x06050502, 0x02070c61, 0x4d410606, 0x0101010b, 0x01036102, 0x023f0202, 0x2d36374e, 0x3d00002d,
0x3741363b, 0x2d352d41, 0x82303134, 0x242b315c, 0x25242522, 0x090f1422, 0x12002b1d, 0x21071415, 0x410ab660, 0x98080941, 0x35333336, 0x06222334,
0x33362707, 0x36171632, 0x020e3336, 0x022e2107, 0x06220123, 0x33161415, 0x26373632, 0xa8130435, 0x0eeffd04, 0x58366569, 0x88405435, 0x38946a53,
0x5c63833e, 0xd1d84b89, 0x5732b659, 0x7e933243, 0x20217e6d, 0x4b405f85, 0x6501082a, 0x404b2102, 0x70824bfe, 0x5e3d404b, 0x37041630, 0x3bfbf2fe,
0x25a2ae24, 0x37347a28, 0x5567605c, 0xa6619551, 0x18cf50af, 0x5744871e, 0x95595153, 0x717a903f, 0x64fe498f, 0x645e646a, 0x726e5b55, 0xff000000,
0x052741ff, 0x00460625, 0x82950022, 0x07022310, 0x06820f03, 0x0002002f, 0x04e7ffbf, 0x00dd0531, 0x001c0010, 0x05194c7a, 0x18191133, 0x03040300,
0x0401010c, 0x0f104c02, 0x1b4a0002, 0x20138840, 0x20138702, 0x252c8559, 0x03030017, 0x4b826100, 0x054d4131, 0x01040401, 0x01010261, 0x4e013f01,
0x891b401b, 0x02002319, 0x1e863902, 0x1d840020, 0x0d405936, 0x1c111111, 0x12261b11, 0x09062225, 0x36012b1a, 0x12323336, 0x08055c4b, 0x23072749,
0x36003711, 0x22231035, 0x16110706, 0x7f013316, 0xca589739, 0x85bc61c0, 0xa90c66b5, 0x855f01c0, 0x2f7e4ceb, 0x03447429, 0xfe524b9a, 0xa2fbfede,
0x6b848dfa, 0xfa17c605, 0x01cac8a1, 0xfe475b90, 0x00453d02, 0x82b00001, 0x041133db, 0x00190037, 0x0f314034, 0x10010201, 0x02030201, 0x98820102,
0x92824c20, 0x82610121, 0x4d41228c, 0x0acd5304, 0x1923c782, 0x62231800, 0x242005a3, 0x21059462, 0x3b4f2626, 0x09b06205, 0x03332e08, 0x465c8332,
0xe29d61c4, 0x9ce57877, 0x855b99cd, 0x4b875a85, 0x5c8989a2, 0x87463b7d, 0xfda0a5f7, 0x5c7d7c90, 0xc485b358, 0xff0000bd, 0x2d8785ff, 0x22003406,
0x00009800, 0x03070601, 0xe557ee58, 0xeeff2405, 0x822b35b0, 0x20238873, 0x20238821, 0x20238f06, 0x22cf8200, 0x83041bfe, 0x002e35cf, 0x1e3c403f,
0x2a030401, 0x0405021f, 0x03002b2e, 0x010b0502, 0x2905ad62, 0x05004c05, 0x05010200, 0x30826902, 0x2b0ba762, 0x254e0441, 0x25132823, 0x1c090626,
0x50157262, 0xe88a0724, 0x17373227, 0x02070606, 0x0e584bd1, 0xbc830f23, 0x24f98d61, 0xa93f5c83, 0x0e664b58, 0x8e12b524, 0x0b4195e8, 0x7d5c240a,
0x41074335, 0xeb89090f, 0xeb8f0520, 0x20080f41, 0x080f4104, 0x238f0120, 0x00020027, 0x03e7ff7f, 0x06bb42f1, 0x11406033, 0x02040110, 0x03041819,
0x4c020403, 0x02020001, 0x06a1424a, 0x04010525, 0x82610204, 0x57412010, 0x01200504, 0x2106ab4e, 0x198b1b40, 0x39000022, 0x01211e83, 0x0fa14261,
0x1223252f, 0x2b1a0906, 0x23111701, 0x23060627, 0x064a5122, 0x43041721, 0x370805d1, 0x26261137, 0xc0310323, 0x973810a9, 0x64c9c65b, 0x69aa80bb,
0x7a85a1fe, 0x2a678e75, 0xdd054473, 0x873afa17, 0x28015050, 0x8efba0ff, 0xc9c91f78, 0x029fc6c9, 0x00423d03, 0x2108bf82, 0x04e7ff7d, 0x00130631,
0x002e001e, 0x192c402f, 0x01010201, 0x1c1d1e4c, 0x05060708, 0x01090203, 0xc682004a, 0x02010323, 0x0abb5769, 0x262a2624, 0x8e83042e, 0x37272628,
0x17371716, 0x35431607, 0x08a64206, 0x27262626, 0x27002707, 0x22209582, 0x08085e65, 0xdf01355a, 0xbb298a57, 0x796f8c6f, 0xda77aab4, 0x7bd48292,
0xbe72c474, 0x5d821d76, 0x29028595, 0x5b973005, 0x43467749, 0x99894f79, 0x1c290805, 0x95382790, 0xfe7a7d61, 0xa6e2fe76, 0xe0758afc, 0x7ce0909a,
0x44c47984, 0xfbfd429a, 0x494d4836, 0x9f717096, 0x00c5d050, 0x4200ffff, 0xe537c382, 0x2200dd05, 0x00c39e00, 0x0d070701, 0x64001002, 0x02b10800,
0x4264b001, 0x022105dc, 0x20e78300, 0x3623828d, 0x00240018, 0x111140ac, 0x24030701, 0x08030519, 0x174c0207, 0x41050216, 0x233206a7, 0x00000104,
0x06095f05, 0x38050502, 0x0707004d, 0xf7826103, 0x004d4126, 0x61010808, 0x2706334b, 0x17b04b1b, 0x27405850, 0x01222a97, 0x2f833901, 0xf9460220,
0x401b2206, 0x824e8325, 0x0503232d, 0x528a6700, 0x593a278e, 0x00134059, 0x1d212300, 0x0018001b, 0x25121118, 0x0a111123, 0x012b1c09, 0xf4412315,
0x2135210e, 0x17230182, 0x53260315, 0x33250645, 0x8d043732, 0x0cfb419e, 0x4701b932, 0x732ac0c0, 0x7a857e44, 0x05678e75, 0x56fb8e38, 0x08090042,
0xa58eeb24, 0xe9fd8e17, 0xc9c9423d, 0x009fc6c9, 0xff920002, 0x041f04e7, 0x00190037, 0x40400020, 0x0001073d, 0x594a0803, 0x06042b05, 0x04000301,
0x01076703, 0xd0840505, 0x004d4125, 0x42010000, 0x1a29069f, 0x1a00001a, 0x1d1f1a20, 0x2d3a821c, 0x23252619, 0x2b190908, 0x33021e01, 0xb6443632,
0x1616280d, 0x00071415, 0x82210706, 0x013d08b2, 0x8451055a, 0x47834d52, 0x67c24b57, 0x7374de9c, 0xc6878ed5, 0xdafd046a, 0x0c020a91, 0x01758403,
0x479570ce, 0x3c79302e, 0xa5f98944, 0x7e8ffb9f, 0x322ea0eb, 0xa2a5d301, 0xff00a89f, 0x25ab85ff, 0x22004606, 0x4346a200, 0x82142005, 0x20178806,
0x2017881c, 0x20178c07, 0x20178833, 0x20179606, 0x21178b05, 0x2f88f405, 0x2f8c0020, 0x17881620, 0x178c0120, 0x17883520, 0x478c0220, 0x1788d120,
0x17830a20, 0x0002003c, 0x042dfe92, 0x0037041f, 0x0032002b, 0x090c4074, 0x1f000101, 0x02030a15, 0xdb4e0201, 0x00262206, 0x3b268201, 0x07800201,
0x00000601, 0x67000601, 0x04050500, 0x04040061, 0x02004d41, 0x00620302, 0x20065e64, 0x25289123, 0x02030002, 0x2f886603, 0x594e0537, 0x2c2c0f40,
0x322c322c, 0x2b232d26, 0x09081123, 0x07002b1c, 0x07a14121, 0x5515034f, 0x162105a4, 0x05bd4315, 0xad820720, 0x413ffd21, 0x582407b2, 0x276a6076,
0x2409144f, 0xc78c5c5e, 0x05c04167, 0x8403b929, 0x0a917575, 0x41320002, 0x472405be, 0x464c2922, 0x2608204f, 0x0b2a794c, 0x419bf08f, 0x2c2405ce,
0xa2a5a89f, 0x0033da82, 0x040000b6, 0x00dd0560, 0x405d0017, 0x0001020a, 0x82010306, 0x4b4c27fb, 0x58501ab0, 0x28521b40, 0x00002909, 0x07610600,
0x3a060601, 0x22062752, 0x4119401b, 0x6920071d, 0x0323268a, 0x83033903, 0x232f82f2, 0x11160017, 0x13210082, 0x68f28424, 0x152306bf, 0x63072115,
0xe583070d, 0x8d032608, 0x643c4390, 0x016a6c7e, 0xb1fe1564, 0x64f7f7bf, 0xdd0572b3, 0x2c8a1d1e, 0x92ca5754, 0x3d03c3fc, 0x9361c992, 0x3b4e8251,
0xfe780002, 0x045d0455, 0x003c0098, 0x40160148, 0x020c310b, 0x4c010801, 0x4a07013c, 0x08059554, 0x00003830, 0x00070907, 0x04008009, 0x04060506,
0x08008005, 0x08020100, 0x010a6901, 0x61070909, 0x41070700, 0x0202004d, 0x06005f06, 0x004d3906, 0x27660505, 0x05ae5408, 0x37903120, 0x82020921,
0x23389d52, 0x40585020, 0x402178b9, 0x27b39736, 0x06000200, 0x67060204, 0xb189bb8b, 0x5959593c, 0x3d3d1240, 0x473d483d, 0x23342c28, 0x25372513,
0x1f090b12, 0x0606012b, 0x456a1623, 0x06062807, 0x33161415, 0x82163233, 0x23042611, 0x35262622, 0x05656b33, 0x26343523, 0x220f8423, 0x46373634,
0x3623072f, 0x84043736, 0x05085a2f, 0x5d047208, 0xbb66913d, 0x317cb762, 0x1c172146, 0x6bbb4c3d, 0xf5fe62ad, 0x55c7acf7, 0x717b2fad, 0x657b99a7,
0x3c7c5bb9, 0x575c383c, 0x7c7dc36d, 0xfd4a74a9, 0x757977ab, 0x6e707169, 0x0e13ee03, 0xa368b654, 0x100a095b, 0x2d271c34, 0x9d51844c, 0x6f8c46a9,
0x52254a3e, 0x364b4553, 0x6234375b, 0x668e3125, 0x175ea86b, 0x7fe92327, 0x7b7f6b6a, 0xff757271, 0x05df41ff, 0x001c062c, 0x00ad0022, 0x07020000,
0x5744f507, 0xfe782605, 0x065d0455, 0x20178833, 0x21178305, 0x2f860300, 0x0e006639, 0x57004b00, 0x0f404e01, 0x00010108, 0x0109014b, 0x03021b40,
0x424c030a, 0x40080515, 0x09020041, 0x0b02090b, 0x08060080, 0x07060807, 0x0c000080, 0x00090101, 0x0a006901, 0x0a040300, 0x010d6903, 0x61090b0b,
0x41090900, 0x0404004d, 0x08005f08, 0x004d3908, 0x61050707, 0x3d050500, 0x07cd5605, 0x40993a20, 0x02020b23, 0x23419e02, 0x40585020, 0x40218ac2,
0x27cea03f, 0x08000400, 0x67080406, 0xcc89d68b, 0x59593708, 0x4c224059, 0x4c00004c, 0x52564c57, 0x3a464850, 0x2e313337, 0x23282a2d, 0x12171920,
0x000e0011, 0x090e160d, 0x26002b17, 0x37363435, 0x16073337, 0x06141516, 0x58420523, 0x16022d47, 0x63120f43, 0x19163a70, 0x16023243, 0x2e376442,
0x3142a904, 0xd326361b, 0x1d3211ea, 0x42bb4231, 0x00213471, 0x08734200, 0x5b421620, 0xf5012208, 0x3c008200, 0x00bf0001, 0x05f30300, 0x001300d9,
0x0f244027, 0x02010200, 0x12134c01, 0x004a0002, 0x05015602, 0x034d4122, 0x2505bf53, 0x22132313, 0xba4c0904, 0x15162406, 0x50112311, 0x088205a4,
0x01372708, 0x5faf3e7f, 0x51c09395, 0x308d4e58, 0x9503c0c0, 0x96a2534f, 0xee0201fd, 0x4662565e, 0xc40506fd, 0x01000015, 0x6b862300, 0x66001b29,
0x0b180c40, 0x84010002, 0x4a04216b, 0x2c05e548, 0x0301061e, 0x055f0403, 0x38040401, 0x261b824d, 0x01086107, 0x68410707, 0x1b2207d3, 0x1a821c40,
0x07232382, 0x91670304, 0x4059221e, 0x26d08210, 0x111a001b, 0x82111113, 0x090924ab, 0x8d002b1d, 0x35232ea6, 0x15373533, 0x11211521, 0x03333636,
0x26ae8760, 0x01c09c9c, 0x82b7fe49, 0x370421c1, 0x042ab58b, 0x158c8eaa, 0xebfe8ea1, 0x5982534f, 0x41ffff21, 0x0731052b, 0x0022008c, 0x010000b2,
0x00140706, 0xb1080064, 0x06f94901, 0xe600022e, 0x0c040000, 0x0b001606, 0x62001500, 0x20055946, 0x32398221, 0x01076101, 0x4d400101, 0x02060600,
0x0202005f, 0x84054d3b, 0x040028e8, 0x4e043904, 0x821f401b, 0x0000251e, 0x69000102, 0x592e2195, 0x00001440, 0x12131415, 0x0e0f1011, 0x5e820c0d,
0x08240a25, 0x822b1709, 0x741420dd, 0x4d67073a, 0x352a0805, 0x02211121, 0x3b4a4a93, 0x3a4a4a3a, 0xf70198fe, 0xdafc2501, 0xc9fe4101, 0x36491606,
0x384a4a38, 0x08fe4936, 0x929274fc, 0xc082fa02, 0x0427af85, 0x0009001e, 0x821e4021, 0x5f00218d, 0x3b22ad82, 0x0269034d, 0x0510250e, 0x132b1b09,
0x20085769, 0x215689f0, 0x4c851e04, 0x85ffff21, 0x4606254b, 0xb6002200, 0x02234482, 0x41020307, 0x13410533, 0x881c2005, 0x8c072017, 0x88332017,
0x8b052017, 0xf4052117, 0x00201788, 0x16202f8c, 0x01201788, 0x3520178c, 0x02201788, 0x00371783, 0xfe5d0003, 0x06080455, 0x000b0016, 0x002c0017,
0x1b1cb47a, 0x41490602, 0x25220593, 0xfd820102, 0x030b6133, 0x0101030a, 0x01084d40, 0x5f090404, 0x3b090900, 0x088e594d, 0x4e063925, 0x8423401b,
0x232c8221, 0x69000109, 0x59382596, 0x0c0c1e40, 0x2b2c0000, 0x2728292a, 0x23242526, 0x170c2122, 0x1012160c, 0x0a227882, 0xa5410c24, 0x1620220e,
0x08b14115, 0x00141324, 0x566a2707, 0xaa012a0e, 0x3a3a4b4b, 0x023a4a4a, 0x3008864d, 0xf8ebfe74, 0x6ba8793b, 0xfdb18ffe, 0x03a9b3e2, 0x09c94190,
0x3307d141, 0xfeda6dfa, 0x2d934ffb, 0x036b9660, 0x9202fd1a, 0x8efe0292, 0x210a7b41, 0x1b41d105, 0x020a2208, 0x24008200, 0xfee60002, 0x06a7422d,
0xb4002927, 0x040118b5, 0x07ec5803, 0x010a2c26, 0x61000101, 0x40242582, 0x0808004d, 0x29081641, 0x5f030202, 0x03030106, 0x71534d39, 0x052e4607,
0x58501a2b, 0x04002940, 0x05040500, 0x273a9f65, 0x401b4e03, 0x0a000027, 0x85069346, 0x27649434, 0x59594e03, 0x00001a40, 0x23075241, 0x15171a1c,
0x2008f942, 0x07b3450b, 0x16323329, 0x23061415, 0x75152113, 0x2123126d, 0x82112135, 0x1e022d03, 0x3b3a4a4a, 0x8f3b4b4b, 0xdbfe2501, 0x360cce53,
0xd0fe6562, 0xc9fe4101, 0x1505f701, 0x4936384a, 0x4a383649, 0x6a927dfb, 0x92250e53, 0x0092fa02, 0x08df4200, 0x4b410e20, 0x41092008, 0xb731064b,
0x830355fe, 0x0b001606, 0x4c001900, 0x021011b4, 0x06654202, 0x00001626, 0x04610100, 0x2005f943, 0x05616a02, 0x4e023b25, 0x8214401b, 0x00002513,
0x69000103, 0x8207786a, 0x40592716, 0x1900000e, 0x48831718, 0x05240a22, 0x230e3742, 0x04061413, 0x23062c42, 0x19032135, 0x3a30cf82, 0xa53a4949,
0xe1d2fe9e, 0x80e5a71f, 0x6d0253fe, 0x2c091742, 0xf9b5aafa, 0x1d942796, 0x028bb76b, 0x21bc82d9, 0xa3840001, 0x001e042c, 0x4018000d, 0x02040515,
0x9b834900, 0x01005f2d, 0x4e003b01, 0x09021a11, 0x8c252b18, 0x8b832061, 0x8dc02059, 0xffff214e, 0x04274f83, 0x0033062f, 0x82c20022, 0x07032448,
0x82880005, 0x00022a07, 0x040000c8, 0x00dd0578, 0x05514403, 0x02060922, 0x4c256282, 0x01020001, 0x2008824a, 0x07c8453b, 0x11122a08, 0x19090312,
0x1137132b, 0x01330123, 0xc8012301, 0x9102c0c0, 0x013afeed, 0x15fef3f8, 0xfa17c605, 0xfe1e0423, 0x02bbfd27, 0x82568240, 0xfdc8226f, 0x225784b8,
0x82c40022, 0x06032410, 0x84b904fc, 0x82bf206f, 0x826f206f, 0x226f83d7, 0x821b401e, 0x0001276f, 0x01024c01, 0xc4440000, 0x01392405, 0x5e11124e,
0x13210534, 0x206c8733, 0x2b6c83bf, 0x0137feec, 0x15fef4fc, 0xe2fb1e04, 0x22246b82, 0x3302c0fd, 0x00305282, 0xff6f0001, 0x05f703e7, 0x001100c6,
0x050a4048, 0x0620bb82, 0x200a274c, 0x07b14115, 0x9a4e3a20, 0x401b220b, 0x24f28213, 0x02030002, 0x0ab04e67, 0x11b65924, 0x30472414, 0x16142305,
0xa44e3233, 0x11230808, 0x02213521, 0x534f5970, 0x8431325a, 0x4f92634e, 0x0102bffe, 0x43481001, 0x20198924, 0x04608c4b, 0x82009216, 0x2f8784f3,
0x2200ee07, 0x0000c700, 0x03070701, 0xa801b7ff, 0x24054553, 0x35b0a801, 0x2123882b, 0x2388db05, 0xdf000d22, 0x840c9146, 0xb8fd2123, 0x4784cf84,
0x06030026, 0x002705fc, 0xff231784, 0x82e904e7, 0x821784e7, 0x0201245f, 0x8566fd0d, 0x66fd215f, 0x0b415f83, 0x0019310a, 0x190e404c, 0x10111213,
0x08090a0b, 0x01010309, 0x2206374d, 0x6f010015, 0x3a20052c, 0x2a0b6e69, 0x0013401b, 0x03010002, 0x51670102, 0x592a0ac8, 0x181127b6, 0x1a090422,
0xe858252b, 0x07113306, 0x21113727, 0x37112135, 0x14110717, 0x37323316, 0x1241f703, 0x7f420805, 0xbffecd4e, 0x4eac0102, 0x534f59fa, 0x2019205a,
0x01608c4b, 0x7c784e36, 0xfd923a02, 0x99786aab, 0x434846fe, 0x00000024, 0x005d0001, 0x04530400, 0x00210037, 0x1e0c405c, 0x05010219, 0x00020b14,
0xa1820201, 0x58501324, 0xac821640, 0x61050136, 0x03060708, 0x4d3b0505, 0x00020204, 0x4e003900, 0x001a401b, 0x1d830f83, 0x1d820620, 0x06060223,
0x481c8841, 0x21290549, 0x11232000, 0x24122412, 0x0b494813, 0x22232628, 0x11231107, 0x08862634, 0x36173325, 0x83323336, 0xe2032904, 0x2109af71,
0xa84d5f22, 0xaf380584, 0x6a320c94, 0x302a9148, 0x37044b6d, 0xf0fca582, 0x4545f402, 0xd4fc7523, 0x04270787, 0x4a45761e, 0x82474289, 0x00bf24c3,
0x82f30300, 0x001429c3, 0x0313b64d, 0x01030202, 0x1332bd86, 0x00030300, 0x00010161, 0x054d3b00, 0x02020204, 0xba820239, 0x83001721, 0x251a820f,
0x01006101, 0x19884101, 0x0d405922, 0x142c1982, 0x13241400, 0x09061123, 0x11332b1a, 0x05499e85, 0x08b28206, 0x11070623, 0x400ea5bf, 0x93955fba,
0x484818c0, 0x04308d4f, 0x584f8e1e, 0x01fd96a2, 0x746d8902, 0xfd466138, 0x0aeb4805, 0x00460625, 0x47ce0022, 0x058205cf, 0x0200002c, 0x0000ffff,
0xe3050804, 0x19820d00, 0x7054b020, 0x080b2d05, 0x21010001, 0x05040211, 0x401b4c02, 0x03200d82, 0x33570d87, 0x491e2006, 0x3a240804, 0x0505004d,
0x24057958, 0x06084d3b, 0x05014902, 0x20059647, 0x22258b22, 0x4e3b0202, 0x412008b8, 0x40212989, 0x072b4920, 0x95006721, 0x59593322, 0x0e0e1840,
0x220e0000, 0x1d1f220e, 0x13151819, 0xac820f10, 0x09160c34, 0x122b1709, 0x06141516, 0x37230707, 0x36343526, 0x1e411333, 0x43af2a13, 0x6d521f15,
0x32453139, 0x0d284156, 0x41e3052e, 0x403f1b31, 0x362ae5ab, 0x1dfa4230, 0x201d3741, 0x08374133, 0xd5820620, 0xffff002a, 0xb8fdbf00, 0x3704f303,
0x03241786, 0xb204fc06, 0x01241982, 0x57febf00, 0x1c301784, 0x0c404800, 0x01021116, 0x054c0100, 0x49010204, 0x20055b41, 0x41248211, 0x0028072f,
0x01390101, 0x15401b4e, 0x0022fa85, 0x30540300, 0x2d178406, 0x1123b659, 0x09042d13, 0x14252b1a, 0x2d460606, 0x26342105, 0x2005f341, 0x2fe98823,
0x8948f303, 0x554e4777, 0x4948182c, 0xc0308d4e, 0x4332e386, 0x346eb694, 0x7d46248c, 0x6e52026d, 0x46623774, 0xe08606fd, 0x6a82bb84, 0x0e06f322,
0x0920d388, 0x00289482, 0x89000200, 0x2704e7ff, 0x0f2ad382, 0x2c001b00, 0x01052940, 0xf1460303, 0x4d412105, 0x330a3f62, 0x00001010, 0x1a101b10,
0x0f001416, 0x06260e00, 0x002b1709, 0x58087a66, 0xc04f056b, 0x05904f05, 0xcfef022f, 0x93d16b69, 0x6c6ad095, 0x838394d1, 0x2c028281, 0x37048181,
0xa5a9f787, 0xf8878bf9, 0x2a0582a8, 0xcaccc499, 0xcacbc5c4, 0x85ffffc4, 0x46062183, 0xd5209b82, 0x8809a742, 0x881c2017, 0x41072017, 0xb3840687,
0x88330621, 0x8b052017, 0xf4052117, 0x16831788, 0x2f85fb83, 0x17883520, 0x478c0220, 0x17888e20, 0x82510421, 0x21778718, 0x1788d105, 0x16820a20,
0x0300002a, 0xf9fe8900, 0x1f052704, 0x22067b6d, 0x6d3f4042, 0x01230777, 0x6d020300, 0x41201376, 0x2020766d, 0x05ff5016, 0x27072722, 0x0808dc50,
0x17371746, 0x14150600, 0x26131716, 0x35361223, 0x03272634, 0x4a033316, 0xd16b726b, 0x49302f93, 0x746c549b, 0x2e94d16c, 0xfe9b4c2e, 0x2f2e8239,
0x811c20e5, 0xe42e2d81, 0xf8031d1e, 0xa5abfc41, 0xf6088bf9, 0xfd41fe2e, 0xf02d0984, 0xc4acfe2d, 0x2da782cc, 0xfc05e102, 0x250982e2, 0x20fd2da6,
0xe3830005, 0x0621cb83, 0x20e38246, 0x127341dd, 0xfb880e20, 0x08052742, 0xf9ff0322, 0xcb04e7ff, 0x1f003704, 0x37002800, 0x51405400, 0x0706011d,
0x01020a11, 0x02010b00, 0x004c0301, 0x2f067c54, 0x030b090c, 0x61040707, 0x0402050a, 0x084d4104, 0x310ba55c, 0x20202929, 0x37290000, 0x2e303629,
0x27202820, 0x4e822324, 0x24241e2b, 0x0d132225, 0x002b1b09, 0x13a25c11, 0x10110227, 0x16323312, 0x08965c17, 0x6d060421, 0x95820c14, 0xfbfd4508,
0x3464640e, 0x41543752, 0x976c5084, 0x6c81292a, 0xaeaaabad, 0x53268271, 0x2a4a41c2, 0x02590108, 0xfd3d461e, 0x4a224f91, 0x20483f3e, 0x043d4921,
0x29f7fd37, 0x24a1af36, 0x37347a29, 0x655f5f65, 0x04012301, 0x283fa982, 0x95c86266, 0x727a903f, 0xc102498e, 0x51ae8fd1, 0x8c95ad4e, 0x000055af,
0xfebf0002, 0x82270455, 0x001036ff, 0x4068001d, 0x0d131411, 0x08040303, 0x02030001, 0x02090a4c, 0x06ea4300, 0x0106182c, 0x61010404, 0x01020205,
0x4f473b01, 0x001c210d, 0x1f831283, 0x05610226, 0x41020201, 0x59381e8b, 0x11111340, 0x1d110000, 0x16181c11, 0x0f001000, 0x09072514, 0x12002b18,
0x21065d5c, 0xfd430711, 0x5c062005, 0x6543055c, 0x03340805, 0xb75bb572, 0xc068aa84, 0xa03b0ea5, 0x2f7e7d5c, 0x7d467528, 0x0474707d, 0xfee1fe37,
0x8df9a3f8, 0x170dfe78, 0x518ec905, 0x475b9756, 0x423c02fe, 0xc3cdcbc3, 0x0521cb88, 0x2b6782dd, 0x403f001d, 0x0213143c, 0x010c0302, 0x4c2f9382,
0x01030100, 0x020f104b, 0x0d0e4a00, 0x5c490102, 0xac820866, 0xc657d282, 0x11112106, 0x2b25a783, 0x09052225, 0x0d045d19, 0x3721a682, 0x25a28b12,
0x9a387f01, 0xa686c958, 0x88adc021, 0xa00323a2, 0xa48a4e49, 0x17710724, 0xa38dc3fd, 0x55fe8924, 0x9744f103, 0x406b3006, 0x04010114, 0x02171800,
0x01060403, 0x45030301, 0x18290b5d, 0x04040106, 0x02056100, 0x0b514702, 0x4e013f26, 0x001c401b, 0x72411283, 0x8601200e, 0x405922c5, 0x07d54413,
0x13155508, 0x0e000f00, 0x09071225, 0x17002b18, 0x27113337, 0x23060611, 0x36341120, 0x11063336, 0x32331614, 0x26113736, 0xd3022326, 0xc0a50e6b,
0xfe589438, 0x80b75e7c, 0x4d7373ca, 0x75282d7d, 0x87370446, 0x1737fa6e, 0x4b4c1202, 0xfba12702, 0x6efe978d, 0x4656c2ca, 0x2805315b, 0x00010000,
0x040000c9, 0x22cb8230, 0x46bb0016, 0x0e310511, 0x01000113, 0x00020108, 0x01024c02, 0x401b4a06, 0x22108c0f, 0x55594b01, 0x202005e4, 0x02273d82,
0x05720001, 0x48010101, 0x3b2406e2, 0x0201044d, 0x2305894c, 0x1b4e0339, 0x21204f85, 0x02212785, 0x21289980, 0x238b2b40, 0x84079651, 0x005f232f,
0x568d0606, 0x3e495920, 0x00162305, 0x00821115, 0x49211221, 0x1726063e, 0x23352303, 0x42790322, 0x172d0809, 0x03333636, 0x1e2946c1, 0x67ed0194,
0xa0cafdd6, 0x233301a0, 0x0488b03f, 0xfe0d0c37, 0xadfedc8e, 0x8e8e59fe, 0xf78e0203, 0xff008789, 0x050741ff, 0x00460625, 0x44e40022, 0x3b200573,
0x17880682, 0x17883320, 0x17870620, 0x04b8fd25, 0x86370430, 0x06032317, 0xe88204fc, 0x00010027, 0x03e7ff8b, 0x341782f6, 0x4034002a, 0x01011031,
0x02112700, 0x01260103, 0x4c030302, 0x06fb4e00, 0x1805235f, 0x2a0ac741, 0x2d29002a, 0x09052d24, 0x6e242b19, 0x5e6e0d5f, 0x0614210e, 0x08d54018,
0xa3024808, 0x6d6c2585, 0x65549876, 0xa0e67bb9, 0x5b924352, 0x72316870, 0x52927270, 0x877ace7e, 0x406a4cd2, 0x54805aa1, 0x35403148, 0x74481e1c,
0x48855959, 0x302d7d77, 0x382c3d44, 0x4c1f1f2e, 0x906c607c, 0x7a424f44, 0x82003d35, 0x84b384e3, 0x85e820fb, 0x821120fb, 0x83178806, 0x201785fb,
0x83178306, 0x1bfe21e3, 0x3e31e384, 0x1c407d00, 0x0506012f, 0x04021b30, 0x03011a06, 0x0c6a6e04, 0x6e4c0621, 0x41291c65, 0x0404004d, 0x03006103,
0x1c656e03, 0x5926268c, 0x2d240a40, 0x656e1124, 0x6e242006, 0x27251865, 0x33161637, 0x1c4b4132, 0x65f60324, 0x875f6aaa, 0xdb0e270e, 0xa1406a95,
0x5a41735a, 0x88c72417, 0x6e5a0a4a, 0x0d240e5e, 0x3d357a82, 0x411a6841, 0x05201247, 0x30075f41, 0xf603b8fd, 0x22003704, 0x0000e800, 0xfc060300,
0x055b6e04, 0xe7ffb42a, 0xdd056204, 0x92003b00, 0x2c054343, 0x0101190a, 0x00011802, 0x1b4c0201, 0x200c8640, 0x620c8203, 0x02360833, 0x05610402,
0x3a040401, 0x0101004d, 0x01036100, 0x003f0000, 0xf84a1b4e, 0x001b2105, 0x03221e8a, 0xc06d3903, 0x21228308, 0x37821940, 0x01020026, 0x00690204,
0x59221b8e, 0xa8834059, 0x3a003b2d, 0x31333637, 0x15171b1d, 0x49160906, 0x0723075b, 0x70150606, 0x142106f4, 0x088b7706, 0x210b7141, 0x0d843637,
0x22239208, 0x23111506, 0x33363411, 0x59a2b902, 0x2f293324, 0x3439262c, 0x6547634c, 0x6c9569ac, 0x29572549, 0x4a336960, 0x354c413e, 0x32273021,
0x3e4f2332, 0xd7c06c6d, 0x4add05c4, 0x4e325485, 0x38292436, 0x2c372125, 0x85533222, 0x54a3705c, 0x18158344, 0x573a6164, 0x3f2b283d, 0x492f3e5c,
0x442a2333, 0x2f47282e, 0xcafb9082, 0xe0d32a04, 0x01000000, 0xe7ff9800, 0x23051704, 0x2e001700, 0x01172b40, 0x4c010105, 0x02020c0d, 0x0101044a,
0x035f0201, 0x06d94b01, 0xbe770020, 0x11232806, 0x22141113, 0x4e1c0906, 0x35080939, 0x35333523, 0x07211137, 0x16141121, 0x04373233, 0x4f9e3817,
0xef54a473, 0x6801c0ef, 0x5baefe16, 0x365d6a66, 0x95532b24, 0x905c0263, 0xfbfe17ee, 0x59a6fd90, 0x7b8b3256, 0x3d001f27, 0x011f3a40, 0x2c7b8209,
0x04021011, 0x0201074a, 0x09010108, 0x05517402, 0x24058556, 0x09004d3b, 0x23858709, 0x11111c1e, 0x11208882, 0x0a228a82, 0x8a8d1f09, 0x15228e88,
0x928e1521, 0x87d9d921, 0x54012394, 0x9889acfe, 0x8c050123, 0x239a85cb, 0xfdfe8ccb, 0xff219c82, 0x051741ff, 0x00090625, 0x82ef0022, 0x070726aa,
0x00b9000d, 0x05615692, 0x35b09223, 0x053b412b, 0x041bfe34, 0x00230517, 0x4082002b, 0x0701271b, 0x08012803, 0xbc820007, 0x21091063, 0xcf821c1d,
0x2105da43, 0xd5820025, 0x40720820, 0x09605708, 0x072cda82, 0x00610807, 0x083f0808, 0x26401b4e, 0x01232785, 0x82010080, 0x65002179, 0x592e2896,
0x23140c40, 0x15111311, 0x09262513, 0x56631f09, 0x26262315, 0x9f411135, 0x0617250e, 0x0e030706, 0x220ecc43, 0x41887e0f, 0x48230baf, 0x634a8c33,
0xb8230e50, 0x417eab19, 0x812d0cc0, 0xff042921, 0xfd9800ff, 0x051704b8, 0x05274123, 0x06030026, 0x003b05fc, 0xbf2cb683, 0xf103e7ff, 0x13001e04,
0x0bb64500, 0x43057c52, 0x1224059f, 0x01010104, 0x0025f282, 0x03620200, 0x06464f01, 0x14861620, 0x4d200e82, 0x03213e82, 0x05e94462, 0x13b75922,
0x2225e282, 0x2b1b0905, 0x06be4701, 0x14613320, 0x08d88206, 0x7f013321, 0x934e5650, 0x0ea5c02b, 0x975fb43c, 0x3801c099, 0x445b5863, 0xe2fb0203,
0xa3564e8b, 0x82fe0296, 0x2187849f, 0x9f824606, 0x1f4bf420, 0x2017850c, 0x4c17881c, 0x17850793, 0x17883320, 0x8407934c, 0xf4052117, 0x4c821788,
0x88000021, 0x8835205f, 0x00022117, 0x17860082, 0x8e06f522, 0x934c1788, 0x20478507, 0x201788d1, 0x082e820a, 0x01000022, 0x2dfebf00, 0x1e04f103,
0x5b002500, 0x14230f40, 0x00030402, 0x09040201, 0x03020001, 0x19b04b4c, 0x2c05185f, 0x4d3b0303, 0x02040400, 0x02020062, 0x164b183f, 0x8218200d,
0x00012547, 0x01056501, 0x022e248c, 0x0940594e, 0x29132313, 0x09062623, 0x9d552b1c, 0x06272912, 0x26222306, 0x11331135, 0x21076141, 0x9c55f103,
0x7a77220c, 0x055e410c, 0x55056c41, 0x5b230b94, 0x4178348a, 0xfd210569, 0x057a411a, 0x200a1341, 0x21e3887c, 0x13410008, 0x06f12209, 0x4c17880e,
0x01260593, 0x00006f00, 0xfb824104, 0x1b000626, 0x01061840, 0x4f093854, 0x112a0565, 0x09031011, 0x33012b19, 0x03822301, 0xc57c032a, 0xfee086fe,
0x2101cc88, 0x26053154, 0x000089fc, 0x821e0001, 0x82922043, 0x000c3c43, 0x0b2b402e, 0x00030308, 0x004c0103, 0x02000203, 0x05800003, 0x02020204,
0x65014d3b, 0x8c82057c, 0x0c000c2d, 0x11121112, 0x2b1a0906, 0x6f210301, 0x132f0800, 0xffb39204, 0xfa8b8100, 0x9f7cbfbb, 0x837c95d2, 0xfb022d60,
0x1e0405fd, 0x210359fc, 0xa703dffc, 0x6b84df84, 0x00460623, 0x244f8222, 0x07020000, 0x22518203, 0x85ffff00, 0x33062183, 0x3b421788, 0x212f8407,
0x1788f405, 0x2f892e83, 0x17883520, 0x83000221, 0x00012200, 0x20cb8264, 0x20cb824c, 0x07036f0b, 0x01010029, 0x0101024c, 0x7e4d3b01, 0x036f0699,
0x23340809, 0x13330101, 0x01013313, 0xfe520223, 0x8101d8ea, 0xe8e0adfe, 0xb0fed7ea, 0x01e78101, 0x0245febb, 0xfef2012c, 0xfe7f0181, 0x00ccfd16,
0x70000100, 0x400455fe, 0x0e275b82, 0x1d402000, 0x8200010c, 0x03042559, 0x02490002, 0x7f825e84, 0x4e003933, 0x03181112, 0x052b1909, 0x27070606,
0x2337023e, 0x085e8201, 0xd0023321, 0x1bc9e140, 0x1f4a7f69, 0xcd95fe41, 0x1e011f01, 0xd8ba06c6, 0x45119513, 0x1e04566a, 0x57036efc, 0x5f84059b,
0x82460621, 0x430620d3, 0x17850c6f, 0x17883320, 0x84071b41, 0xf4052117, 0x34821788, 0xff000023, 0x21a785ff, 0x17883506, 0x24071b41, 0x030000c3,
0x6fbf82ed, 0x3b21160b, 0x074e574d, 0x4e013922, 0x37110b6f, 0xc5fde703, 0xfc174102, 0xfd3f02ed, 0x03f602ef, 0x9f11fd8e, 0xa0ef028f, 0x73823482,
0xbb845b84, 0x63640b20, 0x8317850c, 0x641785bb, 0x1785074b, 0xa3821620, 0x01211785, 0x27478514, 0x04e7ffb0, 0x00060611, 0x25057369, 0x001b0707,
0x7569ff9e, 0x206b820c, 0x22c782bf, 0x511806f3, 0x1b2108c7, 0x0ab35046, 0x43511784, 0x4a178705, 0x2f830577, 0x21055f4a, 0xb38b571b, 0x01201782,
0x1b218385, 0x0817825a, 0x00010035, 0x03ee00bc, 0x002204f0, 0xb306000b, 0x32010105, 0x1701012b, 0x01070101, 0x01012701, 0x01580237, 0xddfe7622,
0xfe762301, 0x76dafede, 0xd9fe2701, 0x83000376, 0x210e8813, 0x0e822601, 0x475d0020, 0xd1052106, 0x15244782, 0x31403400, 0x2007f253, 0x241a8269,
0x06020306, 0x083e5d67, 0x4e041b22, 0x2011195d, 0x2c195d07, 0x5bd10521, 0xfd270747, 0x92c3fcfe, 0x83ab0292, 0x000226cb, 0x0355feb7, 0x29838483,
0x402f0019, 0x0210112c, 0xb8594902, 0x02032f09, 0x00570302, 0x5f020303, 0x02030200, 0xba59004f, 0x597e8e0a, 0x828922ba, 0x59effa21, 0x8a21096b,
0x20888292, 0x068f5801, 0x11006226, 0x26402900, 0x21098f58, 0xc74d0200, 0x451a2005, 0x20290891, 0x14114e01, 0x07042224, 0x05b7461a, 0x22287058,
0x4ea59f03, 0x7d200c67, 0x2f053347, 0x070e130c, 0x01010003, 0x02010d4c, 0x0d401b4a, 0x01210e8a, 0x06d84a4b, 0x51041921, 0x1c3108a2, 0x0001054d,
0x075f0600, 0x1b060601, 0x401b4e06, 0x261b8323, 0x03006103, 0x844d2103, 0x825f2026, 0x22258eb3, 0x820f4059, 0x001637e4, 0x23251216, 0x08111111,
0x332b1c07, 0x23113335, 0x36172135, 0xbd7b3336, 0x11032407, 0x4ec91533, 0x2b29071e, 0x23392946, 0x67ed2136, 0x061c4ed6, 0x0d0c5308, 0xfe080aa8,
0x8e59fead, 0xffff0000, 0x9a00bc00, 0xce03f003, 0x14010601, 0x0900ac00, 0xb80100b1, 0x35b0acff, 0x0100002b, 0x00005ef7, 0x1e04f203, 0x43002400,
0x1f224040, 0x1116191c, 0x05080b0e, 0x0108010a, 0x0a0b0c4c, 0x00080409, 0x01080001, 0xc9820780, 0x064d1c37, 0x02030405, 0x1b010105, 0x23244e01,
0x1d1e2021, 0x11121a1b, 0x28008312, 0x070d1111, 0x13252b1f, 0x05c64533, 0x03230322, 0x33220288, 0x028c1313, 0xbf022f08, 0xffb2b67d, 0xf5a08200,
0x84fb7f7d, 0x8a85f68d, 0xfa8c83fb, 0x9f7dbeba, 0xd69e96d2, 0x98d1a193, 0xb28cd693, 0xa70377d2, 0xfb02e2fb, 0x038f05fd, 0x23080546, 0x03dffc21,
0x26080388, 0xc6000300, 0xea030000, 0x1f00dd05, 0x2e002a00, 0x54405700, 0x0302011d, 0x0201011c, 0x04050129, 0x0002060a, 0x824c0405, 0x4b013cc7,
0x00030108, 0x02030102, 0x09010069, 0x01050401, 0x06006904, 0x07060700, 0x72050063, 0x5330058f, 0x20214e00, 0x2d2e0000, 0x25272b2c, 0x2a212a20,
0x1e305382, 0x0a2c2523, 0x002b190b, 0x14111516, 0x26071716, 0x200ef26f, 0x06f36f26, 0xe66f1320, 0x35530808, 0x21152101, 0x1faaef02, 0x55432922,
0x4d8e3117, 0xe44c8a5a, 0x606073ce, 0x3144802d, 0x833c9aa1, 0x394d537b, 0xe6fd256b, 0xe7fc1903, 0x8893dd05, 0x2d2b7ffe, 0x3708780b, 0x423e3837,
0x90854f79, 0x18464f37, 0xfe3c7f17, 0x474a4b30, 0xb9333a4a, 0x82a295fc, 0xba0021e2, 0xf4200482, 0x0f22e782, 0x97821b00, 0x32403526, 0x07010106,
0x0122ce82, 0x775e6903, 0x56632005, 0xc782076a, 0x00101027, 0x1d1e1f00, 0x0a6e561c, 0x560b0821, 0xb6841d6e, 0xbad54908, 0x7cbb6565, 0x6665bb7e,
0x786c7cbc, 0x766c6c78, 0x75fe6c76, 0xe8fc1803, 0xc96ddd05, 0x70ca8285, 0x8185c96e, 0x968c70ca, 0x97989999, 0xfb96999a, 0x0100a251, 0xf4024a01,
0xa6056803, 0x58001400, 0x01110a40, 0x010c0301, 0x2e05795a, 0x40585022, 0x02040517, 0x00010003, 0x83690103, 0x00032309, 0x0c82025f, 0x1b4f0024,
0x13821a40, 0x5703002d, 0x00040105, 0x01040001, 0x88030069, 0x07c2591c, 0x13111327, 0x0b061324, 0x08c1621a, 0x080cc757, 0x6404033c, 0x24240d9d,
0x9d1c4d26, 0x6826078c, 0x6aa60533, 0x011cfe64, 0x1f413c9b, 0x24fe2635, 0x2f50a402, 0xffff002f, 0x00001f00, 0x62059204, 0x04000200, 0x02000000,
0x0000bb00, 0x0f824504, 0x15000c2f, 0x33403600, 0x01070100, 0x05010405, 0x5f1c8267, 0x1a2c05de, 0x0404004d, 0x02005f02, 0x4e021b02, 0x0d4d4118,
0x11212432, 0x2b190708, 0x11210701, 0x15042033, 0x21230414, 0x094d4118, 0xcd032708, 0xa8c8fd13, 0x17010401, 0xfef8e2fe, 0x98bac78c, 0x0595a6a2,
0x8ffea162, 0xd1e0d4cb, 0x55fd6205, 0x9a77e7fd, 0x93827e8a, 0x8382b420, 0x93844120, 0x76821020, 0x01010126, 0x46040000, 0x05250f82, 0x16401900,
0x200e8200, 0x8216825f, 0x23828487, 0x03101111, 0x21207483, 0x232d7582, 0x45030101, 0xc696fd15, 0xfba96205, 0x4f481847, 0x07462608, 0x01220023,
0x22348224, 0x83120702, 0x8443823b, 0x89063153, 0x2a000800, 0x01032740, 0x004b0103, 0x85000300, 0x03251982, 0x0301045f, 0x825e8703, 0x00082634,
0x11121108, 0x22648305, 0x83113311, 0x03112366, 0x6685c086, 0xfe270123, 0x826a82d9, 0x0200279c, 0xd1fefdff, 0x0a826d04, 0x17000f27, 0x2e403100,
0x31a98203, 0x06005301, 0x005f0506, 0x4d1a0505, 0x03040708, 0x3a410000, 0x10102807, 0x17101710, 0x82111512, 0x10510800, 0x2b1d0709, 0x23113325,
0x23032103, 0x36363311, 0x21131312, 0x07211103, 0x07060202, 0x9c660704, 0x1f06fd1f, 0x3a35549c, 0x02322a2b, 0xb1fec5c0, 0x442e211b, 0x30fea13e,
0xd1fe2f01, 0x9e35d001, 0x4b011101, 0x3ffb9201, 0xfef82104, 0xa8e1fed5, 0x25fb8337, 0x0000f000, 0x8f822204, 0x1b000222, 0x07250f89, 0x01220029,
0x21d68228, 0x50180702, 0x50180d73, 0x00270ebb, 0x00150001, 0x829b0400, 0x00153f3f, 0x10334036, 0x03000205, 0x01054c01, 0x00010803, 0x67000301,
0x02020406, 0x0a4d1a02, 0xe8820709, 0x4e011b22, 0x15245282, 0x12111500, 0x0483cf82, 0x1f070b24, 0xd182212b, 0x03132326, 0x11331333, 0x13240182,
0x23130333, 0x023edf82, 0xbac77107, 0xb0b8d5f0, 0xb26fa26f, 0xbef0d5b6, 0x8b026fc5, 0xde0275fd, 0xbafd8402, 0x03844602, 0x22fd7c22, 0x53821383,
0x3d388782, 0x4004e7ff, 0x2d007b05, 0x3c403f00, 0x0302292a, 0x02010704, 0x02121303, 0x4c210582, 0x05ba4400, 0x04006723, 0x057d7f04, 0x1b511f20,
0x00202108, 0x2d2a9483, 0x21252c00, 0x072e2425, 0xf8501b07, 0x021e2208, 0x08875315, 0x36323329, 0x26343536, 0x87372323, 0x22510809, 0x36270706,
0xc3023336, 0x834c76da, 0x5b985c53, 0x95a3f282, 0xa7755bfc, 0x4d9366d0, 0x17f28faa, 0x4e824fcf, 0xab6b809e, 0xea676c50, 0x5b7b0588, 0x7d526aa3,
0x52080d4c, 0xc57c6694, 0x6b5f666f, 0x5279418f, 0x2fa17d80, 0x6d664862, 0x56724041, 0x08c78556, 0x00009d20, 0x62051304, 0x24000e00, 0x060d2140,
0x01000202, 0x0001014c, 0x044d1a00, 0x02020203, 0xae83021b, 0x000e3708, 0x1115110e, 0x2b190705, 0x11331133, 0x01070614, 0x11231133, 0x9d011310,
0x011210c1, 0x22c1f5e2, 0x620522fe, 0xefb06dfd, 0xfab30481, 0x0193029e, 0xfb0a010d, 0x48180056, 0x072507ff, 0x01220007, 0x2270822d, 0x823f0702,
0x20178905, 0x21178829, 0x1883ff11, 0x9d000226, 0xc704d1fe, 0x30082f82, 0x0022000f, 0x20414044, 0x06020218, 0x0a0b4c01, 0x00040304, 0x0800004a,
0x00060101, 0x02006901, 0x03020300, 0x06010763, 0x054d1a06, 0x1b040401, 0x37a78204, 0x1b1c2122, 0x1415191a, 0x10111213, 0x0e000f00, 0x17070926,
0x2626002b, 0x2906b553, 0x020e1737, 0x03330123, 0xbb841323, 0xca872320, 0x84020237, 0x147e0851, 0x5b484756, 0x53087d14, 0xbf015386, 0x469da2b4,
0x20d4827c, 0x33df85f9, 0x6c3afe05, 0x393f1a49, 0x491a3e3a, 0xa7fa3a6c, 0x2f012cfe, 0xf788e487, 0x0130bf83, 0x0000af00, 0x62059c04, 0x2d000c00,
0x010b2a40, 0x3005594d, 0x03010000, 0x01046700, 0x4d1a0202, 0x01020506, 0x059a4201, 0x0c000c23, 0x27008311, 0x2b1b0707, 0x11230121, 0x33379183,
0x01013301, 0x5efeb203, 0x9cc7c79a, 0xfed19301, 0x02e40142, 0x827dfd83, 0x02c22566, 0xfd7cfd3e, 0x8406437a, 0x23072567, 0x31012200, 0x02237882,
0x822b1207, 0x01002706, 0xe7ff1500, 0x7f821304, 0x29000f2e, 0x010a2640, 0x4c010100, 0x49000109, 0xa1520782, 0x4d1a2105, 0x1b222782, 0x05824e00,
0x0f000f29, 0x07041111, 0x82012b18, 0x21370879, 0x06020203, 0x36362707, 0x04131312, 0xa6fec613, 0x7555252c, 0x473d556e, 0x05482045, 0x049efa62,
0xfe86febd, 0x98bdfec5, 0x6b328f46, 0x00010c01, 0x00004302, 0x1800ffff, 0x2107974c, 0x0f850002, 0x21074f42, 0x90820002, 0x07d34918, 0x007b0525,
0x824a0002, 0x18012072, 0x2408474c, 0x401b0007, 0x39958218, 0x03005f03, 0x024d1a03, 0x1b000001, 0x11114e00, 0x07041011, 0x23212b1a, 0x94832111,
0x16278983, 0x047603c6, 0x8245fbbb, 0x244f82d4, 0x040000d6, 0x220a8260, 0x18560002, 0x8409ef56, 0x8411205f, 0x8b41180f, 0x00022207, 0x246f8464,
0x04e7ff2b, 0x262f8291, 0x4020000f, 0x82010d1d, 0x054c2171, 0x33054964, 0x02860001, 0x1a010101, 0x11124e01, 0x19070319, 0x020e012b, 0x080bc34d,
0x7c37f723, 0x6a1d97bf, 0x4b275581, 0x01ce3efe, 0xc9560179, 0xa0847a01, 0x0e99125d, 0x03556036, 0x0393fce9, 0x2262826d, 0x8400ffff, 0xff062563,
0x3b012200, 0x02231082, 0x82121607, 0x00290806, 0xff170003, 0x059904c3, 0x0011009f, 0x0023001a, 0x0f364039, 0x03040200, 0x00021a1b, 0x054c0204,
0x00030401, 0x80000403, 0x23948202, 0x7e010003, 0x8d080c82, 0x00570301, 0x5f010303, 0x01030100, 0x16111f4f, 0x06151111, 0x012b1c07, 0x10111216,
0x23150702, 0x11022635, 0x35371210, 0x020e0333, 0x16161415, 0x023e3317, 0x26263435, 0xf7b20227, 0xb4eef9f0, 0xf7f0f8ef, 0x8167afb4, 0x6a813c3f,
0x3c816aaa, 0x0567813f, 0xcbfe1226, 0xd4fed7fe, 0x7e0cc3fe, 0x3c010b7e, 0x29012e01, 0x79123501, 0x6304fefe, 0xd2a7aed2, 0x6a09096a, 0xd2aea7d2,
0x00000463, 0x3500ffff, 0x7b040000, 0x02006205, 0xa7627a00, 0x82132008, 0x00132b0f, 0x13264029, 0x04000401, 0xbd820201, 0x55040021, 0x033a05db,
0x1a000001, 0x0101004d, 0x234e011b, 0x10112314, 0x2b1b0705, 0x23113301, 0x157c0611, 0x062b5105, 0x03372908, 0x57c6c64d, 0xb87a679c, 0x7f82c764,
0x620575b3, 0x27029efa, 0xbd65383f, 0xfd11027f, 0x708187fd, 0x9d000100, 0x8a04d1fe, 0x57186b82, 0x0129076b, 0x02050654, 0x4d1a0303, 0x21658204,
0xde476002, 0x22958205, 0x430b000b, 0x01200837, 0x23226082, 0x05822103, 0x04112133, 0x1f9c7713, 0x01c6cefc, 0xfb6205ea, 0x0130fe3f, 0x2307822f,
0x00c00440, 0x59205b82, 0x5720d782, 0x1f265b84, 0x02041c40, 0xb6820002, 0x03010525, 0x85600103, 0x235084bc, 0x1c070610, 0x4e83bd83, 0x52823320,
0xa4033329, 0xb302fcb3, 0x83f8a8f8, 0x254c82af, 0xfbc4043c, 0x4f84003c, 0xce20ab82, 0x0f2d4f82, 0x2a402d00, 0x01000100, 0x05070854, 0x24ac8303,
0x00020406, 0x20ad8a00, 0xad43180f, 0x1d072209, 0x84af892b, 0x04112260, 0x20b38357, 0x88638546, 0x216784b4, 0x1341c404, 0x84132006, 0x402328b7,
0x01020020, 0x41048602, 0x052a0572, 0x03600105, 0x1b010101, 0xbb8d4e01, 0x0e410320, 0x4d032c06, 0x14a4fec6, 0xa4fe1496, 0x83ea01c6, 0xd1fe21bf,
0x20051041, 0x219e8200, 0x0f41b000, 0x000a3606, 0x40300013, 0x0600002d, 0x00030401, 0x01056704, 0x4d1a0202, 0x09184100, 0x000b0b33, 0x0b130b00,
0x000c0e12, 0x240a000a, 0x18070721, 0x49c4822b, 0x2608104b, 0x01c47601, 0xfe190104, 0x71fef9e1, 0xa295d7c6, 0x620593a5, 0xdad109fe, 0x6205dae6,
0xcbfd70fd, 0x8391a180, 0x82000200, 0x8d042100, 0x0c27cf82, 0x36001600, 0x18003340, 0x6908174b, 0x7c8207aa, 0x01040423, 0x0595415f, 0x000d0d27,
0x0d160d00, 0x194b1815, 0x05f14809, 0x23217d87, 0x208a8235, 0x052b4732, 0xc2ae0122, 0x74278087, 0xd6ae01e9, 0x874e8963, 0xd9e72483, 0x83a6bc04,
0x7f322284, 0x28858270, 0x00030000, 0x0400003b, 0x24878275, 0x000e000a, 0x2b898517, 0x05060108, 0x03690600, 0x02020207, 0x05248582, 0x04600105,
0x2d056041, 0x00000f0f, 0x160f170f, 0x0d0e1012, 0x07410b0c, 0x07092805, 0x11132b18, 0x4a163233, 0x21230553, 0x84231133, 0x3533088b, 0xfa232634,
0xfffbf86c, 0xd1feef00, 0xbfbf7b03, 0x8c7f44fd, 0x058a8d8d, 0xda09fe62, 0x05e0e0d1, 0x029efa62, 0x89c1fdd8, 0x008d8d9c, 0xfffeff02, 0x82b004e7,
0x00153c87, 0x403d001f, 0x04010a3a, 0x01010f05, 0x0e4c0204, 0x00490101, 0x05010600, 0x69050004, 0x1c410871, 0x16162f0c, 0x1e161f16, 0x24111b22,
0x1b070710, 0x576a012b, 0x11232305, 0xc8440323, 0x21132206, 0x41a08211, 0x3e08051d, 0xf2f5c902, 0xb0c5e4f6, 0x4c35112b, 0x2d235e48, 0x02390e25,
0x72591e0f, 0x0386813b, 0xe7dad16b, 0xfdc904d9, 0x6ef4eca2, 0x61267e36, 0xed02bacf, 0xbffd77fd, 0x96708135, 0x00020085, 0x8400004f, 0x001135a3,
0x4031001b, 0x0001052e, 0x02020809, 0x69020007, 0x04040106, 0x07219382, 0x088b4207, 0x12121227, 0x221a121b, 0x24008311, 0x070a1024, 0x1897891e,
0x8a08cf57, 0xca2d0895, 0xe6f4f2f4, 0xb8f6fec5, 0xb90a01b8, 0x3c715b1c, 0x42038781, 0xcce2d0c4, 0x4ffdb102, 0xe0fd6205, 0x4ffd2002, 0x792ee6fd,
0x00768f6e, 0x4f491800, 0x7b052107, 0x5d2a9582, 0x01000000, 0xe7ff6b00, 0x0f826d04, 0x41001e36, 0x01023e40, 0x01030500, 0x01120001, 0x01130203,
0x4c040304, 0x0ac15918, 0x29088949, 0x61040303, 0x20040400, 0x41824e04, 0x1d001e27, 0x12112325, 0x05894924, 0x26071728, 0x07062223, 0xff751521,
0x23062108, 0x08ed5e18, 0xbd453808, 0x9e896357, 0x0212dba6, 0x08acfd50, 0x6771b06c, 0x4a653d97, 0xfeb18bd4, 0x01a099f1, 0x7b05a711, 0x62764544,
0xa7a2ecdd, 0x354067dc, 0xa657457b, 0xe0e34201, 0x83a64301, 0x824b20a7, 0x843c20a7, 0x403b2da7, 0x021a1b38, 0x0a0b0403, 0x02020102, 0x82212b4a,
0x112224a1, 0x85262512, 0x151224a1, 0x18040214, 0x2508825e, 0x35213736, 0xb3842621, 0x36274d08, 0xc2023336, 0xff8a84f6, 0xe385ae00, 0x99487151,
0x0cbab05d, 0x4f02b1fd, 0x66a5b20d, 0x5a694c96, 0x7b0589d9, 0xe5c8fe9c, 0xa6b8feed, 0x4071525e, 0xa0fcef3f, 0x3c43d7f3, 0x005c4e72, 0xffff0000,
0x0000c500, 0x6205eb03, 0x2e000200, 0x57180f89, 0x862212b7, 0x2786e8ff, 0x38823920, 0xf6ff0126, 0x72040000, 0x182c3782, 0x34403700, 0x01030103,
0x03020113, 0x0126d982, 0x01020300, 0x60516903, 0x4d1a2209, 0x22f28204, 0x824e021b, 0x00183036, 0x24131118, 0x08112313, 0x012b1c07, 0x82112107,
0x673220bf, 0x2e080cf1, 0x35211123, 0xfe154303, 0x568a3ac6, 0x29c4b2b2, 0x6c4d4c5a, 0xc5fec332, 0xfe9e6205, 0xd03c3654, 0x0111fecb, 0x336f5be9,
0x7efd2d37, 0x829ec404, 0x23b98253, 0x04e7ff58, 0x0025e782, 0x00230013, 0x0511526e, 0x00212408, 0x06010004, 0x09670104, 0x03070701, 0x02050861,
0x4d1a0303, 0x00060600, 0x00010261, 0x4e002000, 0x8729401b, 0x83002023, 0x2b28831b, 0x01086105, 0x4d1f0505, 0x1b020200, 0x60822c85, 0x592c2b82,
0x14141640, 0x23140000, 0x1a1c2214, 0x12336682, 0x12111111, 0x1b070a25, 0x1216002b, 0x23021015, 0x49030222, 0x122006ca, 0x10cd5018, 0x99034008,
0xc9b549a7, 0x7f06adcc, 0x0c81b5b5, 0x5247beb3, 0x47522525, 0x28285243, 0x7b054352, 0xf4c8fe9f, 0x9bfe9cfe, 0x43015201, 0x620584fd, 0x3201b6fd,
0x689a3101, 0xf3d5d5f2, 0xd2f46969, 0x826af4d3, 0x00022383, 0xb34b0039, 0x000d2a05, 0x40380015, 0x01010735, 0x374f1805, 0x01072709, 0x5f030404,
0x55490106, 0x0e0f210a, 0x1228af82, 0x150f150e, 0x0c000d00, 0x0822af82, 0xf4491907, 0x013b0805, 0x26260123, 0x21243435, 0x15062207, 0x11332110,
0xfec61304, 0xdce5fee3, 0x79774101, 0x01010f01, 0x01959910, 0x6205e110, 0x21029efa, 0x4c02dffd, 0xc782c235, 0x868098d6, 0x8202f8fe, 0x01003e54,
0xe6fef6ff, 0x62057204, 0x39001f00, 0x01003640, 0x01170001, 0x4c020102, 0x02020a0b, 0x24ac8249, 0x01000201, 0x08f75469, 0x3507c04e, 0x1c1d1e1f,
0x18191a1b, 0x06211315, 0x012b1707, 0x16323336, 0xfe671115, 0x35213112, 0x01210721, 0xb29882f4, 0x779b54b2, 0x235a5732, 0x36080542, 0xfe154d03,
0x721803c6, 0xd1fecbd0, 0x2870b88a, 0x72502399, 0x4228015d, 0x9e20090f, 0x00257e83, 0x04e7ff1f, 0x399f8292, 0x4034002c, 0x03010a31, 0x004c0104,
0x02030204, 0x07800304, 0x02020206, 0x9d834d1a, 0x82620021, 0x200023b9, 0x33824e00, 0x2c002c2e, 0x17251323, 0x07082624, 0x16012b1c, 0x5206d441,
0x022e0648, 0x36123435, 0x02063337, 0x33161415, 0x0a5a3632, 0x36530808, 0x27023435, 0x3b280204, 0x5f99ae2d, 0x71211e74, 0x5d96595d, 0xb72a392e,
0x525a4544, 0x47b64133, 0x29463139, 0x62054346, 0xdbfec76d, 0xfebbfeb2, 0x676667d5, 0x17017d66, 0x2501b1dc, 0xfebd73c2, 0xdafbe79e, 0xcd01695f,
0x636735fe, 0xe5b8cd4d, 0x82c65e01, 0x0002268b, 0x04000014, 0x08bf8276, 0x1c001322, 0x41404400, 0x06030105, 0x03000201, 0x01096702, 0x07080000,
0x00690800, 0x4d1a0404, 0x0707010a, 0x2907ca48, 0x00011415, 0x1c14191b, 0x79731c15, 0x0a0b2e06, 0x00060809, 0x0b130113, 0x012b1607, 0x056e7832,
0x21112128, 0x33352135, 0x01822115, 0xc9821320, 0x26345008, 0x02112323, 0x7fe79d73, 0xfef5e0fe, 0x01e9feca, 0x2901c617, 0x927ed7fe, 0x83939da3,
0xbb5d5e03, 0x04dce189, 0xb6b68b21, 0x3ffdc38b, 0x7e8d9b81, 0x0100d9fd, 0xe7ff4a00, 0x7b05a904, 0xa4002500, 0x01150e40, 0x01160306, 0x01250604,
0x6c030109, 0x212f060b, 0x08040107, 0x04090101, 0x06006701, 0x82610306, 0x1a0321c1, 0x4305a05e, 0x4b26077d, 0x585015b0, 0x28952540, 0x1b020222,
0x4308ce5e, 0x278a05aa, 0x2206c843, 0x43006105, 0x092009aa, 0x8205fa5e, 0x5959262b, 0x21230e40, 0x05a45511, 0x0a221324, 0xfe5e1f07, 0x27022106,
0x2206a143, 0x55361236, 0x500808ae, 0x15210706, 0x33161621, 0x04373632, 0x60873da9, 0x087cd994, 0x87c5c585, 0x90db830e, 0x573c7957, 0x86354f2d,
0xb20112a0, 0x9f0b4afe, 0x32593e8a, 0x96302d44, 0xfdd22401, 0xfd63058d, 0x1301c4b5, 0x7e29268c, 0xf2d9171a, 0x1feffda0, 0x0000001d, 0x08c75202,
0x0e000b2f, 0x20402300, 0x01030600, 0x01060001, 0x20ac8268, 0x05b56d1a, 0x4e001b24, 0x00831112, 0x07071027, 0x23212b1d, 0x82978303, 0x33013805,
0x04210307, 0x6daacf92, 0xc6aa6db0, 0x81fabc01, 0x022a0195, 0x83cbfd35, 0x62052403, 0x8310fe9d, 0x3e2a085f, 0xb7040000, 0x13006205, 0x2d001600,
0x010a2a40, 0x02030508, 0x01080001, 0x07010968, 0x064d1a07, 0x00030204, 0x4e001b00, 0x5e181516, 0x0b220af6, 0x698a1f07, 0x09411320, 0x33133b06,
0x04330307, 0x427cb9b7, 0xb17b439b, 0xb8b8c787, 0x81f99be9, 0x3d02e170, 0x0387c3fd, 0xfd620528, 0x8892026e, 0xdb82f6fd, 0x7b824020, 0x7b827020,
0x14001137, 0x34403700, 0x08020e11, 0x144c0107, 0x4b010001, 0x04000106, 0x27878201, 0x08006702, 0x005f0708, 0x98838a83, 0x011b0124, 0xee85124e,
0x09101122, 0x01228582, 0xf1881333, 0x33132508, 0x15213501, 0x02132107, 0xb2d49dff, 0x69b669a1, 0x90e0b2a3, 0x540301ff, 0xec28febb, 0x04fdfc02,
0x92fd6e02, 0xfc2c0384, 0x7d7de901, 0x0021fe0a, 0x00020000, 0x04210582, 0x308782e2, 0x001a0017, 0x1738403b, 0x080b0214, 0x01094c01, 0x85fc8200,
0x0b0b2e83, 0x010a5f08, 0x4d1a0808, 0x03030507, 0x21858301, 0x1141191a, 0x8f0c200c, 0x0513418b, 0x82032121, 0x13013b91, 0x91980321, 0x5688b0b9,
0xb08a56b5, 0xb8b8d7a1, 0x03dd8001, 0xcc82fe00, 0x958c69fe, 0x05239d82, 0x839afd62, 0x17fe239b, 0x9b83e001, 0xfe9e2d08, 0x07120451, 0x0006001e,
0x4041002a, 0x0301293e, 0x02012404, 0x064c0201, 0x04030405, 0x15164a00, 0x00490202, 0x85000400, 0x00010105, 0x2a081882, 0x03030063, 0x04005f04,
0x4e031a04, 0x27280708, 0x21232526, 0x2a082a07, 0x17070611, 0x2305012b, 0x25173725, 0x15163203, 0x7e060614, 0x17260597, 0x35262607, 0x12633634,
0x23232405, 0x83210135, 0x035408b2, 0x7ef1fe85, 0xfd52effe, 0xdde6ff00, 0x77be71e6, 0x48286762, 0x8789464a, 0xa39fac9f, 0x01da938e, 0x03b8fd9d,
0x0654fe30, 0x5cdedec2, 0xd5fba2a2, 0xb27abbd0, 0x1b0d1066, 0x43261e24, 0x8c397c26, 0x16716557, 0x847c8214, 0xd3018976, 0x2ffe9ea1, 0x1a00ffff,
0x9628a782, 0x02006205, 0x00005802, 0x270bd74f, 0x00008d01, 0x32000100, 0xa4291f82, 0x10007b05, 0x0a404600, 0x20cd8210, 0x44d2830a, 0x0d6e0603,
0x4e1a2009, 0x0d6e062b, 0x200d8205, 0x050d6e00, 0x17861f20, 0xb6593f08, 0x21131124, 0x2b1a0704, 0x22232601, 0x23010706, 0x13013301, 0x32333636,
0x256f0417, 0x0f2b2419, 0xfee1cffe, 0x2a01d571, 0x64761eee, 0xd804404d, 0xfb36300e, 0xfb620580, 0x78c7036f, 0x9b84216b, 0x07258b84, 0x012200d2,
0x319a825d, 0x04f90607, 0x00440138, 0x0201b109, 0xb04401b8, 0x73822b35, 0xfe0c0024, 0xaf830455, 0x1b000b30, 0x72002900, 0x01230a40, 0x4c010503,
0xc16e0129, 0x571e2007, 0x1f38079f, 0x0501064d, 0x084d1c05, 0x01030301, 0x02070461, 0x01200101, 0x22401b4e, 0x0023208f, 0x861b0404, 0x01072125,
0x27082484, 0x0c184059, 0x2500000c, 0x20212224, 0x0c1b0c1f, 0x0012141a, 0x240a000b, 0x2b170709, 0x10110216, 0x12323312, 0x23021011, 0x1805c54f,
0x08086669, 0x3636013d, 0x33032337, 0x03331313, 0xa0070606, 0xa5a49594, 0x37a59393, 0x3d19193d, 0x193d3837, 0x01353e1b, 0x14665b59, 0x749ea24c,
0x1ca3a06d, 0x011986a5, 0x015d016a, 0xfe73015a, 0x82a1fe94, 0x90963201, 0xd0cff575, 0xf77776f6, 0x75f6ccd0, 0x881d61fe, 0x05765e83, 0xb4dcfb37,
0x000026cb, 0x7b000100, 0x81040000, 0x0d006205, 0x2a402d00, 0x6f521805, 0x5b1b8208, 0x1a27050b, 0x0303004d, 0x824e031b, 0x000d2310, 0x0084110d,
0x49070821, 0x220805a9, 0x11211521, 0x35231123, 0x81041133, 0x0196fd15, 0xc6c9fe37, 0x6205c1c1, 0x8fa9fea9, 0xd3022dfd, 0x8200028f, 0x00012600,
0x0454fe9c, 0x08638250, 0x47002022, 0x011d4440, 0x01160602, 0x010a0203, 0x01090301, 0x4c040100, 0x00060107, 0x02060302, 0x05050069, 0x8405f542,
0x004d2573, 0x61000101, 0x1e214082, 0x267d8300, 0x111f0020, 0x47241311, 0x0024058e, 0x11151616, 0x0aa25d18, 0x2a09ca7b, 0x11210721, 0x03333636,
0x1860b43c, 0x0808a65d, 0x6477782a, 0x03c64194, 0xcbfd1914, 0x036fac45, 0x88c4688a, 0xa29cbcfd, 0x15187e4d, 0x864f0293, 0xfd494989, 0xa16205af,
0x494739fe, 0x1524af84, 0xc604d1fe, 0x1934af82, 0x38403b00, 0x0803010f, 0x010a4c01, 0x03010508, 0x67030800, 0x01242184, 0x02090b63, 0x2a065a45,
0x021b0202, 0x1718194e, 0x56141516, 0x112c0560, 0x070c1111, 0x13012b1f, 0x03231133, 0x5609d844, 0xab280a6a, 0x1d9460bb, 0xa26fc538, 0x2b0b6c56,
0xc3fdde02, 0x2f0130fe, 0x75fd8b02, 0x410f7356, 0x3d3a0547, 0x40041bfe, 0x42007b05, 0x1d409000, 0x06023233, 0x05013e07, 0x021b1c06, 0x18690504,
0x002b3214, 0x03010302, 0x06007202, 0x06040500, 0x01006705, 0x21028200, 0x39650065, 0x691f2006, 0x20250820, 0x401b4e03, 0x212d852c, 0x2ea38001,
0x0c40592c, 0x25212525, 0x25131124, 0xec82092a, 0x1d905718, 0xc6563320, 0x16322117, 0x2705c444, 0x0415021e, 0x8ecf6f40, 0x230e6265, 0x52e0830e,
0x2016d956, 0x07ff5691, 0xba250125, 0x69590d74, 0x09230e34, 0x566b5664, 0x0a5710e8, 0x8200200a, 0x00012e00, 0x04d1feaf, 0x0062059d, 0x402a0010,
0x22f58227, 0x41060003, 0x072308df, 0x4c050501, 0x112008a6, 0x082a0086, 0x012b1e07, 0x23113301, 0xa6552303, 0xb8022709, 0x9c6b7a01, 0xaa55301f,
0x08c84108, 0x2008ae55, 0x090f5600, 0x00142308, 0x10334036, 0x01040101, 0x0401064c, 0x00010109, 0x00670104, 0x02000005, 0x07670005, 0x1a030301,
0x1b4d084d, 0x47142005, 0x102408ab, 0x2b1f070a, 0x23217084, 0x052d5211, 0x33013324, 0x83820101, 0x37022a08, 0xbfbf5d6c, 0x01316c5d, 0x8cfecb43,
0xfeda9a01, 0x2c0131a6, 0x7afd5a01, 0xc0fd6205, 0xaefe5201, 0x7cfd4002, 0x860222fd, 0x20838200, 0x06bb4541, 0x3b001428, 0x01013840, 0x83840801,
0x08257482, 0x00670304, 0x25218208, 0x0a670108, 0xf9830209, 0x00010223, 0x051e5600, 0x14001422, 0x1122fe86, 0x88820b12, 0x23020922, 0x353d8b85,
0x15333533, 0x15231533, 0x70040133, 0xbc016afe, 0x9a86feea, 0xc79090c7, 0x019bdada, 0x8380826c, 0xfd832b78, 0x8d21047d, 0xfd8db4b4, 0x83833e02,
0x83821320, 0x6205b12a, 0x33000e00, 0x010d3040, 0x4c35fd82, 0x00000400, 0x67000401, 0x03020200, 0x0301055f, 0x074d1a03, 0x081c5706, 0x0e000e22,
0x57097544, 0x2108051d, 0x11213523, 0x01330133, 0xfec70301, 0xe9c58781, 0x0188ae01, 0x64fed171, 0x8402c201, 0xbc047cfd, 0x2257fda6, 0x00012207,
0x064b549c, 0x30000f24, 0xe3412d40, 0x0708210e, 0x8b4eea84, 0x13a25309, 0x097f6818, 0x78120428, 0xfe831f9c, 0x5854c616, 0x8868180a, 0x0001220a,
0x20db827c, 0x074b45be, 0x00050028, 0x02050102, 0x14820067, 0xcf825f20, 0x1a040423, 0x06a7534d, 0x8a134b45, 0x16be2f66, 0xfec6fafe, 0x01c7c767,
0xa2620599, 0x638c40fb, 0x54fe3624, 0x63829f04, 0x00222508, 0x20464049, 0x17070201, 0x0b020301, 0x0a030101, 0x04010001, 0x0701084c, 0x07030200,
0x04006902, 0x005f0604, 0x22051659, 0x451b0303, 0x222d0e4c, 0x11112100, 0x24241311, 0x1d070927, 0x064d452b, 0x2008656b, 0x0a4e4535, 0x98831120,
0x33363c08, 0x4480db03, 0x8357874d, 0x40264a65, 0x3f44792d, 0xbd284e2b, 0x02bdf2fe, 0x03725588, 0x5d8d4d89, 0x8e653dfd, 0x187b4d48, 0xd0029316,
0x23214b4a, 0xbd045efd, 0x620543fb, 0x824ed9fd, 0x0cd355ed, 0x27402a22, 0xad821282, 0x03006326, 0x065f0503, 0x550b6843, 0x1a4114d4, 0x13042905,
0x821f9c77, 0x05c616fe, 0x5806d355, 0x3a08060b, 0x43000200, 0x8c0409ff, 0x2e007b05, 0x41003a00, 0x01163e40, 0x01170102, 0x01310204, 0x02090503,
0x04030002, 0x0205064c, 0x04004900, 0x04030500, 0x02006905, 0x00610102, 0x721f0101, 0x203d0885, 0x262b4e00, 0x2a262535, 0x2b1c0706, 0x17070200,
0x27071716, 0x23062726, 0x35022622, 0x0b1b4c34, 0x10150625, 0x74323312, 0x7e0808af, 0x04151616, 0x36361716, 0x23263435, 0x04150622, 0x377a858c,
0x5f7b4126, 0x483f2039, 0x948afca8, 0xa97893f8, 0x83416658, 0x5d975d49, 0x0710a5bb, 0x93514441, 0x4d91645d, 0x383932fe, 0x4341514e, 0x7f014844,
0x474afefe, 0x7b5c5631, 0xa50f2a48, 0xe1e44201, 0x42a64201, 0x31357e47, 0xfec4f76d, 0x01f6fee3, 0x635cb664, 0x99545a9f, 0x569f6265, 0x617cad2c,
0x005d685e, 0xfe750001, 0x8276041c, 0x2f2108f3, 0x37403a00, 0x0203011d, 0x04021e2b, 0x092c2f03, 0x08040103, 0x04010001, 0x0304004c, 0x01040301,
0x822c8280, 0x00662502, 0x61020303, 0x1f2dfa82, 0x24264e03, 0x0525242c, 0x042b1b07, 0x056a5c16, 0x8206185b, 0x182720c5, 0x331cc770, 0x3f4d6103,
0x576e4f75, 0x2b3e202f, 0x4c4a3a38, 0xa084ea97, 0x12c57018, 0x71ae3e36, 0x43487744, 0x6f323866, 0x343c1311, 0x1431763d, 0xcf3201b0, 0x7018d983,
0x3d340cc4, 0x00000b51, 0x4a000100, 0x6704d1fe, 0x0b006205, 0x27402a00, 0x02270f82, 0x04630201, 0x42000001, 0x8148071c, 0x0cf05708, 0x21072a08,
0x23113311, 0x21112303, 0x15670435, 0x9c7766fe, 0x58fe821f, 0xfba56205, 0x0130fee4, 0xa5bd042f, 0x00ffff00, 0x04000025, 0x225b828b, 0x847b0002,
0x2a0f876b, 0x4029000e, 0x01010e26, 0x484c0100, 0x682108f5, 0x05525706, 0x1b030323, 0x054c5703, 0x0710112b, 0x012b1d07, 0x15330133, 0x05ea4823,
0x033c0b82, 0x68fecfbc, 0xfdc8fdc6, 0xdb68fec6, 0x62055c01, 0xfe8e13fd, 0x8ee70119, 0x5efded02, 0x3520cf83, 0x8520cf82, 0x0f2c7382, 0x25402800,
0x03070a0d, 0x4c010400, 0x01237d84, 0x44010563, 0x022d0508, 0x4e021b02, 0x11121212, 0x07061111, 0x0855461c, 0x01230122, 0x39053968, 0x675301cb,
0xfe2f1f9c, 0xd5b6feb9, 0x7afeaa01, 0x011f01e0, 0xe802d521, 0xdc83b9fd, 0xfd5f022b, 0x02de02a1, 0x02fdfd84, 0x27588203, 0x00000100, 0x6804d1fe,
0x31227384, 0x0f822e40, 0x0554012a, 0x04030301, 0x0207085f, 0xd9837083, 0x35208b58, 0x07213523, 0x11211123, 0x9a640404, 0xf444fd1e, 0xe115ae02,
0x6f438801, 0x99c92608, 0x04d9fb99, 0x206f85c0, 0x0657455d, 0x32001736, 0x01152f40, 0x01060405, 0x4c020503, 0x03000500, 0x69030500, 0x01232482,
0x56630100, 0xec850617, 0x23142323, 0x05504111, 0xb8412520, 0x0e1a5a05, 0x43331121, 0x1e5a05e3, 0xa1c6210a, 0x205aed84, 0x9b02260c, 0x00010000,
0x06fb525d, 0x60001a2c, 0x181a0c40, 0x07060502, 0x81830204, 0x22b04b26, 0x1e405850, 0x02208883, 0x25598882, 0x02022706, 0x06005f06, 0x764c1c06,
0x871c2008, 0x06002720, 0x06010200, 0x28866702, 0x1b01012c, 0x40594e01, 0x1413110a, 0xad851521, 0x2706c65a, 0x35231507, 0x26262223, 0x0805eb51,
0x33111723, 0x03373611, 0x36c6c64d, 0x15773563, 0xc764b87a, 0x78777173, 0xfa620556, 0x2827029e, 0xbfce0d33, 0x05d35a65, 0x07817f28, 0x25fee201,
0xf75c5315, 0x05512c08, 0x00140062, 0x112c402f, 0x63040101, 0x05210573, 0x094c6301, 0x055d1a20, 0x29308207, 0x11130014, 0x06142313, 0xa5451a07,
0xb4461805, 0x267f820a, 0x3d033336, 0x4ac660b4, 0xc62005df, 0x2307db4a, 0xd4012afe, 0x2107d44a, 0xd34a98fd, 0xfe9d2406, 0x82b204d1, 0x00172877,
0x112f4032, 0x82060301, 0x02032277, 0x0611474c, 0x5007af41, 0x7f480591, 0x82222005, 0x0daf4178, 0x23263427, 0x11070622, 0x08fa8323, 0x1632335b,
0x40041516, 0x7e1f9c72, 0x885a807b, 0x82c6c639, 0x5fb57fc8, 0x0130fea1, 0x87d4012f, 0xfd474888, 0xfd6205ac, 0xc46887a1, 0x02000088, 0xe7ffffff,
0x7b057104, 0x2e002800, 0x3f404200, 0x04021819, 0x01010906, 0x02010a00, 0x084c0301, 0x03040207, 0x04010001, 0x06006900, 0x07c65106, 0x0201013c,
0x02020061, 0x294e0220, 0x292e2929, 0x1c24262e, 0x11222613, 0x2b1d0709, 0xa2510700, 0x68362005, 0x02250626, 0x35022e27, 0x240d8434, 0x33161415,
0x05d05133, 0x27151223, 0x08b38202, 0x71040357, 0x0462fd06, 0x57377c9a, 0x44582b3f, 0xcf8d69a4, 0x7a560876, 0x7b23283d, 0x33331314, 0xc5750b09,
0x63ba8280, 0x6b7708b6, 0x980218ec, 0x18e9f736, 0x3b711d24, 0x1d018e48, 0x6c4001d0, 0x33613b43, 0x223b2d37, 0x01c83433, 0xfe9d9921, 0x012fe0cc,
0x16fee604, 0x21d78400, 0xd7842dfe, 0x3f00392b, 0x11407f00, 0x0502292a, 0xa84e1807, 0x6e032009, 0x282d0687, 0x02000100, 0x80020100, 0x05020809,
0x20e88204, 0x28e88205, 0x61060707, 0x1f060600, 0x2ae3824d, 0x03006203, 0x4e031e03, 0x9325401b, 0x0002262a, 0x66030203, 0x35318700, 0x40594e07,
0x3a3a3a11, 0x263f3a3f, 0x23191c24, 0x0a11222c, 0x14411e07, 0xaf4e180c, 0x02262212, 0x28244103, 0x18635621, 0x240cbc4e, 0xcbaf5452, 0x2031410a,
0x29204c23, 0x3e58184b, 0x784c2709, 0x3e011f30, 0x41411701, 0x126b581a, 0x0000152a, 0x07079b04, 0x2b012200, 0x2f092762, 0x9d000100, 0x3e0454fe,
0x1d006205, 0x32403500, 0x29073b4e, 0x05004c02, 0x05030200, 0x68446702, 0x0ee94806, 0x00821120, 0x26242527, 0x2b1d0707, 0x11314e01, 0x61232621,
0x0223086a, 0x4eabb3d6, 0x3930082e, 0xc6e96980, 0x5201bac6, 0x180403cf, 0x33feb9d4, 0x2d062a4e, 0x765dd801, 0x0596fd3a, 0x02a9fd62, 0x93820057,
0xd1fe1d34, 0x62059304, 0x2c001300, 0x010d2940, 0x010c0002, 0x93820201, 0x01211b83, 0x08c35163, 0xb05e4d20, 0x821b2005, 0x0510258c, 0x252b1b07,
0x20057a62, 0x0a696121, 0xdf03212d, 0x469da2b4, 0x2ce2fe81, 0x61745625, 0x022e066e, 0x2cfea591, 0xbd042f01, 0xc4fe86fe, 0x7161befe, 0x050f410b,
0x7b821320, 0x35001529, 0x01083240, 0x85070402, 0x0006307b, 0x03060403, 0x00010567, 0x004d1a00, 0x831b0404, 0x6101277d, 0x1e010100, 0x81824e01,
0x23241222, 0x4f06d346, 0x21290c3f, 0x33112311, 0x4d032111, 0x080641c6, 0x2107e84a, 0xff8630fa, 0xfdfd0223, 0x21fc827e, 0xdf8300c3, 0xfb828720,
0x7f828820, 0x2235574b, 0x4a132303, 0x032109f0, 0x28fb85d4, 0x01c6c63f, 0xfb6205c1, 0x4af58343, 0x6f840af4, 0x6f825d20, 0x173def83, 0x2f403200,
0x00060117, 0x06040108, 0x06004c02, 0x06030400, 0x03006904, 0x02030200, 0x20f68663, 0x07866001, 0x4d06bf44, 0xe08205b2, 0x820e7146, 0x1f9a23ee,
0x70468f9c, 0x061f5f0a, 0x8601d022, 0x200e9360, 0x827f8226, 0x0021089c, 0x40360018, 0x0a0d1633, 0x01050303, 0x0503004c, 0x00030500, 0x02000080,
0x7e020005, 0x01020100, 0x0ccf4a86, 0x16111223, 0x08434516, 0x6f18f483, 0x2b081182, 0xa21f0421, 0x5d469aa3, 0xbd010826, 0x0603c9ba, 0x014eb720,
0x01acb601, 0x2cfea503, 0xbb022f01, 0x1c67c1a8, 0xb2034efc, 0x8f994f75, 0x07896f18, 0x08a37e18, 0x22000724, 0x4f650400, 0x001f240c, 0x18920400,
0x2111737e, 0x9b4ce8ff, 0x00022206, 0x0a6f670e, 0x01213f82, 0x203f8528, 0x2d06822a, 0x51000200, 0x5704e7ff, 0x17007b05, 0xe9831f00, 0x02080924,
0xe8820100, 0x04000026, 0x67040005, 0x02240b82, 0x02020061, 0x38050b53, 0x03006103, 0x4e032003, 0x1f181818, 0x25161e18, 0x07112225, 0x122b1b07,
0x0a8a5c37, 0x11002024, 0x484b0214, 0x00470805, 0x1e213736, 0x07513302, 0xa8093503, 0x4e8d5c9b, 0x7fcc5863, 0x0d010001, 0xa29fe97d, 0x91027ae5,
0x84fd0d9e, 0x68894c06, 0xfb32ce02, 0x72393be5, 0xa0fe524b, 0xfee4a7fe, 0x019daeb7, 0xebfde035, 0xd3acf6ea, 0x85ffff61, 0xe60637a3, 0x85012200,
0x06010000, 0x01f10f07, 0x02b10800, 0xb001b002, 0x1f822b35, 0xad821520, 0xe5069b22, 0x21084344, 0xdb82ff0f, 0x3d201782, 0x4020db82, 0x2c201784,
0x0f21f384, 0x230682f8, 0x83000100, 0x2c081782, 0x0062052d, 0x4046001b, 0x04011a43, 0x03011505, 0x02010b00, 0x01010a03, 0x064c0402, 0x03000001,
0x67030002, 0x05040400, 0x0505005f, 0x0853431a, 0x4e012033, 0x18190001, 0x12141617, 0x06080d0f, 0x1b011b00, 0x055b5907, 0x2609c367, 0x36323316,
0x55213435, 0x30080794, 0xe2eb6002, 0x9299e47c, 0x54635ac5, 0x9c906891, 0x01eae9fe, 0x03aefdb0, 0x0351fe34, 0x81b6cd20, 0x4d4d6fc6, 0x92363a77,
0x0189ef84, 0xfe9ea1ab, 0x20bb855c, 0x22d3829d, 0x82c20613, 0x053f67d3, 0xd3861920, 0xeb831785, 0xeb871785, 0xd3825520, 0xeb845b20, 0xeb853620,
0x00212f83, 0x6f701803, 0x0016330a, 0x4036001d, 0x00020033, 0x04020504, 0x03010667, 0x164d0103, 0x01072205, 0x055a6d05, 0x4e002038, 0x10101717,
0x1c171d17, 0x1610191a, 0x26161510, 0x19070822, 0x7018002b, 0x002e0e88, 0x26210706, 0x36122326, 0x16162137, 0x70180433, 0xfd300c8a, 0x020c9369,
0x94920b64, 0xfd06939a, 0x98970698, 0x10927018, 0xe82a022c, 0xfbe8ecec, 0xf6f7f7ae, 0x535600f8, 0x20bb8408, 0x23bb898d, 0x4b00ffff, 0x3c20d382,
0x4b201784, 0xe6201785, 0x200b7765, 0x087765c2, 0x8b131921, 0x88e52017, 0x8b0f2017, 0x7f072117, 0x13211788, 0x242f856d, 0x0400005d, 0x205f8413,
0x205f853f, 0x2d0682e9, 0x01010100, 0x4604d1fe, 0x09006205, 0x9e472800, 0x02012205, 0x21198263, 0xcc4b5f04, 0x089e4c05, 0x09000923, 0x24008211,
0x2b1a0706, 0x089d4c01, 0x1546042d, 0x9c7a96fd, 0x6205851f, 0x64e8fba9, 0xcb82058c, 0x6b823b20, 0x6b847520, 0xe3894620, 0x00010027, 0x0454fe7e,
0x086b829d, 0x47001b20, 0x010e4440, 0x010d0605, 0x4c020504, 0x06020300, 0x80060302, 0x07010108, 0x01030201, 0x35826702, 0x5f092008, 0x1a090900,
0x0606004d, 0x05004d1b, 0x00610405, 0x041e0404, 0x111a1b4e, 0x23241211, 0x52111111, 0x21260538, 0x21152111, 0xef453311, 0x5535200b, 0x212205b6,
0xb6558804, 0x457c2005, 0x7c2d08f5, 0x4503c1c1, 0xa9feb904, 0xfecefd8f, 0x06f945f1, 0xcb557b20, 0x82182009, 0x828c209f, 0x00192c9f, 0x193a403d,
0x04101316, 0x82080500, 0x01072191, 0x4c280482, 0x03050000, 0x80030005, 0x21070445, 0x7f460303, 0x8212200c, 0x067f4600, 0x8f8e2520, 0xf94c0120,
0x04012307, 0x8d888b01, 0xff4c4820, 0x7dfe220e, 0x4d948aa1, 0xfd230a04, 0x66010086, 0x113008b3, 0x2c402f00, 0x0504010d, 0x00010104, 0x01074c02,
0x20065b4a, 0x20968568, 0x05cc6302, 0x11121123, 0x26038211, 0x1e070810, 0x8321012b, 0x0123277e, 0x01213521, 0x02820133, 0x68042127, 0x810192fe,
0x207f85e0, 0x220b8281, 0x4da7fe6a, 0x28080583, 0x7601a4fe, 0x69fd9702, 0xa1fd5f02, 0x02919702, 0x02fdfd3a, 0x00c6fd03, 0x00590002, 0x05000400,
0x000c0062, 0x40320014, 0x3091822f, 0x03010403, 0x02020067, 0x01064d1a, 0x60000404, 0x05555305, 0x0d0d4b08, 0x140d0001, 0x0e10130d, 0x07090a0b,
0x0c010c00, 0x2b160707, 0x26262221, 0x36363435, 0x33113333, 0x23112711, 0x10150622, 0x985e0221, 0xee8184e9, 0xc6c6d0a2, 0x01a39ad1, 0x8dbf5e37,
0x0268c589, 0x9d9efa02, 0x908c2902, 0x7782f3fe, 0xe4ff1224, 0x77829204, 0x2a001f36, 0x41404400, 0x04020922, 0x084c0106, 0x06020501, 0x80060502,
0x062c2182, 0x69060204, 0x1a030300, 0x0207094d, 0x61208882, 0x3706e65e, 0x00002020, 0x29202a20, 0x1f002325, 0x11231f00, 0x0a252326, 0x012b1b07,
0x51061750, 0x94890502, 0xcb441420, 0x00272305, 0x9e843736, 0x65080f82, 0x560a8804, 0x7f546496, 0x55a15f24, 0xc565558f, 0x37ba598e, 0x0a4f4233,
0x2854d9fd, 0x5785785a, 0x82f20248, 0x70ecb47c, 0x5e9a4b4f, 0xd49485bb, 0xfb080270, 0xad5b59ce, 0xfd8c76c7, 0x01524b8a, 0x88a5a1af, 0x0001007e,
0x04e7ff2f, 0x00620581, 0xb5170124, 0x0201011b, 0xb04b4c01, 0x4058500c, 0x0206071f, 0xca820002, 0x49670121, 0x052d0a50, 0x00620005, 0x00200000,
0xb04b1b4e, 0x2826820e, 0x06010726, 0x06030203, 0x9ced8302, 0xa50f202d, 0xac102054, 0xa3112054, 0xa6402054, 0x835920a4, 0x0f402100, 0x2439df82,
0x21282400, 0x24132124, 0x2b1c0708, 0x10151601, 0x26222302, 0x35230327, 0x06a85f33, 0x20333529, 0x06141504, 0x41161307, 0x4e080699, 0xc30a7704,
0x43a982aa, 0x9390a29c, 0xb4a79796, 0x010401b6, 0x8f94930b, 0x513c512b, 0xf8020a5b, 0xf0fe7882, 0x8f85f9fe, 0x7a964a01, 0x98717e86, 0xb490c1c6,
0x5dc1fe2d, 0x6ecfae4d, 0x0100008c, 0xd1fe8c00, 0x62055904, 0x32001800, 0x61182f40, 0x00230627, 0x57040003, 0x00230819, 0x54060505, 0xd74a0559,
0x20a08205, 0x0c274e11, 0x35210123, 0x829f8521, 0x339f8508, 0x9c88d103, 0x94fe4d1f, 0x3001e1fe, 0x9a929693, 0x560199fe, 0xb4339983, 0x30fea193,
0x45022f01, 0x7d867997, 0xc2c59872, 0x8226c294, 0x348782f7, 0x04e4ff07, 0x00620599, 0x40350021, 0x02111232, 0x4c010300, 0x29328205, 0x03040103,
0x01010080, 0x7d825f02, 0xc1531a20, 0x2937820b, 0x23210021, 0x0625141b, 0xc2421a07, 0x35262309, 0x694b2311, 0x4211200b, 0x043b07c4, 0x97550a8f,
0x4b825363, 0x3a1321af, 0x2b674d52, 0x2d142a32, 0x33361602, 0x420a4f42, 0x4c3506b4, 0x8e037099, 0xebfe2cfe, 0x478cdcfe, 0x01722c84, 0x0207010d,
0x07bf4245, 0x01227082, 0xa7825c00, 0xa7829c20, 0x68001d3c, 0x5011b04b, 0x08234058, 0x01040701, 0x80010704, 0x01000400, 0x67010406, 0x67640105,
0x97272011, 0x10656425, 0x00001028, 0x1d001d00, 0x00821123, 0x09251424, 0xda8c1d07, 0x88094b67, 0x829220d6, 0x826420d6, 0xebfe26d6, 0x1501bbbb,
0x29cf8ebb, 0x7efd4901, 0xbffd6205, 0xc68a4102, 0x07db7f18, 0x007b0525, 0x84260002, 0xff1e24d7, 0x827304e7, 0x00182dd7, 0x062d4030, 0x04010501,
0x80040501, 0x085a5518, 0x004d1a26, 0x61000404, 0x2c632a82, 0x00182805, 0x11112218, 0x44072514, 0x3c080b3d, 0x21113526, 0x21072135, 0x32331411,
0x27343536, 0x790a6904, 0x995e6dc1, 0x03a3fe5a, 0x86fe15b2, 0x0a7c6194, 0x7782f602, 0x5573f0b3, 0x5f0378a8, 0xabfca7a7, 0x6dcbb1e5, 0x0001008c,
0x357f8470, 0x002c007b, 0x033c403f, 0x00010202, 0x01020124, 0x03021819, 0xcd670302, 0x002c2621, 0x2125242b, 0x218e8424, 0x44181600, 0x333009e5,
0x22230733, 0x16141506, 0x37323316, 0x23040617, 0x08067245, 0x022e3765, 0x36363435, 0xe6090333, 0xa8516c68, 0xa2a0816a, 0xdc17e77d, 0x934daa8f,
0x71adce66, 0x97fdfe5b, 0x5b80ef9f, 0x84535c98, 0x8cdc7b4b, 0x57557b05, 0x6e414072, 0xa16d6a67, 0x7851817e, 0x5f6b8f41, 0x7bc16d66, 0x0a559666,
0x4f794a0d, 0x005da86c, 0x15000100, 0x130454fe, 0x19006205, 0x28402b00, 0x82081415, 0x06a54dba, 0x00030326, 0x0000005f, 0x2c09484a, 0x124e011e,
0x04102324, 0x012b1a07, 0x0ba94721, 0x264e1120, 0x4601230a, 0x1a47cd02, 0x0b996f08, 0x4d620521, 0x052108a4, 0x0e9f6f38, 0x02248782, 0xc004e7ff,
0x17358782, 0x27402a00, 0x03060e15, 0x01020004, 0x00010d4c, 0x02020049, 0x06527403, 0x00010137, 0x4e001b00, 0x12121b12, 0x1b070511, 0x2301012b,
0x01230303, 0x0c3c4303, 0x13132c08, 0x01920333, 0xdde6bf2e, 0xc72701b7, 0x3a132072, 0x2b664e52, 0x2d142a32, 0xc2c59701, 0xfde302b5, 0xfd5a021d,
0x01e002a6, 0x4334fedf, 0xfd240e36, 0x000202fe, 0x02260082, 0x00006200, 0x8f82a004, 0x70821220, 0x36403930, 0x05020e12, 0x01010206, 0x074c0205,
0xaf820501, 0x69010525, 0x87060600, 0x85022098, 0x13142d98, 0x1b13181a, 0x21151b14, 0x08102311, 0x2133a082, 0x06060123, 0x23112323, 0x16322111,
0x13151516, 0x44050133, 0x32080576, 0xa0041123, 0x39cefed1, 0xbb4a5e9f, 0xc0850201, 0xfebbd166, 0x7414feaf, 0x4b72828a, 0x45407c02, 0x620509fe,
0x1081c169, 0x66fdbb01, 0x899a8936, 0x84c8fd8c, 0x820d2097, 0xac230897, 0x16006205, 0x43001f00, 0x01084040, 0x4c010702, 0x07000600, 0x67070602,
0x0009010a, 0x02090002, 0x5e010867, 0x002309a6, 0x595f0100, 0x172a06d4, 0x171f1717, 0x1111221e, 0x03822711, 0x070b1026, 0x21252b1f, 0x0322ac83,
0xd7470123, 0x07212306, 0x12821121, 0x0805da47, 0x33161423, 0xa2010a03, 0xde809afd, 0x760401db, 0x95db7577, 0xfe179402, 0xfe320184, 0x7b4ec4ce,
0x9b6a7c89, 0x056b679b, 0x83bd373b, 0x9c66bb7e, 0x4d9c44fe, 0x81870f02, 0xff008384, 0xfe5700ff, 0x05ae04a6, 0x2192827b, 0x0f830058, 0xbb820720,
0xbb82a920, 0x75000222, 0x0122cb82, 0x0f82a600, 0x0f829320, 0x3100142d, 0x13142e40, 0x0d0e0f12, 0x8304070c, 0x020427ab, 0x0004004c, 0x99440001,
0x41022008, 0x15200560, 0x1128b682, 0x1c070612, 0x0107012b, 0x2e08df5c, 0x17372737, 0x17033337, 0x99480307, 0x5ceae401, 0xab2e05e4, 0x96ee4ce8,
0x4cd5d3d1, 0xfddebc03, 0xe75c0222, 0x8ff33106, 0xfed5937a, 0x007983cf, 0xefff0100, 0x8e0454fe, 0x2b317f82, 0x46404900, 0x06020128, 0x03021721,
0x020b2002, 0x5ff58201, 0x554d0df5, 0x0ebe5109, 0x2b29c882, 0x111b2a00, 0x27242413, 0x5a978208, 0xa5421aa7, 0x3611370c, 0xd9033336, 0x874c3f76,
0x4a658357, 0x792d3e28, 0x4727383a, 0xe845bb25, 0x5b273b0d, 0x4b890339, 0x2afd5485, 0x4d488e65, 0x9416187a, 0x4a4bd002, 0x5bfd2120, 0xf345c704,
0xdafd2210, 0x05b55a26, 0x7f5b3420, 0x00262b06, 0x244c404f, 0x17090701, 0x7f5b0401, 0x010a320a, 0x04020009, 0x00690209, 0x03040007, 0x08670407,
0x17835b01, 0x25002623, 0x83008311, 0x070b22dd, 0x1f855b1f, 0x21113325, 0x82113311, 0x10895bd8, 0x45bb2721, 0x532106ea, 0x138b5b73, 0x5dfd2222,
0x26064c51, 0xfd4102bf, 0x82004dda, 0x00022300, 0xf76e003c, 0x184f6805, 0x4f686720, 0x35232238, 0x104f6833, 0x689e7121, 0x8e2d054f, 0x01c6b2b2,
0xbafdfe03, 0x939da392, 0x074d68bf, 0xb8872325, 0x68c587b8, 0x0023084d, 0x73000200, 0x2e0807df, 0x001b000f, 0x15464049, 0x05040212, 0x01020205,
0x004c0204, 0x06040605, 0x00800405, 0x01020100, 0x07800200, 0x01000401, 0x68010400, 0x74060600, 0x99480646, 0x10113705, 0x1314181a, 0x1b111b10,
0x13221121, 0x2b1a0708, 0x13070600, 0x35442723, 0x20440806, 0x32011504, 0x17330337, 0x21103536, 0x60041123, 0x9e9f555d, 0xac806b7b, 0x016d01c7,
0xfd1a0103, 0xad3a52f4, 0xfe3b839e, 0x3f03bac8, 0xfbfe39b1, 0x09fe23ca, 0xd8d76205, 0x0110e0fe, 0x8644d71b, 0xcafd1801, 0xff248482, 0x0452fe47,
0x26088b53, 0x0104010c, 0x8303010b, 0x580620a7, 0x94520559, 0x08706109, 0x4e031e22, 0x5305a24d, 0x2321078b, 0x0df54511, 0x22058b53, 0x4516fec6,
0xc62008ef, 0x2305bc71, 0x0efd8202, 0x0806954d, 0xfddf052e, 0x000000c3, 0xfee6ff03, 0x05c804d1, 0x001c0062, 0x00280024, 0x0a4f4052, 0x010e0801,
0x01080601, 0x03010567, 0x00530306, 0x5f070c0c, 0x0806b162, 0x100f1129, 0x0606040d, 0x02045f00, 0x1b000002, 0x25254e00, 0x28251d1d, 0x26272825,
0x241d241d, 0x1b1c1e1f, 0x1718191a, 0x85111511, 0x07122400, 0x67012b1f, 0x2129089f, 0x33112303, 0x37123636, 0x061b7313, 0x33133e08, 0x03231101,
0x07060206, 0x11231121, 0xacbc0c04, 0x86793494, 0x1e4ffe1d, 0x2b1e4183, 0x01200f27, 0x36986393, 0x1dfd9981, 0x250b1368, 0x08022b37, 0xfdda0263,
0xfd860226, 0x01d1fe7a, 0x2b03822f, 0x019f4cbb, 0xf001e01b, 0x4902b7fd, 0xfb320383, 0xfe4a042a, 0xedfedb94, 0xfa0145ab, 0x030006fe, 0xdf826a00,
0xdf826d20, 0x00172408, 0x0023001d, 0x144b404e, 0x0b080701, 0x02070901, 0x0007004c, 0x09070009, 0x01010367, 0x0b540100, 0x5c080801, 0x0c230734,
0x7303040a, 0x1e30097f, 0x1e18181e, 0x20231e23, 0x181d181f, 0x1616141d, 0x1025dc83, 0x2b1e070d, 0x09da7a25, 0x26261329, 0x11331127, 0x82171614,
0x052b08de, 0x33070607, 0x06210219, 0x21040706, 0xfd1f9c4c, 0x4b9c1f73, 0x8c934d89, 0x4439c101, 0x37022f12, 0x071b76fe, 0xeafefc0d, 0x7a4a6927,
0x220808ed, 0x236c0198, 0x0c01bcd2, 0x8370f9fe, 0x8f01891e, 0x5944f89f, 0xdefb9501, 0xe0c2f001, 0x0000004e, 0x82030001, 0x564f20cb, 0xea5c3333,
0x0c335605, 0x9c77d826, 0xcffe821f, 0x200b3256, 0x568a84a4, 0xff2d1332, 0xff7e00ff, 0x041b04e7, 0x00020037, 0x228b828b, 0x828d0002, 0x2123080f,
0x1d00df05, 0x36002b00, 0x1a263340, 0x01020302, 0x0212134c, 0x01044a01, 0x03020001, 0x05690201, 0x49030301, 0x1e2907e7, 0x1e00001e, 0x242a1e2b,
0x25328222, 0x0706261c, 0x55182b17, 0x02330909, 0x36123435, 0x37363637, 0x07060617, 0x3607020e, 0x5f123336, 0x5c080617, 0x16141507, 0x11033316,
0xcf7461af, 0x74cd8888, 0x799aaa44, 0x40514b8c, 0x6c5b6e99, 0xa8360e44, 0x72882e6a, 0x3396556a, 0x034e713d, 0x96db75db, 0x827aeea6, 0xe5cd0f01,
0x34bf2801, 0x8e323f29, 0x21274829, 0x58889c53, 0xa2a5fc62, 0x619fb4cd, 0xad7b815f, 0x00030059, 0x040000d4, 0x29cf8231, 0x001b0011, 0x40440023,
0x73700841, 0x01112c06, 0x4c030205, 0x05000200, 0x52050204, 0x212709d9, 0x0401074d, 0x825f0004, 0x001b36fc, 0x121c1d4e, 0x1c202212, 0x12231d23,
0x291a121b, 0x07082522, 0x2bcf8219, 0x06061415, 0x36112123, 0x16163233, 0x07240b82, 0x33110700, 0x20055648, 0x08068313, 0x1123233e, 0x7785ac03,
0x66fe80cc, 0xc584a9ca, 0xfe72646b, 0x69cc59c8, 0x227b756f, 0xd8fb7d80, 0x76812f02, 0x04428b6b, 0x7c402611, 0x1c735758, 0xfe0c6901, 0x505448d9,
0x52eefc47, 0xaafeae56, 0x01227a82, 0xb7823001, 0x1e041e32, 0x1f000500, 0x01031c40, 0x5f010202, 0x1c010100, 0x22099179, 0x79050005, 0x072f0a91,
0x02c0f001, 0x810317ee, 0x1e047ffc, 0x85ffff9d, 0x4606253f, 0xb4012200, 0x02234f82, 0x82500307, 0x84418206, 0x2f052257, 0x17377e00, 0x02246182,
0x4e021b02, 0x2c16377e, 0xfd17bf5f, 0x1e04c0e9, 0xeffe1101, 0x286b839d, 0x00020000, 0x04d1fe30, 0x2dab823a, 0x0017000f, 0x0d2e4031, 0x01060001,
0x3d7e034c, 0x4d1c240c, 0x82020407, 0x455f202b, 0x15200575, 0x21053a44, 0x5c430810, 0x3e46080c, 0x21133702, 0x0e072107, 0x03210702, 0x1f9b51e9,
0x9b1f6afd, 0x283b3049, 0xb702190d, 0x0bb4febf, 0x3e45270d, 0xfe990e02, 0xfe2f0138, 0x2ac801d1, 0x01b8d778, 0xc1b29654, 0x002d79d6, 0x9200ffff,
0x1f04e7ff, 0x91823704, 0x8800a221, 0x3506260f, 0xb8012200, 0x207b8200, 0x4b6a1807, 0x00f4230d, 0x27820022, 0x07020024, 0x1e821400, 0x00010027,
0x0400001f, 0x20c78291, 0x22c58315, 0x65020611, 0x07270d80, 0x03030205, 0x45084d1c, 0x15230612, 0x82111214, 0x26048200, 0x1f070a10, 0x7e23212b,
0x0239132b, 0xca66a0a8, 0xbbe2f4b9, 0x67a067b5, 0xf4e2b5bb, 0x0163cabc, 0x0218fee8, 0x23058236, 0xfeab0155, 0x18250383, 0xe801cafd, 0x207f8200,
0x20bf8263, 0x08bf8210, 0x4a002822, 0x010a4740, 0x01090201, 0x01140100, 0x011e0005, 0x011d0504, 0x4c050403, 0x00000106, 0x05000405, 0x20086557,
0x082f4621, 0x4e032032, 0x25270001, 0x1a1c2022, 0x05070c0e, 0x28012800, 0x43056756, 0x27210761, 0x08b04236, 0xd4611620, 0x61202005, 0x450808d4,
0x02372321, 0x7b766536, 0x46a95174, 0x71df5259, 0x7670c17a, 0x7d9c7a66, 0xf2fe8edc, 0xb15059b8, 0xff8e886f, 0x020dd700, 0x4e445370, 0x702c304e,
0x8241443c, 0x1c74555d, 0x6c6c7f0d, 0x78924e99, 0x56633a37, 0xc38294a3, 0x0000bf3a, 0x1e04f103, 0x24000e00, 0x050d2140, 0x01020002, 0x0203044c,
0x4d1c0202, 0x33063d4c, 0x0e000000, 0x14110e00, 0x19070511, 0x2311012b, 0x01373411, 0x08075f7d, 0xbdf10321, 0xe050fe1b, 0x010c0ebd, 0xfb1e04ab,
0xd4d401e2, 0x04b1fca7, 0x692dfe1e, 0x4b0342cd, 0x8400ffff, 0x0b06255f, 0xbd012200, 0x02234882, 0x82fe3e07, 0x20178806, 0x21178835, 0x00830002,
0xb1000226, 0x7104d1fe, 0x0f282f82, 0x70002300, 0x19210e40, 0x2f0b237e, 0x5029b04b, 0x001f4058, 0x02030002, 0x01086303, 0x6120a182, 0x1f323682,
0x0601074d, 0x054d1c06, 0x1b040401, 0x401b4e04, 0x4c7e001d, 0x2b1f8812, 0x00164059, 0x1d222300, 0x151a1b1c, 0x21234f7e, 0xf0893634, 0xea013322,
0x320f507e, 0x9d8fa392, 0x090e7747, 0xb9de63fe, 0xa3010d12, 0x7e0205e0, 0xfb350b51, 0x0135fe9a, 0x81d4012f, 0x93fc3eda, 0x2dfe1e04, 0x033fe377,
0x34b5826c, 0x00c80001, 0x04780400, 0x000c001e, 0x08244027, 0x01020501, 0x2bda824c, 0x05020005, 0x01010367, 0x044d1c01, 0x3405c54b, 0x11111211,
0x07061011, 0x23212b1c, 0x33113311, 0x01013301, 0x2e018223, 0xc9c0c088, 0xfed02401, 0xe18b01a8, 0x82c5b6fe, 0x015a2c5c, 0xfd18fea6, 0x00e401ca,
0x85ffff00, 0x4606255f, 0xc1012200, 0x02236f82, 0x82280307, 0x01002706, 0xe7ff4b00, 0x77820204, 0x4417477e, 0x477e0ab5, 0x072b080d, 0x2707020e,
0x1337023e, 0xfec00204, 0x3c111490, 0x3a51696c, 0x200f3141, 0xe2fb1e04, 0xedfe8403, 0x7b3a81f7, 0xc9d25b25, 0x8200a101, 0x824e2067, 0x826220df,
0x00162a67, 0x152b402e, 0x0103070b, 0x18e18203, 0x200bd78a, 0x0a16611c, 0x1600162a, 0x11171711, 0x2b1a0706, 0x07d78a18, 0x82032321, 0x15163d01,
0x23030714, 0x13133313, 0xb44b1704, 0x08020925, 0x08dcb2c6, 0xb21b0704, 0xc4d6f149, 0x01357983, 0x26857bea, 0x024cfd54, 0x6a513cb4, 0x0415fe82,
0x023cfd1e, 0x21eb85c4, 0xdf4200bf, 0x000b2405, 0x4d1e4021, 0x7a880b23, 0x00831120, 0x51075d41, 0x0336087b, 0x4efec0f1, 0xb201c0c0, 0xfece01c0,
0xfe1e0432, 0x00b70149, 0x5c18ffff, 0x0222085f, 0x6818d500, 0xf12008ab, 0x0720e382, 0x8b0bf37e, 0x0cf37e5b, 0x03255585, 0xfc850332, 0x8234827b,
0xfebf2b4f, 0x04270455, 0x00020037, 0x5f8300e1, 0xe7ffb024, 0x0f841104, 0x5f849820, 0x00007c24, 0x5f874004, 0x01010325, 0x825f0001, 0x07f54517,
0x5f84ba82, 0x07211322, 0x2130b983, 0x16c4037c, 0xfec08efe, 0x9b1e0484, 0x83037dfc, 0x4c182a82, 0x43820743, 0x06010222, 0x0a534c18, 0x22000b22,
0x00200f83, 0x23069343, 0x34000300, 0x20088b82, 0x00dd057c, 0x002a001d, 0x40510038, 0x02021d4e, 0x2d2e0005, 0x04042627, 0x020d1005, 0x4c030401,
0x34a98201, 0x020e0f4a, 0x07094901, 0x05050308, 0x01036100, 0x4d210000, 0x78761806, 0x01203d08, 0x1e2b2b4e, 0x2b382b1e, 0x1e303237, 0x27291e2a,
0x23252625, 0x2b1b070a, 0x36111701, 0x09617618, 0x11071122, 0x2706ba5d, 0x32331210, 0x06061716, 0x25057775, 0x26261137, 0x59182023, 0x67080a75,
0x06022326, 0x967153a4, 0x5d814278, 0x26a44e64, 0x805c315f, 0x36968240, 0x41d1295b, 0x39274641, 0x2939292b, 0x27429801, 0x47273c24, 0x2e381946,
0xfe16dd05, 0xe7fe6907, 0xf9a8f2fe, 0x17fe6d88, 0x35ff0116, 0xa8f98838, 0x1d010a01, 0xbd2d3530, 0x2bbed8d8, 0x31730235, 0xfd302a27, 0xc02d338f,
0x51b094d6, 0xffff0000, 0x086f4e18, 0x0501023a, 0x01000000, 0x00009e00, 0x1e04de03, 0x2f001300, 0x01122c40, 0x01030203, 0x4c220482, 0x1b820300,
0x6a010327, 0x02020405, 0x0a2b4302, 0x13001325, 0x42231323, 0x112005c0, 0x50180782, 0x21080e4f, 0x3cc0de03, 0xa09960ab, 0x4a5956c0, 0x1e042d9a,
0xb601e2fb, 0x95a43e36, 0x74fea301, 0x333d5862, 0x7383d601, 0xd1feb024, 0x73828104, 0x440e277f, 0x277f050b, 0xe2033122, 0xfc1f9b9f, 0xb201c0e9,
0x7bfc1e04, 0x2f0138fe, 0x7d220782, 0x5b838303, 0x00005924, 0x5b845704, 0x2107277f, 0x277f4d1c, 0xb1a62722, 0xfbb002fc, 0xb283faa8, 0xfc224c85,
0x4f84007d, 0xdf20ab82, 0x277f4f82, 0x4d1c210f, 0x202f277f, 0x20b38288, 0x8b638534, 0x83fc20b4, 0x000126b8, 0x03d1febf, 0x7fb784f1, 0x1c220b27,
0x277f004d, 0xc0312b21, 0x9614c6fe, 0xc0c6fe14, 0xbf83b201, 0x41d1fe21, 0xbf820510, 0xf0000226, 0x32040000, 0x15225784, 0x277f3000, 0x205d820e,
0x40401803, 0x0c0c2e08, 0x150c0000, 0x0d0f140c, 0x0b000b00, 0x07277f25, 0x95473220, 0x74481805, 0x23263b09, 0xeebfb001, 0x72be73d5, 0xd0c061fe,
0x6d2f786f, 0xfe1e045e, 0x7baebab7, 0x08824ea4, 0x4ffe272c, 0x5e4b7564, 0x0200002f, 0x7b823c00, 0x7b844b20, 0x7f001421, 0x69290a2b, 0x03020200,
0x0301065f, 0x23808203, 0x5f010404, 0x84052b7f, 0x0c142280, 0x32808513, 0x08212311, 0x012b1907, 0x11203311, 0x21230414, 0x82352311, 0x05d04a0b,
0x75f00131, 0x01ffe601, 0xf4c5fee1, 0x7e87b401, 0x8283868a, 0xfeb72878, 0x03afc19b, 0x82fe918d, 0x7d602781, 0x03006470, 0x7f827000, 0x7f824020,
0x0d000924, 0x81851600, 0x410b237f, 0x043d065c, 0x1b010101, 0x0e0e4e01, 0x160e0000, 0x0f11150e, 0x0a0b0c0d, 0x09000900, 0x07092123, 0x24818618,
0x11232306, 0x0b227f21, 0x3f220131, 0xd2ebc301, 0xb41c03f7, 0x4896fdb4, 0x83777d7d, 0xfead3a84, 0x04b5b9a3, 0x02e2fb1e, 0x644afe44, 0x0063727d,
0x00020000, 0x04e7ff03, 0x348782a3, 0x001f0015, 0x103d4040, 0x01040101, 0x01010f4c, 0x07000049, 0x091f7f01, 0x2d101141, 0x00001616, 0x1e161f16,
0x15001719, 0x11411500, 0x7f8f830c, 0x40180927, 0x023e0944, 0xad011adc, 0xc5d0c8e0, 0x6b3b0a0c, 0x3c2f4463, 0x02160a2d, 0x634d2521, 0x047b6c33,
0x9f82fe1e, 0x03b8b638, 0xe2f6fe8c, 0x7f3a85fa, 0xc0d35d26, 0x26fea201, 0x622949fe, 0xab857356, 0x00008424, 0xab82a904, 0x1c001139, 0x35403800,
0x0a000105, 0x07020208, 0x09690200, 0x04040206, 0x7f004d1c, 0x002b0c2c, 0x121c1200, 0x0013151b, 0x83110011, 0x21232500, 0x2b1c070b, 0x16258f83,
0x23211015, 0x06a96411, 0x1113113f, 0x36363233, 0x26263435, 0x1ae20223, 0x56fedcd1, 0xb5b5f8ce, 0x5020b1f8, 0x63313662, 0x289a8252, 0xfeab9e78,
0xfd0e02b3, 0x2b0b83f2, 0xf0fd8801, 0x531c80fe, 0x24544950, 0x0a735b18, 0x00370425, 0x82e80002, 0x737b1810, 0x001d2909, 0x013e4041, 0x02050001,
0x11240482, 0x12020301, 0x2015377f, 0x35951821, 0x05377f08, 0x1c001d25, 0x7f112225, 0x68570637, 0x79072006, 0x17200840, 0x0806b545, 0x36363437,
0x977a0333, 0x48814559, 0x0113a57b, 0x0c27fed7, 0x814b83a6, 0xc2485744, 0x77e49f5d, 0x049ce478, 0x2e777737, 0x909ba129, 0x2f2ba7ab, 0x87413c78,
0xfda0a5f7, 0x18a28290, 0x840a177c, 0x011a2ba3, 0x01190504, 0x010b0403, 0xf36e0201, 0x18002005, 0x820f6549, 0x06ed49a3, 0x82059c58, 0x21a282a3,
0x49182625, 0x397f0a65, 0x27072111, 0x3308a382, 0x6dd9cb02, 0x679fe073, 0x405b49bf, 0x9d854c86, 0x011ffe0c, 0x7e950fdf, 0x49597b99, 0x370468c1,
0xa6a7f686, 0x3e418bfc, 0xa52e2f79, 0x9d9f90ad, 0x3f3b785b, 0x2f055741, 0x040000e6, 0x0016060c, 0x00b50002, 0x00ffff00, 0x05200f84, 0x11076e18,
0x55feb724, 0x27848303, 0x2784c120, 0x00002326, 0xd905f303, 0xb3203782, 0x022c4882, 0xe7ff6700, 0x37047604, 0x22001200, 0x201bb77e, 0x1ab77e1c,
0x094d1c2c, 0x05070701, 0x05010861, 0xb77e2105, 0x13132913, 0x22130000, 0x191b2113, 0x11206682, 0x122c0082, 0x1b070a24, 0x1112002b, 0x22230210,
0x2009147b, 0x848f1836, 0x033c080f, 0xbcb5b7bf, 0x800ab1ad, 0x0c80b6b6, 0x4b42a9b3, 0x434b1d1e, 0x211e4d45, 0x3704424d, 0xf8fee1fe, 0xdbfefcfe,
0xfee00701, 0xfe1e0432, 0x96f4dd48, 0x888fae56, 0xae5c5cad, 0x56ae8d89, 0x0023de82, 0x825e0002, 0x04d826ef, 0x000d001e, 0x09b37e16, 0x2207f657,
0x7e040067, 0x154906b3, 0x094e4408, 0x290fb37e, 0x26132303, 0x36343526, 0x8b5e1333, 0x03400807, 0xfafec0d8, 0x5dfdd6de, 0xc8cde25d, 0x697071cc,
0xfb1e0475, 0xfe9201e2, 0x2bbe016e, 0xa79c638f, 0x6c0103fe, 0x58625c56, 0x23000100, 0xf30357fe, 0x2300d905, 0x11406100, 0x0402051c, 0x234c0103,
0x23089f82, 0x0210114a, 0xb04b4904, 0x40585017, 0x0101051c, 0x065f0001, 0x1a000001, 0x0303004d, 0x02006102, 0x004d2102, 0x2006394c, 0x8218821a,
0x00022321, 0x1c8f6701, 0x0a405931, 0x2f131111, 0x07111123, 0x012b1d07, 0x18152115, 0x2008d740, 0xdc661814, 0x064d6b09, 0x35234b08, 0x7f013533,
0xb7fe4901, 0x955db13e, 0x78884893, 0x2c554e47, 0x8d4e5752, 0x9c9cc030, 0x8ea1d905, 0x534af0fe, 0x47fd96a2, 0x356db796, 0x7d46248c, 0x5dbb026c,
0xfd466254, 0x8eaa0406, 0x0000008c, 0x3100ffff, 0x7f04e7ff, 0xa0821e04, 0x1082ee20, 0x6e000237, 0x3e040000, 0x11002405, 0x62001a00, 0x020011b4,
0xb04b4a00, 0x2ad4822e, 0x08020020, 0x02060701, 0x84046707, 0x820520dd, 0x4d1c21dd, 0x25073a55, 0x1b4e031b, 0x13821e40, 0xd8841c82, 0x208a2c87,
0x10405928, 0x1a121212, 0xde821912, 0x11212324, 0xe2850911, 0x15230727, 0x14112033, 0x83128206, 0x511320d1, 0x2e080736, 0x0a01d301, 0x0186f416,
0xfee1fde5, 0xc0a5a5b3, 0x86897f97, 0xf1240582, 0xa0feda8e, 0xa503acbf, 0x2efdda8e, 0x7a5d59fe, 0x0000626e, 0x828c0001, 0x048d29c7, 0x00250037,
0x13b04b9b, 0x1234af82, 0x03060118, 0x06040119, 0x01090102, 0x09000103, 0x401b4c04, 0x0220148e, 0x59201482, 0x22202e85, 0x25123d7e, 0x010a4d1c,
0x41180909, 0x2a200ae5, 0x0321248a, 0x22fd8403, 0x43006105, 0x2d85082d, 0x2205db5c, 0x82124059, 0x00252208, 0x073e7e24, 0x070b2526, 0x36242b1f,
0x2106776c, 0x99452726, 0x023e2406, 0x44163233, 0x2d080dff, 0x2b5aa303, 0x4c973c5f, 0x096ab97c, 0x7cbaba7a, 0x7db76a0e, 0x5c418b53, 0x6d385d2f,
0x7a011076, 0x810684fe, 0x2727816b, 0x76413c6b, 0x334395dc, 0xd28a3805, 0x6e3a3875, 0x9ca12426, 0x00a7ac90, 0x42000200, 0x70040000, 0x7e001e04,
0x1c20123b, 0x32233b7e, 0x7496c470, 0xbe96709c, 0x75e3a601, 0x0114018a, 0x836efe92, 0x1e042403, 0x838ffe8a, 0x825c205f, 0x82ad205f, 0x7e13205f,
0x1c20143b, 0x35323b7e, 0x4a6faead, 0xa86f4491, 0xb2b2c377, 0x76e496ee, 0x9101ce67, 0x03876ffe, 0xfe1e0428, 0x86fa0106, 0xdb828cfe, 0x7b822620,
0x7b828a20, 0x14001122, 0x21213b7e, 0x3b7e4d1c, 0x35032122, 0x3a053b7e, 0xacd7bef5, 0x8cb58d9e, 0xafdab09c, 0xc62403ee, 0x02cc6bfe, 0x01aafd56,
0x8339fec7, 0x56022903, 0x65656301, 0x00c0fe23, 0x02220082, 0x87823a00, 0x8782ce20, 0x1a001727, 0x3d404000, 0x053b7e17, 0x00011a24, 0x407e4b01,
0x7e1c2013, 0x19210940, 0x28407e18, 0x21072208, 0x79940313, 0x4786acc1, 0xad8748a8, 0xb3b3da96, 0x02d27501, 0xa2feb8d5, 0xfd5702b1, 0xfec401a9,
0x2103873c, 0xa6821e04, 0x65656225, 0x84bdfe1f, 0xa04a089f, 0x120451fe, 0x06003306, 0x37002a00, 0x011b3440, 0x01160302, 0x4c020401, 0x01020506,
0x2a4a0004, 0x00490101, 0x85000300, 0x01000400, 0x00630104, 0x5f030202, 0x1c030300, 0x11224e02, 0x05132f12, 0x012b1b07, 0x23051737, 0x32453725,
0x37750805, 0x3435023e, 0x35212326, 0x21352101, 0x32330115, 0x06141516, 0x15020e07, 0x02171614, 0xfe52fb3f, 0xeffe7ef1, 0x87866c56, 0x8778b9a7,
0xfe505542, 0xfd9601ab, 0xfe3803c0, 0xbca7884f, 0x706cc8dd, 0x0547472a, 0xf45bb77c, 0x1ef85bf4, 0x65578b37, 0x280f1672, 0x484f3d46, 0x9c510189,
0x93a6fe90, 0x199c9492, 0x1e251c0e, 0xff244325, 0xfe4f00ff, 0x04750455, 0x2196821e, 0x174f00ed, 0x1d02210c, 0x013adf82, 0x00006600, 0x7c04a404,
0x2e001100, 0x010a2b40, 0x030b0100, 0x02020302, 0x8356004c, 0x25248206, 0x01044d1c, 0x877c0303, 0x11400805, 0x25231100, 0x19070511, 0x3301212b,
0x023e1301, 0x07173233, 0x06222326, 0xd1010107, 0x01d095fe, 0x3b18e60f, 0x49444257, 0x20201e35, 0xdcfe1025, 0x8bfc1e04, 0x6052f402, 0x0c82232d,
0x74fc3027, 0x73848383, 0x008e0624, 0x93820122, 0x06030025, 0x824804f9, 0xff032266, 0x33ab82fd, 0x003704bd, 0x001a000b, 0x406e002a, 0x0601140a,
0x1a4c0105, 0x33080f7e, 0x0505001a, 0x03045f00, 0x1c000002, 0x0601084d, 0x02610106, 0x83090b7e, 0x4d1c21a5, 0x61232283, 0x47000000, 0x2585067d,
0x2f090b7e, 0x00001b1b, 0x291b2a1b, 0x15162123, 0x10111213, 0x82140b7e, 0x0afc7dd7, 0xf4490220, 0x06222106, 0x0805bd60, 0x9b999652, 0x9a969f9f,
0x7f63ea9d, 0xb64f144f, 0xaf7c7eb5, 0xc4e723b5, 0x18183bd1, 0x3c34333a, 0x343b191a, 0x01220119, 0x01010105, 0xfedffe28, 0xfefffefa, 0x16effed8,
0x045c7444, 0x036efc1e, 0xcaedfb92, 0x1e0215d7, 0x9595b256, 0xb45756b2, 0x56b29394, 0x0029af82, 0x00b60001, 0x045a0400, 0x180f7e1e, 0x8741dc82,
0x100f7e07, 0x37082475, 0x175a0411, 0xf7f7e9fd, 0x04b6b6c0, 0xdefe9d1e, 0x0130fe8f, 0xbf018fd0, 0xc6245f82, 0xee0354fe, 0x1f255f82, 0x45404800,
0x0a077e15, 0x1c4c0326, 0x4b010201, 0x85100c7e, 0x0ebf7870, 0x1e001f26, 0x23131111, 0x47170c7e, 0x0b7e0658, 0x89182407, 0x5e8fa44d, 0x29080509,
0x7c519e7e, 0x9902c03d, 0x3a41fe1a, 0xba0260a0, 0xfe648f4b, 0x4da49a16, 0x93141778, 0x52b8eb01, 0x0479fe4b, 0x9bfe951e, 0xab825244, 0xd1fe2a24,
0xab82b804, 0x2520077e, 0x04064d1c, 0x077e0202, 0x9d200831, 0x1f8671aa, 0xa063bf49, 0xe9b8c066, 0x67aabcd8, 0xb6b067a0, 0x63fe3602, 0x2f0138fe,
0x18fee801, 0x410f4f56, 0x633805a3, 0x10041bfe, 0x3c003704, 0x23409600, 0x0807012f, 0x0706012e, 0x06050139, 0x20071b4b, 0x188c8203, 0x27082494,
0xb04b4c08, 0x4058500d, 0x561e0d7e, 0x0d7e0c6c, 0x302e8c21, 0x250c4059, 0x24232124, 0x29251311, 0x2b1f0709, 0x9d951824, 0x0b935617, 0x22065559,
0x56070622, 0x04230dbc, 0x7eb6d810, 0xf4210f07, 0x09a756a9, 0xca56be20, 0xadaa2211, 0x36671812, 0x0bb0220e, 0x06b75686, 0x2b11d456, 0x01000000,
0xd1fec800, 0x1e049904, 0x2818fb7d, 0x01044d1c, 0x021b0202, 0x1dfb7d4e, 0x2001ed29, 0x481f9b8c, 0x55c5b6fe, 0xbc41055f, 0xfee42208, 0x0563551c,
0x00206b83, 0x2a05bb55, 0x40360014, 0x07010c33, 0x824c0102, 0x0109355c, 0x07020807, 0x00030067, 0x08030008, 0x01010567, 0x064d1c01, 0x2405c555,
0x11111314, 0x58798412, 0x33250780, 0x33353311, 0x07ce5515, 0x35231537, 0xbf870123, 0x355f57bf, 0xfec50e01, 0xd06c01c7, 0x5f35cafe, 0x2c728257,
0x01e6e658, 0xfd1afea8, 0xf5e501c8, 0x82ea82f5, 0x8245207f, 0x056b287f, 0x001400dd, 0x823b403e, 0x01073d66, 0x020c0d4c, 0x01054a04, 0x03010604,
0x67030408, 0x01000700, 0x67010700, 0x08080109, 0x82087a4b, 0x0014263c, 0x13111114, 0x24008211, 0x1e070a12, 0x0bfa7d2b, 0x2115373c, 0x33112115,
0xfe380401, 0xe18c01a7, 0xc09db6fe, 0x01c09e9e, 0xa1dffe21, 0x87822401, 0xcafd1831, 0x1cfee401, 0xca8e6e04, 0xfe8ee117, 0x82a6010a, 0x0001224f,
0x288b820d, 0x001e049b, 0x4033000e, 0x208b8230, 0xb14a1805, 0x03002309, 0x297d0403, 0x7d828b05, 0x122307ff, 0x8a1c0708, 0x2f7a8480, 0x01a8fe69,
0xb7fee18a, 0x01f4c0b0, 0x2201b5b4, 0x03247689, 0x5afe918d, 0x00277284, 0xfea00001, 0x827204d1, 0x18ab7273, 0x8208ec41, 0x180f20a2, 0x2112a651,
0xeb551123, 0xd2032507, 0xa61f9ba0, 0x5305ed55, 0xf4550734, 0x0001220a, 0x20df82a3, 0x356b82b7, 0x4027000d, 0x00060024, 0x03060203, 0x01010067,
0x01055f00, 0x55420000, 0x0710250e, 0x012b1d07, 0x38068f55, 0x33112311, 0xda022111, 0xfe16dd01, 0x89fec0f9, 0x7701c0c0, 0xfc991e04, 0x825f877b,
0x0001229c, 0x20cb82b1, 0x7b5f8282, 0x6974052b, 0x05f55e08, 0x477d5e88, 0xe303251a, 0xa51f9b9f, 0xbe87c182, 0x27065f56, 0x35000100, 0xab0454fe,
0x22285b82, 0x46404900, 0x0702011f, 0x0da74318, 0x54105b7e, 0x1b200511, 0x7e0e9b45, 0x2621085b, 0x18dd8209, 0x821aa943, 0x213f08f0, 0x33363611,
0x4277f203, 0x65838da4, 0x2d3d294a, 0x323b3e80, 0xfebe254e, 0x9c02bddf, 0x0243682b, 0x538047ba, 0xa39af1fd, 0x1517774d, 0x46150293, 0xfe23224b,
0xfc860320, 0xfe1e047a, 0x8228284c, 0x02003ee7, 0x09ff6f00, 0x37045504, 0x34002800, 0x3e404100, 0x01020113, 0x02040114, 0x0503012b, 0x05ff7d07,
0x7d040521, 0x212012ff, 0x2f0b3d6a, 0x2333262b, 0x07062826, 0x06002b1c, 0x07171607, 0x480bfa6c, 0x1522065e, 0xf97d2110, 0x55600819, 0x6a436e7d,
0x41507b75, 0x74d89447, 0x8d8ed370, 0x584d4a6a, 0x1c018e7e, 0x30340912, 0x565b8546, 0x69fe4882, 0x49492d28, 0x3d39363b, 0x3fd13e01, 0x85597656,
0xf5820f68, 0x8cfea7a8, 0xc928893c, 0x0179fec7, 0x53459154, 0x85474f87, 0x487d4358, 0x455a8b26, 0x0047544f, 0xb0000100, 0x11041cfe, 0x2b34df82,
0x37403a00, 0x0203011b, 0x04021c27, 0x08282b03, 0x07040103, 0x2c1beb7d, 0x254e0321, 0x24242c23, 0x2b1b0705, 0x10ea7d04, 0xf3682e20, 0x22dd8605,
0x69141506, 0x06240514, 0x3f980307, 0x2509e57d, 0xc68a4a48, 0x8d187868, 0x83270c36, 0x4d90375c, 0x7d439073, 0x3c2607e0, 0x8d0d3174, 0x8c189aec,
0x2e230c3a, 0x83000d3f, 0xfe7c24bb, 0x424004d1, 0x012108af, 0x0ddb7d00, 0x200a4d48, 0xcc55180b, 0x083d710b, 0x04352138, 0x8efe1640, 0xa51f9b9f,
0x1e0484fe, 0xfe16fd9b, 0x032f0138, 0x5b839b83, 0x55fe6824, 0x5b824804, 0x1700083c, 0x05081440, 0x05000102, 0x01014900, 0x001c0000, 0x0213124e,
0x012b1807, 0xcf6f1107, 0xb6023c05, 0xcd6efebc, 0x26012701, 0xfe6efec6, 0xc801176c, 0xb0fc0104, 0xfffb5003, 0x87000100, 0x000e2547, 0x0e27402a,
0x01264082, 0x0206074c, 0xb1434902, 0x01012407, 0x46036002, 0x1321070d, 0x055e5b11, 0x2406147e, 0x35231107, 0x2b0b8233, 0xfec68203, 0xbccfa29b,
0x9bfea2cf, 0x042f6782, 0x8e72fc1e, 0x01176afe, 0x8e038ead, 0x8200b0fc, 0x00012600, 0x04d1fe64, 0x23af8268, 0x4028000f, 0x2113177e, 0x65864d1c,
0x2d16177e, 0x02331313, 0x841901cb, 0xfe491f9b, 0x6618feed, 0x022709b8, 0xfe65fe34, 0x182f0138, 0x280bbb66, 0x00010000, 0x04d1fe00, 0x206f8459,
0x11137e31, 0x58056b46, 0xf8440a25, 0x82212013, 0x072133dd, 0x11211123, 0x9a78e103, 0xee4efd1f, 0xdd17a002, 0x3b447701, 0x8f8f2608, 0x030cfd8f,
0x23de8283, 0x8a000100, 0x69206f82, 0x137e6f82, 0x826a2015, 0x00012924, 0x01066301, 0x4d1c0404, 0x22052b60, 0x7e132313, 0x35311313, 0x14113311,
0x36323316, 0x03331137, 0x1f9b9fca, 0x0a0d59a5, 0x8499c021, 0x120f59eb, 0x2a078359, 0x4035001a, 0x02171a32, 0x7e060605, 0x00280513, 0x02030005,
0x006a0305, 0x30069165, 0x00000104, 0x01004d1c, 0x4e011b01, 0x31131311, 0x0be87d14, 0x23150723, 0x098e5935, 0x8a821720, 0x3736363f, 0xc0c01e03,
0x0a6f6e4b, 0xc0a09915, 0x376f4e4a, 0x1e042062, 0xb601e2fb, 0x90a11f43, 0x05975901, 0x05585c3d, 0xd6fe3401, 0x0024340d, 0xc1000100, 0xf1030000,
0x1400d905, 0x28402b00, 0x82020c11, 0x104c286c, 0x4a03020f, 0x82030104, 0x0103221e, 0x61451869, 0x1313260b, 0x07051423, 0x10e37d19, 0x11373208,
0x03333636, 0xc04b8d19, 0x7d555155, 0x39c0c038, 0xc003639d, 0xfd64914e, 0x6a640283, 0xfd54585d, 0x15c40581, 0x534b49fd, 0x00010000, 0x04d1feb7,
0x24738286, 0x402e0018, 0x2173832b, 0x73830103, 0x7f4a0521, 0xd9480e95, 0x13252206, 0x06cb4223, 0x8f7f2520, 0x26342105, 0x8406384b, 0x16322976,
0xe7031516, 0xa51f9b9f, 0x5f277b89, 0xfe994b8d, 0x8e2f0138, 0x3490827c, 0x00020000, 0x04e7ff13, 0x0037045c, 0x002d0027, 0x183f4042, 0x1fe37d17,
0x004d2122, 0x3709e37d, 0x2d282828, 0x24252d28, 0x2325131b, 0x1d070911, 0x2107002b, 0x3233021e, 0x21096a51, 0xe27d2626, 0x823e200b, 0x21a2821b,
0xb4830227, 0x4d087782, 0x480383fd, 0x66454d79, 0xa740593e, 0x71c6885d, 0x278b830a, 0x13157624, 0x0c103234, 0x7f77b76d, 0x06b45fb5, 0x0a7e68d7,
0x70320002, 0x27264795, 0x79413473, 0x7c0294dc, 0x385a3769, 0x223c2d36, 0xd88a3530, 0xa1eb7d7b, 0xa449012c, 0xcf8400a5, 0x842dfe21, 0x003828cf,
0x407f003e, 0x7d282911, 0xe08230db, 0x7d020221, 0x21362cdb, 0x40594e07, 0x39393911, 0x253e393e, 0x23191b24, 0x0a11232b, 0x0c411e07, 0x05a84f0b,
0x37323325, 0x6e230607, 0x372305bf, 0x41270226, 0x5124271c, 0x276a5f5e, 0x09968c18, 0xa4545224, 0x29410dc0, 0x1d41231f, 0x8c184c29, 0x78250aa0,
0x00011c30, 0x163941c6, 0xffff2008, 0xe7ff6f00, 0xc605f703, 0xc7000200, 0xffff0000, 0x00001f00, 0x0b069104, 0xbb012200, 0x5e000000, 0x01290743,
0x54feca00, 0x1e04eb03, 0x1ad37d00, 0x25052046, 0x0101004d, 0x3b826200, 0x4e001e22, 0x2229d37d, 0x4d9288c8, 0x283108f6, 0xc0d04957, 0x140185c0,
0x0f5902c8, 0x7ffe93a4, 0x06f34d9a, 0x564a8234, 0x0437fe26, 0x013ffe1e, 0x010000c1, 0xd1fe4800, 0x93826504, 0x441dd37d, 0x1b2007bf, 0x600fd37d,
0x290808f5, 0xa2c30321, 0x7d479d8f, 0x1215cdfe, 0x52696a3c, 0x0f31423a, 0x9c9f0220, 0x2f0135fe, 0xeefe8403, 0x7b3982f6, 0xc9d35a25, 0xd682a101,
0xbf247782, 0xf10354fe, 0xcf7d7782, 0x2174821a, 0x4f770404, 0x7d622005, 0x312127cf, 0x080241c0, 0x2107b44a, 0xfb8674fb, 0xfe4d0223, 0x20f88232,
0x22808249, 0x82c00001, 0x4b6b20f7, 0xcf7d3823, 0xa1ca210d, 0x7c2af982, 0xc0c076fe, 0x1e048a01, 0xf3837efc, 0x2107c44a, 0x6e82b701, 0x00010027,
0x03d1fe9e, 0x072b46de, 0xcf7d1720, 0x7d6a200f, 0xa8450acf, 0x13232407, 0x45111123, 0x032309a8, 0x60331123, 0x2d460514, 0x1e032609, 0x9b1f95c0,
0x0e3a5f8f, 0x01d1fe31, 0x353301c8, 0x0195a43e, 0x638bfe8c, 0x82323d58, 0x825f207f, 0x82b020ef, 0x0018297f, 0x162f4032, 0x04060a0d, 0x820dd07d,
0x63012522, 0x05050106, 0x7d08534b, 0x2c081fcb, 0x33131333, 0x90991704, 0x25654794, 0xb1a6020a, 0x1b0703bb, 0xadf149b1, 0xfe9cf69a, 0x012f0135,
0x22868fea, 0x0237fd58, 0x764849c9, 0x09786287, 0x9769ff20, 0x0b062306, 0x97692200, 0x3e072505, 0x000000ee, 0x05211787, 0x211788f4, 0x1784f000,
0xfff4ff2b, 0x04bb04e7, 0x00020037, 0x20278495, 0x200f8292, 0x673f831f, 0x3e21060b, 0x82278212, 0x8289201d, 0x82262017, 0x00162d27, 0x4040001e,
0x0201143d, 0x01011303, 0x2f055853, 0x04010504, 0x02020067, 0x01066103, 0x4d210303, 0x2d0df37b, 0x1e170000, 0x191a1d17, 0x15001600, 0x19691522,
0x11122205, 0x07cd5b14, 0x0809e07d, 0x36123340, 0x16152137, 0x3b033316, 0x93d671eb, 0x056dcc8a, 0x8a0acd02, 0x42855283, 0x87d99a56, 0xe8fd0786,
0x047e8802, 0xfeddfe37, 0x87faa8fc, 0x3ca2eb7d, 0x2da0ad23, 0xfc7f7d35, 0x10af9847, 0x0f54a295, 0x83262007, 0x150221e7, 0x0223b882, 0x82030007,
0x07374406, 0x37441783, 0x84158206, 0x826320ef, 0x841020d7, 0x85bc2017, 0x42f1202f, 0x73360553, 0x130455fe, 0x1d001e04, 0x40404300, 0x0504011c,
0x00030117, 0xe4820b0c, 0xc47d0320, 0x4d1c2111, 0x0121fd82, 0x05484361, 0x1b00012f, 0x1618191a, 0x090e1014, 0x011d0007, 0x055c671d, 0x06791620,
0x82372008, 0x05335fe1, 0x0808c67d, 0xd28f3f33, 0x8ede7c73, 0x6f52d096, 0x87699546, 0xb4999b98, 0xa9fdab01, 0x46fe3103, 0xb25a9d01, 0x6fc98282,
0x44695a59, 0x868d953d, 0xe7018a79, 0x0ffe909c, 0x07cb6600, 0x66d10521, 0x0a2008cb, 0x1788ba83, 0x1788f420, 0x2f831683, 0xeb828920, 0xeb842720,
0xeb85c620, 0x00220582, 0x5b640300, 0x000f3c08, 0x001c0015, 0x003a403d, 0x05010802, 0x67050204, 0x03030107, 0x01066101, 0x75210101, 0x16330ba4,
0x00101016, 0x161c1600, 0x10181a1c, 0x12141015, 0x180f0011, 0x88071a65, 0x35262ce8, 0x33363634, 0x26210306, 0x84012326, 0x183720f3, 0x2e0ccf80,
0x040212f2, 0xfe768109, 0x787f0cfb, 0x180c7f77, 0x290ed680, 0xa09fc1fe, 0xa3ae33fe, 0xa482aea3, 0x084b8018, 0x0221d382, 0x20bb851d, 0x20178502,
0x20d382b0, 0x20d38411, 0x201785db, 0x0a7b64f7, 0x64d10521, 0x1b41086b, 0xfe702407, 0x84400455, 0x85cb202f, 0x0633412f, 0x06211784, 0x852f828e,
0x51042117, 0x9e244785, 0xde030000, 0xcf202f84, 0xe6202f85, 0x00290682, 0xfe300101, 0x041e04d1, 0x15c77d1e, 0x200a8a4c, 0x14c77d09, 0xfd171e32,
0x1f9b9fe9, 0x9d1e04a5, 0x38fe18fd, 0x1e042f01, 0x7022e382, 0x9b860000, 0x9b89d620, 0x00010027, 0x0454fe87, 0x7d6b825a, 0x7f8228c7, 0x2120c77d,
0x4c691533, 0x22232105, 0x20054853, 0x08c77d35, 0xe9fd4325, 0x4576f7f7, 0x762d08eb, 0xee02b6b6, 0xdefe8103, 0xfec9fe8f, 0x06ef45f9, 0x83557f20,
0x82502007, 0x8458209b, 0x4320089b, 0x171a4040, 0x06041114, 0x01010904, 0x00010802, 0x074c0301, 0x02040601, 0x80020604, 0x04040105, 0x4f06924c,
0x1b230ee2, 0x82121b00, 0x25242900, 0x2b1c0708, 0x15231525, 0x0a8a5318, 0x7d233521, 0x132705ca, 0x01013313, 0x88015804, 0x4c462093, 0xfe260cb3,
0x991901b0, 0x9a886e99, 0x0c767318, 0x0065fe25, 0x65010000, 0x11200863, 0x211bcf7d, 0xcf7d4d1c, 0x0889831f, 0x17042133, 0x5501e0fe, 0xfef3fee7,
0x5a01d8e4, 0x1c01d9fe, 0xe6e0dffe, 0xddfed7ec, 0xf4011f01, 0xcf010cfe, 0xf40131fe, 0xfea80182, 0xfe93016d, 0xff000058, 0xaf9a18ff, 0x00022208,
0x088f829e, 0x0f000225, 0x9f04e4ff, 0x2100dd05, 0x4d002e00, 0x01164a40, 0x01250205, 0x08240504, 0x03040302, 0x0217184c, 0x82074a02, 0x0503270f,
0x00800304, 0x2e5e0505, 0x06082406, 0x18030302, 0x2908585c, 0x00002222, 0x2d222e22, 0x46822729, 0x26272125, 0x7a092424, 0xdb7b05ad, 0x07614505,
0x33363627, 0x11171632, 0x05064d17, 0x27343528, 0x11373600, 0xbc782626, 0x33540805, 0xb60a9504, 0x248a5a9e, 0x68457434, 0x97534c93, 0x265d4064,
0x49353eba, 0xc5fd0a4e, 0x49252c55, 0x4e5b5131, 0x82f20249, 0xfef0fe76, 0x5e5b59fa, 0xa6f78753, 0x348ffda0, 0x170a0230, 0x645c76fb, 0x8c70ceac,
0x554b8bfd, 0x3a371302, 0xc6cbc8cb, 0x13000100, 0x8330db82, 0x24001e04, 0x3b403e00, 0x0201011c, 0x01074c01, 0x2016527d, 0x08e0581c, 0x4e002022,
0x200aa67c, 0x06a67c25, 0x22052746, 0x7c232727, 0x625a0aa7, 0x17230805, 0x32331616, 0x04273411, 0xab620a79, 0x4cae8270, 0x6cbdce5a, 0xf37c7970,
0x72e4d7f5, 0x5e2c6171, 0x830aba3d, 0xefb737b7, 0xa48b7d70, 0x5d615991, 0x9da69056, 0xad288f6d, 0x7a013e50, 0x6c828c70, 0x9824ab82, 0x2e04d1fe,
0x7c07bb47, 0xa9821ca3, 0x1b020227, 0x24214e02, 0x0da37c21, 0xa37c0320, 0x2a9b850b, 0x9ba38b03, 0xfefa5b1f, 0x822001c7, 0xfe7b3092, 0xd85701aa,
0x996e6fe3, 0x2f0138fe, 0x84938e01, 0x9ea5248b, 0x8229906c, 0x00012684, 0x04e4ff04, 0x2083829d, 0x1b9f7c20, 0x03217e82, 0x073d7103, 0x20233682,
0x7c232000, 0x2b6b149f, 0x11212207, 0x06204114, 0x0a933608, 0x52659c5b, 0x16b94f85, 0x53593813, 0x24332d51, 0x1f02200f, 0x0a9c3538, 0x7682f202,
0x4971efb6, 0x55026d95, 0xf6e8fafe, 0x25793a7f, 0x01c3ce61, 0x44f7fca7, 0x06244155, 0x54000122, 0xa4209f82, 0x977c9f82, 0x0403250c, 0x80040703,
0x620b977c, 0x27230f47, 0x94070108, 0x2d977c25, 0x2f553520, 0x06c74f07, 0x27343524, 0xd1849a04, 0xfe50862c, 0x01bbbbef, 0x3638bc11, 0xcb8a5647,
0x32fe9f28, 0x46fe1e04, 0xc583ba01, 0x70cbaf2f, 0x0001008c, 0x03e9ff8c, 0x003704ec, 0xd363181e, 0x00032b09, 0x0201010f, 0x01040114, 0xf7634c04,
0x00002d08, 0x01066105, 0x4d210505, 0x04010100, 0x0cd36318, 0x12112224, 0xf7632525, 0x07172405, 0x5b232626, 0x3327053f, 0x23113732, 0x4d112127,
0x4308073f, 0xef023336, 0x406853a6, 0x86514b76, 0x70848850, 0x0115bb5d, 0x93d1b98b, 0xe38771d2, 0x41370486, 0x2c307840, 0xd484b053, 0x17012bbf,
0x6b00fe92, 0xa6b5f87d, 0x000085f9, 0x06000100, 0x4904e4ff, 0x19001e04, 0x2015277d, 0x0e277d1c, 0x19001923, 0x1a277d23, 0x7d331621, 0x29080528,
0xc0750841, 0x599d6470, 0x5603bcfe, 0x55c5fe17, 0x087e614a, 0x8778e302, 0x546fe7aa, 0x3d026fa0, 0xc4fd9a9a, 0xc0ac6666, 0x83837d7e, 0xffa02c08,
0x044d04e7, 0x002a0037, 0x2012407c, 0x21040501, 0x0a050601, 0x0b000101, 0x04010201, 0x26b04b4c, 0x25405850, 0x00060300, 0x18720306, 0x4f102a9b,
0x1b220c84, 0x27852640, 0x9d800021, 0x40592228, 0x31ff820f, 0x2529002a, 0x23251626, 0x1c070821, 0x2307012b, 0xb6511520, 0x0af76505, 0x48263721,
0x32200554, 0x83071d61, 0x03450822, 0xffce0c48, 0x6c888e00, 0x53594fb5, 0xdb8d90e7, 0x4680507b, 0xc2707567, 0x52de7279, 0x51a94659, 0x65767b74,
0xa3947002, 0x373a6356, 0x4d504278, 0x6f4c6c98, 0x711c043b, 0x46835a55, 0x2c703c44, 0x444e4e30, 0x26fb8353, 0x0454fe4b, 0x7d1e0402, 0xe7491963,
0x17637d0c, 0x2307b64d, 0xdc022601, 0x6e08b046, 0x04210bb5, 0x08364d1e, 0x6e030421, 0x002009bb, 0x01260082, 0xe7ff1c00, 0x8382af04, 0x5f7d1720,
0x08217119, 0x5f7d1220, 0x08fc4311, 0x3313132e, 0x16019903, 0xb5c4c5c1, 0x9faa1301, 0x2d05f943, 0x0f28322a, 0xa3c10120, 0x3402b1a7, 0xe253ccfd,
0xfe5e2206, 0x05f843f4, 0xc5d25b39, 0x81fea701, 0x00007f01, 0xfe4f0002, 0x04ab0455, 0x00160037, 0x63900024, 0x1739050e, 0x0205010e, 0x13162021,
0x05060502, 0x06000109, 0x0a0b4c03, 0x1b490002, 0x22199540, 0x85594901, 0x00192638, 0x5f020505, 0x05dd7104, 0x06010734, 0x01610006, 0x1b000001,
0x401b4e00, 0x02010421, 0x8c181c02, 0x212208df, 0x1882004d, 0x24834d20, 0x61012c08, 0x20010100, 0x40594e01, 0x1717170f, 0x27231724, 0x24152312,
0x1c070810, 0x0323212b, 0x2223020e, 0x07112726, 0x36173311, 0x83203336, 0x680020ee, 0x222005cb, 0x0805c26d, 0xc9ab0444, 0x885709cd, 0x2b5f4652,
0x300ea2bc, 0x10014e71, 0xf0bebf17, 0x1d5d5efe, 0x5c363641, 0x2e522a2c, 0xda91c701, 0xfe383775, 0xc9051615, 0xfe4b487a, 0xfeb8012f, 0xc064fe00,
0x4eae94ce, 0xe8fd4447, 0x8c823e3d, 0x00030031, 0x04e7ff09, 0x003704a5, 0x00260020, 0x85f10031, 0x0e0e30d4, 0x02050101, 0x03010601, 0x03060001,
0x8a401b4c, 0x82022010, 0x37fb8610, 0x08010c2a, 0x08010500, 0x09006705, 0x09060100, 0x010a6701, 0x61030707, 0x2205dc5f, 0x1806010b, 0x260a3166,
0x5024b04b, 0x94384058, 0x61042631, 0x21040400, 0x2a3c844d, 0x0303005f, 0x02004d1c, 0x854d1b02, 0x25a68240, 0x1b4e0020, 0x3a903640, 0x07070022,
0x00223986, 0xc8610a0a, 0x3e389105, 0x1b405959, 0x00002121, 0x282a2d2f, 0x26212621, 0x20002325, 0x21141f00, 0x25131126, 0x641c070d, 0x03220ca1,
0x83431323, 0x21740805, 0x12323336, 0x21071415, 0x13331616, 0x22232626, 0x33162403, 0x37363633, 0x15062223, 0x4462a903, 0x61a93f54, 0x1164a269,
0xd2b9bd5b, 0x79b764b9, 0x443b1701, 0xfd04b1a8, 0x5f7206ec, 0x53530393, 0x4dfe14ad, 0x022a6668, 0x69832f32, 0x2f267c6f, 0x6b4a356b, 0x6efe80c0,
0xc854b601, 0x19549662, 0x2ef6edfe, 0x01a6ac32, 0xfea7a6dd, 0x725b1fb3, 0x646347c3, 0xff2de882, 0xfe8900ff, 0x04f10355, 0x00020037, 0x0f7e18e3,
0x1e042409, 0x43010200, 0xc4240543, 0x74040000, 0x14240f82, 0x2e403100, 0x2405ae7e, 0x14030406, 0x05f17b01, 0x7e000421, 0x1c2008af, 0x21070672,
0x00821115, 0x211aaf7e, 0xea72543d, 0xc0c02e05, 0x48ab61c9, 0xb6d076b0, 0xad0248a8, 0x06965c77, 0x5afe1e31, 0x6d73698d, 0x68fefeaa, 0x01000072,
0x5afee8ff, 0x2a3005fb, 0x46404900, 0x06020127, 0x03021620, 0x020a1f02, 0x11a55e18, 0x05040426, 0x0505005f, 0x200a9a52, 0x22c38261, 0x454e001e,
0x1b200510, 0x22a55e18, 0x5b09726c, 0x3e210e01, 0x06015b2c, 0x1215cd2d, 0x52545938, 0x0f29322a, 0x5b350220, 0x8428190a, 0xf7e7fafe, 0x25793a7f,
0x20050944, 0x05135b4c, 0x2b09cb5b, 0x404f0026, 0x0701234c, 0x04011609, 0x0a735f18, 0xa77e0a20, 0x15cf5b13, 0xa77e2620, 0x7e262009, 0x834c0aa7,
0x56112008, 0xf4470836, 0x14d55b09, 0xdbfebc27, 0x2501bbbb, 0x52cc98bc, 0x46220623, 0xdb5bba01, 0x00802a09, 0x042f0400, 0x0012001e, 0xf766181a,
0x00672615, 0x4d1c0404, 0xf766180a, 0x1421080a, 0x19000113, 0x141a1317, 0x0f10111a, 0x0b0c0d0e, 0x0708090a, 0x01120005, 0x16070b12, 0x1632012b,
0x08a46815, 0x21153326, 0x13152307, 0x0806d879, 0xd5790226, 0xfee6fce1, 0xc0a6a6d9, 0xf8160e01, 0xeb897a7a, 0xaca40292, 0x03afad9c, 0x75758e1b,
0xf0fd778e, 0xfeb77059, 0x21089282, 0xfebc0002, 0x04250455, 0x00140037, 0x40830026, 0x020e2218, 0x19230504, 0x04060316, 0x03020509, 0x67450601,
0x05774406, 0x04002427, 0x04050605, 0x2c398206, 0x00860001, 0x61020505, 0x02020103, 0x0533451c, 0x33456220, 0x401b2205, 0x45268d28, 0x07240d63,
0x01060601, 0x592f2a86, 0x15150f40, 0x25152615, 0x14231526, 0x5c081322, 0x172505b5, 0x23062723, 0x085f4522, 0x11123226, 0x33033700, 0x089d5a18,
0x11076308, 0x04331616, 0x91555725, 0x3f336b9e, 0xa6c069aa, 0x5ca13a0e, 0x63feb5c9, 0x8f9eb921, 0x74701d20, 0x29307e4c, 0x71014676, 0xafee45f6,
0x0dfe7810, 0x8ec90517, 0xe0fe5651, 0x72fef9fe, 0xea2e0106, 0xcd7c9c2c, 0xfe475bc3, 0x00423c02, 0xff010000, 0x0352fe63, 0x001e04f1, 0x40350019,
0x04010e32, 0xf77e0d01, 0x4d1c2110, 0x1b24dc82, 0x0404004d, 0x23070557, 0x25241411, 0x220ac653, 0x4e112111, 0x332a0d3e, 0x21113311, 0xc0c03103,
0x3b4e4efe, 0x71012009, 0x012c0692, 0x7032fece, 0x784da49a, 0x81931417, 0x2606bb54, 0xfee9ff03, 0x82c504d1, 0x001c2887, 0x00280024, 0x7e4a404d,
0x1c2519ff, 0x0d0f104d, 0x0dfe7e03, 0x2305fc7e, 0x1d1e2324, 0x210efa7e, 0xfa7e0711, 0x023e2110, 0x260af97e, 0x0e072305, 0x82330702, 0x113208c1,
0xacd2f303, 0x897830ab, 0x1c6cfe1a, 0x2721318a, 0x01190c1d, 0x329f609b, 0xfcfc9e96, 0x1d0c0e63, 0x00f22b2d, 0x360260ff, 0xe501cafd, 0xd1fe1bfe,
0x03822f01, 0x6225c62a, 0x8401b6c6, 0xa70159fe, 0x922d0383, 0x68c7bedb, 0xfe4e012d, 0x000300b2, 0x20d38260, 0x08d38267, 0x1d001824, 0x49002300,
0x151b4640, 0x0c070802, 0x02080901, 0x0008004c, 0x09080009, 0x01010367, 0x00540100, 0xfd5f0707, 0x0a0b2107, 0x2a0df37e, 0x231e231e, 0x11121f20,
0x82111716, 0x0c102100, 0xee7ecf82, 0x363a080a, 0x35262637, 0x14153335, 0x13351716, 0x07230721, 0x11113307, 0x07060621, 0x9a7ee903, 0x1e79fd1f,
0x5b3e4f9a, 0xb4858c1a, 0x021c3837, 0x0fe4bc4a, 0xf7fef603, 0x983f5518, 0xbe8439fe, 0x9b2bc73d, 0x98b3199f, 0x6159babd, 0x84010313, 0xfe29d994,
0x8a5c0110, 0x0000339f, 0x82420001, 0x576f20bf, 0x11253347, 0x11230323, 0x0a475721, 0x9b9fd036, 0xbafea51f, 0x6a3c1216, 0x42395169, 0x02201030,
0x38fe99b3, 0x220f4657, 0x1800ffff, 0x540c8f6e, 0x9228063f, 0x02006205, 0x00000400, 0x0fbb7b18, 0x01ffff27, 0x04000001, 0x231f8346, 0x00002401,
0x0aa76918, 0x06000332, 0x05b53f00, 0x01000201, 0x27b04b4c, 0x11405850, 0x28301f82, 0x0201034d, 0x00600102, 0x01290101, 0x0e401b4e, 0x00240e82,
0x64010201, 0x2d081b83, 0x40594e00, 0x0404040b, 0x11060406, 0x18080410, 0x0133012b, 0x01012521, 0x01fadb01, 0x038dfbbd, 0xfec4fe71, 0xfa6205c3,
0x1b04a39e, 0x8b82e5fb, 0x7a18f020, 0x84200eff, 0x2a200f82, 0x8020ab84, 0x9d20ab84, 0x13200f82, 0x2b200f84, 0x03205f82, 0x0ab75118, 0x1f001b2f,
0x2c402f00, 0x00050106, 0x04050304, 0x07c65467, 0xce602e20, 0x00293108, 0x1c1c1c4e, 0x141f1c1f, 0x22262524, 0x2b1b0807, 0x0fb05118, 0x23020230,
0x10110222, 0x12323312, 0x21152711, 0x51180435, 0xce2b0cb2, 0x93a2a293, 0x93a29f96, 0x1878fe72, 0x3310ad51, 0x14011601, 0xe9feebfe, 0xedfeedfe,
0x16011201, 0x0096965b, 0x12c75718, 0xbf82c320, 0xbf849c20, 0xbf823b20, 0x27000122, 0x88200f82, 0x06260f82, 0x04b53200, 0x59410101, 0x820c2008,
0x4d28231d, 0x54410102, 0x820c2006, 0x01002209, 0x06524186, 0x1112b52c, 0x19080310, 0x0133012b, 0x02820123, 0x01fadb32, 0x9efed2b3, 0x05c99cfe,
0x049efa62, 0x004cfbb4, 0x39207b83, 0x77205b82, 0x78186b84, 0x44200f7b, 0x03224882, 0x1f829100, 0x1f821f20, 0x07000326, 0x4e000b00, 0x2605d241,
0x0002001d, 0x63020403, 0x8584069c, 0x07df5318, 0x4e052925, 0x881a401b, 0x0004261f, 0x63050405, 0x20b48200, 0x2526835f, 0x40594e01, 0x00831109,
0x0806102d, 0x21132b1c, 0x21132107, 0x82032115, 0x03913803, 0x9efc1b7d, 0xfdae0267, 0x8e036752, 0x620572fc, 0xaf60feaf, 0x18b450fe, 0x210abfb3,
0x58827b05, 0xe3414a20, 0x3701210d, 0xd6200f84, 0x6020a782, 0x5620c784, 0x01223082, 0x0f828c00, 0x0f822420, 0x4b000c32, 0x07080e40, 0x00040001,
0x064c0103, 0x4b010001, 0x152ac385, 0x02030300, 0x0202005f, 0x30834d28, 0x9a425f20, 0x84122007, 0x6301213e, 0x032e1e88, 0x11b6594e, 0x04121114,
0x012b1a08, 0xaa820115, 0x01013523, 0x08068235, 0xfe2e0320, 0xfcb40242, 0xfeef0168, 0xfd980311, 0x7cf2024b, 0xa1a12bfe, 0x10020f02, 0xff00a0a2,
0x791800ff, 0x0f820c47, 0x0d4f5f18, 0x13000330, 0x9d040000, 0x11006205, 0x23001a00, 0x97855a00, 0x01041f37, 0x06010900, 0x69060007, 0x03070108,
0x07020101, 0x05006901, 0x26a68205, 0x02290202, 0x95401b4e, 0x02022321, 0x26835f05, 0x594e0229, 0x22230e40, 0x82111611, 0x141134b4, 0x1f080a10,
0x1216012b, 0x07021015, 0x26352315, 0x18341102, 0x0815fc78, 0xfbf3f845, 0xfbf0b4f0, 0xafb4f9f2, 0x3e40836a, 0x6baa6c83, 0x83413e84, 0x0bc40469,
0xfffdfafe, 0x08f4fe00, 0x0108a2a2, 0xfc00010c, 0x9e0b0701, 0x4d02dafe, 0xa9878ea9, 0x56060655, 0xab8e86a9, 0x0000014c, 0x18ffff00, 0x2010fb78,
0x20e3821a, 0x2ae38296, 0x40390018, 0x0a0d1609, 0x42030400, 0x0d2c08bf, 0x00020102, 0x004d2800, 0x03290303, 0x0d20d882, 0x00210882, 0x2e14855f,
0xb6594e03, 0x14161515, 0x2b1a0804, 0x5a262601, 0x162005a7, 0x84055160, 0x0633080c, 0x01231107, 0xc1eeeff7, 0xba6b7f37, 0xefc1849b, 0x7d01c4ec,
0x02cafd15, 0x63fefd09, 0x030b5187, 0x11bafc48, 0x0202959e, 0xfbc8f7fd, 0x0081fe17, 0x82550001, 0x055b2c8b, 0x0021007b, 0x051bb651, 0x44010002,
0x183207a2, 0x05050106, 0x02006102, 0x034d2e02, 0x00010101, 0xce82045f, 0x82002921, 0x03152393, 0x0c820101, 0x63000122, 0x2c082389, 0x40594e05,
0x0000000e, 0x11200021, 0x16112616, 0x2b1b0807, 0x14110600, 0x21151712, 0x02263335, 0x36123435, 0x12163233, 0x07021415, 0x08128233, 0x35123642,
0x01232610, 0x7a7998bc, 0x81ee54fe, 0x9ee87d83, 0x857de89e, 0x56fef081, 0x9a9a7879, 0xfefeda04, 0xf3fee7e7, 0x439b913e, 0xd9d51001, 0xa5a53a01,
0xd3d9c6fe, 0x9b47f2fe, 0x0e013d91, 0xff1801e7, 0x26080b5e, 0x00880592, 0x82040022, 0x0703247d, 0x8388fe20, 0xa5ff2117, 0x2220d782, 0x1b201784,
0xfd211785, 0x201784de, 0x20178252, 0x20178413, 0x2017862b, 0x2417848b, 0x0300007a, 0x201784eb, 0x2017862e, 0x241784b3, 0x04e7ff98, 0x2017845b,
0x2017864a, 0x211783d1, 0x4782eefe, 0x17848b20, 0x17867b20, 0x2f852720, 0x2f841782, 0x8b590221, 0xc500212f, 0x06205f83, 0x11abcc18, 0x2f822520,
0x17848b20, 0x02234783, 0x82050f07, 0x01002236, 0x27ad8200, 0x6205d203, 0x42000700, 0x29050343, 0x03010414, 0x03010000, 0x9f436700, 0x06e04405,
0x0121168a, 0x05bb4301, 0x594e0124, 0x45820c40, 0x0700072b, 0x05111111, 0x012b1908, 0x054a4b15, 0xfdd2032e, 0x03c6c6d2, 0x7efda325, 0xc3fd6205,
0x0f724e82, 0x22678205, 0x854a000b, 0x051a2f67, 0x03020101, 0x80030102, 0x02020104, 0x48825f00, 0x20098d42, 0x231c8819, 0x84030300, 0x02202089,
0x200fc344, 0x05e26811, 0x42297682, 0xfea72e04, 0xf3fec6f3, 0x287282a7, 0xfb7401e5, 0xfebb0445, 0x0eaf448b, 0x65822d20, 0x5500023d, 0x5b046bfe,
0x12007b05, 0x4b001e00, 0x020306b6, 0x4c010300, 0x502db04b, 0x46164058, 0x04230995, 0x84030301, 0x002d2596, 0x13401b4e, 0x00240e82, 0x63000300,
0x8b832088, 0x13130c29, 0x1d131e13, 0x83142828, 0x020023fe, 0x90820706, 0x85422620, 0x079b760a, 0x10113908, 0x5b043312, 0xc287bc5e, 0x755fbc88,
0xe7a7a6e8, 0x929ffe75, 0x93a1a292, 0xf1019e96, 0x19bdd5fe, 0x84017bfe, 0x2b01b918, 0x4301d6c3, 0xbefeb0b4, 0x01d8fdd9, 0x01160112, 0x0af7c818,
0x01000034, 0x51fe8b00, 0x62055804, 0x17002000, 0x01201440, 0xdf454901, 0x2e21260a, 0x2b180802, 0x05726f01, 0x022e272d, 0x24123435, 0x21072133,
0x18150222, 0x08089292, 0x8502073e, 0x6e2f615f, 0x5cba9473, 0xe72b0189, 0xfe1d3201, 0x42e5e5ea, 0x927b8795, 0xfea7964a, 0x445a2bd1, 0x2f383a29,
0xa7eba23c, 0xb12701b6, 0xe1fdfea6, 0x367ab18b, 0x4f705731, 0x004a9e6c, 0x01260082, 0x0000f000, 0x83823504, 0x51000f2d, 0x01060a40, 0x01070102,
0x48020203, 0x18220672, 0xd4180100, 0x04240864, 0x0404005f, 0x2509d541, 0x02030018, 0x1f908603, 0x594e0030, 0x251111b7, 0x08051021, 0x21012b1b,
0x72532111, 0x21210806, 0x21112311, 0x96fd2004, 0x5e472401, 0x4f283431, 0xc6ecfe3b, 0xb9044503, 0x18154afe, 0xfd0e0e90, 0x2083829e, 0x204e8200,
0x208f8285, 0x240b822d, 0xb7430009, 0x227d8207, 0x46020201, 0x13200668, 0x0220af82, 0x68231182, 0x82030300, 0x06cb4287, 0x82001321, 0x8b8620b3,
0x4e032a1a, 0x1112b659, 0x08041012, 0x0881821a, 0x23011721, 0x01272101, 0x02620133, 0x3ffe25a6, 0xfdc201de, 0xbf01255a, 0xa80b03de, 0x63029dfd,
0x825702a8, 0x0100233b, 0x77822c00, 0x77828420, 0x41000b29, 0x070a0940, 0x42040306, 0x27260548, 0x0e405850, 0x72830104, 0x0201022a, 0x00290000,
0x0e401b4e, 0x03210a84, 0x8217845f, 0x0c4029f2, 0x0b000000, 0x12130b00, 0x26053a43, 0x03032301, 0x82270127, 0x2722087a, 0x0e027602, 0xabadc8c3,
0xfe4e0901, 0xde01c696, 0xfa620548, 0xfd2c029e, 0x050304d4, 0x041efcd9, 0x3a82aeb4, 0x00020027, 0x0454feb9, 0x347f827f, 0x00170003, 0x170f4067,
0x01020214, 0x0004010c, 0x0403010b, 0x068e4103, 0x02001f24, 0x84820001, 0x01068028, 0x4d280101, 0x8e820105, 0x04004d2a, 0x00610304, 0x032d0303,
0x21889882, 0x01211b83, 0x8a27855f, 0x40593221, 0x2412120a, 0x10111123, 0x2b1d0807, 0x33112321, 0x03591801, 0x01332810, 0xc6c67f01, 0x18857b02,
0x2d08f64b, 0x0112fe42, 0x27fee3d7, 0x40fb6205, 0x5918f0fe, 0xe033088f, 0x8bfd8202, 0x00010000, 0x04000043, 0x007b05a8, 0x4e7b0013, 0x0c24056b,
0x0306090c, 0x4c27aa82, 0x4a020113, 0x820c401b, 0x85032006, 0x4c022112, 0x2906df52, 0x00000011, 0x01036102, 0xcb410202, 0x054b4408, 0xaa441520,
0x00002105, 0x2e21d584, 0x074f484d, 0x68821520, 0x8d860121, 0x4e00381c, 0x25b65959, 0x04211412, 0x012b1a08, 0x06222326, 0x23110107, 0x73330111,
0x2f080691, 0x19208004, 0xfe1b3827, 0x59fec9e6, 0xcb3601db, 0x455f4c26, 0xd6043241, 0xfd3c3108, 0x02effda0, 0xfd53030f, 0x58d9015c, 0x00162a62,
0x03ffffff, 0x8824c784, 0x6c022200, 0x03259d82, 0x3cfd3107, 0x85178200, 0xe50621df, 0x6f451786, 0x0b0f4b07, 0x1d001622, 0x2405ff5e, 0x02050400,
0x0afe5e04, 0x084d2e27, 0x00050501, 0x294f8261, 0x174e0029, 0x00101017, 0x5c181700, 0x132108ca, 0x05ff5e12, 0x2b170827, 0x15121600, 0xd25c1814,
0x1806200a, 0x230cce5c, 0x75e7ff02, 0x82056944, 0x942c0805, 0x66020b94, 0x9994940b, 0x98fd0794, 0x05969608, 0xbefeb07b, 0xbffed5d9, 0x4001afb3,
0x4301d6d8, 0xe8e7a1b4, 0xaefbe6e9, 0xf6f7f8f5, 0xc72abf83, 0x5e040000, 0x02006205, 0x87825700, 0x75000134, 0x7604e7ff, 0x1c007b05, 0x31403400,
0x03000102, 0x05820310, 0x0e87db18, 0x17672e20, 0x02292208, 0x2836824e, 0x251b001c, 0x08052426, 0x20aa8219, 0x87db1817, 0x0c3f4b51, 0x00010023,
0x20a3823a, 0x20a3823b, 0x31a3831b, 0x03020118, 0x01020b17, 0x00010a02, 0x004c0301, 0x08550202, 0x41a38405, 0xa382075c, 0x1a001b25, 0x84262525,
0x180420a3, 0x080e9c7c, 0x10353642, 0x07222302, 0x33363627, 0x0401ab02, 0xeefe9d8c, 0x48d18cad, 0x67934363, 0xc668b477, 0x5a9ba7bd, 0x0583c760,
0xc0fea47b, 0xbdfee2e5, 0x7e4755a6, 0xf5703e36, 0x012601c0, 0x467e6602, 0x02000043, 0x370a3741, 0x40480028, 0x00010245, 0x05010303, 0x01011000,
0x02011104, 0x074c0401, 0x04240d82, 0x69040501, 0x03258b82, 0x03010661, 0x0c454103, 0x001d1d2a, 0x1d281d00, 0x00212327, 0x20054d41, 0x1f4d4108,
0x15161233, 0x22230614, 0x36343526, 0xbb500333, 0xa57a6b57, 0xe1dc1874, 0x4a462913, 0x4a3a3b4a, 0x7b053a4a, 0x0cdc6a18, 0xdc184720, 0xfd2908e9,
0x383648bb, 0x36384a4a, 0x41c78248, 0x2720095b, 0x1828c783, 0x17030201, 0x0b020501, 0x0a22c782, 0xc78c0001, 0x9c630220, 0x0c694106, 0x001c1c2a,
0x1c271c00, 0x00202226, 0x84057141, 0x1a7141c7, 0x7d41c68b, 0x8818201a, 0x178541c5, 0x5b4fc68a, 0x00843908, 0x00420222, 0x07070100, 0xff7ffe22,
0xb109002e, 0xffb80102, 0x2b35b02e, 0x2207f767, 0x88850592, 0xfe242423, 0x862fff5e, 0x852f2023, 0xf6fe2723, 0x92040000, 0x23886b05, 0xc2fd2524,
0x238322ff, 0xffb80223, 0x20238622, 0x22238ef0, 0x8fbafd26, 0x28ff2123, 0x2722238e, 0x2390f4fd, 0x23843420, 0x6b886c20, 0x00fe2822, 0xfe21238f,
0x202384f3, 0x24238875, 0xfeeefd29, 0x218f85a1, 0x8f86a1fe, 0x77202385, 0x2a202388, 0xff212391, 0x4a4784ff, 0x2f2209e7, 0xff4a39fe, 0xfe312214,
0x21178961, 0x5385ff06, 0x07020024, 0x0365fe16, 0x06922209, 0x201788c2, 0x2a588219, 0x00ffff00, 0x0482fe1f, 0x86620592, 0x07032417, 0x852e051e,
0x20178447, 0x20178284, 0x8f408276, 0x82852017, 0x8b772017, 0xf6fe2117, 0x6b202f84, 0x78201782, 0xf020178c, 0x79201788, 0xff21178b, 0x20178828,
0x20178c7a, 0x20178434, 0x4b47826c, 0x8f86055f, 0x84f3fe21, 0x82752017, 0x8c7c2017, 0x2017855f, 0x20178277, 0x25478c7d, 0x040000b3, 0xbf830522,
0x57424620, 0xd5fd2705, 0x09002eff, 0x574201b1, 0x93ff2109, 0x2422238e, 0x238fb5fd, 0x8466fe21, 0x85d78323, 0xfd252447, 0x8322ff32, 0x0a574247,
0x238e6820, 0x23922620, 0x238e8020, 0x4cfd2722, 0x8c204790, 0xfb832384, 0x28226b85, 0x238f58fd, 0x4c92ff21, 0x2f220edf, 0xf74cccfd, 0x4c312014,
0x602006f7, 0x13262f82, 0x22008405, 0x07414802, 0x8f822006, 0x40ff21e3, 0x2422238e, 0x238f62fd, 0x8413fe21, 0x886b2023, 0xfc252247, 0x219b8fdf,
0x238e15fe, 0x23922620, 0x238e2d20, 0xf9fc2722, 0x39204790, 0x6c202384, 0x28226b88, 0x238f05fd, 0x84e4fd21, 0x88752023, 0xfc292423, 0x41a1fedf,
0x5f430597, 0xe3fd2107, 0x77202384, 0x2a222388, 0x238fdefc, 0x4e3fff21, 0x2f220e17, 0x2f4e79fd, 0xfd312114, 0x2506bb4c, 0x130482fe, 0x53856205,
0x07030025, 0x8432051e, 0x8460202f, 0x82842017, 0x42932017, 0x17850687, 0x17884020, 0x178b9420, 0x8413fe21, 0x826b2017, 0x8c95202f, 0x88152017,
0x8c962017, 0x882d2017, 0x8c972017, 0x84392017, 0x826c2017, 0x8b982047, 0xe4fd2117, 0x75201784, 0x99201782, 0xe320178c, 0x77201784, 0x9a201782,
0x8825a78c, 0xeb030000, 0x20bf8305, 0x0627424a, 0x0342aa20, 0x90ff210f, 0x85202384, 0x23853b82, 0xb2fd2424, 0x53432fff, 0x07874506, 0x23849220,
0x2385d783, 0x5efd2522, 0x210fbb41, 0x238e8bfe, 0x55fd2622, 0x55202390, 0x2722238e, 0x239021fd, 0x23846120, 0x6b85fb83, 0x2dfd2822, 0x0c202390,
0x75202384, 0x2922b388, 0x034207fd, 0x0bfe210f, 0x77202384, 0x2a222388, 0x238f06fd, 0x508dff21, 0x2f220e27, 0x3f50c7fd, 0xfd312214, 0x4f1783b3,
0xff2006f7, 0x87455385, 0x83c5200a, 0xc2062147, 0x87451788, 0xa6ff2706, 0x5b04e7ff, 0x17828405, 0x7f415020, 0x47c82006, 0xff210f07, 0x2023845e,
0x22238885, 0x4780fd24, 0x11201007, 0x7b202384, 0x25222388, 0x9b46ddfc, 0x8e132010, 0x92262023, 0x8e4b2023, 0xfd272223, 0x20479017, 0x22238e56,
0x8f22fd28, 0x33ff2123, 0x280e4751, 0x006dfd2f, 0xffffff00, 0x22178e70, 0x84a9fd31, 0x00792617, 0x05600400, 0x28bf8284, 0x01000052, 0xfd240707,
0x1007419b, 0x23822420, 0x85058b22, 0x55202382, 0x46202386, 0x20108742, 0x20238402, 0x2223886b, 0x42ccfc26, 0xfd210f1b, 0x202384d7, 0x2223886c,
0x90a3fc28, 0x847f2023, 0x88772023, 0xfc2a2223, 0x101b427a, 0x13521720, 0xfd2f220e, 0x142b5251, 0x27fd3122, 0x00201783, 0x2005fb51, 0x255385ff,
0x16070200, 0x178a0004, 0x1788c220, 0x84051921, 0xa6ff2117, 0x1b425f82, 0x42592005, 0xcb460c1b, 0x845d200b, 0x82852023, 0x2223853b, 0x417ffd24,
0x10201013, 0x7b202384, 0x25222388, 0xef8fdcfc, 0x8e12fe21, 0x92262023, 0x8e4c2023, 0xfd272223, 0x20479018, 0x22238e57, 0x9023fd28, 0x8e2a2023,
0xfd292223, 0x0f5b4125, 0x8e29fe21, 0xfd2a2223, 0x21238f24, 0x7b5333ff, 0x0763420e, 0x178e7120, 0xaafd312d, 0xffff0000, 0x82fe5500, 0x41055b04,
0x00250607, 0x051e0703, 0x21178334, 0x1784a6ff, 0x22008426, 0x0000c302, 0x5d20178a, 0x85201784, 0xc4201782, 0xfe21178b, 0x20478810, 0x20178cc5,
0x20178812, 0x20178cc6, 0x2017884c, 0x20178cc7, 0x20178857, 0x20178cc8, 0x2017882a, 0x20178cc9, 0x20178829, 0x3e1789ca, 0x6d000200, 0x4904e6ff,
0x17003704, 0x65002400, 0x0e200e40, 0x05020509, 0x4c010403, 0x1801010a, 0x2d0b5cab, 0x02056100, 0x2b000002, 0x0303004d, 0x9c4f6101, 0x001c2107,
0x062a1283, 0x02040401, 0x02010561, 0x1e8b3102, 0x1340592c, 0x00001818, 0x23182418, 0x60821c1e, 0x2b162008, 0x18080713, 0x1716002b, 0x13033313,
0x07171616, 0x27272626, 0x02222302, 0x36363411, 0x65060633, 0x790806c0, 0x0223022e, 0x361e9f87, 0x0a3572af, 0x5042292a, 0x60120f5f, 0x5ccab7e9,
0x6e547fb3, 0x8c556567, 0x60491a2c, 0x95370442, 0xfd2b01af, 0x2ef6feda, 0x0c9d0e2f, 0xfe70565b, 0x011401d4, 0x8efea50b, 0xc8c8d297, 0x97e8b0c0,
0x020046ad, 0x52feaa00, 0xde054c04, 0x2c001600, 0x3f404200, 0x03020116, 0x02050129, 0x05000108, 0x090a4c03, 0x00490002, 0x05020003, 0x00690203,
0xd8840404, 0x064d2a22, 0x2d0cba4f, 0x2b172c17, 0x282c2124, 0x1b080724, 0x8870002b, 0x11272206, 0x30b48407, 0x15161632, 0x12070614, 0x34353636,
0x37232326, 0x05a96f33, 0x11225008, 0x33161611, 0xcb794c04, 0x42954f78, 0x7eb964c0, 0xa26dbc72, 0x497d0a86, 0x1466a4af, 0x7b81675e, 0x8234dd67,
0xfefd0254, 0x6bc4819a, 0x22fe3233, 0x82e9051c, 0xa35964bd, 0x15a7926c, 0x804058fd, 0x919f9a5a, 0x7372807f, 0xa0fcf4fe, 0x82002d2f, 0x01700800,
0x55fe4d00, 0x37046304, 0x06001300, 0x010007b3, 0x17012b32, 0x14150601, 0x35260717, 0x02263734, 0x16372702, 0xa1031312, 0x3251fec2, 0x2a349a19,
0x50a28a2e, 0x36b665c2, 0xfc2c3704, 0x5b7c731a, 0x84671670, 0x01c26e77, 0x50360183, 0x3cfe7d45, 0x0200edfe, 0xe7ff7f00, 0xdd053c04, 0x30002300,
0x2f403200, 0x02000102, 0x03031c30, 0x4c020003, 0x02267382, 0x02010461, 0xd5412a02, 0x0000230b, 0x2d82282a, 0x252d2223, 0x05cc4105, 0x0d25d818,
0x456c1420, 0x26372108, 0x36239682, 0x41023336, 0x590806d7, 0x26263435, 0xa2e40227, 0x743f6049, 0x2a615447, 0xb090605b, 0x91d97457, 0xaf73d993,
0x61576b8f, 0x72bd71af, 0x8d838190, 0x05777e36, 0x703b3ddd, 0x3d462730, 0x2730392c, 0x95ca8b3b, 0x878beb8b, 0xf4aa8fe9, 0x5579373a, 0xfd438057,
0xa995c766, 0x75b0b9be, 0x0032648f, 0x83680001, 0x29230807, 0x47404a00, 0x0304011d, 0x0405011e, 0x05000113, 0x00010108, 0x01020109, 0x05004c05,
0x01000106, 0x53670005, 0x31200714, 0x350be650, 0x26280001, 0x191b2022, 0x05070b0d, 0x29012900, 0x2b160807, 0xb7852201, 0x076c4918, 0xc1183520,
0x4e680a07, 0x3344080b, 0x80600207, 0xcb809072, 0xf65463a1, 0x78d38791, 0x726f8685, 0x6f79c471, 0x405d4fdb, 0x7e76539d, 0x17c26775, 0x544fdc01,
0x7b6e6455, 0x944d4d3f, 0x127d7568, 0x5a587918, 0x3636417f, 0x4e252774, 0x9452454e, 0x2e05df41, 0x0442fed8, 0x00c60530, 0x403c0024, 0x79011f0b,
0x002106b6, 0x05205349, 0x665b0b20, 0x002a2507, 0x10401b4e, 0x0022f782, 0x23825701, 0x005f0022, 0x4f270b82, 0x2324b659, 0x83022022, 0x000621b9,
0x1628ba83, 0x15021e17, 0x27070614, 0x080b4b56, 0x0637004e, 0x21372123, 0xfeea3004, 0x7f3c8cee, 0x48847d76, 0x624da59e, 0x5c512660, 0x8c5cb39a,
0x3fee2401, 0x17e3fef1, 0x4805d702, 0xf7edfec4, 0x4a725d7c, 0x5e3e2a28, 0x49af724b, 0x435d3283, 0x20232b23, 0x84a86e36, 0x0105018a, 0x991baa17,
0x8c33b785, 0xf40355fe, 0x18003704, 0x14405100, 0x02000111, 0x82020c15, 0x124c2805, 0x044a0201, 0x86010203, 0x09fa53c0, 0xdd533120, 0x53112008,
0x002005dd, 0x25061354, 0x594e0031, 0x55820b40, 0x17001831, 0x08042813, 0x16002b18, 0x11071115, 0x7a262634, 0x3508061e, 0x16372734, 0x36361716,
0x93610333, 0x4a4818c0, 0xc0318d4d, 0x1c0fb333, 0x60ba4305, 0x96a23704, 0x04176dfb, 0x37746e34, 0x06fd4662, 0xb0a1cd02, 0x296a1a19, 0x51825a53,
0x2707b772, 0x0f00dd05, 0x21001800, 0x7205b753, 0x2a2010b7, 0x3408346b, 0x194e0029, 0x00101019, 0x19211900, 0x101c1e21, 0x14171018, 0x18b75313,
0x020e5108, 0x022e2107, 0x021e0123, 0x36363233, 0xcef00237, 0x94d06b69, 0x6b6ad095, 0x735995d1, 0x1402043c, 0x58713b04, 0x3d05f4fe, 0x70575771,
0xdd05053c, 0xf0adfeb2, 0xbba6feec, 0xf05801b7, 0xb65501ec, 0xbdea6c9b, 0xfd6ceabd, 0x70efc15e, 0x00c1ef70, 0x3205af53, 0x001e041a, 0x40290011,
0x02010926, 0x03010a00, 0x424c0202, 0x2b260707, 0x0202004d, 0xfd5b6103, 0x23242205, 0x06f95611, 0xc86d3720, 0x08b74205, 0xfed4013f, 0x0a0215a1,
0x5a524f59, 0x48922932, 0x034f9262, 0xf2fc9c82, 0x89244348, 0x8d4a2217, 0x3c4e8260, 0xa2000200, 0x6804e7ff, 0x0b003704, 0x3f001400, 0x060b0d40,
0x00040102, 0x074c0101, 0x077f4201, 0x01020c24, 0x73820101, 0x0b570020, 0x840c2005, 0x33138486, 0x40594e00, 0x0c0c0c0a, 0x1f140c14, 0x2b170803,
0x01011701, 0x0806de45, 0x16030139, 0x11231115, 0x03272634, 0x52fea189, 0x5b3c1a01, 0x7b55423b, 0x3e89fe43, 0x1919c036, 0xfe653704, 0x3fd1fe68,
0x0b9c0e3b, 0xa5014d50, 0xf998ea01, 0xab0273fd, 0x825eb362, 0xff5a26ff, 0x056704e6, 0x2c9182e1, 0x051c401f, 0x4a000204, 0x0d0e1113, 0x05677f04,
0x4e002b22, 0x5b088182, 0x02140014, 0x012b1608, 0x3727022e, 0x1617021e, 0x07171212, 0x01030226, 0x22020127, 0x6c85501d, 0x7dcca41d, 0x7c6a3d29,
0xa46dc34d, 0xbac2fe41, 0x1e047e01, 0x11487760, 0xd1731893, 0xa3fefdae, 0x465000ff, 0x01c6018d, 0x2a59fc53, 0xffff0e04, 0x55feaa00, 0x1e040704,
0xe0040200, 0x01335e82, 0x00003a00, 0x37044f04, 0x2a000a00, 0x070809b7, 0x5a050304, 0xb62206fc, 0x09410101, 0x83b42005, 0x59762308, 0x2f820940,
0x0a000a22, 0x21208e83, 0x08068b45, 0x01170120, 0xd64bce01, 0xae6abd73, 0xbf410140, 0x4d0166fe, 0x44673d02, 0xfe1ffe7b, 0x2b9403ca, 0x3f43f4fb,
0xfebd2c05, 0x05560442, 0x003400dd, 0x82324035, 0x0203214d, 0x2d310482, 0x03010201, 0x021d1e4c, 0x01004902, 0x02010200, 0x542c8263, 0x2a2005fe,
0x3424fa84, 0x24213300, 0x82059855, 0x079e71f3, 0x23073322, 0x4305676e, 0x362113fe, 0x07944536, 0xb1035808, 0x9b415ba5, 0x7d877c4d, 0xe516eb71,
0x49478358, 0x877d9a96, 0x4da49f42, 0x491e6260, 0x80d7b74a, 0x704b9364, 0x7bcc7985, 0x7076dd05, 0x5f642b2a, 0x45a16662, 0x73654978, 0x4628314a,
0xb0714c61, 0x642f8349, 0x222a2245, 0xb46f3d18, 0x53996d8f, 0x6b80280d, 0x76529967, 0x04250837, 0x00020037, 0x3cb382d5, 0xff0c0001, 0x046204e7,
0x0016001e, 0x120f404a, 0x11040001, 0x00020205, 0x01064c02, 0x061a4402, 0x0103122d, 0x04000002, 0x0404005f, 0x5f004d2b, 0x122106a7, 0x20248200,
0x31198a86, 0xb7594e00, 0x19111125, 0x1b080510, 0x1123012b, 0xf8831614, 0x11354208, 0x11231121, 0x27070606, 0x21333636, 0x2ba26204, 0x68774236,
0x3ebf9dfe, 0x2d282f3d, 0x58036a67, 0x9bfd8403, 0x990e454c, 0x027f841d, 0x037cfc7d, 0x0f090184, 0x0010148f, 0x00020000, 0x0455feb3, 0x2cab8224,
0x001b000e, 0x1238403b, 0x08030201, 0x30818201, 0x02090a4c, 0x01054900, 0x61010303, 0x01010104, 0x20968331, 0x06cf5700, 0x000f0f33, 0x0f1b0f00,
0x0014161a, 0x250d000e, 0x2b170806, 0x06a27800, 0x0711272d, 0x33121011, 0x15150606, 0x48331616, 0x3808050d, 0x5dda4a03, 0x69ac85ba, 0x85d6ddc0,
0x4776286e, 0x7c78827c, 0xe7fe3704, 0xfc99f2fe, 0x0dfe7894, 0x01c90317, 0x95120107, 0x3dffd4cf, 0xcec3cb41, 0x000100c4, 0x0451fec3, 0x30978227,
0x40250025, 0x00010222, 0x164c0101, 0x00030315, 0x22b58249, 0x83026101, 0x4e002191, 0x25240b82, 0x03252400, 0x16207f83, 0x410a6370, 0x430815fb,
0xa62c0333, 0x74415d55, 0x528c5651, 0x72838033, 0xa6994883, 0x26626051, 0xa6866d5c, 0x92e58157, 0x3e353704, 0x56262c7c, 0x726479aa, 0x482a3050,
0xa06f4c65, 0x55278448, 0x2a302842, 0xb5773128, 0x81f1a487, 0x02277182, 0xe7ff8900, 0x82046404, 0x1e0037f2, 0xb04b4f00, 0x40585022, 0x00010317,
0x005f0200, 0x4d2b0202, 0x49490105, 0x01292d06, 0x1d401b4e, 0x00020300, 0x00720300, 0x60201f82, 0x59221f90, 0x7e5d0d40, 0x36152905, 0x08061026,
0x27012b1a, 0x270e1078, 0x36001732, 0x26271035, 0x08051e4a, 0xef640439, 0xcf6c5f50, 0x6dd09291, 0xe7a0e577, 0x8074fef8, 0x5ca47c88, 0x87038183,
0x8fc73311, 0x8786f9a9, 0xf4a3a8f8, 0x60fc0b86, 0x1d01cbc5, 0xaf420170, 0x00c4ca9f, 0x82480001, 0x040133b3, 0x0019001e, 0x0d29402c, 0x19020101,
0x0104020c, 0x6e184c02, 0x2b200855, 0x280bf845, 0x24251123, 0x1b080522, 0x6fbd182b, 0x22232108, 0x20066042, 0x065e4515, 0x01042b08, 0x62489229,
0x485a4f91, 0x3f1f4a69, 0x8b025c91, 0x4e587dfe, 0x17205a53, 0x608d4a22, 0x140e6602, 0x9a131693, 0x43488cfd, 0x7f820024, 0x7f82c220, 0x7f822320,
0x21001729, 0x03041e40, 0x82010102, 0x02022170, 0x30075142, 0x17000000, 0x14231700, 0x19080526, 0x1216012b, 0x07474915, 0x33114e08, 0x33161411,
0x35363632, 0xee030334, 0xdd871b1a, 0x60ab7082, 0x4b5f65c0, 0x04345080, 0x00ff8e1e, 0x74f1b292, 0x02739f4f, 0x6c3afdd6, 0x92b14b6c, 0x001301fd,
0xfe3e0002, 0x04720455, 0x00180037, 0x40490025, 0x07141d09, 0x06040506, 0x06d24b02, 0xfa820e20, 0x032b7b82, 0x00000201, 0x1b4e022b, 0x82001240,
0x834d2008, 0x61013315, 0x01010103, 0x594e0231, 0x19191040, 0x25190000, 0x45822419, 0x051c1722, 0x0805e542, 0x11051069, 0x11241107, 0x33371234,
0x14150206, 0x11171616, 0x0e333634, 0x3e111502, 0x26343502, 0xd1032326, 0xad2dfea1, 0x323c4cfe, 0x2d3538b7, 0xa48e616e, 0x680e383f, 0x401b357a,
0xfe370439, 0xfdeefef3, 0x7ffe2bff, 0x26970116, 0x01a6cc01, 0xffa78416, 0xa47d6f00, 0x06020e60, 0x538fdeda, 0x15fe7281, 0x86ad610d, 0x8251ad92,
0x01540892, 0x53fe6000, 0x35045304, 0x06001000, 0x01020bb3, 0x01012b32, 0x27010107, 0x27022e01, 0x17121637, 0xd3021701, 0xfebd8001, 0xbec8fecd,
0x7d4f8701, 0x61bc5078, 0x0d015297, 0xfd7201bd, 0x94022b0c, 0x022270fd, 0x9ce6b3f2, 0xfe674451, 0x4d02ddf6, 0x01000021, 0x08135018, 0x1a001c3d,
0x0f1a1740, 0x000c0d0e, 0x02490006, 0x00000201, 0x164e002b, 0x0803161d, 0x83252b19, 0x330324ce, 0x84151216, 0x022e25f1, 0x11331135, 0x3708ee84,
0x6eb00233, 0xb9342a74, 0x3bfe1a1a, 0x5bc397ac, 0x5e6f31b7, 0x5b0e87ac, 0x01e67f9d, 0xfefe8c2c, 0x2c21fe94, 0x01177bfe, 0xad700c9c, 0xfd99026b,
0x406d5374, 0x0097030b, 0x20080082, 0xff310001, 0x047f04e7, 0x0027001e, 0x1d2a402d, 0x0303081c, 0x064c0102, 0x02020205, 0x01044d2b, 0x06ac7703,
0x4e002922, 0x273a2d82, 0x25272700, 0x07242415, 0x012b1b08, 0x02141112, 0x27262223, 0x22230606, 0x7e413502, 0x32332508, 0x37353536, 0x08052342,
0x0234354c, 0x66190427, 0x7e68969c, 0x617d1911, 0x2c389797, 0x3f2130a5, 0xac3d4d50, 0x3e504f3c, 0x1e043126, 0xdefee2fe, 0x73f8feef, 0x01757072,
0x01a8f601, 0xfe9c7622, 0xb4ad9dfc, 0x19f69bb3, 0xa8a7f2fe, 0x0197adb4, 0xffff9f07, 0xa7827500, 0x5c061a26, 0xde022200, 0x02238982, 0x82281f07,
0x21178706, 0x1788f405, 0x8ae30021, 0x30072117, 0x21201788, 0xc2201786, 0x23204782, 0xea204784, 0x45204785, 0x17842f85, 0x17854784, 0x00241582,
0x00ffff00, 0x47841784, 0x21201785, 0x17821883, 0x47828920, 0x47832720, 0x8cd50021, 0x82312047, 0x847f2017, 0x8cee205f, 0xff6d2417, 0x844904e6,
0x85d62017, 0x82172017, 0x20478206, 0x202f82a0, 0x2017844d, 0x201785da, 0x24178565, 0x0355fe8c, 0x201784f4, 0x201785dc, 0x05af4146, 0x0000d42f,
0x37041904, 0x45000d00, 0x020809b4, 0x06f96202, 0x01030f29, 0x01000002, 0x4f670002, 0x1724070a, 0x01000100, 0x2105ad46, 0x1d825702, 0x5f000236,
0x00020000, 0x0b40594f, 0x0d000000, 0x11110d00, 0x2b180804, 0x08055e63, 0x27263420, 0x15161637, 0xfd190415, 0x181bc0ae, 0x022420af, 0x33fea26f,
0x9b68cd02, 0xb542194e, 0x32823899, 0x23000128, 0x700455fe, 0x3c821e04, 0x2440272c, 0x0200010a, 0x04094c01, 0xff480303, 0x5f022105, 0x05496483,
0x000d2305, 0x5d86230c, 0x07110524, 0xab440511, 0x04240806, 0xc048fe70, 0x473a00ff, 0x58312133, 0x9b1e044f, 0x17eafa01, 0x08012d05, 0x0c12950e,
0xb5000100, 0x3f04e7ff, 0x14285f82, 0x0c403900, 0x03040b12, 0x4c21cb82, 0x25f04905, 0x1114b529, 0x1908031c, 0x4914012b, 0x360805e9, 0x37123435,
0x33112301, 0x01071411, 0x12e40333, 0x76402326, 0xfe111968, 0x1abde04a, 0x01d9b301, 0x263e341f, 0x941f9010, 0x3d015186, 0x04b5fc9d, 0xd22dfe1e,
0x844b03a6, 0x82ad20e7, 0x04023787, 0x001b0037, 0x10314034, 0x0f020101, 0x01000203, 0x00030102, 0x92824c03, 0x00610226, 0x4d310202, 0x2208fe48,
0x824e0329, 0x001b260b, 0x2524251a, 0x23828205, 0x37272604, 0x18086b47, 0x080cd24f, 0x01230633, 0x574da9a3, 0x904b6d47, 0x528e8fa1, 0x595b437a,
0xdc9a6ba7, 0x99e37b74, 0x7b3b3b19, 0xc5bc252a, 0x2925c3cd, 0x89353e78, 0xf5a8abfd, 0x00020082, 0x208b82b0, 0x278b8211, 0x00250019, 0x0f454048,
0x102b8682, 0x01020501, 0x02040301, 0x5d030001, 0x033206eb, 0x00690405, 0x61010202, 0x31010100, 0x0301064d, 0x1a480003, 0x1a1a2206, 0x2b988200,
0x1e20241a, 0x18001900, 0x08242623, 0x2420a182, 0x22088c4b, 0x18363634, 0x24073154, 0x16141506, 0x0ce85d33, 0xd8183220, 0x522f1429, 0x3a3b494a,
0x893a4949, 0x463b7d5c, 0x18a5f787, 0x2e0aea4a, 0x36480c02, 0x374a4a37, 0x00004836, 0x41000200, 0x27200947, 0x102fbb83, 0x0f020101, 0x03010501,
0x02040001, 0x86000301, 0x830020bb, 0x411a82bb, 0xc0830a55, 0x4e032923, 0x0ddf5d1c, 0x83252421, 0x1b5d41bb, 0x6941bd8b, 0x861b2018, 0x147141bf,
0x88ae0221, 0x022208c1, 0x55fe8900, 0x37042704, 0x1d001100, 0x23402600, 0x03040506, 0x03490204, 0x02010201, 0x01010086, 0xe5826100, 0x01312408,
0x1212124e, 0x281c121d, 0x1808042c, 0x0606002b, 0x11071107, 0x34350226, 0x32333636, 0x00151616, 0x4b343536, 0x3408070c, 0xa5542704, 0xbdb2c076,
0x9594d16c, 0xb4fe69cf, 0x83818181, 0x01838183, 0x1693e67e, 0x01177dfe, 0x1e011f9a, 0x8bf9a5e2, 0xfea9f787, 0xcacbc570, 0xcaccc4c4, 0x356482c4,
0x87000100, 0xf00351fe, 0x27008504, 0x27b30600, 0x2b320113, 0x6a821401, 0x85650e20, 0x07584f0b, 0x832e2721, 0x374b087d, 0x0335023e, 0x789357f0,
0x3c458074, 0x86718c8c, 0x4fa7984d, 0x522f5d63, 0xae812757, 0x8cb9c66a, 0x76043273, 0x1d44816d, 0x606d3a1c, 0x2d4c6f5f, 0x4e664324, 0x80499d6b,
0x2a3d552c, 0x0c1b2133, 0x8db46528, 0x252ec9b3, 0x8244452b, 0xfef0367f, 0x04210453, 0x0015001e, 0x082e4031, 0x01010201, 0x090e0f4c, 0x080c4c03,
0x00010438, 0x005f0300, 0x002b0303, 0x1400014e, 0x060b0d12, 0x01150004, 0xba500515, 0x0a816506, 0x11072e08, 0x21333634, 0x57560207, 0x484e014f,
0x28302d5d, 0xc2fe3b4f, 0x01abb0c0, 0x840318d6, 0xfafe5951, 0x0e861815, 0x1b31fd0e, 0xa9a67c04, 0x26ff859a, 0x04e7ffa5, 0x82e3050b, 0xb306237f,
0xff830510, 0x4b031721, 0x37280563, 0x13270513, 0x17373636, 0x03340e82, 0xc937d403, 0xa90d404b, 0x9a4e460b, 0xc0349ffd, 0xaa0c3f4c, 0x91320b82,
0xfe96ae03, 0x55b0986c, 0x8bc46a22, 0x98b01a01, 0x0c848201, 0xfe8cc323, 0x375f85f8, 0x0457fe38, 0x00e1050e, 0x402b0016, 0x1114160d, 0x00050c0f,
0x0207084a, 0x4d066d4e, 0xb4390f5d, 0x08021d14, 0x04132b18, 0x14111200, 0x12270702, 0x03273411, 0x27260123, 0x08048201, 0x01be2539, 0xba750121,
0x3ea6232f, 0x01a3c916, 0xfe3d2430, 0xfb01ba51, 0x05e8fe9f, 0x97fe8be1, 0xbdfe19fe, 0x80acfe98, 0x011c0117, 0xfe819d39, 0x64c3021f, 0x047afc5f,
0x859cae16, 0xfe76298b, 0x043a0454, 0x00270037, 0x30056745, 0x274c0101, 0x1e1f2526, 0x11171819, 0x010b040b, 0x077c424a, 0x4e002d24, 0x87832724,
0x16140125, 0x18151716, 0x300b7940, 0x34352626, 0x27013712, 0x26263411, 0x16163727, 0x36a58215, 0xde031701, 0xa5232712, 0x4a65858e, 0x802d3e2a,
0x0c262e32, 0x82c549fe, 0x40600812, 0x0c266876, 0x01c5b701, 0x2641361f, 0xa399e210, 0x1517784d, 0x7123b293, 0x85014e59, 0x3da9fc54, 0x3f33d402,
0x1e8f1026, 0xfe4d8595, 0x5703577d, 0x0300003c, 0xe7ff9500, 0xdd051b04, 0x23001700, 0x47003200, 0x151b4440, 0x2e020402, 0x02040501, 0x0201064c,
0x02050400, 0x01076904, 0x61010303, 0x2a20b182, 0x2f0c8264, 0x18182424, 0x32240000, 0x292b3124, 0x22182318, 0x16234482, 0x51092525, 0x14220561,
0x936f0606, 0x05424305, 0x072f0e82, 0x06023336, 0x3e370706, 0x26343502, 0x43361223, 0x60080654, 0x021e0707, 0xaf6c0333, 0xee8bcd6b, 0x8af395d5,
0x593c8467, 0x25355f9a, 0x0c5d8484, 0x4c9d813d, 0x7009363b, 0x367a5e3b, 0x023a4363, 0x03556935, 0x7cd8d069, 0x6d0184da, 0x00015e01, 0x4bbc6f01,
0x97574477, 0x010d1e6f, 0xb1ed71e3, 0x856e3519, 0xfb3c3c56, 0x5d8d4f34, 0x211ca39f, 0x67efcc1c, 0x22008200, 0x82940002, 0x823620e7, 0x002128e7,
0x4043002c, 0x82020040, 0x030236fb, 0x09080a80, 0x01040603, 0x00060200, 0x07070067, 0x05006105, 0x0c9a5405, 0x0022223f, 0x222c2200, 0x0024262b,
0x26210021, 0x23142333, 0x1c080b11, 0x2315012b, 0x23021015, 0x07066d22, 0x36323325, 0x84353512, 0x3634210f, 0x1221f282, 0x0a9e7d13, 0x36044808,
0x5df1e948, 0x54bf5e9d, 0x3a71564d, 0x62c48dd6, 0xd36aac62, 0x11cf1aed, 0x57387284, 0x0371842f, 0xfe0596bf, 0x515ffe64, 0x720170a0, 0x6b6b9cfe,
0xf52a0185, 0x649b5704, 0xfe5ea160, 0x0100ffe2, 0x5832c0c6, 0x82606438, 0x2ab782ca, 0x0455fe51, 0x00d9055f, 0x821b0015, 0x43220894, 0x1c211340,
0x00041819, 0x104c0102, 0x4a02020f, 0x00020405, 0x1cb04b49, 0x0d405850, 0x02020103, 0x56504d2b, 0x0d402107, 0x2a670983, 0x002b2b05, 0x13b6594e,
0x04121316, 0xf2441a08, 0x022e2207, 0x08bc8235, 0x37113757, 0x15021e11, 0x11171604, 0x36011106, 0x27263411, 0xc16d5f04, 0xc084b87d, 0x7cc26d67,
0x66c085b8, 0x7979b2fc, 0xf39b01f2, 0x7301777c, 0xfe077ee7, 0xb2011765, 0x98e38309, 0x067de79f, 0xfe15ad01, 0xe283093e, 0x0ac1b397, 0xfe16fa02,
0x1b85fe96, 0xc1ae6401, 0x08bc820a, 0x0900022a, 0x9b04e7ff, 0x19001e04, 0x3d002e00, 0x01163a40, 0x26270400, 0x06040a15, 0x054c0200, 0x00000203,
0x01085f04, 0x4d2b0404, 0x2e057e7b, 0x01010102, 0x004e0129, 0x242a2c00, 0x821c1d22, 0x14182536, 0x09112424, 0x0124b382, 0x15162315, 0x200cbf4a,
0x054c4437, 0x26003324, 0xda4d0527, 0x325e0805, 0x15373511, 0x32331614, 0x9b043536, 0x909a587e, 0x19117a61, 0x94915979, 0x27312054, 0x91823422,
0x1b156e02, 0x1219a3fd, 0xab81493c, 0x3c4b4838, 0xc78e1e04, 0xf8feeeec, 0x766f7273, 0xecf50101, 0x0b0901c4, 0xfe0c1288, 0x016fcb37, 0xac7bc66c,
0xce4e01b5, 0xa9a6e619, 0x0100acb5, 0xcb827600, 0x37043a2b, 0x06001b00, 0x010513b3, 0x0db84832, 0x2613b643, 0x26687640, 0x434afe0b, 0x0b2307ae,
0x48c5b601, 0x852408c5, 0x5188014e, 0x2e0ea643, 0x57035379, 0x0000003d, 0xfeb30002, 0x8224044f, 0x001e356b, 0x4031002b, 0x0201222e, 0x01011903,
0x034c0202, 0x49010202, 0x01242082, 0x04650102, 0x3e073448, 0x1f4e0331, 0x1f2b1f1f, 0x2e262c2a, 0x2b190805, 0x07171604, 0x2e27022e, 0x10113502,
0x4f323312, 0x2726070e, 0x16161415, 0x57500217, 0x0f49080c, 0x0eb11886, 0x78615929, 0xd5dc4b95, 0x6066ca90, 0x61b282bc, 0xa275702d, 0x47762770,
0x747a857a, 0x404652d9, 0x0f161f1e, 0x76935013, 0x09010102, 0xe17b1001, 0x94f58d99, 0x52509a88, 0x6704122b, 0x47a8d4ce, 0xadb3ca4c, 0x20b782b3,
0x0afb4801, 0x31403423, 0x20a4820f, 0x82b98210, 0x030023b2, 0xed484c03, 0x4cb88809, 0xe54805a4, 0x48b88305, 0x032019e5, 0x4815d948, 0x002712d1,
0x00ffff00, 0x1855feb7, 0x490ca764, 0x02220793, 0x1f84da01, 0x55febf2a, 0xdd052704, 0xe2000200, 0x2220b784, 0x642c0f82, 0x10001e04, 0x09404700,
0x03080a0d, 0x220a2371, 0x82030014, 0x02032627, 0x00010180, 0x095b5200, 0xd7821688, 0x845f0021, 0x4e022e1b, 0x1114b659, 0x08041112, 0x13132b1a,
0x08028333, 0x2603232f, 0x03230335, 0x22030714, 0xcbb5f481, 0x25b856f7, 0xc6b4d90b, 0x55fe470c, 0x0afdc905, 0xe2fbf602, 0xeea6e501, 0xfe02fcfc,
0x84fc9eee, 0x20698200, 0x088b8254, 0x37046123, 0x23001600, 0x40404300, 0x07060117, 0x06050101, 0x06074c02, 0x03490102, 0x01020001, 0x63010001,
0x06677d00, 0x004d3133, 0x61050606, 0x05050108, 0x004e0529, 0x1b1f2100, 0x2d3b8219, 0x13112315, 0x08091211, 0x27042b1b, 0x01822115, 0x23350729,
0x10113335, 0x52323312, 0x01200567, 0x340af04a, 0x69190215, 0xc6fe3a01, 0xdd9c9cc0, 0x5ddae4d6, 0xebfe85ba, 0x05655228, 0x196e8130, 0x878ede78,
0x028e9e17, 0x0107019d, 0x7352fe12, 0x19012105, 0x25056752, 0x0000d4cf, 0x035cffff, 0x56062405, 0x4d022200, 0x2222052b, 0x17940012, 0x8b872421,
0x88492017, 0xc925212f, 0x26211795, 0x211795a0, 0x178b2127, 0x47884a20, 0x8bf02821, 0x88d42017, 0xf3292117, 0xd620178b, 0x2a211788, 0x20178bda,
0x21178835, 0x178bd202, 0x17884620, 0x178c0320, 0x17880e20, 0x178c3220, 0x17881c20, 0x178b0720, 0x88d10521, 0x870a2017, 0x82fe2517, 0x37044904,
0x03241786, 0x2f051e07, 0x83053741, 0x87062017, 0x07222277, 0x862f822e, 0x201f941d, 0x411f9430, 0x2225078f, 0x00122207, 0x893f9100, 0x8724211f,
0x9f411f93, 0x07222307, 0x1f9dc925, 0x9da02621, 0x2127211f, 0xb7411f93, 0x07222307, 0x1f93f028, 0x2307bf41, 0xf3290722, 0xc7411f93, 0x07222307,
0x1f93da2a, 0x25079f41, 0x041d0723, 0x21880082, 0x8308c34f, 0x243882ff, 0x22070200, 0x0bdb4f60, 0x24211789, 0x23178bd5, 0x02220049, 0x25202f85,
0x890c0b50, 0xee262117, 0x27212f95, 0x83178b6f, 0x214785f7, 0x178b3e28, 0x5f883520, 0x8b200221, 0x88462017, 0x86032017, 0x056b5017, 0xdc20a783,
0xbf822882, 0x2f854120, 0x2421178f, 0x83178bb6, 0x212f85a7, 0x1795f825, 0x95cf2621, 0x50272117, 0xbf83178b, 0x28214785, 0x20178b1f, 0x85a782d4,
0x22292117, 0xd620178b, 0x2a211788, 0x83178b09, 0x212f85ef, 0x178b0102, 0x1785ef83, 0x178c0320, 0x47880e20, 0x178b3220, 0x86370421, 0x07032917,
0x00eb031e, 0x00ffff00, 0x87050741, 0x07222247, 0x862f822e, 0x201f941d, 0x411f9430, 0x2225075f, 0x00412207, 0x893f9100, 0xb624211f, 0x6f411f93,
0x07222307, 0x1f9df825, 0x9dcf2621, 0x5027211f, 0x87411f93, 0x07222307, 0x1f931f28, 0x23078f41, 0x22290722, 0x97411f93, 0x07222307, 0x1f93092a,
0x25076f41, 0x041d0723, 0x218800b1, 0x8308db53, 0x42de20ff, 0x2320057f, 0x17920682, 0x8b982421, 0x53492017, 0x252108db, 0x201795da, 0x88668326,
0x212f8947, 0x2f8b3227, 0x7785f783, 0x07422820, 0x056b5406, 0x5f88d420, 0x8b042921, 0x88d6202f, 0xeb2a2117, 0x3520178b, 0x02201788, 0x210b8354,
0x17884606, 0x178c0320, 0x17880e20, 0x178c3220, 0x17881c20, 0x178b0720, 0x88d10521, 0x830a2017, 0x04002117, 0x08051355, 0x00010728, 0x000f0003,
0x002d001b, 0x03134081, 0x25010001, 0x26040601, 0x03060701, 0x0201024c, 0xb04b4a01, 0x40585029, 0xdc820223, 0x61012108, 0x03080309, 0x4d2a0101,
0x05040400, 0x0505005f, 0x06004d2b, 0x00610706, 0x07290707, 0x21401b4e, 0x2a821f84, 0x00010523, 0x08239469, 0x1a405922, 0x04041010, 0x2224282a,
0x1c1d1e1f, 0x1a101b10, 0x0f041416, 0x0a280e04, 0x012b1708, 0x26071337, 0x180a2b70, 0x280b24db, 0x21372101, 0x33161411, 0x087c5232, 0x73290137,
0x44a34fee, 0x45323243, 0xd9013245, 0x31334444, 0xfe314444, 0x0f1f5ec7, 0x70910628, 0x3348dbfe, 0x1e833144, 0x32210383, 0x210b8343, 0x365ebbfd,
0x940f410c, 0x05171322, 0x2c2a0f41, 0xfe73eef0, 0x4444a7ee, 0x44443331, 0x1a104133, 0x01dc052c, 0x33fd7025, 0x44313144, 0x10413243, 0x00002118,
0x2107fb42, 0x3b420407, 0x06273e06, 0xff9b04ed, 0x060701c3, 0x009704f6, 0xb11100f6, 0xffb80201, 0x2b35b0c3, 0xb00103b1, 0x05d36ff6, 0xdb560020,
0x82562005, 0x43e42033, 0x4020058f, 0xf3560682, 0x21178908, 0x178bb524, 0x2f884920, 0x95f72521, 0xce262117, 0x27211795, 0x20178b4f, 0x2147884a,
0x178b1e28, 0x17883520, 0x8b000221, 0x88462017, 0x86032017, 0xfeb32517, 0x06240455, 0xe620a783, 0x4e20bf85, 0x178f2f85, 0x57c32421, 0x2f840afb,
0x2005e357, 0x24ef8622, 0x04e7ffc2, 0x87178a23, 0x831785ef, 0x872f85ef, 0x87178fef, 0x87178fef, 0x831785ef, 0x874785ef, 0x201785ef, 0x85d782d4,
0x4a292017, 0x1785069f, 0x1788d620, 0x8b082a21, 0x883520bf, 0x071f4117, 0x46202f85, 0x1f411788, 0x20178507, 0x2117880e, 0x478b0032, 0x17881c20,
0x178b0720, 0x88d10521, 0x830a2017, 0x04002117, 0x44061b59, 0x3329077f, 0x0b407700, 0x01000103, 0x0b774401, 0x77442020, 0x070a220d, 0x06744402,
0x0061042a, 0x04290404, 0x1e401b4e, 0x910b7444, 0x40593220, 0x101c1c1e, 0x1c040410, 0x2e331c33, 0x2428292c, 0x0a754422, 0x75440b20, 0x5c13201e,
0x012116bb, 0x137b4446, 0xd05cc420, 0x1679440e, 0x5c57fe21, 0x134116e7, 0x1a79448a, 0x21171341, 0x7f440d02, 0x0f144114, 0x41167d44, 0x00201814,
0x2009475b, 0x06434204, 0xed062724, 0x8744b804, 0x44b42006, 0x4b5b1887, 0x82562005, 0x44ee2033, 0x178f0c87, 0x85079743, 0x88492017, 0x0797432f,
0x9743178f, 0x43178f07, 0x17850797, 0x47884a20, 0x85079743, 0x88d42017, 0x07974317, 0xd6201785, 0x97431788, 0x20178507, 0x21178835, 0x00820002,
0x5dffff21, 0x06210573, 0x43178846, 0x2f850797, 0x17880e20, 0x26079743, 0x0482fe31, 0x861e047f, 0x07032717, 0x0030051e, 0x4782ff00, 0x47881783,
0x7f072221, 0x1d8405fd, 0x35821f94, 0x3d860020, 0x5f411f8a, 0x07222407, 0x9c004022, 0xb524211f, 0x6f411f93, 0x07222307, 0x1f9df725, 0x9dce2621,
0x4f27211f, 0x87411f93, 0x07222307, 0x1f931e28, 0x22078f41, 0x4e290722, 0xe7830617, 0x41091f41, 0x22230797, 0x93082a07, 0x076f413f, 0x1d072325,
0x8800b004, 0xffff2d21, 0x82fe8401, 0xb2ff2e03, 0x1e070300, 0x53821984, 0x00291391, 0x003c0002, 0x05740442, 0x08098220, 0x08000520, 0x010405b5,
0x2b320200, 0x21011137, 0x043c1101, 0xfdc5fe38, 0xde0442a0, 0x5e0193fd, 0x5f8242fd, 0x04232f8f, 0x82010203, 0x0113252f, 0x01110311, 0x9d322f82,
0xb302a0fd, 0x22fb6d02, 0xbe021101, 0x0500a2fe, 0x137e6a00, 0x0f2f0806, 0x1c001300, 0x29002000, 0x43404600, 0x0306010f, 0x01044c01, 0x06010903,
0x69060307, 0x0202050a, 0x005f0102, 0x4d380101, 0x0702080b, 0x825f0007, 0x3929086c, 0x21224e00, 0x26281414, 0x29222921, 0x1d1e1f20, 0x1b141c14,
0x21161122, 0x1b090c25, 0x1516002b, 0x23060614, 0x32211121, 0x24098204, 0x11230107, 0xab741833, 0x82032008, 0x6421200c, 0x48080530, 0xdc031123,
0x86e28fa8, 0x0502ddfd, 0x850d01cc, 0x7435fe65, 0x7a56b574, 0xfc7e867b, 0x11017474, 0x8399a97c, 0x9cc50265, 0x4bb18f9e, 0xbba16205, 0x0117997c,
0x0156feee, 0x6a56feaa, 0xfd636c71, 0x651dfeba, 0xfe708a84, 0x7a91821d, 0x28080abf, 0x001e0019, 0x0e2e4031, 0x1e010201, 0x1314191a, 0x0203060f,
0x01004c02, 0x01030200, 0x03006902, 0x59030000, 0x00030300, 0x28088261, 0x24235100, 0x06042226, 0x0502631a, 0x02243808, 0x24123435, 0x17163233,
0x22232607, 0x33161107, 0x01373632, 0x17101106, 0xd1487604, 0xeefead8c, 0x1101a09d, 0x57bb84a6, 0x33a57a6b, 0x67302d2c, 0xb0fd4294, 0x7a838080,
0x4331098a, 0x0a667e46, 0x3e09c6fb, 0x8d650337, 0xd8fed8fe, 0x0866838d, 0x00002f2a, 0x62058104, 0x0f000b00, 0x3f001300, 0x01043c40, 0x07010900,
0x67070005, 0x0005010a, 0x02050602, 0x06010867, 0x57060101, 0x06230682, 0x82035f01, 0x4f012b0a, 0x12130000, 0x0e0f1011, 0x39820c0d, 0x83110b21,
0x060b2600, 0x11012b1b, 0x23018821, 0x23113301, 0x02290383, 0xfea701da, 0xfefcfe59, 0x08078259, 0x6e6ef620, 0x6e6eaa02, 0x3d022503, 0x83029efa,
0x62057dfd, 0x77fdc3fd, 0xd6fb2a04, 0x00002a04, 0x48180002, 0x8f8307fb, 0x2a402d34, 0x04020208, 0x034c0105, 0x05000201, 0x67050204, 0xaf820400,
0x04005727, 0x015f0004, 0x080c8201, 0x11114f40, 0x10131113, 0x2b1c0606, 0x13012121, 0x21112311, 0x33110301, 0x23013301, 0x53fe1304, 0xb41dcefe,
0x44019c01, 0xd1feb41e, 0x7f57fe86, 0x2dfe0a03, 0x6205c9fe, 0xdb01e6fc, 0x37fb3f01, 0x4e823104, 0x82720021, 0x6e4f0804, 0x0c006205, 0x18001400,
0x42001d00, 0x191d3f40, 0x04030310, 0x01074c01, 0x04010600, 0x67040003, 0x01000300, 0x69010305, 0x02020500, 0x05005705, 0x005f0205, 0x4f020502,
0x17180001, 0x11141516, 0x0a0b0d0f, 0x0c000709, 0x06080c01, 0x56012b16, 0x4c080737, 0x11211323, 0x37323301, 0x23232611, 0x23113301, 0x34353601,
0xa7510227, 0xe58583f3, 0xfe014493, 0x6bb50144, 0x12221c1f, 0x76eefe72, 0x6c500276, 0x6262056c, 0xc7988bc1, 0x0509fe5e, 0x0331fd62, 0xfb023102,
0xfd2b04d3, 0x9fa846fd, 0x18f08245, 0x0807fb8f, 0x2100172e, 0x2b002600, 0x35403800, 0x2226272b, 0x181c1d21, 0x17030208, 0x02020001, 0x0203044c,
0x01004900, 0x01020300, 0x02006903, 0x59020000, 0x00211682, 0x2c088261, 0x28235100, 0x06042726, 0x16242b1a, 0xe3071916, 0x02142410, 0x85162507,
0x072227ac, 0x10110607, 0xae832517, 0x8aa10325, 0x19c42261, 0x350ceb07, 0xa9fe9886, 0x33463f34, 0x343f4633, 0x01404080, 0x263b3bec, 0x0719824c,
0xe53610f0, 0x6653c1fe, 0x20041917, 0x87861619, 0xfdfef7fe, 0xfe840986, 0xc78284ff, 0x00722708, 0x05b20400, 0x000f0062, 0x001b0017, 0x403c0020,
0x131d1e39, 0x0f050403, 0x02040101, 0x0703004c, 0x03040501, 0x2a826705, 0x04060131, 0x06006701, 0x57060000, 0x00060600, 0x8201025f, 0x114f320c,
0x21273211, 0x08102111, 0x212b1e06, 0x23230123, 0x410d8213, 0x07210575, 0x0a704125, 0x11270437, 0xb2043536, 0x1cc5feea, 0x44fe0144, 0xf3a7df01,
0xfe869883, 0x0a7541d7, 0x6c6cbc2f, 0x09fef701, 0xc1626205, 0x2bcea38b, 0x0774417b, 0xfe457626, 0x00a8462e, 0x02220082, 0xaf828400, 0xaf822a20,
0x0d00092e, 0x36403900, 0x00030103, 0x01020108, 0x0036a982, 0x03020604, 0x67030001, 0x02010105, 0x05570102, 0x02010101, 0x1b82005f, 0x004f5e08,
0x0b0c0d00, 0x0009000a, 0x11121109, 0x2b190607, 0x15213513, 0x21072101, 0x27050135, 0x03cc3301, 0x012afe5d, 0x71fc17d7, 0x2801d801, 0x852bfe85,
0x9fa5bd04, 0x9ea8e5fb, 0x01022004, 0x0000ebfb, 0xff8d0003, 0x052304e7, 0x000b007b, 0x001c0013, 0x1937403a, 0x04101118, 0x4c010203, 0x216d8305,
0x6d820461, 0x01613e20, 0x003f3009, 0x0c14144e, 0x1400000c, 0x0c1b141c, 0x82120c13, 0x240a2438, 0x18170907, 0x3a08e17b, 0x33121011, 0x14110206,
0x23260117, 0x34111212, 0x16160127, 0xea390333, 0x82e1e1ea, 0x7f370803, 0x98011f87, 0x8581763b, 0x1f6bfe1d, 0x7b053855, 0xa8fe8ffe, 0x8ffea6fe,
0x5a017101, 0x71015801, 0xfef1fe97, 0x037fdddd, 0x9afb5638, 0x25010f01, 0xc9fc7bd7, 0x82002629, 0x00013300, 0x040000b2, 0x00620516, 0x4029000a,
0x07080926, 0xb1450003, 0x38032e05, 0x0001024d, 0x00600100, 0x01390101, 0x082b824e, 0x0a000a2b, 0x05111111, 0x012b1909, 0x21152111, 0x05112135,
0xfb020127, 0xd4fc1b01, 0xc9fe5201, 0x05a00153, 0x9a38fb62, 0xbefe039a, 0x39398288, 0x70000100, 0xe6030000, 0x19007b05, 0x2d403000, 0x00021516,
0x01010b02, 0x40180200, 0x3e210993, 0x2157824d, 0x62885f01, 0x18001925, 0x83171127, 0x16002c62, 0x06141516, 0x07210700, 0x60003521, 0x3808079e,
0x36362707, 0xc0a00233, 0xfffe7466, 0x177f02ea, 0x0a01bdfc, 0x7d660201, 0x4280606f, 0x8dcd5380, 0xb0657b05, 0xfeec7c6e, 0x979fd6e5, 0x1f010001,
0x806f6ecb, 0x68634f43, 0x248b8264, 0x03e7ff5c, 0x288b82f5, 0x403f002d, 0x022a2b3c, 0xf7c71803, 0x00692912, 0x61050404, 0x05050106, 0xa9829882,
0x9d826120, 0x83003f21, 0x002d2bfb, 0x2421262c, 0x09072e25, 0x9a852b1b, 0x1e070623, 0x33a01802, 0x3536250d, 0x37232134, 0x08ee7f18, 0x82062221,
0x334c08ae, 0x6ac49b02, 0x564c7b48, 0xde7a568f, 0x4de5808f, 0x579f397c, 0xfe47845b, 0x521775eb, 0x42467444, 0x86564772, 0xe8ac6845, 0x9e5d7b05,
0x5988525f, 0x93500810, 0x6ec07767, 0x43685d5f, 0x52794145, 0x683492fd, 0x3465464b, 0xa372413d, 0x01268d82, 0x00008700, 0xc7822904, 0x2c000e25,
0x82082940, 0x4c0130a4, 0x0502090a, 0x0001044a, 0x02010103, 0x44670100, 0x3c0806e6, 0x4e023902, 0x11111411, 0x09061011, 0x33012b1c, 0x23112315,
0x01352103, 0x13210117, 0xac7d0333, 0xfd01b9ac, 0xa19101c4, 0x740198fe, 0xdf01a018, 0x01b8fe97, 0xab038848, 0x01a6fc42, 0x086a827d, 0x00010022,
0x04e7ff8e, 0x00620505, 0x40430020, 0x04010340, 0x02111201, 0x4c020503, 0x03040500, 0x80030504, 0x04242282, 0x69040105, 0x06322d82, 0x0601075f,
0x004d3806, 0x61020303, 0x3f020200, 0x15824e02, 0x20002029, 0x26252412, 0x83081123, 0x21072282, 0xf58a1811, 0x23062208, 0x0e816422, 0x11233808,
0xfd1bd703, 0x3e703be6, 0x765fab70, 0xc97d8fd9, 0x8f3d7453, 0x81948556, 0x3d5c376d, 0x94620594, 0x1a1f63fe, 0x8987c567, 0x545974d3, 0xa13f416f,
0x15869796, 0x82b90219, 0x02002367, 0x73439500, 0x001a3106, 0x40450027, 0x02011042, 0x03011101, 0x02172302, 0x4c27ac82, 0x00030106, 0x82030504,
0x068064aa, 0x184d3e21, 0x36084065, 0x1b4e003f, 0x1b00001b, 0x21261b27, 0x001a001f, 0x26252319, 0x41190908, 0x232507e7, 0x34110222, 0x09816412,
0x0c288f18, 0x021e4808, 0xb10a0333, 0x7dca7468, 0xee7edff4, 0x4b7b9aa3, 0x92646f5d, 0xa23f0450, 0x777e4464, 0x3494596e, 0x5d753904, 0xc5638603,
0x78de938e, 0x3e016201, 0xba5601e4, 0x803a7f52, 0x555ba1ed, 0x9cb0f8fc, 0x5560889d, 0x825fc29b, 0x00012fc4, 0x03ebffb9, 0x006205fb, 0x401d0006,
0xa54e001a, 0x05bd6c06, 0x005f2608, 0x00380101, 0x0213114e, 0x012b1809, 0x21012701, 0xfb032135, 0x02b4ddfd, 0x0380fd15, 0xfbd40442, 0xa5043717,
0x2946829b, 0x7c000300, 0x3404e7ff, 0xcb827b05, 0x3500272e, 0x25402800, 0x020f1e2b, 0x01020304, 0x2008915c, 0x7b50183e, 0x2afd8208, 0x282b2c2b,
0x2b1a0904, 0x6c070600, 0x25220b47, 0x20642626, 0x16042308, 0xcf601716, 0x00152407, 0x5e272626, 0x1382067e, 0xfd035c08, 0x988a7774, 0x9392da74,
0x100170d5, 0xc17d6970, 0x76c06f67, 0x724172fd, 0x7b54606b, 0x017b6e6e, 0x848953fe, 0x858c6d5d, 0x03417f59, 0x3b4292b9, 0xb4707bbd, 0x6eb26767,
0x94387ce9, 0x51a47671, 0x53739f4f, 0x38233758, 0x75645570, 0xb7fd6974, 0x2c2d4269, 0x8073718f, 0x41466e3f, 0x7e3105db, 0x1004d3ff, 0x17007905,
0x35002400, 0x0c1a3240, 0x21cb8302, 0x6c6e0708, 0x82002005, 0x006523f1, 0x736e0202, 0x023e2c05, 0x0018184e, 0x18241800, 0x821d1f23, 0x2e162631,
0x2b170906, 0x27d88200, 0x05040210, 0x37023e27, 0x08086c75, 0x12333652, 0x022e3736, 0x15062223, 0x02331614, 0x9a67cedb, 0xecfebefe, 0x89f8c12b,
0x619c400d, 0x7865b272, 0x854081ce, 0x7037023f, 0x7c837f5b, 0x88790572, 0xeefeadfc, 0x48c9aefe, 0xd38f358f, 0x6a514b98, 0xd09086c8, 0x5210fd6c,
0x58c09f50, 0x8d949a9e, 0xff45af83, 0x00172e0b, 0x403d0023, 0x0501083a, 0x05020400, 0x06686204, 0x01010624, 0x1b6f1f01, 0x00202108, 0x0c21b182,
0x31b3820c, 0x1e221823, 0x0c170c1c, 0x00101216, 0x240a000b, 0x02460709, 0x7ab81810, 0x0c046708, 0x2d090946, 0x85817f87, 0x4b398086, 0x4b37394b,
0x0a46374b, 0xdbfe3516, 0x0f01f1fe, 0x24012501, 0x50fe0e01, 0x4c38374b, 0x4c36384c, 0x6227bb85, 0x4e04e7ff, 0x73007d04, 0x383605ef, 0x1e1f3540,
0x03041516, 0x044c0102, 0x01050101, 0x02010302, 0x92180669, 0xee730a63, 0x10202408, 0x82171018, 0x260e2236, 0x18b68307, 0x220ea247, 0x4615020e,
0x363c05bd, 0x27343536, 0x02331601, 0x7c7ce3ef, 0xe39697e3, 0x98e27c7d, 0x49538b57, 0x4b397001, 0x29080782, 0x3d8dfe56, 0x8e7d0457, 0xb7b3f8fe,
0x908cf6fe, 0xb7b30a01, 0x978a0801, 0xe098c258, 0x16e6026a, 0xc45998fc, 0xfd67f199, 0xaf8f1e10, 0x2b001f30, 0x38403b00, 0x07010106, 0x01050301,
0x75416903, 0x02002408, 0x82610002, 0x0020342e, 0x1020204e, 0x20000010, 0x262a202b, 0x101f1024, 0x8416181e, 0x960920b2, 0x161621b2, 0x4108cf45,
0x02220b70, 0xbc83e2f0, 0xc2829720, 0x5322bc84, 0xba82578b, 0x332d0582, 0x36374949, 0x04364848, 0xf8fe8a7d, 0x23c083b7, 0xb70a018c, 0x9922c087,
0xbc8259c4, 0x58c2982c, 0x3549ccfe, 0x364a4a36, 0x95824935, 0xc6000128, 0x26040000, 0x83476904, 0x03002210, 0x08834785, 0x83471b20, 0x4707200b,
0x03360c83, 0xfc18010e, 0xfe5101d7, 0x9f0153cb, 0x30fc6904, 0x05039999, 0x834787bc, 0x008f2e05, 0x04fc0300, 0x001a007d, 0x172b402e, 0x08834716,
0x03010428, 0x03000200, 0x81836902, 0x01005f23, 0x26608501, 0x2819001a, 0x82051711, 0x06e64660, 0x0721052b, 0x24243521, 0x26343536, 0x07cf6f26,
0xc2bd022c, 0xfff94c69, 0x16590200, 0x3882c6fc, 0x52052208, 0x5a45693a, 0x557a468d, 0x7d0488d0, 0x6765a25c, 0x9f9dd6a1, 0x8bd8c397, 0x335e3e56,
0x6b635549, 0x2565836b, 0x15ff7200, 0x8b82eb03, 0x42002930, 0x25263f40, 0x06040302, 0x10030201, 0x0582020f, 0x01064c2a, 0x03040005, 0x00690405,
0x01209882, 0xc0829883, 0x82590121, 0x61002699, 0x00010000, 0x29428251, 0x24280029, 0x2c242421, 0x86470707, 0x07b14407, 0xce6a2020, 0x09517a0a,
0x07062908, 0x33363627, 0x5fb9a902, 0xa48b7491, 0xfe91d773, 0x3e7498fa, 0x9386588e, 0x176e878f, 0x7d8d724d, 0x4482556e, 0x77c35664, 0x983cb682,
0x1ba1735b, 0x7499a810, 0x6bb66abb, 0x7b8d4046, 0x7592797d, 0x38695b6b, 0x4f517140, 0x01267c82, 0x29ff7800, 0xbf824a04, 0x5f680e20, 0x00012105,
0x25067b47, 0x02000500, 0x81475705, 0x02052210, 0x0680474f, 0x2b1c0723, 0x0e804725, 0xbfbf8b26, 0xa3fd01b5, 0x30058047, 0xe29d1894, 0x01dafe93,
0xaa038426, 0x01a8fc43, 0x2f6e826a, 0x9b000100, 0x130415ff, 0x20006904, 0x43404600, 0x28127f47, 0x00060107, 0x00060100, 0x08884767, 0x02020324,
0x83475903, 0x02032206, 0x0c824751, 0x01208482, 0x08208247, 0xfd1ae435, 0x406a35e4, 0x7862b173, 0xc6818ed9, 0x8c3c7452, 0x8697825a, 0x35593874,
0x95690494, 0x181c7cfe, 0x8483c066, 0x545873cf, 0x9e3f4170, 0x1682918f, 0x47a60218, 0x1f20317f, 0x20097f47, 0x137f4720, 0x47098042, 0xaf3d6a7f,
0xf10310ff, 0x06006904, 0x20402300, 0x00010102, 0x03044c01, 0x00490102, 0x00010100, 0x06284357, 0x01002108, 0x0210144f, 0x132b1807, 0x27011521,
0x03af2101, 0xaf0bfe42, 0x81fde101, 0xfb8f6904, 0x83043b36, 0x83472882, 0xceb61823, 0x2b2c240d, 0x47070428, 0x75213983, 0x09834776, 0x7d6a6f26,
0xc16e66c2, 0x22188347, 0x473e93b6, 0x3b280a83, 0xa4756f93, 0x729f5052, 0x3d1f8347, 0x0410040d, 0x0015007d, 0x403f0022, 0x0301183c, 0x00010b02,
0x084c0203, 0x49000207, 0x10510104, 0x01052606, 0x03000003, 0x51068259, 0x16290712, 0x16000016, 0x1d211622, 0x233b821b, 0x07062c14, 0x28058d47,
0x05040214, 0x37242427, 0x08526806, 0x080c8c47, 0x68ceda40, 0xfeb9fe9b, 0x13012bf2, 0x76162601, 0x66b471c5, 0x457fd078, 0x33033985, 0x867c5e6f,
0x7d04717f, 0xefaaf886, 0x46d2bffe, 0xc9fc498f, 0x7cc36e93, 0xfd6ec982, 0x994f482f, 0x889d54b6, 0x85828e87, 0xcb460020, 0xb61b4609, 0xffff2908,
0x72fe2201, 0x0c018c03, 0xb8030701, 0x7efe0000, 0x00b10900, 0x7efeb802, 0x002b35b0, 0xffff0000, 0x7efe8801, 0x00012803, 0xb9201f82, 0x01201f87,
0x31201f8b, 0x7d201f82, 0xba203f84, 0x23201f94, 0x8b205f82, 0xbb201f84, 0x21201f94, 0x8d223f82, 0x5f821401, 0x1f94bc20, 0x3f823320, 0x7f847d20,
0x1f94bd20, 0x5f882520, 0xbf94be20, 0x6efe3d24, 0x3f847303, 0x3f94bf20, 0x3f821920, 0x9f849720, 0x1f87c020, 0xdf8b0320, 0x71fe2324, 0x1f849103,
0x5f91c120, 0x0102002d, 0x03f4ff22, 0x008e028c, 0x4b1a000f, 0x02240655, 0x69020103, 0x2c06b253, 0x4e001b00, 0x22262523, 0x2b1a0704, 0x0a184a24,
0x16163228, 0x23262615, 0x5b691522, 0x03290805, 0x628b478c, 0x48488c62, 0x8b62628c, 0x4848a447, 0x47474b92, 0x5897e349, 0x5f5e9858, 0x97565796,
0xce606e5f, 0x6d656c66, 0x36008200, 0x00880101, 0x02280300, 0x00060082, 0x0418401b, 0x00030203, 0x824c0101, 0x5f002103, 0x71821e82, 0x33053f44,
0x07112321, 0x03332527, 0x4cba9a28, 0x017e2201, 0xa76b65d5, 0x31203f85, 0x7d203f82, 0x182ab382, 0x25402800, 0x00021011, 0x374f0702, 0x11b24705,
0x11272423, 0x05374413, 0x21070625, 0x6c352107, 0x2222057b, 0x694d2707, 0x032b0806, 0x818a3e69, 0xfd125d01, 0x3e96b0d3, 0x4d68353b, 0x57983c6c,
0x013f7955, 0x3f5d5f7b, 0x636a7080, 0x322b2b49, 0x4745515d, 0x823e6036, 0x0101267c, 0x03f4ff23, 0x397b828b, 0x40430026, 0x04012340, 0x03012205,
0x02010504, 0x01011003, 0x00010f02, 0xa9470501, 0x05677013, 0x4382da82, 0x25002627, 0x24242122, 0x05a4472b, 0x4c141521, 0x27230a55, 0x55331637,
0x372406ad, 0x34353233, 0x08085048, 0x428ce33b, 0x4a51594c, 0x9f58608d, 0x785a623a, 0x45424847, 0x7746115f, 0x32643773, 0x56954253, 0x52608e02,
0x0e0d4237, 0x5b3c4644, 0x513c3833, 0x2e29304d, 0x524c5c2a, 0x37582623, 0x05334131, 0x0000213b, 0x96028d03, 0x2c000e00, 0x01062940, 0x4c010300,
0x04020708, 0x0301054a, 0x26b58202, 0x00670003, 0x48010404, 0x310806e8, 0x11141111, 0x07061011, 0x23252b1c, 0x21352315, 0x03170135, 0x15333733,
0x6b8d0333, 0x019afe9b, 0xb6e0860a, 0x706b8c0f, 0x01667070, 0x8bfe35c0, 0x6482a9a9, 0x33010137, 0x7d03f4ff, 0x1c008202, 0x0e406d00, 0x06020116,
0x03010105, 0x285d8304, 0x0ab04b4c, 0x22405850, 0x336c8200, 0x00720305, 0x06050004, 0x00670504, 0x03020006, 0x00690206, 0x25064c50, 0x1b4e001b,
0x24832340, 0x01030223, 0x31259a80, 0x230a4059, 0x24121111, 0x07072123, 0x06242b1d, 0x3a412223, 0x22420809, 0x11230706, 0x15210721, 0x32333636,
0x7d031516, 0x6db685a2, 0x436d525f, 0x1c393d45, 0x01741d45, 0xbcfe0eec, 0x6923481e, 0x6e786c80, 0x34384753, 0x0f113131, 0x787c6601, 0x656d100e,
0x02000000, 0xe3412501, 0x1a3a0806, 0x3b002600, 0x011a3840, 0x01050300, 0x011d0105, 0x4c030504, 0x00000300, 0x69000301, 0x01060100, 0x05010405,
0x04040069, 0x02006102, 0x4e021b02, 0x261b1b1b, 0x2626251b, 0x97822426, 0x012b1b24, 0x8c822326, 0x4e0cd34f, 0x17230632, 0x69070600, 0x4008086d,
0x543f0d03, 0x2e045b57, 0x6d414366, 0x52864d42, 0x4d499068, 0x5e7f6e99, 0x2d56f5fe, 0x3f454613, 0x01363b45, 0x5f5c1ff3, 0x5b2c2928, 0x396b4643,
0x5d619656, 0xfe385997, 0x3d2725ea, 0x342f3b47, 0x27908232, 0xf0ff3d01, 0x82027303, 0x27059b47, 0x01000100, 0x01024c01, 0x20053255, 0xd2411800,
0x1311230b, 0x214f0702, 0xfe733609, 0x320198bb, 0x360275fe, 0xd6fd1a02, 0x7ed5013f, 0x01030000, 0x23ff8219, 0x008e0297, 0x322cff83, 0x23402600,
0x010f1d29, 0x01020304, 0x220ad757, 0x43610003, 0x2a2805ac, 0x04272c2b, 0x002b1a07, 0x7e0c1c4f, 0x32240814, 0x04151616, 0x200a1c4f, 0x091b4f04,
0x03355d08, 0x56588c75, 0x6462914e, 0x4d534a8f, 0x80483e3e, 0x45815753, 0x564464fe, 0x40412f37, 0x1b01403f, 0x39376960, 0x55494d4e, 0x1b137301,
0x5a3c3d4c, 0x3a593132, 0x13124e38, 0x4d313b46, 0x2d4c2d2c, 0x12112424, 0x23191d22, 0x28fe1921, 0x1f301113, 0x212d2926, 0x23010200, 0x9103f3ff,
0x1735bf82, 0x37002100, 0x01193440, 0x01040203, 0x4c020300, 0x49000117, 0x06894700, 0x89470420, 0x84068205, 0x000330ca, 0x18181851, 0x2a201821,
0x07052626, 0x4f252b19, 0xc6830d09, 0x06061425, 0x74370007, 0x45080707, 0x94746b01, 0x5c3d1b60, 0x4370443b, 0x63548c53, 0xe1704a8e, 0x510c01af,
0x4d419703, 0x0e6c3d45, 0x2039462a, 0x415a2c1f, 0x43366746, 0xa07a547b, 0x6201145b, 0x2f33922b, 0x00002c2f, 0x2201ffff, 0x8c03d902, 0xb7467305,
0xe5022105, 0x2105b746, 0xb746e502, 0xe1022509, 0x63052803, 0x2105b746, 0x1f83e102, 0x02b80123, 0x201f88e1, 0x221f8231, 0x826f057d, 0x00ba221f,
0x241f9200, 0x03d50223, 0x201f848b, 0x201f94bb, 0x223f8221, 0x4677058d, 0x3f9205b7, 0x3f823320, 0x7f847d20, 0x3f94bd20, 0x5f882520, 0x1f87be20,
0x9f8b0220, 0xd0023d26, 0x62057303, 0xbf205f82, 0xe0201f82, 0xe020bf86, 0x1920bf88, 0x97203f82, 0xc0209f84, 0x03203f87, 0x23243f8b, 0x9103d402,
0xc1201f84, 0x22265f94, 0x8c036a02, 0x3f410405, 0x41762006, 0x7620063f, 0x88265f88, 0x28037602, 0x3f41f804, 0x221f8406, 0x8902b801, 0x8231201f,
0x847d201f, 0x82ba203f, 0x201f915f, 0x205f8223, 0x201f848b, 0x201f94bb, 0x223f8221, 0x410c058d, 0x3f91063f, 0x3f823320, 0x7f847d20, 0x3f94bd20,
0x5f882520, 0x1f87be20, 0x9f8b0220, 0x66023d24, 0x3f847303, 0x3f94bf20, 0x3f821920, 0x9f849720, 0x1f87c020, 0x3f8b0320, 0x69022324, 0x1f849103,
0x5f91c120, 0x01002508, 0x6d01c9fd, 0xdf033702, 0x06000300, 0x010103b3, 0x01012b32, 0x37020127, 0x0442d4fb, 0xfe6d032e, 0x00027200, 0x023c0082,
0x6d011d00, 0x63059404, 0x0a000600, 0x1e402100, 0x0203040a, 0x01010004, 0x0208094c, 0x260c7953, 0x09021014, 0x47012b18, 0x4b8305b3, 0x47bd0121,
0x022105b7, 0x285384d7, 0xd501e102, 0xfea76b65, 0x275a870a, 0xf3ff0300, 0xbe040000, 0x23285b86, 0x06b14800, 0x3d404464, 0x1c356186, 0x0408091b,
0x01120402, 0x4c030203, 0x00000100, 0x67000105, 0x06265200, 0x0302002b, 0x00570203, 0x5f030202, 0x2e1f8200, 0x1127244f, 0x06101418, 0xb12b1c09,
0x8a440006, 0x06122184, 0x2115f647, 0x9c869301, 0x9c84ef20, 0x04486820, 0x21b38d15, 0x12489cfd, 0x24c78214, 0x04f4ffe5, 0x24c786cc, 0x405d0031,
0x08c3865a, 0x06012e20, 0x02092d07, 0x08100605, 0x1b050402, 0x1a040301, 0x06030201, 0x0701084c, 0x07050600, 0xcf836906, 0x04050322, 0x56086350,
0x3935091f, 0x0b0b4e02, 0x300b310b, 0x2527292b, 0x1c1e2224, 0x10141618, 0x0d614109, 0x48160221, 0x0121243c, 0x20eb8685, 0x20eb84ed, 0x1e4a480e,
0x210ca741, 0x5848affe, 0xff03361d, 0x05f4ffab, 0x006f0505, 0x001c0018, 0x40810143, 0x10111c22, 0x05904903, 0x08014036, 0x021b3f09, 0x1a220807,
0x2d070602, 0x2c060501, 0x07050401, 0x29060b48, 0x0000002e, 0x01000901, 0x05820a67, 0x09070825, 0x41006908, 0x023a0715, 0x00610302, 0x4d380303,
0x04050500, 0x04040061, 0x1b4e0439, 0x500cb04b, 0x35a14058, 0x358e3e20, 0x35a41020, 0x13206b8f, 0x6b8f35a4, 0x35a41720, 0xd2af6b8d, 0x00835920,
0x1d17403a, 0x1d431d1d, 0x393b3d42, 0x30343637, 0x24282a2e, 0x0b131127, 0x002b1a09, 0x2217f142, 0x42012701, 0xe3202730, 0x26160e43, 0x42d4fbca,
0x42102e04, 0x04211d40, 0x1126435c, 0xfed2fe26, 0x00027200, 0x261d4d42, 0x00f9ff03, 0x43b80400, 0x19280647, 0x06b14f00, 0x44404464, 0x08064b43,
0x09121326, 0x08000603, 0x11060501, 0x04050201, 0x0001004c, 0x00010600, 0x05060067, 0x07570603, 0x01040501, 0x02050302, 0x06320f82, 0x03005f03,
0x114f0306, 0x11111411, 0x08101415, 0x16441e09, 0x4a13200f, 0x01210dd5, 0x06214399, 0xe084f120, 0xe34a6e20, 0x0d03440b, 0x4a91fc21, 0x00310cf2,
0x00f7ff03, 0x05b90400, 0x0026006f, 0x0039002a, 0x20b3847d, 0x0b174c72, 0x02102a22, 0x3005184c, 0x03293233, 0x0128000a, 0x01310a09, 0x4c080906,
0x13d0530c, 0x010a2b08, 0x0a006900, 0x570a0709, 0x0809010b, 0x09070601, 0x0a006706, 0x005f070a, 0x4f070a07, 0x38390000, 0x34353637, 0x2d2e2f30,
0x73822b2c, 0x2205494c, 0x841b090d, 0x440020e1, 0x01222610, 0x01410127, 0x41b7200f, 0x03271dd4, 0x42d4fb5f, 0x415e2e04, 0x05210b19, 0x1a1b446f,
0xfefefd26, 0x00027200, 0x24112f41, 0x04f4ffd6, 0x06e341db, 0x8f002724, 0xdf411a40, 0x01093106, 0x08210708, 0x10080402, 0x0f050301, 0x05030201,
0x35062744, 0x0405002c, 0x72050703, 0x07000600, 0x67070608, 0x04000800, 0x33450805, 0x401b2216, 0x232e832d, 0x80030504, 0x59222fa4, 0x474c0c40,
0x14262505, 0x1f090910, 0x200bbf46, 0x1b544c12, 0x46760121, 0xce200cdc, 0x4218624c, 0x8d200e3e, 0x2612714c, 0xff9fff03, 0x451105f4, 0x39240643,
0x1d409e01, 0x31094345, 0x090a011b, 0x06021a33, 0x0501220a, 0x04012107, 0x16410605, 0x34200806, 0x05060700, 0x00720709, 0x08010000, 0x00670100,
0x0a090008, 0x00670908, 0x0706000a, 0x0069060a, 0x201a4445, 0x233b8335, 0x80050706, 0xdf443c9f, 0x5010230f, 0x3ca84058, 0x220de644, 0xab13b04b,
0x20798f3c, 0x8d3cab17, 0x8cb1a979, 0x05674574, 0x35371029, 0x12113132, 0x45292324, 0x1f200560, 0x421c6045, 0xd7201d33, 0x26165645, 0x42d4fbb2,
0x42c82e04, 0x51451843, 0x42fc201a, 0x00291350, 0xff030000, 0x04f4ffc5, 0x069744e9, 0x3e024724, 0x93442840, 0x01293114, 0x28410b0c, 0x300c0802,
0x2f090701, 0x09070601, 0x2b065e42, 0x0809003f, 0x72090b07, 0x00000100, 0x2c059344, 0x0a0c0b00, 0x0c00670b, 0x0c090800, 0x05096008, 0x05010d24,
0x4e183805, 0x412b0830, 0x0707004d, 0x06006106, 0x47063906, 0x402007ae, 0x08234683, 0xa0800709, 0x983e2047, 0x50102347, 0x47a94058, 0x13208f99,
0x8f9947ac, 0x47ac1720, 0x1c208f99, 0x8f9747ac, 0x413e4021, 0x175a0862, 0x1cb2410a, 0xa8414a82, 0x84592009, 0x1c403100, 0x43450000, 0x3d3e3f40,
0x37393b3c, 0x2c2e3133, 0x22085c46, 0x681b090e, 0xdf4f0563, 0x096b5109, 0xa6522320, 0x0101230c, 0x02430127, 0x4685201d, 0x57201e66, 0x461e0a43,
0x13432473, 0xb52a0818, 0xfb04f4ff, 0x0e007705, 0x2f001200, 0x2040ad00, 0x04030112, 0x03000106, 0x0b0c0111, 0x08021029, 0x0701180c, 0x06011709,
0x1c530607, 0x05b55205, 0x0b433420, 0x0b2a5306, 0x0a010027, 0x00670104, 0x0e15430a, 0x22095741, 0x4135401b, 0x37ac0798, 0x14405938, 0x27282b2d,
0x23242526, 0x11262324, 0x11111411, 0x1f090d10, 0xb248012b, 0x4105200d, 0x02211f6a, 0x0cc54821, 0xd4fb5c26, 0xbe2e0442, 0x21186344, 0xd8485103,
0x47602009, 0x464105ba, 0x00042613, 0x04f4ff11, 0x06bf47a0, 0x31002526, 0x50405300, 0x0806c147, 0x02012522, 0x03010905, 0x02081002, 0x01280307,
0x4c050706, 0x02000500, 0x69020503, 0x01080300, 0x07030607, 0x210be84c, 0xda4b0606, 0x26262507, 0x30263126, 0x24260582, 0x09101426, 0x85471d09,
0x5303200b, 0x01212542, 0x068f47b1, 0xe784d120, 0x50532020, 0x0d974720, 0x5314fe21, 0x00231d5e, 0x82090004, 0x82a720f7, 0x1c2908f7, 0x3b002000,
0xc3004700, 0x01162040, 0x05200602, 0x04030102, 0x3b010001, 0x1f0a0701, 0x26070801, 0x080c021e, 0x0c0b013e, 0x06494507, 0xf3543d20, 0x08eb5407,
0x08085145, 0x0a080725, 0x08006907, 0x0b0c010d, 0x00690c08, 0x5f040505, 0x38040400, 0x0b0b004d, 0x09006109, 0x4e093909, 0x553e401b, 0x40b4080e,
0x18405930, 0x473c3c3c, 0x4042463c, 0x3032383a, 0xef482824, 0x0e212505, 0x002b1f09, 0x231be248, 0x01270105, 0x21267d41, 0x57425302, 0x32022718,
0x0442d4fb, 0x90411c2e, 0x4d032120, 0x25111a49, 0x7200fe4e, 0x9c410002, 0xff05261f, 0x04f4ffe5, 0x0a9342ce, 0x3b003d24, 0x95423840, 0x28342b06,
0x08090c1a, 0x02040506, 0xe364004c, 0x00003707, 0x01005f01, 0x004d3801, 0x61020505, 0x39020200, 0x2b2a4e02, 0x42502c2c, 0x0b3e5005, 0x4f31d354,
0xe520086d, 0x8220f884, 0x4226e154, 0xfd210d8f, 0x2aef5494, 0xe1ff0522, 0xd120ff82, 0x2806eb47, 0x00510045, 0x40c1015d, 0x14ef4720, 0x3a485428,
0x0628292c, 0x464a0809, 0x00302e07, 0x07000001, 0x00690001, 0x09080007, 0x06d84707, 0xd8470a20, 0x0909210f, 0x990ed847, 0x0ca84637, 0x1023378c,
0x99405850, 0x0c284737, 0x1320378c, 0x6f99379c, 0x379c1720, 0x1c206f99, 0x6f97379c, 0x612e4021, 0x52410b98, 0x893a8214, 0x845920d8, 0x16402b00,
0x595b0000, 0x40424d4f, 0x72473234, 0x470b2008, 0xa5422e72, 0x47a12032, 0x4d261e88, 0x0442d4fb, 0xbd427c2e, 0x23964726, 0x242ed342, 0x04f4fff3,
0x0a6f45bd, 0xa1005324, 0x71451840, 0x3e4a290c, 0x1e1f2230, 0x04090a06, 0x5a08124d, 0x2845065d, 0x0108230a, 0x1a4d6900, 0x0b604506, 0x070a0a2c,
0x07070061, 0x1b4e0739, 0x60453540, 0x2837a013, 0x51104059, 0x2c43454f, 0x064f452e, 0x4f450b20, 0x41122023, 0x022131a9, 0x195b4543, 0xd4fb1e26,
0x7a2e0442, 0x4526a441, 0x9a411961, 0x0500222c, 0x059b41ff, 0x06006238, 0x25000a00, 0x3d003100, 0x3b403e00, 0x01000100, 0x0301020a, 0x72450003,
0x45032008, 0x11252172, 0x1c090613, 0x06b0692b, 0x22410683, 0x5a972033, 0x012008c5, 0x4105a252, 0x04212712, 0x05f45afa, 0xfe0bfe26, 0x00027200,
0x082d0741, 0xa0010120, 0x0f03e7ff, 0x0f005601, 0x10401300, 0x01000000, 0x01010061, 0x264e013f, 0x18090222, 0xf85b242b, 0xa001390e, 0x34335330,
0x54313154, 0x30533334, 0x313153d2, 0x55333253, 0x33553131, 0x01253982, 0x0391fe94, 0x254b8203, 0x40250010, 0xbf5b0922, 0x82012006, 0x02592619,
0x00010101, 0x2109825f, 0x63824f00, 0x0f001024, 0xb1690317, 0x06142506, 0x13230307, 0x0806866a, 0x4e880223, 0x9f19162d, 0x252161a1, 0x012f4e2c,
0x2e4e2d56, 0xfe375128, 0x17900194, 0x4d2e2b4b, 0x0102002d, 0x22af82ad, 0x82070401, 0x001f2aaf, 0x2bb04b3c, 0x15405850, 0x067a5d00, 0x7f4d3b20,
0x033f2508, 0x13401b4e, 0x01236a82, 0x50010002, 0x15820847, 0x26b6592a, 0x04222626, 0x002b1a09, 0x1020da8e, 0x012d0f8e, 0x2f4d2dad, 0x2d2d4e30,
0x4d2f304e, 0x210b822d, 0x0b864f2f, 0x838c0321, 0x2e2e2215, 0x2302834e, 0x2e4d61fd, 0x2f209982, 0x2f200c83, 0x93239f82, 0x850392fe, 0x0020299f,
0x0119b556, 0x4c010302, 0x1428a685, 0x00030105, 0x63020302, 0x61269683, 0x01010104, 0xa582003b, 0xfe181b20, 0x1f820801, 0x63020221, 0x02220557,
0x2982005f, 0x40594f2d, 0x00101012, 0x10201000, 0x8217181f, 0x260e21f2, 0x1807e86a, 0x25094e60, 0x16123336, 0x46411516, 0x8a86200d, 0x4e3029b6,
0x9e19162d, 0x262060a1, 0x0422c382, 0xb5842d07, 0x2d2fbb84, 0x4d2d4efd, 0x3652282e, 0x8f0195fe, 0x822b4a17, 0x299a82c6, 0x3a000300, 0x7604e7ff,
0x70820101, 0x2f001f30, 0x18401b00, 0x00020204, 0x05610100, 0x1b420203, 0x82262005, 0x06222600, 0x3e2b1c09, 0x88491802, 0x26262209, 0x0f2e4235,
0x3a310f8f, 0x28274025, 0x41252541, 0x25402728, 0x41269001, 0x82078227, 0x41272413, 0x8b920126, 0x409b251b, 0x26402626, 0x22821682, 0x0b940882,
0x00820020, 0xca010228, 0xe502e7ff, 0xb5826205, 0x25001325, 0x42002240, 0x00240567, 0x01044d38, 0x3009a66e, 0x13040404, 0x11271204, 0x19090510,
0x0333012b, 0x08d76f23, 0x2805cb5e, 0x15d4ea01, 0x26417da8, 0x82988426, 0x62052488, 0x83cd6dfc, 0x26422475, 0x82274226, 0x336b8508, 0xe50273fe,
0x0f00e903, 0x49001300, 0x5020b04b, 0x04144058, 0x00247082, 0x69000102, 0x2606c959, 0x4e033d03, 0x8a19401b, 0x0de65916, 0x0e405928, 0x12130000,
0x45821011, 0x05260e22, 0x65080543, 0x03250923, 0x02231333, 0x4178847d, 0x5129051d, 0x03da1da2, 0x274126e9, 0x3ca18326, 0x26412726, 0x71fc19fe,
0xa8000200, 0xeb03e7ff, 0x1f007b05, 0x3c002f00, 0x1c1d3940, 0x35fe8202, 0x0100004c, 0x04000104, 0x01010080, 0x01056102, 0x4d3e0202, 0x0b190106,
0x20290975, 0x20000020, 0x282e202f, 0x25378226, 0x071c2b1e, 0xee701809, 0x020e3608, 0x35231515, 0x37363634, 0x3435023e, 0x06222326, 0x21362707,
0x0b316e02, 0x3336363d, 0x62b8d102, 0x393f4d35, 0x3abd2d43, 0x3b324151, 0x4a637d26, 0xab853a92, 0x41070301, 0x7b3d0b42, 0x4e529057, 0x2b2e496f,
0x413c5a3d, 0x4f7a554b, 0x45362531, 0x47594f2c, 0xfbc96347, 0x0d5c4187, 0xc400022a, 0x070452fe, 0x0f00e903, 0x362bcb82, 0x1e1f3340, 0x01040202,
0x8204004c, 0x020428e6, 0x01010580, 0x41040000, 0x622e0665, 0x3d030300, 0x00004e03, 0x20222e2f, 0x17431a1c, 0x18132018, 0x27089952, 0x37363233,
0x22210617, 0x83056644, 0x333523dc, 0x6241ac02, 0x8365200a, 0x263a34c8, 0x914a647c, 0xfeab863a, 0x62b87afc, 0x3a3f4c34, 0x41bc2e43, 0xfd220d78,
0xc78254c9, 0x46342622, 0x4623c782, 0x82c96247, 0x834d20e2, 0x5b3f38e2, 0x0000413e, 0x01ffff00, 0x03f301a0, 0x0162030f, 0x00e70307, 0x5e0c0200,
0x0c200633, 0x2905d35d, 0x5e010100, 0x5203b201, 0xb482a403, 0x1b401e23, 0x21108200, 0x38825900, 0x02610127, 0x01000101, 0x280a8251, 0x260e000f,
0x2b170903, 0x0a9a6f00, 0x2328c882, 0x41721102, 0x47477241, 0x01210584, 0x220a82b2, 0x85407246, 0x3d468205, 0xbe005a00, 0x8a045604, 0x1b000e00,
0x0d0e1840, 0x090a0b0c, 0x05060708, 0x0d020304, 0x56824900, 0x01107622, 0x36085482, 0x25132301, 0x17030507, 0x03371313, 0x02052725, 0xfe12c0b8,
0x81013a8a, 0xdede98f9, 0x8101f998, 0x048afe3a, 0x8b6ffe8a, 0xc6fe6bb3, 0xfe4d016e, 0x3a016eb3, 0x828bb36b, 0xfd482cd7, 0x076803a8, 0x06230008,
0x8247ff3c, 0x0603244f, 0x82b9003c, 0x08e48207, 0x0064004a, 0x054c0400, 0x001b0062, 0x4049001f, 0x02070e46, 0x02040601, 0x02010302, 0x0a010c67,
0x104d380a, 0x0003080f, 0x0d5f0900, 0x0909020b, 0x01054d3b, 0x03390303, 0x1c1c1c4e, 0x1e1f1c1f, 0x191a1b1d, 0x15161718, 0x11121314, 0x102e0086,
0x2b1f0911, 0x33032301, 0x23032315, 0x03822113, 0x33352323, 0x27038313, 0x13210333, 0x05330333, 0x04370682, 0x9c3aac4c, 0x2ca32ab0, 0xa32bedfe,
0x3bab982c, 0xa32baf9c, 0x8215012e, 0xfd9a2f04, 0x13013a9f, 0xfe8d033b, 0xb5fe8f4d, 0x03834b01, 0xb3018f27, 0xfe450190, 0x240383bb, 0x014dfe90,
0x28bc83b3, 0xff610001, 0x064f042f, 0x0d435e55, 0xfc4f042d, 0x56039aac, 0x23f90c06, 0x82e10645, 0x35278d28, 0x32010002, 0x3701052b, 0xfcb50301,
0x550399ac, 0x49dd06d1, 0x26821ff9, 0x00010029, 0x0355feb0, 0x711e04e9, 0x3b2017df, 0x310fdf71, 0xb001fee9, 0x8dfde901, 0x8c033903, 0x043ac9fa,
0x47839ff0, 0xcb010230, 0xe6020000, 0x0f007b05, 0x27001300, 0x33462440, 0x4d1f2108, 0x22076844, 0x444e031b, 0x73690b49, 0x0ae16607, 0x13330336,
0x417f0223, 0x27412626, 0x25264027, 0xa2512741, 0x7b05da1d, 0x220c4944, 0x8272fc13, 0x0002265b, 0x04e4ffc4, 0x246f8407, 0x4038002f, 0x0e7f4335,
0x05217e84, 0x06d27001, 0x00620325, 0x43200303, 0x80920f81, 0x31328143, 0x3b924a63, 0xfefead85, 0x3562b87a, 0x433a404b, 0xb08dbc2d, 0x43cafd21,
0x2c080881, 0x6347475a, 0x529057c9, 0x2f496f4e, 0x3e5a3f2a, 0xffff0041, 0x5800ad01, 0x78040103, 0xe9030601, 0x08007100, 0xb00200b1, 0x2b35b071,
0x271b8200, 0x6e005a00, 0x3a045604, 0xf2221b82, 0x9943b000, 0xb0ff2105, 0x012d1c84, 0x3eff8e00, 0x47062104, 0x06000300, 0x09df41b3, 0xbafcd42c,
0xc247034c, 0xf926e306, 0x07420018, 0x8202202a, 0x82872087, 0x00a72887, 0x001f000f, 0x481f4022, 0x0324098a, 0x00590203, 0x2805d858, 0x26510302,
0x04222626, 0x3b8d4807, 0x482c0421, 0xf382188d, 0xfdae012b, 0x01e902ad, 0x040701d8, 0x073b6944, 0x240c3b6a, 0x03adfdc5, 0x201f8400, 0x081f9145,
0x00010053, 0x03e2fef1, 0x0096065d, 0xb3060011, 0x3201040c, 0x1612002b, 0x02260717, 0x12343502, 0x06173712, 0x01150206, 0x98b359b9, 0x78dfad68,
0x68addf78, 0x0159b497, 0xf8d7fef6, 0x018e688b, 0xdc580118, 0x015801dc, 0x8b688e18, 0xc7d7fef7, 0x01010000, 0x204f8253, 0x354f8cbf, 0x37272602,
0x15121216, 0x07020214, 0x12363627, 0x59f70235, 0x4f8797b4, 0x59b39827, 0x29018303, 0x294f82f7, 0xa8fee8fe, 0xa8fedcdc, 0x4f82e8fe, 0x2901f823,
0x084f82c6, 0xfee70032, 0x068c03f0, 0x002b0088, 0x273d4040, 0x00040226, 0x04030108, 0x0301010e, 0x05004c03, 0x05040000, 0x04006900, 0x04010300,
0x01006903, 0x59010202, 0x02398482, 0x01020061, 0x2a2b5102, 0x1e1f2021, 0x12131415, 0x17090610, 0x1720012b, 0x087d5c13, 0x0603072c, 0x33161415,
0x34112015, 0x19711337, 0x32352205, 0x08088236, 0x26032720, 0x03211035, 0x10fffe8c, 0x686a0328, 0x2803676b, 0xfe708201, 0x0227025c, 0x71718338,
0x08823883, 0xa4012e08, 0xfe9af605, 0x68171978, 0x6712136d, 0xfe1d1969, 0x4a0b0678, 0x1501923f, 0x6d010f1d, 0x4c3b0a1a, 0x4b259a26, 0x011a0b3b,
0x011d0f6e, 0x21c78215, 0xc7822401, 0xc782c920, 0x3c002931, 0x01253940, 0x011f0501, 0x10110102, 0x82020402, 0x000025c7, 0x05000105, 0x0024bf82,
0x02010402, 0x0333cf82, 0x00590403, 0x61030404, 0x03040300, 0x11282951, 0x82181118, 0x821b20c3, 0x141121c3, 0x2220ba87, 0xd183c182, 0x82211021,
0x20b683b9, 0x05d16634, 0x2324cf84, 0xa4012401, 0x8d23aa82, 0x828e9e9f, 0x5cfe2a06, 0x28088277, 0x74776e03, 0x08cf8271, 0x8806f23c, 0x0f1debfe,
0x091692fe, 0x589a575a, 0xfe16095a, 0xfe1d0f93, 0x544692eb, 0x181d8801, 0x1311666a, 0x1917696e, 0x0b068801, 0x01010089, 0x0317ff67, 0x0061066f,
0x40220007, 0x9b66001f, 0x00672b05, 0x03000003, 0x03030057, 0x08825f00, 0x114f002e, 0x04101111, 0x052b1a09, 0x15211121, 0x032f0382, 0x02f8fd6f,
0x01adfe08, 0x4a07e953, 0x82f2f99f, 0x82412047, 0x88492047, 0x32358247, 0x67030002, 0x01010200, 0x02005702, 0x005f0102, 0x88010201, 0x82012047,
0x82352043, 0x41013103, 0xf8fd0802, 0xadfe5301, 0xb6f86106, 0x000e069d, 0x01260082, 0x00002f02, 0x4b823704, 0x1e00052b, 0x00001b40, 0x00860002,
0x21438201, 0x047c0057, 0x258f8208, 0x2b190603, 0x8f832321, 0xb5e40222, 0x06228c83, 0xbf829f61, 0x17ff7927, 0xc2058102, 0x203b8800, 0x20849185,
0x283b8310, 0x21113301, 0xcc012135, 0x248083b5, 0x55f9c205, 0x277b839d, 0x0000c800, 0x6205e803, 0x172d3f82, 0x01031440, 0x4c010001, 0x00010000,
0x297b8285, 0x02111276, 0x012b1806, 0x02822101, 0x01bc0233, 0xfe0cfe2c, 0x012c01d4, 0x02b102f4, 0xfd4ffdb1, 0x8928834f, 0x4018253f, 0x02020515,
0x1020408d, 0x3f834084, 0xbc020124, 0x42820cfe, 0xf401d426, 0x62052c01, 0x022b3e83, 0x01ffffb1, 0x02a501ae, 0x43d005e9, 0x022005f3, 0x2411d765,
0x03a501c5, 0x201f8400, 0x13976545, 0xfef1002d, 0x065d03ce, 0x04060182, 0x45ec000a, 0xec240627, 0x002b35b0, 0x53205b82, 0xbf201b82, 0x0b201b84,
0x00271b8f, 0x03dcfee7, 0x8274068c, 0x8f0c2037, 0x2401211b, 0xc9201b82, 0x0d201b84, 0x67261b90, 0x6f0303ff, 0x37824d06, 0x1b900e20, 0x1b824120,
0x1b844920, 0x1b8f0f20, 0x2308e341, 0x00100402, 0x00209b82, 0x3407b741, 0x00110402, 0x00010000, 0x032102c2, 0x00c302ee, 0x40180003, 0x176c1815,
0x1011280f, 0x2b180902, 0x82352101, 0xd4fc2623, 0x21022c03, 0x213382a2, 0x33821d01, 0x33a29320, 0x8afd9324, 0x33857602, 0x023f0025, 0xa1710421,
0x71042533, 0x3204cefb, 0x00203386, 0xb0203382, 0xb02433a2, 0xb00450fb, 0xff213383, 0x346782ff, 0x03710471, 0x04060113, 0x00500025, 0x0100b108,
0x35b050b0, 0x24eb842b, 0x04220246, 0x284fa26a, 0x04dcfb6a, 0xa1220224, 0x874f8200, 0x04022383, 0x0f900026, 0x00010031, 0x0494fe64, 0x0037ff4c,
0xb1200003, 0x41446406, 0xb1331743, 0x01440006, 0x04213521, 0x0318fc4c, 0xa394fee8, 0x82020000, 0x0452223b, 0x2499824c, 0x00070003, 0x473d842a,
0x67200703, 0x440ff966, 0x47830719, 0x15213322, 0x64220184, 0x4c83e803, 0x9e18fc24, 0x9b849e72, 0x7102c224, 0xfb84ee03, 0xfb8d2320, 0x01ffff23,
0x201b821d, 0x201b8493, 0x411b8f24, 0xff841933, 0xb0047122, 0x26203784, 0xc22a3790, 0xee03d101, 0x06017302, 0x2b482304, 0xad012e0f, 0x020394fe,
0x10000d01, 0x14401700, 0x0ddf430d, 0x37511720, 0x06dd500e, 0x2bc6013f, 0x482b2a49, 0xa118122b, 0x1e1b528a, 0x282845a0, 0x3d202a45, 0x01affe34,
0x253d136d, 0x22008200, 0x82d40002, 0x84da2057, 0x00212b57, 0x1e19401c, 0x0001020d, 0x04834c01, 0x0385002d, 0x76010101, 0x22172717, 0x4f1a0904,
0x5d860976, 0x8609674f, 0x84ed2010, 0x112a216d, 0x01216d85, 0x220e84b3, 0x83161129, 0x861f207c, 0x333e217c, 0x2a207c86, 0x21228c84, 0x8c893040,
0x03258b82, 0x06dc03b1, 0x87e3822a, 0x0100248b, 0x83034c01, 0x828520ec, 0x88002091, 0x4a00208b, 0x37270870, 0x16033313, 0x8f041516, 0x0e022110,
0x2c2bf882, 0x17102848, 0x1b528c9f, 0x83b5011f, 0x2a47238d, 0x8d831711, 0x1e041e22, 0x20297e84, 0x51013140, 0x3d1393fe, 0x228e8525, 0x8632401f,
0x051b410f, 0xb203d222, 0x2b208f82, 0x34218f84, 0x061a41b6, 0x1ab04b26, 0x0d405850, 0x86209584, 0x40259583, 0x401b4e00, 0x0a31410b, 0x41b65921,
0x12200733, 0x4108df51, 0xeb201734, 0x48289783, 0x9f19132b, 0x1e19508a, 0x4920a685, 0x2a064341, 0x45bd051f, 0x2a452929, 0x41363c1e, 0x24280525,
0x2829452a, 0x3d202a46, 0x2a064541, 0x01010024, 0x03b103ae, 0x422a0601, 0x11820717, 0x01004c25, 0x82850100, 0x427620c1, 0x2c410517, 0xe8022510,
0x2b2b492a, 0x8c0f0c41, 0x010122fc, 0x215788ad, 0x6e42b52d, 0x20f88505, 0x205d830b, 0x845d8286, 0x460920f6, 0x59210863, 0x8f6d86b4, 0x068542f2,
0x1a23d385, 0x8bbc051f, 0x122208c3, 0x0200243e, 0x62009b00, 0x31041304, 0x0d000600, 0x0cb50800, 0x02020509, 0x01012b32, 0x01350107, 0x06851317,
0x0163012a, 0xa3fe7207, 0xa2725d01, 0xa1300883, 0x02725f01, 0x4962fe49, 0x0186a301, 0x61fe49a6, 0x00200a88, 0x0d234f90, 0x8203060a, 0x0137274f,
0x15013701, 0x06852501, 0x08019b27, 0x0172f8fe, 0x2052825d, 0x2e0a8535, 0xaba1fe5f, 0x9f019e01, 0x865afe49, 0x89495dfe, 0x27eb820a, 0x6f010100,
0x41036200, 0x0624a384, 0x010205b3, 0x02259f88, 0x73090138, 0x208f82fe, 0x208f8973, 0x212f8e4a, 0x2f820306, 0x01277886, 0xfe09016f, 0x860173f7,
0x4a9e216e, 0x63836e84, 0x3c01022e, 0x7403b803, 0x0300c605, 0x34000700, 0x32056e41, 0x0001020d, 0x035f0100, 0x3a010101, 0x401b4e00, 0x83010313,
0x82572010, 0x00012206, 0x241c825f, 0x594f0001, 0x07cd44b6, 0x03230123, 0x30038433, 0xe121a0fd, 0x20a03601, 0x02b803e1, 0x02f2fd0e, 0x2260820e,
0x82e80101, 0x84c8200d, 0x852d205f, 0xc672185d, 0x185b8408, 0x2011c672, 0x06b046b4, 0x02245682, 0xe020a0a8, 0x0e383f82, 0x9b00ffff, 0x1304bc00,
0x06018b04, 0x5a003a04, 0x00b10800, 0xb05ab002, 0x8906ef4c, 0x8f3b201b, 0x6f01251b, 0x4103bc00, 0x3c203784, 0x01201b85, 0x1b8a3788, 0x1b8d3d20,
0x01010029, 0x022fffae, 0x4c5a03e9, 0x3108090f, 0x17161624, 0x35022e07, 0x37363634, 0x15020e17, 0x41214b02, 0x5a4b613c, 0x4b5a3535, 0x21413c61,
0x5c8194df, 0xb3915e3f, 0x91b37473, 0x815c3f5e, 0xff846694, 0x2fffc524, 0x478b0003, 0x26260024, 0x97533727, 0x27072605, 0x0235023e, 0x21478d63,
0x4886aa01, 0x86737421, 0x00653348, 0xa7fc0200, 0x59032102, 0x0300c302, 0x1d000700, 0x92411a40, 0x11112c12, 0x07041011, 0x21032b1a, 0x82052135,
0xfc552603, 0x030403fc, 0x240583ae, 0xa2a22102, 0x238e82a2, 0xf6f70300, 0x5a204782, 0x0b2c4786, 0x1f402200, 0x01020305, 0x57010000, 0x01290783,
0x02045f00, 0x00010002, 0x6cca184f, 0x86012009, 0x2d52834e, 0x99fc5dfb, 0xff036703, 0x680398fc, 0x0b83fe03, 0x5b855984, 0x44fc0131, 0xc003c201,
0x23002b03, 0x2f403200, 0x52030123, 0x012a05d8, 0x69010405, 0x00020500, 0xbd825905, 0x03000239, 0x05006702, 0x00610005, 0x51000500, 0x24212425,
0x07062225, 0x45012b1c, 0x2720054e, 0x82059a7d, 0x2277820c, 0x43373636, 0x590805da, 0x33161617, 0x03373632, 0x77983bc0, 0x2b3d5230, 0x28264230,
0x462a2638, 0x037bfc35, 0x2b453362, 0x34384a2f, 0x2d2a3f56, 0x5e3a243e, 0x77ca022b, 0x262d2091, 0x19182a2b, 0x01a21c1c, 0x1a1b1919, 0x2a253021,
0x004f5828, 0xfe54fc02, 0x066002f2, 0x002a0086, 0x4042002e, 0xa5840b3f, 0x02080629, 0x04000005, 0x4d670005, 0x444b0c42, 0x01072b05, 0x4f020102,
0x2d2e0000, 0x36822b2c, 0x2122293b, 0x16181f20, 0x09211315, 0x012b1707, 0x06222115, 0x14111506, 0x1e070606, 0x82078202, 0x822120a8, 0x26262413,
0x82341135, 0x356308ca, 0x35363632, 0x33023e13, 0x23113321, 0xf3fd0601, 0x2a29564a, 0x594e4b5a, 0x4a562928, 0xf3fd0d02, 0x2e54a482, 0x817c7b82,
0x5301022e, 0xb90283a1, 0x8606aeae, 0x3b421a93, 0x725978fe, 0x3d0d0d40, 0x7bfe5d71, 0x931c423c, 0x017c8c39, 0x2e584b6b, 0x4b582d9a, 0x897b7301,
0x006cf836, 0xfd020000, 0x8217ff7f, 0x00612acf, 0x000b0007, 0x04234026, 0x11964c01, 0x00010523, 0x0bd14103, 0x2007994c, 0x2b928313, 0x037bfc04,
0x0230fd85, 0xaeaeaed0, 0x2305a04c, 0xb6f8ad06, 0x003d5a82, 0xff91fc03, 0x06d40317, 0x001f0061, 0x00270023, 0x005d4060, 0x0c09000a, 0x1267090a,
0x09f95210, 0x08002c08, 0x07080700, 0x0c010e63, 0x134d1a0c, 0x00000211, 0x0f145f0b, 0x0b0b030d, 0x01054d1c, 0x031b0303, 0x2700004e, 0x23242526,
0x82202122, 0x1e1f234a, 0x09531c1d, 0x87112008, 0x07152500, 0x15012b1f, 0x230b0953, 0x35211121, 0x13200386, 0x23050d53, 0x21132101, 0x03210383,
0x0b1053d4, 0xfd15fe2b, 0xfe5301f8, 0x020802ad, 0x0717534c, 0x015ffb30, 0xc7fd3bfe, 0x1301a002, 0x04ecfe3b, 0x1f53901d, 0xccfd280a, 0x9f0e069d,
0x5301bcfd, 0xfd3f0623, 0xfeb301bd, 0x00b3014d, 0x01acfc02, 0x03bc037e, 0x000f0070, 0x402a0013, 0x03000027, 0x5e590001, 0x67270629, 0x01000000,
0x54010461, 0xd85605bd, 0x54072009, 0x252011c1, 0xfd22b882, 0xc554725f, 0x16062709, 0x0a04f6fb, 0xcb547e01, 0xa2a3210b, 0xff2f5082, 0xffe0fdff,
0x011f02e7, 0x03230056, 0x8240fce7, 0x03032412, 0x8210ffe7, 0xff002807, 0xffd2f9ff, 0x858101e7, 0x52fb211b, 0x23821382, 0x8572fe21, 0x32f82123,
0x002a0782, 0x08f90400, 0x2003e7ff, 0xa5828003, 0x17000728, 0x2b002700, 0x19822840, 0x02012708, 0x00670100, 0x04030002, 0x06670302, 0x05040401,
0x05010761, 0x4e052005, 0x23262626, 0x10111111, 0x2b1e0708, 0x844a2103, 0x5a042005, 0x66490e12, 0x05ad5709, 0x60034024, 0x0383a0fc, 0x5b48f921,
0x03210b16, 0x240d8c84, 0xa2e0a280, 0x0a295b8a, 0x0b8a3220, 0xcf829282, 0xeb82bc20, 0xaa047828, 0xcd042300, 0x128270fe, 0x4d040324, 0x0782dcfb,
0x03000024, 0x1b8243fd, 0xe357bf20, 0x003f2406, 0x57444047, 0x073013e5, 0x1f020201, 0x0806094d, 0x03040403, 0x03010561, 0x4e2cfa82, 0x20203030,
0x3f300000, 0x36383e30, 0x210bf057, 0xf057070a, 0x5700201f, 0x20200ef0, 0x01210f8e, 0x170058a5, 0x59cefc21, 0x262506dd, 0x03274026, 0x350e5853,
0x080d1a58, 0xfc03003d, 0x035c01aa, 0x008003e8, 0x00130003, 0x4b5f0017, 0x585019b0, 0x01002040, 0x57010004, 0x05030400, 0x01025704, 0x03010600,
0x69030005, 0x05040400, 0x0405005f, 0x401b4f05, 0x84000021, 0x85672024, 0x02002224, 0x20238206, 0x28238b02, 0x04104059, 0x15161704, 0x061f5a14,
0x19070727, 0x1521032b, 0x0f7c5721, 0x13822520, 0x5e047626, 0xd3fda2fb, 0x210abf42, 0x1283e601, 0xa2800324, 0xc2429dfe, 0xa283310b, 0xc5fdffff,
0x3902e7ff, 0x23000704, 0x38ffe903, 0x03248782, 0x18fce903, 0x2006bf42, 0x201b823d, 0x211b8511, 0x138290f7, 0xfb212382, 0x42238550, 0x002b05e3,
0x003ff806, 0x047c034a, 0x440f006a, 0x37260665, 0x42004700, 0xe8823f40, 0x01010325, 0x82010005, 0x057f7ae8, 0x08010a2e, 0x59080907, 0x07000600,
0x67070609, 0x083a0e82, 0x010b6109, 0x51090809, 0x3a3c4244, 0x11233234, 0x26141111, 0x0c222626, 0xf55c1f07, 0x0fd24210, 0xfa420520, 0x3ff82126,
0x210b1d5d, 0x0d8b2003, 0x05f50225, 0x83d8fa28, 0xebf92103, 0x830c375d, 0x09455d25, 0xb754ef20, 0x8a2e200a, 0xa241240b, 0x5d3aa2e0, 0x2d200a54,
0x00200b8a, 0x30080082, 0x0000fd04, 0x04e803cd, 0x000f000d, 0x00230013, 0x40300027, 0x0002002d, 0x03020103, 0x00060067, 0x07060507, 0x00040067,
0x65050405, 0x00010100, 0x26338261, 0x114e011c, 0x82232614, 0x08222303, 0x05411e07, 0x82252010, 0x0f0f5ef5, 0xfd211383, 0x30bf8200, 0x2d2d4d30,
0x4d2f2f4e, 0x048a022d, 0xfda2fb5e, 0x20138276, 0x24af822f, 0x4e2f304d, 0x2113852c, 0xbf8a9203, 0xfea21c23, 0x29b28ac7, 0x0000a286, 0xabfdffff,
0x0f4292fe, 0xfcea2206, 0x24918218, 0xffea0303, 0x82078238, 0x0afe2b1b, 0xf501e7ff, 0x23006205, 0xeb44ec03, 0x42ec2006, 0x05260607, 0xe7ffcef8,
0x1b828202, 0x44000321, 0x372405c7, 0x3c403f00, 0x0808714a, 0x4d1a0037, 0x070b090c, 0x0505050a, 0x06086104, 0x20040402, 0x28284e04, 0x08081818,
0x36283728, 0x27182e30, 0x1e202618, 0x16081708, 0x11111127, 0x1b070d10, 0x0333012b, 0x20038323, 0x0ed54304, 0x8f0fe543, 0xeef8260f, 0x04a815d4,
0x21048235, 0xd84331fc, 0x7404210a, 0x76200c8b, 0x250aff43, 0x6dfc6205, 0x485d9303, 0x0bdc430e, 0x380de843, 0xff18fc01, 0x05e8033f, 0x001300ab,
0x1238403b, 0x4a060211, 0x02020708, 0x2e048249, 0x00010506, 0x67000601, 0x02010104, 0x82570102, 0x02012306, 0x8048035f, 0x392f8206, 0x11111113,
0x11111113, 0x2b1d0709, 0x07211501, 0x01211521, 0x35210127, 0x03823721, 0x17012808, 0xfce80301, 0xce0385b7, 0xbffed1fb, 0xfd160196, 0x86410320,
0x280439fc, 0xfe924b01, 0xa28003e2, 0xe3fda2e0, 0x82d2014b, 0x2b022907, 0x001efe49, 0x68f70100, 0x1b2e8b86, 0x0a407900, 0x0a02191a, 0x020b0c4a,
0xab4b4904, 0x08212605, 0x01070101, 0x2f808202, 0x03010667, 0x03040105, 0x01096304, 0x5f0a0000, 0x0a272482, 0x4e001c0a, 0x8328401b, 0x2314820a,
0x67000a01, 0x04232e8c, 0x82570304, 0x04032235, 0x2d38845f, 0x1640594f, 0x1b000000, 0x17181b00, 0xc7861516, 0x0d111124, 0xc9871f07, 0x0322cd83,
0xcd861327, 0x07823720, 0x17132808, 0xfae80303, 0xb30586d3, 0x0685edf9, 0xd008f998, 0x3afba496, 0xfa862705, 0x870d0653, 0xf4066cf9, 0x04aa92d7,
0x82e1a143, 0xa2fe24d1, 0x8213014b, 0xa1e12f07, 0xfe496801, 0x030000e1, 0xe7ff56fd, 0x53468402, 0x06265e50, 0x445e0720, 0x0f5d4225, 0x52468120,
0x0b535e17, 0x42490321, 0x605e0b5e, 0x0c684229, 0xc0fc0326, 0x2303e7ff, 0x3d2cff82, 0x5d004d00, 0x4b404e00, 0x0335363b, 0x08056d7e, 0x0701003f,
0x80070001, 0x01010103, 0x050a6104, 0x1f040402, 0x0b090c4d, 0x06070703, 0x06010861, 0x4e062006, 0x3e3e4e4e, 0x5d4e0000, 0x54565c4e, 0x4c3e4d3e,
0x3d004446, 0x2b243c00, 0x0d1c2b1b, 0x3a501807, 0x12064109, 0x06063522, 0x24161d41, 0x36171632, 0x1f764733, 0xb8090238, 0x3f4b3462, 0xbd2e443a,
0x33415039, 0x637d273b, 0x1772cd53, 0x895f414f, 0xc4892612, 0xfcfeaa2b, 0x0a9a43d9, 0x47480321, 0x4d390f8d, 0x2a2d466d, 0x41405d3e, 0x4e79544b,
0x48352630, 0x71594f2d, 0x4c3501af, 0x13b25f2f, 0xc2576b22, 0x410db55f, 0x00280c54, 0xfc040000, 0x03e7ff5c, 0x38055742, 0x00270023, 0x40540037,
0x021c1d51, 0x4c010103, 0x06050000, 0x80060005, 0x05be6a00, 0x82006721, 0x05083e0c, 0x01006706, 0x09610201, 0x1f020201, 0x08010a4d, 0x00610708,
0x07200707, 0x0028284e, 0x05bf4400, 0x230a204b, 0x0b1c2b1e, 0x2120ba48, 0xfd432101, 0x44062005, 0xfe210edc, 0x175f4285, 0x030d022b, 0x7fddfb6d,
0x5efba204, 0x0f2141df, 0x2517be60, 0xe0a205fe, 0x00415aa2, 0xff23080d, 0x00dcfbff, 0x042404be, 0x0323008a, 0x0082fbf2, 0x03020000, 0xff00cef2,
0x00c2f7ff, 0x058e03be, 0x822700b6, 0x01502217, 0x291f832c, 0x000068f7, 0xf2030301, 0x278238ff, 0x00b10929, 0x2c01b801, 0x822b35b0, 0x0200330c,
0xfeffa5fb, 0xee04a403, 0x15000e00, 0x1f402200, 0x57181415, 0x0b2007d3, 0x2107d45f, 0xd45f1400, 0x11590805, 0x2b170701, 0x03330301, 0x01051725,
0x27010107, 0x25372501, 0x01150135, 0xc6fd0135, 0x0116c119, 0x16fe38e3, 0xfe9e4601, 0xa2fcfee1, 0x0cfe2d01, 0x0362043f, 0x02a2fc5e, 0x02ea02b9,
0xb0fefd04, 0x7bfe87b7, 0xfeaa0179, 0x81017162, 0xc77fb688, 0xfdb5ecfd, 0xab01c9e5, 0x27b78200, 0x2ffff2fb, 0x5506a903, 0x9822b784, 0xaf823000,
0x5afff522, 0x0820a282, 0xb021af82, 0x22ae8330, 0x5c2cfc03, 0x4108061f, 0x002a0026, 0x404e0031, 0x0221224b, 0x03044a08, 0x0e490102, 0x0405020c,
0x01000202, 0x0a670005, 0x1a080801, 0x020d0f4d, 0x5f070606, 0x0702090b, 0x034d1c07, 0x1b010101, 0x30314e01, 0x292a2b2c, 0xff4c2728, 0x86112005,
0x10172400, 0x5c2b1f07, 0x2722066b, 0x05600321, 0x36212113, 0x2a06805c, 0x21132105, 0x35262101, 0x5c213734, 0xb424058b, 0xf5fd38e4, 0x37141960,
0xe635a701, 0xb49768b9, 0x01c0fb59, 0xecfe3b13, 0xd5017b01, 0x68fe0f12, 0x2306b35c, 0xb0240195, 0x23133060, 0x982c01b5, 0x2905c35c, 0xfeb301e2,
0x7079694d, 0xfb830061, 0x08057b5c, 0x39003562, 0x82004300, 0x01317f40, 0x01080b0a, 0x010e1312, 0x4c030304, 0x00000f00, 0x69000f0b, 0x12001300,
0x69121308, 0x03101516, 0x02050708, 0x03080403, 0x00010067, 0x65020102, 0x0b0b010d, 0x11144d1a, 0x0a090902, 0x020c0e5f, 0x4d1c0a0a, 0x04040106,
0x3a4e041b, 0x3a433a3a, 0x3f414243, 0x393c3d3e, 0x210a3279, 0x5a71292a, 0x21222205, 0x06334e20, 0x13141526, 0x07171012, 0x411bc15c, 0x03291641,
0x21103526, 0x21132101, 0x05934f01, 0x03213723, 0x11d95c03, 0x12fd1e22, 0x37144c41, 0x02209002, 0xedf9a401, 0xfe3b1301, 0x085f04ec, 0x89939b88,
0x3a58fd0d, 0x201afc5c, 0x135d411a, 0x0f2a0138, 0xfb15011d, 0xfeb30152, 0x9a484d4d, 0x4dfe4440, 0x03000000, 0x575c2cfc, 0x001f2a06, 0x00270023,
0x14624065, 0x05524101, 0x10126723, 0x0e494102, 0x49416320, 0x13152305, 0x4a410311, 0x24242911, 0x27240000, 0x25262724, 0x201c6c4f, 0x05734716,
0x9f5c1120, 0x14724205, 0x21011132, 0x03212113, 0x6f031121, 0x5301adfe, 0xb3fdf8fd, 0x35141a41, 0x12fced01, 0xfe3b1301, 0x3ab501ec, 0x61063902,
0x9df2f99f, 0xfc933402, 0xfb440223, 0x06694f79, 0x04000024, 0xf8827cfc, 0x4b636020, 0x24f58306, 0x0068406b, 0x25f7820e, 0x670f0e12, 0x5e500710,
0x01133505, 0x12006702, 0x03130116, 0x0c671312, 0x1a0a0a01, 0x0811154d, 0x50096163, 0x24250860, 0x1c202024, 0x22f9851c, 0x82202320, 0x187163fc,
0xfb821720, 0x71631320, 0x1301271a, 0x03250321, 0x07831321, 0x67506420, 0x0d78630b, 0x2fb20128, 0xfa2f1b01, 0xfc823ad2, 0x83af0221, 0x1884630b,
0x01e8fe2c, 0x88b5fe4b, 0xb3014dfe, 0x0a833dfd, 0xff860020, 0x8ae00221, 0x406722ff, 0x8ef68b64, 0x0e003ae7, 0x145f0a0e, 0x0a030c0f, 0x164d1a0a,
0x03131301, 0x0205125f, 0x031b0303, 0x23fbcb4e, 0x01132303, 0x0782fb83, 0x0226fb9a, 0x78ca787c, 0xfa83edfb, 0x264b0324, 0xf99826f2, 0xfc450127,
0xfe870379, 0x24fa842b, 0x01fafe79, 0x24fa8206, 0x2cfc0300, 0x05cf67ff, 0x003c4d08, 0x00500040, 0x13b04bbc, 0x3d405850, 0x04030000, 0x80040003,
0x03020911, 0x04020608, 0x67040314, 0x0c010100, 0x0e10155f, 0x1a0c0c03, 0x020a124d, 0x5f0b0202, 0x0b020d0f, 0x164d1c0b, 0x05141401, 0x0207135f,
0x051b0505, 0x45401b4e, 0x95523f93, 0x26458205, 0x01156110, 0x8e1f1010, 0x01072143, 0x49843c82, 0x61132408, 0x20131300, 0x40594e13, 0x0041412c,
0x41504100, 0x4047494f, 0x003d3e3f, 0x383b003c, 0x34353637, 0x7d313233, 0xb84505ca, 0x2b132505, 0x1f07171c, 0x221a5168, 0x65210706, 0x3e2619d7,
0x21013302, 0x09492113, 0xd102210f, 0x2510f948, 0x21848e3c, 0x006694fe, 0x28e72d17, 0xfb5ec7a8, 0x3b130123, 0x9c04ecfe, 0x480fd647, 0x372213f8,
0x0c538396, 0x0b2c660a, 0x449d7d28, 0xb3015ffc, 0xef4775fd, 0x0400270d, 0x0000b8fb, 0xab42c703, 0xcc20080a, 0x5015b04b, 0x0e2a4058, 0x09030b0d,
0x080f1114, 0x09010004, 0x10126800, 0x13010307, 0x02030406, 0x20071167, 0x0701541a, 0xcb501b20, 0x0d2f2a05, 0x0e09020b, 0x00570900, 0x2236860e,
0x9b67000e, 0x36402136, 0x14253183, 0x00030811, 0x2e61820f, 0x0f000e00, 0x670f0e12, 0x13001200, 0x44131202, 0x6f900828, 0x40595929, 0x27202026,
0x44242526, 0x7454050e, 0x097e670c, 0x1f071524, 0x0c44032b, 0x2117281a, 0x03252115, 0x82051321, 0xac783607, 0x2eb09c22, 0xeefe30a3, 0x9830a330,
0xaf9c23ab, 0x0142a33f, 0x2d048215, 0x9903a69a, 0xf9fc67fc, 0x23130122, 0x0b83c101, 0xfeff0228, 0x91fe8efe, 0x03836f01, 0x02018e27, 0xfed30190,
0x0803832d, 0x148e1629, 0x0201fefe, 0x00008eee, 0x2cfc0200, 0x4c0494fe, 0x1d006205, 0x56002100, 0x0d0f5340, 0x0e110502, 0x03020304, 0x82670205,
0x00012320, 0x4f486301, 0x10122305, 0x5048030c, 0x03002f0a, 0x4e031b03, 0x00001e1e, 0x211e211e, 0x40821f20, 0x20135355, 0x20dd8313, 0x68ba8203,
0x15201359, 0x0120f683, 0xe626db82, 0xf9760544, 0x5c685ad3, 0x3aac2f12, 0x3ae9fd9c, 0x013b1301, 0xa3ecfd4b, 0x5d68b702, 0x028f2212, 0x053b5542,
0x7cf72908, 0xad0393fe, 0x30009606, 0x57003400, 0x01305440, 0x4c010e00, 0x07022627, 0x020c0f4a, 0x02030d04, 0x01040201, 0x000e0067, 0x633e0282,
0x07070109, 0x0b104d1a, 0x06050502, 0x02080a5f, 0x4d1c0606, 0x1b020200, 0x33344e02, 0xac413132, 0x056c430b, 0x30111123, 0x23cc8211, 0x25172701,
0x2325cb98, 0x02262103, 0x07ac6511, 0x14150727, 0x01171212, 0x242e8221, 0xf6010352, 0x32df961f, 0x650844b0, 0xe078d8c2, 0xb09568ac, 0xdb7d055a,
0x821cf59c, 0xecfe24ef, 0x820293fe, 0x08f194b0, 0xb5ecfd3c, 0x2101b901, 0x015401d9, 0x89688e15, 0xc9d8fef8, 0xb3fec620, 0x0283edfe, 0x00b301e7,
0xfcffff00, 0x032fff51, 0x005506e0, 0xfbf50323, 0x010000f0, 0x8af20306, 0xb1080030, 0x4d4a0101, 0x25128205, 0x2fff79fc, 0x23820804, 0x000a3408,
0x080ab306, 0x132b3201, 0x01150107, 0x27020927, 0x045f6701, 0x6305fd00, 0x5afcb902, 0x039a56fd, 0xc50c0656, 0xfeb587fd, 0xab018b23, 0x82fa3b02,
0x82e10645, 0x82152063, 0x86eb2063, 0x00b42763, 0x03020000, 0x7b829cf5, 0x82c9f721, 0x85872017, 0x38ff2117, 0x83821782, 0x8268f721, 0x82032007,
0x8250208b, 0x2d7b8307, 0x030000e7, 0x00620519, 0x401b0006, 0xd75f0418, 0x1a002306, 0xa84a024d, 0x11123e05, 0x19070310, 0x0133032b, 0x23010123,
0x9b02fb7d, 0xfdb8fdd1, 0x6205d0b7, 0xb0049efa, 0x214583fb, 0x4389fc01, 0x1e40212f, 0x01000105, 0x02034c01, 0x1a010102, 0x2264824d, 0x824e001b,
0x00062805, 0x04111106, 0x822b1807, 0x33012f45, 0x19030101, 0xfdfb65fd, 0x4902d064, 0x4b834802, 0xfb620525, 0x48b00450, 0x7520060b, 0x1b368f82,
0x2f002b00, 0x66003f00, 0x010c6340, 0x850a0e0a, 0x13030105, 0x02448603, 0x00692613, 0x12130112, 0x0d294859, 0x61131237, 0x13121300, 0x3c2c2c51,
0x2c32343a, 0x2e2f2c2f, 0x2026282d, 0x12786b1e, 0x1f061523, 0x1b06482b, 0x230f1257, 0x13210305, 0x470f3953, 0x01221a22, 0x54712cbe, 0xfb2c3109,
0x13013ae1, 0x2ec4023b, 0x4e312e4d, 0x304e2d2c, 0x34470882, 0x532d2018, 0x2b080a62, 0x014dfe35, 0x4d20feb3, 0x2e4e2e2e, 0x2d2d4d2f, 0x00002f4f,
0xae01ffff, 0xe9021402, 0x07013f06, 0x00004404, 0x0900e502, 0xb80100b1, 0x0a8f4c18, 0x1302c526, 0x3e060003, 0x45201f82, 0xe4201f82, 0xe4201f86,
0x2806774d, 0x02ecff01, 0x02c4041f, 0x182f64c5, 0x2b180734, 0x21352101, 0x28fbc404, 0x1f02d804, 0x010000a6, 0x33a7f400, 0x0330fc23, 0x833385d0,
0xbc032167, 0x1f236784, 0x5e021c40, 0x06820544, 0x21730120, 0x00033209, 0x07031103, 0x15012b17, 0xbc033521, 0xc50230fc, 0x286d82a6, 0xff060000,
0x04cd00ec, 0x06fb54c4, 0x00172408, 0x002b0027, 0x403b002f, 0x03010538, 0x01020104, 0x0b670203, 0x010a0901, 0x08090708, 0x00060067, 0x55070607,
0x2f270b03, 0x2b2c2d2e, 0x5626142a, 0x10560512, 0x23052314, 0x03833335, 0x870fd441, 0xaf012117, 0x290b1255, 0xaeaeebfe, 0xaeae2a04, 0x1455ebfc,
0x5515870b, 0x81250c16, 0xfea2a2a2, 0x0a185520, 0x7b5d1920, 0x23d38206, 0xc404e7ff, 0x2006e354, 0x06d5550b, 0x40404322, 0x0720d385, 0x2708d382,
0x08070109, 0x070b0601, 0x01006706, 0x005f0001, 0x4d1a0000, 0x0b0b010c, 0x0a00610a, 0x4e0a200a, 0x23141414, 0x1a1c2214, 0x220a416e, 0x541f070d,
0xcf8605e9, 0x07860120, 0x2e0ff554, 0x15d4ea01, 0xa792fea8, 0xa73104a7, 0x85cffba7, 0xbafd2107, 0x240b3248, 0x016dfc62, 0x21ac8214, 0x0482dafd,
0x0548ff20, 0xff02220c, 0x1dfb6eec, 0xfb6e1a20, 0x08994b0d, 0x831bfb6e, 0x0cf15bb9, 0x13213523, 0x6e038221, 0xfe2818fb, 0x3b2301f0, 0x7101a2fe,
0x6e07e75b, 0xbf8528ff, 0xbb6fc420, 0x23bfb719, 0x15210321, 0x8307734e, 0x2ebf89bb, 0x21030521, 0xfec40413, 0x5e013adc, 0x6f2a8efe, 0xc29006be,
0xfd120124, 0xc36f3a27, 0x00022524, 0x04000064, 0x7f70c3de, 0x4dc3950d, 0xbfa90c09, 0xff012008, 0x043fffec, 0x00ab0575, 0x4031000b, 0x0201022e,
0x01044a03, 0x01044900, 0x01020003, 0x68670203, 0x002f0fb9, 0x000b0000, 0x1511110b, 0x2b190705, 0x56170101, 0x023d08e9, 0x9248019b, 0x01965bfc,
0x019afe18, 0xb2fd87c7, 0x26028503, 0x4bddf949, 0xe2a2d501, 0x203682a2, 0x206b8500, 0x546357c4, 0xfec4042a, 0x51028736, 0xbdfe4ffd, 0x02218189,
0x239282af, 0x8503e5fe, 0xfd218082, 0x828885e0, 0x23fe2293, 0x20d58200, 0x83f7823a, 0x22f7848b, 0x5703010a, 0xf78305ee, 0xfb820020, 0xb06bf782,
0x84c0820d, 0x841120f7, 0x08e557f7, 0x8b011721, 0xa9032279, 0x226e8992, 0x83492106, 0x00002869, 0xff3cfb02, 0x828d033f, 0x000b2af7, 0x4032000f,
0x01020e2f, 0x37664103, 0x17010136, 0x01d4fe01, 0x5bfc9148, 0xfd180195, 0x87b002b1, 0x1604c9fc, 0xfc217982, 0x0c71415b, 0x8205fc21, 0xddf92180,
0x7f84b782, 0xeb850420, 0x46001725, 0x84164340, 0x1314297f, 0x49000304, 0x03080709, 0x2007bd45, 0x050d4605, 0x01360682, 0x01065f00, 0x4f000100,
0x00000c0c, 0x170c170c, 0x0f101112, 0xfa410d0e, 0x410a2006, 0xf6540efa, 0x27012106, 0x092b9b93, 0x874efd88, 0x67fc3903, 0x4196bdfe, 0x1742061f,
0x0599410a, 0x22052a41, 0x4173fc02, 0x03200693, 0x27072741, 0x0c4a0302, 0x4902020b, 0x25189641, 0x0f040404, 0x8e420f04, 0x82052006, 0x0980597f,
0xfc01172a, 0x91a90373, 0xbc075bfc, 0x7620818e, 0xf9236f82, 0x8b4604dd, 0x0000257c, 0xecff0100, 0x2008736a, 0x146f6a18, 0x83470720, 0xfb4c2706,
0xfe6004a0, 0x3387a394, 0x37ffc422, 0x8525b747, 0x64002133, 0x33a56782, 0x54086788, 0xf6fe30fd, 0xf505d002, 0x64003d00, 0x32336140, 0x04030329,
0x0305012c, 0x1a212238, 0x39050604, 0x04020319, 0x010c0201, 0x12130107, 0x07000309, 0x2a2b4c06, 0x0b4a0402, 0x4900020a, 0x06000500, 0x69060502,
0x01000200, 0x69010207, 0x00070108, 0x65000700, 0x26438200, 0x04040061, 0x824e031c, 0x3d2808fe, 0x27253c00, 0x26272427, 0x1d070925, 0x3736002b,
0x23060617, 0x03272622, 0x23261327, 0x07060622, 0x33023e27, 0x26371732, 0x16240d8a, 0x03171317, 0x84050664, 0x0727222d, 0x3e0d8217, 0x2b949001,
0x99d03b81, 0xa4528e4e, 0x333db4a4, 0x1a688443, 0xbc862181, 0x424e496d, 0x8831614d, 0x8043290e, 0xaea0a046, 0x5e224a2b, 0x21082f85, 0x1940645b,
0x01346850, 0x41506a75, 0x3138a874, 0x0222bbfd, 0x4c2c1d78, 0x78434330, 0x2fe71e4d, 0x0a852b2c, 0x02282e28, 0x97fd2033, 0x27841817, 0x0fe22d24,
0xbf823031, 0x5b030021, 0xc74708c3, 0x40343c05, 0x00010b31, 0x0205064a, 0x01044902, 0x01010500, 0x67010003, 0x02030107, 0x82570302, 0x02033606,
0x0201065f, 0x114f0203, 0x11121111, 0x08111113, 0x012b1e07, 0x08be5b01, 0x39080a82, 0x21012107, 0x1d022137, 0xe602e5fe, 0xd6fdbafc, 0xfd180196,
0x0243031e, 0x038dfa30, 0xcffc6899, 0x67fcd007, 0x05310368, 0xa223fe62, 0x014b5cfc, 0xaa03a2d5, 0xfea2dafd, 0x9082a27c, 0xc75b0520, 0x13210808,
0x1b001700, 0x23001f00, 0x57405a00, 0x00020102, 0x020b0c4a, 0x090a4903, 0x00040710, 0x06080b11, 0x2a138204, 0x0d0f6701, 0x03020305, 0x84570203,
0x03022508, 0x040c0e5f, 0x03260e82, 0x0018184f, 0x72552300, 0x1b182906, 0x191a1b18, 0x14151617, 0x82057a5c, 0x131124b7, 0x821d0712, 0x011722b9,
0x08984433, 0x82352321, 0x073529b8, 0x05213521, 0x01152135, 0x30062f66, 0x4801ebfd, 0xdee5fe92, 0x0187c2fe, 0xfedbfdc5, 0x30d082bd, 0x873b01da,
0xfca03efe, 0x05c00340, 0xf7c00300, 0x21098340, 0x0583c008, 0x02850324, 0xda824926, 0x45a2e221, 0xa220073e, 0xde820083, 0xe082a220, 0x6001012b,
0x7103f5fe, 0x06008406, 0x0e0b6900, 0x48012937, 0x016afe7b, 0xbd027b96, 0x032961fc, 0x85038684, 0x0101002a, 0x202f823f, 0x082f8650, 0x01000430,
0x27012b32, 0x01370101, 0x7bba0115, 0xb8fe4801, 0xfe96017b, 0x9f0329f5, 0xfc2a9d03, 0xffff867b, 0xf301a201, 0x62031103, 0xf0030200, 0x0f830002,
0x0392fe25, 0x82070410, 0xea20080f, 0x0100000f, 0xcbfecb00, 0x5905e503, 0x2f001d00, 0x021b2c40, 0x03000300, 0x0102030e, 0x0f111400, 0x03210682,
0x05e7564c, 0x00636808, 0x5f030000, 0x38030300, 0x16194e00, 0x09042523, 0x16012b1a, 0x26260717, 0x15062223, 0x36322110, 0x07061737, 0x26112311,
0x36343502, 0x33113736, 0x6e87f002, 0x3c693d5d, 0x0d018c81, 0x5b3f6a3b, 0xbca28f66, 0x7daf59c7, 0x102d04a0, 0x242e7c59, 0x7ffec8c8, 0x56843027,
0x01dafe15, 0x19011a29, 0x94e892e3, 0x822e0113, 0x022f0867, 0x92004400, 0xc4046c04, 0x28001c00, 0x20406800, 0x0304061b, 0x161a0003, 0x0204070c,
0x0f131503, 0x0201040d, 0x051c4c03, 0x144a0002, 0x7b01020e, 0x132006c9, 0x0f7f8618, 0x03414c08, 0x19401b4e, 0x01040000, 0x03000203, 0x01020069,
0x00590201, 0x61010202, 0x01020100, 0x0c405951, 0x281d1d1d, 0x2d2f271d, 0x19090521, 0x3336012b, 0x17371732, 0x15161607, 0x07170714, 0x22230627,
0x37270727, 0x37343526, 0x18003727, 0x0809eb9d, 0x65012366, 0x658d8c69, 0x22ab71af, 0x71ad4a26, 0x8e8b65b1, 0xaf71af68, 0x71ad4446, 0x7f7f2d01,
0x7d7d7878, 0x42130478, 0xad72af42, 0x8a467e33, 0xad72ab71, 0x72af4040, 0x8b8e6baf, 0xfe72b06b, 0x848391fc, 0x83849191, 0x00030091, 0x04cbfe81,
0x00a3063a, 0x00290021, 0x402d002f, 0x292a2f2a, 0x17181f22, 0x070e1415, 0x0021f382, 0x2aa7820f, 0x0102004c, 0x00008502, 0x7f860001, 0x1e2305d8,
0x83031f11, 0x161626ae, 0x27260717, 0x05275b11, 0x23110729, 0x27262611, 0x82171637, 0x06814106, 0x83060321, 0x166208b4, 0x35361317, 0x02272634,
0x45bd72b4, 0xb693726f, 0x7db059d0, 0x4dd6858b, 0xbbb08b6d, 0x77a855b9, 0x5f518b8b, 0x8b454c1f, 0x056955be, 0x3f560b77, 0xfe126973, 0xa8c53b49,
0x1073aa64, 0x1e01dcfe, 0x794c6809, 0x13020e8b, 0x5789ba3e, 0x010c6496, 0x0e38fe2c, 0x452e4d5e, 0x37fd1d3b, 0x7252c327, 0x0082002c, 0xf6000428,
0xb8036afe, 0xd5826205, 0x1500063c, 0x51002300, 0x01054e40, 0x01200002, 0x010f0506, 0x4c030603, 0x03021011, 0x12820749, 0x02040131, 0x01086801,
0x06050004, 0x09690504, 0x82000601, 0x8265201e, 0x38350844, 0x16164e00, 0x04040707, 0x22162316, 0x15071a1c, 0x0c0e1407, 0x06040604, 0x090a1011,
0x33012b18, 0x03252101, 0x15160403, 0x23060614, 0x07112722, 0x33363411, 0x21dd8312, 0xeb822223, 0x16157c08, 0x09023316, 0xfd13019c, 0xad0b023e,
0x8c4101af, 0x5e53733a, 0x838b8a3a, 0x42434041, 0x17163832, 0x6205243f, 0x0270f6fc, 0xb6d5fd2b, 0x9c60a5b2, 0xdefe365b, 0xa359020e, 0x71c1fdac,
0x346f7c77, 0x1aa7586a, 0x0001001c, 0x04e7ff46, 0x007b0546, 0x40550028, 0x00010252, 0x0101030b, 0x05011600, 0x06011704, 0x0a4c0405, 0x01090101,
0x02010302, 0x03010867, 0x05040107, 0x82670403, 0x610b32be, 0x0b0b010c, 0x05004d3e, 0x00610605, 0x063f0606, 0x2c15824e, 0x24270028, 0x11212223,
0x11222512, 0x25058211, 0x2b1f090d, 0x39431600, 0x21072406, 0x82152107, 0x05fe4503, 0xd6831520, 0x23270025, 0x82373337, 0x3e5f0803, 0x69033302,
0x365a4796, 0xa2823e6d, 0x1fde011c, 0xa80133fe, 0x187ffe1f, 0x90558c98, 0x56933a35, 0x24fffed3, 0x028d1eba, 0x1ea01ead, 0x0580d28f, 0x862f2e7b,
0xafa02024, 0xb57eb27c, 0xba2c38a6, 0x04012821, 0x7cb27ef6, 0x0073de9d, 0xfeca0001, 0x05e40357, 0x001f00dd, 0x020f405b, 0x83050001, 0x4c0223d3,
0x58191112, 0x1820089c, 0x0527ad82, 0x05010661, 0x824d3a05, 0x01022cdc, 0x0101045f, 0x4e023b01, 0x8216401b, 0x00002515, 0x69000501, 0x5922188c,
0x33820e40, 0x1e001f2a, 0x13111b11, 0x1b090724, 0x2323d985, 0x82150622, 0x112322d5, 0x05f14614, 0x11353e08, 0x35333523, 0x33363634, 0x42742e03,
0x555e583d, 0x17020148, 0x798845eb, 0x2b534e44, 0x974ea7a7, 0x1bdd056a, 0x4928881e, 0xfc928d50, 0x71be9dcb, 0x47258a34, 0x55036d7d, 0x8a5a8c92,
0x3162824f, 0x75000100, 0x61040000, 0x1c006205, 0x2c402f00, 0x535d161c, 0x07267d06, 0x0102112e, 0x01004c01, 0x004d3801, 0x60000202, 0x39333282,
0x19294e00, 0x19090322, 0x0606012b, 0x07112123, 0x82353727, 0x33112603, 0x05172511, 0x08038215, 0x32331143, 0x04373636, 0xcefc4361, 0x336ec2fe,
0xa1376aa1, 0x353f01c7, 0x3d018cfe, 0x808efe35, 0x2b67895e, 0xaba85301, 0x70339301, 0x7431944b, 0xfe26024a, 0xae729436, 0xab729494, 0x682ebbfe,
0x00020059, 0x20938274, 0x08938266, 0x1f001624, 0x3f404200, 0x0b060109, 0x00050208, 0x04690506, 0x01030001, 0x01000201, 0x0a010c67, 0x005f070a,
0x9a840707, 0x4e023931, 0x00001717, 0x1e171f17, 0x1600181a, 0x54211500, 0x0d260608, 0x012b1e09, 0x01822115, 0x23352324, 0x03833335, 0x20211128,
0x04141504, 0xa9830323, 0x2634352b, 0x01cd0123, 0xc6acfe54, 0x08008293, 0x0142012a, 0xfe1a0103, 0x8d83f8e2, 0x92a6a496, 0x7d92fa01, 0x927debeb,
0xd5d80290, 0x02d8e5d6, 0x87c0fdd0, 0x008491a4, 0xb5000100, 0x2b20a382, 0x1d30a382, 0x46404900, 0x0008011b, 0x05040109, 0x08004c02, 0x44081b82,
0x03007208, 0x00860304, 0x08000009, 0x07670009, 0x01060101, 0x02010502, 0x04050067, 0x00570504, 0x5f040505, 0x04050400, 0x221c1d4f, 0x11211211,
0x10121114, 0x2b1f060a, 0x17162101, 0x06231533, 0x23010706, 0x08ad8201, 0x37363243, 0x26213521, 0x27232326, 0x04213523, 0x77c3fe2b, 0x0698a422,
0x81019698, 0xe8a7feea, 0x07978de1, 0x0102f4fd, 0xc1869718, 0x76030a01, 0x8335e604, 0x2cb08f7c, 0x2702b9fd, 0x7c827495, 0x7e0d5257, 0x20ab8300,
0x36ab828a, 0x007b0526, 0x403e0021, 0x0201023b, 0x01140001, 0x4c020304, 0x82010106, 0x83032095, 0x00002c98, 0x01086107, 0x4d3e0707, 0x83030300,
0x3904239d, 0x3c824e04, 0x20002124, 0xa0821611, 0x09241326, 0x002b1d09, 0x22065f43, 0x82211515, 0x06142a01, 0x21072107, 0x35023e35, 0x08884235,
0x82a43408, 0x486f307f, 0x96016b67, 0x48346afe, 0xfc17a102, 0x13474b8e, 0xb15ea1a1, 0xb17b0579, 0x76373c5f, 0xe97de973, 0x9f28825d, 0x5c491897,
0xf77dee4d, 0x8361ab6c, 0x824520a3, 0x056b34a3, 0x00170062, 0x16364039, 0x01000101, 0x0101094c, 0x82020108, 0x0768249e, 0x44060301, 0x0a2b050f,
0x38000001, 0x0505004d, 0x7f4e0539, 0x0b270c19, 0x012b1f09, 0x84330133, 0x11212599, 0x35211123, 0x11820183, 0x33012d08, 0xfecaa103, 0xe7fee882,
0xe7fe1901, 0x01ebfec8, 0xe2ebfe15, 0x01d584fe, 0x62050840, 0xa67d53fd, 0x01eafe7c, 0x7da67c16, 0x92fdad02, 0x4d358b83, 0x3b04cbfe, 0x3200a306,
0x38403b00, 0x04021d20, 0x090a2403, 0x20068203, 0x258e8201, 0x0401234c, 0x26834b01, 0x03008625, 0x18020400, 0x300a5871, 0x284e0120, 0x251e1f26,
0x07051411, 0x06002b19, 0x083e4606, 0x3233162a, 0x34353636, 0x2e272626, 0x2107c847, 0xe7471611, 0x82142008, 0x1e5e080a, 0x3b041502, 0xaa77a858,
0x7155e890, 0x5377bc4b, 0x7e34538b, 0x66c19574, 0xaa75b565, 0x6e48a565, 0x735aa947, 0x848f3e95, 0x0168ad7f, 0x156ea51a, 0x1d01d9fe, 0x7f525d04,
0x6d364b46, 0x4659424e, 0x96682c22, 0x609c626a, 0xfe2a010a, 0x404d0dd1, 0x633d3f7c, 0x44503a5d, 0xa3602527, 0x0082007c, 0x6801012e, 0x84035f00,
0x07007d04, 0x21402400, 0x0328bc82, 0x01020085, 0x00008602, 0x0de26918, 0x1111113e, 0x1a060410, 0x1521012b, 0x11231121, 0x010c0233, 0xa488fe78,
0xa1be02a4, 0x1e0442fe, 0x3b824a82, 0x01883908, 0x0429040d, 0x000f0058, 0x002f001f, 0x0237403a, 0x03070001, 0x04010306, 0x00690100, 0x04050504,
0x04040059, 0x01086105, 0x51050405, 0x10102020, 0x2f200000, 0x26282e20, 0x0b7a6e18, 0x2b170623, 0xcf411812, 0x8e20200e, 0x0f726a0f, 0x2640ee2d,
0x28274026, 0x41252541, 0x8a5f0228, 0x96fe210c, 0x03290c8a, 0x2641263c, 0x26264227, 0x1d441842, 0x210b8707, 0x198bd1fd, 0x42180020, 0x00230a9b,
0x82f00302, 0x01013ddc, 0x03090114, 0x00d903c8, 0x40370016, 0x00010634, 0x00040500, 0x04006705, 0x04020300, 0x3311787b, 0x13150001, 0x0e0f1011,
0x07090a0c, 0x16011600, 0x2b160607, 0x084e7918, 0x21352122, 0x0808c543, 0x02352128, 0x60a86759, 0xfe67a860, 0x434501bb, 0xfafd1668, 0x69150702,
0x03bbfe44, 0x67a45dd9, 0x915da467, 0x40913f4f, 0x9383914f, 0xa8fdff2a, 0xe808b102, 0xe2040200, 0x00269383, 0x046d0121, 0x5f18038f, 0x04220ed3,
0x5f18fb8f, 0x29080fd3, 0x0458ff8f, 0x00950569, 0x0013000f, 0x01324035, 0x074a0401, 0x07490301, 0x04000401, 0x03010685, 0x05860301, 0x01010001,
0x06825700, 0x5f010023, 0x220a8202, 0x83114f01, 0x11133700, 0x1e060812, 0x0317012b, 0x03231533, 0x11231327, 0x11331123, 0x05820133, 0xf6032a08,
0xca9fbc73, 0x87b672be, 0xfdb2a3a3, 0x05a3a3ff, 0x45fd1c95, 0x1d3bfda1, 0x42fea802, 0x41fe1e04, 0x1e04a1fd, 0x00010000, 0x207f82a0, 0x237f844c,
0x0f2e4031, 0x05207d82, 0x00207d82, 0x00207c83, 0x132a7b99, 0x06061011, 0x21012b1c, 0x77882115, 0x17132134, 0x7601d602, 0x73be5ffe, 0xa4a4edb7,
0x73c31801, 0x718bbe02, 0x1cd7022e, 0x2b000200, 0xb0045f00, 0x03007d04, 0x3828f182, 0x01063540, 0x85010701, 0x0431da82, 0x01088600, 0x03020007,
0x00670207, 0x03040403, 0x06d84457, 0x4f040322, 0x2907994f, 0x11121111, 0x1d060910, 0xe282372b, 0x39440520, 0x82152005, 0xce152e0a, 0xe203a3a3,
0x93026dfd, 0xa3a36dfd, 0x23de825f, 0xfda1e1a1, 0xdf820682, 0xa5002c2c, 0x3d044c04, 0x37001800, 0xa8183440, 0x45710925, 0x38698d08, 0x15170001,
0x0a0c0d0f, 0x04050607, 0x18011800, 0x2b160607, 0x06062201, 0x22e98207, 0x8233021e, 0x42222005, 0x2c0806ee, 0xff011521, 0x10577c46, 0x8bfc7603,
0x467c5610, 0xb3fd4d02, 0x7d7dd77f, 0x4d027fd7, 0x6f40ac03, 0x6f439144, 0xd37a9140, 0x7ad37f7f, 0x24878291, 0x030901e8, 0x07a3429c, 0x152587a2,
0x0a0b0d13, 0x20868208, 0x08a34203, 0x86842220, 0x22098072, 0x82363634, 0x57022f91, 0x02156944, 0x16fafd07, 0x45014368, 0xb142bbfe, 0x45012905,
0x404f4803, 0x914f3f91, 0x3006a942, 0x01ffff00, 0x030fff66, 0x01860048, 0x00840607, 0x9f6b1800, 0x03662612, 0x04480307, 0x261f857e, 0x09007602,
0x180200b1, 0x2908c762, 0xc8000300, 0xe8039d00, 0x09824304, 0x0b000726, 0x29402c00, 0x260f8970, 0x05050400, 0x6e005704, 0x112008ba, 0x10260083,
0x2b1c0606, 0xae412113, 0x24078206, 0xfc2003c8, 0x690387e0, 0x498306dd, 0x008e0027, 0x05c00300, 0x395b8262, 0x002f4032, 0x05000001, 0x06670001,
0x04000501, 0x67040503, 0x02020300, 0x48195703, 0x7e180b58, 0x0727081a, 0x012b1b06, 0x72272111, 0x2208064f, 0xfdf90235, 0x230317bb, 0x6b02cefc,
0x0b0306fe, 0xfa9cbb01, 0xd3019b9e, 0x0002009d, 0x045f008f, 0x827d044c, 0x000b2cc3, 0x05254028, 0x01020101, 0x82010485, 0x7b86200f, 0x112012cf,
0x2305e842, 0x33112325, 0x29075d45, 0xa3a33201, 0xcb014f01, 0x6a4235fe, 0x45412005, 0x02260764, 0x00001f00, 0xbf829204, 0x06000326, 0x2e403100,
0x0223bd82, 0x82004c01, 0x03862174, 0x02226682, 0x06825701, 0x5f020123, 0x23728204, 0x04044f02, 0x06222d82, 0x79820604, 0x05110338, 0x012b1706,
0x17012301, 0x92040101, 0xfefa43fe, 0x3d01f844, 0x455b3c01, 0xfba33105, 0x001b04e5, 0x8e000100, 0xa90255fe, 0x0f00d007, 0x0729b983, 0x06020101,
0x02010001, 0x05194d4c, 0x21820120, 0x01005925, 0x82610001, 0x00320808, 0x22251351, 0x2b190603, 0x23061405, 0x37272622, 0x32331616, 0x33113536,
0x8d9da902, 0x3b426649, 0x3f2b4d2f, 0x9185ba40, 0x8a1e1995, 0x43471016, 0x3a825608, 0x18fcef30, 0xa9062204, 0x2f000e00, 0x01022c40, 0x1b4b0200,
0x18002005, 0x2409f89e, 0x02010359, 0x2d618302, 0x00510002, 0x000e0000, 0x0424130d, 0xef4a1806, 0x23113f09, 0x33363411, 0x41726f03, 0x4c595b3b,
0x93a1ba3e, 0x1d1aa906, 0x4d4c288a, 0x5e09a1f6, 0x34829c97, 0xff010133, 0xa103f0fe, 0x0900e808, 0x1b401e00, 0x02000200, 0x22b28285, 0x83590001,
0x8361201c, 0x1351236d, 0xbd831211, 0x16142526, 0x26221533, 0xb12db783, 0xd8ca747c, 0x45551cb2, 0x08b19092, 0x822982b7, 0x45d62027, 0x162e0673,
0x27402a00, 0x02010104, 0x03004c01, 0x4d830302, 0x4e860021, 0x14290fe7, 0x04191411, 0x012b1a06, 0x06ca7514, 0x2626a982, 0x32352326, 0x5f843636,
0x5a2a2408, 0x28584e4a, 0x7b802eb2, 0xb22e807b, 0x7259d403, 0x3d0d0d40, 0x04fc5e70, 0x594bf603, 0x582d9a2d, 0x840f054b, 0xff012777, 0xa203a8fd,
0xbf868806, 0x01000122, 0x00206c82, 0x0c047f18, 0x10131322, 0x013dbf83, 0x11150622, 0x36341323, 0x74a20333, 0xd801b27d, 0x46f605ca, 0x074cf854,
0xff90b19f, 0x464783ff, 0x012e0b33, 0x0417ffff, 0x00e80805, 0x401e0005, 0xce82001b, 0x02008522, 0x57255782, 0x00020200, 0x2308825f, 0x11114f00,
0x053b5784, 0x11331121, 0xfd050421, 0x5401b2fa, 0xf6d109e9, 0x000000cc, 0xfd000201, 0x180504a8, 0x08232b42, 0x11230121, 0x02211521, 0x0502b1b1,
0xa8fdacfe, 0x009fb908, 0x01ffff00, 0x0385ff68, 0x01070048, 0x44830607, 0x4518071f, 0x68260c63, 0x48037d03, 0x1f85ff03, 0x0f8f4118, 0xaf480020,
0x000b2e09, 0x00314034, 0x85040504, 0x03020300, 0x07344d86, 0x24190857, 0x06071111, 0x06f74b1b, 0x23152129, 0x03153311, 0x4888fe84, 0x032105c5,
0x07cc457f, 0x3408e382, 0xff2b0003, 0x05b00458, 0x00130095, 0x001b0017, 0x124c404f, 0x4a050211, 0x04020708, 0x05010949, 0x08850506, 0x04020401,
0x02070c86, 0x00010b06, 0x67000601, 0x057b430a, 0x01200682, 0x5e096b6f, 0x736f0732, 0x060d210a, 0x2308736f, 0x23132703, 0x21248684, 0x01031713,
0x01398f82, 0x04213733, 0x3cecfeb0, 0x84fe5001, 0x9d82728a, 0x3001a3a3, 0xfd88738f, 0x24088207, 0xfe3cc94f, 0x33a685fb, 0xe7011dfc, 0xfe1e04fd,
0xfe1c1602, 0x04e0fc06, 0xe180fd1e, 0x2208b682, 0x2c000200, 0x4c040eff, 0x1d000d06, 0x4a002700, 0x01274740, 0x01100001, 0x4c020102, 0x07021a1b,
0x820a0b4a, 0x010823bf, 0xb2820907, 0x69000722, 0x077b4418, 0x03010622, 0x260f656f, 0x28131e20, 0x82111311, 0x06824c00, 0x53210321, 0x072605a8,
0x35233727, 0xaf4a3721, 0x33332105, 0x3323b882, 0x50222305, 0x480806fb, 0xdbfe4c04, 0xfed601b1, 0x1c021e01, 0xa444bcfd, 0x1f01f63b, 0x62ab6b21,
0xa77fd77d, 0xfc619f6c, 0x527e31fe, 0x7443528d, 0xfd010447, 0x8f6b918a, 0x8fd121f2, 0xbf801474, 0x7ad37f70, 0xfe207b01, 0x915791a5, 0x5a854a53,
0x22cc820d, 0x82640002, 0x848420cb, 0x002630cb, 0x154d4050, 0x26070601, 0x02060501, 0x8213144c, 0x050638cb, 0x00490102, 0x05060007, 0x09670607,
0x080a0501, 0x05000402, 0x48036904, 0x068205c6, 0x2708c648, 0x1e200000, 0x1c001d00, 0x1120cd82, 0x0b25d483, 0x252b1e06, 0x85d08307, 0x5c2120cc,
0x17290631, 0x15021e03, 0x23060614, 0x06974b27, 0x4d022727, 0xfd1d021e, 0x32c982bb, 0x1e1e01f5, 0x6601c3fe, 0x02e7fdb3, 0x689f6c42, 0x82508f5c,
0x3b3b21d5, 0x6c22cf82, 0xca85fa56, 0x02916b24, 0xc7839176, 0x7f1f8d24, 0xd38265b1, 0x2808ce83, 0x0024a060, 0xff3a0003, 0x0584043f, 0x001b00ab,
0x00270020, 0x204a404d, 0x01050401, 0x021a1b4c, 0x090a4a06, 0x00490002, 0x2cbc8206, 0x07670506, 0x01090401, 0x03040203, 0x24d08267, 0x02000002,
0x33078357, 0x015f0002, 0x00020001, 0x2621224f, 0x22272125, 0x21211427, 0x1321cd82, 0x20ca8326, 0x05945201, 0x03212328, 0x35231327, 0xce823733,
0x82233721, 0x17323304, 0x33011713, 0x03272626, 0x37363632, 0xa1030721, 0xb3827b68, 0xf4fe2808, 0x7fa996d5, 0x9afe90d6, 0x0191bd01, 0x4d02b3fd,
0x92df262d, 0x0ef96cfe, 0x46a23247, 0xfe10567c, 0xfd038fb1, 0x827ed23c, 0x9afe39c0, 0x911b014b, 0x91f391f2, 0x49750107, 0x653b57fd, 0x40bcfd21,
0x00f2436f, 0x2c20d382, 0x7520d382, 0x2220d384, 0x4e39d382, 0x01274b40, 0x01120304, 0x4c020405, 0x4a00011b, 0x05021011, 0x00010649, 0x05994f07,
0xd982c683, 0x03020423, 0x0fbf4767, 0x241c1c29, 0x1c221c23, 0x842a2322, 0x841120d5, 0x330329d4, 0x21072315, 0x33072115, 0x22240482, 0x13270327,
0x08071249, 0x37011323, 0x06062223, 0x16231707, 0x75041716, 0x90db85ae, 0x3efe6b01, 0x4d02048f, 0x2d29b3fd, 0x66d196d9, 0x33e78279, 0xfedb0901,
0x46b3913e, 0xf410577c, 0x30450df3, 0xdbfe6205, 0xf22ac882, 0x92fe0891, 0x3c5e014b, 0xe0827dd0, 0xfd6e013d, 0x6f40f30e, 0x64399144, 0x01000021,
0x58ffc800, 0x9505e803, 0x4b001b00, 0x721a4840, 0x9c7208c7, 0x13997227, 0x721f0621, 0x23230e99, 0x72372135, 0x2308069d, 0x03031713, 0x3dfefee8,
0x96fe3f01, 0xfea6013c, 0x4f73572e, 0x3cff00d3, 0x6701c5fe, 0x015dfe3c, 0x53735bce, 0x2406ba48, 0x011dbbfe, 0x05987228, 0xfe1c5226, 0x000200ca,
0x38077f41, 0x00200017, 0x20364039, 0x0e010201, 0x02020301, 0x0001174c, 0x020c0d4a, 0x06435803, 0x01000222, 0x10444418, 0x212a222f, 0x06111121,
0x012b1c06, 0x23153303, 0x12644101, 0x4106d543, 0xfe210561, 0x125d418a, 0x52b3cf2d, 0x404b528d, 0xdbfe6205, 0x418afd91, 0xfe280e57, 0x53915701,
0x002c8c4f, 0x02200082, 0x8308ff42, 0x403e2cab, 0x02011f3b, 0x174c0103, 0x42040216, 0x042006fd, 0x2705444d, 0x02020506, 0x57020000, 0xf3420783,
0x18192508, 0x20192018, 0x1325af82, 0x1b060726, 0x0eee422b, 0xea420120, 0x36322708, 0x26343536, 0xe7420127, 0x7801210d, 0x2709e342, 0x528d523c,
0xa8fe414e, 0x280dde42, 0x07917602, 0xfb497501, 0x26b082d4, 0xfd2b8e50, 0x4c0200bc, 0x132608af, 0x49001700, 0xfd454640, 0x05002e09, 0x00850506,
0x86040204, 0x0602070a, 0x05fb4509, 0xfb450820, 0x45068205, 0xf0580afb, 0x13112509, 0x0b111111, 0x3c17f745, 0x04213733, 0x3c88fe4c, 0x20feb401,
0xae82728a, 0x4101a4a4, 0xfe88738f, 0xfe3cda45, 0x12ef45ea, 0xe17efe23, 0x3b008200, 0x00780001, 0x04380491, 0x000b004e, 0x00234026, 0x00030100,
0x01010557, 0x03020104, 0x2505ba51, 0x03005f03, 0xc44d0300, 0x06102905, 0x012b1c09, 0x15211133, 0x35060451, 0x01aeff01, 0xae75fe8b, 0x870179fe,
0x6ffe4e04, 0x0172fe9e, 0x57849e8e, 0x1d02dc24, 0xd763d403, 0x0f055008, 0x06021025, 0x82132b18, 0x02dc2747, 0x0208fdf8, 0x3384a8c5, 0xff00f126,
0xcf03bf03, 0x06378b82, 0x010105b3, 0x37012b32, 0x07170717, 0x37270727, 0x58023727, 0x87f374f3, 0xda022302, 0x0c8776f5, 0x3b827620, 0x00032a08,
0x035600dc, 0x008d04d4, 0x0013000f, 0x403c0023, 0x01010639, 0x01020000, 0x02006900, 0x02050300, 0x01076703, 0x05040405, 0x2b068259, 0x00610405,
0x51040504, 0x00001414, 0x2008c462, 0x223a8210, 0x1808260e, 0x20121c54, 0x62a78201, 0x02270fc2, 0x2626417f, 0x84272741, 0x84fe2105, 0x0121c583,
0x2a128aa3, 0x40268d04, 0x25412726, 0x82274125, 0x34fe2308, 0xc362b19f, 0xc800210d, 0x21085f7b, 0x4e180007, 0x624309ab, 0x11112610, 0x09041011,
0x08934c1a, 0x2d098f4c, 0xa2e0a280, 0xc8000100, 0xe8033200, 0xbf77aa04, 0x0b53423b, 0x44233721, 0x133a0557, 0xe8030717, 0x0185f6fe, 0xb011fe8f,
0x01a68e69, 0x74fe8606, 0x68b1ec01, 0x7883038f, 0x3cd6fe23, 0x237f82ee, 0xf2382a01, 0xaa248382, 0x08043c00, 0x063d8382, 0x04b30600, 0x2b320101,
0x15013713, 0xaa012701, 0xfd03035b, 0xb9026305, 0xfe8f1b04, 0x05356824, 0x2f8e0020, 0x2f840520, 0x17013908, 0x01070101, 0x5b0303aa, 0xb90247fd,
0x0205fd63, 0x8fdd01cd, 0x56fe57fe, 0x00dd018c, 0x00020000, 0x030000cb, 0x006704e3, 0x000a0006, 0x061e4021, 0x02030405, 0x4a000601, 0x23106052,
0x18060217, 0x20088087, 0x21152101, 0xce024acb, 0x024a32fd, 0x02a2fd7f, 0x0309fdf7, 0xbbfe9bcc, 0x97c9fec3, 0xe3fd0101, 0x8e5a82a3, 0x4022225b,
0x215b851f, 0x5c980700, 0x0523ad82, 0x83110107, 0xcf02295c, 0x0281fd49, 0x31fd497f, 0x222b5c84, 0xfe974501, 0x019cfcf0, 0x8344fe37, 0x0002225c,
0x2fb782dc, 0x003a04d4, 0x000f000b, 0x22b04b55, 0x1f405850, 0x230a6043, 0x5f000303, 0x3b2f8482, 0x0606004d, 0x07005f07, 0x4e073907, 0x431d401b,
0x06220d82, 0xf8820300, 0x59231f88, 0x85110b40, 0x08102300, 0x90431e09, 0x2993820d, 0x01b2ff01, 0xb2ddfe23, 0x0683ddfe, 0xfdf80230, 0xfe3a0408,
0xd9fe9dd3, 0xfd9d2701, 0xef82a194, 0x01b22608, 0x03fe0332, 0x001900b5, 0x405b0033, 0x02080958, 0x15160300, 0x23020102, 0x07040222, 0x05022f30,
0x084c0406, 0x050a6301, 0x9e826920, 0x0007012b, 0x04006901, 0x59040506, 0x230b8209, 0x06070506, 0x04350e82, 0x05006105, 0x1a510504, 0x1a00001a,
0x2d321a33, 0x2025272b, 0x2e55821e, 0x24252418, 0x2b19060a, 0x16171600, 0x5f323316, 0x80180852, 0x122009e9, 0x01321998, 0x22395afe, 0x3d2d1830,
0x83287d1c, 0x3a593d64, 0x0c852f23, 0x3e628524, 0x1987385a, 0x82638421, 0x3719890c, 0x2324b503, 0x32351616, 0x236b4f42, 0x35151622, 0x6e4e4231,
0x222485fe, 0x0a821382, 0x08826c20, 0x1c831520, 0x006d2108, 0x01500001, 0x036004c2, 0x001c002b, 0x6406b13c, 0x0a314044, 0x03020209, 0x01021718,
0x044c0200, 0x0022f383, 0xf3820203, 0xe34d0120, 0x0000320c, 0x1b001c00, 0x05252525, 0xb12b1909, 0x00440006, 0x21c18d16, 0xdc862726, 0x33023e2e,
0x3f56ce01, 0x243e2d2a, 0x812b5e3a, 0x09234418, 0x5b3c2908, 0x5426812c, 0x2b03537d, 0x2a253021, 0x404f5828, 0x2d209177, 0x562a2b26, 0x724c3f51,
0x0100004b, 0x0301dc00, 0xc102d403, 0x2609534d, 0x02000086, 0x82570002, 0x5f022a7d, 0x02000200, 0x1011114f, 0x31818203, 0x23112113, 0x02dc2111,
0xb4fdacf8, 0x42fec102, 0x22821f01, 0x8800012c, 0x28041e04, 0x06009006, 0xdb842100, 0x18041621, 0x2509274b, 0x01010102, 0x3e851276, 0x0139c083,
0x01230133, 0x02022301, 0xcb7a01ac, 0xfbfef9fe, 0xfd9006c9, 0xfece018e, 0x084a8232, 0xff030030, 0x04eb00f2, 0x000304bd, 0x00250017, 0x40480033,
0x14202945, 0x05040408, 0x03084c01, 0x070a0202, 0x04050309, 0x06690502, 0x00000401, 0x06825904, 0x61000422, 0x04346d82, 0x26265100, 0x00001818,
0x32263326, 0x25182d2f, 0x1b1d2418, 0x162a4482, 0x0b242424, 0x002b1906, 0xe54f1516, 0x064c0805, 0x26222306, 0x33363435, 0x36171632, 0x15043336,
0x32331614, 0x27373636, 0x0423022e, 0x17070606, 0x3233021e, 0x23263435, 0x94942904, 0x3894699c, 0xa16b8f38, 0x699c9393, 0x8d3a3d90, 0x441efd6a,
0x354d3446, 0x311e0921, 0x1a02334c, 0x1d300983, 0x8a334c32, 0x03044644, 0xd8b3b3da, 0x84777f7c, 0x46080783, 0x8477817a, 0x7b7cf794, 0x14576d48,
0x023c5141, 0x13576c48, 0xf73d543f, 0x00007a7d, 0xfe310003, 0x058004f9, 0x0019001f, 0x002d0023, 0x2b434046, 0x0420212a, 0x010d0203, 0x4c020300,
0x01021819, 0x020b0c4a, 0x47004900, 0x6923060f, 0x82030105, 0x82592037, 0x00032206, 0x34098261, 0x24245100, 0x2d241a1a, 0x231a2c24, 0x272b221a,
0x2b180606, 0x06fe4b01, 0x07272223, 0x07e14c27, 0x37173226, 0x06060017, 0x1726e382, 0x12232613, 0xd8823636, 0x03275908, 0x4e033316, 0x944c8b5b,
0x292f97fe, 0x5b509b4f, 0xfc944d8c, 0x4e302d96, 0xa056fe9b, 0xee515d5a, 0xa25f1c21, 0xeb515c5f, 0xfd031a1e, 0x6bc0962d, 0x0794fd96, 0x2df92ef6,
0x966bc196, 0xf00894fe, 0x6badfe2d, 0xba706db7, 0x05e70233, 0xb76ce1fc, 0x33b96f6d, 0x00051afd, 0x012d0082, 0x47007500, 0x1e043b04, 0x19000600,
0x14074240, 0x2b190622, 0x32060342, 0x01e2e601, 0xcbfeae73, 0x04adcafe, 0x0329fc1e, 0x8fb8fc48, 0x401f2643, 0x0001051c, 0x05576d01, 0x85010022,
0x76201f82, 0x8308556d, 0x230121f4, 0x012c4c82, 0x8dfe3b04, 0xad8ffee2, 0x35013601, 0xd7244a84, 0x4803b8fc, 0x852d8f84, 0x2b044800, 0x15008b04,
0x24402700, 0x284b8202, 0x01048600, 0x03010103, 0x23068259, 0x00610103, 0x51200c82, 0x15262982, 0x24141400, 0x9d820514, 0x16160024, 0xf8501115,
0x06222205, 0x3a0a8406, 0x02333636, 0xa27dd7d7, 0x53538c52, 0x7da2528c, 0x8b047fd7, 0xfd7fd67e, 0x82700290, 0x8315820f, 0xd67f2809, 0x0001007e,
0x82180085, 0x005b266f, 0x40260015, 0x206f8423, 0x22628285, 0x82590103, 0x610321c5, 0x01217382, 0x2a6e8d03, 0x35262624, 0x14113311, 0x51331616,
0x11260566, 0x23060614, 0x6e8cd901, 0x6d821820, 0xfd700223, 0x836d8590, 0x206d8309, 0x05ef5200, 0x06220438, 0x001a00a9, 0x02344037, 0x10030001,
0x00020203, 0x0201010f, 0x6d824c03, 0x02000025, 0x51690003, 0xef820fe7, 0x19001a25, 0x85242525, 0x071724ef, 0x82222326, 0x052143e9, 0x20070753,
0x0aa35234, 0x520a1053, 0xfa2109ad, 0x081a5304, 0x97fc0523, 0x2154829c, 0xdf53ffff, 0x02022208, 0x33108245, 0xfe360001, 0x057a0455, 0x000b0062,
0x09204023, 0x04040508, 0x0c7f8318, 0x0133ac82, 0x134f0100, 0x04101113, 0x132b1a06, 0x11231521, 0x82211107, 0x36233103, 0xbba54404, 0xa7bd80fe,
0xf99d6205, 0x700617a7, 0xf3830484, 0x0000c124, 0x5382ed03, 0x33000c2c, 0x050b3040, 0x01020304, 0x4982010a, 0x010c4c25, 0x554b0101, 0x5d180970,
0x11200d8d, 0x29086389, 0x01150121, 0x35211521, 0x03c10101, 0x01b2fd2c, 0x027ffe81, 0x01d4fc4e, 0x0547feb9, 0x30fea062, 0xa12bfe7c, 0x021002a0,
0xc3840012, 0x0000282f, 0xc7067705, 0x26000800, 0x07082340, 0x216f8206, 0x665a4c01, 0x03102416, 0x832b1906, 0x23013c5c, 0x03013701, 0xfef9017e,
0xd949fe8f, 0x01aab2fe, 0x9fc7060b, 0x9203d8f9, 0x85f8fc39, 0xaa240857, 0x070455fe, 0x1d001e04, 0x2a402d00, 0x0202061b, 0x02020c01, 0x4c020200,
0x03031011, 0x01034900, 0x4d3b0101, 0x00210f82, 0x3c2f8261, 0x134e003f, 0x04281824, 0x012b1a09, 0x26071714, 0x06062726, 0x27262223, 0x11151616,
0x08404207, 0x11373708, 0x33d40333, 0x051a0eb3, 0x4c4e952e, 0x0e0d2757, 0x4716c0bd, 0x30825249, 0x9f5601c0, 0x631a18b7, 0x2b5b4c2a, 0x285b3f38,
0x0517e3fe, 0x74b0fdc9, 0x44544a86, 0x6082fc02, 0xa600023f, 0x0904e7ff, 0x16007f05, 0x33002500, 0x13223040, 0x01030202, 0x0101164c, 0x0401004a,
0xc9921801, 0x17172914, 0x24172517, 0x0527262c, 0x0424f683, 0x14111204, 0x262f9684, 0x36363435, 0x17163233, 0x12270026, 0x42150606, 0x4d0805de,
0x26263537, 0x01420123, 0x92350100, 0x7786c66a, 0xae6473c3, 0x32925c6a, 0xfee3fe11, 0x393963ee, 0x7f774669, 0x4e7b3c01, 0xd8437f05, 0xfdfea8fe,
0x6c8ef89c, 0xca8189cc, 0xce465370, 0xfd431701, 0x5c8242dc, 0xc24a8a5c, 0x4c5533ba, 0x1b540100, 0x00032908, 0x000e4011, 0x85000100, 0x76321482,
0x06021011, 0x33012b18, 0x00022311, 0xe808b2b1, 0x1a82c0f4, 0xfeff0132, 0x086004e2, 0x000b00e8, 0x050d4010, 0x49000204, 0x2b08f282, 0x06011a76,
0x14012b17, 0x07171612, 0x35020226, 0xb1023311, 0x689ab75e, 0xb273dbab, 0xfec5bc02, 0x688df7d7, 0x0118018d, 0x2c06dd58, 0x22063b54, 0x85960660,
0x06072443, 0x834a0002, 0x84102043, 0x73232043, 0x15330876, 0x73b1b102, 0x9968abda, 0xa8fd5eb8, 0x01dd1405, 0x82180158, 0xfef62346, 0xb38cc6d7,
0x14401722, 0x00269882, 0x01010285, 0x48827601, 0x03000324, 0x8e830311, 0x1333112a, 0x01b1ff01, 0x400ba8fd, 0x0025bb84, 0x02e2fe50, 0x83bb87b1,
0x85bb8477, 0x11333d77, 0x07020214, 0x12363627, 0xb2ff0135, 0x68abdb73, 0x085eb79a, 0xddd4f9e8, 0xe8fea8fe, 0xf72b7782, 0x00c52901, 0xfd500001,
0x87b002a8, 0x84ff83bb, 0x20ff85bb, 0x96591834, 0x23113107, 0xb85eff01, 0xdaab6899, 0xbc02b173, 0xf62901c6, 0x43084082, 0xa8fee8fe, 0x00ecfadd,
0xff200005, 0x059104d5, 0x00030089, 0x001f0013, 0x003b002f, 0x02514054, 0x01010301, 0x0002004c, 0x00020500, 0x05010a69, 0x0607010b, 0x09690705,
0x01030301, 0x01010861, 0x004d3e01, 0x093c6d18, 0x2030302d, 0x04141420, 0x303b3004, 0x5d34363a, 0x1433053d, 0x1a1e141f, 0x04130418, 0x090c2a12,
0x01372b17, 0x52120117, 0x4a5a0616, 0x65062007, 0x31780a54, 0x3f1b8b0f, 0x76850352, 0x84db78fc, 0x5a844545, 0x4647855a, 0x473c5a86, 0x453c3c47,
0x82023d44, 0x83464584, 0x2508148e, 0x466e051b, 0xa60592fa, 0x58589255, 0x93575793, 0x55925858, 0x5d5f627e, 0x63636369, 0x5678fd5e, 0x92585991,
0x1c825757, 0x7e56922b, 0x695c6161, 0x5e646263, 0x08008200, 0x24000727, 0x8d04e8ff, 0x0f007b05, 0x1f001b00, 0x3f002f00, 0x57004b00, 0x6f407200,
0x0302011d, 0x0200011e, 0x0005011f, 0x08174103, 0x070f2c08, 0x1105030e, 0x0903100b, 0x69090508, 0x0303010d, 0x010c6101, 0x4d3e0101, 0x0808010a,
0x01066104, 0x043f0404, 0x404c4c4e, 0x5e303040, 0x4c2d0559, 0x52564c57, 0x404b4050, 0x3044464a, 0xd949183f, 0x1b102509, 0x14161a10, 0x0e227882,
0x354e1226, 0x0b0d4112, 0x17010123, 0x0f414e01, 0x0f8c4318, 0x59410420, 0x8a20200a, 0x012a080b, 0x424276aa, 0x784d4b75, 0x4c794444, 0x44313045,
0x42303042, 0x3004c4fe, 0x01d1fb30, 0x42437654, 0x774d4c76, 0x4c784343, 0x288a7702, 0x90fd3c08, 0x44433232, 0x01442f2f, 0x443332e8, 0x41313141,
0x7c437b05, 0x427b5352, 0x51537b42, 0x566f447c, 0x5a5c4b4c, 0xfd574b4d, 0x7599017a, 0x440767fe, 0x7c53527b, 0x537c4242, 0x88447b52, 0x2728830b,
0x5d4b4b57, 0x574b4e5a, 0x5b310783, 0xff584a4d, 0xfe6901ff, 0x004703da, 0x060701bc, 0x147b5782, 0xd2026926, 0xb4044703, 0x7b571f85, 0x3e3f820f,
0x038700ad, 0x00a70401, 0x00070402, 0x00020000, 0x0400002c, 0x0092044c, 0x00190015, 0x5b2f4032, 0x063b1aa9, 0x05040501, 0x1616164f, 0x15191619,
0x22212621, 0x2b1b0607, 0x33363612, 0x56211521, 0x0a84063f, 0x35262631, 0x15213513, 0x7fd77d2c, 0xb3fd4d02, 0x82528d52, 0x2e098302, 0x387dd77f,
0x4503e703, 0x57917ad3, 0x82535391, 0xd37a2604, 0x8f3afd7f, 0x2087838f, 0x20878264, 0x23878684, 0x0029402c, 0x2205004d, 0x82010067, 0x00012117,
0x21107154, 0x81831411, 0x1c060631, 0x0606002b, 0x21352123, 0x35363632, 0x84262634, 0x1616230a, 0x94820115, 0x82840421, 0xb3fd2382, 0x82854d02,
0x82820983, 0x03e1fb27, 0x0219fce7, 0x21858d47, 0x034c8fc9, 0x4b3e2d0c, 0x585009b0, 0x02001640, 0x71020101, 0x220fe74e, 0x4615401b, 0x592114f9,
0x067759b5, 0x7d821320, 0xdc23112b, 0xb4fdf802, 0x9fc102ac, 0x05ef51fe, 0xfe0f0125, 0x5ab102f0, 0x002308cf, 0x48850002, 0x11200f94, 0x39060f5a,
0x06141133, 0x36323523, 0xb2ff0135, 0x7c74cad8, 0x49f7e808, 0x459290b1, 0x8b830055, 0xa8fdff24, 0x4782da03, 0x2a00162a, 0x01122740, 0x4c010102,
0x4d821682, 0x03020323, 0xf45d1886, 0x1114280f, 0x06041014, 0x49012b1a, 0x1520055f, 0x2209cf49, 0x83022e37, 0x5a2e205f, 0x283c05c9, 0x5a4b4e59,
0xfae8082a, 0x2d584bf1, 0x4b592d9a, 0xfc030afc, 0x0d3d705e, 0x5972400d, 0x00277682, 0xfd0e0101, 0x5ab102a8, 0x022109cf, 0x05234d01, 0x02211d83,
0x21ce8261, 0xcf5a5102, 0x16323a07, 0x11231315, 0x01232634, 0x01d8ca0e, 0x06747db2, 0xf8b19088, 0x54b40761, 0x36ff4546, 0x17ffab24, 0xf382b102,
0x24000525, 0x82032140, 0x850221f3, 0x3b122772, 0x11050005, 0x18060411, 0x2111012b, 0x02112135, 0x01fafdb1, 0xf6e80854, 0x34099d2f, 0x0021c384,
0x29c382ab, 0x006106b0, 0x40250005, 0x42820022, 0x4c838620, 0x57020122, 0x2005a967, 0x20598200, 0x8a29824f, 0x82232048, 0xb0022b4a, 0x06acfeb1,
0x0847f761, 0x1d829f1a, 0xa0243682, 0x4c045f00, 0x26317363, 0x08034401, 0x63a4f8fc, 0x01220b73, 0x7b602c00, 0x52152006, 0x21261b8d, 0x04222126,
0x71431a06, 0x146d4316, 0x42f00221, 0xb8820ce4, 0x2c000224, 0xb78257ff, 0x1500f63c, 0x49002100, 0x01174640, 0x4c010204, 0x05021c1d, 0x08030049,
0x03010001, 0xdd826700, 0x0104022b, 0x01076702, 0x04050504, 0x22068257, 0x435f0504, 0x013405fd, 0x1f202100, 0x191a1b1e, 0x0c121418, 0x0007090a,
0x09150115, 0x2106fb60, 0x72601415, 0x1701220f, 0x05a35907, 0x21352124, 0x0844ff01, 0xd77d350c, 0xfe4d027f, 0x0139913f, 0x6443fe68, 0x97fe3996,
0x6504c001, 0x20091644, 0x29b9827f, 0x6148d3fc, 0x5e4ba98f, 0x9182008f, 0xa5006424, 0x9f618404, 0x22bb6307, 0x12151725, 0x840f1011, 0x079f61a3,
0x4f473220, 0x052d4406, 0x06823720, 0x23022e26, 0xb1023521, 0x33058f61, 0x4d02b3fd, 0x10567c46, 0x76038bfc, 0x467c5710, 0x3d04b3fd, 0x27069761,
0x91436f40, 0x91406f44, 0xab41878a, 0x0aa54405, 0x00570124, 0xd1780101, 0x07ab4106, 0x44159b44, 0x01211597, 0x0eac41f2, 0x64000224, 0xf38257ff,
0x2605ab41, 0x1739403c, 0x41000401, 0x002408ab, 0x02030102, 0x41081e45, 0x112312aa, 0x83161113, 0x06082287, 0x1723451e, 0x950a9e41, 0x07fe2193,
0x210ca041, 0xa28cab02, 0x410efe21, 0x492c0a9f, 0x67047b00, 0x07002704, 0x1d402000, 0x270f1d45, 0x00010103, 0x11114f01, 0x3408e04c, 0x11231121,
0x1e044921, 0xfea443fe, 0xa2270443, 0x0a03f6fc, 0x28008200, 0x00640001, 0x0410045f, 0x2d47827d, 0x0028402b, 0x85000300, 0x01020100, 0x42710486,
0x27068205, 0x005f0203, 0x4f020302, 0x07222d82, 0x53820700, 0x19060526, 0x3311012b, 0x352f5183, 0xa3a36d03, 0xbe02f7fc, 0xe2fbbf01, 0x82a1be01,
0xff8e263e, 0x06c0030b, 0x06075e98, 0x40482b08, 0x06011645, 0x12134b01, 0x054a0002, 0x49010204, 0x00000107, 0x06000506, 0x05010867, 0x0304010a,
0x09670405, 0x01010301, 0x06825703, 0x5f010323, 0x270a8202, 0x1a1b4f01, 0x11131819, 0x2f054c65, 0x1f060b10, 0x1133012b, 0x37270721, 0x13333523,
0x21250383, 0x17132127, 0x20838203, 0x08d98201, 0xa51b0335, 0xa23ff9fd, 0x78a57e34, 0xfe72d4ac, 0xd001176f, 0x78dda24f, 0x01effe07, 0x6205a118,
0x2bf59efa, 0xd3019bca, 0x9cbb019d, 0xfc2f3601, 0xfbbb01a2, 0x82d301d5, 0x018832ab, 0x04290406, 0x000f0051, 0x002f001f, 0x063a403d, 0x2c9d8201,
0x69000103, 0x03070508, 0x03020203, 0x27088459, 0x04610203, 0x02030201, 0x4a1b7e67, 0x0f8f0f20, 0x2e0f0249, 0x25418002, 0x27284125, 0x40262640,
0x8ae5fe27, 0xae02210c, 0x04210c8a, 0x0b656751, 0x8b0d7367, 0x00002319, 0xc3650300, 0x8207200a, 0x402c30d3, 0x02030729, 0x85010401, 0x00020206,
0x5c860005, 0x58550f45, 0x1e062408, 0x6623372b, 0x4d6305a0, 0xa3ce3607, 0xa43e01a3, 0x013d01a4, 0xa399fe67, 0x1e045fa3, 0x1e04e2fb, 0x075463fe,
0x45000121, 0x5360078f, 0x4c042342, 0xa545f8fc, 0x0c536005, 0x2309b763, 0x000a0007, 0x0a36cd82, 0x01040201, 0x0101034c, 0x00850100, 0x86020402,
0x04040000, 0xfa825700, 0x005f0426, 0x4f040004, 0x102cd083, 0x2b1b0605, 0x33132101, 0x33012301, 0x33080782, 0x0a024e01, 0x43fed268, 0xc744fefa,
0x52fe4402, 0x010b04d8, 0x059efa57, 0xfd0afe62, 0x00010034, 0x04610049, 0x000d0467, 0x40270007, 0x03010424, 0x02850300, 0x8205105f, 0x01002306,
0x0c82005f, 0x350ffb42, 0x35211521, 0xaa021121, 0xe2fbbd01, 0x0d04bd01, 0xa2a2f6fc, 0x87820a03, 0xffffff35, 0x043b01f2, 0x015304bd, 0x00d50406,
0xb1080050, 0x18b00300, 0x27084361, 0x042c007e, 0x00b80440, 0x37093b58, 0x01150135, 0x037e0135, 0x033efcc2, 0xb7010409, 0xfeb314fe, 0x8f01b713,
0x20059b43, 0x202f8270, 0x582f8632, 0x1521063b, 0x20318201, 0x3a2f8270, 0xfc0903f7, 0x01cc023e, 0x71feb7ec, 0x01b771fe, 0x00ffffed, 0x04410078,
0x82fe0338, 0x18c6207b, 0x320f5360, 0x0000e6ff, 0x3e05ca04, 0x14000e00, 0x0d0e1140, 0x58020609, 0x3a080551, 0x01177600, 0x012b1706, 0x26010701,
0x23112726, 0x07060611, 0x58022701, 0xfe727202, 0x183a2ddc, 0x2c3b18ba, 0x0572dcfe, 0x7eccfd3e, 0x43270e01, 0x04cffb2d, 0x27432d31, 0x827ef2fe,
0x012508a4, 0x90004500, 0xb3046b04, 0x5a001100, 0x502eb04b, 0x020e4058, 0x11010001, 0x02000201, 0x0201014c, 0x10401b49, 0x270c8211, 0x090a4c01,
0x4a000302, 0x59201283, 0x15212885, 0x20238200, 0x0f544886, 0x09401b23, 0x05a94900, 0x76024208, 0x1111b559, 0x19060344, 0x0127372b, 0x22230606,
0x05372527, 0x26030713, 0xc4373435, 0x2df1027f, 0x300f2542, 0x030a90fe, 0x17b52c42, 0x7f901401, 0x0709f302, 0x2cac1302, 0x010baffc, 0x4f1d0f83,
0x265c825a, 0x04270025, 0x82fd048b, 0x402723f7, 0x9a820124, 0x0e4c0127, 0x034a0101, 0xf78d1802, 0x17390813, 0x2b180602, 0x01270209, 0x21373636,
0x26262135, 0x61020127, 0xd6fd2a02, 0x2806018a, 0xb6fc2545, 0x362b4a03, 0x04fafe31, 0xfd95fdfd, 0x20017595, 0xa618402b, 0x0135331b, 0x060b4120,
0x6b044d28, 0x11007004, 0xe2855200, 0x820f0b21, 0x4c0129ef, 0x00021011, 0x0b401b4a, 0x0f250784, 0x02030708, 0x08034149, 0x2008954a, 0x82661857,
0x0d034109, 0x15114127, 0x2b190603, 0x08f68301, 0x03171334, 0x36252705, 0x17163233, 0xb2033701, 0xb5170114, 0x0abefc2c, 0x0f307001, 0xfd2d4225,
0x7d017f0f, 0x0f1d4f5a, 0xfc0a8201, 0x13ac2caf, 0x02090702, 0x9b837ff3, 0xffe6ff35, 0x04ca04bb, 0x000e00fa, 0x0c124015, 0x05060708, 0x50070004,
0x1d250590, 0x2b170601, 0x08f28225, 0x01170135, 0x16013701, 0x33111716, 0x3b18b502, 0x7224012c, 0x8efd8efd, 0x2d240172, 0xc8ba183a, 0x0127442d,
0xccfd7e0d, 0xfe7e3402, 0x2d4229f3, 0x01003204, 0x87004500, 0x07ff41f3, 0x83011121, 0x200482c9, 0x82fc824c, 0x831020f6, 0x84012010, 0x090a240c,
0x89000302, 0x000223fb, 0xeb4b8502, 0x00092111, 0x00201785, 0x8209ff41, 0x82362098, 0x172308f4, 0x03250705, 0x15161337, 0xec030714, 0x2d0ffd7f,
0x300f2542, 0xfc0a7001, 0x17b52cbe, 0x70041401, 0x420dfd7f, 0x03290501, 0x7efe0a51, 0x5a4f1d0f, 0x205f8200, 0x0c034200, 0x01010e23, 0x248d8300,
0x0c0d4a00, 0x0c175402, 0x18820020, 0x15114f26, 0x2b180602, 0x30087082, 0x21070606, 0x16162115, 0x01070117, 0xfe8a4f02, 0x2b3631fa, 0xb6fc4a03,
0x01284525, 0xd6fd8a06, 0xfe75fd04, 0x1b3335e0, 0x2b4018a6, 0x0275e0fe, 0x826a826b, 0x090f4341, 0x21090342, 0x03420102, 0x1b492c05, 0x080f0b40,
0x4a020307, 0x41021011, 0x68180a07, 0x1b21133d, 0x0b074140, 0x85060342, 0x272908fa, 0x05172513, 0x26222306, 0xfe070127, 0xb5170114, 0x0a42032c,
0x0f3090fe, 0x022d4225, 0x83037ff1, 0x0f1d4f5a, 0x030b7dfe, 0x05024251, 0x7f0dfd22, 0xff2e9b84, 0x0559005a, 0x00c80456, 0x402c0018, 0xed820c29,
0x184c012f, 0x040d0e17, 0x0a0b4a01, 0x00040102, 0x0f8c4349, 0x0c411c20, 0x01510805, 0x37363727, 0x17161621, 0x01010717, 0x06060717, 0x26262107,
0x05372727, 0x8a09fe56, 0xfc484ad3, 0x2845253c, 0x03fe8ad9, 0xd98bfc01, 0x032a3533, 0x33352ac4, 0x92028bd5, 0xed76c7fd, 0x40182e55, 0x0276ed2b,
0x76360239, 0x1b3137ea, 0xea37311b, 0x2f8f8576, 0x047ffee6, 0x00cb06ca, 0xb3060019, 0x3201000d, 0x42088544, 0x90440c8b, 0x3b2c250b, 0x2d3a1818,
0x83099742, 0x3b28080f, 0x72dcfe2c, 0xccfdcb06, 0x270e017f, 0xcff92d44, 0x0127432d, 0xccfd7f0e, 0xfe7f3402, 0x2d4327f2, 0x442d3106, 0x7ff2fe27,
0x023a7482, 0x73002700, 0x71048004, 0x0a000300, 0x2b402e00, 0x00020105, 0x0301010a, 0x75444c02, 0x03012205, 0x116f6a01, 0x47491320, 0x33210806,
0x01132311, 0x21152113, 0xadad2711, 0x010102d1, 0x7afe8601, 0x02fc7104, 0xb601ff01, 0xfea69dfe, 0x2362829d, 0x30000200, 0x89206382, 0x402c6386,
0x01053d40, 0x01060003, 0x01070302, 0x67820482, 0x85000323, 0x210a8204, 0x18828601, 0x03020223, 0x49068257, 0x04290764, 0x04000004, 0x090a040a,
0x08a08208, 0x0611033e, 0x252b1706, 0x01113311, 0x11010113, 0xdc033521, 0x012dfdad, 0xfefd0102, 0x03737afe, 0x0202fcfe, 0xfe630152, 0x014afe4a,
0x0000a663, 0xff380001, 0x048204c2, 0x00180042, 0x0c364039, 0x0b206c82, 0x022b6682, 0x01010a4c, 0x00010449, 0x18020300, 0x6d12ee6a, 0x09260559,
0x01180007, 0x716f0518, 0x1123210b, 0x33227382, 0xe64f3632, 0x35232605, 0xbb6eeb02, 0x0802826e, 0xf8fdab23, 0x40ab0802, 0x6d40406e, 0x42049341,
0x706fbb6e, 0xb0fe6dbb, 0xa301a301, 0x6f41b0fe, 0x3f6d4140, 0x208b82ad, 0x2dc8823a, 0x009a0549, 0x402c0008, 0x02010829, 0x8b840700, 0x4a211982,
0x5bc28200, 0x112412ed, 0x2b190603, 0x113ce682, 0x11051123, 0x02420201, 0xbffec607, 0x9a05f8fd, 0xb8fbaefe, 0xfe01a603, 0x00a301af, 0x01220082,
0x5b826700, 0x5b877620, 0x6e440120, 0x82578208, 0x0100225b, 0x119d6986, 0x5b831320, 0x11020923, 0x2b5c8225, 0x026e0221, 0xfef8fd08, 0x0702c6bf,
0x5d295c82, 0x51015dfe, 0x045afc01, 0x265b8448, 0x04c4ff3a, 0x855e0549, 0x820620b7, 0x840520b7, 0x010424b7, 0x45004901, 0x142213ab, 0xb7841011,
0x2111333c, 0x11010111, 0xc6830305, 0xf8fdf9fd, 0x41010802, 0xb8fb5e05, 0xa301aefe, 0xba82a301, 0x01000024, 0x5b826700, 0x5b877620, 0x02010023,
0x24bb8401, 0x0001024c, 0x16556a49, 0x2124b787, 0x25113311, 0xfd27b785, 0x4101c6f9, 0x83fe0a03, 0x045225b7, 0x015afc48, 0x8734b784, 0x7307edff,
0x20007305, 0x31403400, 0x18191a1b, 0x07151617, 0x4c216282, 0x08db5e04, 0x820e896c, 0x00203036, 0x1611261f, 0x2b190605, 0x15120400, 0x6b040214,
0x33080576, 0x23262634, 0x15060622, 0x01173715, 0x35173701, 0x33241234, 0x45017005, 0xbbfebebe, 0x90f691c0, 0x9191f690, 0x72fc90f5, 0x47fe38fe,
0x01bef076, 0x7305c045, 0xc0241a83, 0xacbebbfe, 0x902d1c85, 0xe08291f5, 0x0164fe7f, 0x84e27f9c, 0x823a82c0, 0xed0125ff, 0xd908edff, 0x2d2da384,
0x05202a40, 0x01020304, 0x01000106, 0x2e96184c, 0x18022009, 0x820c3f6f, 0x0429259b, 0x012b1a06, 0x96868686, 0x16161425, 0x18221533, 0x820719ad,
0x081529b8, 0x47fe7663, 0xfc7238fe, 0x9f857682, 0x98838a83, 0x03217a83, 0x2188850e, 0xb58282e0, 0xac202185, 0xb6831b87, 0x0000843a, 0xff000002,
0x06b004e8, 0x000c0080, 0x40300013, 0x03010e2d, 0x0205064a, 0x003ea182, 0x67000304, 0x01010400, 0x04005704, 0x005f0104, 0x4f010401, 0x130d0d0d,
0x1311130d, 0x216b3313, 0x01480805, 0x06141121, 0x26222123, 0x25211135, 0x11330101, 0x58021121, 0xaefe5802, 0xbcfe2d37, 0xaefe372d, 0x82fed603,
0x01d682fe, 0xfd800650, 0x2d20fcac, 0x032d3737, 0x7a015ae0, 0xbafb86fe, 0x02004604, 0x1a00b0ff, 0xca040005, 0x32247f84, 0x01012f40, 0x4c267a82,
0x0102000e, 0xaa48134a, 0x03022306, 0x6e180201, 0x132911f5, 0x06042325, 0x02092b1a, 0x327d8411, 0x21333634, 0x21150105, 0x02152111, 0xfd5402ac,
0x8368fdac, 0x98023e6b, 0x86fed401, 0xfe0202fd, 0xa8fdca04, 0x6001a8fd, 0x28012d37, 0x01f8372d, 0xc0fede7e, 0x24ff84de, 0x05b00444, 0x317f84dc,
0x1239403c, 0x49040206, 0x00000106, 0x03000103, 0xfd820267, 0x57010422, 0x013e0682, 0x05075f04, 0x04010402, 0x010d0d4f, 0x0d130d00, 0x0f101113,
0x0507080e, 0x010c0004, 0x4044080b, 0x11152605, 0x21010121, 0x2c8b8211, 0x11211101, 0x02010123, 0x01372dfa, 0x20788452, 0x2e788252, 0xd6b0fe4a,
0x7e017e01, 0x2d37dc05, 0x82fd20fc, 0xe0032ea7, 0x62fb372d, 0xbafb4604, 0x7a0186fe, 0x0e0f4100, 0x3640392a, 0x02020c0f, 0x0e4c0103, 0x4a29a982,
0x01020b10, 0x04000049, 0x14d04401, 0x26059a41, 0x05212517, 0x822b1906, 0x16323e7f, 0x06141115, 0x01112123, 0x01013525, 0x02112135, 0x2d980204,
0xfd2d3737, 0x01acfd68, 0x086f83fa, 0x04fe025c, 0x37a0feca, 0x2dd8fe2d, 0x02a0fe37, 0xfedea058, 0xde82fe82, 0x01004001, 0x6e022400, 0xeb048d04,
0x06000500, 0x010103b3, 0x02092b32, 0x04010137, 0xfdcbfd8d, 0xc20172cc, 0x6d04c301, 0xff0101fe, 0x0175fe7e, 0x0300008b, 0xc302b5ff, 0x3505fb04,
0x0a000600, 0x7d010e00, 0x2c8204b5, 0x544c0121, 0x202005de, 0x00222082, 0x11830285, 0x01058625, 0x45040403, 0x043105fb, 0x0706085f, 0x04030403,
0xb04b1b4f, 0x4058500a, 0x8222861d, 0x040424df, 0x82055700, 0x86002007, 0x84002024, 0x820c2024, 0x204ca324, 0x204ca30d, 0x204ca610, 0x204ca311,
0x204ca613, 0x204ca114, 0x20e1a040, 0x38008659, 0x0b0b1540, 0x0e0b0707, 0x0c0d0e0b, 0x0a070a07, 0x10111212, 0x2b1a0609, 0x05f76101, 0x21350324,
0x03822115, 0x280aff61, 0x029d01d3, 0x059d010c, 0x05066235, 0x9acf0122, 0x00230082, 0x44010000, 0x402d0b07, 0x00010210, 0x00850001, 0x13760101,
0x059e4633, 0x430be843, 0xd8430de1, 0x4347840b, 0x1f27074f, 0x01061c40, 0x84034901, 0x0102214b, 0x01214c82, 0x07304300, 0x30430420, 0x0d29430f,
0x830d2043, 0x0a27449f, 0x23402624, 0x5482010c, 0x6d824c20, 0x820b4a21, 0x0f4a4b61, 0x02212522, 0x43059955, 0xfb420902, 0x0df3420b, 0xff3d3c82,
0x040000d4, 0x003e05d8, 0x40210015, 0x1314151e, 0x0b0c0f10, 0x0306070a, 0x000d0102, 0x3205824a, 0x76000003, 0x14131413, 0x2b1a0604, 0x27070101,
0x84112311, 0x82072003, 0x08038408, 0x5802272c, 0x516b8002, 0x37926699, 0x9966922f, 0x3e056f51, 0x497ec5fd, 0x580332fd, 0x044cfc5c, 0xfb2b3238,
0x5db903c1, 0xcf02a4fc, 0xce827e4a, 0xff010029, 0x049cffd4, 0x82da04d8, 0x40222973, 0x0f12131f, 0x090a0d0e, 0x22069466, 0x8949000e, 0x84172074,
0x05904674, 0x11331123, 0x20038317, 0x82048237, 0x1c042803, 0x80fd6b51, 0x836f7cfd, 0x372f2178, 0x42087882, 0x7e490c02, 0x3b02c5fd, 0xcf024a7e,
0x035da4fc, 0x2bc1fbb9, 0xfc380432, 0x58035c4c, 0x3b000500, 0x2509f6ff, 0x2000ee04, 0x2c002600, 0x38003200, 0x51405400, 0x0320212b, 0x01010403,
0x31330300, 0x82040203, 0x004c2c07, 0x85040304, 0x01000100, 0x83070a86, 0x00002393, 0x09855703, 0x00032408, 0x080b095f, 0x03000402, 0x2d2d4f00,
0x37382727, 0x322d322d, 0x2c272c27, 0x11231319, 0x0c172313, 0x4e2b1d06, 0x2d080748, 0x23040606, 0x27262422, 0x36333523, 0x32332436, 0x21171604,
0x01272626, 0x07020e05, 0x022e2121, 0x1e051127, 0x13111702, 0x2137023e, 0x6e4efb06, 0xfe2e0809, 0xfeb2140e, 0xfe9f9fee, 0xed14b2ed, 0x01b214ed,
0x019f9f13, 0x0114b212, 0x31362bf2, 0xd8fcfafe, 0x11689b5d, 0x1f027101, 0x5d9b6811, 0x0583e1fd, 0x1283ae20, 0x048ffe23, 0x099f4edd, 0x92fd9a26,
0xa69afd92, 0x1b300685, 0x20013533, 0x9c69122f, 0x699c5d5d, 0xa68cfe12, 0x01230683, 0x838cfe74, 0x00002b12, 0x3b000100, 0x25090700, 0x2f4fdd04,
0x342b4d05, 0x2b4d6520, 0xce072305, 0x2b4d32f8, 0x4ddd2008, 0x6b8c142b, 0x41329b4f, 0xf8280b2c, 0x2bce0732, 0xfafe3136, 0x9b4ffb8b, 0x356b870a,
0x402c0019, 0x02010e29, 0x4c010100, 0x030f1019, 0x0c0d4a01, 0xfb4c0203, 0x0c0c5013, 0x4e05074e, 0x26230616, 0x8b012726, 0x4ef9217b, 0x0221e887,
0x21fc852a, 0x8b90b206, 0x2107264e, 0x0b416b02, 0x501b2005, 0x73410636, 0x00153e0a, 0x0d364039, 0x03000202, 0x0e0f4c01, 0x0c4a0202, 0x4901020b,
0x01040200, 0x03020003, 0x0fdf4367, 0x00000033, 0x1c150015, 0x06052311, 0x07012b19, 0x21171707, 0x0da54d15, 0x8d011531, 0x01676701, 0xdff89807,
0x751b3427, 0x82d6fd8a, 0x1b7533a0, 0x1f072633, 0x7001e302, 0x16a10170, 0x757f202f, 0x94826b02, 0x2e207f24, 0x5282a216, 0x32258f8c, 0x010c2f40,
0x23018202, 0x0301154c, 0x57063451, 0x11231683, 0x48171123, 0x27210589, 0x053e5137, 0x27373723, 0x05455127, 0x2d412720, 0x1b752706, 0xdff82734,
0x94839807, 0x0768f827, 0x1b33261f, 0x06af4175, 0x2f207f24, 0x9283a116, 0x2e16a224, 0x87837f20, 0x89000237, 0xd8080700, 0x1900dd04, 0x38002300,
0x1e233540, 0x0204010e, 0x11b74103, 0x01020324, 0xf44b6703, 0x2523220f, 0x4e8f8c1c, 0x012210be, 0xa1842117, 0x0607072e, 0xfd2a02ae, 0x19758ad6,
0x43fb2736, 0x2a0d2841, 0x3427b904, 0xb6fb7519, 0x83ab0501, 0x55fa23b4, 0xb0876701, 0x17301e22, 0x260d3d41, 0x7f1e2f17, 0x83019afd, 0x700121c4,
0x260b4b43, 0x40340012, 0x83010b31, 0x0c0d29ba, 0x0a4a0002, 0x49010209, 0x79096b57, 0x1c210f40, 0x056f4e11, 0x11330124, 0x81501123, 0x06794206,
0xae770825, 0x42e0f8ae, 0x07270f6d, 0xfc500420, 0x428b0144, 0x838d0f62, 0x3040332e, 0x03000101, 0x01124c01, 0x02034a02, 0x02228283, 0xdf440203,
0x4c791805, 0x073c4112, 0x36360124, 0x88822137, 0x21113322, 0x250ff742, 0xaeaee0f8, 0xe9422007, 0x75fe2510, 0x75febc03, 0x2008df42, 0x08534402,
0x1900122d, 0x44404700, 0x04020b18, 0x414c0105, 0x002c150a, 0x05030405, 0x04010667, 0x57040202, 0x043c0682, 0x02005f02, 0x144f0204, 0x13151613,
0x1c191419, 0x07101111, 0x012b1a06, 0x35231133, 0x2c0ded42, 0x21352101, 0x08170707, 0xf9aeae77, 0x0dc6418d, 0xf971062f, 0xf9ea0616, 0x67670116,
0x46fc5204, 0x0db841c8, 0xe27cfe25, 0x42707001, 0x27440573, 0x24ab8307, 0x17414044, 0x41ab8401, 0x06211432, 0x21ab8401, 0xb8180400, 0x0882089a,
0x4f002808, 0x19131313, 0x11161813, 0x07171111, 0x092b1b06, 0x36372702, 0x15213736, 0x15331123, 0x27262621, 0x21150127, 0x43273737, 0xf92d0b13,
0x06aeae8d, 0x1b332671, 0x0678fa75, 0x20a482ea, 0x0a154301, 0xba03c829, 0x202e16cd, 0x837bfe7f, 0x430120a5, 0x2608069f, 0x00dd043b, 0x4036001c,
0x12141633, 0x06010a0c, 0x4c010200, 0x0313151c, 0x0b0d4a02, 0x05020309, 0x01034900, 0x5d000002, 0x00200567, 0x22060c75, 0x41161116, 0x07210cd6,
0x24018327, 0x17253521, 0x83018337, 0x0701239d, 0xf0540211, 0x3a322f05, 0xa809fe26, 0xcdcecdce, 0x0199fea8, 0x088263ac, 0x0263ce25, 0x4539263a,
0x36240b64, 0xcda81835, 0xa8230082, 0x826401a6, 0x64cd2806, 0x01353518, 0x48010020, 0x01200da7, 0x0125b582, 0x0101004c, 0x05eb4e4a, 0xa3180020,
0x25240c6e, 0x18060223, 0x4c0cc14c, 0xb24c0dba, 0x01002f0d, 0xa8fd0000, 0xd4feb004, 0x18000300, 0x15451540, 0x1011210f, 0x11294d83, 0x04211121,
0xfe50fbb0, 0x822782d4, 0x22338522, 0x65000000, 0x312013b7, 0xfd212c86, 0x872082a8, 0x2c01215f, 0x58872b94, 0xfc2c0123, 0x2157887c, 0x2b9c5802,
0xfb580223, 0x212b8850, 0x2b9c8403, 0xfa840323, 0x212b8824, 0x2b9cb004, 0xf8b00423, 0x212b88f8, 0x2b9cdc05, 0xf7dc0523, 0x212b88cc, 0x2b9c0807,
0xf6080723, 0x232b84a0, 0xb0045802, 0xdb862ba0, 0x86dc0521, 0x2093412b, 0x41080721, 0x00210993, 0x235f9796, 0x96231133, 0x89831c82, 0xfd238b84,
0x972c01a8, 0x1121262b, 0xfe2c0121, 0x82b788d4, 0x9bc2202b, 0xfec2222b, 0x212b8a3e, 0x2b9a5802, 0xfd580223, 0x202b8ba8, 0x222b9bee, 0x8a12fdee,
0x8403212b, 0x03232b9a, 0x8a7cfc84, 0x1a04212b, 0x04232b9a, 0x86e6fb1a, 0x418e832b, 0x01251893, 0x02211121, 0x26b18958, 0x04010000, 0x99a8fd1a,
0x1133242f, 0x411a0423, 0x01240765, 0xa8fd0000, 0x1b423e83, 0x42598318, 0x878506cb, 0x8916f742, 0x822d8587, 0x00002287, 0x9a988202, 0x43b585e3,
0x2b820a27, 0x68000521, 0x1e5307af, 0x76022206, 0x056e5311, 0xe9821120, 0xfb25eb85, 0xfb080750, 0x24378d50, 0x401d0007, 0x2c74831a, 0x03010085,
0x03008501, 0x00850302, 0x473c8302, 0x3d850558, 0xfd233f85, 0x82a8fda8, 0xfb522441, 0x43b0044e, 0x7b9f0b1f, 0x86b00421, 0x867b8e39, 0x00022237,
0x06fe7f85, 0xb38d0120, 0xf6213787, 0x216f84a0, 0x63435802, 0x0947411a, 0x5021a182, 0x22008200, 0x41000002, 0xe58b08cf, 0xe5820220, 0x02030222,
0x0320ea82, 0xe5856e82, 0x05203d83, 0x21081142, 0x6141a8fd, 0x02522306, 0xe34450fb, 0x09634107, 0x3f83af92, 0x25052341, 0x580250fb, 0xb1850807,
0x30000024, 0x83836400, 0x0072062b, 0x00070003, 0x000f000b, 0xfb501813, 0x27530808, 0x2f002b00, 0x37003300, 0x3f003b00, 0x47004300, 0x4f004b00,
0x57005300, 0x5f005b00, 0x67006300, 0x6f006b00, 0x77007300, 0x7f007b00, 0x87008300, 0x8f008b00, 0x97009300, 0x9f009b00, 0xa700a300, 0xaf00ab00,
0xb700b300, 0xbf00bb00, 0x33130000, 0x92372315, 0x92052003, 0x40278313, 0x64238f17, 0x8dc86464, 0x18fc2102, 0x1e820f8d, 0x062212f1, 0x00dd9672,
0x42600021, 0x23420ca7, 0xc361085b, 0xcb00c700, 0xd300cf00, 0xdb00d700, 0xe300df00, 0xeb00e700, 0xf300ef00, 0xfb00f700, 0x0301ff00, 0x0b010701,
0x13010f01, 0x1b011701, 0x23011f01, 0x2b012701, 0x33012f01, 0x3b013701, 0x43013f01, 0x4b014701, 0x53014f01, 0x5b015701, 0x63015f01, 0x6b016701,
0x73016f01, 0x7b017701, 0x00007f01, 0x166b4211, 0x00102120, 0x43660117, 0x7c20112f, 0xfb211290, 0x201290b4, 0xf52540fc, 0x43080721, 0x5dd15dd9,
0x44240021, 0x4e08082b, 0x00390035, 0x0041003d, 0x00490045, 0x0051004d, 0x00590055, 0x0061005d, 0x00690065, 0x0071006d, 0x00790075, 0x0081007d,
0x00890085, 0x0091008d, 0x00990095, 0x00a1009d, 0x00a900a5, 0x00b100ad, 0x00b900b5, 0x00c100bd, 0x15211100, 0x9a331523, 0x35232303, 0x03901523,
0x14821320, 0x038e2120, 0x0f8e0120, 0x13e31f83, 0x64b00422, 0xc8230098, 0x892c0164, 0x44fd2102, 0x4b420ed7, 0x3408211b, 0x21090942, 0x0bc5d4fe,
0x00000035, 0x003c0001, 0x04740400, 0x000f0038, 0x02144017, 0x77000101, 0x0f270880, 0x03260e00, 0x672b1706, 0x02280f59, 0x9191f8eb, 0xf79493f8,
0x04210583, 0x200a8238, 0x21108293, 0x058294f7, 0x8a020021, 0x001f284f, 0x042c402f, 0x74050101, 0x10231555, 0x18000010, 0x200a524f, 0x23699206,
0x1415020e, 0x23063277, 0x23262634, 0x6725788c, 0xaf6666af, 0x82028267, 0x20848d08, 0x881182a0, 0x40e3821d, 0x18269f93, 0x27402a00, 0xc8180104,
0x002b1646, 0x11171800, 0x000f0010, 0x4105260e, 0x11221222, 0x30603632, 0x0c1c4105, 0x21131641, 0x2f4168fc, 0x0aa34105, 0x19001022, 0x022d7b87,
0x69020103, 0x00000300, 0x03005903, 0x06807a03, 0x19000026, 0x00111218, 0x36207d82, 0x07217b8a, 0x07b07323, 0x16711520, 0x237c8307, 0x168eee8a,
0x41051342, 0x042e057c, 0x93f89138, 0x0692f490, 0x9394f791, 0x954191f8, 0x0e8f4106, 0x3400182c, 0x02003140, 0x02030003, 0x1b828000, 0x01048427,
0x01030301, 0x37068259, 0x05610301, 0x03010301, 0x00101051, 0x10181000, 0x00131417, 0x260e000f, 0x20162842, 0x13214221, 0x42f80221, 0x6622141d,
0x879067af, 0x2e403122, 0x03227482, 0x74828501, 0x85030224, 0x4a180200, 0x84860dc8, 0x99151821, 0x42012084, 0x8a4107ab, 0x84fe210c, 0x42057641,
0xfd210da3, 0x052441e4, 0x00820020, 0x3c000122, 0x58296b82, 0x08003804, 0x0e401100, 0x07824300, 0x02101626, 0x212b1806, 0x21076c41, 0x5d415802,
0x054e4105, 0x02223783, 0xbb430058, 0x5b378505, 0x3785073a, 0x0d6e0120, 0x58022307, 0xa943f893, 0x0aff410b, 0x15000f2c, 0x2c402f00, 0x00020300,
0x7f410302, 0x02022108, 0x2a057f41, 0x02006102, 0x00510201, 0x42141500, 0x15251a80, 0x15060622, 0x82f28c21, 0x7c0121da, 0xa020ef8d, 0xb2821382,
0x44030021, 0x14330a1f, 0x38002200, 0x10223540, 0x01010202, 0x0101054c, 0x82850102, 0x0403269c, 0x00670302, 0x25da8204, 0x04040059, 0x08826100,
0x84820020, 0x16191b23, 0x1a014215, 0x06060729, 0x21172107, 0x4333021e, 0x27200610, 0x5032928c, 0x01189f6d, 0x3cfea024, 0x5a9c6b13, 0x4f67af66,
0xa08d5489, 0xa018a827, 0x8856a06c, 0x231b824e, 0x126b9d58, 0x1d20ab8f, 0x422aab82, 0x15213f40, 0x01040002, 0x9e82004c, 0x01058624, 0xd9440601,
0x04043c07, 0x02005702, 0x075f0402, 0x04020401, 0x101e1e4f, 0x1e000010, 0x10221e22, 0x861c101d, 0x430820b5, 0x0e3012bd, 0x11210702, 0x3435023e,
0x01232626, 0x11171616, 0x5930b48c, 0x01136b9d, 0x4f8855c4, 0xfe66af67, 0x6d9f188c, 0xa023b28d, 0x8355884f, 0x599d21d0, 0xfe26b482, 0x16a06e34,
0xb7962401, 0xb2171f21, 0x181926b7, 0x0e000f00, 0x21b79526, 0xae831415, 0x022e2128, 0x36111323, 0xb78c3736, 0x4e2cae82, 0xc2015688, 0x589d6b12,
0x189e6c50, 0x1e82b68e, 0x839c5a21, 0x895429d9, 0xfe34fe4f, 0x6ea016dc, 0x200c1742, 0x0817421d, 0x17420420, 0x01042205, 0xc3541885, 0x0d964309,
0x1f000027, 0x191c1d1e, 0x18194417, 0x43460720, 0x21372509, 0x26262137, 0x310e1742, 0x664e8955, 0x9c5967af, 0x3efe126b, 0x182401a0, 0xad8d6ca0,
0x6b12aa24, 0xb182599c, 0x55894e23, 0x41ca82a0, 0x1f290f5f, 0x40002f00, 0x01063d40, 0xbfc41801, 0x77a98d11, 0x561805ef, 0x60471449, 0x0ef6460f,
0x15021e22, 0x410b6f7b, 0x05470f6a, 0x653b2508, 0x3b653c3c, 0x08820282, 0x1147c48d, 0x88a0200c, 0x83278224, 0x470420cf, 0x002e0db3, 0x4051003b,
0x0101084e, 0x05030109, 0xed790301, 0x0600270a, 0x06020400, 0x1b456904, 0x07cc780f, 0x470bee79, 0x0c200ad9, 0x4714f842, 0xe28e0cd9, 0xa40bde78,
0x231926ee, 0x24181923, 0x12694224, 0x8c080848, 0x24a022f6, 0x41328518, 0x03310dcf, 0x23001300, 0x3d404000, 0x03050107, 0x04050304, 0x2af08280,
0x7e020403, 0x01060000, 0x18000503, 0x3f0b3460, 0x0201005f, 0x14144f01, 0x23140404, 0x1a1c2214, 0x12041304, 0x08101127, 0x132b1906, 0x00211121,
0x5918c384, 0x2320083e, 0x3c2be18e, 0xc8fb3804, 0x7cd39f01, 0x827dd37c, 0xd37d2502, 0x518a517c, 0x52210282, 0x83058389, 0xe803211c, 0x02821482,
0xa0202085, 0x51221e85, 0x08825289, 0x0230b482, 0x1c023c00, 0x38047404, 0x15000c00, 0x31403400, 0x00209f82, 0x0121b482, 0x23ba8269, 0x59050000,
0x05330682, 0x02045f00, 0x00050002, 0x000d0d4f, 0x0d150d00, 0x82101114, 0x130c232e, 0xa5831123, 0x23110122, 0x2d077766, 0x16041123, 0x34211516,
0x04333636, 0x77855074, 0x6d025026, 0xa8fd518a, 0x04236e82, 0x85e4fd38, 0x1c0222a3, 0x468785f0, 0x02210743, 0x2c7f841c, 0x07304033, 0x04030605,
0x02040001, 0x0b1f4201, 0x82005f21, 0x217e8729, 0x7e841215, 0x86112321, 0x1121227e, 0x07314733, 0xe0422320, 0x74042407, 0x8950c8fb, 0x895228f2,
0xfd1c0251, 0x411c02e4, 0x7c830508, 0x82528921, 0x010021fe, 0x1121ff88, 0xf3411800, 0x00112a1d, 0x13231310, 0x2b190605, 0x89e38200, 0x21ec83f2,
0x9748eb02, 0x91a02508, 0x380493f8, 0x3a490482, 0xf8932205, 0x071b4b91, 0x1127e382, 0x23402600, 0x46020304, 0x521806a1, 0x8d820ce1, 0x11001124,
0x145e1323, 0x88c78705, 0x740421d9, 0x20052a4b, 0x05a643a0, 0x4b1c0221, 0x9642052b, 0x85002005, 0x580229c7, 0x09003804, 0x1b401e00, 0x01200f82,
0x1a435318, 0x23150622, 0x5820b684, 0xb0833e82, 0x82980321, 0x82508208, 0x58022147, 0x86060f42, 0x1cbb7847, 0x47821620, 0x23262624, 0x3b825802,
0x2149a020, 0x84a08207, 0x00002347, 0xf3827404, 0x87780920, 0x0059210e, 0x08525518, 0x0929f282, 0x13110900, 0x2b180604, 0x24f18301, 0x36363235,
0x82e98435, 0x83e28444, 0x412682ee, 0x9b830543, 0x4f870020, 0x12e45418, 0x13204f8b, 0x23056c68, 0xdc352626, 0x94244b82, 0x1c0291f7, 0xf721ec84,
0x244b8594, 0x38047404, 0x1fba1800, 0x09132508, 0x1c023c02, 0x83052242, 0xe4fd2105, 0x2f0cd749, 0x00070003, 0x0507b508, 0x32020103, 0x0609132b,
0x01272b86, 0xfec8fe38, 0x853a01c6, 0xe4fd2339, 0x11851c02, 0x7d203b84, 0x3334ff82, 0x05006205, 0x1b000b00, 0x090a1840, 0x05020507, 0x4c010001,
0x087b4018, 0x02101222, 0x3325f883, 0x01230101, 0x08038221, 0x01330121, 0x6d01dbeb, 0xfedb93fe, 0xfeef0292, 0xf0fe08f0, 0x05081001, 0xfd50fd62,
0x02b0024e, 0x84e2fd1e, 0x01002796, 0x00001c01, 0xbf845603, 0x12cb4018, 0x2111212c, 0x3a021c01, 0x3804c6fd, 0x3b41c8fb, 0x74042308, 0x1f581c02,
0x82132014, 0x833c202f, 0x1c02212a, 0xe34c5e82, 0x242b8406, 0x40290007, 0x25408226, 0x02000302, 0xeb750467, 0x23068205, 0x005f0103, 0x4f2a0c82,
0x07040404, 0x11120704, 0xaa440510, 0x35252306, 0x49841521, 0xfd980323, 0x224d8308, 0x82dcdca0, 0x0200213e, 0x53abaf8a, 0x99820120, 0x23112523,
0x22cd8511, 0x83fa9a01, 0x02a035a5, 0x0008fdf8, 0x08020100, 0xba0418fc, 0x05000c03, 0x1b401e00, 0x240f4777, 0x01000100, 0x0672584f, 0x15210131,
0x02231121, 0xfdb20208, 0x0c03a0ee, 0x82acf9a0, 0x253f8294, 0xba046c02, 0x3f86d007, 0x85213082, 0x07981800, 0x33012215, 0x2b418211, 0x02a00802,
0x074efd12, 0xa03cfbd0, 0xff253f83, 0x0218fcf6, 0x6d7f88a8, 0x10251519, 0x2b190603, 0x2d7d8203, 0x020a2111, 0xeefda0b2, 0x0cf90c03, 0x3f855406,
0x026c0223, 0x577f89a8, 0x981805c7, 0xa16c0ed0, 0x21352108, 0xfd277f82, 0x0712024e, 0x889cfad0, 0x20bf847f, 0x05a5410b, 0x85000128, 0x03020300,
0xd4180586, 0x04200bd3, 0x02219682, 0x345a184f, 0x164f1809, 0x20d0850b, 0x839482ee, 0x23d58255, 0x5406acf9, 0x00215a83, 0x21db8301, 0xdb82ba04,
0xa3780720, 0x21032221, 0x22df8515, 0x83fdc404, 0x0c03224c, 0x824883a0, 0x414783e2, 0x07290663, 0x1e402100, 0x00010000, 0xb7591885, 0x0200220c,
0x219d8401, 0x17600410, 0x844a8205, 0x120223e8, 0x94863cfb, 0xeb41eb84, 0xd0072705, 0x24000700, 0x47842140, 0xb041eb84, 0x8a112011, 0x2311214a,
0x0721e287, 0x86de84d0, 0x18fc2393, 0x4b89a802, 0x85000322, 0x01214682, 0x0fcb6186, 0xcb611120, 0x4196840c, 0xf421062a, 0x09274148, 0x0321df83,
0x1bcf5e0c, 0xd4820320, 0xc4040a26, 0x0c033cfb, 0x7f84cb88, 0x2113cf5e, 0xb4843301, 0xd007a025, 0x410048f4, 0x2b840587, 0x2e000b27, 0x00002b40,
0x18ab8705, 0x4116c05b, 0x62180ce8, 0x21230700, 0x84a00802, 0xeefd23b9, 0x58831202, 0xa0b40523, 0x338a83a0, 0xf6ff0200, 0x480318fc, 0x0700d007,
0x28000b00, 0x01042540, 0x8524c982, 0x02010105, 0x26140f41, 0x06101111, 0x622b1c06, 0x352105dd, 0x2a078321, 0xa0a06801, 0x72018efe, 0x84a04001,
0x540624b4, 0x88c404a0, 0x48032abb, 0x09000c03, 0x1f402200, 0x20538503, 0x284c1800, 0x01042408, 0x77020002, 0x032309f7, 0x84231121, 0x0a212301,
0x9e825203, 0x438efe21, 0xf9230529, 0x415406ac, 0x03210707, 0x824b82ac, 0x05ae41a5, 0x04000024, 0x5c180003, 0x497811c3, 0x21518408, 0x01823521,
0x27057943, 0xeefd1202, 0x6cf8ac03, 0x0023fd83, 0x88030000, 0x820520fb, 0x000f3055, 0x032f4032, 0x00020001, 0x04010685, 0x82860407, 0x05013309,
0x00670102, 0x05070705, 0x05050057, 0x07005f07, 0xb0840705, 0x10246282, 0x2b1e0608, 0x5d82ff82, 0x23220582, 0xbb822101, 0x68012125, 0x41eefda0,
0xfd35050a, 0xa012024e, 0xd0078efe, 0x04a03cfb, 0x0648f424, 0x05acf954, 0x237682b4, 0x68010200, 0x28067341, 0x00070003, 0x02124015, 0x06164301,
0xff5b0120, 0x11332209, 0x22568423, 0x41a0a068, 0x0b230758, 0x8448f4b8, 0x25b7853f, 0x0500ac03, 0x73510b00, 0x01052206, 0x07a54586, 0x0503002e,
0x00570305, 0x5f050303, 0x05030500, 0x410afa43, 0xab43050f, 0x52032206, 0x26a286a0, 0x6cf8ac03, 0x84a0f406, 0xff02289e, 0x03cc01f6, 0x87d00748,
0x0103215b, 0x85200982, 0x04240382, 0x67040502, 0x11ea9c18, 0x11421120, 0x05094109, 0x02340582, 0xaefca0a8, 0xc0feb202, 0x01eefda0, 0xf9d00772,
0x6405a0fc, 0x21083345, 0x5f846c02, 0x23000924, 0x6f412040, 0x01042605, 0x02010102, 0x18068257, 0x240ac79d, 0x06051011, 0x0660411b, 0x11331123,
0x2c548433, 0xa0a07201, 0x9cfad007, 0xfbc404a0, 0x21f0823c, 0xaf830100, 0x82a80221, 0x000928af, 0x00254028, 0x4d000400, 0x9e180adf, 0x548b101c,
0xa9833520, 0xfda00825, 0x4312024e, 0xa6820516, 0x6b44a020, 0x0673430d, 0x53820120, 0x05040527, 0x00010086, 0x05c76f02, 0x0de06018, 0x210c7343,
0x01841521, 0x83087944, 0x26b3825d, 0xa0a0dcfb, 0x834cfaa0, 0x010226b3, 0x0418fc68, 0x20b382ba, 0x05734303, 0x43010221, 0x04220673, 0x61188601,
0x5b8c0fa6, 0xbc452320, 0x42012007, 0x01230516, 0x828efe72, 0x48f4235b, 0xdd44b80b, 0x215b8206, 0x5b84cc01, 0x21061b42, 0x12410103, 0x01052306,
0x5c180504, 0x5d8c102c, 0x5f85b782, 0x02315d82, 0x01aefcb2, 0x7201a040, 0xd007eefd, 0x06a09cfa, 0x82c08204, 0x42bb86bc, 0x0525097b, 0x02040201,
0x23198286, 0x01000301, 0x10646218, 0x5d825f8a, 0x47231121, 0x012a0587, 0xfd520368, 0x4001a04e, 0xbf821202, 0xa0ac0326, 0x54060cf9, 0x22051c41,
0x8af6ff03, 0x000f24bf, 0x422b402e, 0x05240823, 0x02060101, 0x062c6382, 0x57060707, 0x07060600, 0x0607005f, 0x82168f43, 0x8205206d, 0x098f4303,
0xfd25c983, 0xfbc4044e, 0x0691433c, 0xa021cf82, 0x050344a0, 0x82ba0421, 0x00032dcf, 0x000f0009, 0x072c402f, 0x03040301, 0x0223d184, 0x83670100,
0x020422df, 0x27068257, 0x065f0402, 0x04020401, 0x200c0044, 0x06ec4103, 0x25211122, 0x0a20e084, 0x02266183, 0x8efea012, 0xdd87b202, 0xacf9a024,
0xfc41b405, 0x41032006, 0x6f830afb, 0x2f403222, 0x2005fd41, 0x38dc8207, 0x03008601, 0x03050400, 0x05006704, 0x57050606, 0x06050500, 0x0506005f,
0x20728c06, 0x051a4401, 0x42086742, 0xfd21080b, 0x257184ee, 0x48f4d007, 0x6f42b80b, 0x0553410b, 0x5518e384, 0x062121c3, 0xe292181a, 0x83cc8408,
0xac0326d0, 0x00a0a0a0, 0x05134804, 0x26061b44, 0x00170011, 0x413b403e, 0x0b28059d, 0x07080701, 0x02010486, 0x2606a341, 0x08060109, 0x82570608,
0x08062c06, 0x08010a5f, 0x174f0806, 0x18141516, 0x220a8279, 0x451f060c, 0xcb82093d, 0x11210523, 0x07444123, 0x410fb541, 0xbd410b4f, 0x0a56410a,
0x42020021, 0x07200837, 0x20051345, 0x06524500, 0x82020021, 0x7f672095, 0xc946143d, 0x227d8207, 0x49012135, 0xfb2507df, 0xfd12023c, 0x062842ee,
0xa0a0dc26, 0x00a0c0fe, 0xff214c82, 0x06c748f6, 0x26000b26, 0x01042340, 0x05275e83, 0x02010203, 0x83570102, 0x02012307, 0xca48005f, 0x0a114506,
0x35211523, 0x06bc4421, 0xfb720123, 0x05be443c, 0xa03cfb22, 0x8208bf44, 0x18fc21b7, 0x28067f42, 0x402a000b, 0x03040027, 0x087c4204, 0x0a3c6318,
0x03010523, 0xdd581802, 0x1c062108, 0x2308a341, 0x21112311, 0x4906a741, 0xac27057b, 0xfaa0a0a0, 0x84b4054c, 0x285b84b3, 0x000b000c, 0x04214024,
0xe7681801, 0x21b6830e, 0x1f460100, 0x4715200c, 0x04230983, 0x478efec4, 0xa0240685, 0x5406acf9, 0x53820383, 0x41680121, 0xbf450607, 0x00012307,
0x8f180485, 0x05410b78, 0x08bf4508, 0xbf455482, 0x72012c05, 0xa0a0aefc, 0x3cfbd007, 0x456405a0, 0x022106bf, 0x06ef4308, 0x8206bf45, 0x1b66454e,
0x1520548a, 0x2008914b, 0x06954bee, 0xd448dc20, 0x07174c05, 0x41072b48, 0x00201651, 0x85075041, 0x084f4353, 0x8205254c, 0xa0ee2252, 0x054c4103,
0xf7840020, 0x24064b41, 0x40220009, 0x104b411f, 0x08b44318, 0x82066146, 0x2311214d, 0x01250183, 0xfe520368, 0x4b98828e, 0xf9210614, 0x05cb48ac,
0x07ba042a, 0x001300d0, 0x08304033, 0x20054b42, 0x228e8201, 0x42070986, 0x07830551, 0x5f020125, 0x82020406, 0x434f200f, 0x0a200a36, 0x41063643,
0x604209a8, 0x2167840a, 0x65428efe, 0x07b64108, 0x20066d42, 0x08bf4301, 0x38001324, 0xd4823540, 0x1806d746, 0x2708636c, 0x03010767, 0x57030404,
0x03270682, 0x01065f04, 0x95040304, 0x8515207c, 0x352121df, 0x634b0184, 0x12022206, 0x054a4cfd, 0x44054e47, 0x6a4a0681, 0x091b5c05, 0x4e13f34a,
0x0423087f, 0x58c8fb38, 0x03210a53, 0x2b2b4e00, 0x25234583, 0x4e112111, 0x2b4e087f, 0x5cb75b0a, 0xdd470328, 0xefdd5050, 0x0583dcf0, 0x389ba92d,
0xa8a99b38, 0x9b39399b, 0x823804a8, 0x82ef2016, 0xf0dc211c, 0xa0200582, 0x1d881182, 0x56000021, 0x8b650aa7, 0x40352205, 0x2d158232, 0x02000402,
0x00040067, 0x05040305, 0x714f0667, 0x4f068205, 0x0b230971, 0x4f08090a, 0x07200675, 0x8207754f, 0x084341f5, 0xfd980328, 0xb801a008, 0xfe8848fe,
0xfe580223, 0x55598248, 0x6f85099b, 0x51000f24, 0x17824e40, 0x82030221, 0x01092171, 0x35067a46, 0x0b05010a, 0x05060701, 0x06006707, 0x57060101,
0x01060600, 0x0982085f, 0x0c4f0132, 0x0408080c, 0x0c000004, 0x0e0f0c0f, 0x080b080d, 0x89838a82, 0x05062108, 0x03000300, 0x17060c11, 0x2111332b,
0x21350311, 0x21350115, 0x3521021d, 0xa038043c, 0xf80208fd, 0x8e830383, 0x98000326, 0x98d0fe98, 0x00210083, 0x278f9100, 0x003b403e, 0x02040700,
0x06289184, 0x03030509, 0x57030101, 0xff820884, 0x032a8482, 0x08084f01, 0x0e0f0000, 0x7e850c0d, 0x05060723, 0x207c8404, 0x2b7c860a, 0x33112301,
0x11231121, 0x23113321, 0xfd207d82, 0x01227082, 0x02829830, 0x7f849820, 0x8d879820, 0x0a20f782, 0x6708ab56, 0x8222130b, 0x8b827f40, 0x03051622,
0x22088c85, 0x03031504, 0x030b170c, 0x09030809, 0x020a0d67, 0x10131908, 0x080f0e03, 0x1812670e, 0x010f0311, 0x84570f01, 0x010f2308, 0x0c82145f,
0x244f0127, 0x14202024, 0x05304114, 0x24272439, 0x20252627, 0x22232023, 0x1d1e1f21, 0x191a1b1c, 0x14171418, 0x18151617, 0x4107bc8f, 0x1a20104c,
0x352bcf87, 0x15251523, 0x33173533, 0x82012335, 0x15212803, 0x23213533, 0x82053315, 0x86212003, 0x83e7851b, 0x989824e3, 0x8398a0fd, 0x890c83ed,
0x21fa840a, 0x00859800, 0x8538fe21, 0x20058407, 0x20008200, 0x0c074105, 0x000a2508, 0x0011000e, 0x10444047, 0x07090d0e, 0x02040606, 0x00004c01,
0x02020307, 0x67020004, 0x04020508, 0x57040101, 0x04230783, 0x82065f01, 0x4f01310b, 0x08080f0f, 0x110f0000, 0x0b0c110f, 0x0a080a08, 0x20069241,
0x08924109, 0x0335012b, 0x33013517, 0x27131501, 0x2cac8315, 0x8c02d6aa, 0xbffedede, 0xdf73fdd6, 0x309c84df, 0xd675fd98, 0xdedeb501, 0x8d0208fd,
0xe04afed7, 0x21978ee0, 0x97850006, 0x39403c23, 0x2164820f, 0x97860407, 0x84010321, 0x01052196, 0x06829584, 0x00229488, 0xc1821100, 0x42090a21,
0x0720069c, 0x37268c87, 0x01151123, 0x8e820123, 0x33072522, 0xfc2f8c82, 0x02dfdf68, 0x4101d68d, 0x01d674fd, 0x83dedeb6, 0xb902248e, 0x824afedf,
0xbdfe26a3, 0xdf74fdd7, 0x208b82df, 0x0a23410d, 0x09000626, 0x10000d00, 0x38083969, 0x00250022, 0x002b0028, 0x2a654068, 0x23242527, 0x1f202122,
0x1a1b1d1e, 0x0adf4119, 0x05080b23, 0x0549411c, 0x07030823, 0x23b38403, 0x0309050a, 0x0884b584, 0x2935b788, 0x07262629, 0x00040407, 0x292b2900,
0x2628262b, 0x07090728, 0x26ef8209, 0x00030006, 0x870b1103, 0x371726c7, 0x05371721, 0x29038207, 0x35052737, 0x27370107, 0x0d822507, 0x07270724,
0x11822517, 0x05170727, 0x27210727, 0x08e18307, 0x393ad422, 0x3a393b01, 0x6c6cf0fe, 0x3a18fe6b, 0x39f8023a, 0x6b6ce6fd, 0x6b19026c, 0x6bd76b6c,
0x83fe6c6c, 0x39281484, 0x3a39e7fd, 0x393a2102, 0x20059241, 0x2b008239, 0x6b6b6b3a, 0x733a3a3a, 0xbefe3972, 0x02830a82, 0x4582d720, 0x3a3a3226,
0x6d393901, 0x3a211982, 0x078b5400, 0x5b540220, 0x54012015, 0x0221088b, 0x05bb541c, 0x54060b54, 0x4983305f, 0x23352523, 0x080b5415, 0x420b5f54,
0xb3540cc3, 0x0933462e, 0x4684fe21, 0x87461433, 0x1c02213a, 0x062f5398, 0x28402b00, 0x00020105, 0x00004c01, 0x18850002, 0x2b115b4f, 0x06040404,
0x10110604, 0x2b180604, 0x2005dd46, 0x12dc4601, 0x2209db46, 0x49060003, 0x012105e9, 0x54538202, 0x1220138f, 0x8305826d, 0x0137224c, 0x244c8421,
0xfdf802a0, 0x46f68608, 0x362e1093, 0x00003340, 0x03020104, 0x07670200, 0x90450605, 0x21088405, 0x02560103, 0x08082305, 0xbd440404, 0x205f8209,
0x0a944608, 0x5a412120, 0xcc012707, 0xf802d4fe, 0x5e41d4fe, 0x05c25508, 0x092c6f8c, 0x3c000d00, 0x00003940, 0x06020105, 0x08296f82, 0x03000601,
0x67030604, 0x05dd4307, 0x04200682, 0x04317483, 0x0a0a4f01, 0x0d0a0404, 0x0b0c0d0a, 0x09040904, 0x06327c11, 0x83052241, 0x41012073, 0xd4240ad2,
0x2c0134fe, 0xfe257988, 0x01d4fe34, 0x901083cc, 0x403e257b, 0x0000003b, 0x002aea84, 0x04050003, 0x08670503, 0xa3430706, 0xa7088405, 0x8923207d,
0x08fd247d, 0x89a0cc01, 0x478b867c, 0xf7830dfb, 0x3a403d22, 0x04207b83, 0xe682f682, 0x2705fc47, 0x03020608, 0x57030101, 0x6d410783, 0x83f89907,
0x112121f2, 0x7a82f88a, 0xcc012c22, 0x02237b85, 0x822c016c, 0x41cc200f, 0x7b48050a, 0x227f830e, 0x4138403b, 0x83820b77, 0x04060324, 0x7f840067,
0xa7030021, 0x4135207d, 0x012313ee, 0x82cc01cc, 0xa02c257b, 0xd4fe2c01, 0x7b597a82, 0x0002280a, 0x01124015, 0x824a0001, 0x76002103, 0x02351b82,
0x06020200, 0x01332b16, 0x1c023c01, 0x38041c02, 0xff00c8fb, 0x08db43ff, 0xbb050222, 0x01202482, 0x00260f89, 0x020c400f, 0x58180001, 0x132709de,
0x043c0121, 0x84e4fd38, 0x8d002039, 0x8ebc203b, 0xb306283b, 0x32010001, 0x8311332b, 0x90348332, 0x0102211f, 0x13221f82, 0x52821101, 0x8c828e83,
0x28837b9d, 0x278b7985, 0x2d89e397, 0x410b3b67, 0xa6861813, 0x230ccf59, 0x02003804, 0x21160341, 0xfb59c8fb, 0x30cb5708, 0x2111212b, 0xfec4040a,
0xfe20fe8e, 0x09cc578e, 0x77540120, 0x590c2006, 0x5f44062f, 0x066f5913, 0x41820320, 0x03214382, 0x58418552, 0x3f8605f0, 0x00d00727, 0x40270009,
0x2cf48324, 0x03020085, 0x01048602, 0x01030301, 0x25068257, 0x005f0301, 0xe74e0103, 0x05964d05, 0x33113323, 0x574c8211, 0x4d83057c, 0x83051458,
0x4da02051, 0x035a0c97, 0x4d212025, 0xfe21058f, 0x4dd68420, 0x938d08d7, 0x03020322, 0x02219383, 0x4f938502, 0x7e4e0ad9, 0x2995820a, 0xa0080233,
0x8efe1202, 0xd44e20fe, 0xacf92305, 0x9383f406, 0x82056f41, 0x32975953, 0x5785eb87, 0x598efe21, 0x01200e98, 0x03215b85, 0x3b5218ac, 0x82032023,
0x061f504c, 0xa0eefd28, 0xac03eefd, 0x1a5020fe, 0x0a4f5705, 0x41053741, 0x23201dcb, 0x2408bb5a, 0x056cf8ac, 0x55e387b4, 0x262506c7, 0x00002340,
0x05337304, 0x18008621, 0x23096c45, 0x04010103, 0x41055e50, 0x21200536, 0x49828b82, 0x01211126, 0xa0e00168, 0x83081b56, 0xe0012191, 0xe3595383,
0x41db8205, 0x112022cb, 0xa94f4d82, 0x85a02005, 0x0dcb41d6, 0x01209384, 0x5a060f5b, 0x04200a23, 0x87080d5b, 0x83212093, 0x23112149, 0x01299383,
0xa0eefd72, 0xfbd007a0, 0x0d2741dc, 0x8331635b, 0x82a08254, 0x84ec845a, 0x050b5758, 0xf1825b87, 0x50000226, 0x6004cc01, 0x22069753, 0x181a401d,
0x180cbb50, 0x220f0654, 0x82012111, 0x01502655, 0x0248feb8, 0x83058358, 0xe00131f6, 0x020020fe, 0x98fe6801, 0xf8074803, 0x07000300, 0x200a3d75,
0x16577402, 0xfe219587, 0x273e8320, 0x40fcf807, 0x40fc20fe, 0x23063f41, 0x0c034803, 0x8314235e, 0x6801217d, 0x03243183, 0x000cf90c, 0x4209e742,
0x57442a8b, 0x088c420c, 0x57440120, 0x44ac2006, 0x8c422f57, 0x55012006, 0x37420553, 0x09034428, 0x43588284, 0x06835305, 0x2018ff78, 0x22bb8503,
0x82033cfb, 0x85002034, 0xa8022133, 0xc77a7382, 0x2333841a, 0x4efdb202, 0x6784338a, 0x22000724, 0x44821f40, 0x57000322, 0x2708ec52, 0x5f030000,
0x03000300, 0x08f95518, 0x91520320, 0x020a2606, 0xfd1202b2, 0x524583ee, 0x042605df, 0xcc014b00, 0x7b846504, 0x2b05c375, 0x063f4042, 0x00030204,
0x57000101, 0x002c0884, 0x070b5f01, 0x0309050a, 0x00010708, 0x2224b84f, 0x8c331113, 0x6e4b2001, 0x01230616, 0x42e001cc, 0x07870528, 0x01040029,
0x03f8fd68, 0x76480848, 0x50220843, 0xcd824d40, 0x08850023, 0x05d56201, 0x8502033d, 0x04030109, 0x04008503, 0x0a850405, 0x05060501, 0x07060085,
0x010b8506, 0x50760707, 0x01212246, 0x05ca4811, 0x68200788, 0x0627858d, 0xfd1c022c, 0x8f44fde4, 0x01002105, 0x41054f54, 0x01251d97, 0x02211121,
0x08984108, 0x87430320, 0x000b2c0c, 0x041f4022, 0x01000202, 0x83570001, 0x01002207, 0x1029555f, 0x83571320, 0x01232105, 0x50240782, 0x9001f0f0,
0x92430385, 0x22ac8307, 0x41030000, 0x98200627, 0x28062741, 0x003a403d, 0x85000100, 0x09254106, 0x25410720, 0x01082409, 0x50760505, 0x4e4b052e,
0x06bc4e09, 0x17060923, 0x0c12412b, 0x270a0e41, 0x20037805, 0x40fce0fc, 0x00200589, 0x01220082, 0x675b6801, 0x136f5306, 0x2309cb43, 0x9cfad007,
0x3f572f84, 0x22a75f0a, 0x84112121, 0x05344501, 0x013cfb23, 0x05344572, 0x88e00121, 0x5c03204b, 0x1e230543, 0x18001b40, 0x6113794d, 0x48830897,
0xfc214683, 0x05295cae, 0xbb824282, 0x2208935e, 0x60164019, 0x01200833, 0x820c077a, 0x066055c3, 0xa0e00122, 0x5605155c, 0x002005a2, 0x435a3f82,
0x217f8408, 0xd7610001, 0x21c68a18, 0xc485aefc, 0x7f863f83, 0x5d1f3b41, 0x5755058f, 0x2cef4709, 0x47417a84, 0x056f490b, 0x47074b41, 0xab470816,
0x48032105, 0x412aaf60, 0xfe230a9e, 0x838efe20, 0x48f42352, 0x5b41b405, 0xba042107, 0x23474b89, 0x0d926112, 0x830cea41, 0x052541a2, 0x564cfa21,
0x0d3d0ac7, 0x2e403100, 0x00010000, 0x05040085, 0x01068604, 0x01050201, 0x00020057, 0x03020503, 0x260e8267, 0x005f0501, 0x58050105, 0x112c056b,
0x1d060710, 0x1133012b, 0x15211533, 0x02255e86, 0x01a0a008, 0x05014172, 0x83120221, 0xa0a02362, 0xb284acf9, 0x20088b62, 0x06fb5fac, 0x03040323,
0x206c8286, 0x053c4504, 0x02010426, 0x00000067, 0x0f455818, 0x4509985b, 0xa024063f, 0xac03eefd, 0x2e825485, 0xef420120, 0x0b375e08, 0x04030122,
0x24099045, 0x5f030404, 0x606b8200, 0x1d5d09a1, 0x82b28305, 0x059345ae, 0x3c20ab84, 0xe020bb82, 0xf7499182, 0x08ab610a, 0x0523ac84, 0x84050401,
0x18ac8458, 0x5d08f984, 0x11250f7d, 0x11211123, 0x12946321, 0x59150741, 0x042b05ce, 0x00570001, 0x01030004, 0x83670304, 0x645f20d8, 0x112006f7,
0x42078958, 0x35200562, 0x2308f546, 0x72018efe, 0x62053249, 0x835909c3, 0x02042212, 0x20578401, 0x18578302, 0x8c0a17bd, 0x21352157, 0x01255783,
0xfc7201e0, 0x056742ae, 0xfedcfb25, 0x42a0a020, 0x435f0a1b, 0x0203260a, 0x01008603, 0x27588305, 0x02040005, 0x00670405, 0x5b62588c, 0x08184306,
0x18435b87, 0x5fb7890f, 0x0d330647, 0x2d403000, 0x00060000, 0x03040085, 0x06008604, 0x41060301, 0x062409c8, 0x055f0306, 0x03201182, 0x820c7e42,
0x21152365, 0x73412315, 0x05c84405, 0x4a8efe21, 0xfb210795, 0x05445b3c, 0xe0014b08, 0x01000000, 0x85fdb5ff, 0x2d07fb04, 0x06000b00, 0x010208b3,
0x01012b32, 0x27010107, 0x01370101, 0xb2021701, 0xfd914902, 0x91eefdee, 0xbcfd4902, 0x020e0290, 0x5e02900e, 0x04486ffb, 0x48dcfb24, 0x88049104,
0x04e5fb47, 0x4782471b, 0x4786ba20, 0x2e087368, 0x07013703, 0xb1049046, 0x47e60691, 0x8748a0f6, 0x82f6206b, 0x2f23896b, 0x4b011701, 0xfb90b104,
0x09cdfd50, 0x9ff64760, 0x002a9282, 0x02500002, 0x0360046c, 0xf349000c, 0x1c3b4a06, 0x25211525, 0x4a211521, 0x0c200b3b, 0x28054a48, 0x08020200,
0xa802f8fd, 0x05a34608, 0x4a09797f, 0x3323143b, 0x64152311, 0xa027069d, 0xfb9808a0, 0x83fba000, 0x0201228b, 0x06076708, 0x86142f45, 0x05354a31,
0xf6ff0126, 0xa8026c02, 0x23222f65, 0x4efdb202, 0x5e062f65, 0x374908bf, 0x01032306, 0x64185700, 0x002208f3, 0xf2420100, 0x05f96508, 0x5a112121,
0x42830695, 0x02eefd31, 0xfeac0312, 0x00a0a020, 0x024b0004, 0x8465046c, 0x4937497b, 0x15333523, 0x49038a33, 0x02220737, 0x0086a06c, 0x41040021,
0x2f490663, 0x1133235c, 0x03891103, 0x86080221, 0x1828497c, 0x4109ff68, 0x01221d8b, 0x2b491521, 0xa00c2407, 0x42030000, 0x2b490c77, 0x23152326,
0x03853325, 0x200b2b49, 0x82a2840c, 0x42032087, 0x0b210c83, 0x3f274900, 0x49100641, 0x01231222, 0x69020802, 0xb342057b, 0x051d491b, 0x22268f48,
0x50331133, 0xa0200613, 0x21061050, 0x0f500cf9, 0x0a27470e, 0x03020325, 0x45010686, 0x0e820c0c, 0x470c4560, 0x10450827, 0x21352206, 0x09715035,
0x018efe23, 0x08aa4e72, 0xa0540623, 0x087f46a0, 0x46082367, 0x2323291f, 0x41352111, 0xee2105e5, 0x073043a0, 0x824cfa21, 0x05e74c55, 0x65ba0421,
0x0124095f, 0x01008500, 0x511f1b46, 0x538306b2, 0x1202a024, 0x105e4efd, 0x20fe2107, 0x5382a78a, 0x84311b46, 0x86112059, 0x855b83af, 0x079348b0,
0x2f48b283, 0x1121253c, 0x52030a21, 0x48078948, 0x2f480930, 0x05634635, 0x5f460582, 0x05e54a07, 0x3048fb20, 0x0b374a05, 0x842f2f48, 0x163c4a59,
0x39493c20, 0x08134208, 0x00d00722, 0x49062347, 0x062a09ef, 0x00570102, 0x02050006, 0x87470506, 0x091b5105, 0x7a421120, 0x05784206, 0x23112322,
0x2109e747, 0xed69eefd, 0x09255105, 0x52053367, 0xc68535f3, 0x48112321, 0x5e820846, 0x83062751, 0x540621c5, 0x6c0d7b63, 0x53842443, 0x4c073a48,
0x3c20069b, 0x52087742, 0x4e8535b3, 0x21071d48, 0x276d9cfa, 0x06674d0b, 0x4c05b352, 0x47851eeb, 0x21050542, 0xdc829cfa, 0x0f660120, 0x00092108,
0x612ab352, 0xb35205fe, 0x052f410c, 0x00820020, 0xd76e5382, 0x11212328, 0xa2521521, 0xaefc2206, 0x05d86e07, 0x4336cf4c, 0x5082059a, 0x4b06c24a,
0x4f530bcc, 0xe0012105, 0x410a4f44, 0x538624cb, 0xa0080222, 0x22080f6e, 0x8520fedc, 0x06a34d47, 0x84314b56, 0x56a0209f, 0xdc22084b, 0x5f4b6cf8,
0xcc012108, 0x84298f6f, 0x058f6f46, 0x82fcf921, 0x05374e92, 0x56062b45, 0x4b5608df, 0x21112122, 0x82104b56, 0x4cfa24e4, 0x50009407, 0xa37007cf,
0x65938427, 0xfe21070d, 0x0d934c20, 0x26402922, 0x7009376f, 0x5e441d23, 0x12824b08, 0x57089843, 0x936f09cf, 0x20476f06, 0xea435682, 0x09974e07,
0x43540621, 0xdf6f0c07, 0x43a28627, 0x974e0503, 0xb89a8306, 0x085a46f3, 0x2010824d, 0x08be42dc, 0x70055b46, 0x5284313b, 0x42083b70, 0xbf72056e,
0x2a8b4f07, 0xd370a286, 0x579a840a, 0x0c270a3b, 0x25000d00, 0x18002240, 0x2b095d8a, 0x02010357, 0x005f0002, 0x4f000200, 0x0d2c2882, 0x21140c00,
0x2b180604, 0x22231501, 0x09ad7818, 0x96ba0436, 0xa067af66, 0x0393f891, 0xaf67a00c, 0x0428fb66, 0x91f893d8, 0x83082758, 0x40272d57, 0x02010024,
0x01038601, 0x00020200, 0x53825782, 0x02005f36, 0x014f0200, 0x060a0c00, 0x010d0005, 0x1606040d, 0x1632132b, 0x08107918, 0x8c352322, 0x22061776,
0x820c0396, 0x8357835d, 0x72898268, 0x0229051b, 0x006009a8, 0x4024000d, 0x21b38321, 0x5a840085, 0x02211d82, 0x21b7825f, 0xb28c0200, 0x3335032e,
0x35363632, 0x14113311, 0x0a230606, 0x0221b187, 0x23b1836c, 0x28fbd804, 0xd74a6a82, 0x22578409, 0x18234026, 0x830f9d5f, 0x8e0020be, 0x190120b2,
0x2508e622, 0x15333316, 0xb3872404, 0x826c0221, 0x875983b3, 0x000229b3, 0x04feff3a, 0x003a0476, 0x30351360, 0xfb3c043a, 0xfd8a03c4, 0xfb3a0428,
0x00039ec4, 0x86af82fd, 0x05200853, 0x00070012, 0x40480012, 0x06011045, 0x094c0107, 0x05000301, 0x01025703, 0x05010800, 0x67050007, 0x06231e82,
0x18060704, 0x2b10cf5e, 0x11120000, 0x0c0d0e0f, 0x08090a0b, 0x3a082382, 0x11111107, 0x2b19060a, 0x11330701, 0x37211121, 0x23112101, 0x33032303,
0x04211313, 0xfbb84503, 0x42c602c4, 0xd802aafd, 0xb2e0cc39, 0xfe825cc5, 0xd812051c, 0x3c04c4fb, 0x828afbd8, 0x0180268f, 0x01f3fee0, 0x219682ad,
0xeb8c0300, 0x39001324, 0xae643640, 0x246a8207, 0x0102030b, 0x2b19764c, 0x01238c82, 0x18071737, 0x41072683, 0x012c0809, 0xe475e36c, 0xe7e375e4,
0x75e8e875, 0x21081641, 0x1287f801, 0x75e3e725, 0x82080000, 0x2e7e0869, 0x3604b004, 0x29001400, 0x4a003e00, 0x60005600, 0x8a007500, 0xae40b100,
0x18242e3a, 0x0606060d, 0x1a383907, 0x8a0a0203, 0x5a5b5c5d, 0x070c1959, 0x89020d09, 0x0c036275, 0x696b8000, 0x050c0b03, 0x0101114c, 0x13850103,
0x03031205, 0x15850307, 0x07031409, 0x16850706, 0x02060a01, 0x80020a06, 0x0d020104, 0x7e0d0206, 0x0c0b0110, 0x010e860b, 0x0d0c000d, 0x06010859,
0x060c0000, 0x0f826700, 0x0c0d3c08, 0x0c010f61, 0x57510c0d, 0x3f4b4b57, 0x152a2a3f, 0x86000015, 0x7a7e7f84, 0x6d717278, 0x5765676c, 0x4b5f5760,
0x51554b56, 0x3f4a3f4f, 0x2a434549, 0x363d2a3e, 0x15291534, 0x821c1e28, 0x191322b9, 0x08bf7c17, 0x07150738, 0x27272107, 0x35262635, 0x33363634,
0x17171600, 0x06062715, 0x0f832223, 0x83373721, 0x20332705, 0x07141516, 0x7e181617, 0x0722078a, 0x29823735, 0x177f7518, 0x1522ff82, 0x4f821737,
0x17052323, 0x21488607, 0x4e842737, 0x16323324, 0x3a822117, 0x49843220, 0x05840720, 0x26229d08, 0x02372727, 0x1c5493b5, 0xfe56341c, 0x1e3256fe,
0x5c94541c, 0x0a2141fe, 0x2a226638, 0x24201616, 0x17101a1e, 0x17d70315, 0x241c1a10, 0x2b161420, 0x0a386623, 0x6cfd2422, 0x221f2f2e, 0x01232d2e,
0x222e2e04, 0x20303020, 0x460b2ba2, 0x10290b44, 0x8c34f2fe, 0x171e1f07, 0x1c1a0a1d, 0x12191f2a, 0x3a032725, 0x19122826, 0x1c1c281d, 0x1e171f0c,
0x348a071f, 0x8b503604, 0x2e6b3357, 0x96962468, 0x6b2d6824, 0x4f8c5734, 0x353fa8fe, 0x152a6e20, 0x19151711, 0x13360520, 0x1d1d131b, 0x4f080482,
0x19200536, 0x15111715, 0x35206622, 0x222e0a3f, 0x22303121, 0x232d2d23, 0x21313022, 0x3aa42e22, 0x0e0e3a20, 0xd839213a, 0x453b5654, 0x1b0d1721,
0x15192130, 0x12130d1d, 0x19161c0e, 0x10183021, 0x3b452117, 0x00005456, 0x96000300, 0x1a049d00, 0x41639118, 0x84039624, 0x03877cfc, 0xa1430426,
0xa2e0a2e1, 0x04205f82, 0x0f375f8e, 0x2d403000, 0x03000102, 0x00040101, 0x04006701, 0x04060500, 0x70006705, 0x13211ab7, 0x05a25121, 0xf3590520,
0x01962606, 0x02a2fe5e, 0x21058326, 0x718adafd, 0x739ca120, 0x012d8b82, 0x67010002, 0x05020104, 0x02060301, 0x2073a003, 0x84778a15, 0x84778fdd,
0x85a220e5, 0x900520e7, 0x001324e7, 0x89324035, 0x010626e9, 0x05010704, 0x2deb8308, 0x08090908, 0x08080057, 0x09005f09, 0x446c0908, 0x20ee8b0f,
0x83828225, 0x92f28cf6, 0x85fa8386, 0x116f4188, 0x2e403122, 0x0f8b7718, 0x05238b82, 0x82570405, 0x05042206, 0x2095825f, 0x077c5604, 0x08101124,
0x93181e06, 0x81830c3a, 0x8908da41, 0x23fa8479, 0xa2a2a2e0, 0x00205a82, 0x3622fb93, 0xe5413340, 0x01082611, 0x06070706, 0x27068257, 0x095f0706,
0x07060701, 0x7f41fc9b, 0x23fc8c07, 0x7cfc8403, 0xf541868c, 0x96888405, 0x11f94187, 0xff4187a5, 0x0806410b, 0xfd217b89, 0x23878cda, 0xa1a1a2e1,
0x20061041, 0x120b4206, 0x3c001724, 0x0d423940, 0x010a2613, 0x08090908, 0x27068257, 0x0b5f0908, 0x09080901, 0x42130d72, 0x93841314, 0x9b8e8f95,
0x88a1a121, 0x6405209d, 0x3508061f, 0x000f0036, 0x002b001f, 0x00450037, 0x10664069, 0x0809020b, 0x02090802, 0x01010c80, 0x0503010d, 0x0f690301,
0x05030e07, 0x0a040106, 0x00690405, 0x0908000a, 0x4218080a, 0x383a1091, 0x202c2c38, 0x00101020, 0x38453800, 0x3d404245, 0x2c393b3c, 0x32362c37,
0x08192030, 0x11200f45, 0x2008dd45, 0xd7481806, 0x80431808, 0x4506200e, 0x3524067c, 0x20333634, 0x132c0b8a, 0x07222326, 0x33023e23, 0x17161632,
0x0aa74218, 0x7594f732, 0xc16f6fc2, 0x71c17476, 0x7a74c171, 0x2a2a3636, 0x01210382, 0x2908866a, 0x999a2c2a, 0x4d09582d, 0x02824d7b, 0x04092408,
0x93f79036, 0x9191f893, 0xf79394f7, 0xc7766890, 0x75c87775, 0x7576c975, 0x34c076c7, 0x35352926, 0x87342629, 0x02fe2907, 0x7a4ab2b2, 0x4a7a4848,
0x2505df42, 0x0400003c, 0x33410474, 0x0a042412, 0x410a0904, 0x09201233, 0x20063341, 0x20334102, 0x41424425, 0x413b3d40, 0x0e2a5233, 0x26222302,
0x16332726, 0x46183233, 0x33410b35, 0x4182201e, 0x5824072e, 0x2c9a992d, 0x202c3341, 0x053141d2, 0x00b2b222, 0x04200082, 0x080a6742, 0x27001b32,
0x58003700, 0x06005540, 0x06070807, 0x010a8008, 0x0b050c01, 0x01020303, 0x01046903, 0x02090d02, 0x07020607, 0x00080067, 0x00590800, 0x61000808,
0x00390882, 0x1c282851, 0x0010101c, 0x28372800, 0x2f323437, 0x1c2a2c2e, 0x22261c27, 0xb37d1820, 0x420e200a, 0x02201254, 0x16837d18, 0x0606132b,
0x27262223, 0x33021e23, 0x49471832, 0x94f7220d, 0x063242d8, 0x862a0121, 0x142a2e08, 0x6a52526a, 0x50095614, 0x804d4d80, 0x0e3d4250, 0x42e2fe21,
0xbe2a1031, 0x52606052, 0x47477a49, 0xfe82497a, 0x2008a771, 0x08fb871e, 0x2223256f, 0x02030421, 0x05070800, 0x00020520, 0x020c1907, 0x17180106,
0x0f111416, 0x02080d0e, 0x004c0406, 0x07010805, 0x69070500, 0x03000104, 0x00060101, 0x06006701, 0x59060202, 0x02060600, 0x0602005f, 0x28284f02,
0x36283728, 0x18111827, 0x09171118, 0x012b1d06, 0x17371716, 0x33171607, 0x07062315, 0x06270717, 0x35231507, 0x27072726, 0x2be88237, 0x37363335,
0x36173727, 0x02333537, 0x0e254518, 0x47880234, 0xa248a241, 0xdede0c32, 0x489e2e0c, 0x604d3f9e, 0x07823b51, 0x820b2f21, 0x30440810, 0x41a048a0,
0x636f6049, 0x3f633838, 0x3939643f, 0x48033f64, 0x48a42d09, 0x5e523ea0, 0x489c3a50, 0xdc0c2aa0, 0xa02a0cdc, 0x47439c48, 0xa040505e, 0x082ea448,
0x3ad2fed6, 0x663f3f67, 0x3f663939, 0x003a673f, 0x30080082, 0x00160102, 0x04980300, 0x001a0036, 0xb67f002a, 0x00020712, 0x4b4c0106, 0x58500ab0,
0x06002940, 0x06000007, 0x01020072, 0x01088602, 0x07010905, 0x2afb8506, 0x57000101, 0x00000104, 0x82036001, 0x5001240a, 0x832a401b, 0x0607232b,
0x2ca18000, 0x1640592c, 0x00001b1b, 0x291b2a1b, 0x77822123, 0x82111921, 0x0a183e00, 0x002b1b06, 0x14151616, 0x15070606, 0x15231533, 0x35233523,
0x022e3533, 0x36363435, 0x0e854433, 0x94ae0232, 0x4d7c4756, 0xc060c0c0, 0x477d4ec0, 0x3f589355, 0x360a0941, 0x91543604, 0x54844f57, 0xd250a60b,
0x0ba450d2, 0x574f8555, 0x905c5491, 0x002708fb, 0x04000078, 0x00ce0338, 0x00310021, 0x1b47404a, 0x04030207, 0x0306011a, 0x01050109, 0x01004c03,
0x01060506, 0x7d008005, 0x300808a7, 0x01060107, 0x00690603, 0x05020205, 0x05050059, 0x02006102, 0x22510205, 0x22312222, 0x26442730, 0x0810112c,
0x012b1c06, 0x27071305, 0x27373427, 0x45cf8501, 0x3228084b, 0x06270117, 0x27272223, 0x3210eb41, 0x16ac0176, 0x07010a58, 0x23d8fe04, 0x58945627,
0x82559358, 0x535b2ad4, 0x10023001, 0xc8121f1d, 0x35de8af5, 0xfe16ce03, 0x19c60454, 0xfe022a1d, 0x39682bd2, 0x51518e57, 0xe182578e, 0x2e013228,
0x08010104, 0xe98d9cfe, 0x8c000122, 0x242fc182, 0x1c003604, 0x25402800, 0x00020a11, 0x1801044a, 0x2d15c940, 0x13111123, 0x1b060526, 0x021e012b,
0xab821415, 0x13272627, 0x37211721, 0x05994321, 0x34353b08, 0x37373636, 0xa9aa6c02, 0x4c5a6a65, 0x01202a6e, 0x68fc5038, 0x20380150, 0x5a4c6e2a,
0xaaa9656a, 0x9d240414, 0x6054a8ad, 0xfe453f72, 0x018282f2, 0x723f450e, 0xada85460, 0x7082129d, 0x2c288787, 0x3b403e00, 0x05121926, 0x4c378683,
0x00070108, 0x01068507, 0x01010500, 0x69010002, 0x03020104, 0x82570203, 0x03022e06, 0x0203005f, 0x00004f03, 0x2b002c00, 0x279c8325, 0x06092725,
0x16002b1d, 0x07209c82, 0x9007114c, 0x822620a6, 0x323324a7, 0x84261716, 0xc7022f08, 0x28333981, 0x635f2c32, 0x483b5f36, 0xb48a2868, 0x3b47673b,
0x5f63365f, 0x3328322c, 0x046f8139, 0x495e6036, 0x0b112a59, 0x603d6f7b, 0x2bc08935, 0x6f3d6035, 0x2a110b7b, 0x605e4959, 0x01348a82, 0x00006400,
0x36044c04, 0x18001500, 0x07121540, 0x02490002, 0x0021b982, 0x231c8276, 0x2e140015, 0x09285218, 0x26070223, 0x20838302, 0x828d8336, 0x032708ae,
0x7d3869ab, 0xc4b3b1c6, 0x4769387d, 0x30307963, 0x36046379, 0x6e447143, 0xd2fdfefb, 0xfb0001d4, 0x4371446f, 0x82686864, 0x00002860, 0xffd00001,
0x82e003e8, 0x084b5d67, 0x02091331, 0x018801d0, 0x0278fe88, 0xfd220214, 0x82d4fdde, 0x00012272, 0x2c8f8284, 0x00620556, 0x40230006, 0x01010120,
0x0a916f02, 0x00850224, 0x99830101, 0x00062308, 0x04121106, 0x012b1806, 0x01330113, 0x4a010123, 0xc16801e3, 0xfee048fe, 0xfd6403c6, 0xfa8f046f,
0x7784039e, 0x00053308, 0x04c2010a, 0x009903a5, 0x00210019, 0x002b0025, 0x4b67032e, 0x585009b0, 0x01021440, 0x272a0600, 0x000c0303, 0x0401010e,
0x0105010f, 0x4b1b4c04, 0x1b860bb0, 0x1b8b0320, 0x1b850220, 0x379a0c20, 0x379a0f20, 0x379a1020, 0x379a1220, 0x379a1320, 0x379a1620, 0x37981720,
0xda90f684, 0x00875920, 0x08051a41, 0x010d3122, 0x0c000003, 0x00690003, 0x0104000c, 0x0068040c, 0x01020501, 0x090f0a59, 0x0b100603, 0x05070e08,
0x2508aa58, 0x01020061, 0x37415102, 0x822b2006, 0x0d062221, 0x183c9005, 0x20078e70, 0x203c855f, 0x20328206, 0x2032824f, 0xb4a6820c, 0x820f206b,
0x206bae38, 0x206bb710, 0x206bb112, 0x206bb713, 0x206bb116, 0x206bb517, 0x2b3e4140, 0x08081e42, 0x262a402b, 0x1a222226, 0x2e00001a, 0x262b262d,
0x2228292b, 0x24252225, 0x1a211a23, 0x1e1f2021, 0x001b1c1d, 0x24180019, 0x06112424, 0x339f1819, 0x16142609, 0x37363233, 0x09874b17, 0x27015d08,
0x13230723, 0x11011333, 0x27131123, 0x17073337, 0x02330701, 0x231d3da8, 0x4a3b3728, 0x31213c49, 0x56352116, 0x34345a39, 0xc1fe375a, 0x4222ad22,
0x02935293, 0xb0f54220, 0xb6aa4aaa, 0x8e4820fc, 0x17169903, 0x5e58222a, 0x1215585e, 0x6b37332a, 0x376a4a4a, 0x717131fe, 0x39fec701, 0xf3380387,
0x01f7d0d4, 0x0200ec92, 0x00003b00, 0x62057504, 0x0b000700, 0x24402700, 0x03251182, 0x67030201, 0xc3b31805, 0x0104240b, 0x62000100, 0x10260595,
0x2b1c0606, 0x887e2121, 0x83012005, 0xda3d0807, 0x2c0161fe, 0xa0016e01, 0x2d01d3fe, 0x83017dfe, 0x9ac8049a, 0x009d38fb, 0x01030104, 0x03bd03c2,
0x00210099, 0x0037002f, 0x400a0240, 0x07011614, 0x08012d03, 0x02040507, 0x4c030801, 0x20238215, 0x0558434b, 0x02002b2f, 0x59020305, 0x01060500,
0x03050703, 0x25918269, 0x08070108, 0x89820969, 0x01000423, 0x23088304, 0x00610001, 0x52438a82, 0x05252407, 0x82060201, 0x8d02202d, 0x0100242d,
0x82010959, 0x84612035, 0x232c83b7, 0x4058500c, 0x0f205fae, 0x5fa83282, 0x5fb11020, 0x5fab1220, 0x5fb11320, 0x5fab1620, 0x5faf1720, 0x1a414020,
0x091c4325, 0x3c3e0e2f, 0x21282124, 0x232a232a, 0x1f060a21, 0xf2f6182b, 0x4727200c, 0x250805c0, 0x26071732, 0x15062223, 0x16171614, 0x06041516,
0x33112323, 0x14151632, 0x15160706, 0x15232302, 0x35363233, 0x08862616, 0xbd039b08, 0x3e654f5a, 0x2a4c3226, 0x4a38293a, 0x59425548, 0x3d30243b,
0x402f3126, 0x72fe4441, 0x767f4a63, 0x25305d46, 0x3e565668, 0x12292843, 0x45482c32, 0x0c023829, 0x302a3b4a, 0x25202729, 0x333c1710, 0x29354334,
0x1b1f2129, 0x3c131322, 0x013d423c, 0x293d36c7, 0x5c130832, 0x238d1201, 0xa025a126, 0x00002b22, 0xff0f0002, 0x0597044a, 0x002a007b, 0x404e0039,
0x0227284b, 0x01180402, 0x35360207, 0x0706030b, 0x02004c03, 0x06070109, 0x00690702, 0x00010006, 0x00690106, 0x02820003, 0x0400652d, 0x08610504,
0x3e050501, 0x822b4e04, 0x392b2549, 0x3032382b, 0x29374682, 0x26242526, 0x1b090a26, 0x1204002b, 0x06021015, 0x26262223, 0x83062327, 0x10352207,
0x32f18212, 0x16141117, 0x36363233, 0x26023435, 0x07062223, 0x4a213627, 0x14830548, 0x11376c08, 0x03232626, 0x620c0129, 0x4d778131, 0x0801346a,
0x9e6c8422, 0x4bc0ce94, 0x3f445088, 0x430c3337, 0xde70acba, 0x01fd6575, 0x2960c22c, 0x4d3c5144, 0x381d1026, 0xe37b0522, 0xfef095fe, 0xa4bdfef4,
0x533b845c, 0x01d3f76e, 0x22070100, 0x8fb0fd2b, 0xdeed926e, 0xab2601d8, 0xdd756652, 0xa65372fd, 0x37a49c86, 0xf9012d46, 0x82000d0f, 0xff663cff,
0x057c04e7, 0x00230079, 0x40480030, 0x02020345, 0x011b0001, 0x112f0102, 0x82020602, 0x080125fe, 0x06020205, 0x3b06dc68, 0x04010761, 0x004d3e04,
0x61030606, 0x3f030300, 0x24254e03, 0x2b2d0000, 0x30253024, 0x22274182, 0x25251123, 0x441a0909, 0xeb4105fe, 0x33162506, 0x11231521, 0x2626fe84,
0x37363435, 0x49492635, 0x18132005, 0x08076859, 0x3736326d, 0xa3940211, 0x6834704e, 0x3e676147, 0x2602416d, 0x9dce3cab, 0xa163cc95, 0x5f737d97,
0x5e1172af, 0x7a3a3e81, 0x267d4e5b, 0x54427905, 0x6a343a65, 0x3d663b59, 0x4ce3fd8f, 0x6fbd736c, 0x0620c49c, 0x5a6a9b1e, 0x43fd5997, 0x4b4a8a59,
0x2f334b7b, 0x0000dc01, 0x4d000100, 0x610455fe, 0x0f006205, 0x23402600, 0x01020506, 0x82490104, 0x86012116, 0x2307d859, 0x4e003802, 0x0f2d0b82,
0x13130e00, 0x2b180904, 0x11071101, 0x20038223, 0x05ad4c2e, 0xac61043d, 0xdb9cacd7, 0xa2e5756e, 0x09f96205, 0xf9750616, 0xe40316a1, 0x72b36a03,
0x826ab974, 0x00240838, 0xffcb0002, 0x05e30370, 0x0034007b, 0x40370042, 0x00010234, 0x2e3b4203, 0x0603141d, 0x011c0002, 0x4c030201, 0x01232482,
0x82650102, 0x6103262e, 0x03030104, 0x2a73843e, 0x21330034, 0x25191b1f, 0x41170905, 0x17220d2e, 0x1243021e, 0x06143005, 0x27222306, 0x33161637,
0x34353632, 0x84272626, 0x41372095, 0x0223053d, 0x19141506, 0x08070b1d, 0x02272653, 0x564aa5e2, 0x534e7a3f, 0x67672765, 0x5940846e, 0xb3647647,
0x5693cc74, 0x554f803e, 0x6866276d, 0x5b40856f, 0xb0667647, 0x352ec76d, 0x2f2a9f79, 0x059d7b35, 0x7e34387b, 0x3d49292b, 0x22343a2d, 0x4f6f5124,
0x582c824e, 0x48865a83, 0x2a2c7e6f, 0x3c158248, 0x51262233, 0x814d506e, 0x5981592c, 0x9afd4988, 0x40382857, 0x57263935, 0x363f3529, 0x82cd833a,
0xee3b08f3, 0xd9057c04, 0x1f000f00, 0x63003800, 0x446406b1, 0x01225840, 0x232d0704, 0x2e040502, 0x03050601, 0x0101084c, 0x07030109, 0x0a690301,
0x04000701, 0x69040705, 0x06000500, 0x52060502, 0x202f10e1, 0x00101020, 0x20382000, 0x2c2f3137, 0x1824262a, 0x350a6f55, 0x2b17090b, 0x440006b1,
0x15121600, 0x23060214, 0x35022622, 0x4f4e1234, 0x16162110, 0x21086244, 0x75473233, 0x0366080b, 0x8282f703, 0xf9aaa9f7, 0xaaf98383, 0x6060c18c,
0xc08b8cc1, 0x8bc06060, 0x4b366a52, 0x63505046, 0x4a5c5360, 0x61886945, 0x95575395, 0xa7d9055b, 0xb0b0e1fe, 0xa7a7e2fe, 0xb0b01e01, 0x6aa71f01,
0x9495ed8a, 0xec8989ec, 0x8aed9594, 0x642a278d, 0x7e837e39, 0x5e66437e, 0x7879ac58, 0x040059ac, 0xd5015600, 0x0b415804, 0x2c350806, 0x6c003400,
0x446406b1, 0x01256140, 0x4c010806, 0x06050107, 0x02050602, 0x01010a80, 0x0403010b, 0x0c690301, 0x010d0401, 0x09040809, 0x00080069, 0x06080506,
0x82561867, 0x2d2d370f, 0x10102021, 0x342d0000, 0x2e30332d, 0x28292a2b, 0x2c202627, 0x16412c21, 0x410e200a, 0x16200816, 0x0c4f5718, 0x210e664f,
0x1d823207, 0x23170737, 0x23152327, 0x33151711, 0x34353632, 0xeae50223, 0x8deb8889, 0x08d5838d, 0xb8718d45, 0x71b86969, 0x6868b771, 0xfa1f71b7,
0x8aa93c47, 0x76763793, 0x7b3c3b3d, 0xed8ad905, 0x89eb8c8d, 0x8d8ceb89, 0x6f648aed, 0xbc7272bf, 0x72bc6e6e, 0x7d6fbf72, 0x11513caa, 0x02d7d7ec,
0x29a65b34, 0x82004f2e, 0x012c0800, 0x54021100, 0x63058c04, 0x3e001c00, 0x0b1b3b40, 0x03010307, 0x01004c01, 0x01030003, 0x02048000, 0x84000002,
0x06020708, 0x57060303, 0x136b0783, 0x00002608, 0x1c001c00, 0x30008211, 0x09111717, 0x012b1d06, 0x26032313, 0x23373435, 0x82018203, 0x030725de,
0x11231323, 0x4e080182, 0x13132135, 0x861e6e04, 0x07040212, 0x066f885b, 0x800f0104, 0xc08bc91a, 0x5665db02, 0xf1fc6305, 0x2142af01, 0xd0fd343f,
0x48383002, 0x4ffe1c38, 0x6afd9602, 0xfd799602, 0x002602da, 0x03850002, 0x05180362, 0x000f00dd, 0xb137001f, 0x18446406, 0x412bcf5f, 0x0235256e,
0x5c5c9824, 0x97555698, 0x55975d5d, 0x302f4f2e, 0x4f2f2e4e, 0x3a08822e, 0x904cdd05, 0x4c906261, 0x6062924c, 0x2a814c8f, 0x563d3c54, 0x3d542b2b,
0x822b543d, 0x032e08fe, 0x92003b00, 0xcc047504, 0x22001900, 0x3e002b00, 0x01183b40, 0x24250102, 0x010e1b1c, 0x0d020306, 0x0300020b, 0x01194c03,
0x010c4a01, 0xb1734900, 0x00692206, 0xe05e1803, 0x2727290d, 0x0604272b, 0x07012b1a, 0x2308b550, 0x37270727, 0x08067545, 0x1716323b, 0x01170037,
0x06222326, 0x27241506, 0x32331601, 0x04353636, 0x312cab75, 0x4e7ed57c, 0x5cab3b8d, 0x7c302cab, 0x8e4d7ed4, 0x0cfdab3b, 0x4ca80131, 0x538d535a,
0xfe316602, 0x2a098458, 0x3bab7004, 0xd57e4d8e, 0x822d307c, 0x8d3b2e2a, 0x7dd47e4e, 0xfdab2c31, 0xa8014c89, 0x23298231, 0x58fe4c5a, 0x002a0783,
0x01020100, 0xaf02a8fd, 0xa1820807, 0x18401121, 0x390ce794, 0x012b1809, 0x02231133, 0x07aeae01, 0x00a0f608, 0x00020200, 0xae0234ff, 0x2b824e06,
0x211b4a18, 0x841a0921, 0x8311203e, 0xae002142, 0x2d080082, 0x37fd4e06, 0x37fd78fe, 0xa2000200, 0xd103e7ff, 0x1c00dd05, 0x3f002600, 0x18203c40,
0x0a0b0c0d, 0x03020701, 0x02000102, 0x01004c02, 0x0c550105, 0x22768207, 0x18010459, 0x2708f3aa, 0x00001d1d, 0x251d261d, 0x1b273a82, 0x0606242a,
0x19242b18, 0x08087d35, 0x27073578, 0x36341137, 0x16163233, 0x07021415, 0x33161411, 0x11150602, 0x34353636, 0x2b032326, 0x8431325a, 0x4d91624e,
0xabd24290, 0x417c54a1, 0x4f59d4cc, 0x6e814068, 0x24853431, 0x4b201989, 0x69ba608c, 0xc4019f5c, 0x7842dfd0, 0xd0fead4e, 0x48b6fe9e, 0x86d20443,
0x79cafe93, 0x3e4381d4, 0xab000100, 0x05040000, 0x0b004a05, 0xb04b4500, 0x40585029, 0x00000017, 0x9f834d38, 0x055f0130, 0x3b010101, 0x0303004d,
0x1b4e0339, 0x148c1740, 0x03000023, 0x2319855f, 0x11094059, 0xa2180083, 0xfc341176, 0xfe5101b8, 0xaffeb8af, 0x4a055101, 0xfca0ccfe, 0xa076038a,
0x778a5f82, 0x86001322, 0x21227785, 0xb3180107, 0x218207e0, 0x084d3828, 0x01020201, 0x8185095f, 0x39050528, 0x4b1b4e05, 0xa0822db0, 0x238c288a,
0x05000024, 0x2885005f, 0x821f4021, 0x231c8237, 0x67020103, 0x2187568c, 0x40595925, 0x8412130e, 0x290482b5, 0x1f090a10, 0x1133012b, 0x55631521,
0x11232405, 0x83213521, 0x85012003, 0x86c488c0, 0xbe2a08c8, 0xa074fea0, 0x3c01c4fe, 0xa08c01a0, 0x2a000200, 0x8e04e8ff, 0x16007a05, 0x53001e00,
0x181b5040, 0x05040213, 0x02011206, 0x89470500, 0x002a0808, 0x07800102, 0x01080401, 0x06040506, 0x00050069, 0x00050200, 0x03010067, 0x00590103,
0x61030101, 0x03010300, 0x00171751, 0x8a191700, 0x122609c9, 0x06091322, 0x13822b1a, 0x11211128, 0x36323316, 0xd0483337, 0x11272605, 0x06330036,
0x08158207, 0x23262643, 0x11015a03, 0x71a0fc23, 0x34c688c3, 0xb7f03f62, 0x198aeda6, 0xfe110123, 0x56026cc2, 0x055a9c30, 0xd0fefe7a, 0xf6fdf4fe,
0x7d5d655e, 0x85cb7491, 0x01d0fc01, 0xfe544e02, 0x27ec0112, 0x0400002f, 0x20048300, 0x24bf8294, 0x001c000a, 0x080d822b, 0x0a40883a, 0x0706010e,
0x00080117, 0xb04b4c02, 0x40585015, 0x00060024, 0x00060800, 0x07010c69, 0x0b5f0107, 0x040a0405, 0x4d1a0101, 0x02080800, 0x0203095f, 0x021b0202,
0x28401b4e, 0x0b262687, 0x04040205, 0x2d844d1a, 0x010a6125, 0x8d1f0101, 0x5924082a, 0x1d1d2240, 0x00000b0b, 0x2c2d2e2f, 0x2a1d2b1d, 0x1c0b2325,
0x15161c0b, 0x0c0d1314, 0x09000a00, 0x17070d24, 0x3805a753, 0x35262223, 0x11052110, 0x16230323, 0x23111512, 0x33133311, 0x11350226, 0x0cf05604,
0x03235a08, 0x04211521, 0x8a7a771d, 0x0501788d, 0xd9e1d5fe, 0x90150708, 0x0808d5e5, 0x2a970114, 0x25291111, 0x2a112a25, 0xea01f436, 0x7a0516fe,
0xead2d7e6, 0xbd01d6e6, 0x049efa18, 0xcbfe3389, 0x056bfd8c, 0x3972fb62, 0x029f2101, 0x89456895, 0x4488706f, 0xa6708844, 0x989efb97, 0x08008200,
0x3b000539, 0x8404ca01, 0x0d009103, 0x1f001900, 0x30002700, 0x49404c00, 0x0304010b, 0x07094c01, 0x010b0102, 0x02010302, 0x03010c69, 0x0504010d,
0x0e690403, 0x0005020a, 0x83570500, 0x00053507, 0x02060860, 0x50000500, 0x292b2c2e, 0x20222325, 0x1c1d1e1f, 0x23057d42, 0x0f212118, 0x4c05b74c,
0x01200a95, 0x07016818, 0x21112129, 0x33112101, 0x4c003311, 0x01210fa7, 0x088b4c67, 0xc07a0131, 0xfecca7a7, 0x010901f2, 0x41f8fe95, 0x4c8dfcce,
0x07200c9c, 0x240a824c, 0x9a349211, 0x06ac4f33, 0x5b017222, 0x3a08904c, 0xfe640001, 0xff4c0494, 0x0007009c, 0x17b04b41, 0x17405850, 0x02010103,
0x18700102, 0x21099b78, 0x0b820060, 0x401b5023, 0x21198316, 0x188f8501, 0x82b65921, 0x078270d1, 0x21153331, 0x4c043335, 0x02b118fc, 0x94feb186,
0x4a6a0801, 0x210805b7, 0xe7ffceff, 0xdd053104, 0x24001800, 0x52405500, 0x03020b0c, 0x15202102, 0x08030403, 0x03040101, 0x6363144c, 0x02083506,
0x0401004a, 0x00010400, 0x02010580, 0x02040300, 0x01066903, 0x04210e82, 0x18068259, 0x2907cb62, 0x00001919, 0x23192419, 0x50821c1e, 0x25121729,
0x2b180607, 0x4a111200, 0x8b0805c2, 0x07112307, 0x37113727, 0x05173715, 0x33363615, 0x10353612, 0x07062223, 0x33161611, 0x61c07103, 0x66b585bc,
0x42afa90c, 0x40d5c0f1, 0x9739ebfe, 0xeb853758, 0x292f7e4c, 0x37044474, 0xfbfedefe, 0x848dfaa2, 0x5429046b, 0x0b017373, 0x7266c717, 0x524beb85,
0xcac847fc, 0x475b9001, 0x453d02fe, 0x02000000, 0xb100f6ff, 0x0d055604, 0x20000600, 0x35403800, 0x03061314, 0x00030502, 0x03010101, 0x00004c02,
0x04850003, 0x03010301, 0x20058177, 0x5ff31859, 0x07073409, 0x20072007, 0x0514252f, 0x012b1906, 0x11070107, 0x5a030721, 0x352705b7, 0x27262634,
0x49021e37, 0x3f08075a, 0x7cab0227, 0x02d9a0fe, 0x0b52da2e, 0x60599963, 0x8b5160a4, 0xcf7d0755, 0x8bea8978, 0x0c8dde83, 0x017ad302, 0x2e02da60,
0x574dfed9, 0xa360528d, 0x64985761, 0x8e0e9b0c, 0xea8b80de, 0x80d17989, 0x0432a782, 0xc2012700, 0x99037804, 0x21001900, 0x32002f00, 0x1d514103,
0x02132b05, 0x03060001, 0x29000c01, 0x9055020e, 0x201a830e, 0x551a8a03, 0x35960a8f, 0x58500f23, 0x20359640, 0x921a8610, 0x9912206b, 0x99132035,
0x99162035, 0x97172035, 0x509c9435, 0x1041084b, 0x552f2005, 0x09271787, 0x080b0602, 0x5504070e, 0x29251585, 0x0d06090a, 0x19845504, 0x05213a83,
0x0a835505, 0x0f2067b2, 0x67acd782, 0x30821020, 0x122067b2, 0x132067af, 0x162067b5, 0x172067af, 0x402067b3, 0x42293241, 0x402f080a, 0x001a1a22,
0x2f313200, 0x282c2d2e, 0x55252627, 0x0f20106b, 0x32246b55, 0x15151613, 0x13331123, 0x33353526, 0x07012311, 0x55180133, 0x0121146f, 0x066f55e1,
0x3b097429, 0x3b099b57, 0x5535fe58, 0x8a301e6e, 0x01db4c63, 0x6874fec7, 0x39fedb49, 0x00ec9201, 0x032f0082, 0xc201ef00, 0x9903d603, 0x27001900,
0x54033000, 0x163606ff, 0x07000102, 0x00090103, 0x0905011c, 0x0501010e, 0x0104010f, 0x3d584c05, 0x201d8306, 0x201d8d03, 0x231d8502, 0x4058500c,
0x0f203b99, 0x3b951d86, 0x3b9c1020, 0x3b9c1220, 0x3b9c1320, 0x3b9c1620, 0x3b9a1720, 0xae92cc84, 0x080eff43, 0x01063122, 0x01020104, 0x0a800204,
0x00070301, 0x07005903, 0x09000108, 0x00690007, 0x01050009, 0x00670509, 0x01201c82, 0x410ac945, 0x25240649, 0x03020a07, 0x03202a83, 0x85592a8b,
0x04062108, 0x02200a82, 0xb3088159, 0x820f2065, 0x2065a8dd, 0xb42c8210, 0xab1220cb, 0xb7132065, 0xab162065, 0xb5172065, 0x41402065, 0x0042252c,
0x18402308, 0xa0490000, 0x20212806, 0x001d1e1f, 0x18180019, 0x51080ea9, 0x57590ae0, 0x0604210c, 0x2407e050, 0x15163233, 0x07465626, 0x43e00121,
0x023214e9, 0x85303c09, 0x4238784e, 0x45585679, 0x3e3d3330, 0x56593230, 0x40ba3913, 0xc0c0c80d, 0x4041c701, 0x29a32529, 0x0100002c, 0xc2022400,
0x3e058d04, 0x09cb8918, 0x01134008, 0x01010701, 0x02340224, 0x3dfe7235, 0x40033efe, 0x02fefe01, 0xfe8b017e, 0x04000075, 0xca013400, 0x91037d04,
0x0e000800, 0x22001a00, 0x3d404000, 0x0102030a, 0x0605010b, 0x00690501, 0x82070006, 0x0c6724b9, 0x82040208, 0x8357202d, 0x00043107, 0x02020960,
0x50000400, 0x1c1e1f21, 0x1718191a, 0x2305a14a, 0x0d212113, 0x250ba14a, 0x33112105, 0xa24a3311, 0x8204200b, 0x331133f5, 0x6f013532, 0x646b5977,
0x7e017760, 0xce41f8fe, 0x964a7d01, 0xb2fc3407, 0x31313a4a, 0x652f0284, 0x8061c701, 0xfec701e6, 0x4a5a0172, 0x7b250589, 0xb3a0fe47, 0x20af8600,
0x20af8484, 0x4baf8714, 0x00280a57, 0x05040003, 0x0c670403, 0x8306554b, 0x09554b07, 0x2520af9d, 0x8f114c4b, 0x4b7220af, 0xa6200e40, 0xad20af8b,
0x200c334b, 0x21b08413, 0x00820003, 0x05b00423, 0x08988262, 0x0b000722, 0x29402c00, 0x0102080b, 0x01000104, 0x0402054c, 0x00010003, 0x01010385,
0x04047601, 0x090a0000, 0x09255418, 0x1606062c, 0x3501012b, 0x23012101, 0x03821301, 0x42032308, 0xa402befc, 0x51fcdc01, 0xceb0039f, 0x03a060fd,
0xfb620540, 0xda03e83e, 0x62059efa, 0x29fc75fe, 0x6a83bf04, 0x01340031, 0x037f04c2, 0x00190099, 0x00310028, 0x48fb0339, 0x1b3b05ae, 0x02021024,
0x0901110a, 0x05012202, 0x03010204, 0x06010305, 0x234c0503, 0x444a0101, 0x22840698, 0x228d0120, 0x22890020, 0x58500c23, 0x20459e40, 0x9922870f,
0xa1102045, 0xa1122045, 0xa1132045, 0xa1162045, 0x9f172045, 0x96ef8545, 0x0e0f46cc, 0x00392c08, 0x01020a01, 0x0a010f59, 0x0902010d, 0x0069020a,
0x09060409, 0x04010857, 0x03050107, 0x10670504, 0x03030e0c, 0x0006010b, 0x84690603, 0x0003260b, 0x03000061, 0x074c5c00, 0x820f3321, 0x203b833f,
0x203b8401, 0x823b9000, 0x8759202c, 0x060b2238, 0x203a8602, 0xbcc4820c, 0x820f207b, 0x207bb640, 0x207bbf10, 0x207bb912, 0x207bbf13, 0x207bb916,
0x207bbd17, 0x336e4140, 0x08086e42, 0x33284025, 0x00292a32, 0x32363800, 0x30393339, 0x2a31292e, 0x26272831, 0x1f202125, 0x1b1c1d1e, 0x0019001a,
0x5f262418, 0x814605e5, 0x5832200c, 0x253c0a7c, 0x15231533, 0x35232723, 0x33031713, 0x32253337, 0x06141516, 0x13112323, 0x26343532, 0x02210782,
0x0ae65fa1, 0xa2462c20, 0xc7013a08, 0x013d3838, 0x773584bc, 0xfc35087b, 0x77776051, 0x84726b59, 0x01313a4a, 0x09eb5ff8, 0x3807fd5f, 0x6c6c3270,
0x1636012d, 0xab7ee5fe, 0x65818061, 0x6cfec701, 0xfe4766b3, 0x08a744a0, 0x99037922, 0x2226ad82, 0x35002d00, 0xa7443d03, 0x10123105, 0x2c040201,
0x02112a2b, 0x03020305, 0x03030501, 0x8307814a, 0x89012019, 0x85002019, 0x500c2319, 0x33954058, 0x19860f20, 0x10203391, 0x12203398, 0x13203398,
0x16203398, 0x17203398, 0xb0843396, 0x4d44968e, 0x4a2f200e, 0x0e39053c, 0x04030d09, 0x0302010b, 0x0f690204, 0x0c06080a, 0x01070305, 0x05030005,
0x270d866a, 0x00620003, 0x52000300, 0x2006c245, 0x21308229, 0x64520404, 0x82238607, 0x89592020, 0x0507222e, 0x20308602, 0xb29e820c, 0x820f2067,
0x2067ac36, 0x2067b510, 0x2067af12, 0x2067b513, 0x2067af16, 0x2067b317, 0x29324140, 0x3f080a42, 0x2e2f2840, 0x1a1b2323, 0x32340000, 0x352f352e,
0x2d232d23, 0x26272829, 0x1f212425, 0x221b221a, 0x2406e943, 0x2b190610, 0x18e94300, 0xda430120, 0x11212b07, 0x35211533, 0x27071133, 0xe5430137,
0x18fe311d, 0x59777760, 0x5de8036b, 0x6770f4fe, 0xc2fc891b, 0x2117e243, 0xd8439901, 0x33332607, 0x2d3f5101, 0x07e14355, 0x34000428, 0x6e04c201,
0xa3829903, 0x49004026, 0xa7035100, 0x3705df43, 0x0001021a, 0x033d3e0b, 0x1f000703, 0x29070601, 0x01030e28, 0x0a010f06, 0x23054b4e, 0x4058500b,
0x03202183, 0x6d4e2191, 0x20439d0a, 0x2043a00f, 0x99218610, 0xa0122087, 0xa0132043, 0xa0162043, 0x9e172043, 0x1b0a4143, 0x080e2f44, 0x090f3224,
0x0b03030e, 0x00590300, 0x02080c0b, 0x000b0700, 0x00070069, 0x06070106, 0x02050d69, 0x020a0001, 0x09840a01, 0x61020125, 0x68020104, 0x2c210916,
0x213a820b, 0x34840304, 0x348d0320, 0x01020223, 0x823c8359, 0x040a2132, 0x02210c82, 0x06176851, 0x0f206db5, 0x6dafee82, 0x33821020, 0x12206db5,
0x13206db2, 0x16206db8, 0x17206db2, 0x40206db6, 0x522c4441, 0x243b09ab, 0x00001a1a, 0x4b4d4e50, 0x42444547, 0x3f1a401a, 0x3335393b, 0x2b2d3032,
0x4e002426, 0x102005c1, 0x241cad52, 0x14151620, 0x05b45d06, 0x0ad6c718, 0x23233428, 0x36323337, 0x2a643435, 0x00332106, 0x20073765, 0x063d4d26,
0x08163c68, 0x4e96012d, 0x3c2c2733, 0x4c2a4759, 0x3513291a, 0x5b332e1c, 0x231b0827, 0x1c242f31, 0x3922182c, 0x779dfd4d, 0x60646b59, 0x3a4a4577,
0x4e843131, 0x270813fd, 0x3a293042, 0x32390408, 0x1f1f4f3c, 0x30171622, 0x28305329, 0x14272225, 0xfe362515, 0xc7016596, 0x47668061, 0x00b3a0fe,
0x22086f48, 0x82990369, 0x003226e9, 0x0343003b, 0x058f4403, 0x01021230, 0x2e2f0900, 0x05030e24, 0x010f0001, 0x6f480105, 0x20198209, 0x20198903,
0x23198502, 0x4058500c, 0x0f203395, 0x33911986, 0x33981020, 0x33981220, 0x33981320, 0x33981620, 0x33961720, 0x968eb084, 0x3d0e3f44, 0x0c070d2a,
0x00090303, 0x09005903, 0x0002060a, 0x69000901, 0x0102040b, 0x02050108, 0x0a840501, 0x6c020121, 0x24210c4e, 0x21328209, 0x2c840304, 0x2c850320,
0x01020223, 0x82348359, 0x05082129, 0xad0b2f44, 0x820f205d, 0x205da7c6, 0xad2b8210, 0xaa12205d, 0xb013205d, 0xaa16205d, 0xae17205d, 0x4140205d,
0xd8412414, 0x20403708, 0x00001a1a, 0x3d3f4042, 0x34363739, 0x311a321a, 0x22232a2c, 0xeb432021, 0x430e2006, 0x062721eb, 0x21073307, 0x43023e35,
0x362008db, 0x3629dc43, 0x55264c97, 0xfe07d34e, 0x225558ec, 0x2b202529, 0x431c2a15, 0x439cfd2f, 0x48321fd2, 0x5d4e2938, 0x54323447, 0x2524435f,
0x211a162a, 0xca432122, 0x118a080c, 0xe2ff62ff, 0xd6054e05, 0x16000f00, 0x24001d00, 0x33002b00, 0x41003b00, 0x4f004700, 0x5b005500, 0x6b006300,
0x7a007300, 0xa5008100, 0x333ba240, 0x2426282b, 0x191d2022, 0x020c1014, 0x35414701, 0x02070431, 0x4d52595e, 0x810b1004, 0x787a7c7f, 0x6b6c7175,
0x0c4b6066, 0x4c041000, 0x02010112, 0x00008501, 0x03860010, 0x01080201, 0x07020407, 0x05060969, 0x0f160403, 0x0c140e15, 0x0b0a0713, 0x0d670a04,
0x10100b01, 0x0682590b, 0x100b3a08, 0x10011161, 0x5c51100b, 0x5056565c, 0x00484850, 0x65727300, 0x5c635c64, 0x565b5663, 0x5057585b, 0x54555055,
0x484f4853, 0x4344454f, 0x3e3f4042, 0x2f37383d, 0x1617182e, 0x08bf8215, 0x17260e24, 0x002b1706, 0x14151204, 0x22230402, 0x34350224, 0x07332412,
0x07060722, 0x36331716, 0x26272637, 0x0b830423, 0x04373623, 0x250e8217, 0x06002726, 0x08822107, 0x82042721, 0x26212220, 0x21078226, 0x05833521,
0x26211526, 0x16160127, 0x27212483, 0x22068333, 0x83153335, 0x84332006, 0x3736223d, 0x25078301, 0x33331632, 0x57843632, 0x82070421, 0x2038832c,
0x094d8336, 0x0126033e, 0xfecbcb5d, 0xfececea3, 0x01cbcba3, 0x102ace5d, 0x7e498f06, 0x6f815070, 0x100a8e48, 0x44b3cffe, 0x76446242, 0x683ec201,
0x67b1443c, 0x0441f7fc, 0x2c060401, 0x0c04506a, 0x01032d6a, 0x38420406, 0x01067efc, 0x01867e32, 0x340174c8, 0x28fc2903, 0x58374104, 0x4a062c62,
0x867e2806, 0x298c7c50, 0x2d034a03, 0x41395761, 0x722cfd04, 0x0491477c, 0x0650060c, 0x4690080c, 0x1efe747c, 0x66b44446, 0x7b024575, 0x45b16679,
0xd6056440, 0xcfa2fecd, 0xcda2fecf, 0xcf5e01cd, 0xcd5e01cf, 0xb0980250, 0x1f070620, 0x2b029aae, 0x242c4d6c, 0x9b877fa3, 0x6c4d2a26, 0xb9a8fe19,
0x25888c63, 0x8b263031, 0x4eb96389, 0x06d282e8, 0xd2032926, 0xbafe7f7f, 0x3550b864, 0x86908423, 0xd4062478, 0x7b2703d4, 0x23878d83, 0x64b85035,
0x2303e8fe, 0x02029eaa, 0x0323a8a0, 0x6c4e2f5b, 0x9da57b18, 0x4e6c1883, 0x0000212d, 0x17010200, 0xd103ca01, 0x0b009103, 0x4f001f00, 0x12154c40,
0x1e000102, 0x02020701, 0x0207004c, 0x03070203, 0x090a0b80, 0x00000503, 0x67000501, 0x02000100, 0x67020107, 0x0a897018, 0x02060830, 0x4f040304,
0x1f0c0c0c, 0x1c1d1f0c, 0x39621516, 0x0c102405, 0x552b1f06, 0x21350b07, 0x26272313, 0x23033735, 0x14151603, 0x13230707, 0x02131333, 0x085b5419,
0x3d1a9732, 0x4901030d, 0x01024e3d, 0x541a3c0b, 0x5d034346, 0x3a075a54, 0x30373ee7, 0x3b01c5fe, 0x17303826, 0xfec701e7, 0x003501cb, 0x014f0003,
0x849a04ca, 0x851320b7, 0x01172db9, 0x011a0001, 0x011d0102, 0x4c030203, 0x9b82b484, 0x7118b688, 0x0d230e9c, 0x8303070c, 0x1e1f27b7, 0x18191b1c,
0xf0621516, 0x8e0e200a, 0x660520b9, 0x172d06e1, 0x37173327, 0x23170733, 0x01230727, 0x31b98851, 0x8c4287a5, 0x81ba5c01, 0x475f5f4a, 0x6c498e80,
0xba87476d, 0x70fe372f, 0xd5379001, 0xd1aaaad5, 0x00c8c8f6, 0x28b38204, 0x039404c2, 0x000b0099, 0x22b38217, 0x4724022b, 0x2f2c058f, 0x02070100,
0x010b5901, 0x080a0c07, 0x0722bc82, 0xd3556702, 0x010d3207, 0x06010905, 0x67060500, 0x0505010d, 0x00006100, 0x083c5305, 0x820b2921, 0x20318535,
0x82318c01, 0x84592024, 0x095f232e, 0x30820206, 0xb2075859, 0x500f2367, 0x67ac4058, 0xaf06f84e, 0xaf1220cf, 0x06f84e67, 0x162067af, 0xf84e67af,
0x4167ad06, 0xba462a32, 0x29162a09, 0x1f212327, 0x1b1c1d1e, 0x065b581a, 0x0e212422, 0x28055b58, 0x34352622, 0x16323336, 0x0bae5715, 0x21079642,
0xbf6f2604, 0x32332905, 0x00033536, 0x58525258, 0xfe200383, 0x3a08a042, 0x42873503, 0xfe5c018c, 0x36363028, 0x36353130, 0x80420230, 0x816c6c7e,
0x43b06d7f, 0xa6420561, 0x5b883005, 0x5a5b5c5c, 0x00005b5b, 0x014f0005, 0x438704ca, 0x2c08065b, 0x00290021, 0x404e0032, 0x02011f4b, 0x0b4c0101,
0x0c050209, 0x00030608, 0x67000501, 0x0e01010d, 0x01030201, 0x010f6902, 0x03040403, 0x34068259, 0x0a5f0403, 0x03040207, 0x2e304f04, 0x25272b2d,
0x181a2224, 0x0b5e4317, 0x5e431020, 0x08434b16, 0x43157b70, 0x01211071, 0x15707083, 0x210d7d43, 0xe16376fe, 0x0964700a, 0xe3820420, 0xab04583f,
0x11009903, 0x2b001d00, 0x30023700, 0x01250f40, 0x01010405, 0x4c020500, 0x00020405, 0x059c4349, 0x9c432e20, 0x090a2405, 0x820c0702, 0x020722eb,
0x0a9b4369, 0x23096943, 0x0306080b, 0x29066a43, 0x4058500b, 0x07090a29, 0x30830103, 0x30a10120, 0x30820c20, 0x0f2066b1, 0x102066af, 0x122066b4,
0x132066af, 0x162066b4, 0x172066af, 0x964166b2, 0x0a97432a, 0x2f33352b, 0x292a2b2d, 0x14232428, 0x2e008311, 0x0e272413, 0x002b1f06, 0x17161607,
0x18262607, 0x430802c6, 0x17200c9d, 0x200cde60, 0x0aa34300, 0x5f900431, 0x40103931, 0x4e383e16, 0x52525754, 0x46c1fc58, 0x9e20074a, 0x3306e160,
0x3630bc01, 0x34313035, 0x11023036, 0x32310934, 0x7d333819, 0x200bb043, 0x0ce0603d, 0x5b5b3f39, 0x5b5a5b5d, 0x0003005b, 0x04c2014f, 0x00990399,
0x003b0021, 0x42950347, 0x1a3405c0, 0x0d030124, 0x09021625, 0x04053003, 0x310a0103, 0x04010c01, 0x55050476, 0x21830641, 0x218c0220, 0x218a0020,
0x58500c23, 0x20439d40, 0x9921860f, 0xa0102043, 0xa0122043, 0xa0132043, 0xa0162043, 0x9e172043, 0x96e88443, 0x0e3d4ec6, 0x0e312308, 0x0d020207,
0x00590203, 0x0204080d, 0x030d0903, 0x00090069, 0x0a09010a, 0x02050b67, 0x000c0001, 0x09840c01, 0x61000124, 0x40770106, 0x0d2b250a, 0x0203070e,
0x02203384, 0x0022338e, 0x3b835901, 0x0c223182, 0x32860206, 0xb2820c20, 0x0f206bb4, 0x6bae3882, 0x6bb71020, 0x6bb11220, 0x6bb71320, 0x6bb11620,
0x6bb51720, 0x3e414020, 0x081e422b, 0x221c403d, 0x45464722, 0x41424344, 0x3d3e3f40, 0x223b223c, 0x2d24243a, 0x21232a23, 0x771d060f, 0x00202284,
0x7a0ab35a, 0x05200da7, 0x210aad5f, 0x8b77f502, 0x43012119, 0x7a08bd5a, 0xfd210bba, 0x07694445, 0x211a9477, 0xc97a5001, 0x483c2011, 0x00260528,
0x01020000, 0x5f7a0120, 0x022b2e07, 0x1610400e, 0x05030501, 0x06010204, 0x05524402, 0x3f057344, 0x0107002f, 0x00070100, 0x08020080, 0x00590203,
0x03010408, 0x69030805, 0x06000500, 0x67060501, 0x01211b83, 0xe9851859, 0x06884409, 0x01082324, 0x29820402, 0x298b0220, 0x86000021, 0x43072029,
0xc4590745, 0x2361b005, 0x4058500f, 0xc54a61a6, 0x2061b005, 0x4a61a912, 0x61b005bf, 0x61a91620, 0xae05b94a, 0x24204161, 0x2109ea42, 0x0082110c,
0x2a231925, 0x7a092123, 0x104e245f, 0x11232206, 0x1c4a7a21, 0xb0c86c26, 0x110141b0, 0x081ba542, 0x3399142e, 0x00c701c7, 0x01200102, 0x03c103ca,
0x00090091, 0x40340013, 0x03010831, 0x09860302, 0x01050401, 0x00040100, 0x01010667, 0x57010202, 0x01270682, 0x01075f02, 0x18020102, 0x890f734b,
0x065e4393, 0x02219d82, 0x21818529, 0x07858801, 0x845d0321, 0x8434206e, 0x82002005, 0x00022200, 0x060743e4, 0x3e001c32, 0x56405900, 0x00010109,
0x04020a33, 0x14212201, 0x192d8182, 0x04020501, 0x0101324c, 0x01084b01, 0x321c8200, 0x69010004, 0x03000400, 0x67030402, 0x05020107, 0x82590205,
0x02210806, 0x0a066105, 0x05020502, 0x36000051, 0x252f3134, 0x001e2023, 0x111b001c, 0x25242412, 0x2b1b060b, 0x05597800, 0x300bc65e, 0x23353732,
0x06153327, 0x06242306, 0x37272223, 0x05895616, 0x3914cf7b, 0x355f4301, 0x3c2c3458, 0x3529261d, 0x3a3a4736, 0x0754242d, 0x2d47239c, 0x3c442502,
0x78c2341a, 0x366a4b74, 0x26281a19, 0x57605f57, 0xdb348515, 0x7b4a1513, 0x7c0818c4, 0xff070000, 0x04c9ffcc, 0x009d05e4, 0x002a0025, 0x0035002f,
0x0040003b, 0x403b0045, 0x41444538, 0x38393f40, 0x31323337, 0x2a2b2e2f, 0x21222329, 0x171a1d20, 0x10141516, 0x0a0d0e0f, 0x02030407, 0x01002401,
0x01004c01, 0x00850100, 0x1c760000, 0x0602181b, 0x07002b17, 0x06270717, 0x23150706, 0x27262635, 0x26372707, 0x27373435, 0x36361737, 0x15333537,
0x37171616, 0x15160717, 0x211b8203, 0x26820303, 0x1704052d, 0x15062525, 0x05052724, 0x82013536, 0x1313211e, 0x25362982, 0x86338f04, 0xc2458846,
0xc2708b70, 0x87488745, 0x48873232, 0x0e854488, 0x48882008, 0x34e23388, 0x7f08528c, 0x01348d51, 0x227cfe1b, 0xd7fe2901, 0x227d0322, 0x2901d7fe,
0x82ecfc22, 0x0923081b, 0x348c527e, 0x3602e6fe, 0x5176516e, 0xb50e6f57, 0x576f0eb5, 0x6f527651, 0x526f7a79, 0x6f565176, 0x82b9b90e, 0x75523f11,
0x017b6e53, 0x0d503d1f, 0x5101affe, 0xb83d4f0d, 0xacab52c1, 0x505b5a52, 0x5952abab, 0x1882e1fe, 0xfe530127, 0x3d500dad, 0x27e282b8, 0xfc000200,
0xcc03ca01, 0x35065f4d, 0x092f4032, 0x08030205, 0x03040601, 0x04006706, 0x04000100, 0x12836701, 0x5f000328, 0x00020207, 0xb1420003, 0x23352911,
0x33112315, 0x33353315, 0x2407054e, 0xa2412002, 0x20028241, 0x058e5001, 0xd4ca0127, 0xbdc701d4, 0x05db4dbd, 0x0200002a, 0x00005000, 0x36046004,
0x092f6082, 0x1e402100, 0x02050607, 0x01060001, 0x1801004a, 0x080db4a5, 0x0213142d, 0x132b1806, 0x21110101, 0x21110209, 0x02060250, 0x03f0fb0a,
0xfe82fe84, 0x02f80286, 0xfece0168, 0x0298fd32, 0xfe56012a, 0x8358feaa, 0x00043acf, 0x04e8ff00, 0x008006b0, 0x000d0006, 0x001b0017, 0x08544057,
0x4a030201, 0x26d8820b, 0x0002020a, 0x84000304, 0x820720d9, 0x07002ed9, 0x07090800, 0x010c6708, 0x09060609, 0x3f068257, 0x005f0609, 0x4f060906,
0x07071818, 0x1b180000, 0x191a1b18, 0x10131617, 0x0d070d07, 0x090a0b0c, 0x06235682, 0x820d1211, 0x01112a95, 0x21112101, 0x01012511, 0x36068233,
0x23061413, 0x35262221, 0x35072135, 0x58021521, 0xaefe5802, 0x8302f4fd, 0x822c08a9, 0x5e5001d6, 0xbcfe2d37, 0x0c02372d, 0x04b0fe5e, 0xfd54022c,
0x02d2fdac, 0x7a015a2e, 0xccfd86fe, 0xc6fb3402, 0x2d37372d, 0xa2a2f6ea, 0x022ac383, 0x380060ff, 0x42055005, 0xbf820f00, 0x25402822, 0x18288382,
0x14151617, 0x0b111213, 0x094c1d19, 0x01010030, 0x09000176, 0x010f0006, 0x1606030e, 0xaf18012b, 0x86820781, 0x36341131, 0x01270133, 0x01010701,
0x37010117, 0x83ec0401, 0xd8fa2160, 0x04290583, 0xf4fe8626, 0x0186f4fe, 0x2104840c, 0x0e820c01, 0x37420525, 0x84befb2d, 0x2d422c1d, 0x8a8efe37,
0x0e01f2fe, 0x89f6fe8a, 0x22988226, 0x86e8fe02, 0x000a2697, 0x40290016, 0x26928526, 0x0d0e0f10, 0x8f0c090c, 0x06082598, 0x0a010a00, 0x0921988c,
0x27929002, 0x58fda4fc, 0xfa02a802, 0x02239299, 0x95820288, 0x05274190, 0x4205c823, 0x228f8300, 0x8a254028, 0x0c01278f, 0x4c010100, 0xca430102,
0x2abe8207, 0x2209000a, 0x2b170603, 0x41210209, 0x032d1221, 0xfda80220, 0x2da4fc58, 0x032d3737, 0x268e9386, 0x78fd7efd, 0x41042d37, 0x2208191f,
0xff1e0004, 0x049204e1, 0x000200d9, 0x000f0005, 0x40470013, 0x02010444, 0x01074a01, 0x00010601, 0x53000103, 0x0826084b, 0x02020501, 0x06825705,
0x5f02053b, 0x02050200, 0x0310104f, 0x10000003, 0x12131013, 0x0b0e0f11, 0x03050308, 0x2a488205, 0x16060902, 0x0101132b, 0x42020925, 0x34080662,
0x35032111, 0x021e1521, 0xfe3a023a, 0xfeccfefa, 0x3e5803cc, 0x2d8efc2d, 0x8148043e, 0x2102bafc, 0x48fdb802, 0xfe780177, 0x2db4fd88, 0x012d3e3e,
0x97eefe26, 0x29ff8297, 0x6aff0900, 0x82054c00, 0x9b82f204, 0x001fa308, 0x003f002f, 0x00660056, 0x00860076, 0x40a80096, 0x3c4453a5, 0x1c242c34,
0x03020814, 0x6b737b83, 0x074b5b63, 0x8b930c09, 0x03121102, 0x0001134c, 0x07160a17, 0x07140515, 0x03000203, 0x04060867, 0x101a0203, 0x05180e19,
0x0c02090c, 0x0b0d0f67, 0x011b0903, 0x12091112, 0x01110068, 0x00571101, 0x60011111, 0x01110100, 0x77878750, 0x57676777, 0x30404057, 0x10202030,
0x87000110, 0x8f958796, 0x7786778d, 0x677d7f85, 0x6f756776, 0x5766576d, 0x405d5f65, 0x4f554056, 0x3046484d, 0x383e303f, 0xea182036, 0xe5420a80,
0x421c2005, 0x173012e5, 0x15150622, 0x33331614, 0x35353632, 0x33232634, 0x32230fa6, 0x86111516, 0x82112036, 0xa6012036, 0x87668736, 0x8621202f,
0x1e052776, 0x2d37372d, 0x0583b0fa, 0x17113c25, 0x83941117, 0x10c42404, 0x8e101818, 0x83d62009, 0x17112413, 0x836c1018, 0x7afb2121, 0x36892292,
0x8328fd21, 0x6803211e, 0x04252a83, 0xfc2d37f2, 0x24608322, 0x372dde03, 0x88628296, 0x9594203a, 0x11172309, 0x1983fcfe, 0x11e80125, 0x9dacfe17,
0xb6fe2130, 0x00211f89, 0x17461800, 0x40332d0e, 0x00010430, 0x03060507, 0x03000103, 0x109d8718, 0x08083a08, 0x0b080000, 0x090a0b08, 0x07000700,
0x08111111, 0x132b1906, 0x21012135, 0x05012115, 0x3b152135, 0x6e019f01, 0x60fe2d01, 0x8b0192fe, 0xc8048301, 0x9a38fb9a, 0x9d03c804, 0x2f6a829d,
0xa2000100, 0x0e04e2fe, 0x1600b605, 0x41404400, 0x49276282, 0x06050600, 0x82010185, 0x07863186, 0x01080501, 0x04050304, 0x03010967, 0x57030202,
0x03240682, 0x0a0b5f02, 0x02210b82, 0x233f824f, 0x15160016, 0x30050c51, 0x11121111, 0x2b1f060c, 0x01211101, 0x21112501, 0x22018435, 0x82113311,
0x21152a87, 0x01af0215, 0xfe4afe5f, 0x2305824a, 0xfe2a01d6, 0xae200382, 0x02310685, 0xfda7fe3e, 0x020102fd, 0xe09a5901, 0xfe64019a, 0x2006829c,
0x20978400, 0x2c9782fe, 0x001600d2, 0x163c403f, 0x0a4a0001, 0x25158201, 0x04050085, 0xb87a8605, 0x1804200c, 0x210e8c82, 0xc3571415, 0x830b200a,
0x86212092, 0x11212184, 0x08ec8c18, 0x01251126, 0xa1fe0e04, 0xfe228385, 0x9183aed6, 0xa1260384, 0xcf03b601, 0x8482a7fe, 0x019cfe23, 0x08068264,
0x0259014b, 0x06000102, 0x5100e7ff, 0x2d05c904, 0x48003b00, 0x59005500, 0x73006600, 0x75407800, 0x0d060108, 0x06070a01, 0x150c690a, 0x1607030b,
0x0503090f, 0x69050700, 0x0314040e, 0x02101200, 0x02001102, 0x02131769, 0x11010111, 0x23078359, 0x03610111, 0x3a080b82, 0x67675101, 0x3c3c5656,
0x73670001, 0x6c6e7267, 0x5a5c6163, 0x59565956, 0x50525758, 0x483c494b, 0x4042473c, 0x3032383a, 0x25272b2c, 0x1a1c1d1f, 0x0d0e1214, 0x3b000709,
0x43183b01, 0x40180589, 0x35210954, 0x5f401823, 0x3533210c, 0x090b4f18, 0x15161627, 0x34353315, 0x061c7d36, 0x23060628, 0x35011523, 0x86522634,
0x33162506, 0x36323321, 0x2d06bf60, 0x15011506, 0x23013533, 0x15060622, 0x17841614, 0x1a830420, 0x33822620, 0x16161428, 0x46c60333, 0x02854677,
0x0988d620, 0x937e7e21, 0x20fe2614, 0x34223a22, 0x2204824a, 0x827e5e02, 0x35492105, 0xfe240482, 0xa5fed6a5, 0x4a210d83, 0x220d8234, 0x82499302,
0x210e8305, 0x4d935702, 0x1494d020, 0x88550121, 0x203d824e, 0x25428335, 0xd0d0fdfe, 0x6f87abfe, 0x5c847e20, 0x3b082483, 0xff020000, 0x041e00c4,
0x00dc05ec, 0x001a0011, 0x174b404e, 0x0302020b, 0x05020a18, 0x194c0204, 0x49010209, 0x00000106, 0x03000203, 0x00020067, 0x04020504, 0x05010767,
0x57050101, 0x05230682, 0x82005f01, 0x124f340c, 0x12000112, 0x161a121a, 0x0d131415, 0x0006080c, 0x18100111, 0x080805bb, 0x2306143c, 0x01011121,
0x34113311, 0x11013336, 0x35211121, 0x04350101, 0x37372d88, 0xfd90fd2d, 0xce5402ac, 0x46012d37, 0x7efeb0fe, 0x7a0186fe, 0x2d37dc05, 0x372d66fc,
0x5402a4fe, 0x05825602, 0x372d0c2f, 0xb203f6fb, 0xfede8efd, 0xde82fe82, 0x21b38200, 0xc74c1d01, 0x00052d06, 0x4030000f, 0x0101072d, 0x01040300,
0x0421a282, 0x20a18200, 0x06b31805, 0x8260200a, 0x000223be, 0x00851150, 0x1e219582, 0x05077b2b, 0x2709c94c, 0xf8fe2502, 0x8d01ce41, 0x2105bd4c,
0x5570ca01, 0x06bd4c05, 0x00053408, 0x04ca0134, 0x009103a5, 0x0015000d, 0x001f0019, 0x40590022, 0x021b1e56, 0x0107010c, 0x4c020400, 0x06090e0a,
0x0c010502, 0x00570100, 0x0004000c, 0x8668040c, 0x01310812, 0x0b0f5f00, 0x05070d08, 0x01000703, 0x1a1a4f00, 0x0e0e1616, 0x1f1a2122, 0x1c1d1f1a,
0x19161916, 0x150e1718, 0x1111150e, 0x11141112, 0x1d061013, 0x0de7752b, 0x23272122, 0x1805fa5b, 0x210b694b, 0xd9750966, 0xcd012105, 0x2d06ea75,
0xb0f54290, 0xb6aa4aaa, 0x8e48b0fd, 0xed545403, 0x514b180b, 0x4b002015, 0xbc200653, 0x132fd384, 0x2a402d00, 0x01060107, 0x02054c01, 0x83060102,
0x6c6819c5, 0x04602508, 0x06000203, 0x82053d41, 0x820720a1, 0x550120a1, 0x21200caa, 0x2005c171, 0x2493872e, 0x41f8feed, 0x2b848dce, 0x72fec701,
0x03000000, 0xc2013400, 0x2806f77c, 0x0123001d, 0x0107b5d0, 0x5174820a, 0x24270502, 0x02050709, 0x850a0104, 0x0604257d, 0x080a0059, 0x042d7a82,
0x0068000a, 0x61040606, 0x04060400, 0x07f75051, 0x0a242b8a, 0x570a0006, 0x0020a182, 0x06273182, 0x085f0006, 0x82030304, 0x07c35b0e, 0x0f2456a7,
0x23405850, 0x102056a5, 0x56a72a82, 0x56a91220, 0x56aa1320, 0x56a91620, 0x56a81720, 0xcb50ffa4, 0x23103009, 0x11202122, 0x23132212, 0x13111411,
0x421f060b, 0x252c0eba, 0x22230614, 0x33113526, 0x32331411, 0x73430682, 0x08bb4205, 0x4753ef2a, 0x57415147, 0x8e014258, 0x2e113142, 0x55564694,
0xfe330147, 0x016b6bd2, 0x4239fe2e, 0x70080540, 0x01240002, 0x058d0467, 0x0003004a, 0x402c000e, 0x08090a29, 0x02050607, 0x00000049, 0x01000401,
0x02040067, 0x00570402, 0x5f020404, 0x04020103, 0x16114f02, 0x05101111, 0x132b1b06, 0x01211521, 0x01070121, 0x21012701, 0x042e2135, 0x04acfb54,
0x0145fe54, 0x3dfe72c6, 0x01723efe, 0x0444fec6, 0x9a4a0554, 0x65fed0fe, 0xfe8c017e, 0x9b017e74, 0x8357829a, 0x86b22073, 0x00092473, 0x84234026,
0x01052172, 0x01237382, 0x82570001, 0x5f012221, 0x21098202, 0x0a824f01, 0x0300032d, 0x17060311, 0x2135132b, 0x82020915, 0x2067836c, 0x085475a2,
0x9ab0042a, 0x0181fd9a, 0x7f02fefe, 0x00236183, 0x54060103, 0x2f33081b, 0x1e023800, 0x01161440, 0x01240309, 0x04050905, 0x18050102, 0x240c794e,
0x04010630, 0x2fe68301, 0x07020080, 0x00590203, 0x03010807, 0x69030709, 0x200a4978, 0x12225400, 0x01072423, 0x57298302, 0x0520053a, 0x20057378,
0x26298600, 0x0204065f, 0x43000100, 0x63b3072b, 0x58500f23, 0x2063a740, 0xb32b8210, 0xaa122063, 0xb6132063, 0xaa162063, 0xb4172063, 0x25264163,
0x28095f43, 0x2434360e, 0x1c111121, 0x8d4e1823, 0x78242028, 0x3a54153e, 0x7870201c, 0x45541043, 0x7896201a, 0x00380f4a, 0x01e10002, 0x03a303c2,
0x00210099, 0x40d1012d, 0x0405160d, 0x01030103, 0x390bdc56, 0x04020026, 0x00590203, 0x02050904, 0x03040103, 0x02060867, 0x00070001, 0x09840701,
0x0e2f5118, 0x01042023, 0x20288402, 0x22288602, 0x83570100, 0x56268230, 0x55a90cd0, 0x58500f23, 0x2055a340, 0xa9278210, 0xa6122055, 0xac132055,
0xa6162055, 0xaa172055, 0x42fca155, 0x2d210a74, 0x08a2562c, 0x25025118, 0x15211323, 0x06357023, 0x2d022322, 0x28192655, 0x640a016c, 0x64f6fe64,
0x1a5f4264, 0x33480130, 0x33339ffe, 0x03006101, 0xc201e100, 0x5742c803, 0x39002505, 0x35403800, 0x300c5942, 0x06020105, 0x02010301, 0x01076903,
0x01000001, 0x33068259, 0x04610001, 0x00010001, 0x24242451, 0x232a232a, 0x1e060821, 0x21223e5a, 0x915e0604, 0x07f04b09, 0x36323323, 0x21cc9b35,
0x37629b01, 0x62442007, 0x51180825, 0x072019b7, 0x20063f62, 0x0832625c, 0xca20df86, 0x2c2fdf84, 0x0e023400, 0x01161040, 0x04050308, 0x5a040102,
0x05200e19, 0x053cd382, 0x02008000, 0x59020306, 0x01070600, 0x03060803, 0x00080069, 0x04080104, 0x05010069, 0x2313f645, 0x02010623, 0x02202983,
0x195a298b, 0x5a052008, 0x61b00d19, 0x58500f23, 0x5a61a640, 0x61b00519, 0x61a91220, 0xb005195a, 0xa9162061, 0x05195a61, 0x204161ae, 0x09784324,
0x23210c25, 0x5a2a1121, 0x242a2919, 0x15232306, 0x32331123, 0x267e1516, 0x1cb04207, 0x525f9d2d, 0x55784139, 0x3d67465e, 0x4336323c, 0x6f341a83,
0xc701a648, 0xbb5a4647, 0x0000342c, 0x19000400, 0x7804c201, 0x2d088743, 0x40360245, 0x0a011610, 0x02040503, 0xa9420701, 0x01053c0d, 0x03010c02,
0x6903020a, 0x07000a00, 0x67070a01, 0x0601010d, 0x0b590100, 0x82080901, 0x06092108, 0xa5431083, 0x06cb4b08, 0x090b2924, 0x38920305, 0x38820020,
0x2e823f82, 0x04060823, 0x0adc5f03, 0x67b12f20, 0x58500f23, 0x2067ac40, 0xb2308210, 0xaf122067, 0xb5132067, 0xaf162067, 0xb3172067, 0x2a324167,
0x2d09c742, 0x3d414316, 0x3738393b, 0x11343536, 0x87451311, 0x5c0e2005, 0x874524eb, 0x2305210b, 0x6709b159, 0x01210baf, 0x19604665, 0x21099345,
0xdb597801, 0x45fe2005, 0xe3202b9c, 0x6705005a, 0x003c09d6, 0x01190003, 0x039a04c2, 0x00210099, 0x02350029, 0x3310400a, 0x05162d30, 0x04010604,
0x210ce048, 0x4a18002b, 0x07220a53, 0x93455704, 0x08092b05, 0x0a0b0702, 0x07000502, 0xb95f6705, 0x00252c10, 0x03020403, 0x07080959, 0x82060203,
0x0402214e, 0x964b2382, 0x0a0b2308, 0x974b0305, 0x235fae0a, 0x4058500f, 0x10205fa8, 0x5fae2c82, 0x5fab1220, 0x5fb11320, 0x5fab1620, 0x5faf1720,
0x42261a41, 0x123009d1, 0x31323435, 0x11122e2f, 0x23191111, 0x0c21232a, 0x2024cd42, 0x13046d01, 0x201bbd42, 0x10166d98, 0x211aa445, 0x2a6d1101,
0x0024080d, 0x01190005, 0x038704c2, 0x00210099, 0x003f0031, 0x02500047, 0x16144044, 0x3d030b01, 0x050b0c01, 0x0c010204, 0x080d4f4e, 0x05020021,
0x09590203, 0x0a050207, 0x050b0301, 0x0b006903, 0x0b010c00, 0x060d690c, 0x08000102, 0x84080100, 0x0fae4509, 0x07092a22, 0x32833782, 0x328e0220,
0x59010022, 0x30823a83, 0x65040821, 0x30200b8c, 0x0f2369b2, 0xad405850, 0x82102069, 0x2069b331, 0x2069b012, 0x2069b613, 0x2069b016, 0x4169b417,
0xe5422b38, 0x4e163209, 0x45494b4c, 0x38404243, 0x22122236, 0x2a232b13, 0x084d6d23, 0x511d3361, 0x976c0fe7, 0x1b04431f, 0x14528a20, 0x6c982008,
0x134315ac, 0x5215201a, 0xc66c0c33, 0x00300815, 0xffc50002, 0x050804e7, 0x001f007b, 0x4040002f, 0x0201023d, 0x4c010001, 0x04000100, 0x80040100,
0x00020105, 0x00020100, 0x04010669, 0x59040303, 0x04270682, 0x03006103, 0x19510304, 0x260dcf49, 0x0607241b, 0x6a002b18, 0x062b05d0, 0x16161415,
0x15021e17, 0x18352315, 0x2108e45a, 0xe9183336, 0x4c080f47, 0x85ab5d03, 0x634a923a, 0x323b267d, 0xbd3a5141, 0x3f39432d, 0xb862354d, 0x2540567b,
0x28274025, 0x41262641, 0xc97b0528, 0x59474763, 0x36452c4f, 0x7a4f3125, 0x3c414b55, 0x2e2b3d5a, 0x524e6f49, 0x87fb5790, 0x27264026, 0x42262642,
0x21088227, 0xa3460000, 0x059f4906, 0x38002a2e, 0x1140de01, 0x23262932, 0x07040516, 0x2511854f, 0x02010300, 0xe6826903, 0x5901002f, 0x060b0809,
0x070a0504, 0x05000402, 0x119f4604, 0x1f832020, 0x02050522, 0x9a463287, 0x070a2208, 0x0b9a4604, 0x88002621, 0x9d042022, 0x500f2355, 0x55a34058,
0xa606854f, 0xa61220ab, 0x4f132055, 0x55a6052f, 0x55a61620, 0xa406854f, 0x43fca155, 0x1730098c, 0x37382222, 0x30313536, 0x2a222e2f, 0x1b122a22,
0x20057746, 0x22cd4e1c, 0x15030128, 0x33033523, 0x506d3717, 0x1c38490d, 0x4299ab27, 0x75734899, 0x06c257ba, 0x291a6343, 0xe8fe4801, 0x1901aeaf,
0x536ddfdf, 0x0020080c, 0x6b000100, 0x0404e7ff, 0x2d007b05, 0x3c403f00, 0x02021213, 0x03010701, 0x022a2b02, 0x4c030304, 0x49072049, 0x00230607,
0x82004d3e, 0x6120082c, 0x05050106, 0x004e053f, 0x002d0000, 0x2421262c, 0x09072e25, 0x26042b1b, 0x36343526, 0x022e3736, 0x4306915b, 0x06250664,
0x33211415, 0x06775b07, 0x32331630, 0x06173736, 0xc4c50123, 0x4c7b486a, 0x7e198f56, 0x01240d13, 0x52177515, 0x0b137e19, 0x9e5d1935, 0x5988525f,
0x93500810, 0x6ec07767, 0x43685d5f, 0x19794145, 0x820f127e, 0xff7a37c7, 0x05f003e7, 0x00190062, 0x0b2d4030, 0x16010001, 0x00020215, 0xa4824c02,
0x825f0121, 0x4d382dbf, 0x03020200, 0x03010461, 0x4e033f03, 0x19281582, 0x11271800, 0x19090517, 0x0027b886, 0x21372137, 0x5c000015, 0xa482061d,
0x3608a582, 0x7466c0c0, 0xfdea0101, 0x43031781, 0xfefef6fe, 0x606f7d66, 0x53804280, 0x65198dcd, 0xec7c6eb0, 0x9fd61b01, 0xfe00ff97, 0x6f6ecbe1,
0x634f4380, 0x00006468, 0x56f50002, 0x3122081f, 0x5b53b501, 0x07242914, 0x03020501, 0x80030502, 0x20078843, 0x050f5106, 0xba470682, 0x071d230f,
0xad430205, 0x20249506, 0x0503550c, 0x0f2050a4, 0x50a02b82, 0x50aa1020, 0x50a31220, 0x50aa1320, 0x50a31620, 0x50a81720, 0xed9d4020, 0x2009bc43,
0x073e470b, 0x47257e52, 0xad550f3e, 0x476a201c, 0xa343071f, 0x0c07471a, 0x00820020, 0xd6000222, 0x2d063f67, 0x000e0006, 0x01364039, 0x01030101,
0x0583044c, 0x07068629, 0x03000302, 0x84570003, 0x03002408, 0x8201055f, 0x004f3b0f, 0x0c0d0e00, 0x08090a0b, 0x00060007, 0x08121106, 0x012b1806,
0x03331313, 0x41670323, 0x1c013807, 0x94427573, 0xef029448, 0x018c4287, 0xfe91035c, 0xfe83017d, 0x67c70139, 0x35080743, 0xff4f0003, 0x05fe04f3,
0x00220087, 0x003b0030, 0x3b1640e7, 0x0d101a2a, 0x07080a0b, 0x0e020309, 0x02030001, 0x00010f4c, 0x0ab04b49, 0x17405850, 0x02020105, 0x96826101,
0x4d1f0122, 0x61209283, 0x1b26bb82, 0x4b1b4e00, 0x1e970cb0, 0x1e842020, 0x1e971020, 0x13203d85, 0x3d851e97, 0x1e971720, 0x95953d83, 0x59203882,
0x402b0083, 0x00232313, 0x23373900, 0x822f2330, 0x142126e4, 0x16070612, 0x3970182b, 0x36012407, 0x69061737, 0x69600597, 0x07d24406, 0x15020e22,
0x08f86218, 0x18032321, 0x08087a5a, 0x6c02376e, 0x7a43589f, 0x4a60015e, 0x68419c2a, 0x56c38fef, 0xc47c88d0, 0x478a876f, 0xa1542950, 0x2c53376e,
0x6d3c411b, 0x3d506466, 0x7a455e62, 0x4094624f, 0x8b4e8705, 0x6b805057, 0x9aaefe39, 0xa8ea30c1, 0x5dbd58df, 0x6fa95c60, 0x4757b87d, 0x57426c65,
0x3082548f, 0x4b2d3354, 0x7c403b54, 0xfd60544e, 0x56893f89, 0x483c6d47, 0x00000047, 0x37099f41, 0x002a001c, 0x40e20035, 0x14243512, 0x0305070a,
0x00010802, 0x094c0203, 0x32bc9b41, 0x001d1d12, 0x1d313300, 0x00291d2a, 0x2c1b001c, 0x41170706, 0x0723099a, 0x41060627, 0x02212d94, 0x2b8e41b6,
0x4168fd21, 0x30082988, 0xfef8ff02, 0x05b80445, 0x00360070, 0x40600046, 0x0901105d, 0x03424301, 0x26090803, 0x27070401, 0x04040501, 0x0b01004c,
0x01080901, 0x02006909, 0x05747e0a, 0x03030032, 0x06006106, 0x004d1f06, 0x61000808, 0x1b000000, 0x2f055547, 0x1e050500, 0x37374e05, 0x46370000,
0x3d3f4537, 0x352d5682, 0x25262424, 0x0c262425, 0x042b1d07, 0xc9671826, 0x36343608, 0x17163233, 0x17161411, 0x34351232, 0x22232602, 0x14150206,
0x075b4712, 0x11002025, 0x82210010, 0x02142305, 0xb9182306, 0x87080a38, 0x26261137, 0x51820323, 0x1d070316, 0x7b885e73, 0x6e3da6ad, 0x2c2e234a,
0xa4bf5026, 0x5350bfa4, 0x7636a1bf, 0xb5674927, 0xddfec3fe, 0x3b012501, 0x23013d01, 0xfe596727, 0x111e4e60, 0x3e343033, 0x22180f19, 0x6e5d6221,
0xd55f493f, 0x22e9e1b9, 0x68fefd28, 0x0801016c, 0x4701fc9b, 0xb7feb0ac, 0xb9fef9f9, 0x911a19aa, 0x01df014a, 0x01ab01b3, 0xfe1efeee, 0xfffe874c,
0x433603b3, 0x75607387, 0x2b322a3e, 0x060cb701, 0x0134f282, 0x5c006901, 0x3e024703, 0x26000b00, 0x00002340, 0x57000301, 0x0d48ff18, 0x03005f24,
0x6c180300, 0x07240718, 0x33012b1c, 0x09d27318, 0x8e12022e, 0xa98ea7a7, 0xb13e02a9, 0x82afaf82, 0x01273e82, 0x03070168, 0x18890148, 0x261883b2,
0x012b1807, 0x82211521, 0xfee02427, 0x82890120, 0x01022833, 0x03910066, 0x18080248, 0x2124f761, 0x3f841a07, 0x43831520, 0xe2016624, 0x03831efe,
0x84080224, 0xce82846f, 0x03005708, 0xe7ff1afc, 0x79051804, 0x52004500, 0x57005f00, 0x3a3b5440, 0x06042425, 0x00011905, 0x0f525f06, 0x000b0403,
0x090e4c03, 0x0a0c0602, 0x0b000302, 0x08670006, 0x04050501, 0x04010761, 0x0d4d1f04, 0x010b0b01, 0x01010361, 0x4e012001, 0x5b5d0000, 0x4e505355,
0x4d824648, 0x2625442e, 0x232d2525, 0x0f112316, 0x012b1f07, 0x0cce6818, 0x68182120, 0x322012da, 0x2606ac77, 0x16141506, 0x49213316, 0x33200593,
0x0919158d, 0x332308bf, 0x65373632, 0x16200711, 0x042c0c83, 0xce3cab18, 0x63cc959d, 0xf8fe4447, 0x0c086918, 0x69186620, 0xa6250b24, 0xaf5f3135,
0x23128b72, 0x5ee3e4fc, 0x07296918, 0x8ae80321, 0x184b200b, 0x22072b69, 0x18339c67, 0x21103569, 0x69185442, 0x29250751, 0x975a4675, 0x200f8959,
0x4e69188f, 0x20098709, 0x08008200, 0xa0fd0220, 0xac03f2fe, 0x03008606, 0x47002e00, 0x01234440, 0x4c010304, 0x00020209, 0x00030700, 0x17826707,
0x03060425, 0x18006904, 0x3809b8a7, 0x01020805, 0x054f0106, 0x2d000004, 0x18191b2b, 0x0d0e0f16, 0x052e040c, 0x082b822e, 0x0a110326, 0x012b1707,
0x01113311, 0x17161632, 0x16161413, 0x06221533, 0x14111506, 0x21230606, 0x36322135, 0x34113536, 0x2305d54a, 0x26263411, 0x5c081382, 0x02aea0fd,
0x53a183b9, 0x812e0201, 0x2e827b7c, 0xfd82a454, 0x4a0d02f3, 0x59282956, 0x2a5a4b4e, 0xfd4a5629, 0x07f2fef3, 0x076cf894, 0x7b893694, 0x584b8dfe,
0x582e9a2d, 0x7c95fe4b, 0x1c93398c, 0x85013c42, 0x0d3d715d, 0x5972400d, 0x423b8801, 0x0000931a, 0xffa0fd02, 0x06810217, 0x26938261, 0x4035000b,
0x82050732, 0x030423d1, 0xd1820400, 0x03010130, 0x03030057, 0x06025f01, 0x01030102, 0xc982044f, 0x040b0423, 0x0547610b, 0x0820c584, 0x0520c582,
0x1120c583, 0x0382b382, 0x042ca382, 0x027bfc33, 0xe930fdd0, 0xb6f84a07, 0x9d360383, 0x009f0e06, 0xffff0000, 0xa8fd41fe, 0x0807bf01, 0x3c062300,
0x128240fc, 0x3c060324, 0x078210ff, 0xf8251b82, 0x02a8fda1, 0x211b85af, 0x138250fb, 0xf6212382, 0x220782a0, 0x823c0602, 0xf5042805, 0x014effc1,
0x829005ec, 0x00073275, 0x0010000d, 0x100a4067, 0x0a0b0e0f, 0x01000105, 0x0511484c, 0x98181620, 0x1b2e153a, 0x5015b04b, 0x050f4058, 0x01010203,
0x24835f00, 0x011a0025, 0x96401b4e, 0x5959252f, 0x11130940, 0x10250082, 0x2b1c0706, 0x6e981801, 0x15012c08, 0x11132301, 0xa7c1f501, 0x829803a7,
0xa7702503, 0x84fb7c04, 0xd7260882, 0xbef99005, 0x03834206, 0xb53efd32, 0x7b0535fd, 0x5b024efb, 0x0ffa0300, 0x50024eff, 0x092bb384, 0x5c000c00,
0x0b0c0a40, 0x8a06070a, 0x021321b1, 0x0122bd82, 0x06825700, 0x5f010023, 0x219e8203, 0xae864f01, 0x0d820d20, 0x1983ad82, 0x2a93ac84, 0xb6595929,
0x10111113, 0x861a0704, 0x21a286a6, 0x95820ffa, 0x9e8e1e20, 0x00239a8b, 0x8291fd02, 0x82b4209b, 0x00052b9b, 0x40520008, 0x0607080a, 0x998a0203,
0x00001022, 0x2008b062, 0x87a48200, 0x830b2096, 0x005f2216, 0x05414100, 0x59272590, 0x1013b459, 0x82180702, 0x218b868f, 0x878a91fd, 0x2f08838c,
0xfe74fc03, 0x060804cb, 0x002900a3, 0x00380031, 0x353d4040, 0x262a3134, 0x08171c23, 0x01020407, 0x03020e00, 0x01020f16, 0x004c0202, 0x85030203,
0x00209182, 0x10051119, 0x1b24252b, 0x11121319, 0x16070410, 0x3971822b, 0x24010137, 0x16161127, 0x06061415, 0x35231507, 0x27262606, 0x33161635,
0x90441137, 0x11372205, 0x211d8233, 0x43492517, 0x17770805, 0x11272600, 0x04353636, 0x3507fd08, 0x47fd1f02, 0xbbb3d5fe, 0x81c86ffd, 0x8a875a8b,
0x5dbc9262, 0x56b9bb22, 0x7a8b76a8, 0x97fd69fb, 0x4c1f6050, 0x827b0145, 0x02866a6e, 0x22feb5ce, 0x014701f0, 0xfe16bba9, 0xa6e03d3c, 0x1084cd7b,
0x1502b7be, 0x57ca3435, 0x6502013e, 0x5789ba3e, 0x010c6b9f, 0x0ce5fe1c, 0x0e064456, 0x452e4e6a, 0x55fe1d3b, 0xd4fd2f8d, 0x82808b15, 0xfc2008c9,
0x0391002c, 0x004e04d4, 0x40300013, 0x0401062d, 0x57040103, 0x03020507, 0x00020208, 0x67000301, 0x04271282, 0x01095f01, 0x72010401, 0x072a0c9f,
0x21012b1f, 0x21112311, 0xcb822135, 0x15200384, 0x013c0f82, 0xaec6fc9b, 0x870179fe, 0xae3a03ae, 0x75fe8b01, 0xfe1f02ae, 0x9e8e0172, 0x6ffe9101,
0x9e280383, 0x000072fe, 0xe0f70100, 0x70207782, 0x1b3a7782, 0x3a403d00, 0x0602080a, 0x57060105, 0x0307090b, 0x02040c05, 0x05010003, 0x15836700,
0x5f010629, 0x0102030d, 0x714f0106, 0x11690aa9, 0x10112205, 0x8d84880e, 0x05966c88, 0x01231123, 0x8a8c8237, 0x8c928d8f, 0x3d9a8996, 0xc8fb0200,
0xa403feff, 0x0600e204, 0x60001200, 0x00021840, 0x06000102, 0x05010201, 0x01820203, 0x01014c28, 0x01044a00, 0xcf434903, 0x47152005, 0x032610b6,
0x1b4e031b, 0xd4471a40, 0x40592219, 0x2ec28409, 0x1c070617, 0x0135132b, 0x01350115, 0x18113301, 0x080850af, 0x5e034632, 0xb902a2fc, 0x01aeb4fa,
0xae11feef, 0xeb0115fe, 0xfdc71b04, 0xe5fdb5ec, 0x02ab01c9, 0x9e0bfe40, 0xf2010efe, 0x0200009e, 0x5c0118fc, 0x8003e803, 0x252fc347, 0xd00718fc,
0x038330f8, 0xa2800325, 0x8200a2e0, 0xf7032200, 0x87161968, 0x4b51250c, 0x58501ab0, 0x255ac782, 0x00672705, 0x04050004, 0x78436305, 0x011c2107,
0x2020e482, 0x01243782, 0x67010002, 0x18062951, 0x181065b3, 0x82091769, 0x6e0120ea, 0x0584052c, 0x0c68f725, 0x8780f380, 0x43042303, 0x8683e1a1,
0xfd025008, 0x0231ffbb, 0x00870571, 0x000a0006, 0x080ab508, 0x32020105, 0x2701012b, 0x09370101, 0x02011702, 0x42b6fb47, 0x3efcc203, 0xfb4a0442,
0x424b049d, 0xf202b5fb, 0x019719fe, 0x98a601a7, 0x2afc18fe, 0xfe90e101, 0xfb020017, 0x035200fa, 0x829204a4, 0x820d2047, 0x080b2247, 0x22478404,
0x82150137, 0x8513204a, 0xfafb2a06, 0xfc77034b, 0x09034b89, 0x2c0887df, 0xfe910104, 0x39feb33a, 0x018f0191, 0x240a888f, 0xf7030000, 0x204f82ae,
0x254f8640, 0xb70a0014, 0x53830f12, 0x9b820320, 0x5a86538c, 0x90aef721, 0x8c639e5a, 0x0024086e, 0xff15f204, 0x05bc03e7, 0x00030062, 0x00160012,
0x40420026, 0x0201053f, 0x03011200, 0x02101102, 0x4c030706, 0x04260e82, 0x02010301, 0x0b456703, 0x4d270808, 0x07070108, 0x06006106, 0x4e062006,
0x26171717, 0x11272517, 0x11161117, 0x1d070910, 0x0333012b, 0x01170123, 0x18070606, 0x220818ef, 0x19352105, 0x08104c37, 0xd432f633, 0xf6fda815,
0x31fafe8a, 0x3e022b36, 0x4525c2fd, 0x8a060128, 0xa711d6fd, 0xd80b28f4, 0x26410af3, 0x27284126, 0x40252540, 0xfc620527, 0x750e036d, 0x48ef18fe,
0xa653230c, 0xef553dfe, 0xfc02380e, 0x04feff5e, 0x00ee045b, 0x0015000e, 0x151f4022, 0x11121314, 0x4f0e0f10, 0x063706ad, 0x00030405, 0x00490014,
0x11760000, 0x2b170701, 0x03330301, 0x68051725, 0x252505fa, 0x15010537, 0x08028301, 0xc119ae27, 0x38e30116, 0x460116fe, 0xfee1fe9e, 0x2d01a2fc,
0xfc3f0cfe, 0xfd5e0392, 0xfcb90247, 0x02ea02a2, 0xb0fefd04, 0xb53e19b7, 0x02cf2a0c, 0x57fec715, 0x02ca56fe, 0x275f821b, 0x12f80300, 0x4003feff,
0x1c258b86, 0x26402900, 0x0a5c441c, 0x1b20948e, 0xc04394a1, 0x62fd2105, 0x07219b9e, 0x05d643d0, 0x0221a39f, 0x08ea4302, 0xfd020027, 0x024eff4c,
0x061f476f, 0x09405127, 0x00050708, 0x096a4804, 0x4710f846, 0x1e4706b5, 0x11300821, 0x18070211, 0x3301012b, 0x37012311, 0x4cfd1101, 0xa7a77c04,
0x03a584fb, 0x02ce02d7, 0x02bef9c2, 0xa5fd59cb, 0x0000b204, 0x00f90300, 0x41014eff, 0x09288384, 0x64000c00, 0x0b0c0940, 0x1420858c, 0x210c3e48,
0x0e830304, 0x2007a847, 0x480e830e, 0x2c940b40, 0x4059592f, 0x0606060c, 0x13090609, 0x07051111, 0x28988619, 0x11331101, 0xf9110101, 0x249c8500,
0xf8a79a07, 0x27a08964, 0x420635fd, 0x2403bef9, 0x0426a786, 0x4effb4f4, 0xa786df00, 0x10000d28, 0x09407700, 0xa98c0f10, 0x9a491820, 0x0507240e,
0x48040306, 0x11200a56, 0x9e491085, 0x8233980c, 0x0a142ab4, 0x0a06060a, 0x0c0d0a0d, 0x20bc860b, 0x20bc8c08, 0x21c08521, 0xc086b4f4, 0x02a7ec26,
0x7af4a7f1, 0xc78cc38f, 0xdaf80332, 0x780234ff, 0x0300a805, 0x11000a00, 0x21402400, 0x200d2943, 0x2ab0820e, 0x0100004c, 0x01008500, 0x48117601,
0x112206e7, 0x24430123, 0x068f4206, 0xae513008, 0x0389fbae, 0x020ffd96, 0x066afcf1, 0xfc9a0304, 0x05f50266, 0x038cf9a8, 0xc7380299, 0x34fe34fe,
0x023c02c9, 0xc9fdc725, 0xc9c2fdb5, 0x8200ce01, 0xfc032600, 0x03cbfe36, 0x080b49ca, 0x39403c36, 0x2a313435, 0x1c232629, 0x12131416, 0x0f000203,
0x010a0302, 0x271d0b49, 0x1b112b19, 0x2b1a0704, 0x25110249, 0x07013501, 0x07490101, 0xca032120, 0x280c0049, 0x0c03a2fc, 0x02bdfd24, 0x190949b9,
0x491b0421, 0x02291001, 0xe301b41b, 0xfe9ffedd, 0x250a4956, 0xf8030023, 0x20fb824e, 0x32fb8240, 0x0036002e, 0x4042003d, 0x36393a3f, 0x21282b2f,
0x4a18191b, 0x1123060a, 0x9e0f0302, 0x292a23fd, 0x094a1e20, 0x2706411e, 0x0e4a4020, 0x220d4113, 0x411a174a, 0xb7452e15, 0x49382005, 0x03250e0b,
0x06010201, 0x080b4904, 0x0b490520, 0x07c14248, 0x210a0b49, 0xdb455efc, 0x3d052107, 0x21090e49, 0xd345cd02, 0x99022109, 0x45090f49, 0x270807db,
0x000600e2, 0x0019000d, 0x091f4067, 0x04000207, 0x030d0001, 0x0c010202, 0x0404060a, 0x4c030203, 0x00020108, 0x02050b4a, 0x2442c449, 0x1c07061e,
0x0d7a432b, 0x210bcb49, 0xbf8712f8, 0x4907ff45, 0xc78c0bd6, 0x4909f745, 0x00270be2, 0xff8ffd02, 0x49450231, 0x47080813, 0x00040709, 0x012b3202,
0x07010117, 0x01013501, 0x03020137, 0x033efc42, 0xb6fb42c2, 0xb5fb2104, 0x054b0442, 0x5afe9887, 0x019759fe, 0x92fbade7, 0xfe90e901, 0x0000001f,
0xff5efc02, 0x05a403d4, 0x0005000d, 0xb5080009, 0x01204782, 0x09224782, 0x43821502, 0x1d820920, 0x03a2032e, 0xfc5cfca4, 0xfd02a55e, 0x01fdff02,
0x402e9b82, 0xfdb5c1fd, 0x594502bb, 0xd5012bfe, 0x4383d401, 0x52005c24, 0x57490604, 0x490c2008, 0x8c84079f, 0x93852520, 0x035cfc2d, 0xf7fc4b77,
0xfc4b0903, 0x89e80389, 0xcc022c0b, 0xfe91c601, 0x9171fe71, 0x89b3c701, 0x279a820a, 0x10f80300, 0xa2035200, 0x210a5f49, 0x5b830f13, 0xe7820320,
0x5b865485, 0xf8210686, 0xa2629510, 0x08798c6e, 0x6bfc012f, 0x5b030700, 0x3c00dd04, 0xb04b9a00, 0x40585027, 0x0226271b, 0x01200300, 0x041b0004,
0x04010303, 0x21224c03, 0x1f4a0302, 0x4901021e, 0x201d851b, 0x201d9505, 0x08408659, 0x02050626, 0x00010203, 0x69000304, 0x01010400, 0x04005904,
0x00610104, 0x51010401, 0x0020401b, 0x03000503, 0x05010659, 0x05202283, 0x59342291, 0x00001040, 0x3b003c00, 0x2d2f3436, 0x07262525, 0x002b1907,
0x08232719, 0x020e0732, 0x26262223, 0x23262627, 0x06070622, 0x17160706, 0x8205897e, 0x3615270a, 0x023e3736, 0x2c823233, 0x33161623, 0x080c8432,
0x8f480236, 0x229d166e, 0x3a263466, 0x5f40272b, 0x405f3f3f, 0x263a2b27, 0x27263725, 0x311f2e42, 0xfd8a0601, 0x8a2a02d6, 0x3a32fafe, 0x1e2d1c26,
0x3d583926, 0x283f5f3f, 0x30862282, 0x4b2b032e, 0x454c3874, 0x2629265c, 0x31222231, 0x203f0682, 0x0d2b2221, 0xe0fe361c, 0x026b0275, 0xe0fe756b,
0x27183536, 0x1e191d09, 0x33251923, 0x84282c28, 0x00003929, 0x12f8ffff, 0x40033c00, 0x2300aa04, 0x68f7cd04, 0x23000000, 0x38ffcc04, 0x03240782,
0xa8fdad06, 0x003b0782, 0xe8f60100, 0x16040700, 0x7400dd04, 0xb04b0b01, 0x40585019, 0x0241741a, 0x823c0801, 0x353631d5, 0x03070002, 0x023d3e4c,
0x3a3b4a08, 0x1b490002, 0x87056041, 0x01032121, 0x3e882191, 0x02231c90, 0x85595949, 0x0c253561, 0x0508020a, 0x07010203, 0x0d690108, 0x0703090b,
0x59070000, 0x072a0884, 0x04066100, 0x07000302, 0x6c865100, 0x01052a27, 0x01080301, 0x24338359, 0x08070300, 0x21319a03, 0x2c952b40, 0x00010425,
0x85000702, 0x02073b38, 0x02010661, 0x59510207, 0x72184059, 0x64696b70, 0x565b5d62, 0x484d4f54, 0x00842546, 0x070e2325, 0x41012b1d, 0x0ca20ce6,
0x18152721, 0x2009e1ec, 0x0b004207, 0x960c0d42, 0x1604250c, 0x468f6e16, 0x41061a42, 0x3f2606f7, 0x2c283f5e, 0x0d822739, 0x423f2821, 0x1b860836,
0x3a593d29, 0x1b2c1d24, 0x42333826, 0x2f27093f, 0x283f2c20, 0x42253727, 0x26250d67, 0x40272a3a, 0x07754260, 0x333b1b8d, 0xb0022366, 0x224b7438,
0x26292631, 0x34282b28, 0x252f2125, 0x25222428, 0x891f2c23, 0x23192913, 0x091b181d, 0x37351723, 0x26097042, 0x2a0d1f33, 0x42202222, 0x26240992,
0x23312628, 0x13893384, 0x00465b3f, 0xfb010000, 0x03cffefa, 0x00550687, 0xb306000a, 0x32010103, 0x1701372b, 0x01372701, 0x3e068235, 0x98e60209,
0x549a7efc, 0x03033bfc, 0x5b47fd5b, 0xf849fa05, 0x02ac45c3, 0xdd01b459, 0x8357fe8f, 0x12f8213f, 0x40203f82, 0x11203f82, 0x11213f82, 0x273f8208,
0x15010703, 0x02092701, 0x092e4385, 0x045f6102, 0x6305fd00, 0x5afcb902, 0x4b8828fd, 0x026a0332, 0xc50c06e6, 0xfeb587fd, 0xab018b23, 0x22fa3b02,
0xfd235889, 0x82fa05e9, 0x40fc2d9b, 0xbc03b901, 0x23002203, 0x2f403200, 0x8205c955, 0x01052a73, 0x00690500, 0x01040301, 0x08554f59, 0x04010133,
0x01040061, 0x24255104, 0x22252421, 0x2b1c0706, 0x05f57b01, 0xea431720, 0x270c8205, 0x06211521, 0x06060706, 0x210a1f44, 0x151940fc, 0x283b09d3,
0x462a2638, 0xfc850335, 0x2b45339e, 0x34384a2f, 0x2d2a3f56, 0x5e3a243e, 0x191a022b, 0x0819f759, 0xffa0fb23, 0x0597044a, 0x0050007b, 0x4060005f,
0x0a01185d, 0x06015107, 0x02393a0a, 0x0b5f0805, 0x04050b02, 0x32a5824c, 0x0a02060a, 0x00070069, 0x06070806, 0x00080069, 0x82080b05, 0x000b24c3,
0x180b0001, 0x2e0bb581, 0x010c6109, 0x041f0909, 0x5c00004e, 0x8253555a, 0x254f2c54, 0x26292526, 0x26262425, 0x181f070d, 0x2026b581, 0x20e48204,
0x20e98e07, 0x0cf84427, 0x36373622, 0x24250282, 0x26261333, 0x09ef7c23, 0x81183720, 0x71281eda, 0x324cfefe, 0x0a1a2a48, 0x27093441, 0x812c5b3c,
0x537d5426, 0x35092c41, 0x522d1f0b, 0x39016136, 0x381d0990, 0x29605422, 0x4d3c5144, 0x82181026, 0x35262202, 0x68933a58, 0x6a411441, 0x562f0806,
0x724c3f51, 0x2530214b, 0x4f58282a, 0xa6704c14, 0xfd477440, 0x530d0f56, 0xa49c86a6, 0x002d4637, 0xfc010000, 0x030700a5, 0x00dd0495, 0x448d003c,
0x393c06f9, 0x01032122, 0x03010104, 0x02070801, 0x4c030300, 0x4a04013c, 0x00020203, 0x1a401b49, 0x02201c8c, 0x99461c8b, 0x04002e07, 0x04030100,
0x01056901, 0x03000003, 0x2b068259, 0x02610003, 0x00030001, 0x1c401b51, 0x02231d8b, 0x83020300, 0xc8691826, 0x40593607, 0x26252509, 0x062e2525,
0x092b1c07, 0x36012702, 0x06353736, 0x0d8e4606, 0x2006a744, 0x087d4637, 0x82096f44, 0x27262b2e, 0x026b0101, 0x8ad6fd2a, 0x6d460601, 0x46462017,
0xfe2a1cad, 0xfddd04fa, 0x7595fd95, 0x73462001, 0x16a84613, 0x20012a08, 0xfc010000, 0x03c2017a, 0x002b0386, 0x40360038, 0x01013833, 0x021b1c04,
0x4c020500, 0x03040106, 0x04050101, 0x01076901, 0xe9d41805, 0x02612708, 0x00050001, 0xf3842551, 0x08222524, 0x5d191e07, 0x92450e67, 0x0d7c420c,
0x210c8942, 0x4c428603, 0x3f262d09, 0x503d2830, 0x3d523030, 0x2642302b, 0x260e5a42, 0x292c3c24, 0x4234543d, 0x02210968, 0x062a42ca, 0x252c2929,
0x2d20202e, 0x422a2b26, 0x28240a34, 0x212f262a, 0x20063e42, 0x2bdf8200, 0x07003af7, 0xdd046804, 0x09017400, 0x3405e546, 0x3d3e711a, 0x01080103,
0x08010701, 0x07000207, 0x01744c03, 0x062b4208, 0x87064d42, 0x8f268221, 0x88402021, 0x201c843e, 0x473e8b02, 0x06217847, 0x20c78201, 0x06474702,
0x04610038, 0x00070001, 0x40595951, 0x656a6c16, 0x575c5e63, 0x254e5055, 0x00842526, 0x070e2e23, 0x1fa7421f, 0x23262623, 0x29c14222, 0x8c0cd641,
0x05db420c, 0x423e0221, 0x332906db, 0x2c1b2638, 0x593a241d, 0x0e51473d, 0x25055749, 0x282c3927, 0x12475e3f, 0x8f46270e, 0x239d166e, 0x21473366,
0x250d870d, 0x2a274060, 0x1b8d263a, 0x27372527, 0x202c3f28, 0x0a13432f, 0x1735372d, 0x181b0923, 0x2519231d, 0x492b2834, 0x1f290587, 0x2225232c,
0x2f252824, 0x25138921, 0x4c38744b, 0x29475b46, 0x24098409, 0x28263123, 0x08138926, 0x22222037, 0x331f0d2a, 0x00002001, 0x013cfc02, 0x0584035c,
0x000800f0, 0x403f000c, 0x0001053c, 0x064c0103, 0x03000301, 0x00020085, 0x01020001, 0x00000080, 0x01000501, 0xd9331967, 0x0000250f, 0x090a0b0c,
0x082f3982, 0x07111112, 0x012b1907, 0x21152101, 0x82230101, 0x35350807, 0x0162fe21, 0xfba90379, 0xfe9efee8, 0x7a01c9fb, 0xe8fbce05, 0xf0051804,
0x02a290fd, 0x0232fe6e, 0xa26cfb72, 0xfbffff00, 0x04d5ffae, 0x00890553, 0xfbe80423, 0x2369828e, 0xc2e80402, 0x012b1782, 0x033d0369, 0x011f0547,
0x82820607, 0x00e12ba6, 0x0100b109, 0xb0e102b8, 0x24822b35, 0x01ffff29, 0x03e80368, 0x826a0448, 0x9483201f, 0x0366221f, 0x201f8272, 0x201f82e9,
0x201f8784, 0x083f8802, 0xfb02002f, 0x0434ff3c, 0x00a805c4, 0x0017000b, 0x0a404043, 0x01000101, 0x02010985, 0x0c860203, 0x0600020b, 0x00040501,
0x01076705, 0x04030304, 0x34068257, 0x085f0304, 0x03040301, 0x0c0c0c4f, 0x16170c17, 0x11131415, 0x24f78211, 0x10111111, 0x05ab580d, 0xa9583320,
0x21352405, 0x83211525, 0x080e8201, 0xfb113322, 0xae4c033c, 0x03b4fcae, 0x09b4fc4c, 0x03b6fc88, 0xaeb6fc4a, 0x028503ae, 0x028cf923, 0xa2e2a22b,
0xfd250282, 0xfd7406d5, 0x23d782dd, 0xecff0100, 0x13339786, 0x3a403d00, 0x08070800, 0x02030085, 0x090a8603, 0x82060702, 0x000722a2, 0xdaa31867,
0x233a8212, 0x11130013, 0x0b200087, 0x83888f83, 0x09cf4518, 0xfdc40428, 0xfd1502eb, 0x0685aeeb, 0x82150221, 0x847e8487, 0x23022188, 0x02328385,
0x34ff3cfb, 0xa8057801, 0x0f000b00, 0x35403800, 0x78820106, 0x07088527, 0x02030202, 0x306a8286, 0x05000405, 0x03040067, 0x00570403, 0x5f030404,
0x06164100, 0x0f0c0f22, 0x26061041, 0x2b1d0709, 0x41112101, 0x01200810, 0xfb250a82, 0xae4a033c, 0x050041ae, 0x418e0521, 0xfc2a0a01, 0xf9740651,
0x0200008c, 0xfb8688fe, 0x77880320, 0x85010727, 0x04000105, 0xe7301900, 0x24778227, 0x33112307, 0x26fc8801, 0xaeca1133, 0x858e05ae, 0xaeae2676,
0xfd7406cc, 0x0a7141dd, 0x20090742, 0x23738207, 0x072a402d, 0x0621eb84, 0x26ea8301, 0x03000104, 0x82570003, 0x08836606, 0x23066141, 0x1e070810,
0x2520e088, 0x2005db59, 0x07e94133, 0x413e0621, 0x022e05e3, 0xf9e302c5, 0xa6eb028c, 0x0615fda6, 0xdb410074, 0x000b2e0a, 0x00264029, 0x85050005,
0x02010200, 0x18608286, 0x5d083096, 0x678406a0, 0x85051b5e, 0x3521265d, 0x02331121, 0x08bd41af, 0xc502ae22, 0x5c825682, 0x00e30222, 0xc7840082,
0x0578012c, 0x000700a8, 0x402e000b, 0xc785042b, 0xb3410520, 0x82c78306, 0x5f032d26, 0x03000300, 0x0808084f, 0x120b080b, 0x10236482, 0x881b0707,
0x0ba541c8, 0x828e0521, 0x83bf8561, 0x0f9f41bd, 0x19000b21, 0x27250730, 0x072b1c07, 0x01331123, 0x3325c485, 0x02aeaeca, 0x051d4144, 0x7406cc24,
0x19411dfd, 0x061b4106, 0x82af0221, 0x000b35bf, 0x00314034, 0x85000500, 0x01020100, 0x05010686, 0x05030400, 0x1105d418, 0x0b22cd82, 0xc2820b00,
0x84111121, 0x096c42c3, 0x01023523, 0x06e142ae, 0x820a6643, 0x01022163, 0x8308f343, 0x05042263, 0x055b4304, 0x00206383, 0x49186782, 0x638f10a0,
0x430a5542, 0x4243084a, 0x05c14307, 0xecff0124, 0xc78434ff, 0x2b000724, 0xf8182840, 0x04260947, 0x02020301, 0x06825703, 0x0f190320, 0x072310b3,
0x86012b19, 0x42ba86be, 0x00210739, 0x25b38801, 0x40240007, 0x96450021, 0x02012205, 0x18ce8286, 0x2507eb41, 0x01000100, 0xa35f114f, 0x06694107,
0x42062a42, 0x06210526, 0x20c98274, 0x2a9b8200, 0xc40494fe, 0x0700a805, 0x19402700, 0x84224f0d, 0x324f8297, 0x02112135, 0xfb1602ae, 0x05140228,
0xa38ff9a8, 0x837106a3, 0xff02284f, 0x045f01ec, 0x5c8503c4, 0x0120089f, 0x0123ef82, 0x84006700, 0x030021ea, 0x9b89e987, 0x21284982, 0xc4042135,
0xd80428fb, 0x02250383, 0xdafda2e3, 0x844c82a2, 0xbc03214b, 0x03254bb1, 0x0330fcbc, 0x890383d0, 0xf400214b, 0x4b9097b7, 0x3cfb0335, 0xc4040700,
0x1500dd04, 0x21001b00, 0x3b403e00, 0x8202010c, 0x1b4c3001, 0x4a030215, 0x02032021, 0x04490004, 0x82050301, 0x02032213, 0x05c46c67, 0x06825720,
0x5f000133, 0x01000107, 0x12114f00, 0x23111611, 0x07081711, 0x6ff8181e, 0x21352d08, 0x27273737, 0x26213521, 0x25272726, 0x08053547, 0x21152132,
0x6ffe2701, 0xd6fd2a02, 0x3419758a, 0x046efc27, 0x6767010b, 0x03f5fb01, 0x19342792, 0x01ac0275, 0xfcfe0235, 0x019dfea6, 0xfd5a0363, 0x8acbfe02,
0x08edfa18, 0xa2172f3b, 0x01707001, 0x1e2f17a2, 0xa8fe757f, 0xfd8501a2, 0xa8fea299, 0xff010075, 0x27bf86ec, 0x4042001d, 0x0203123f, 0x4c2f9382,
0x06021b1c, 0x0208094a, 0x07084902, 0x82050602, 0x00062212, 0xe5cf1867, 0x01032b0c, 0x4f020102, 0x1d000000, 0xbc821d00, 0xc4821620, 0x1d070928,
0x2115012b, 0xa8840717, 0xfc183720, 0x37361046, 0xfec40401, 0x016565de, 0xfe4dfe22, 0x1b758acc, 0xb0fd2633, 0xc283c902, 0x0237fd2f, 0x1b332650,
0x34018a75, 0x71a28503, 0x239a8371, 0x162e207f, 0x1622b485, 0xb483202e, 0xfb020027, 0x0307003c, 0x066b41c3, 0x34403727, 0x010c181b, 0x2f888204,
0x0215174c, 0x191a4a03, 0x00040203, 0x00030049, 0x08ed1319, 0x0057012b, 0x5f000101, 0x00010000, 0x28a5824f, 0x1a070417, 0x0101032b, 0x219c9127,
0x16823721, 0x41890121, 0xfb23085c, 0x83130566, 0xedfa2a99, 0x34279a04, 0x22027519, 0x211b848a, 0x5341ca01, 0x05994c15, 0x0300f624, 0x4f415ffc,
0x00053b06, 0x0011000b, 0x05324035, 0x01020202, 0x010b4c01, 0x114a0002, 0x04030410, 0x385f4903, 0x71201909, 0x1112210e, 0x0120a384, 0x13208d84,
0x210af741, 0x7f875ffc, 0x3501e134, 0x1ffb8504, 0x63019dfe, 0x7bfbe104, 0x048acbfe, 0x7e867568, 0x416b0221, 0x02220bdb, 0x8b8a0f01, 0x28402b29,
0x4a000105, 0x9c020a0b, 0x0411237f, 0xa7491a07, 0x15212c07, 0x01270121, 0x01350199, 0x83aefdf6, 0x52022370, 0x70830afe, 0x668bdd20, 0x41054342,
0x32220697, 0xff422f40, 0x73fe1806, 0x216c8225, 0x8f410209, 0x99012512, 0xd6fd2a02, 0x2c052442, 0x018502f4, 0xfd016767, 0x260c027b, 0x73fe1833,
0x0b1f420a, 0x00820020, 0x8b430220, 0x000e3a08, 0x40310017, 0x0201152e, 0x4c010100, 0x030e1617, 0x13144a01, 0x00040203, 0x514f1949, 0x4303200c,
0x15200580, 0x4e057541, 0x754306d9, 0x05aa4a05, 0x01012725, 0x4b24fe37, 0xfc3509db, 0x26f5030b, 0xfafe3338, 0x4402e604, 0x20febcfd, 0xfeca018a,
0x07674336, 0x37200134, 0x17a61735, 0x20013735, 0xfda65dfe, 0xf60175e8, 0x6343f601, 0x00112e0b, 0x102b402e, 0x4a02020f, 0x00020304, 0x24048249,
0x02000002, 0x30078357, 0x015f0002, 0x00020001, 0x0000004f, 0x11110011, 0x05095d16, 0x01211524, 0x4a430127, 0x26262905, 0x01370127, 0xb5fec404,
0x06317683, 0xfd263a32, 0x26bb0245, 0xfafe323a, 0x02e0018a, 0x2c7084c5, 0x18353620, 0x363518a6, 0xfd752001, 0x071341e8, 0x04c3033f, 0x000e00dd,
0x402c0014, 0x01111429, 0x01010003, 0x020e104c, 0x12134a01, 0x00040203, 0x1e561849, 0x1711270f, 0x2b180702, 0x7a8c0103, 0x20052143, 0x080b41e3,
0x11fb272b, 0x3827ef04, 0x02fafe33, 0x0e1b437c, 0x420a0741, 0x8a820799, 0x43020021, 0x0e2e0a1b, 0x2a402d00, 0x0302050c, 0x4c010001, 0x93820d0e,
0x0a0b4a25, 0x18040304, 0x460ca448, 0x162005b8, 0x11438c83, 0x42252005, 0x01210591, 0x090e4337, 0x031b0325, 0x4180fc80, 0x0a430888, 0x41532008,
0x07430a7f, 0x00082608, 0x06254028, 0x27738301, 0x00020708, 0x0204054a, 0x535d7092, 0x236a8705, 0x4b017903, 0x23057241, 0x8a36feca, 0x41066641,
0x5b4109d7, 0x9f121906, 0x18072124, 0x0e9f1219, 0x2006e542, 0x0ccc4101, 0x410be650, 0x002205ca, 0x67460000, 0x05300809, 0x21001b00, 0x4b404e00,
0x02020813, 0x154c0100, 0x04040514, 0x1d1e4a01, 0x03041112, 0x01010449, 0x00020508, 0x67000102, 0x02020709, 0x57020303, 0x27080783, 0x065f0302,
0x03020301, 0x061c1c4f, 0x1c211c06, 0x061f2021, 0x1c1b061b, 0x10112611, 0x2b1b070a, 0x21352101, 0x07131701, 0x13860219, 0x07010522, 0xfe351e82,
0x02a6fc96, 0x8a3501fe, 0x676701c0, 0xfc0b0401, 0x1934276e, 0x05405875, 0x34197536, 0xf9920327, 0x8a6301d2, 0x02fdcbfe, 0x01a2e302, 0x7bfe7558,
0x30097146, 0x6b026b02, 0x2f1e7f75, 0xfee2a217, 0x5801757b, 0x0f7746a2, 0x0202113c, 0x4c010400, 0x05021617, 0x020b0c4a, 0x01064901, 0x02070805,
0x04050004, 0x9e680367, 0x21068205, 0x4a180100, 0x1d2309b7, 0x47161d00, 0x09230539, 0x192b1d07, 0x820d4003, 0x372721cc, 0x0727d184, 0x21070606,
0x83fb0115, 0xc9023fb3, 0x3326b0fd, 0xfe8a751b, 0x014dfecc, 0xfe656522, 0x01b301de, 0x1b758a34, 0x50022633, 0xae84e302, 0x202e1623, 0x22a0837f,
0x82a27171, 0x207f24c3, 0x41a2162e, 0x0324057b, 0x00dd04a1, 0x3705d345, 0x0b3a403d, 0x00030208, 0x05074c01, 0x4a010304, 0x090a0d0e, 0x00490204,
0x4906dd48, 0x0c2d11c9, 0x0c110c0c, 0x10111c11, 0x2b190705, 0x24988413, 0x01011725, 0x3b018407, 0xfb1d3521, 0x0185041f, 0x97018a35, 0x0136fe8a,
0xd6fd8aca, 0x8a6301d0, 0x7bfbcbfe, 0x29054941, 0x0afe7575, 0x02750afe, 0x3c41716b, 0x00002506, 0x3dfc0200, 0x3508db45, 0x403e001b, 0x0508133b,
0x03000402, 0x14154c01, 0x4a020301, 0x4c431112, 0x19022005, 0x21167e04, 0xff410606, 0x83292005, 0x84012092, 0x4125208c, 0xfe2114fd, 0x29948767,
0x67017403, 0x13050167, 0xf94166fb, 0x9a04230d, 0xa188dd04, 0x8213f341, 0x020025ae, 0x0700ecff, 0x2a084341, 0x05304033, 0x4a010204, 0x41020708,
0xa4821b37, 0x0b060b23, 0x05374116, 0x2205a242, 0x82070101, 0x3e023108, 0xf601aefd, 0xfe8a3501, 0x8a63019d, 0x0afecbfe, 0x21052941, 0x214199fd,
0x00012207, 0x089749ed, 0x36403922, 0x33970519, 0x42190721, 0x01210e56, 0x054e4217, 0x013f022c, 0x02016767, 0x26f4fd85, 0x02431b33, 0x331b2407,
0x420c0226, 0xf3420b44, 0x2e202305, 0xff84a216, 0x08089b46, 0x17000822, 0x35403800, 0x00020211, 0x134c0101, 0x01030112, 0x040f104a, 0x49000403,
0x01020304, 0x57010000, 0x2c093563, 0x094f0001, 0x09170909, 0x15111217, 0x21908205, 0x00411703, 0x65212005, 0xd36508c4, 0x41a02005, 0xfe2905a4,
0x02bcfd20, 0xfc440744, 0x0c9e590b, 0x26383322, 0x2208a241, 0x59a6a618, 0x37220c4e, 0x9f831735, 0x2b09074a, 0x402e0011, 0x020c0d2b, 0x06074a02,
0x5a27a346, 0x2122057e, 0x8d852135, 0xfdc40431, 0x323a2645, 0xfe8a0601, 0x01b5fe20, 0x5ce0014b, 0x02330563, 0x3518a6c5, 0x75e0fe36, 0x02a61802,
0xe0fe7518, 0x46183536, 0xa13b08a3, 0x0800dd04, 0x2c000e00, 0x0b0e2940, 0x01000302, 0x010a4c01, 0x0d4a0102, 0x4603040c, 0x152513a3, 0x2b180702,
0x070f4113, 0x2005c242, 0x0706419c, 0x0380fc25, 0x855b0480, 0xd6fd210d, 0x7683fc8a, 0x43054c43, 0x14260d43, 0x31403400, 0x7785050e, 0x010f1023,
0x48788803, 0x002e0c30, 0x4f000100, 0x14060606, 0x03171406, 0x875f1707, 0x15252206, 0x09805b21, 0x43070621, 0x08240932, 0x2711fb87, 0x220b285b,
0x88273833, 0x536b218c, 0x20128941, 0x08274301, 0x2700082d, 0x01022440, 0x4c010100, 0x48010101, 0xa8470530, 0x02152310, 0x84861807, 0x21352124,
0xf1851703, 0x88057541, 0xa6182168, 0x0f43b683, 0x000e2507, 0x082c402f, 0x0a235784, 0x41010209, 0xe49105e5, 0x00000026, 0x110e000e, 0xde8de484,
0x5e09dd41, 0xd941093d, 0x08155e09, 0x02000030, 0x72ffbbfd, 0x16054702, 0x0a000600, 0x33192100, 0x5e18080b, 0x7048118f, 0x37012705, 0x27011501,
0xc9821301, 0x42bbfd3c, 0xb6fb4a04, 0xc8c40342, 0x73048dfb, 0xfe977f04, 0x18feac18, 0xfca70197, 0x9a82a39a, 0xb9205b82, 0x45205b82, 0x17205ba9,
0x82053061, 0x03022b5b, 0x033cfc42, 0xb6fb42c4, 0x5c837304, 0x9716052c, 0x59fe59fe, 0xace80197, 0x5c8344fc, 0x69fc0122, 0x3706136e, 0x403f0038,
0x0001363c, 0x09222305, 0x06050607, 0x011c0104, 0x4c030403, 0x27069a51, 0x00860203, 0x61000101, 0x1f3e9082, 0x0404004d, 0x03006103, 0x4e032003,
0x11253738, 0x06102b1f, 0x012b1b07, 0x05040416, 0xda821517, 0x24240037, 0x15062223, 0x17161614, 0x1415021e, 0x11070606, 0x26261323, 0x05305927,
0x837f3620, 0x1137250a, 0xa3e0fe33, 0x53086a82, 0xa5730151, 0x01332cfd, 0xfe44fefc, 0xa1effe85, 0x8f3e9573, 0x68ad7f84, 0xab77a858, 0x55e89001,
0x77bc4b71, 0x34538b53, 0xc195747e, 0x75b46566, 0x0a7805ab, 0x64e1bd62, 0xe871feb5, 0x08010001, 0x5d6355cf, 0x2744503a, 0x7ca36025, 0x156ea567,
0x1d01d9fe, 0x122d4719, 0x010a5f23, 0x3ac2822b, 0xfafb0100, 0x7303cbfe, 0x3700a306, 0x3a403d00, 0x04022225, 0x0c0e2903, 0x82050a0b, 0x012c0808,
0x4c030201, 0x01040128, 0x0100004b, 0x03008600, 0x03020400, 0x02006904, 0x00610102, 0x01200101, 0x242b2d4e, 0x14112a23, 0x2b190705, 0x07f54719,
0x0100242c, 0x01070135, 0x33160404, 0xe28e3632, 0x11fa4719, 0x82730321, 0x9aaa32d8, 0x1efeeffe, 0xf60235fe, 0x01c8fd19, 0xe9bd01b9, 0x23e28976,
0x65aa75b5, 0x15054819, 0x51021c37, 0x19010201, 0xc99c01b4, 0xe4fbd2fe, 0x4e6d3646, 0x22465942, 0x0e48192c, 0x44512a13, 0xa3602526, 0xf801007c,
0x06f36512, 0x41003e34, 0x013c3e40, 0x26280500, 0x07092425, 0x04080506, 0xe9411d01, 0x3d3e2523, 0x2c1f112a, 0x230de941, 0x022c2725, 0x2110e941,
0x0b412611, 0x14fe381b, 0x012e01aa, 0xcd440143, 0x01362bfd, 0xe8feedfa, 0xe4fed6fe, 0x4198769c, 0x164108ef, 0x02032407, 0x41b7fd14, 0x05321216,
0xb5690b77, 0xfeb57dc7, 0x8dfcef6e, 0x62589fa8, 0xe6863a5e, 0x4106f841, 0xa1230820, 0x41cbfec7, 0x2b081320, 0xfd020000, 0x02d20030, 0x001804d0,
0x003b001d, 0x1a524055, 0x01000219, 0x03020a0b, 0x02373802, 0x28290504, 0x04060702, 0x0802004c, 0x08be6718, 0x06042508, 0x00690405, 0x07010906,
0x00650706, 0x61010000, 0x1c010100, 0x1e1e4e00, 0x3b1e0000, 0x33353a1e, 0x23252c2e, 0x1c284f82, 0x0a252725, 0x122b1907, 0x2107be62, 0x385b0706,
0x0617240d, 0x9b022306, 0xef23081c, 0x50406072, 0x84433162, 0x21811a68, 0x3a6dbc86, 0x52415d6f, 0x945e3366, 0xd03b812b, 0x5d723d99, 0x97634f43,
0x9a023f1d, 0x30283223, 0x304c2b2d, 0x4d784343, 0x31283122, 0x41506a2f, 0x38fea874, 0x30293123, 0x178f2c2e, 0x04000028, 0x5f0118fc, 0x6f52e803,
0x000b3706, 0x402b000f, 0x00010228, 0x04010103, 0x06670100, 0x05050401, 0xb2185704, 0x0727145d, 0x21012b1e, 0x82252115, 0x86052003, 0x18fc2707,
0x67fc9903, 0x05833704, 0x89c9fb21, 0x8503250b, 0xe2a2a2a2, 0x00230382, 0x8e68f706, 0x00133a6f, 0x40370017, 0x02020434, 0x02030500, 0x01000601,
0x02080a67, 0x06070706, 0x2b078357, 0x0b5f0706, 0x06070209, 0x16174f07, 0x0c155d18, 0x1f070c22, 0x838b7f88, 0xf7270b83, 0xfcc00368, 0x89600440,
0x40f72105, 0x9384118f, 0x22089585, 0x0100a2a2, 0xe8ffda00, 0x1e04a403, 0x2d001c00, 0x070c2a40, 0x02010306, 0x0100011a, 0x02004c02, 0x82850201,
0xca4f1820, 0x1c56080c, 0x1217191b, 0x16060310, 0x021e012b, 0x27071415, 0x27262634, 0x06141127, 0x26222306, 0x36363435, 0x11173233, 0x3d020333,
0x3a241f46, 0x2e2e3115, 0x63457241, 0x4572436f, 0x0360313f, 0x514729e0, 0x184c5035, 0x1e436251, 0x2904fd1e, 0x44483754, 0x1a305331, 0x66821003,
0xff302308, 0x043004e8, 0x001f0082, 0x0d304033, 0x1d010301, 0x02030001, 0x0f1e1f4c, 0x4a01040e, 0x02000300, 0x26825903, 0x00269582, 0x03030069,
0x10826102, 0x2551022a, 0x04232527, 0x012b1a06, 0x0520818d, 0x2522918e, 0x88893004, 0x892afe21, 0x9602230b, 0x87880001, 0x766e0224, 0x0d8932fd,
0x00acc82c, 0xb000ffff, 0x1104e7ff, 0x77823704, 0x8200db21, 0x9e01370f, 0x12035403, 0x02006205, 0x0000ec06, 0x9e010100, 0x1203f6fe, 0xa0820401,
0x18401121, 0x2f0c8b9b, 0x012b1808, 0x02230333, 0xcba98e84, 0xf2fd0401, 0xcc302b82, 0xbe022704, 0x0d00dd05, 0x06b12d00, 0x22404464, 0x4705a747,
0x5920059d, 0x01200682, 0x8206cc52, 0x000d2459, 0x1803160c, 0x0808179d, 0x06141523, 0x37230707, 0x36343526, 0x437b0233, 0x6d511f15, 0x32453138,
0x3141dd05, 0xa940401b, 0x31342ce3, 0x23348242, 0x0501ffff, 0xab209f82, 0x23249f82, 0x67ffec06, 0x03201282, 0x9920a782, 0xab830782, 0x53054426,
0xe2056a03, 0x2720ab82, 0x1c207f84, 0x23141748, 0x11030003, 0x012b7987, 0x03352115, 0x05dafd6a, 0x838f8fe2, 0x86ef8244, 0x000322ff, 0x25438419,
0x0001000e, 0x1b828501, 0x10117630, 0x2b180902, 0x440006b1, 0x33132301, 0xf7822c02, 0x02540333, 0xfcffff0e, 0xfe0d055e, 0x00f405f0, 0xfb000703,
0x322a8250, 0xfdffff00, 0xfeaf0424, 0x01b0052e, 0xfb010707, 0x5b9aff52, 0xff2105df, 0x05df5b9a, 0xfc01002d, 0xfefa04b4, 0x00460699, 0x63060003,
0x012f05db, 0xfc070537, 0x910154b4, 0x9fa7053a, 0x820066e6, 0x82bd2023, 0x8ca22023, 0x17252e23, 0x01bdfc05, 0x55fe5590, 0x9fe66005, 0x267b82ad,
0xfe8b045c, 0x822806f4, 0xfb042267, 0x21678550, 0x678ab802, 0xa904592a, 0xe405f7fe, 0x1b000600, 0x1028cf84, 0x03040506, 0x49000502, 0x7622a782,
0x81410110, 0x33013706, 0x07250705, 0x7e6afd27, 0xff500f01, 0x0552fd01, 0xa25cdfe4, 0x24825ca2, 0x59228782, 0x43828d04, 0x4382c820, 0x43841a20,
0x05060f27, 0x00040102, 0x211d824a, 0x42881376, 0x23349b82, 0xa8fd3725, 0xfe50ff00, 0xeffe7ef1, 0xa3250552, 0x5ddede5d, 0x76284385, 0xdafe9404,
0x0e00a805, 0x23071b42, 0x0304090a, 0x01214384, 0x26901901, 0x000e230f, 0x1b42250d, 0x26390808, 0x16372726, 0x37363233, 0x23020e17, 0x528353fd,
0x832e7d08, 0x7d165d46, 0x53885308, 0x713f9404, 0x45831a4a, 0x714a1a3e, 0xff00003f, 0x04c1fcff, 0x068ffe6a, 0x07070116, 0x110f4108, 0x592c1f82,
0xfafe1d05, 0x03000e06, 0x52fb0907, 0x13829a83, 0xdc049626, 0x6b05bcfe, 0x0a203382, 0x2713ab41, 0xdc04f6fb, 0x6b055cff, 0x342a5742, 0x35211503,
0x059afca4, 0x008f8f6b, 0x045cfc02, 0x06f4fef1, 0x2f3f828e, 0xb5080007, 0x00020406, 0x012b3202, 0x25030713, 0xfc360382, 0xde73b4f9, 0x76a2f601,
0xfe8e06cb, 0x4c013b9e, 0x379efe51, 0xcb824e01, 0x041ffd2f, 0x0613fe43, 0x06070100, 0x06f1fffc, 0x0543428b, 0x428b0621, 0xd8260843, 0xccfd4304,
0x53410006, 0x01052509, 0x4c010100, 0x22146f43, 0x430d000e, 0x2c080e6f, 0x26272317, 0x36343526, 0x437ffd33, 0x6f3a161a, 0x44101263, 0x42000631,
0x11321d31, 0x3527d3ea, 0x0042311b, 0xfd2efd01, 0xff22feb8, 0x43638975, 0x638b1ad3, 0x43160421, 0x638507d3, 0x0f43df35, 0x3a706312, 0x32431916,
0x1b31428b, 0xead32636, 0x821d3211, 0xffff3162, 0x08fec0fc, 0x0d0092fe, 0x0b070701, 0xedff52fb, 0xff21e785, 0x26e788ed, 0xff2c0247, 0x41bb0207,
0xf92e2e7f, 0xbb0240fd, 0x01008f8f, 0x2c021bfb, 0x3fac3700, 0x21151326, 0xe4fa3735, 0x023b3f84, 0x0d050e01, 0xf405a003, 0x17000b00, 0x06b13200,
0x27404464, 0x01000102, 0x82590001, 0x01002606, 0x04030561, 0x2a0f8203, 0x000c0c51, 0x0c170c00, 0x82101216, 0x240a222a, 0x065c4306, 0x3526002c,
0x32333634, 0x06141516, 0x0b8a2023, 0x4452012a, 0x44313344, 0x73013144, 0x33200482, 0x05290c82, 0x3231420d, 0x31324242, 0x2b078742, 0x01000000,
0x1505d201, 0x1606dc02, 0xd7445482, 0x0551450c, 0x21826120, 0x82510021, 0x000b2327, 0x5145240a, 0x05b2460c, 0x91023333, 0x3a3b4b4b, 0x063a4a4a,
0x38364916, 0x36384a4a, 0x26538249, 0x03dc046a, 0x44350645, 0x072d0a7f, 0x45033725, 0x5f61fe3c, 0xba684405, 0x2555829f, 0xfa046d01, 0x7f445203,
0x6d01210f, 0x27097f44, 0x0c010200, 0xa403f104, 0x2310db42, 0x13171327, 0x01330382, 0x9fa27682, 0x9db47379, 0x0137f504, 0xaefe4b62, 0x8362013b,
0x267f82aa, 0x03e40409, 0x443306a7, 0x49200f53, 0x360d5344, 0x33252707, 0x5a020705, 0x110156fb, 0x520f017e, 0x5bb69a05, 0x995bf4f4, 0x0e93443f,
0x05173725, 0x82372523, 0xfe52293f, 0xeffe7ef1, 0xb77c0556, 0x26283f86, 0x8903e604, 0x0f001c06, 0x21078f44, 0x8f440a0b, 0x000f2318, 0x8f44260e,
0x0890440d, 0x83fb013e, 0x157d0949, 0x5d454458, 0x4d087e15, 0xe6045a86, 0x1a468254, 0x4e59594e, 0x5482461a, 0x002dcd82, 0x04710102, 0x063f03d0,
0x000f007c, 0x3ba4181b, 0x101b2426, 0x8214161a, 0x260e212f, 0x21084442, 0x65181616, 0xfc180c4a, 0x52080c17, 0x3b3b699b, 0x6a42426a, 0x43693b3b,
0x30393930, 0x31383831, 0x62397c06, 0x39623a3c, 0x3c3a6239, 0x3c673962, 0x3b3c3334, 0x003c3434, 0x07010100, 0xa8031d05, 0x19000e06, 0x06b13c00,
0x31404464, 0x02021516, 0x02080901, 0x4c020003, 0x03000200, 0x54005902, 0x692b050d, 0x03020200, 0x03010461, 0x82510302, 0x00192fcb, 0x24252418,
0x2b190905, 0x440006b1, 0xca6d2600, 0x36272506, 0x16323336, 0x0806cd69, 0x06061729, 0x3ca50223, 0x16291d29, 0x731a2f21, 0x29486f26, 0x281d283c,
0x1c311d16, 0x45702772, 0x1b1c1d05, 0x302c1514, 0x8262513a, 0x29142508, 0x5a56392e, 0x44269383, 0x6a034205, 0xe343d105, 0x08bb472a, 0xbb47d120,
0xfe6e2a07, 0x0040031b, 0x00150020, 0x2ed78438, 0x0001052d, 0x03011001, 0x02010f00, 0x884c0303, 0x820320d3, 0x495920d4, 0x11240b64, 0x1a090411,
0x0425d384, 0x33372326, 0x086b4115, 0x0805de4e, 0xa2023523, 0x7d135956, 0x73445e5f, 0x28703d46, 0x21491c39, 0xe822ea75, 0x445f098f, 0x1c2f5b40,
0x110f6917, 0x2ac3834f, 0x032dfe89, 0x00440021, 0x84250013, 0x131a257f, 0x4a000209, 0xe1461983, 0x23818206, 0x26235101, 0x08074748, 0x020e2133,
0x33161415, 0x06073732, 0x26262223, 0x37363435, 0x6b622103, 0x373b3528, 0x3c411343, 0xba3e734c, 0x464c2ac2, 0x0e312f28, 0x5d350f8e, 0x39a0713b,
0x264d8300, 0x02ed03f3, 0x437705d5, 0x13300abb, 0xf3010317, 0x0373ad35, 0x147901fe, 0xffff8afe, 0x3108b745, 0x00fc0602, 0x01ffff00, 0x03fe050f,
0x01e506a1, 0x41820707, 0x00f1002b, 0x0200b108, 0x35b0f1b0, 0x261b822b, 0x020606d3, 0x820707dd, 0x8201201b, 0x201b84a1, 0x291b8401, 0x6a010100,
0x4703e605, 0xa7482907, 0x6a012a0d, 0x377b0162, 0xde9f8a06, 0x214d8265, 0x23826601, 0x23074b22, 0x252e238a, 0x66010517, 0xfe539201, 0xd84b064d,
0x63829e9f, 0xe2050d26, 0x7f07a503, 0x04206382, 0x7f856387, 0x092b6382, 0xa703ed05, 0x06002807, 0x48401300, 0x07220e9f, 0x9b482b17, 0x1a022106,
0x21079b48, 0x9b482807, 0x09012309, 0x3b82e405, 0x3b821e20, 0x48401221, 0x3a830d97, 0x21059348, 0x93485802, 0x7c062508, 0xdede5ca2, 0x2d05d748,
0xeb052701, 0xff068a03, 0x25000f00, 0xff432240, 0x214e821f, 0xef502600, 0x17373d07, 0x0223020e, 0x08528405, 0x4458157e, 0x7d165c45, 0x52875308,
0x713feb05, 0x453e1a4a, 0x20078e48, 0x26f78200, 0x03c10572, 0x826d0740, 0x8d0820f7, 0x261b82f7, 0x030e0608, 0x82ff06a9, 0x4109201b, 0x1b820d77,
0x33064526, 0xc2066b03, 0x0a201b82, 0xe7421b90, 0x07022e07, 0x0000000b, 0x04a50101, 0x060b0382, 0x0c0f4218, 0xd02a1582, 0x04f8fe96, 0x625b01bd,
0x2682ccfe, 0x05252783, 0x070d03b3, 0x2a278f38, 0xf6fe96d2, 0x4a01ee05, 0x82dcfe61, 0xff340827, 0x0557fcff, 0x06f8fe1d, 0x0602000e, 0x0000fef6,
0xfed4fc01, 0xff7efe82, 0x000e00b2, 0x6406b15a, 0x0a0a4044, 0x0b000101, 0x02010201, 0x0db04b4c, 0x17405850, 0x01282582, 0x01007000, 0x59010202,
0x02226882, 0x1d830362, 0x401b5223, 0x21198216, 0x18908500, 0x83405921, 0x000e25b9, 0x0413220d, 0x0806544b, 0x35260026, 0x14153335, 0x37363233,
0x23060617, 0xa2784cfd, 0x1d312154, 0x405f2945, 0x617482fe, 0x1054575b, 0x281f6012, 0x01274f82, 0x02a504d0, 0x8c5c06e2, 0x01032cc7, 0x8bc74bd0,
0xa001bc04, 0x826efe25, 0x03c72682, 0x05e902d1, 0x34238e88, 0x94d84ac7, 0xa001e803, 0x006ffe26, 0x040c0103, 0x07a203dd, 0x24238230, 0x001b000f,
0x21db843f, 0x43490334, 0x01022206, 0x05d7474a, 0x59010022, 0x01230884, 0x82026100, 0x0021081b, 0x04101051, 0x101b1004, 0x0414161a, 0x280e040f,
0x2b170806, 0x440006b1, 0x03171301, 0x14151626, 0x06774706, 0x0b1ebf18, 0x3a140225, 0x47df7cc1, 0x012106e5, 0x06f747db, 0x01c8052e, 0xa9fe2668,
0x31314414, 0x31324344, 0x32211e82, 0x320b8343, 0x01ffff00, 0x029904de, 0x015606d2, 0x04fc0607, 0x49e106b0, 0x06200513, 0x9c091f68, 0x86ff821f,
0x291b4a1f, 0x0020c586, 0x0720c183, 0x2d081b4a, 0x19438402, 0x63703a16, 0x31430f12, 0x1b4a5606, 0x36262e06, 0x0042311b, 0x04340102, 0x066c037f,
0x2c638249, 0xb1330012, 0x40446406, 0x08101128, 0x227d8203, 0x5e01124c, 0xf74d07ab, 0x000e240e, 0x8c03160d, 0x23072e6b, 0x35262637, 0x17333634,
0x01071337, 0x09274ae5, 0x5dacaf25, 0x4a49067b, 0x36250b2c, 0x2060fe2c, 0x22008200, 0x93360102, 0xaf05207b, 0x84e7887b, 0x89dc207b, 0x86b920eb,
0x321d247b, 0x84d3ea11, 0x207b8aef, 0x207b8234, 0x23f7c961, 0x03171313, 0xa423f78b, 0x8d8eac5d, 0x56fe27f7, 0xfe2ca001, 0x7341006c, 0x06612206,
0x0d73414a, 0x7b84f7b9, 0xf789da20, 0x7b83b020, 0xe7414a20, 0x55fe210b, 0x05327b88, 0xa6038204, 0x1900d406, 0x48002800, 0x446406b1, 0x39483d40,
0x0833480c, 0x0301063c, 0x69030204, 0x05050400, 0x04005904, 0x005f0504, 0x4f050405, 0x27280000, 0x3e821f21, 0x25241825, 0x48080724, 0x07201f45,
0x21051642, 0x494c1632, 0xa3022105, 0x2c185448, 0x441f22a7, 0x18423332, 0x056c2922, 0x115f48e3, 0x3214e532, 0x41423122, 0x3f411b32, 0x02000049,
0x84040501, 0xd620c782, 0x4c20c784, 0x4120c784, 0x2823c789, 0x48050401, 0x02200a2b, 0x0520cb82, 0x0520cb83, 0x5925c682, 0x04050500, 0x20d6825f,
0x23cb8204, 0x1a1b2123, 0x0320cba8, 0x85076c4d, 0x2ccb9acd, 0x22286d1f, 0x33324218, 0x05212044, 0x36cb91e5, 0x3e499ffe, 0x41321c41, 0x33213142,
0x01030014, 0x03dd040d, 0x440107a1, 0xe21947c3, 0x46211b5b, 0x49e21973, 0x91062412, 0x19dbfe70, 0x251137e2, 0x03000000, 0x9b820f01, 0x9bc9a320,
0x05171322, 0x25185f45, 0xfe73ee0f, 0x6045a7ee, 0x45d92007, 0xdc250760, 0xfd702501, 0x135f4533, 0xd0040d3b, 0x0407ae03, 0xed062700, 0xc3ffb804,
0xf6060701, 0xf600b404, 0x00b11100, 0x270f8202, 0xb12b35b0, 0xf6b00102, 0x2f05834e, 0x6401ffff, 0x4903fa04, 0x03004606, 0xb004ef06, 0x0028dd82,
0xc6010100, 0xe802d103, 0x2e0c6346, 0x01071337, 0x8e4ad8c6, 0xfe266205, 0x82001760, 0x08434d37, 0x85f00621, 0x46138237, 0x0223079b, 0x83002007,
0x078f4b23, 0x83820320, 0x5b84ae20, 0x00052008, 0x091eff54, 0x00ee0550, 0x014a0171, 0x0179015f, 0x41c60282, 0x0042016e, 0x000d0001, 0x8236010e,
0x00102e07, 0x0150010d, 0x0002003e, 0x0110000b, 0x2025826a, 0x082b825c, 0x23013036, 0x74001a01, 0x11000800, 0x6e010b00, 0x02006501, 0x11000c00,
0x63018201, 0xf9001c01, 0x05007000, 0x14001300, 0x0c017401, 0xef00f500, 0x82008400, 0x69007a00, 0x2a082f82, 0x0112000a, 0x00070109, 0x00e100f2,
0x00d000d5, 0x006c00c9, 0x00620065, 0x005d005e, 0x00200059, 0x0009000e, 0x00d3000a, 0x82030001, 0x00c32409, 0x8253005a, 0x82022009, 0x00992403,
0x82550056, 0x00062407, 0x824f0002, 0x0005321f, 0x00bf0006, 0x00b800b9, 0x00a000b2, 0x009e009f, 0x205f824c, 0x2c798208, 0x00ad00af, 0x00a200aa,
0x00070004, 0x22518208, 0x8257014c, 0x820c202f, 0x4b5c0803, 0x500ab04b, 0x007d4058, 0x110b0d10, 0x0c007210, 0x0c111411, 0x14008014, 0x13141113,
0x1213007e, 0x0070130b, 0x1209120a, 0x0080090a, 0x09120309, 0x03007e03, 0x02031202, 0x0602007e, 0x7e060212, 0x12050600, 0x007e0506, 0x05120805,
0x08007e08, 0x70080707, 0x0f000000, 0x690f000e, 0x28085f82, 0x0e010d0e, 0x000d0069, 0x0b0d110b, 0x00110069, 0x12110a12, 0x0407006a, 0x00590704,
0x62040707, 0x04070400, 0xb04b1b52, 0x2084820c, 0x2384987e, 0x7e121311, 0x402185e1, 0x23808380, 0x800b100d, 0xb1110641, 0x08122381, 0x08417e07,
0x5951082f, 0x012b4159, 0x017f0180, 0x017b017d, 0x01760178, 0x01670168, 0x014d014f, 0x01450147, 0x0139013b, 0x01330135, 0x012b012c, 0x01260127,
0x00040106, 0x00cd00ce, 0x00b500b6, 0x00a500a6, 0x00960098, 0x004d004e, 0x00450047, 0x00350037, 0x002f0031, 0x31018225, 0x00060015, 0x36132b18,
0x33023e37, 0x16171632, 0x06823633, 0x14151624, 0x0c821607, 0x021e1726, 0x34171617, 0x11820382, 0x07060628, 0x26222306, 0x05820627, 0x2726272b,
0x06222326, 0x020e0707, 0x22178207, 0x82151616, 0x27242d14, 0x37272626, 0x36272726, 0x07063736, 0x04820583, 0x08843720, 0x0f863420, 0x052e0685,
0x17373625, 0x14150606, 0x022e0717, 0x46822327, 0x82072721, 0x8270830d, 0x82142049, 0x200d8267, 0x29238417, 0x37170707, 0x021e0717, 0x5b833533,
0x14821620, 0xa6820784, 0x34373524, 0x7b823526, 0x36342729, 0x2e273537, 0x82173502, 0x363622b1, 0x20058337, 0x85248237, 0x5d232002, 0x0720051d,
0x22820d82, 0x33373428, 0x36361717, 0xa4823435, 0x16173723, 0x83d88204, 0x2223210c, 0x23258a82, 0x36343526, 0x821c8237, 0x8326202a, 0x170724c9,
0x82262207, 0x37372114, 0x2184ea83, 0x36253683, 0x17323336, 0x05ea7333, 0x6f4fdb84, 0x07062105, 0x19825882, 0x84070721, 0x822320d8, 0x829c826d,
0x249c8213, 0x35333637, 0x82988327, 0x1507231b, 0x4f820717, 0x2507b10a, 0x26222306, 0x17173727, 0x759e7484, 0x2971deb6, 0x0f57517a, 0x614d495d,
0x5d1c062a, 0x5171363b, 0x040a4058, 0x0b020406, 0x11372e05, 0x1b0f1a0c, 0x20752904, 0x281f4921, 0x391e356e, 0x46481425, 0x1b06131f, 0x380d0709,
0xf9fe6946, 0x32955580, 0x04133168, 0x442d2a0f, 0x2e0a0858, 0x27089618, 0x1c06ea6f, 0x49a94064, 0x30922a06, 0x06616057, 0xfe5fc633, 0x3fe601da,
0x423a0233, 0x1815080e, 0x0804020d, 0x04140a06, 0x07162204, 0x0e262320, 0x060d0e0d, 0x10082664, 0x0c184d75, 0x4d8006ac, 0x1242bbc6, 0x24080f33,
0x280b1356, 0x1f080b57, 0x220e1972, 0x17531402, 0x4e374b0c, 0x1434400a, 0x235c9731, 0xc33012f3, 0x1a3a2423, 0x5a312726, 0x17655648, 0x27240206,
0x3f120205, 0x40392717, 0x260a0a1c, 0x0b191b09, 0x9764066a, 0x6c6a5701, 0x0c101292, 0x3e0c0410, 0x0e0e0e10, 0x076e5c0f, 0x3e8f5b2a, 0x5a045808,
0x04584381, 0x4c2a1c04, 0x2c1f1828, 0x75049a0b, 0x1a3241c8, 0x23290e0a, 0x1d60923d, 0x101b030c, 0x3d832e02, 0x156faf69, 0x736213d4, 0x660a222e,
0x0c061307, 0x15181d17, 0x1b7a122d, 0x023e3160, 0x0236285e, 0x02205628, 0x36053615, 0x543d5706, 0x19be024a, 0x2b492621, 0x03506a24, 0x5d7c74cc,
0x1c215a7b, 0x5e481c1d, 0x1e151922, 0x2a171a40, 0x1b2d261d, 0x3806510b, 0x0a19321d, 0x076a760f, 0x21020406, 0x0b060e43, 0x0b14171f, 0x605a4a26,
0x110d5922, 0x39080734, 0x4088324d, 0x0e020238, 0x161e2012, 0x5124102c, 0x780e681b, 0x3f107866, 0x4e013a81, 0x83481023, 0x2622201b, 0x46a6420e,
0x0513b24a, 0x508a2a0a, 0x0f082d37, 0x1c052630, 0x02200232, 0x66330c1c, 0x2e2b0c25, 0x2113173e, 0x121f1916, 0x06020519, 0x23401808, 0x0a260a0b,
0x2d59404c, 0x20511304, 0x1f351b08, 0x216d1e19, 0x273a1806, 0x0201342f, 0x14260201, 0x21463302, 0x4d06200a, 0x38062861, 0x3b010c62, 0x07471a08,
0x10152404, 0x1a1a0c09, 0x0627421f, 0x212e1c08, 0x0c010805, 0x5e241405, 0x6e5b4546, 0x173d0c40, 0x780b2a0f, 0xdd7d2a06, 0x2a101c1a, 0x263b1f2e,
0x22482806, 0x0f0e170d, 0x27140c15, 0x1f0f0228, 0x6a023552, 0x2238220a, 0x04081636, 0x2d2d342a, 0x1a234213, 0x10442e0a, 0x23292218, 0x2514020a,
0x1d11080d, 0x06287e68, 0x0e0a6c42, 0x2a420e34, 0x1a111b19, 0x20072330, 0x2b18ae13, 0x08220609, 0x08440412, 0x0822340e, 0x22087782, 0x12066208,
0x230a2c0c, 0x06280223, 0x04000000, 0x6cfff601, 0x8205f608, 0xed00d800, 0x10010701, 0x44010000, 0x17250545, 0x17070606, 0x05805237, 0x28442320,
0x16173505, 0x26331716, 0x33363435, 0x06071732, 0x16161415, 0x37273733, 0x16201482, 0xf3431983, 0x2c218307, 0x15163233, 0x27260714, 0x27272426,
0x201c8207, 0x211c8215, 0xc8432727, 0x20308206, 0x05c84337, 0x02850982, 0x26070624, 0x70822726, 0x27200582, 0x17335682, 0x06061517, 0x36361715,
0x15161437, 0x22071407, 0x82072726, 0x82062028, 0x21078351, 0x27822215, 0x07273723, 0x219e8227, 0x15822737, 0x2006f543, 0x20708234, 0x05ee4327,
0x3725b982, 0x17021e33, 0x83ae8337, 0x864c8523, 0x023f21bf, 0x1720d084, 0x3722c883, 0x67823527, 0x51823720, 0x15170724, 0x04820722, 0x25208782,
0xd0096f83, 0x37373233, 0x6f156802, 0x833d69af, 0x1b10022e, 0x601d0c03, 0x29233d92, 0x321a0a0e, 0x0475c841, 0x1f2c0b9a, 0x2a4c2818, 0x5804041c,
0x045a8143, 0x8f3e0858, 0x6e072a5b, 0x0e0e0f5c, 0x0c3e100e, 0x100c1004, 0x6a6c9212, 0x6497a9fe, 0x190b6a06, 0x0a26091b, 0x39401c0a, 0x123f1727,
0x1b300502, 0x65170602, 0x315a4856, 0x3a1a2627, 0x30c32324, 0x5c23f312, 0x34143197, 0x374e0a40, 0x53170c4b, 0x0e220214, 0x081f7219, 0x0b28570b,
0x08245613, 0x4212330f, 0x804dc6bb, 0x180cac06, 0x0810754d, 0x0d066426, 0x260e0d0e, 0x16072023, 0x14040422, 0x0408060a, 0x101a1002, 0x3a420e08,
0xd83f3302, 0x18152d12, 0x060c171d, 0x0a660713, 0x62732e22, 0x544a8e13, 0x3606573d, 0x02153605, 0x02285620, 0x025e2836, 0x1b60313e, 0x246a8402,
0x2126492b, 0x74040a19, 0x1d687e28, 0x250d0811, 0x230a0214, 0x10182229, 0x1a0a2e44, 0x2d134223, 0x042a342d, 0x22361608, 0x6a0a2238, 0x1f523502,
0x2728020f, 0x0f150c14, 0x220d170e, 0x26062848, 0x2a2e1f3b, 0xdd1a1c10, 0x78062a7d, 0x170f2a0b, 0x6e400c3d, 0x5e46455b, 0x0c051424, 0x29050801,
0x0608162c, 0x1a1f4227, 0x10090c1a, 0x07042415, 0x3b081a47, 0x38620c01, 0x4d612806, 0x210a2006, 0x14023346, 0x02010226, 0x272f3401, 0x2106183a,
0x1f191e6d, 0x20081b35, 0x2d041351, 0x0a4c4059, 0x230b0a26, 0x06081840, 0x12190502, 0x2116191f, 0x2e3e1713, 0x66250c2b, 0x021c0c33, 0x1c320220,
0x0c2a2f05, 0x50372d08, 0x050a2a8a, 0x20130813, 0x1a302307, 0x2a191b11, 0x0e340e42, 0xbc426c0a, 0x6206120c, 0x08888208, 0x34220847, 0x0444080e,
0x06220812, 0x3c182b09, 0x23230228, 0x0000100a, 0xe6050900, 0xce08b401, 0x08009204, 0x1a001200, 0x28002000, 0x35002e00, 0x47004000, 0x35403800,
0x03080c10, 0x30350001, 0x2527282a, 0x141a1e20, 0x26aa820a, 0x3340464c, 0x51490203, 0x2e080787, 0x01038501, 0x41760202, 0x41474141, 0x04162247,
0x002b1806, 0x17141506, 0x17322726, 0x27222316, 0x35353636, 0x37121716, 0x07171632, 0x82363526, 0x37342905, 0x16313616, 0x27070617, 0x06220482,
0x05843707, 0x16272629, 0x16163336, 0x82061417, 0x082c8225, 0x0714158d, 0x11150627, 0x26031f04, 0x0c084616, 0x160e0c14, 0x0e0c3c14, 0x023c051f,
0x30031c65, 0x17084604, 0x02210b0f, 0x1d0d1b67, 0x196f020c, 0x04111d02, 0x05075204, 0x24071908, 0x0672060a, 0x04062808, 0x060e1787, 0x06251908,
0x14050454, 0x1f130c0d, 0x110e46fe, 0x0d0f2c07, 0x2e080c02, 0x07250f33, 0x210f0c04, 0x14060e30, 0x1840031f, 0x0d270806, 0x081a3115, 0x09020501,
0x14180326, 0x0f050702, 0x00004c31, 0xffdafd0e, 0x4bd6061e, 0x01350b37, 0x0195018c, 0x01a3019d, 0x01b101ab, 0x01c301b8, 0x41c203ca, 0x1a494b87,
0x30015c3e, 0x03002301, 0x0b001300, 0x7d018401, 0x5f016a01, 0x1a014a01, 0x07007400, 0x13001100, 0x8a2a4f82, 0x65016e01, 0x0c000400, 0x5b821100,
0x2209574b, 0x4b150014, 0xb8201657, 0xaf207b82, 0xa8288182, 0xa401a601, 0x9f01a001, 0x98229182, 0x6f4b9701, 0x076b4b08, 0x20005d24, 0x01821600,
0xba010a2e, 0xac01b301, 0xd000d500, 0x59005e00, 0x09207982, 0x7b4b1582, 0x0010214b, 0x21107b4b, 0x7b4b008b, 0x13290806, 0x130b110b, 0x110c0072,
0x150c1115, 0x14150080, 0x7e141511, 0x0b121400, 0x0a007014, 0x0a121612, 0x16008016, 0x09161209, 0x3c894b7e, 0x894b1320, 0x9f8c2021, 0x14112392,
0x93ea7e12, 0x58502224, 0x9c4b8e40, 0x17274108, 0xaa4b94b8, 0x1c294117, 0x8d8f4021, 0x80112190, 0xec11b941, 0x59593491, 0x012f4159, 0x01c901ca,
0x01920193, 0x018e0190, 0x4c7a017b, 0x17264845, 0x18000600, 0x0c10012b, 0x33700145, 0x17162324, 0x36343526, 0x15271637, 0x16070614, 0x17373233,
0x2907584c, 0x26371712, 0x15062326, 0x07831516, 0x37361725, 0x49302726, 0x26240518, 0x36171627, 0x06830f83, 0x26263524, 0x17832227, 0x26343526,
0x0afe2323, 0x212a8e4c, 0x8e4c4a20, 0x0e0d215a, 0x2fc68e4c, 0x1f032642, 0x4e0d1104, 0x140c0e16, 0x041c080c, 0x08079d4c, 0x3c022e2c, 0x0c0e1f05,
0x1c033054, 0x0b21480d, 0x4c08170f, 0x1b0d1d0c, 0x11045419, 0x1f19021d, 0x240a0652, 0x05081907, 0x08285807, 0xca4c2006, 0x35102137, 0x224bca4c,
0x4c132116, 0xe030cbca, 0x06081925, 0x3105170e, 0x140d0c13, 0x5e040405, 0x0805da4c, 0x0f6dfe30, 0x0e11072c, 0x2e330d1a, 0x215e0c08, 0x07040c0f,
0x1f034a09, 0x45040614, 0x08270d15, 0x18340406, 0x02092603, 0x06080105, 0x050f314a, 0x00820007, 0x8800023d, 0x8b05a8fd, 0x03000807, 0x1f002100,
0x20211c40, 0x05061e1f, 0x01080203, 0x184c0100, 0x08085b53, 0x10121381, 0x2b170602, 0x07113313, 0x11250701, 0x0f060614, 0x15020e02, 0x34112311,
0x25373636, 0x1135023e, 0x91012705, 0xfa04bcbc, 0x24c2fe49, 0x24c6736e, 0xc0345049, 0x017d8640, 0x082c3312, 0x0149c2fe, 0xfb0807e7, 0x12026218,
0x97fecc73, 0x3a719583, 0x38251264, 0x2afe4c60, 0x9172e801, 0x1a8a3f67, 0x01605e51, 0x0173cc3d, 0x01020098, 0x039cff3b, 0x0050066d, 0x00150005,
0x0e3d4040, 0x86040301, 0x01052e8c, 0x02030204, 0x06800304, 0x84030301, 0xa1161900, 0x01072109, 0x2705847b, 0x12131415, 0x0a0b0c0d, 0x052f3b82,
0x06081111, 0x11012b18, 0x07211133, 0x83161605, 0x133324ae, 0x82352627, 0x01233e10, 0x95019d3b, 0x0862fe0e, 0xcedc8e0a, 0xde901002, 0x20033003,
0xec8b6bfd, 0xfe518d5e, 0x3a0a8294, 0x859d1c58, 0xe0fc6a01, 0x00040000, 0x0494ff02, 0x004006ae, 0x002f0027, 0x834e003f, 0x45482493, 0x82060802,
0x08230894, 0x08060706, 0x02008007, 0x02010500, 0x03046905, 0x06000102, 0x67060108, 0x00000700, 0x07005707, 0x825f0007, 0x4f002f08, 0x32343519,
0x2b342413, 0x1f060938, 0x8c82002b, 0x0706142a, 0x21230606, 0x26272622, 0x34289282, 0x36363736, 0x34113333, 0x32200583, 0x332eac83, 0x25171632,
0x23341121, 0x01152223, 0x29822634, 0x11150629, 0x21331614, 0x5b353632, 0x15220558, 0x3a823523, 0x042d3982, 0x1f23238b, 0xfd2d521f, 0x1f502d12,
0x080b831f, 0x5e2d5032, 0x384b7340, 0x5c40734b, 0xfd1f522d, 0x7502016b, 0x3d027518, 0x36fd2434, 0x24323224, 0x3424ca02, 0x265683fe, 0x29229a21,
0x13033f58, 0xdcfd2d50, 0x02213a89, 0x210b8424, 0x3e82ce01, 0xfe304582, 0x421f2332, 0x7575d301, 0x322344fd, 0xf2fd2332, 0x012f0583, 0x293c53fc,
0xd6d71543, 0x3c294514, 0x82000653, 0x00013f00, 0x03a8fd00, 0x000807e8, 0xb3060002, 0x32010001, 0x0111112b, 0xa8fde803, 0x50fb6009, 0x1f840000,
0x829c0421, 0x0005271f, 0x05154018, 0x63420202, 0x1223080c, 0x18060210, 0x0133112b, 0xc7012301, 0x2bfcd503, 0x07ce03c7, 0xfb50fb08, 0x00b00450,
0xfdc80001, 0x86b004a8, 0x0102215b, 0x132b5b82, 0x03c81101, 0x045802e8, 0x82a0f6b0, 0x8614201f, 0x0005261f, 0x03144017, 0x205a8d01, 0x215a8311,
0x5b830113, 0xd5031428, 0x0332fcc7, 0x3983c7ce, 0x002e5d83, 0x05270101, 0x068a0302, 0x000f000b, 0xba5fb63d, 0xb04b2806, 0x40585029, 0x8201020c,
0x82612049, 0x011f25dc, 0x11401b4e, 0x6068c482, 0x4059220d, 0x241c820a, 0x260e000f, 0x12d35f03, 0x5184043d, 0x56147e08, 0x145b4847, 0x8653087d,
0x3a020553, 0x3f1a496c, 0x1a3e3a39, 0x823a6c49, 0xffff3b38, 0xfe052501, 0x07078803, 0x3e070701, 0xfc00feff, 0x00b10800, 0xb0fcb001, 0xd3822b35,
0x05000030, 0x8bc78300, 0x0f5f8392, 0x0700f53c, 0x32829e07, 0x09db0024, 0x0786782d, 0x15f28128, 0x500918fc, 0x0f826009, 0x02000722, 0x00203184,
0x072d0583, 0x00a8fd08, 0xf2600900, 0x09b0f615, 0x82178650, 0x25028524, 0xb0043707, 0x0b835000, 0x00200782, 0x1f200386, 0x03a20782, 0x04e8ff23,
0x210383b0, 0x2f82b400, 0x03967520, 0x17829d20, 0x03822520, 0xf0200787, 0x03a20b82, 0x820b0121, 0x92542027, 0x20478303, 0x204f8604, 0x200782c5,
0x83038216, 0x20039f07, 0x83278286, 0x82c32003, 0x21038207, 0x07820101, 0xb0047722, 0x03870783, 0x82470021, 0x86392013, 0x8f67835b, 0x82552003,
0x8303a71b, 0x82d6205f, 0x82c7202f, 0x82572003, 0x8ebd2003, 0x824d2003, 0x2003930f, 0x20178285, 0x2003924a, 0xa7138287, 0x82292003, 0x9207202b,
0x41352003, 0x2520068b, 0x8420078e, 0x038b0f82, 0x03417520, 0x86552006, 0x421b83a3, 0x7e20071b, 0x03a21382, 0x04f4ff23, 0x210383b0, 0x2f82bf00,
0x0396b020, 0x17827f20, 0x03827d20, 0x07864220, 0x07829220, 0xb62003a3, 0x78202782, 0x6b830392, 0x17822320, 0xe6200783, 0x039b0782, 0x1f8e5d20,
0x0f82b720, 0xc8200387, 0x03830b82, 0x6f204783, 0x03930b82, 0x1f833f83, 0xff210382, 0x867386ff, 0x20f3840f, 0xa6138289, 0xf9ff2103, 0x33833f8a,
0x0f82c920, 0x8b20038b, 0x03930f82, 0x1782b420, 0x03929820, 0x0b9f878b, 0x1e20db83, 0x038f4382, 0x13826420, 0x03927020, 0x20063f43, 0x20078700,
0x20bb86b0, 0x83a38689, 0x41bc2017, 0xb720065b, 0x42063b41, 0x0783073b, 0x1f82d783, 0x825ef721, 0x82c6201b, 0x04ba2403, 0x444a01b0, 0xbb20066f,
0xd3820782, 0x210b9343, 0x2f44fdff, 0x8215200e, 0x433d200f, 0xaf2012a3, 0x03831382, 0xc3431f83, 0x86552007, 0x44d62027, 0x6783069b, 0x0b822b20,
0x17200383, 0x35200782, 0x5d200382, 0x59202386, 0x03830782, 0xab429d20, 0x24ab8306, 0xffb0043b, 0x200f82fe, 0x0607434f, 0x07826b20, 0x6f444b20,
0x8286200a, 0x82f6201f, 0x4458200f, 0xff200537, 0x1f200b83, 0x14200b82, 0x8306bf43, 0x823e200b, 0x8240200b, 0x82212003, 0x829e2003, 0x441a2003,
0x32200643, 0x03830782, 0x07820c20, 0x03827b20, 0x03829c20, 0xcb87db87, 0x13824120, 0x1b861320, 0x07827c20, 0xab863620, 0xcf8a4320, 0x8307cb43,
0x83b383cb, 0x82d387cf, 0xffff21cb, 0x0382a382, 0x86c50021, 0x2113825f, 0x47861d00, 0xff868720, 0xef452620, 0xe8ff2109, 0x20066f41, 0x83078251,
0x20938703, 0x0a734183, 0x200b0345, 0x064f414b, 0x82075741, 0x0101217b, 0x3b201382, 0x20062744, 0x06674118, 0x07825920, 0x03821220, 0x03822f20,
0x9b448c20, 0x455c2006, 0x1e2006df, 0x83066742, 0x8202206b, 0x8262200b, 0x450d2003, 0x07200637, 0xa6200782, 0xef20c382, 0x34200782, 0x3c200382,
0xd6200382, 0x47200f82, 0xe6200382, 0x6a200b82, 0x03200382, 0x8d206b86, 0xd4240782, 0x3001b004, 0x00200389, 0x00200b82, 0x200b5344, 0x2023821f,
0x0eaf4363, 0x0f82b120, 0x8307f343, 0x424e20cf, 0x3f430ad3, 0x82b02007, 0x437c2013, 0x8b830a0f, 0xd3416420, 0x421b8306, 0x2f83073f, 0xa786f020,
0x9b867020, 0x1b438420, 0x07074506, 0x20079744, 0x201782b7, 0x20038223, 0x20038267, 0x200b865e, 0x20078231, 0x0623416e, 0x07824220, 0x03825c20,
0x03822620, 0x03823a20, 0x8b42a020, 0x82892006, 0x85662007, 0xfdff2103, 0xb6200782, 0x20064b43, 0x87db862a, 0x414520cb, 0x37830647, 0x0b82a320,
0x3520e783, 0x87069343, 0x826820cf, 0x2003830f, 0x06fb4764, 0xd3868a20, 0x0f45c120, 0x42132006, 0x6f200683, 0x20062342, 0x200782ca, 0x061f4148,
0x2b86c020, 0x13465f20, 0xf4ff2109, 0x4406c345, 0x6f4107fb, 0x44732007, 0x1f870ee3, 0x67448783, 0x419e200b, 0x002005bb, 0x87201383, 0x50203382,
0x9b830382, 0x07827f20, 0x8b860f20, 0x07829820, 0x3b420420, 0x828c2006, 0x41062007, 0x4b20061b, 0x1c200782, 0x20062341, 0x067f4509, 0x07821e20,
0xa748c420, 0x20fb8306, 0x200f8280, 0x200f82bc, 0x20038263, 0x200b82e9, 0x067f4660, 0xdf868620, 0x20067f44, 0x20b78300, 0x201382f0, 0x0a0b4784,
0x3b48c520, 0x27002105, 0x200a2748, 0x06cf4391, 0x97429d20, 0x83002005, 0x474a208f, 0x1320065f, 0x4306fb42, 0x538207f3, 0x82a5ff21, 0x82522077,
0x827a2003, 0x21c78203, 0x0785eefe, 0x5b830020, 0x2f822520, 0x8f86de20, 0x55204f83, 0x8b200b82, 0x20068f43, 0x20078285, 0x2003822c, 0x200382b9,
0x20338243, 0x20078503, 0x20238300, 0x060f44c7, 0x27423920, 0x86752006, 0x06c34907, 0x04f6fe24, 0xcb82feb0, 0x8228ff21, 0x82342037, 0x85f3200b,
0xffff2103, 0x9819e749, 0x82b32033, 0x82932043, 0x8266203f, 0x82682003, 0x82802003, 0x21f38203, 0x178292ff, 0x6020db83, 0x40200782, 0xfb821382,
0x8215fe21, 0x822d2007, 0x25978203, 0xb004e4fd, 0x1b82e3fd, 0xff853f20, 0xdf820020, 0x2b9fff20, 0x2b828820, 0x3f829020, 0x03829220, 0x03828b20,
0xfe21eb82, 0x20078261, 0x2003820c, 0x201b820b, 0x0547418d, 0xfb490020, 0xa6ff2106, 0x5e200f82, 0x11201b82, 0x4b207f86, 0x56200782, 0x33201382,
0x70200382, 0x79200382, 0x24200382, 0x02201382, 0xd7208b82, 0x7f200382, 0x17200f82, 0xee200f82, 0x84090f49, 0x825d2043, 0x82102013, 0x82122003,
0x824c2003, 0x82572003, 0x822a2003, 0x86292003, 0x4171204b, 0x2b9f05f3, 0x826d0021, 0x46aa2027, 0x6b82063b, 0x82a00021, 0x43d8200b, 0x892006db,
0x2006b341, 0x200782a2, 0x2027865a, 0x06234a3a, 0xe3821b83, 0x42b30021, 0x0f83066f, 0x0b824820, 0x0382c220, 0xb3423e20, 0x824f2006, 0x4b312007,
0x1f830e73, 0x33830387, 0x83831f83, 0x7386a020, 0x6344d420, 0x82b52006, 0x82ad2007, 0x86b02003, 0x202b8307, 0x06674287, 0x0782a520, 0x03823820,
0x03827620, 0x03829520, 0x07469420, 0x86092006, 0x83938313, 0x86b72037, 0x82bf203f, 0x43222007, 0x6b83068b, 0xcb8303df, 0x8c20039b, 0x07d3eb86,
0xa717e34c, 0x1f0f4a17, 0xbb82b320, 0xc7410383, 0x200bb30b, 0x061b4231, 0x012307d2, 0x83b00484, 0x3c002103, 0x2006e346, 0x0683426a, 0x27452f20,
0x82722006, 0x82572007, 0x82078303, 0x8d00212b, 0xb2200b82, 0x70200382, 0x2006cb46, 0x20078287, 0x065b428e, 0x5347b920, 0x827e2006, 0x20278307,
0x06fb4762, 0x0782c620, 0x43868f20, 0x07827820, 0x2f869b20, 0x2f8aaf20, 0x01212b82, 0x208b8222, 0x82038288, 0x230121e7, 0x21200782, 0x33200382,
0x25200382, 0x3d200382, 0x19200382, 0x23200382, 0x27f40382, 0xfd000023, 0x24af82c9, 0xffb0041d, 0x200382f3, 0x200382e5, 0x200382ab, 0x200382f9,
0x200382f7, 0x200382d6, 0x2003829f, 0x200382c5, 0x202782b5, 0x20038211, 0x20278609, 0x823386e1, 0xa0012137, 0x9420bf82, 0xad200382, 0x93200382,
0x2105d745, 0x0b82ca01, 0x00210382, 0x05db46a8, 0x5e202384, 0x21054744, 0x2f474801, 0x82612006, 0x20038307, 0x202b82b0, 0x822786cb, 0x5a002143,
0x4b0ae74f, 0x0b8f0b97, 0x3f858e20, 0x33820120, 0x82ae0121, 0x21a78243, 0x0782f100, 0x17825320, 0x0782e720, 0x03822420, 0x03826720, 0xb0044124,
0x13822f02, 0x43497920, 0x8f2fa809, 0x200f8373, 0x205382c2, 0x204b821d, 0x83a7863f, 0x8a462007, 0x866420b3, 0x82278fdf, 0x8600200f, 0x21b3834f,
0x0b4ad400, 0xd2002105, 0xbf834f82, 0x0021c782, 0x8213829b, 0x6f012103, 0x03831382, 0x07823c20, 0x1385e820, 0x178b0020, 0xfc29ef86, 0xf7b004a7,
0xfcb004f6, 0x20038244, 0x052f4654, 0x8291fc21, 0x82ac200b, 0x04e0230b, 0x5b82f9b0, 0x8208f921, 0x82bc2007, 0x8243200f, 0x82aa2017, 0x82c52007,
0x043d240f, 0x823ff8b0, 0x258f820b, 0xb004abfd, 0x0f820afe, 0x1f82ce20, 0x4f821820, 0x17826820, 0x0b825620, 0x0382c020, 0xb0045c24, 0x1382dcfb,
0x0782c220, 0x0382a520, 0x1382f220, 0x038a2c20, 0x0b827c20, 0x13820383, 0x85b8fb21, 0x83f72017, 0x8251200f, 0x8279200b, 0x82152003, 0x82c9203b,
0x86e72007, 0x411b8203, 0xff21077b, 0x22d782ec, 0x83b004f4, 0x21038f07, 0x17896400, 0x823a0021, 0x853c2077, 0x73fc2103, 0x2382178a, 0x8930fd21,
0x600124b3, 0x8201b004, 0xa20121d3, 0x03820782, 0x20076b41, 0x41008400, 0x0c83079f, 0xcb200b82, 0x44200382, 0x81200382, 0xf6200382, 0x46200382,
0xca200382, 0x20062744, 0x20078274, 0x200382b5, 0x2003828a, 0x20378645, 0x2053824d, 0x200b8268, 0x20078288, 0x200382a0, 0x20038214, 0x06334dff,
0xdb498f20, 0x482b2006, 0xe82006ff, 0x66201b82, 0x00210385, 0x201382c8, 0x062b448e, 0x0b851f20, 0x86ef0121, 0x85d6203b, 0x82012007, 0x21038347,
0x63850002, 0x67820120, 0x00200383, 0x64204f87, 0x21055343, 0xbf422c00, 0x4b078306, 0x7820076b, 0xdc201382, 0xf1200382, 0x574b0786, 0x47aa2007,
0xe78306af, 0x23830383, 0xab4ab220, 0x820b8306, 0xf2ff21c7, 0x200e9f47, 0x830f8285, 0x83af8303, 0x823620ab, 0x82c1200f, 0x86282003, 0x89a6204b,
0x82ab84af, 0x500021b7, 0x20205386, 0x24200782, 0x69201f82, 0xad200386, 0x83060b41, 0x216f82bb, 0x3b860f01, 0x07850e20, 0x82ab0021, 0x2003831f,
0x832786a0, 0x073743d3, 0x49200783, 0x83064343, 0x21ab828b, 0x63412b00, 0x82978306, 0x20bb841b, 0x06b3457e, 0x2f447820, 0xe6ff211d, 0x2006c741,
0x90078525, 0x045a220f, 0x201384b0, 0x201f8227, 0x065b4830, 0xf34c3a20, 0x27078406, 0x87006009, 0xed016009, 0xff216785, 0x82078ab0, 0xb5ff21f3,
0x1b837f89, 0x82d4ff21, 0x82d4204f, 0x963b2033, 0x93892003, 0x86338217, 0x44002057, 0x13aa1373, 0x04580225, 0x851a04b0, 0x930b8393, 0x4d178c4f,
0x63830757, 0x96073347, 0x96378407, 0x086f471b, 0x37831f92, 0x7d263b90, 0x1c01b004, 0x3787b004, 0x02230b83, 0x83b00408, 0xf6ff2103, 0x8b05b750,
0x97178b07, 0x68012123, 0x53433795, 0x931f8b07, 0x836f872b, 0x8b8b871b, 0x8be39b27, 0x8bcb831b, 0x9b37a7db, 0x0b0b4127, 0x2741cf87, 0x87b3830f,
0x500021af, 0x8b094f44, 0x21338bd7, 0x23854b00, 0x2f973783, 0x37416b8f, 0x245b881b, 0xffb004b5, 0x063748ba, 0xd7418782, 0x8777830f, 0x41778313,
0xdb8f136b, 0x9f8f0f97, 0x930fc341, 0x848f8ffb, 0x453a20ff, 0x07830667, 0x0b820020, 0x039e9620, 0x210ee742, 0xef551601, 0x07d74b06, 0x0f826420,
0x9f4fd020, 0x820a2006, 0x043b2407, 0x500301b0, 0x66200623, 0x2006734d, 0x200782cb, 0x20038234, 0x065f4956, 0x27858520, 0x04010224, 0x838302b0,
0x2745a220, 0x82ab2006, 0x822a2007, 0x852f2003, 0x6400251f, 0xceffb004, 0x2105eb42, 0x13822700, 0x7f45ef20, 0x83002005, 0x8303834b, 0x860b873b,
0x62ff2107, 0x17207f82, 0x4f202782, 0x01210391, 0x821b8220, 0xe4002103, 0xcc205382, 0xfc201f82, 0x8206d745, 0x60ff2547, 0xe8feb004, 0x07821782,
0x821e0021, 0x866a2007, 0x829b8383, 0xe7ff2103, 0xc4201382, 0x83061349, 0x833b836b, 0x85242007, 0x06012193, 0xe1200782, 0x1920038a, 0x03870b82,
0x0b86c520, 0x07826b20, 0x03827a20, 0xa350f520, 0x0bef4406, 0xff21af86, 0x065b46f8, 0x5b476820, 0x1afc2505, 0xa0fdb004, 0xfe2d0385, 0xf8b00441,
0xf5b004a1, 0xfab004c1, 0x2413820f, 0xfcb00491, 0x068f4874, 0xb004e024, 0x2748c8fb, 0xbbfd2109, 0xfa280f82, 0xaef7b004, 0x15f2b004, 0x5e201782,
0x12203b82, 0x4c233382, 0x82f9b004, 0xb4f42177, 0xda200f82, 0x36201782, 0x4e200782, 0x8f201f8a, 0xfc210b85, 0x2017825c, 0x820b8210, 0x12f825b3,
0xe8f6b004, 0x0b834f85, 0x8240fc21, 0x2193820b, 0x1f82a5fc, 0xf721cf82, 0x2007823a, 0x8213823c, 0x6901216b, 0x21056b43, 0xcb486601, 0xecff2105,
0xfe210785, 0x830f9188, 0x0102211b, 0x8705eb48, 0x07234907, 0x8df40021, 0x5ffc212f, 0xf3825782, 0x07874f87, 0x3d201798, 0x00215785, 0x8a478eed,
0xbbfd2517, 0xb9fdb004, 0xb382bb82, 0x41fafb21, 0x6b49061f, 0xda00210a, 0x20062b47, 0x207b82b0, 0x2003869e, 0x200782cc, 0x20038205, 0x28038244,
0xfc00009e, 0xfd00005e, 0x20078224, 0x200382b4, 0x200382bd, 0x2003825c, 0x20038659, 0x20078276, 0x240b86c1, 0xfb000096, 0x211f85f6, 0x07821ffd,
0x3782d820, 0x07822e20, 0x0382c020, 0x1b824720, 0x4f821b20, 0x03820e20, 0x0382d220, 0x03826a20, 0x03826d20, 0x03820c20, 0x03860920, 0x07822620,
0x03827120, 0x7b860720, 0x07826e20, 0x03828920, 0x4783f320, 0x21051b41, 0x3b86d301, 0x07826620, 0x3b8a0d20, 0x0b822720, 0x03827220, 0x03820820,
0x03824520, 0xa5203b83, 0xa5200782, 0x57207b82, 0xd4200382, 0xd0200b82, 0xc7200382, 0xde207386, 0x03870782, 0x0b823420, 0x03823620, 0x03863420,
0xff860520, 0x0f205f83, 0x64206786, 0xc6200782, 0x4383b386, 0x00000727, 0x00005400, 0x2cef8201, 0xb004e605, 0x8800dafd, 0x02003b01, 0x26008300,
0x011400c8, 0x83250127, 0x2003840a, 0x8a0582f8, 0x58012103, 0x70203782, 0x88200382, 0xa0200382, 0xb8200382, 0xd0200382, 0xe8230382, 0x82020000,
0x8202200b, 0x8202200b, 0x7403290b, 0x8c030000, 0x2c040000, 0xc0200382, 0xd8200382, 0xf0240382, 0x04060000, 0x1c200382, 0x34200382, 0x3f820382,
0x00440725, 0x825c0700, 0x826c2003, 0x82c82003, 0x82e02003, 0x256f8203, 0x00001008, 0x03822808, 0x03824020, 0x08207382, 0x08207382, 0x09207382,
0x09242b82, 0x0a0000ac, 0x0a201382, 0x0a201382, 0x0a201382, 0x0a204782, 0x0b247b82, 0x0b000008, 0x0b217382, 0x820782a4, 0x680c2543, 0x800c0000,
0x98200382, 0xb0200382, 0x5f820382, 0x5f820c20, 0x1b820c20, 0x5f820d20, 0x93820d20, 0x93820d20, 0x53820e20, 0xaf820e20, 0x0f820e20, 0x0f820e20,
0x00280f24, 0x77820f00, 0x63820f20, 0x63820f20, 0x82940f21, 0x00f4230f, 0x23821000, 0x82d41021, 0x00ec2307, 0xc7821100, 0x821c1121, 0x298b8207,
0x0000c411, 0x00004812, 0x03826012, 0x03827820, 0x03829020, 0x0382a820, 0x1220f782, 0x12205382, 0x13255382, 0x130000cc, 0x240382e4, 0x150000fc,
0x82038238, 0x241624a3, 0x82160000, 0x48172493, 0x82170000, 0x8217203b, 0x8217203b, 0x4418253b, 0x5c180000, 0x6f820382, 0x5f821920, 0x5f821920,
0x00dc1924, 0x1b821b00, 0x7f821b20, 0x00401c25, 0x82581c00, 0x20578203, 0x25f3821d, 0x0000641d, 0x03827c1d, 0x1d20a782, 0x1d202f82, 0x1d202f82,
0x1d202f82, 0x1e24b382, 0x1e00000c, 0x1e206382, 0x1e20f782, 0x1f20f782, 0x1f205b82, 0x1f209b82, 0x1f209b82, 0x1f209b82, 0x20204382, 0x20254382,
0x20000068, 0x820382bc, 0x8220205f, 0x822120df, 0x822120df, 0x782124df, 0x82210000, 0x82212077, 0x82212033, 0x82212033, 0x82212033, 0x82222033,
0x20222433, 0x82220000, 0x820388cb, 0x142325db, 0x2c230000, 0x67820382, 0xc3822320, 0x82742321, 0x008c240b, 0x82842400, 0x829c2003, 0x00b42303,
0x9b822500, 0x9b822520, 0x00d02624, 0xc7822700, 0xbb822720, 0x00a02724, 0x83822800, 0x2b822820, 0x00b02829, 0x00702900, 0x82342a00, 0x201f8203,
0x2043822b, 0x206b822c, 0x246b822c, 0x0000502c, 0x2127822c, 0x0782802c, 0x03829820, 0x0000b023, 0x20df822c, 0x20df822c, 0x20b7822d, 0x2013822e,
0x28b38230, 0x00009030, 0x0000a830, 0x20138232, 0x20cb8233, 0x244f8233, 0x00003034, 0x253f8234, 0x00000035, 0x03824c35, 0x03826420, 0x35217b82,
0x20078294, 0x200382ac, 0x820382c4, 0x8236209b, 0xf836244b, 0x82380000, 0x823820c7, 0xe83824c7, 0x82390000, 0x8239207b, 0x8239203b, 0xc0392453,
0x823a0000, 0x9c3a21e7, 0x0b830782, 0x0782e420, 0x3b20fb82, 0x3b20a382, 0x3c254382, 0x3d000088, 0x8203821c, 0x543e25bf, 0x6c3e0000, 0xff820382,
0x00283f25, 0x82403f00, 0x20238203, 0x2567823f, 0x0000f43f, 0x03820c40, 0x03822420, 0x03823c20, 0x40202b82, 0x41202b82, 0x41206b82, 0x41206b82,
0x4220e782, 0x43200382, 0x43284782, 0x440000d8, 0x450000a4, 0x4520a782, 0x45203f82, 0x45203f82, 0x46203f82, 0x46208f82, 0x46208382, 0x48241f82,
0x48000008, 0x48208382, 0x49243f82, 0x49000078, 0x4a291f82, 0x4a000090, 0x4b0000b4, 0x240382b8, 0x4c0000d0, 0x20038258, 0x82038270, 0xa04c21a3,
0x17820782, 0x17834c20, 0x0000e824, 0x0382004d, 0x0382cc20, 0x4d24cf82, 0x4e0000fc, 0x4e20ab82, 0x4e206f82, 0x4e206f82, 0x4e206f82, 0x4f204f82,
0x4f20af82, 0x4f259382, 0x4f0000c8, 0x240382e0, 0x500000f8, 0x82038210, 0x825020db, 0x9c5021e3, 0x6f820b82, 0x47825020, 0x00f05024, 0x93825100,
0x93825120, 0x93825120, 0xd3825120, 0x00985125, 0x821c5200, 0x20cb8203, 0x8c4b8253, 0x00d42303, 0x33825300, 0x00bc5424, 0x1f825500, 0x7f825620,
0x63825620, 0x13825620, 0x00745724, 0x5f825700, 0xeb825720, 0xeb825720, 0x002c5824, 0x27825800, 0x67825820, 0xaf825820, 0xaf825820, 0x1f825920,
0x004c5a24, 0xb3825a00, 0xb3825a20, 0x00dc5a24, 0x8f825b00, 0x00045c24, 0x73825c00, 0x828c5c21, 0x820f8307, 0x825c201f, 0x825c203b, 0x825d2033,
0x825d2083, 0x825d201b, 0x905d294f, 0xa85d0000, 0x5c5e0000, 0x6c200382, 0x67820382, 0x00345f24, 0x57825f00, 0x00ec5f25, 0x82446000, 0x20378203,
0x20078261, 0x24778261, 0x00007062, 0x20438262, 0x20438263, 0x25f38263, 0x00005864, 0x03826864, 0x03828020, 0x65204b82, 0x66245782, 0x66000000,
0x67207782, 0x67205f82, 0x68204382, 0x69200b82, 0x6a246382, 0x6a000008, 0x6b205782, 0x6b203b82, 0x6c200f82, 0x6c20df82, 0x6c250f82, 0x6d000094,
0x82038220, 0x836e2063, 0x201b8203, 0x2557826f, 0x0000f06f, 0x03824071, 0x7224bb82, 0x72000030, 0x73246f82, 0x73000024, 0x73246782, 0x740000f4,
0x75201782, 0x75205382, 0x76248f82, 0x770000c8, 0x77201b82, 0x7724bb82, 0x78000098, 0x78216382, 0x8207827c, 0x8279201b, 0x827a2037, 0x827a208b,
0x827b202f, 0xc47c256f, 0xd47c0000, 0x9b820382, 0xb7827d20, 0x23827d20, 0x007c7e24, 0x0f827e00, 0x006c7f24, 0x0f827f00, 0x00148024, 0x33828000,
0x823c8021, 0x82542007, 0x00f82403, 0x82188100, 0x21878203, 0x07824881, 0x82242b82, 0x82000004, 0x8220ef82, 0x82217382, 0x820b82d8, 0x828320af,
0x8283208f, 0x388325cb, 0x50830000, 0x68200382, 0xbc200382, 0x6f820382, 0xef828420, 0x00108524, 0xbf828500, 0x27828620, 0x00cc8624, 0x5b828800,
0x00dc8824, 0x97828900, 0x004c8a25, 0x825c8a00, 0x250f8203, 0x0000a08b, 0x0382288c, 0x0000b823, 0x2047828d, 0x2093828d, 0x20d3828e, 0x246f828e,
0x00009c8e, 0x204b828f, 0x209b8290, 0x242b8290, 0x00008891, 0x284f8292, 0x0000e892, 0x0000b493, 0x25a38294, 0x00004094, 0x03820095, 0x95203f82,
0x9620bb82, 0x96247782, 0x96000064, 0x9620b782, 0x97204b82, 0x9720df82, 0x9725df82, 0x980000ac, 0x20038270, 0x820382d0, 0x8299203f, 0x82992033,
0x829a2023, 0x829a208b, 0x829a202f, 0x829b20a3, 0x829b207f, 0xb09b248f, 0x829b0000, 0x217e82e3, 0x4f829c00, 0xbb829c20, 0x23829c20, 0x007c9c24,
0x03839d00, 0x00008c23, 0x203f829e, 0x20c3829e, 0x2057829e, 0x2463829f, 0x00006c9f, 0x2457829f, 0x000068a0, 0x253b82a0, 0x00009ca1, 0x038234a2,
0x03824420, 0xa3201782, 0xa3203382, 0xa3201382, 0xa328b782, 0xa30000c4, 0xa40000d4, 0xa5200b82, 0xa620db82, 0xa620ef82, 0xa620ef82, 0xa7241382,
0xa80000e4, 0xa8253382, 0xa90000c0, 0x82038248, 0xa8aa243b, 0x82aa0000, 0xc8aa24df, 0x82ab0000, 0x82ab202f, 0x83ac208f, 0x243f8203, 0x000060ad,
0x20f782ad, 0x201782af, 0x242782af, 0x000028b0, 0x201782b0, 0x280782b1, 0x000094b1, 0x0000f4b1, 0x24d782b2, 0x000008b3, 0x244b82b3, 0x0000a4b4,
0x20bb82b5, 0x205b82b5, 0x28e782b5, 0x000020b6, 0x000090b6, 0x20e782b7, 0x209f82b7, 0x200782b8, 0x200f82b8, 0x245782b9, 0x000098ba, 0x205382ba,
0x208b82ba, 0x256f82bb, 0x0000ccbb, 0x03824cbc, 0x0000bc23, 0x206f82bd, 0x218f82bd, 0x0b82e0bd, 0xbe207f82, 0xbe205f82, 0xbe204b82, 0xbe201382,
0xbe201382, 0xbf201382, 0xbf204b82, 0xbf208b82, 0xbf203782, 0xbf25d782, 0xc00000fc, 0x820382a0, 0xd0c021cb, 0x8f820782, 0x8b82c120, 0x0018c125,
0x8230c100, 0x82842003, 0x24838203, 0x000038c2, 0x204382c2, 0x248382c3, 0x000070c3, 0x207382c4, 0x254f82c4, 0x00007cc5, 0x03821cc6, 0xc7201b82,
0xc8202b82, 0xc9287382, 0xc9000004, 0xca000088, 0xcb206b82, 0xcc241b82, 0xcc0000ac, 0xcc209f82, 0xcd207382, 0xce203782, 0xce201382, 0xcf207b82,
0xd0243b82, 0xd1000080, 0xd1243382, 0xd20000dc, 0xd3206782, 0xd3203382, 0xd320b382, 0xd3257b82, 0xd3000040, 0x82038250, 0x82d3203b, 0x82d3203b,
0xecd32523, 0x8cd40000, 0x2b820382, 0x5782d420, 0x3b82d520, 0xab82d520, 0x0028d525, 0x82b0d500, 0x82c02003, 0x20c78203, 0x258f82d5, 0x000064d6,
0x038274d6, 0xd7259782, 0xd7000058, 0x23038268, 0xd80000f4, 0xd820ff82, 0xd8204f82, 0xd8208382, 0xd925ff82, 0xd9000014, 0x2003822c, 0x20038244,
0x8203825c, 0x82d92033, 0x82d92063, 0x82da202b, 0x82da20eb, 0x3cdb24a3, 0x82db0000, 0x82dc205b, 0xc8dc288f, 0x48dd0000, 0x82de0000, 0x82de20e7,
0x82de2047, 0x82de2047, 0xa4df2447, 0x82df0000, 0x82e0205b, 0x82e0201b, 0x82e0206f, 0x82e120ab, 0x82e2200f, 0xa0e225e7, 0xc4e20000, 0xe8240382,
0x0ce30000, 0xdf820382, 0x8254e321, 0x82782007, 0x20cb8203, 0x202782e3, 0x204b82e3, 0x204b82e3, 0x204b82e3, 0x209382e4, 0x209382e4, 0x209382e4,
0x209382e4, 0x209382e4, 0x209382e4, 0x256382e4, 0x0000bce4, 0x0382d4e4, 0x0000f824, 0x03821ce5, 0x03824020, 0xe521eb82, 0x20078288, 0x820382ac,
0xdce52567, 0x00e60000, 0x24200382, 0x8f820382, 0x826ce621, 0x82902007, 0x21678203, 0x0782d8e6, 0xe7206382, 0xe7206382, 0xe7206382, 0xe7206382,
0xe7206382, 0xe7206382, 0xe7206382, 0xe7206382, 0xe7206382, 0xe7206382, 0xe820c382, 0xe825e782, 0xe8000028, 0x2003824c, 0x20038270, 0x20038294,
0x820382b8, 0x82e92063, 0x82e92063, 0x3ce92463, 0x82e90000, 0x82e920cf, 0x84e92167, 0xa8200b82, 0xcf820382, 0x00f0e924, 0x6782ea00, 0x8238ea21,
0x20638207, 0x206382ea, 0x216382ea, 0x0f82b0ea, 0xea205f82, 0xeb20c382, 0xeb20c382, 0xeb24c382, 0xeb000058, 0xeb205f82, 0xeb21c782, 0x820b82a0,
0xe8eb25c7, 0x0cec0000, 0x30200382, 0x5f820382, 0x8278ec21, 0x829c2007, 0x82c02003, 0x20c78203, 0x255f82ec, 0x000008ed, 0x038220ed, 0xed216382,
0x20078250, 0x20038268, 0x20038280, 0x82038298, 0xc8ed2467, 0x82ee0000, 0x82ef208f, 0x82ef207b, 0x82f0200b, 0x82f1207f, 0x82f2204b, 0xb4f22557,
0x64f30000, 0xd0230382, 0x82f40000, 0x82f42007, 0x82f42053, 0x82f52073, 0x82f620eb, 0x2cf62497, 0x82f60000, 0x60f72833, 0xfcf70000, 0x82f80000,
0x82f9204f, 0x82f9208b, 0x82fa209f, 0xbcfa2467, 0x82fb0000, 0xe0fb2177, 0xcb820782, 0x0010fc25, 0x8228fc00, 0x20cf8203, 0x20cf82fc, 0x20cf82fc,
0x20cf82fc, 0x212f82fc, 0x1782b8fc, 0xfc206782, 0xfd205f82, 0xfd206b82, 0xfe20df82, 0xfe206782, 0xff257382, 0x00010094, 0x24038254, 0x010100e0,
0x82038260, 0x40023107, 0xcc020100, 0x74030100, 0x5c040100, 0x28050100, 0xe4280382, 0xb0060100, 0x1c070100, 0xd4230382, 0x82080100, 0x6c082117,
0x7c200782, 0x8c240382, 0x18090100, 0x33820382, 0x27820920, 0x00fc0925, 0x82140a01, 0x822c2003, 0x82442003, 0x202b8203, 0x204b820a, 0x2127820a,
0x0f82a40a, 0x0382bc20, 0x0a254382, 0x0b0100ec, 0x82038204, 0x3c0b2153, 0x27820782, 0x4f820b20, 0x829c0b21, 0x2123820b, 0x0782dc0b, 0x0c204b82,
0x0c201f82, 0x0c201f82, 0x0c201f82, 0x0c201f82, 0x0c25b382, 0x0c0100ac, 0x820382c4, 0xf40c2523, 0x0c0d0100, 0x24200382, 0x27820382, 0xcf820d20,
0x9b820d20, 0x82840d21, 0x214b820f, 0x0782b40d, 0x0d209b82, 0x0d209b82, 0x0e204f82, 0x0e209b82, 0x0e209b82, 0x0e209b82, 0x0e205382, 0x0e205382,
0x0e202782, 0x0e207382, 0x0e204f82, 0x0f202382, 0x0f207382, 0x0f204b82, 0x0f201f82, 0x0f201f82, 0x0f201f82, 0x0f201f82, 0x0f20b782, 0x1020b782,
0x1020b782, 0x10252382, 0x10010034, 0x2003824c, 0x82038264, 0x82102027, 0x8210209b, 0x8210209b, 0x8210209b, 0x8210204b, 0x8212209b, 0x1813242b,
0x82130100, 0x82132027, 0x82132027, 0x82132027, 0x82132027, 0x82132027, 0x82132027, 0x82132027, 0x82142027, 0x821420c3, 0x821420c3, 0x82142077,
0x821420c3, 0x821420c3, 0x821420c3, 0x8214207b, 0x821420c3, 0x821420c3, 0x821420c3, 0x8215209f, 0x821520c3, 0x821520c3, 0x821520c3, 0x741529a3,
0x88160100, 0xa0170100, 0xa3820382, 0xa3821720, 0x77821820, 0xa3821820, 0xa3821820, 0x7b821820, 0x7b821820, 0x7b821820, 0x7b821820, 0x7b821820,
0x7b821820, 0x7b821820, 0x7b821820, 0x4f821920, 0x27821920, 0x77821920, 0x4b821920, 0x23821920, 0x73821920, 0x4b821920, 0x1f821920, 0x1f821a20,
0x1f821a20, 0x1f821a20, 0x00681a24, 0x47821a01, 0x43821a20, 0x3f821a20, 0x07821b20, 0x00481c28, 0x00d81c01, 0x67821d01, 0x00f81d29, 0x00c01e01,
0x82701f01, 0x00e82303, 0x4b822001, 0x00f02024, 0x33822101, 0xaf822220, 0x00b02224, 0xb3822301, 0x00202424, 0x4b822401, 0x00382524, 0x27822501,
0x00a42624, 0x5f822701, 0x00182824, 0x83822801, 0x00002924, 0x47822901, 0x00302a24, 0x67822a01, 0xdb822b20, 0xd7822b20, 0x00bc2c24, 0x5b822d01,
0x8f822e20, 0x2f822e20, 0x2b822e20, 0x63822e20, 0xaf822e20, 0xaf822e20, 0xaf822e20, 0xaf822f20, 0x1f822f20, 0x1f822f20, 0x1f822f20, 0x5f822f20,
0x00283024, 0x63823001, 0x7b823120, 0x57823120, 0x00883225, 0x823c3301, 0x20078203, 0x20bf8234, 0x255b8234, 0x01000c35, 0x03822c35, 0x3521c782,
0x2007826c, 0x8203828c, 0xcc3521df, 0x1f820782, 0x1f823620, 0x1f823620, 0x1f823620, 0x1f823620, 0x1f823620, 0x1f823620, 0x1f823620, 0x1f823620,
0x1f823720, 0x1f823720, 0x1f823720, 0x1f823720, 0x97823720, 0xfb823720, 0x00b83824, 0x9f823901, 0xd3823c20, 0x07823c20, 0x00e43d28, 0x00f83e01,
0x27824101, 0x00604424, 0x97824501, 0x009c4628, 0x00384801, 0x03824901, 0x47824c20, 0x00a84d25, 0x82b04e01, 0x00fc2303, 0x23824f01, 0x3b825020,
0x00c45024, 0xfb825101, 0x00dc5124, 0x5f825201, 0x2b825320, 0x17825420, 0x00205425, 0x82785401, 0x82d82003, 0x20ff8203, 0x20378255, 0x200b8255,
0x201b8256, 0x20db8256, 0x247f8256, 0x01008057, 0x20638257, 0xa30b8357, 0x00e02403, 0x82085801, 0x82902003, 0x244f8203, 0x0100d058, 0x20678259,
0x207f8259, 0x2077825a, 0x2567825a, 0x01003c5b, 0x0382885b, 0x5c259782, 0x5c010004, 0x20038244, 0x82038284, 0x835c20cf, 0x20438213, 0x25bf825c,
0x0100185d, 0x0382345d, 0x03825020, 0x5d21b782, 0x2007827c, 0x2003968c, 0x821782c0, 0x285e255b, 0x5c5e0100, 0xd7820382, 0x82ac5e21, 0x82bc2007,
0x00cc2303, 0x93825f01, 0x82585f21, 0x82742007, 0x209b8203, 0x211b825f, 0x0b82c85f, 0x0389e420, 0x97826020, 0x13826020, 0x27826120, 0x7f826120,
0x00546224, 0x57826201, 0x00106325, 0x82646301, 0x82942003, 0x201f8203, 0x20638264, 0x20cf8264, 0x248b8264, 0x0100a864, 0x20b38264, 0x20b38264,
0x20178265, 0x25178265, 0x0100b865, 0x03821466, 0x67200782, 0x6720e782, 0x68256382, 0x690100d4, 0x82038248, 0x82692047, 0x826a2013, 0x826a20d7,
0x826b20d7, 0x826c2063, 0x246c249b, 0x826c0100, 0x826d201f, 0x826e201f, 0x826e20f7, 0x826e201f, 0x826f201f, 0x826f2093, 0xa4702473, 0x82710100,
0x82722003, 0x82732097, 0x82742003, 0x4474245f, 0x82740100, 0xf07430db, 0xec750100, 0x4c770100, 0x40780100, 0x82790100, 0x827a2003, 0x827b2037,
0x827d2013, 0x827e2023, 0x1c7f24bf, 0x827f0100, 0x807f2117, 0x98200782, 0xbc240382, 0x00800100, 0x33820382, 0x007c8125, 0x829c8101, 0x20138203,
0x204b8281, 0x248b8282, 0x01006082, 0x20838283, 0x280f8283, 0x0100b084, 0x01007485, 0x250f8286, 0x0100a086, 0x03822c87, 0x88204382, 0x8824a782,
0x890100c0, 0x89205782, 0x89211f82, 0x230b82a8, 0x8b0100dc, 0x8b255782, 0x8c010090, 0x82038270, 0xd08c212f, 0xe0200782, 0x4b820382, 0x039a8c20,
0x00848d2d, 0x006c8e01, 0x00388f01, 0x82049001, 0x00d82303, 0x67829101, 0x6f829220, 0x43829220, 0xa7829320, 0x00209425, 0x85ac9401, 0x82952003,
0x8295202f, 0x82962017, 0x829620bb, 0x30972413, 0x82970100, 0x6897218b, 0xe8240782, 0x58980100, 0xc8240382, 0x50990100, 0xd4200382, 0xf4240382,
0x149a0100, 0xab820382, 0x5b829a20, 0xcf829b20, 0x00949b24, 0x17829b01, 0x005c9c29, 0x00a49c01, 0x821c9d01, 0x82642003, 0x21238203, 0x0782b49d,
0x9e201b82, 0x9e203382, 0x9e202b82, 0x9f208b82, 0xa0204b82, 0xa0202382, 0xa1245f82, 0xa20100bc, 0xa324e782, 0xa301003c, 0xa4200f82, 0xa5201f82,
0xa5200b82, 0xa5205382, 0xa6207782, 0xa620c382, 0xa6254382, 0xa70100fc, 0x20038280, 0x230382b0, 0xa80100e4, 0xa820a382, 0xa920b382, 0xaa20af82,
0xaa20db82, 0xab2c2b82, 0xab010008, 0xac010054, 0xad010038, 0xad206f82, 0xad24bb82, 0xae0100a4, 0xae200b82, 0xaf20e782, 0xaf250782, 0xaf010024,
0x82038278, 0x82b0206b, 0x82b02043, 0x82b120fb, 0xacb12857, 0xf0b10100, 0x82b20100, 0x82b220a3, 0x82b220fb, 0x82b2200f, 0x82b3200f, 0x70b52477,
0x82b50100, 0x82b520a3, 0xc0b5257b, 0x48b60100, 0xcc230382, 0x82b70100, 0x82b72077, 0xecb724e3, 0x82b80100, 0x82b82037, 0x82b82037, 0xf8b82523,
0x44b90100, 0x0b820382, 0x1382ba20, 0x4782ba20, 0x005cbb24, 0x9f82bc01, 0xfb82bc20, 0x00a0bc29, 0x004cbd01, 0x821cbe01, 0x82882003, 0x203f8203,
0x201782bf, 0x241782bf, 0x0100bcbf, 0x200f82bf, 0x201b82c0, 0x9cc782c0, 0x20938203, 0x24ff82c1, 0x01009cc1, 0x202b82c2, 0x200f82c2, 0x208782c3,
0x244782c3, 0x01003cc4, 0x20a382c4, 0x24e382c5, 0x0100a4c5, 0x254f82c6, 0x0100a8c6, 0x038204c7, 0x03826020, 0xc8246782, 0xc8010018, 0xc9280782,
0xc9010058, 0xca0100d8, 0xca240782, 0xcb0100e8, 0xcb20ef82, 0xcd204382, 0xcd202782, 0xce243382, 0xce010000, 0xce24bf82, 0xcf0100d0, 0xd020d782,
0xd0201782, 0xd1205b82, 0xd1257382, 0xd20100d4, 0x82038264, 0xacd324b3, 0x82d40100, 0xb4d4248f, 0x82d50100, 0x82d62023, 0x82d6206b, 0x82d7203f,
0x82d72007, 0x82d7202b, 0x82d72027, 0x82d720a3, 0x82d72073, 0x14d82467, 0x82d80100, 0x6cd8219f, 0x98200782, 0x53820382, 0x00f8d825, 0x8224d901,
0x82502003, 0x827c2003, 0x203f8203, 0x206382d9, 0x208382da, 0x205b82da, 0x258782da, 0x010088da, 0x0382b8da, 0x0100e423, 0x20d782db, 0x206b82db,
0x203f82db, 0x209f82db, 0x282782dc, 0x010048dc, 0x010084dc, 0x283b82de, 0x0100d4e2, 0x0100e0e4, 0x243b82e5, 0x0100c4e5, 0x20e382e6, 0x281382e6,
0x010054e7, 0x0100dce7, 0x219382e8, 0x07829ce8, 0xe9201382, 0xe9247382, 0xea0100fc, 0xeb24bf82, 0xec010068, 0xec209f82, 0xed206382, 0xee200382,
0xef245f82, 0xef010018, 0x23820783, 0x7382f020, 0x5f82f020, 0x00f0f024, 0xc382f101, 0x828cf121, 0x20378207, 0x240f82f1, 0x01004cf2, 0x20bb82f2,
0x201f82f2, 0x202b82f2, 0x205782f3, 0x20f782f3, 0x249f82f3, 0x010010f4, 0x210f82f4, 0x0782acf4, 0x0100f424, 0x03823cf5, 0xf520cf82, 0xf6257f82,
0xf6010008, 0x20038234, 0x82038294, 0x82f72047, 0x82f7201b, 0x82f82037, 0x82f82017, 0xa4f825d3, 0x04f90100, 0xbb820382, 0x5b82f920, 0x1782fa20,
0xbf82fa20, 0xd782fa20, 0x0024fb24, 0x3782fb01, 0x1f82fc20, 0x0078fc29, 0x00c0fc01, 0x825cfd01, 0x00bc2303, 0xc782fe01, 0x8270fe21, 0x20278207,
0x200b82ff, 0x25db82ff, 0x0200bcff, 0x03820800, 0x03828020, 0x0200fc24, 0x03822801, 0x02007c24, 0x03821002, 0x03201382, 0x03290782, 0x04020090,
0x05020098, 0x82038230, 0xd806242f, 0x82070200, 0x5c072133, 0xb0240782, 0x04080200, 0x58200382, 0xa4240382, 0x14090200, 0x2f820382, 0x000c0a28,
0x008c0a02, 0x27820b02, 0x82380b21, 0x82482007, 0x82742003, 0x82842003, 0x21278203, 0x0782c40b, 0x0200ec24, 0x03821c0c, 0x03824c20, 0x03827820,
0x0200c024, 0x0382000d, 0x03825420, 0x03829420, 0x0200e824, 0x0382440e, 0x0e254782, 0x0f0200cc, 0x20038220, 0x23038260, 0x100200b4, 0x10209782,
0x10217382, 0x240b82a0, 0x110200d0, 0x82038218, 0x8211200f, 0x821120a7, 0x8212202b, 0x82122047, 0xc8122573, 0x64130200, 0x17820382, 0x00f01325,
0x826c1402, 0x829c2003, 0x205b8203, 0x25eb8215, 0x02006815, 0x0382a815, 0x1620d382, 0x1620a782, 0x16209f82, 0x17204f82, 0x17200b82, 0x17257782,
0x180200e0, 0x82038240, 0xec18253f, 0x50190200, 0xb8230382, 0x821a0200, 0x241a215f, 0xbb820782, 0xab821a20, 0x3f821a20, 0x00041b24, 0x37821b02,
0x82801b21, 0x00f82407, 0x82901c02, 0x20e78203, 0x209b821d, 0x204b821d, 0x2037821d, 0x2017821d, 0x20c3821e, 0x24c3821e, 0x0200081f, 0x257f821f,
0x0200bc1f, 0x03821020, 0x03827420, 0x0200dc23, 0x20438221, 0x25438221, 0x0200d421, 0x03821422, 0x22202382, 0x2320a382, 0x23205f82, 0x23206f82,
0x2320f382, 0x24259782, 0x24020034, 0x82038274, 0x1c2524af, 0x82250200, 0x82252027, 0x8226206f, 0x5c26244b, 0x82260200, 0x82272063, 0x8227200b,
0x82272017, 0x18282d17, 0xb0280200, 0x3c290200, 0x782b0200, 0xb3820382, 0x4f822c20, 0x00c02c25, 0x82482d02, 0x28878203, 0x0200442e, 0x0200cc2e,
0x2433822f, 0x02009c30, 0x205b8231, 0x20038232, 0x208b8233, 0x20078234, 0x24c38235, 0x02004036, 0x21bb8237, 0x07827037, 0x03829820, 0x0200e827,
0x0200ec3b, 0x2443823c, 0x02000c3f, 0x82038340, 0x82412013, 0x8242205b, 0x54432413, 0x82440200, 0xfc44248f, 0x82450200, 0x8246202f, 0x9446245b,
0x82460200, 0x824720eb, 0x82482007, 0x8248202f, 0x8249208b, 0x824a201b, 0x824b2083, 0x824c2077, 0x824c20eb, 0x7c4d2873, 0x60510200, 0x82550200,
0x6c5524b3, 0x82560200, 0x825620e7, 0x8257209f, 0xe45b240f, 0x825f0200, 0x826420d7, 0x8268205f, 0x826a2017, 0x306b24d3, 0x826b0200, 0x8c6e2417,
0x826f0200, 0x8272209f, 0xa87625cf, 0x38790200, 0xfb820382, 0x5f827a20, 0xab827b20, 0x53827c20, 0x0b827c20, 0x00807d25, 0x82187e02, 0x20238203,
0x2023827f, 0x2087827f, 0x207b8282, 0x203b8282, 0x20e38283, 0x20938283, 0x24c78285, 0x02000086, 0x207f8286, 0x28fb8287, 0x0200b487, 0x0200f489,
0x20c7828a, 0x2c7f828a, 0x0200888d, 0x0200e08f, 0x0200c090, 0x28138293, 0x02006496, 0x02001099, 0x204f829c, 0x2543829d, 0x0200909f, 0x038258a0,
0xa3259782, 0xa302002c, 0x20038da4, 0x20a382a5, 0x20d382a6, 0x202b82a8, 0x202782a8, 0x20bb82a8, 0x208782a8, 0x206b82aa, 0x259b82ab, 0x020084ab,
0x0382a0ab, 0xac245f82, 0xad020074, 0xad245b82, 0xae020094, 0xaf205782, 0xaf203382, 0xb0294f82, 0xb0020050, 0xb102009c, 0x82038220, 0xb8b12583,
0x28b20200, 0xf8230382, 0x82b30200, 0x30b4243f, 0x82b40200, 0x5cb525b7, 0x24b60200, 0x4f820382, 0x2f82b720, 0x00b0b829, 0x0060b902, 0x8234ba02,
0x827c2003, 0x20638203, 0x207382bb, 0x245b82bb, 0x0200ecbc, 0x246b82bd, 0x020070bf, 0x242782bf, 0x02000cc0, 0x200782c0, 0x24c382c2, 0x020078c3,
0x20ab82c4, 0x205382c6, 0x253b82c7, 0x02004cc7, 0x03826cc7, 0xc724bb82, 0xc80200ac, 0xc824d382, 0xc90200c8, 0xc920c382, 0xca202382, 0xca209782,
0xca255f82, 0xcb0200e0, 0x8203823c, 0x04cc257f, 0x54cc0200, 0x0b830382, 0x0200f023, 0x211782cd, 0x078288cd, 0x0200d423, 0x20df82ce, 0x243b82cf,
0x0200e4cf, 0x247f82d0, 0x0200d8d0, 0x20a782d1, 0x25cf82d1, 0x020074d2, 0x038200d3, 0xd3248382, 0xd40200d0, 0xd5203782, 0xd5209b82, 0xd620f382,
0xd6248782, 0xd70200fc, 0xd7208b82, 0xd8200782, 0xd920e382, 0xd920cf82, 0xda20cf82, 0xda20f782, 0xda208382, 0xdb206b82, 0xdb242782, 0xdc0200a8,
0xdd207b82, 0xde201b82, 0xdf200782, 0xe024b782, 0xe002001c, 0xe120af82, 0xe1205382, 0xe1208782, 0xe1247f82, 0xe20200f4, 0xe221bf82, 0x82078284,
0x82e22027, 0x82e32013, 0x2ce32453, 0x82e30200, 0x82e32047, 0x82e3209f, 0x82e320af, 0x82e32037, 0x82e4209f, 0xa4e4253b, 0xc4e40200, 0xb7820382,
0x1382e420, 0x0038e524, 0x2782e502, 0x6b82e520, 0x4f82e520, 0x0058e624, 0xbf82e602, 0xb382e620, 0x1f82e620, 0x0b82e720, 0x00cce724, 0x9b82e702,
0x0014e824, 0x5782e802, 0x828ce821, 0x20138207, 0x253b82e9, 0x0200c8e9, 0x03825cea, 0xeb207f82, 0xeb248b82, 0xeb020088, 0xeb21af82, 0x820782bc,
0x82eb2063, 0x82ec2053, 0x82ec2093, 0x82ec207b, 0x82ec205b, 0xd0ec258f, 0x34ed0200, 0x50200382, 0x6c200382, 0x33820382, 0x8298ed21, 0x82c02007,
0x82e82003, 0x20778203, 0x201382ee, 0x204782ee, 0x202b82ee, 0x202382ef, 0x207382ef, 0x240f82ef, 0x020010f0, 0x240b82f0, 0x020008f1, 0x24f782f1,
0x020000f2, 0x208382f2, 0x245782f3, 0x020030f4, 0x249782f4, 0x0200fcf4, 0x202782f5, 0x216382f5, 0x0b8248f5, 0xf5207782, 0xfc314382, 0xff02007c,
0x00030084, 0x090300a4, 0x0a030088, 0x2403821c, 0x0b0300ac, 0x240382d4, 0x0c0300f4, 0x20038230, 0x24038250, 0x0d03008c, 0x20038208, 0x3a038424,
0x07000001, 0x00cb0141, 0x00780060, 0x0102000a, 0x00580280, 0x0200008d, 0x82150ebb, 0x0004274b, 0x01260000, 0x258200ce, 0x00220982, 0x05825600,
0x01220b85, 0x0d820900, 0x02240b85, 0x5f000600, 0x03242386, 0x65001a00, 0x04240b86, 0x7f001000, 0x05240b86, 0x8f000d00, 0x06240b86, 0x9c000f00,
0x07240b86, 0xab003400, 0x08240b86, 0xdf003600, 0x09240b86, 0x15013600, 0x0b240b86, 0x4b011100, 0x0c200b86, 0x5c200b82, 0x0d240b86, 0x6d019000,
0x0e240b86, 0xfd011a00, 0x0122b182, 0xa3820904, 0x1702ac22, 0x01240b86, 0xc3022000, 0x02240b86, 0xe3020e00, 0x03240b86, 0xf1023400, 0x04240b86,
0x25032000, 0x05240b86, 0x45031a00, 0x06240b86, 0x5f031e00, 0x07240b86, 0x7d036800, 0x08240b86, 0xe5036c00, 0x09240b86, 0x51046c00, 0x0b240b86,
0xbd042200, 0x0c200b86, 0xdf200b82, 0x0d240b86, 0x01052001, 0x0e240b86, 0x21063400, 0x10240b86, 0x55061200, 0x11240b86, 0x67060c00, 0x01250b85,
0x062c0000, 0x240b8673, 0x06540001, 0x240b869f, 0x062a0002, 0x240b86f3, 0x072e0003, 0x240b861d, 0x07260004, 0x240b864b, 0x071c0005, 0x200b8671,
0x20238206, 0x080b868d, 0x38000751, 0x6f43bb07, 0x69727970, 0x20746867, 0x34313032, 0x3230322d, 0x68542030, 0x69462065, 0x43206172, 0x2065646f,
0x6a6f7250, 0x20746365, 0x68747541, 0x2073726f, 0x74746828, 0x2f3a7370, 0x7469672f, 0x2e627568, 0x2f6d6f63, 0x736e6f74, 0x832f796b, 0x20338334,
0x303d8829, 0x69746552, 0x2e35616e, 0x3b323030, 0x42445443, 0x2022873b, 0x8819852d, 0x85202028, 0x6556270f, 0x6f697372, 0x3184206e, 0x4d352b93,
0x206f6e6f, 0x61207369, 0x61727420, 0x616d6564, 0x6f206b72, 0x25b28466, 0x697a6f4d, 0xb5836c6c, 0x6f707225, 0x82746172, 0x432e2547, 0x6f727261,
0x43212e82, 0x3c13856f, 0x45202c65, 0x736e6564, 0x6b656970, 0x616d7265, 0x41206e6e, 0x4e202c47, 0x74696b69, 0x24ea8361, 0x6f706f6b, 0x4135b576,
0x0c410717, 0x6d2e2205, 0x21109065, 0x8a826854, 0x6e6f462c, 0x6f532074, 0x61777466, 0xca836572, 0x63696c22, 0x65359182, 0x6e752064, 0x20726564,
0x20656874, 0x204c4953, 0x6e65704f, 0x202c8420, 0x2120854c, 0x1d41202c, 0x2e312307, 0xf2822e31, 0x3b864c82, 0x61384683, 0x6c696176, 0x656c6261,
0x74697720, 0x20612068, 0x20514146, 0x203a7461, 0x3a358683, 0x63732f2f, 0x74706972, 0x69732e73, 0x726f2e6c, 0x464f2f67, 0x3d19994c, 0x6f004300,
0x79007000, 0x69007200, 0x68006700, 0x20007400, 0x30003200, 0x34003100, 0x09842d00, 0x20220d83, 0x1b825400, 0x1b826520, 0x27824620, 0x61007222,
0x39830982, 0x83006421, 0x82502013, 0x006f223d, 0x200b826a, 0x223f8463, 0x82750041, 0x82682007, 0x00722259, 0x20298273, 0x20578428, 0x24678274,
0x003a0073, 0x2001822f, 0x20458267, 0x26158274, 0x00620075, 0x8263002e, 0x826d2029, 0x82742015, 0x826e2007, 0x826b2031, 0x002f218f, 0x67876987,
0x11882920, 0xb5842020, 0x52207b85, 0x74207582, 0x6e204d82, 0x0b839382, 0x7b826720, 0x0b826c20, 0x35007222, 0x30225982, 0xc3823000, 0x2f823b20,
0x44005426, 0x3b004200, 0x2d215590, 0x93418b00, 0x201f8bdd, 0x206d8256, 0x20a18272, 0x20a98469, 0x8f638a20, 0x205797ad, 0x2239844d, 0x8220006f,
0x827320b3, 0x82612005, 0x00742203, 0x83b18272, 0x846d20cf, 0x826b20b9, 0x006f2213, 0x20058266, 0x06754154, 0x7a243583, 0x6c006900, 0x7b410182,
0x00722207, 0x204b8270, 0x83318272, 0x006f22ff, 0x20ef826e, 0x203f8443, 0x20178272, 0x20a58269, 0x20f78220, 0x895b826f, 0x00652227, 0x2155822c,
0x6b830045, 0x21826e20, 0x53827020, 0x6b006522, 0x7b83d584, 0x45826e20, 0x41002024, 0x27844700, 0x1d824e20, 0x03826b20, 0x55827420, 0x50002022,
0x6f204982, 0x6f202b82, 0x76207784, 0x61205b82, 0x6be51182, 0x74006822, 0x70200182, 0x3f42b182, 0x0b294205, 0x6d002e22, 0x21a1bf82, 0x68005422,
0x22067341, 0x826f0046, 0x007424e7, 0x82530020, 0x82662009, 0x82772059, 0x827220e1, 0x07954145, 0x29826c20, 0x0f826320, 0x71826e20, 0x64006522,
0x75202982, 0x64203182, 0x72201182, 0x74200b82, 0x24069541, 0x00490053, 0x220f824c, 0x8470004f, 0x0020212b, 0x4c205989, 0x2c20418c, 0x3b422582,
0x0031230f, 0x0383002e, 0x41055b43, 0x778d05af, 0x20092342, 0x229f8276, 0x826c0069, 0x82622005, 0x82652005, 0x8277204d, 0x2087835f, 0x83138220,
0x00412277, 0x20158251, 0x20cb8261, 0x4107823a, 0x2d41070d, 0x00732805, 0x00720063, 0x82700069, 0x8273201d, 0x82732075, 0x826c200b, 0x826f2007,
0x00672415, 0x824f002f, 0x434c20b7, 0x33ab08a3, 0x43112f43, 0x53200b2d, 0x6e229b82, 0x8f827300, 0x65007322, 0x66208184, 0x6c240b82, 0x77006f00,
0x63200f84, 0x19831f82, 0x1b822020, 0x11824c20, 0x2b847320, 0x89825420, 0x6e006122, 0x47209782, 0x65201782, 0x74202382, 0x72201b82, 0x83060d43,
0x82202019, 0x0069213f, 0x6820fd85, 0x72204d82, 0x7a20cf82, 0x2206d341, 0x826c0061, 0x82622029, 0x00722235, 0x06574354, 0xb1432b83, 0x261d8505,
0x006d0041, 0x82650070, 0x8473201d, 0x006422a1, 0x08fd444c, 0x17827720, 0x20090945, 0x20558244, 0x2051826c, 0x222b8261, 0x84530020, 0x9a6e2025,
0x82742057, 0x8873207b, 0x82682025, 0x866e2009, 0x0063228d, 0x20dd826b, 0x206f826c, 0x44df8273, 0x652205a9, 0x1d827800, 0xe1846d20, 0x15826320,
0xf5826920, 0x11826720, 0x9d866f20, 0xe3826120, 0x79826f20, 0x21824720, 0x3d827020, 0x4f862020, 0x95826420, 0x42007521, 0x2d200509, 0xdb412382,
0x826c2005, 0x822020b9, 0x00712203, 0x202f8275, 0x242f826c, 0x02000000, 0x23008400, 0x3200b5ff, 0x8208bf49, 0x25028708, 0x00004107, 0x25820201,
0x24000328, 0x0301c900, 0x5682c700, 0x01ad8008, 0x00050104, 0x00ae0063, 0x00060190, 0x00260025, 0x00ff00fd, 0x01070164, 0x00270008, 0x010901e9,
0x0028000a, 0x010b0165, 0x00c8000c, 0x000d01ca, 0x010e01cb, 0x0029000f, 0x01f8002a, 0x01110110, 0x012b0012, 0x00140113, 0x0015012c, 0x001601cc,
0x00ce00cd, 0x01cf00fa, 0x01180117, 0x012d0019, 0x012e001a, 0x012f001b, 0x011d011c, 0x001f011e, 0x003000e2, 0x01200131, 0x01220121, 0x82660023,
0x290e07ab, 0x002401d0, 0x006700d1, 0x012501d3, 0x01910026, 0x00af0027, 0x003300b0, 0x003400ed, 0x01280135, 0x002a0129, 0x002b0136, 0x01fb00e4,
0x012d012c, 0x0137002e, 0x0130012f, 0x00320131, 0x01d40038, 0x00d50033, 0x01d60068, 0x01350134, 0x01370136, 0x00390038, 0x0139013a, 0x013b013a,
0x003b003c, 0x01eb003c, 0x01bb003d, 0x013d003e, 0x01e6003f, 0x01410140, 0x01430142, 0x01450144, 0x00470146, 0x01690044, 0x006b0048, 0x016a006c,
0x004a0149, 0x006d006e, 0x004b01a0, 0x00460045, 0x000001fe, 0x014c016f, 0x0047004d, 0x014e01ea, 0x00480001, 0x014f0170, 0x00720050, 0x00510173,
0x01520171, 0x00490053, 0x01f9004a, 0x01550154, 0x014b0056, 0x00580157, 0x00d7004c, 0x00590174, 0x01770076, 0x0175005a, 0x015c015b, 0x005e015d,
0x015f014d, 0x014e0060, 0x00620161, 0x0163014f, 0x01650164, 0x00e30066, 0x01510050, 0x01680167, 0x016a0169, 0x0078006b, 0x01790052, 0x007b006c,
0x017a007c, 0x006e016d, 0x006f01a1, 0x00b1007d, 0x00ee0053, 0x01550054, 0x01710170, 0x01560072, 0x00e50073, 0x017401fc, 0x00890075, 0x01760157,
0x01780177, 0x00580079, 0x007a017e, 0x00810080, 0x017b017f, 0x017d017c, 0x007f017e, 0x015a0059, 0x01810180, 0x00830182, 0x005c005b, 0x008401ec,
0x008501ba, 0x0086015d, 0x018701e7, 0x01890188, 0x018b018a, 0x018d018c, 0x018f018e, 0x01910190, 0x01930192, 0x01950194, 0x009d0096, 0x0197019e,
0x01990198, 0x019b019a, 0x019d019c, 0x019f019e, 0x01a101a0, 0x01a301a2, 0x01a501a4, 0x01a701a6, 0x01a901a8, 0x01ab01aa, 0x01ad01ac, 0x01af01ae,
0x01b101b0, 0x01b301b2, 0x01b501b4, 0x01b701b6, 0x01b901b8, 0x01bb01ba, 0x01bd01bc, 0x01bf01be, 0x01c101c0, 0x01c301c2, 0x01c501c4, 0x01c701c6,
0x01c901c8, 0x01cb01ca, 0x01cd01cc, 0x01cf01ce, 0x01d101d0, 0x01d301d2, 0x01d501d4, 0x01d701d6, 0x01d901d8, 0x01db01da, 0x01dd01dc, 0x01df01de,
0x01e101e0, 0x01e301e2, 0x01e501e4, 0x01e701e6, 0x01e901e8, 0x01eb01ea, 0x01ed01ec, 0x01ef01ee, 0x01f101f0, 0x01f301f2, 0x01f501f4, 0x01f701f6,
0x01f901f8, 0x01fb01fa, 0x01fd01fc, 0x02ff01fe, 0x02010200, 0x02030202, 0x02050204, 0x02070206, 0x02090208, 0x020b020a, 0x020d020c, 0x020f020e,
0x02110210, 0x02130212, 0x02150214, 0x02170216, 0x02190218, 0x021b021a, 0x021d021c, 0x021f021e, 0x02210220, 0x02230222, 0x02250224, 0x02270226,
0x02290228, 0x022b022a, 0x022d022c, 0x022f022e, 0x02310230, 0x02330232, 0x02350234, 0x02370236, 0x02390238, 0x023b023a, 0x023d023c, 0x023f023e,
0x02410240, 0x02430242, 0x02450244, 0x02470246, 0x02490248, 0x024b024a, 0x024d024c, 0x024f024e, 0x02510250, 0x02530252, 0x02550254, 0x02570256,
0x02590258, 0x025b025a, 0x025d025c, 0x025f025e, 0x02610260, 0x02630262, 0x02650264, 0x02670266, 0x02690268, 0x026b026a, 0x026d026c, 0x026f026e,
0x02710270, 0x02730272, 0x02750274, 0x02770276, 0x02790278, 0x027b027a, 0x027d027c, 0x027f027e, 0x02810280, 0x02830282, 0x02850284, 0x02870286,
0x02890288, 0x028b028a, 0x028d028c, 0x028f028e, 0x02910290, 0x02930292, 0x02950294, 0x02970296, 0x02990298, 0x029b029a, 0x029d029c, 0x029f029e,
0x02a102a0, 0x02a302a2, 0x02a502a4, 0x02a702a6, 0x02a902a8, 0x02ab02aa, 0x02ad02ac, 0x02af02ae, 0x02b102b0, 0x02b302b2, 0x02b502b4, 0x02b702b6,
0x02b902b8, 0x02bb02ba, 0x02bd02bc, 0x02bf02be, 0x02c102c0, 0x02c302c2, 0x02c502c4, 0x02c702c6, 0x02c902c8, 0x02cb02ca, 0x02cd02cc, 0x02cf02ce,
0x02d102d0, 0x02d302d2, 0x02d502d4, 0x02d702d6, 0x02d902d8, 0x02db02da, 0x02dd02dc, 0x02df02de, 0x02e102e0, 0x02e302e2, 0x02e502e4, 0x02e702e6,
0x02e902e8, 0x02eb02ea, 0x02ed02ec, 0x02ef02ee, 0x02f102f0, 0x02f302f2, 0x02f502f4, 0x02f702f6, 0x02f902f8, 0x02fb02fa, 0x02fd02fc, 0x03ff02fe,
0x03010300, 0x03030302, 0x03050304, 0x03070306, 0x03090308, 0x030b030a, 0x030d030c, 0x030f030e, 0x03110310, 0x03130312, 0x03150314, 0x03170316,
0x03190318, 0x031b031a, 0x031d031c, 0x031f031e, 0x03210320, 0x03230322, 0x03250324, 0x03270326, 0x03290328, 0x032b032a, 0x032d032c, 0x032f032e,
0x03310330, 0x03330332, 0x03350334, 0x03370336, 0x03390338, 0x033b033a, 0x033d033c, 0x033f033e, 0x03410340, 0x03430342, 0x03450344, 0x03470346,
0x03490348, 0x034b034a, 0x034d034c, 0x034f034e, 0x03510350, 0x03530352, 0x03550354, 0x03570356, 0x03590358, 0x005b035a, 0x035c039b, 0x035e035d,
0x0360035f, 0x03620361, 0x03640363, 0x03660365, 0x03680367, 0x036a0369, 0x036c036b, 0x036e036d, 0x0370036f, 0x03720371, 0x03740373, 0x03760375,
0x03780377, 0x037a0379, 0x037c037b, 0x037e037d, 0x0380037f, 0x03820381, 0x03840383, 0x03860385, 0x03880387, 0x038a0389, 0x038c038b, 0x038e038d,
0x0390038f, 0x03920391, 0x03940393, 0x03960395, 0x03980397, 0x039a0399, 0x039c039b, 0x039e039d, 0x03a0039f, 0x03a203a1, 0x03a403a3, 0x03a603a5,
0x03a803a7, 0x03aa03a9, 0x03ac03ab, 0x03ae03ad, 0x03b003af, 0x03b203b1, 0x03b403b3, 0x03b603b5, 0x03b803b7, 0x03ba03b9, 0x03bc03bb, 0x03be03bd,
0x03c003bf, 0x03c203c1, 0x03c403c3, 0x03c603c5, 0x03c803c7, 0x03ca03c9, 0x03cc03cb, 0x03ce03cd, 0x03d003cf, 0x03d203d1, 0x03d403d3, 0x03d603d5,
0x03d803d7, 0x03da03d9, 0x03dc03db, 0x03de03dd, 0x03e003df, 0x03e203e1, 0x03e403e3, 0x03e603e5, 0x03e803e7, 0x03ea03e9, 0x03ec03eb, 0x03ee03ed,
0x03f003ef, 0x03f203f1, 0x03f403f3, 0x03f603f5, 0x03f803f7, 0x03fa03f9, 0x03fc03fb, 0x03fe03fd, 0x040004ff, 0x04020401, 0x04040403, 0x04060405,
0x04080407, 0x040a0409, 0x000c040b, 0x00140013, 0x00160015, 0x00180017, 0x001a0019, 0x041c001b, 0x040e040d, 0x0410040f, 0x04120411, 0x04140413,
0x04160415, 0x04180417, 0x041a0419, 0x041c041b, 0x041e041d, 0x0420041f, 0x04220421, 0x04240423, 0x04260425, 0x04280427, 0x042a0429, 0x042c042b,
0x042e042d, 0x0430042f, 0x04320431, 0x04340433, 0x04360435, 0x04380437, 0x043a0439, 0x043c043b, 0x043e043d, 0x0440043f, 0x04bc0041, 0x04f40042,
0x00440443, 0x04f600f5, 0x04460445, 0x04480447, 0x044a0449, 0x044c044b, 0x004e044d, 0x000f0011, 0x001e001d, 0x000400ab, 0x002200a3, 0x00c300a2,
0x040d0087, 0x0006004f, 0x043f0012, 0x04510450, 0x04530452, 0x04550454, 0x04570456, 0x04590458, 0x045b045a, 0x045d045c, 0x045f045e, 0x04610460,
0x000b0062, 0x005e000c, 0x003e0060, 0x04630440, 0x04650464, 0x04670466, 0x04690468, 0x046b046a, 0x046d046c, 0x046f046e, 0x04710470, 0x04730472,
0x00750474, 0x00760410, 0x04b300b2, 0x04780477, 0x007a0479, 0x047b0442, 0x047d047c, 0x047f047e, 0x04810480, 0x00c40082, 0x00b400c5, 0x00b600b5,
0x00a900b7, 0x00be00aa, 0x000500bf, 0x0483040a, 0x04850484, 0x04870486, 0x04890488, 0x048b048a, 0x048d048c, 0x048f048e, 0x04910490, 0x04930492,
0x04950494, 0x04970496, 0x04990498, 0x049b049a, 0x049d049c, 0x049f049e, 0x04a104a0, 0x04a304a2, 0x04a504a4, 0x04a704a6, 0x04a904a8, 0x04ab04aa,
0x04ad04ac, 0x04af04ae, 0x04b104b0, 0x04b304b2, 0x04b504b4, 0x04b704b6, 0x04b904b8, 0x04bb04ba, 0x04bd04bc, 0x04bf04be, 0x04c104c0, 0x04c304c2,
0x04c504c4, 0x04c704c6, 0x04c904c8, 0x04cb04ca, 0x04cd04cc, 0x04cf04ce, 0x04d104d0, 0x04d304d2, 0x04d504d4, 0x008400d6, 0x040700bd, 0x00d804d7,
0x04d904a6, 0x00db04da, 0x04960085, 0x04dd04dc, 0x04df04de, 0x04e104e0, 0x04e304e2, 0x04e504e4, 0x04e704e6, 0x04e904e8, 0x04eb04ea, 0x04ed04ec,
0x04ef04ee, 0x04f104f0, 0x04f304f2, 0x04f504f4, 0x04f704f6, 0x04f904f8, 0x04fb04fa, 0x04fd04fc, 0x05ff04fe, 0x05010500, 0x000e0002, 0x00f000ef,
0x002000b8, 0x0021008f, 0x0095001f, 0x00930094, 0x006100a7, 0x004100a4, 0x05030592, 0x05050504, 0x00070506, 0x0008059c, 0x0099009a, 0x000905a5,
0x050a0598, 0x050c050b, 0x050e050d, 0x0008000f, 0x051005c6, 0x05120511, 0x05140513, 0x05160515, 0x05180517, 0x051a0519, 0x051c051b, 0x051e051d,
0x0520051f, 0x05220521, 0x05240523, 0x05260525, 0x05280527, 0x052a0529, 0x052c052b, 0x052e052d, 0x0530052f, 0x05320531, 0x05340533, 0x05360535,
0x05380537, 0x053a0539, 0x053c053b, 0x053e053d, 0x0540053f, 0x05420541, 0x05440543, 0x05460545, 0x05480547, 0x054a0549, 0x054c054b, 0x054e054d,
0x0550054f, 0x05520551, 0x05540553, 0x05560555, 0x05580557, 0x055a0559, 0x055c055b, 0x055e055d, 0x0560055f, 0x05620561, 0x05640563, 0x05660565,
0x05680567, 0x056a0569, 0x056c056b, 0x056e056d, 0x0570056f, 0x05720571, 0x05740573, 0x05760575, 0x05780577, 0x057a0579, 0x057c057b, 0x057e057d,
0x0580057f, 0x05820581, 0x05840583, 0x05860585, 0x05880587, 0x058a0589, 0x058c058b, 0x058e058d, 0x0590058f, 0x05920591, 0x05940593, 0x05960595,
0x05980597, 0x009a0599, 0x059b05b9, 0x059d059c, 0x059f059e, 0x05a105a0, 0x05a305a2, 0x05a505a4, 0x05a705a6, 0x05a905a8, 0x05ab05aa, 0x05ad05ac,
0x05af05ae, 0x05b105b0, 0x05b305b2, 0x05b505b4, 0x05b705b6, 0x05b905b8, 0x05bb05ba, 0x05bd05bc, 0x05bf05be, 0x05c105c0, 0x05c305c2, 0x05c505c4,
0x05c705c6, 0x05c905c8, 0x05cb05ca, 0x05cd05cc, 0x05cf05ce, 0x05d105d0, 0x05d305d2, 0x05d505d4, 0x05d705d6, 0x05d905d8, 0x05db05da, 0x05dd05dc,
0x05df05de, 0x05e105e0, 0x05e305e2, 0x05e505e4, 0x05e705e6, 0x05e905e8, 0x05eb05ea, 0x05ed05ec, 0x05ef05ee, 0x05f105f0, 0x05f305f2, 0x05f505f4,
0x05f705f6, 0x05f905f8, 0x05fb05fa, 0x05fd05fc, 0x06ff05fe, 0x06010600, 0x06030602, 0x06050604, 0x06070606, 0x06090608, 0x060b060a, 0x060d060c,
0x060f060e, 0x06110610, 0x06130612, 0x06150614, 0x06170616, 0x06190618, 0x061b061a, 0x061d061c, 0x061f061e, 0x06210620, 0x06230622, 0x06250624,
0x06270626, 0x06290628, 0x062b062a, 0x062d062c, 0x062f062e, 0x06310630, 0x06330632, 0x06350634, 0x06370636, 0x06390638, 0x063b063a, 0x063d063c,
0x063f063e, 0x06410640, 0x06430642, 0x06450644, 0x06470646, 0x06490648, 0x064b064a, 0x064d064c, 0x064f064e, 0x06510650, 0x06530652, 0x06550654,
0x00570656, 0x00090023, 0x00860088, 0x008a008b, 0x0683008c, 0x005f0058, 0x005906e8, 0x06c20082, 0x065b065a, 0x065d065c, 0x065f065e, 0x06610660,
0x06630662, 0x06650664, 0x06670666, 0x06690668, 0x066b066a, 0x066d066c, 0x066f066e, 0x06710670, 0x06730672, 0x06750674, 0x06770676, 0x06790678,
0x067b067a, 0x067d067c, 0x067f067e, 0x06810680, 0x06830682, 0x06850684, 0x06870686, 0x06890688, 0x068b068a, 0x068d068c, 0x068f068e, 0x06910690,
0x06930692, 0x06950694, 0x06970696, 0x06990698, 0x069b069a, 0x069d069c, 0x069f069e, 0x06a106a0, 0x06a306a2, 0x06a506a4, 0x06a706a6, 0x06a906a8,
0x06ab06aa, 0x06ad06ac, 0x06af06ae, 0x06b106b0, 0x06b306b2, 0x06b506b4, 0x06b706b6, 0x06b906b8, 0x06bb06ba, 0x06bd06bc, 0x06bf06be, 0x06c106c0,
0x06c306c2, 0x06c506c4, 0x06c706c6, 0x06c906c8, 0x06cb06ca, 0x06cd06cc, 0x06cf06ce, 0x06d106d0, 0x06d306d2, 0x06d506d4, 0x06d706d6, 0x06d906d8,
0x06db06da, 0x06dd06dc, 0x06df06de, 0x06e106e0, 0x06e306e2, 0x06e506e4, 0x06e706e6, 0x06e906e8, 0x06eb06ea, 0x06ed06ec, 0x06ef06ee, 0x06f106f0,
0x06f306f2, 0x06f506f4, 0x06f706f6, 0x06f906f8, 0x06fb06fa, 0x06fd06fc, 0x07ff06fe, 0x07010700, 0x07030702, 0x07050704, 0x07070706, 0x07090708,
0x070b070a, 0x070d070c, 0x070f070e, 0x07110710, 0x07130712, 0x07150714, 0x07170716, 0x008e0018, 0x004300dc, 0x00df008d, 0x00e100d8, 0x00dd00db,
0x00da00d9, 0x07e000de, 0x071a0719, 0x071c071b, 0x071e071d, 0x0720071f, 0x07220721, 0x07240723, 0x07260725, 0x07280727, 0x072a0729, 0x072c072b,
0x072e072d, 0x0730072f, 0x07320731, 0x07340733, 0x07360735, 0x07380737, 0x073a0739, 0x073c073b, 0x073e073d, 0x0740073f, 0x07420741, 0x07440743,
0x07460745, 0x07480747, 0x074a0749, 0x044c074b, 0x6c6c756e, 0x72624106, 0x07657665, 0x63616d41, 0x076e6f72, 0x6f676f41, 0x076b656e, 0x63614541,
0x0b657475, 0x72696343, 0x666d7563, 0x0a78656c, 0x746f6443, 0x65636361, 0x4406746e, 0x2d826163, 0x72250682, 0x0674616f, 0x21438445, 0x14844506,
0x88450a21, 0x45072126, 0x45205586, 0x0b215585, 0x294d8947, 0x696e7507, 0x32323130, 0x2e88470a, 0x62480426, 0x480b7261, 0x02242389, 0x49064a49,
0x07215b84, 0x20498649, 0x28498549, 0x69744906, 0x0b65646c, 0x23508f4a, 0x4c063633, 0x0621b984, 0x858d844c, 0x42332366, 0x66824c04, 0x854e0621,
0x8a4e201a, 0x3534271a, 0x676e4503, 0x66844f06, 0x684f0d2f, 0x61676e75, 0x6c6d7572, 0x07747561, 0x2674854f, 0x6c734f0b, 0x85687361, 0x8652203b,
0x23428a06, 0x53063635, 0x0b211584, 0x228e8e53, 0x83383132, 0x45312580, 0x54044539, 0x0621dc82, 0x21368a54, 0x9c843236, 0x41313224, 0x7d855506,
0x7d8c5520, 0x7d855520, 0x85550721, 0x550523f2, 0xa8826972, 0xf8845520, 0x85570621, 0x89572070, 0x57093270, 0x72656964, 0x73697365, 0x72675706,
0x0b657661, 0x211c8959, 0x12845906, 0x845a0621, 0x5a0a2136, 0x21087341, 0x1184430e, 0x6f6c2e28, 0x4c506c63, 0x21410e4b, 0x200e8805, 0x851d8d4f,
0x851d88e6, 0x2a0e874d, 0x732e4608, 0x65636170, 0x86540872, 0x61062108, 0x20055c42, 0x20c98661, 0x22c98561, 0x84656107, 0x630b2156, 0x0a21a089,
0x28928863, 0x61636406, 0x066e6f72, 0x05554265, 0x0d846520, 0x88650a21, 0x6507211f, 0x65204e86, 0x0b214e85, 0x0e754167, 0x33323124, 0x2e88670a,
0x62680426, 0x680b7261, 0x06212389, 0x21588469, 0xb8846909, 0x4b525427, 0x076a6902, 0x20538669, 0x26538569, 0x69746906, 0x4165646c, 0x332305a0,
0x8f6a0b37, 0x37333062, 0x72676b0c, 0x6c6e6565, 0x69646e61, 0x846c0663, 0x6c0621d1, 0x230adf41, 0x6c044333, 0x06218582, 0x2d1a846e, 0x70616e0b,
0x7274736f, 0x6568706f, 0x268a6e06, 0x03363427, 0x06676e65, 0x2194846f, 0x02426f0d, 0x856f200c, 0x6f0b2195, 0x200a8042, 0x214e8472, 0x428a7206,
0x06373523, 0x21158473, 0xa78e730b, 0x39313224, 0xff827404, 0x8a740621, 0x3336212e, 0x3123d785, 0x85750642, 0x8c752075, 0x85752075, 0x75072175,
0x23050b41, 0x69727505, 0x7527a082, 0x646c6974, 0x85770665, 0x89772068, 0x77092168, 0x27087842, 0x61726777, 0x790b6576, 0x06211c89, 0x21128479,
0x36847a06, 0x417a0a21, 0x0e210896, 0x0d5a4263, 0x42052541, 0x6f20085a, 0xde851d8d, 0x4d851d88, 0x0a370e87, 0x756d2e78, 0x7069746c, 0x690a796c,
0x6c61732e, 0x6f6c5f74, 0x896a0a77, 0x886c200a, 0x6608210a, 0x20069b42, 0x42138208, 0x772005ad, 0x06271186, 0x73732e72, 0x890f3130, 0x742e274d,
0x0a66736f, 0x01825f77, 0x696c2e2c, 0x75076167, 0x3032696e, 0x07834637, 0x31343023, 0x20078630, 0x43078631, 0x342105cf, 0x055e4131, 0x86303421,
0x87392007, 0x86342027, 0x85352027, 0x86302007, 0x87302017, 0x8536203f, 0x37312117, 0x38200786, 0x39200786, 0x30210785, 0x21078544, 0x07854138,
0x07863120, 0x86433021, 0x8642200f, 0x860f8707, 0x4531212f, 0xb7861786, 0x77863220, 0x77863220, 0xb7863220, 0xaf863220, 0x2f863020, 0xaf863220,
0xaf863220, 0x97863220, 0xa7863220, 0x9f863220, 0x9f873220, 0x7f865f87, 0x9f863220, 0x97863220, 0x27873020, 0x30201786, 0x30205786, 0xaf866787,
0x5f863020, 0x6f863020, 0x67863020, 0x47863020, 0x9f873220, 0x30206f86, 0x3621bf86, 0x45e78530, 0x34210657, 0x20578636, 0x204f8636, 0x20478636,
0x207f8636, 0x20a78636, 0x204f8636, 0x203f8637, 0x204f8637, 0x203f8637, 0x203f8637, 0x203f8637, 0x201f8639, 0x201f8639, 0x201f8639, 0x861f8739,
0x8639205f, 0x8639205f, 0x3041215f, 0x41209f85, 0x41203f86, 0x41203f86, 0x35203f85, 0x20076f41, 0x20478641, 0x20478641, 0x20478641, 0x21478641,
0x47853042, 0x47864220, 0x47864220, 0x47854220, 0x86423421, 0x8542203f, 0x4135203f, 0x422007af, 0x42204786, 0x43214786, 0x21478530, 0x07863143,
0x2006ff41, 0x06974143, 0x7f414320, 0x41432006, 0x432006b7, 0x20067f41, 0x06a74143, 0x3f864420, 0x87864420, 0x87864420, 0x87864420, 0x87864420,
0x87854420, 0x86443421, 0x8644207f, 0x3045217f, 0x45207785, 0x45203f86, 0x45203f86, 0x45203f86, 0x45203f86, 0x45203f86, 0x45203f86, 0x46213f86,
0x203f8530, 0x203f8646, 0x203f8646, 0x203f8646, 0x203f8646, 0x203f8646, 0x203f8646, 0x203f8546, 0x067f4335, 0x3f423520, 0x42352006, 0x35200687,
0x20067f42, 0x06774235, 0x85303521, 0x4335203f, 0x35200667, 0x20061f43, 0x06ff4335, 0x85313521, 0x3135217f, 0x35217f85, 0x207f8531, 0x05fb4735,
0x43353021, 0x352106a7, 0x207f8531, 0x068f4335, 0x87433520, 0x43352006, 0x3820077f, 0x34211f85, 0x439f8638, 0x3520065f, 0x21064743, 0x1f853235,
0xff423520, 0x30332107, 0x3321ff85, 0x85078631, 0x33342187, 0x2006c741, 0x20078635, 0x851f8739, 0x3334219f, 0x2006df41, 0x203f8635, 0x851f8735,
0x333421b7, 0x2006f741, 0x063f4133, 0xff413320, 0x41352006, 0x382006f7, 0x20060742, 0x05174133, 0x85353421, 0x33342197, 0x0f871787, 0x33202f86,
0x3421cf85, 0x06af4333, 0x77863420, 0x77863420, 0xb7863420, 0xaf863420, 0x2f863520, 0xaf863420, 0xaf863420, 0x97863420, 0xa7863420, 0x9f863420,
0x9f873420, 0x7f865f87, 0x9f863420, 0x97863420, 0x27873520, 0x35201786, 0x35205786, 0xaf866787, 0x5f863520, 0x6f863520, 0x67863520, 0x47863520,
0x9f873420, 0x35206f86, 0x3621bf86, 0x05874131, 0x21065e47, 0x5f863634, 0x47863620, 0x7f863620, 0x47863620, 0x6f863620, 0x47863620, 0x3f863720,
0x07413720, 0x86372006, 0x8637203f, 0x8637203f, 0x8639203f, 0x8639201f, 0x8639201f, 0x8739201f, 0x205f861f, 0x205f8639, 0x215f8639, 0x9f853141,
0x3f864120, 0x3f854120, 0xdf453520, 0x86412007, 0x86412047, 0x86412047, 0x86412047, 0x86412047, 0x31422147, 0x42204785, 0x42204786, 0x34214785,
0x203f8642, 0x203f8642, 0x203f8542, 0x07374635, 0x47864220, 0x47864220, 0x07874320, 0x20063f41, 0x06874143, 0x7f414320, 0x41432006, 0x43200677,
0x2006af41, 0x06d74143, 0x7f414320, 0x31442106, 0x44208785, 0x44208786, 0x44208786, 0x44208786, 0x44208786, 0x34218785, 0x207f8644, 0x21778644,
0x3f853145, 0x3f864520, 0x3f864520, 0x3f864520, 0x3f864520, 0x3f864520, 0x3f864520, 0x3f864520, 0x85314621, 0x8646203f, 0x8646203f, 0x8646203f,
0x8646203f, 0x8646203f, 0x8646203f, 0x8546203f, 0x4735203f, 0x352006f7, 0x20062748, 0x060f4735, 0xf7463520, 0x47352006, 0x3521062f, 0x203f8530,
0x06ff4735, 0x86303521, 0x3131213f, 0x35217f84, 0x217f8531, 0x7f853135, 0x85313521, 0x3135217f, 0x35217f85, 0x203f8631, 0x217f8531, 0x3f863135,
0x2006ff47, 0x07f74735, 0x1f853820, 0x87383421, 0x473f861f, 0x352106bf, 0x211f8532, 0x1f853235, 0x46373333, 0x706c4105, 0x42046168, 0x05617465,
0x6d6d6147, 0x2c908461, 0x07343933, 0x69737045, 0x046e6f6c, 0x211a825a, 0x1e824503, 0x82685421, 0x49042209, 0x080a826f, 0x70614b2f, 0x4c066170,
0x64626d61, 0x754d0261, 0x02754e02, 0x4f076958, 0x7263696d, 0x50026e6f, 0x68520369, 0x6953056f, 0x03616d67, 0x07756154, 0x254a8555, 0x69685003,
0x03824303, 0x69735022, 0x41226685, 0x7f840a39, 0x6e6f7425, 0x860c736f, 0x200c8471, 0x84718208, 0x83092008, 0x20098470, 0x855f860c, 0x8453860c,
0x4f0a250c, 0x6167656d, 0x0c200a84, 0xcc4a2e83, 0x860f2007, 0x850f8724, 0x06244874, 0x24483320, 0x48332006, 0x3320061c, 0x2006ec46, 0x06ec4633,
0xec463320, 0x46332006, 0x332006ec, 0x2006ec46, 0x06f44233, 0x34473320, 0x42332006, 0x332006bc, 0x20063c47, 0x06c44633, 0x44423320, 0x42332006,
0x33210644, 0x05044346, 0x44423320, 0x46332006, 0x332006c4, 0x21054c42, 0xac464631, 0x20078205, 0x82a78339, 0x822f8407, 0x86422007, 0x8643200f,
0x86442007, 0x86452007, 0x85462007, 0x052c4807, 0x43463121, 0x078205b4, 0x17863820, 0x3c484f86, 0x46312205, 0x20178638, 0x4a178638, 0x1782058c,
0xc4466786, 0x860f8205, 0x05cc4667, 0x67860f82, 0x21051447, 0x9c424631, 0x86078205, 0x05a442a7, 0xa7860f82, 0x2105ac42, 0x04444631, 0x86078205,
0x0514476f, 0x4a463121, 0x07820574, 0xa4423f86, 0x860f8205, 0x05ac423f, 0xe7860f82, 0x8205b442, 0x482f8647, 0x0f8205cc, 0xbc492f86, 0x46312105,
0x82054445, 0x20278607, 0x49d78639, 0x178205cc, 0xd449d786, 0x860f8205, 0x052c47d7, 0x47463121, 0x0782052c, 0x14473f86, 0x860f8205, 0x86332067,
0x0514473f, 0x3f861782, 0x21053742, 0xac444631, 0x41078205, 0xc4440667, 0x46312105, 0x8205ec46, 0x06074107, 0x8205dc46, 0x209f860f, 0x205f8634,
0x485f8634, 0x312205fc, 0x2f864646, 0x21053c49, 0x04474631, 0x86078205, 0x05d44737, 0x87860f82, 0x21056c49, 0xf4444631, 0x86078205, 0x050c4587,
0x4b463121, 0x07820544, 0x36205786, 0xd446e786, 0x86178205, 0x05dc4687, 0x7f410f82, 0x05e44606, 0x2f868f82, 0x82051445, 0x4a2f860f, 0x312105f4,
0x057c4646, 0x27860782, 0x82058446, 0x8627870f, 0x050c4bdf, 0x46391782, 0x706c6105, 0x62046168, 0x05617465, 0x6d6d6167, 0x65640561, 0x0761746c,
0x05374465, 0x827a0421, 0x82032018, 0x74052203, 0x22058268, 0x826f6904, 0x616b2a27, 0x06617070, 0x626d616c, 0x06b34464, 0x02434229, 0x7802756e,
0x446f0769, 0x03230587, 0x436f6872, 0x432d05f1, 0x69730532, 0x03616d67, 0x07756174, 0x25548575, 0x69687003, 0x03826303, 0x05260e82, 0x67656d6f,
0x57830961, 0x83054444, 0x07344409, 0x0c8b1120, 0x42861e85, 0x0f200c84, 0x2e870c86, 0x0f8e1420, 0x0c202484, 0x0c849286, 0x6d840a20, 0xf8840a85,
0x8605fd44, 0x05fd44ec, 0x0884e682, 0x5648bf85, 0x48332006, 0x33200656, 0x22064e48, 0x86423733, 0x8643201f, 0x85442007, 0x05714207, 0x42333021,
0x07820589, 0x46201787, 0x36471f85, 0x47332006, 0x33200666, 0x2006064c, 0x068e4733, 0x86473320, 0x4c332006, 0x33200606, 0x2206a64b, 0x85314633,
0x06ae4b3f, 0x36473320, 0x47332006, 0x33200636, 0x2105b142, 0x19423330, 0x84078205, 0x46312197, 0x8205a64b, 0x823f8407, 0x44322007, 0x36470599,
0x200f8205, 0x200f8634, 0x20078635, 0x20078636, 0x45078537, 0x312105b1, 0x05074146, 0x4d463121, 0x07820526, 0x1f853020, 0x57864220, 0x86334221,
0x4d5f860f, 0x31220556, 0x27863846, 0x27863820, 0x1f863820, 0x2f863820, 0x7f863820, 0x7f863820, 0x7f863820, 0x7f863820, 0x21051649, 0x2e4c4631,
0x86078205, 0x05364c47, 0x47860f82, 0x82053e4c, 0x4647860f, 0xb7820561, 0x2e4c1f86, 0x46312105, 0x8205b647, 0x47878607, 0x0f8205be, 0x32208786,
0xf64d3f86, 0x86178205, 0x05ce4e87, 0x1f864f82, 0x22056649, 0x86434631, 0x8643205f, 0x0586494f, 0x50463121, 0x078205b6, 0x3920af86, 0x7e4a1f86,
0x86178205, 0x05864a6f, 0xf7860f82, 0x82058e4a, 0x4c778657, 0x312205a6, 0x47863346, 0x47863320, 0x8205a64c, 0x41342017, 0x33200577, 0x33209786,
0x864c4786, 0x86af8205, 0x05b7420f, 0x42463121, 0x07820557, 0x42069741, 0x0f820577, 0x51475786, 0x860f8205, 0x056e4c7f, 0x4c463121, 0x0782056e,
0x6e4c2786, 0x860f8205, 0x05664c7f, 0xf1446f82, 0x056e4b06, 0x4e463121, 0x07820596, 0x364d9f86, 0x46312105, 0x8205364d, 0x4d4f8607, 0x0f82056e,
0x5e4c4f86, 0x860f8205, 0x054e4cbf, 0xd9445f82, 0x057f4306, 0x1f865782, 0x82052148, 0x0627410f, 0x8205164f, 0x069f410f, 0x2105964a, 0xe6504631,
0x86078205, 0x05ee5027, 0x27860f82, 0x8205f650, 0x50af860f, 0x0f8205fe, 0x20060f41, 0x06574337, 0x41443721, 0x2e4f0577, 0x46312105, 0x82058f43,
0x48cf8607, 0x31210589, 0x05b65046, 0x6f860782, 0x8205be50, 0x506f860f, 0x0f8205c6, 0xce506f86, 0x860f8205, 0x05c9486f, 0x50463121, 0x33210676,
0x21ff8537, 0x2f853034, 0x41303427, 0x44317506, 0x05384735, 0x30313222, 0x07827e84, 0x32229e84, 0x26843131, 0x39200782, 0x0782ae83, 0x07823e84,
0x32271f86, 0x657a0934, 0x832e6f72, 0x24098504, 0x66736f74, 0x2013880e, 0x230e832e, 0x656e6f08, 0x74220885, 0x08846f77, 0x68740a24, 0x13856572,
0x6f660924, 0x14847275, 0x69660923, 0x23138576, 0x78697308, 0x0a251284, 0x65766573, 0x240a856e, 0x68676965, 0x220a8474, 0x86696e09, 0x83688550,
0x84818463, 0x443020a3, 0x32210532, 0x05324430, 0xd3850782, 0x32443020, 0x200f8205, 0x85278634, 0x443020db, 0x17820532, 0x17863720, 0x07863820,
0xd1853920, 0x6f6e6423, 0x84c2846d, 0x83c28308, 0x83c28608, 0x85c2850a, 0x84c28309, 0x84c28327, 0x84c28527, 0x84c2850a, 0x84c28428, 0x657a2809,
0x6e2e6f72, 0x84726d75, 0x83088463, 0x86088363, 0x850a8363, 0x83098563, 0x83278463, 0x85278463, 0x850a8463, 0x84288463, 0x85098363, 0x058a45cf,
0x4e303021, 0x30200621, 0x2006c152, 0x057a4530, 0x44303221, 0x078205a2, 0x4b061741, 0x0f82055c, 0x53061741, 0x0f820581, 0x21060b42, 0x57844635,
0x7a433120, 0x31322105, 0x8205c94f, 0x203f8507, 0x05c94f31, 0x3f850f82, 0xc94f3120, 0x870f8205, 0x0941243f, 0x84656e6f, 0x0c6825af, 0x65726874,
0x73220b86, 0xe182660b, 0x73211785, 0x86da840c, 0x206f840c, 0x05e15130, 0x3430323c, 0x78650f41, 0x6d616c63, 0x6e776f64, 0x7361632e, 0x75711165,
0x69747365, 0x11886e6f, 0x6f630c24, 0x1c826f6c, 0x746e6527, 0x610b7265, 0x2c058273, 0x2e6b7369, 0x700d636c, 0x6f697265, 0x067c5664, 0x40592686,
0x73102405, 0x85696d65, 0x20108537, 0x8666850d, 0x870f202b, 0x880f8764, 0x2a2d8555, 0x6d756e11, 0x73726562, 0x866e6769, 0x730c2521, 0x6873616c,
0x10240c86, 0x6b636162, 0x0e20108b, 0x7323108a, 0x89143630, 0x6874260e, 0x2e6b6369, 0x20148273, 0x218e8508, 0x01416375, 0x052b4e05, 0x4b303221,
0x332305de, 0x83433030, 0x43078217, 0x37200595, 0x2105e941, 0x74473732, 0x30322105, 0x82056c44, 0x0e453007, 0x65726170, 0x66656c6e, 0x61632e74,
0x840f6573, 0x6972230e, 0x0f856867, 0x72620e25, 0x89656361, 0x890e841e, 0x8310201e, 0x656b220f, 0x20208874, 0x89108611, 0x21888322, 0x15454646,
0x21078205, 0x70891033, 0x84051e41, 0x85628543, 0x20438410, 0x85418565, 0x8b122011, 0x20128566, 0x85688c13, 0x216a8313, 0x1f513030, 0x30322e05,
0x660a3531, 0x72756769, 0x73616465, 0x211a8368, 0xfd4b4532, 0x29078205, 0x6e750d41, 0x73726564, 0x1e826f63, 0x0b6c6227, 0x68707968, 0x05324265,
0x6e750c23, 0x27448369, 0x7361632e, 0x6e650b65, 0x0b863d83, 0x0b886d20, 0x30860920, 0x0d636c22, 0x81850986, 0x56891120, 0x2806dd41, 0x69756712,
0x6d656c6c, 0x0923416f, 0x12881320, 0x84092541, 0x69732326, 0x2b82676e, 0x84068a41, 0x89128426, 0x0aad4126, 0x6f6e6423, 0x0bad416d, 0x12200f83,
0x5f208c85, 0x2e250685, 0x6167696c, 0x8b128c19, 0x86162019, 0x73612319, 0x5e5b6963, 0x20308405, 0x08f14112, 0x61625f23, 0x20128472, 0x0a7e4114,
0x1c201488, 0x200b8041, 0x0ae2425f, 0x12207583, 0x8b054c43, 0x8512876e, 0x20578419, 0x200b8519, 0x84068c5f, 0x8c182019, 0x655f2512, 0x6c617571,
0x17201884, 0x6c23188d, 0x84737365, 0x86142017, 0x088a4317, 0x11208583, 0x3e891486, 0x6f631026, 0x5f6e6f6c, 0x37840584, 0x108a1620, 0x3e901697,
0x18201089, 0x20081944, 0x8409885f, 0x44122057, 0x5f200521, 0x12840685, 0x128c1920, 0x1984f486, 0x19871120, 0x118be689, 0x1420fe8a, 0x3e8bdf87,
0x14881620, 0x1320fd8c, 0xaf891688, 0x9a441620, 0x445f2007, 0x6c2408a3, 0x1f616769, 0x1f8d1690, 0x1f881520, 0x65726725, 0x42657461, 0x13200516,
0xbd441588, 0x20498305, 0x09084219, 0xe8435f20, 0x42198f09, 0xfe840862, 0x338a1b20, 0x840a6942, 0x8a15201b, 0x0ab5411b, 0x6141158a, 0x8a18200a,
0x0c0a4116, 0x0c41458b, 0x8a1a2009, 0x0ab7432e, 0x2420ac83, 0xd18e1a94, 0xf6841320, 0x200d2941, 0x41138512, 0x10200b26, 0x23411285, 0x8a162009,
0x895f2010, 0x84142016, 0x455f200a, 0x888309ed, 0x8a09fc45, 0x0b644129, 0x23091441, 0x6d65725f, 0x820a1f44, 0x447220c1, 0x0f830b1f, 0xf2431120,
0x696d2a06, 0x656c6464, 0x7165732e, 0x24118610, 0x72617473, 0x20108374, 0x2210860e, 0x83646e65, 0x061f430e, 0x75716525, 0x895f6c61, 0x42172036,
0x17890c9f, 0x37411220, 0x4141860a, 0x28890b7b, 0x288a1420, 0x50417b88, 0x866c8506, 0x062c413e, 0x1520808f, 0x85052c41, 0x20408816, 0x0b594119,
0x1c20468c, 0x8c891991, 0x1c911b20, 0x12205288, 0x20091942, 0x2092865f, 0x89128a15, 0x8a142044, 0x203d8815, 0x06274116, 0x230a6345, 0x37307373,
0x820df043, 0x41382011, 0xba840d50, 0x17832e20, 0x6e750725, 0x5b373269, 0x0782057a, 0x61093929, 0x65746f6e, 0x5169656c, 0x37210627, 0x20218445,
0x05a45630, 0x30303223, 0x210f8338, 0x254c3030, 0x2c0f8205, 0x70730a42, 0x2e656361, 0x63617266, 0x824c830a, 0x742e222a, 0x21258366, 0xad544546,
0x30322805, 0x45044641, 0x856f7275, 0x057a544a, 0x58303221, 0x0782051f, 0x640d3927, 0x616c6c6f, 0x06d14672, 0x0d870b20, 0xa15b7320, 0x32322105,
0x2105624c, 0x324e3232, 0x32322205, 0x05cf4931, 0x48303221, 0x3320057d, 0x8205395d, 0x05074a17, 0x2c523220, 0x20378205, 0x23718443, 0x07424132,
0x6d23d282, 0x85746e65, 0x4c30200f, 0x30200553, 0x3505bc54, 0x43373032, 0x7571650b, 0x6c617669, 0x65636e65, 0x6978650b, 0x2c827473, 0x6c616922,
0x41272f85, 0x72670839, 0x82696461, 0x690a2413, 0x8265746e, 0x626c220c, 0x210a8874, 0x26847074, 0xcb523320, 0x33322105, 0x8205db52, 0x05864a07,
0x414d3320, 0x200f8205, 0x20278633, 0x20078431, 0x05585b30, 0x42207e82, 0x32200f84, 0x82059059, 0x05e64ab6, 0x7b553220, 0x32322105, 0x24057b55,
0x43303232, 0x059c410a, 0x3622c989, 0x12820932, 0x62757324, 0xdb866573, 0x82059650, 0x08442644, 0x74706d65, 0x2b188279, 0x676f6c0a, 0x6c616369,
0x09646e61, 0x6f220a86, 0xc8830c72, 0x6573722a, 0x6f697463, 0x6e75056e, 0x85850582, 0x41363021, 0xe65905e1, 0x33322105, 0x82050955, 0x066c4107,
0x82052155, 0x20a5850f, 0x06094233, 0x21553320, 0x30322105, 0x82052156, 0x056441d5, 0x36333229, 0x6665720c, 0x8578656c, 0x870e20a5, 0x6570210c,
0x74247d82, 0x7665720d, 0xc8829386, 0x33208184, 0x20066049, 0x05085f33, 0x54333221, 0x07820513, 0x2005de41, 0x060e4233, 0x894e3320, 0x24ea8205,
0x72700c32, 0x414f836f, 0x412a0b07, 0x63757308, 0x61687468, 0x1d870e74, 0x64847285, 0x7c413220, 0x88322006, 0x059c4144, 0x34303226, 0x65687409,
0x6f22a482, 0x29856572, 0x26075d42, 0x75093841, 0x8276696e, 0x081742b6, 0x690d352f, 0x6e69666e, 0x2e797469, 0x65736163, 0x0796450e, 0xfd4b6320,
0x656c2405, 0x852e7373, 0x7007280b, 0x2e73756c, 0x840b636c, 0x70732607, 0x72656361, 0x0686430c, 0x3b880c84, 0x0b201b85, 0x0b853b84, 0xdd431120,
0x202c840b, 0x63118412, 0x35430575, 0x700e2306, 0x6a837265, 0x07260e86, 0x6f727261, 0x99427577, 0x39312305, 0x0f840a37, 0x67697223, 0x05274268,
0x38393123, 0x23128409, 0x6e776f64, 0x3122e784, 0x11853939, 0x66656c22, 0x36202387, 0x62231185, 0x8568746f, 0x70752209, 0x512d8664, 0x32210526,
0x05455b31, 0x42313221, 0x312006fc, 0x2105ad60, 0x66533132, 0x4f078205, 0x3120050b, 0x2006f34d, 0x050e5437, 0x50373221, 0x3f82057e, 0x20052443,
0x06824431, 0x78563120, 0x20178205, 0x20958436, 0x06034433, 0x2d613320, 0x42322105, 0x82059e42, 0x20378507, 0x05565042, 0x30204f82, 0x37212f84,
0x055c4346, 0xce503720, 0x42178205, 0x37200534, 0x8205f650, 0x2037850f, 0x057e5437, 0x4b440f82, 0x59372005, 0x0f820570, 0x20058c43, 0x053d6037,
0xf6420f82, 0x59372005, 0x0f820580, 0x2005f642, 0x055d5d37, 0x4f353221, 0x352106f3, 0x2ae78538, 0x07333835, 0x6c626e64, 0x846b636f, 0x3835218f,
0x35207f85, 0x2306f34f, 0x05373835, 0x70201d86, 0x3921258a, 0x852d8634, 0x4d35205d, 0x5d820567, 0x6c074423, 0x42278a66, 0x352006b5, 0x25066443,
0x07393835, 0x1f8a7472, 0x21059c53, 0xa3623532, 0x85078205, 0x583520ed, 0x0f8205ee, 0x3521ed85, 0x059c4339, 0xcc433520, 0x43352006, 0x352006e4,
0x8205435e, 0x05f64527, 0x4639352b, 0x73746c07, 0x65646168, 0x22058405, 0x856b6407, 0x6e752c07, 0x43353269, 0x69630646, 0x436c6372, 0x35200528,
0x2105285d, 0x21563532, 0x41078205, 0x3520058a, 0x8205fb5a, 0x0562430f, 0xd1533520, 0x860f8205, 0x0541569c, 0x41353221, 0x352006b2, 0x82052156,
0x0502420f, 0x86463521, 0x05986227, 0x45247682, 0x766e6909, 0x4d59798b, 0x41518205, 0x352005bc, 0x22055b53, 0x87453532, 0x05084681, 0x125e3520,
0x86278205, 0x051a5ede, 0x69865182, 0x69864320, 0x0a45412b, 0x6c6c6966, 0x65726465, 0x050b4363, 0x94443520, 0x41352106, 0x2006a141, 0x55528630,
0x322005c6, 0x82061d62, 0x41382007, 0x332005c9, 0xc5611f86, 0x35322205, 0x06e14133, 0x17873120, 0x95620f86, 0x62322005, 0x32210695, 0x05556035,
0x4f420782, 0x06d35006, 0x5e543520, 0x41178205, 0x8e540644, 0x35322105, 0x82056654, 0x05a74207, 0x9d613520, 0x410f8205, 0x5d61060a, 0x860f8205,
0x413520b7, 0x3b5106f9, 0x60352006, 0x578205a5, 0x54060241, 0x2f82056e, 0xc7853020, 0xaf863620, 0x8205d560, 0x54df8627, 0x0f820576, 0x5a06df42,
0x37820568, 0x25611f86, 0x860f8205, 0x05305aaf, 0x41212f82, 0x055a4109, 0x786f6222, 0x49436185, 0x06264707, 0xaf603520, 0x35322105, 0x20069945,
0x05b76035, 0xa1860f82, 0x20062647, 0x06664735, 0x79443520, 0x45352006, 0x352006a7, 0x20062e46, 0x05405535, 0x44353221, 0x35200659, 0x20065944,
0x05f25a35, 0x21411782, 0x05b05806, 0x44353221, 0x35200639, 0x2806a144, 0x07334635, 0x61697274, 0x06444567, 0x36423522, 0x01450f85, 0x43352206,
0x210f8530, 0x07857472, 0x85666c21, 0x061145cf, 0xd0553520, 0x41678205, 0x31450601, 0x57352006, 0x32200520, 0x20064764, 0x062f6132, 0x30353222,
0x5f069442, 0x322105af, 0x05c05635, 0xb9411f82, 0x05ff5f06, 0xc3430f82, 0x06fd4806, 0x20583520, 0x422f8205, 0x125c06bc, 0x860f8205, 0x05785637,
0x57353221, 0x77820580, 0x30208f86, 0x30211f86, 0x53b78531, 0x3520066d, 0x6006f249, 0x9782068f, 0x20062741, 0x06394237, 0x60067145, 0x322106b7,
0x05385735, 0x27865f82, 0x07863120, 0x82053769, 0x2097866f, 0x63778630, 0xc782059f, 0xd0582786, 0x42af8205, 0x32200649, 0x4906c942, 0x352006ed,
0x8205425d, 0x0611435f, 0x87863320, 0x8205125d, 0x5a578637, 0x8f8205f0, 0x8b522786, 0x5d352006, 0x2782052a, 0x58065f41, 0x27820558, 0x57068143,
0xe7820520, 0x4a06b942, 0x3520061d, 0x20068d54, 0x06814635, 0x82062766, 0x52a78637, 0x352106e3, 0x06974234, 0x5f863220, 0x0f863320, 0x8205f25d,
0x065f41b7, 0x2006f156, 0x05bf6435, 0x7f868f82, 0x8205b058, 0x597f8627, 0x322005c8, 0x82064766, 0x20578607, 0x5e578631, 0x2f82051a, 0x66065741,
0x2782052f, 0x66061742, 0x0f82055f, 0x6f65a786, 0x35322105, 0x82054a5f, 0x41302007, 0x9f6505ef, 0x860f8205, 0x41312027, 0xca5d0677, 0x35322105,
0x82052769, 0x06274207, 0x2106e353, 0x3f853136, 0x8f423620, 0x31362106, 0x20056f41, 0x05b05a36, 0x42363221, 0x362006df, 0x8205005a, 0x421f860f,
0x3620067f, 0x20060945, 0x06df4136, 0x85333621, 0x5a3620d7, 0x2f820500, 0x7309392e, 0x656c696d, 0x65636166, 0x766e690c, 0x032b0c88, 0x066e7573,
0x616d6566, 0x8304656c, 0x73053804, 0x65646170, 0x756c6304, 0x65680562, 0x07747261, 0x6d616964, 0x84646e6f, 0x6b3720df, 0x32220597, 0x5f853034,
0xa05b3320, 0x410f8205, 0x33200567, 0x2b067945, 0x09333131, 0x69747365, 0x6574616d, 0x31203985, 0x21066941, 0x61413034, 0x42342005, 0x342006a1,
0x20065941, 0x06854733, 0x85313421, 0x43342049, 0x33200689, 0x6c06e142, 0x32210629, 0x06994334, 0xa25b3420, 0x34322105, 0x20062b46, 0x06394134,
0x8206396c, 0x06322517, 0x33463175, 0x20065841, 0x06de4c34, 0x8206506c, 0x052842b0, 0x86313421, 0x0680438e, 0x68433420, 0x46342006, 0x34200652,
0x20069246, 0x06c84134, 0x3f4c3320, 0x30342706, 0x6f680539, 0xa5477375, 0x44312005, 0x332006fe, 0x2105a665, 0x49613332, 0x41078205, 0x43200626,
0x2005ee41, 0x062e4233, 0xbc863320, 0x2b473120, 0x62312006, 0x322105e1, 0x20fc8633, 0x059e6533, 0x9643a582, 0x31342105, 0x20054e42, 0x06b04934,
0x66413420, 0x41332006, 0xbd880786, 0x2005d642, 0x06864434, 0xfe443420, 0x42342006, 0x34200646, 0x21069644, 0x3e423034, 0x31342105, 0x1e435f86,
0x41342006, 0x312006a4, 0x20068c41, 0x06124931, 0x3e453420, 0x30342506, 0x74610942, 0x28060d4b, 0x706d6110, 0x61737265, 0x077e576e, 0x4e620a21,
0x0e20086e, 0x73231b8a, 0x89153330, 0x6562270e, 0x65726f66, 0x1582732e, 0x4a830720, 0x35307330, 0x756c7009, 0x6e642e73, 0x6d0a6d6f, 0x0a876e69,
0x8305c74b, 0x88182015, 0x885f203d, 0x6c2e2509, 0x13616769, 0x5f207082, 0x830adc56, 0x87152013, 0x656b2713, 0x67697274, 0x29847468, 0x15840c20,
0x20061955, 0x200c8610, 0x072a555f, 0x108a1820, 0x05525f20, 0x8714200b, 0x0c1a5218, 0x108b1483, 0x5b4f1320, 0x20398c05, 0x20d3830e, 0x84d8845f,
0x890e88a9, 0x84112013, 0x84598c13, 0x0a3954f3, 0x108a1620, 0x1220168a, 0x128a3486, 0x12871420, 0x1c204f8b, 0xa18c148e, 0x656c1e24, 0xea547373,
0x06f25506, 0x840cf955, 0x0c70541e, 0x128c1a20, 0x0d204c8c, 0x4f411a84, 0x87112007, 0x0861410d, 0x118b1520, 0x05411592, 0x412b840c, 0x2e250553,
0x6167696c, 0x8c108a18, 0x840e2075, 0x08644118, 0x0e881620, 0x0f20258c, 0x65201684, 0x8508a655, 0x85718b9d, 0x08965647, 0x30841320, 0xaa560488,
0x570e8405, 0x1c200e75, 0x768c148e, 0x1c8f1f20, 0x96853c8e, 0x20094954, 0x542f8417, 0x16201189, 0x9f413789, 0x20168a0c, 0x05e44261, 0x128a1720,
0x1a20de8b, 0x848e178a, 0x1a942220, 0x7f85c78c, 0x4205164f, 0x1a4f0b70, 0x865f2006, 0x6c2e2407, 0x43616769, 0x6e2305c9, 0x43726d75, 0x0a8406c9,
0x83057a41, 0x0868430a, 0x230f1954, 0x72616214, 0xaf545c85, 0x05ca430a, 0xc8531888, 0x43172006, 0x46540793, 0x5517870f, 0xe453060b, 0x90478409,
0x8e162015, 0x885e862f, 0x0f6355a2, 0xa2891120, 0x13202a86, 0x3b541189, 0x83122008, 0x0d8d5513, 0x4d8fdb84, 0x27831920, 0x20149254, 0x0f1b4110,
0x13550d20, 0x8e0f200c, 0x432020f6, 0x3e8f0fe3, 0x2c441820, 0x0a5e410c, 0x39951d20, 0x1f20dc86, 0xe8881d95, 0x568d1720, 0x15201788, 0x4d86178d,
0x4d8f2120, 0x20108e41, 0x90218719, 0x961e2019, 0x415a863b, 0x6a411000, 0x0800410f, 0x1620188f, 0x5086728e, 0x4405e644, 0x32410934, 0x05c6440a,
0x430f6141, 0x308a05b9, 0x19204886, 0x42084244, 0x244106da, 0x91122008, 0x8a14202c, 0x20278812, 0x4141891b, 0xed441016, 0x45169005, 0x3784052c,
0x8a0d8642, 0x0f0841d6, 0x8d05f044, 0x8fea852e, 0x0e794629, 0x30737323, 0x0b5e4532, 0x18200f83, 0x20120d47, 0x2018822e, 0x85518534, 0x6c2e241d,
0x84616769, 0x451d2015, 0x1d8417dc, 0x6b411520, 0x0e895705, 0x57062243, 0x27470970, 0x2d718212, 0x756d0b38, 0x61636973, 0x746f6e6c, 0x0b8a0e65,
0x6c626428, 0x696e7507, 0xbf523330, 0x33302105, 0x82053361, 0x84352007, 0x6b322017, 0x302105a8, 0x05555732, 0x51323021, 0x0f820524, 0x1f843920,
0x38303322, 0x372f0786, 0x61726709, 0x6f636576, 0x6109626d, 0x84747563, 0x201b8609, 0x20078642, 0x20078632, 0x20078643, 0x25078636, 0x69740941,
0x318b646c, 0x19863420, 0x33208585, 0x2105c449, 0x734b3330, 0x86078205, 0x05ac491f, 0x6c4a3020, 0x33302106, 0x8205f34b, 0x09362b07, 0x6f726163,
0x6c612e6e, 0xdf840c74, 0x2e363228, 0x65736163, 0xd47a640d, 0x200d8406, 0x083e780e, 0x0a200e84, 0x0a85c184, 0x0a84c284, 0x7b681121, 0x11840ac3,
0x8f780f20, 0x200f8409, 0x836b850a, 0x620a255f, 0x65766572, 0x09241584, 0x676e6972, 0x0a200984, 0x0a84dd84, 0x0b790b20, 0x270b8405, 0x6465630c,
0x616c6c69, 0x0d200c84, 0x200ca078, 0x787e8912, 0x10410795, 0x056c4d05, 0x3433302a, 0x6f740535, 0x0a736f6e, 0xda8d0584, 0x2108ac69, 0x1b714631,
0x20078205, 0x069c6544, 0x07854520, 0x21057375, 0xb0524631, 0x46312105, 0x8205644b, 0x201f870f, 0x4b278546, 0x31210594, 0x05ab7046, 0x1f870782,
0x1f853120, 0x0c464525, 0x82696e75, 0x84462017, 0x21148582, 0x14854446, 0x8a444621, 0x30432114, 0x45211c83, 0x05ae4b30, 0x41840782, 0x32200782,
0x33201786, 0xee570785, 0x30452105, 0x8205b551, 0x551f8607, 0x452105f7, 0x05f75530, 0x17870782, 0x62073329, 0x65766572, 0x860c7963, 0x24748407,
0x47494c03, 0x26008200, 0xff010001, 0x820f00ff, 0x3a02a909, 0x00cb00cb, 0x05990099, 0x04000062, 0xfe00001e, 0xff7b0555, 0xff3704e7, 0x8255fee7,
0x251b8619, 0xdf05e7ff, 0x13831e04, 0x0b821d83, 0x00231f8e, 0x89dd0500, 0x1606213d, 0xa42e3f86, 0x7d00a400, 0x00017d00, 0x0c017efe, 0x0d8272fe,
0x7f080f84, 0x7602f804, 0x6a020405, 0x202c00b0, 0x585500b0, 0x20205945, 0x0e00b84b, 0x06b04b51, 0xb0585a53, 0x28b01b34, 0x20666059, 0xb058558a,
0xb9612502, 0x00080008, 0x62236363, 0xb021211b, 0x00b05900, 0xb2442343, 0x43000100, 0xb02d4260, 0x20b02c01, 0xb02d6660, 0x21232c02, 0xb02d2123,
0x64202c03, 0x151403b3, 0xb0434200, 0x60204313, 0x02b14260, 0xb1424314, 0xb0430325, 0x78544302, 0x230cb020, 0x432a0882, 0x04b06461, 0x02b27850,
0x46820202, 0x6521b024, 0x1583211c, 0x150eb226, 0x201c4201, 0x23250a82, 0x0113b242, 0x291b8213, 0x5000b023, 0xb2596558, 0x29830116, 0x04b02d2a,
0x2b03b02c, 0x584315b0, 0xb0236f83, 0x86434316, 0x201b3e20, 0xc0b02064, 0x2604b050, 0x0128b25a, 0x6345430d, 0x4506b045, 0x03b02158, 0x5b525925,
0x269c8258, 0x20588a1b, 0x825050b0, 0x59402512, 0x38b0201b, 0x38240983, 0xb1205959, 0x91822d85, 0x12822820, 0x20220d86, 0x0c8230b0, 0x8330b021,
0x50c02e29, 0x20662058, 0x20618a8a, 0x58500ab0, 0x203b8260, 0x201b8320, 0x2009830a, 0x35098336, 0x601b6036, 0x1b595959, 0xb02502b0, 0xb063430c,
0xb0585200, 0x2c834b00, 0x0f822120, 0xb04b1b23, 0x2625831e, 0xb8614b1e, 0x82630010, 0xb8632f11, 0x59620005, 0x59616459, 0x592b01b0, 0xe2852359,
0x64205922, 0x232dcf82, 0xb02d5942, 0x45202c05, 0x2504b020, 0x2ed38261, 0x58504307, 0x422307b0, 0x422308b0, 0x8221211b, 0x2d602432, 0x842c06b0,
0x2b0328fe, 0x07b16420, 0x83204262, 0x20ee831c, 0x83be851b, 0x05b02805, 0xb0634560, 0x82212a05, 0x2043241c, 0x828a208a, 0x30b1386b, 0x04b02505,
0x60585126, 0x52611b50, 0x59235859, 0xb0205921, 0x82585340, 0x211b231b, 0x8a8740b0, 0x07b02d2a, 0x4309b02c, 0x0200b22b, 0x2005e641, 0x3a0e8208,
0x20234223, 0x422300b0, 0x6202b061, 0x6301b066, 0xb06001b0, 0xb02d2a07, 0x83202c09, 0x430e26ad, 0x0004b863, 0x82228262, 0x604022af, 0x21228359,
0x24824460, 0x0ab02d2c, 0x0e09b22c, 0x42454300, 0x3842212a, 0x2c0b2108, 0x200d4842, 0x2245850c, 0x82232b01, 0x32fa8217, 0x8a452060, 0x64206123,
0x5020b020, 0x00b02158, 0x8230b01b, 0x1b202157, 0xa587a482, 0x2503b025, 0x85446123, 0x960d2062, 0x24b0213e, 0x3c823582, 0x348bda88, 0x842c0e21,
0x0db325d0, 0x4503000c, 0x1b356582, 0x2a592123, 0x0fb02d21, 0x0202b12c, 0x6164b045, 0x10b02d44, 0x29c2822c, 0x0fb02020, 0x00b04a43, 0x08825850,
0x59422324, 0x0d8310b0, 0x0d825220, 0x0d821020, 0x11b02d22, 0x10214882, 0x24f18362, 0x0004b820, 0x08b88263, 0x4311b027, 0x608a2060, 0x2311b020,
0xb02d2342, 0x544b2c12, 0x6404b158, 0xb0245944, 0x7823650d, 0x2c13b02d, 0x4b58514b, 0x21148553, 0x1782211b, 0x17841320, 0xb12c143c, 0x55431200,
0x1212b158, 0x6101b043, 0x2b11b042, 0x4300b059, 0x422502b0, 0x04830fb1, 0x04821020, 0x1601b024, 0xc9822023, 0xb158502d, 0x60430001, 0x422504b0,
0x83208a8a, 0x2a102376, 0x36822321, 0x1b200b87, 0x32831f85, 0x61250223, 0x201d82b0, 0x20c98259, 0x23bf8247, 0x02b06047, 0x210dac41, 0xc241b020,
0xb1310814, 0x23130000, 0x4301b044, 0xb23e00b0, 0x43010101, 0xb02d4260, 0xb1002c15, 0x54450200, 0x2312b058, 0xb0452042, 0xb042230e, 0x05b0230d,
0xb0204260, 0x20118214, 0x2d838260, 0x011818b7, 0x13001100, 0x42424200, 0x1782608a, 0x1b82a882, 0x0814b12c, 0x2b8bb02b, 0x2d59221b, 0xec8216b0,
0x2d2b1527, 0xb12c17b0, 0x23078301, 0x02b12c18, 0x19230783, 0x8303b12c, 0x2c1a2307, 0x078304b1, 0xb12c1b23, 0x23078305, 0x06b12c1c, 0x1d230783,
0x8307b12c, 0x2c1e2307, 0x078308b1, 0xb12c1f23, 0x24078309, 0x20232c2b, 0x058841b0, 0x6006b02e, 0x2358544b, 0x01b02e20, 0x21211b5d, 0x2c206c82,
0x16201c8a, 0x71201c88, 0x2d201c85, 0x26201c8a, 0x72201c88, 0x20251c85, 0x0fb0002c, 0x83f0972b, 0x85b520eb, 0x8be883eb, 0x822120df, 0x822020df,
0x822220df, 0x200783df, 0x83df8223, 0x82242007, 0x200783df, 0x83df8225, 0x82262007, 0x200783df, 0x83df8227, 0x82282007, 0x200783df, 0x83df8229,
0x822a2007, 0x320783df, 0x3c202c2e, 0x2d6001b0, 0x202c2fb0, 0x6018b060, 0x82234320, 0xb043240e, 0x82612502, 0x2eb03507, 0xb02d212a, 0x2fb02c30,
0x2a2fb02b, 0x2c31b02d, 0x20472020, 0x2716d641, 0x23386123, 0x58558a20, 0x1b25219c, 0xb02d5921, 0x07eb4132, 0x060eb134, 0x01b04245, 0x2a31b016,
0x150105b1, 0x59305845, 0x2082221b, 0x1e413320, 0x2323970a, 0x35202c34, 0x3520b984, 0x47854d82, 0x2f444520, 0x01b02211, 0x1484422b, 0x00231783,
0x8300b416, 0x3e442700, 0x34b13823, 0xeb831501, 0x202c3623, 0x94c0823c, 0xb0602f33, 0x38614300, 0x2c37b02d, 0x2d3c172e, 0x2a9f38b0, 0x4301b023,
0x082e8263, 0xb12c3933, 0x25160002, 0x47202e20, 0x422300b0, 0x492502b0, 0x23478a8a, 0x20612347, 0x211b6258, 0x2301b059, 0x0138b242, 0x2a141501,
0x2c3ab02d, 0xb01600b0, 0x24268217, 0x04b02504, 0x2f268425, 0x42000cb1, 0x2b430bb0, 0x232e8a65, 0x8a3c2020, 0x3b205382, 0x2021268d, 0x2428842e,
0x2306b020, 0x3e2d8742, 0x5060b020, 0x40b02058, 0x04b35851, 0x1b200520, 0x052604b3, 0x4242591a, 0x0ab02023, 0x828a2043, 0x2581827f, 0xb0604623,
0xb7434306, 0x2060240f, 0x462b01b0, 0x0430059e, 0x23646043, 0x614305b0, 0xb0585064, 0x1b614304, 0x60240b82, 0x2503b059, 0x6120338f, 0xb0289a82,
0x46232604, 0x231b3861, 0x46206182, 0x0682e782, 0x4f829784, 0x88826492, 0x232b0122, 0x60207e82, 0xb0236d82, 0x82612505, 0x82558f03, 0x20612451,
0x832504b0, 0x82032084, 0x06524505, 0x59236b89, 0x413cb02d, 0x2025070b, 0x05b02020, 0x060b4126, 0x383c2325, 0x883db02d, 0x0ab0231a, 0x1f824223,
0x47234622, 0x23216c82, 0x201b8261, 0x0842413e, 0x6941cc83, 0x00b02905, 0x202e5854, 0x1b21233c, 0x0220bd83, 0x54821485, 0x22088a41, 0x822506b0,
0x484920a5, 0xc4410bc4, 0x11794205, 0x41236021, 0x232106ad, 0x20a48221, 0x20898a3f, 0x25a28643, 0x20b06020, 0xf28f6660, 0x2507e241, 0x20232c40,
0x6982462e, 0x17b04635, 0x1b505843, 0x20585952, 0xb12e593c, 0x2b140130, 0x8c41b02d, 0x1b52221d, 0x201d8c50, 0x871d8c42, 0x8f4f8b3b, 0x2c432431,
0x9b2b3ab0, 0x2c442e70, 0x8a2b3bb0, 0xb03c2020, 0x8a422306, 0x252a9938, 0x2e4306b0, 0xa28230b0, 0xf2844520, 0xb0250424, 0x79412604, 0xb0612405,
0x4242230c, 0xb02205a9, 0x6d82430b, 0x2e203c24, 0xd0863823, 0xb12c462a, 0x4225040a, 0xb01600b0, 0x25203283, 0x202dd242, 0x47c54247, 0x2502b024,
0xdd826146, 0x38233c26, 0x2020211b, 0x21082f42, 0xa7865921, 0xb12c4725, 0x412b3a00, 0x48200786, 0x3b230d82, 0x4123212b, 0xcd860617, 0x24080241,
0x00b02c49, 0x05f64315, 0x0100b22d, 0x13141501, 0x2a36b02e, 0x964ab02d, 0x2c4b2817, 0x140100b1, 0x8237b013, 0x2c4c2323, 0x068239b0, 0x2a824d20,
0x23451629, 0x46202e20, 0x4161238a, 0x4e30072d, 0x230ab02c, 0x2b4db042, 0x2c4fb02d, 0x460000b2, 0x50200882, 0x01200882, 0x51230883, 0x8401b22c,
0x82522011, 0x20118408, 0x211a8253, 0x23824700, 0x08825420, 0x08830120, 0x1a825520, 0x56201184, 0x11840882, 0xb32c5726, 0x43000000, 0x58202482,
0x01200982, 0x59230984, 0x8501b32c, 0x825a2013, 0x20138509, 0x221d825b, 0x82430100, 0x825c2027, 0x84012009, 0x825d2009, 0x2013851d, 0x8509825e,
0x825f2013, 0x4500216a, 0x60202682, 0x01200882, 0x61200883, 0x11846a82, 0x08826220, 0x63201184, 0x00211a82, 0x20238248, 0x20088264, 0x20088301,
0x841a8265, 0x82662011, 0x20118408, 0x20978467, 0x20248244, 0x83978468, 0x84692009, 0x20098397, 0x8397846a, 0x846b2009, 0x20098397, 0x8397846c,
0x846d2009, 0x20098397, 0x8397846e, 0x2c6f2409, 0x413c00b1, 0x702008c0, 0xb0210d84, 0x205e8240, 0x200a8571, 0x240a8241, 0x00b02c72, 0x21268316,
0x0d8242b0, 0xb12c7325, 0x842b3c01, 0x85742023, 0x2023830a, 0x83238475, 0x20238318, 0x203c8276, 0x2055883d, 0x840d8477, 0x85782031, 0x8241200a,
0x85792047, 0x202e830a, 0x2047827a, 0x2052853d, 0x830a857b, 0x857c2020, 0x2020830a, 0x202b827d, 0x204f883e, 0x840d847e, 0x857f204f, 0x202e830a,
0x200a8580, 0x205a8242, 0x20398281, 0x204f853e, 0x830a8582, 0x85832020, 0x2020830a, 0x202b8284, 0x204f883f, 0x840d8485, 0x8586204f, 0x8241200a,
0x85872044, 0x202e830a, 0x20398288, 0x204f853f, 0x830a8589, 0x858a2020, 0x0820830a, 0xb22c8b21, 0x4503000b, 0x06b05850, 0x0204b21b, 0x23584503,
0x59211b21, 0xb02b4259, 0x03b06508, 0x47785024, 0x2d2107d0, 0x2c008200, 0xc800b84b, 0x01b15852, 0xb0598e01, 0x05fe4d01, 0x00b1702d, 0x00b64207,
0x21314100, 0x832a0005, 0x0c402d0c, 0x0446044e, 0x08260836, 0x0a050718, 0x52291286, 0x3e024a02, 0x1f062e06, 0x30128405, 0x13be420c, 0x0dc011c0,
0x06c009c0, 0x00050040, 0x2426820b, 0x00be4211, 0x83018840, 0x00b92f13, 0x44000003, 0x880124b1, 0x40b05851, 0x0f835888, 0xb1446423, 0x220f8328,
0x850008b8, 0x44002510, 0x27b11b59, 0xba291283, 0x01008008, 0x63884004, 0x82298454, 0x82592018, 0x402a0800, 0x4802500c, 0x28063802, 0x05051a06,
0x01b82a0e, 0x04b085ff, 0x0002b18d, 0x6405b344, 0x44440006, 0x00000000, 0x00000100, 0xfa050000, 0xe203260b,
};
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/FiraCodeRetina.hpp
|
C++
|
gpl-3.0
| 593,686
|
// File: 'Font Awesome 6 Free-Solid-900.otf' (763488 bytes)
// Exported using binary_to_compressed_c.cpp
namespace tracy
{
static const unsigned int FontAwesomeSolid_compressed_size = 497359;
static const unsigned int FontAwesomeSolid_compressed_data[497360/4] =
{
0x0000bc57, 0x00000000, 0x60a60b00, 0x00000400, 0x544f4708, 0x0a004f54, 0x03008000, 0x46432000, 0x64552046, 0x0000eb67, 0x0a009ca9, 0x53475546,
0x99d54255, 0x0b005ce8, 0x0000a401, 0x534fbaa4, 0x4a61322f, 0x000068e2, 0x00001001, 0x6d636000, 0xe3027061, 0x00005f8b, 0x1f826005, 0x65681c28,
0xec206461, 0x1b82df54, 0x0382ac20, 0x82683621, 0x43042210, 0x200b8306, 0x250f82e4, 0x746d6824, 0x0882b078, 0xef0a002e, 0x110000f4, 0x78616db0,
0x506c0470, 0x01211182, 0x27048208, 0x6d616e06, 0xac1db665, 0x01292b82, 0x03000070, 0x736f70ed, 0x82978274, 0x7ca9211a, 0x20220482, 0x15820100,
0x612b0482, 0x5f777892, 0x00f53c0f, 0x8300020b, 0x27de2300, 0x0789b109, 0x02c0ff25, 0x82c00180, 0x0008220f, 0x83058202, 0x22378202, 0x82ffc001,
0x80022513, 0xffff0000, 0x01200582, 0x03891683, 0x006c0425, 0x83005000, 0x04002d05, 0x8403f701, 0x00000500, 0x66014c01, 0x47202182, 0xf52a0786,
0x84001900, 0x00020000, 0x15820309, 0x80200282, 0x10202282, 0x02870782, 0x53574129, 0x0080004d, 0x85ffff20, 0xc001236b, 0x1b824000, 0x03820120,
0x39010024, 0x0782a501, 0x29002022, 0x16230582, 0x84000e01, 0x220b8215, 0x8692001a, 0x8201200b, 0x8635205f, 0x8202200b, 0x868d207f, 0x0003220b,
0x8527821f, 0x8a04202f, 0x00052423, 0x86ac0032, 0x00062223, 0x85258216, 0x000a2423, 0x864e002c, 0x000b2417, 0x86de0017, 0x0010240b, 0x867a0013,
0x8411200b, 0x0003245f, 0x82090401, 0x0234235b, 0x0b850019, 0x32000124, 0x0b865f01, 0x0a000224, 0x0b860f02, 0x3e000324, 0x0b86f500, 0x238a0420,
0x64000524, 0x17864d02, 0x2c000624, 0x0b863301, 0x58000a24, 0x0b869101, 0x2e000b24, 0x0b86b102, 0x26001024, 0x0b86e901, 0x5f831120, 0x6e6f463e,
0x77412074, 0x6d6f7365, 0x20362065, 0x65657246, 0x6c6f5320, 0x362d6469, 0x302e302e, 0x1d861e83, 0x1b833620, 0x1b842d20, 0x2b083498, 0x20656854,
0x27626577, 0x6f6d2073, 0x70207473, 0x6c75706f, 0x69207261, 0x206e6f63, 0x20746573, 0x20646e61, 0x6c6f6f74, 0x2e74696b, 0x5c844492, 0x706f432d,
0x67697279, 0x28207468, 0x8b202963, 0x65562425, 0x82697372, 0x36372d49, 0x30302e38, 0x36303933, 0x28203532, 0x7620478c, 0x3a212285, 0x29bd8420,
0x74746829, 0x2f3a7370, 0xe582662f, 0xe4856120, 0x6f632e35, 0x0046006d, 0x006e006f, 0x00200074, 0x00770041, 0x82730065, 0x826d200f, 0x00202207,
0x22138236, 0x82720046, 0x8265200b, 0x82532009, 0x006c2617, 0x00640069, 0x2319822d, 0x0030002e, 0x3d870383, 0x36213b8d, 0x21378700, 0x3789002d,
0x542269b1, 0x89846800, 0x62229783, 0x9b822700, 0x6d002022, 0x73208782, 0x7020af84, 0x70260982, 0x6c007500, 0xa5826100, 0x9b822020, 0xcb846320,
0x27822020, 0x21846520, 0xd9826120, 0xbb826420, 0x17827420, 0x27826f20, 0x23826b20, 0xb7827420, 0xb98989a5, 0x69844320, 0x65827920, 0x67006922,
0x74209382, 0x28245382, 0x29006300, 0x4b970782, 0xb9825620, 0x89827220, 0x93866920, 0x36003724, 0x7b823800, 0x30003026, 0x39003300, 0x36240582,
0x35003200, 0x28204182, 0x201a8341, 0x20458c76, 0x202d823a, 0x22438436, 0x8230002e, 0x8268207d, 0x007422e5, 0x22658270, 0x822f003a, 0x84662001,
0x0074226b, 0x0cc94161, 0xa9822e20, 0x6d006f23, 0x20008400, 0x20058204, 0x20038203, 0x82038224, 0x4c3d250b, 0x01000300, 0x20080f84, 0x000a0003,
0x004c3d00, 0x00283d04, 0x08d40e00, 0x060a0000, 0x002100d4, 0x00250022, 0x00270026, 0x24708228, 0x002c002b, 0x2080822d, 0x30c0822f, 0x003b003a,
0x005b005a, 0x005d005c, 0x005f005e, 0x20768260, 0x206a8262, 0x2cb28264, 0x00670066, 0x00690068, 0x006b006a, 0x207a826c, 0x2498826e, 0x00710070,
0x24aa8272, 0x00750074, 0x07a08276, 0x0078800e, 0x007a0079, 0x007c007b, 0x007e007d, 0x0080007f, 0x00820081, 0x00840083, 0x00860085, 0x00880087,
0x008a0089, 0x008c008b, 0x008e008d, 0x0090008f, 0x00920091, 0x00940093, 0x00960095, 0x00980097, 0x009a0099, 0x009c009b, 0x009e009d, 0x00a0009f,
0x00a200a1, 0x00a400a3, 0x00a600a5, 0x00a800a7, 0x00aa00a9, 0x00ac00ab, 0x00ae00ad, 0x00b000af, 0x00b200b1, 0x00b400b3, 0x00b600b5, 0x00b800b7,
0x00ba00b9, 0x00bc00bb, 0x00be00bd, 0x00c000bf, 0x00c200c1, 0x00c400c3, 0x00c600c5, 0x00c800c7, 0x00ca00c9, 0x00cc00cb, 0x00ce00cd, 0x00d000cf,
0x00d200d1, 0x00d400d3, 0x00d600d5, 0x00d800d7, 0x00da00d9, 0x00dc00db, 0x00de00dd, 0x00e000df, 0x00e200e1, 0x00e400e3, 0x00e600e5, 0x00e800e7,
0x00ea00e9, 0x00ec00eb, 0x00ee00ed, 0x00f000ef, 0x00f200f1, 0x00f400f3, 0x00f600f5, 0x00f800f7, 0x00fa00f9, 0x00fc00fb, 0x00fe00fd, 0x010001ff,
0x01020101, 0x01040103, 0x01060105, 0x01080107, 0x010a0109, 0x010c010b, 0x010e010d, 0x0110010f, 0x01120111, 0x01140113, 0x01160115, 0x01180117,
0x011a0119, 0x011c011b, 0x011e011d, 0x0120011f, 0x01220121, 0x01240123, 0x01260125, 0x01280127, 0x012a0129, 0x012c012b, 0x012e012d, 0x0130012f,
0x01320131, 0x01340133, 0x01360135, 0x01380137, 0x013a0139, 0x013c013b, 0x013e013d, 0x0140013f, 0x01420141, 0x01440143, 0x01460145, 0x01480147,
0x014a0149, 0x014c014b, 0x014e014d, 0x0150014f, 0x01520151, 0x01540153, 0x01560155, 0x01580157, 0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f,
0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169, 0x016c016b, 0x016e016d, 0x0170016f, 0x01720171, 0x01740173, 0x01760175, 0x01780177,
0x017a0179, 0x017c017b, 0x017e017d, 0x0180017f, 0x01820181, 0x01840183, 0x01860185, 0x01880187, 0x018a0189, 0x018c018b, 0x018e018d, 0x0190018f,
0x01920191, 0x01940193, 0x01960195, 0x01980197, 0x019a0199, 0x019c019b, 0x019e019d, 0x01a0019f, 0x01a201a1, 0x01a401a3, 0x01a601a5, 0x01a801a7,
0x01aa01a9, 0x01ac01ab, 0x01ae01ad, 0x01b001af, 0x01b201b1, 0x01b401b3, 0x01b601b5, 0x01b801b7, 0x01ba01b9, 0x01bc01bb, 0x01be01bd, 0x01c001bf,
0x01c201c1, 0x01c401c3, 0x01c601c5, 0x01c801c7, 0x01ca01c9, 0x01cc01cb, 0x01ce01cd, 0x01d001cf, 0x01d201d1, 0x01d401d3, 0x01d601d5, 0x01d801d7,
0x01da01d9, 0x01dc01db, 0x01de01dd, 0x01e001df, 0x01e201e1, 0x01e401e3, 0x01e601e5, 0x01e801e7, 0x01ea01e9, 0x01ec01eb, 0x01ee01ed, 0x01f001ef,
0x01f201f1, 0x01f401f3, 0x01f601f5, 0x01f801f7, 0x01fa01f9, 0x01fc01fb, 0x01fe01fd, 0x020002ff, 0x02020201, 0x02040203, 0x02060205, 0x02080207,
0x020a0209, 0x020c020b, 0x020e020d, 0x0210020f, 0x02120211, 0x02140213, 0x02160215, 0x02180217, 0x021a0219, 0x021c021b, 0x021e021d, 0x0220021f,
0x02220221, 0x02240223, 0x02260225, 0x02280227, 0x022a0229, 0x022c022b, 0x022e022d, 0x0230022f, 0x02320231, 0x02340233, 0x02360235, 0x02380237,
0x023a0239, 0x023c023b, 0x023e023d, 0x0240023f, 0x02420241, 0x02440243, 0x02460245, 0x02480247, 0x024a0249, 0x024c024b, 0x024e024d, 0x0250024f,
0x02520251, 0x02540253, 0x02560255, 0x02580257, 0x025a0259, 0x025c025b, 0x025e025d, 0x0260025f, 0x02620261, 0x02640263, 0x02660265, 0x02680267,
0x026a0269, 0x026c026b, 0x026e026d, 0x0270026f, 0x02720271, 0x02740273, 0x02760275, 0x02780277, 0x027a0279, 0x027c027b, 0x027e027d, 0x0280027f,
0x02820281, 0x02840283, 0x02860285, 0x02880287, 0x028a0289, 0x028c028b, 0x028e028d, 0x0290028f, 0x02920291, 0x02940293, 0x02960295, 0x02980297,
0x029a0299, 0x029c029b, 0x029e029d, 0x02a0029f, 0x02a202a1, 0x02a402a3, 0x02a602a5, 0x02a802a7, 0x02aa02a9, 0x02ac02ab, 0x02ae02ad, 0x02b002af,
0x02b202b1, 0x02b402b3, 0x02b602b5, 0x02b802b7, 0x02ba02b9, 0x02bc02bb, 0x02be02bd, 0x02c002bf, 0x02c202c1, 0x02c402c3, 0x02c602c5, 0x02c802c7,
0x02ca02c9, 0x02cc02cb, 0x02ce02cd, 0x02d002cf, 0x02d202d1, 0x02d402d3, 0x02d602d5, 0x02d802d7, 0x02da02d9, 0x02dc02db, 0x02de02dd, 0x02e002df,
0x02e202e1, 0x02e402e3, 0x02e602e5, 0x02e802e7, 0x02ea02e9, 0x02ec02eb, 0x02ee02ed, 0x02f002ef, 0x02f202f1, 0x02f402f3, 0x02f602f5, 0x02f802f7,
0x02fa02f9, 0x02fc02fb, 0x02fe02fd, 0x030003ff, 0x03020301, 0x03040303, 0x03060305, 0x03080307, 0x030a0309, 0x030c030b, 0x030e030d, 0x0310030f,
0x03120311, 0x03140313, 0x03160315, 0x03180317, 0x031a0319, 0x031c031b, 0x031e031d, 0x0320031f, 0x03220321, 0x03240323, 0x03260325, 0x03280327,
0x032a0329, 0x032c032b, 0x032e032d, 0x0330032f, 0x03320331, 0x03340333, 0x03360335, 0x03380337, 0x033a0339, 0x033c033b, 0x033e033d, 0x0340033f,
0x03420341, 0x03440343, 0x03460345, 0x03480347, 0x034a0349, 0x034c034b, 0x034e034d, 0x0350034f, 0x03520351, 0x03540353, 0x03560355, 0x03580357,
0x035a0359, 0x035c035b, 0x035e035d, 0x0360035f, 0x03620361, 0x03640363, 0x03660365, 0x03680367, 0x036a0369, 0x036c036b, 0x036e036d, 0x0370036f,
0x03720371, 0x03740373, 0x03760375, 0x03780377, 0x037a0379, 0x037c037b, 0x037e037d, 0x0380037f, 0x03820381, 0x03840383, 0x03860385, 0x03880387,
0x038a0389, 0x038c038b, 0x038e038d, 0x0390038f, 0x03920391, 0x03940393, 0x03960395, 0x03980397, 0x039a0399, 0x039c039b, 0x039e039d, 0x03a0039f,
0x03a203a1, 0x03a403a3, 0x03a603a5, 0x03a803a7, 0x03aa03a9, 0x03ac03ab, 0x03ae03ad, 0x03b003af, 0x03b203b1, 0x03b403b3, 0x03b603b5, 0x03b803b7,
0x03ba03b9, 0x03bc03bb, 0x03be03bd, 0x03c003bf, 0x03c203c1, 0x03c403c3, 0x03c603c5, 0x03c803c7, 0x03ca03c9, 0x03cc03cb, 0x03ce03cd, 0x03d003cf,
0x03d203d1, 0x03d403d3, 0x03d603d5, 0x03d803d7, 0x03da03d9, 0x03dc03db, 0x03de03dd, 0x03e003df, 0x03e203e1, 0x03e403e3, 0x03e603e5, 0x03e803e7,
0x03ea03e9, 0x03ec03eb, 0x03ee03ed, 0x03f003ef, 0x03f203f1, 0x03f403f3, 0x03f603f5, 0x03f803f7, 0x03fa03f9, 0x03fc03fb, 0x03fe03fd, 0x040004ff,
0x04020401, 0x04040403, 0x04060405, 0x04080407, 0x040a0409, 0x040c040b, 0x040e040d, 0x0410040f, 0x04120411, 0x04140413, 0x04160415, 0x04180417,
0x041a0419, 0x041c041b, 0x041e041d, 0x0420041f, 0x04220421, 0x04240423, 0x04260425, 0x04280427, 0x042a0429, 0x042c042b, 0x042e042d, 0x0430042f,
0x04320431, 0x04340433, 0x04360435, 0x04380437, 0x043a0439, 0x043c043b, 0x043e043d, 0x0440043f, 0x04420441, 0x04440443, 0x04460445, 0x04480447,
0x044a0449, 0x044c044b, 0x044e044d, 0x0450044f, 0x04520451, 0x04540453, 0x04560455, 0x04580457, 0x045a0459, 0x045c045b, 0x045e045d, 0x0460045f,
0x04620461, 0x04640463, 0x04660465, 0x04680467, 0x046a0469, 0x046c046b, 0x046e046d, 0x0470046f, 0x04720471, 0x04740473, 0x04760475, 0x04780477,
0x047a0479, 0x047c047b, 0x047e047d, 0x0480047f, 0x04820481, 0x04840483, 0x04860485, 0x04880487, 0x048a0489, 0x048c048b, 0x048e048d, 0x0490048f,
0x04920491, 0x04940493, 0x04960495, 0x04980497, 0x049a0499, 0x049c049b, 0x049e049d, 0x04a0049f, 0x04a204a1, 0x04a404a3, 0x04a604a5, 0x04a804a7,
0x04aa04a9, 0x04ac04ab, 0x04ae04ad, 0x04b004af, 0x04b204b1, 0x04b404b3, 0x04b604b5, 0x04b804b7, 0x04ba04b9, 0x04bc04bb, 0x04be04bd, 0x04c004bf,
0x04c204c1, 0x04c404c3, 0x04c604c5, 0x04c804c7, 0x04ca04c9, 0x04cc04cb, 0x04ce04cd, 0x04d004cf, 0x04d204d1, 0x04d404d3, 0x04d604d5, 0x04d804d7,
0x04da04d9, 0x04dc04db, 0x04de04dd, 0x04e004df, 0x04e204e1, 0x04e404e3, 0x04e604e5, 0x04e804e7, 0x04ea04e9, 0x04ec04eb, 0x04ee04ed, 0x04f004ef,
0x04f204f1, 0x04f404f3, 0x04f604f5, 0x04f804f7, 0x04fa04f9, 0x04fc04fb, 0x04fe04fd, 0x050005ff, 0x05020501, 0x05040503, 0x05060505, 0x05080507,
0x050a0509, 0x050c050b, 0x050e050d, 0x0510050f, 0x05120511, 0x05140513, 0x05160515, 0x05180517, 0x051a0519, 0x051c051b, 0x051e051d, 0x0520051f,
0x05220521, 0x05240523, 0x05260525, 0x05280527, 0x052a0529, 0x052c052b, 0x052e052d, 0x200b202f, 0x20112010, 0x20142013, 0x20192018, 0x201d201c,
0x20212020, 0x20302026, 0x20332032, 0x203a2039, 0x20a820a4, 0x20aa20a9, 0x20b420ac, 0x21bd20b8, 0x21902122, 0x21922191, 0x21942193, 0x21972195,
0x21bb21ba, 0x221222c4, 0x2303231e, 0x231b2304, 0x23292328, 0x232b232a, 0x23cf2399, 0x23ea23e9, 0x23ee23ed, 0x23f323f1, 0x23f923f8, 0x24fe23fb,
0x25a025bd, 0x25cf25b6, 0x25fb25d0, 0x260026fc, 0x26032601, 0x26112604, 0x261d2615, 0x26222620, 0x26252623, 0x262c262a, 0x262f262e, 0x26392638,
0x2640263f, 0x265a2642, 0x265c265b, 0x265e265d, 0x2665265f, 0x26722666, 0x267b267a, 0x2680267e, 0x26822681, 0x26842683, 0x26932685, 0x26992696,
0x26a0269b, 0x26a226a1, 0x26a426a3, 0x26a626a5, 0x26a826a7, 0x26aa26a9, 0x26b226ab, 0x26be26bd, 0x26c526c4, 0x26df26c6, 0x26ea26e9, 0x26fa26f7,
0x270027fd, 0x27042702, 0x27092705, 0x270b270a, 0x270f270c, 0x27122711, 0x27142713, 0x27162715, 0x2721271d, 0x27442731, 0x274c2746, 0x2753274e,
0x27552754, 0x27642757, 0x27962795, 0x29342997, 0x2b0d2b35, 0x2b1c2b1b, 0xe0502b24, 0xe00de005, 0xe076e041, 0xe098e086, 0xe0a9e09a, 0xe0b4e0ac,
0xe0d8e0b7, 0xe1e4e0df, 0xe13ce131, 0xe152e140, 0xe16de169, 0xe184e17b, 0xe19be18f, 0xe1b0e1a8, 0xe1c4e1bc, 0xe1d3e1c8, 0xe1d7e1d5, 0xe2f6e1ed,
0xe222e209, 0xe289e23d, 0xe2bbe29c, 0xe3cae2c5, 0xe3b2e3af, 0xe43ce4f5, 0xe448e445, 0xe477e46c, 0xe490e47b, 0xf002f0a9, 0xf005f003, 0xf00ef006,
0xf014f013, 0xf016f015, 0xf01af019, 0xf01cf01b, 0xf01ef01d, 0xf040f03e, 0xf045f044, 0xf04ef046, 0xf05cf05b, 0xf05ef05d, 0xf067f066, 0xf069f068,
0xf07ef06e, 0xf086f080, 0xf088f087, 0xf08af089, 0xf08ef08b, 0xf095f091, 0xf097f096, 0xf09ef098, 0xf0a2f0a1, 0xf0b2f0ae, 0xf0d1f0ce, 0xf0e0f0de,
0xf0e4f0e3, 0xf0e6f0e5, 0xf0f4f0ee, 0xf0f6f0f5, 0xf1fef0f7, 0xf108f107, 0xf10cf10b, 0xf111f10e, 0xf114f112, 0xf11cf115, 0xf11ef11d, 0xf123f122,
0xf128f127, 0xf12af129, 0xf135f12e, 0xf13ef13a, 0xf147f146, 0xf154f14e, 0xf159f155, 0xf165f15e, 0xf183f178, 0xf18ef188, 0xf193f190, 0xf196f195,
0xf199f197, 0xf1aef19d, 0xf1b1f1b0, 0xf1bbf1b3, 0xf1cef1c9, 0xf1d9f1d8, 0xf1dbf1da, 0xf1e6f1de, 0xf1f6f1ec, 0xf1f9f1f7, 0xf2fef1fa, 0xf207f201,
0xf21ef20b, 0xf236f22d, 0xf249f239, 0xf24ef24a, 0xf25df250, 0xf277f26c, 0xf27af278, 0xf283f27b, 0xf28cf28b, 0xf28ef28d, 0xf292f291, 0xf29af295,
0xf29ef29c, 0xf2a8f2a4, 0xf2b7f2b6, 0xf2baf2b9, 0xf2bcf2bb, 0xf2bef2bd, 0xf2c2f2c0, 0xf2cef2c3, 0xf2d4f2d3, 0xf2e5f2dc, 0xf2eaf2e7, 0xf2f2f2ed,
0xf2f9f2f6, 0xf305f3fe, 0xf31ef30c, 0xf332f328, 0xf35bf338, 0xf360f35d, 0xf381f363, 0xf387f382, 0xf3a5f390, 0xf3c1f3bf, 0xf3c9f3c5, 0xf3d1f3ce,
0xf3e0f3dd, 0xf3edf3e5, 0xf3fdf3fb, 0xf406f4ff, 0xf422f410, 0xf434f424, 0xf43af436, 0xf43ff43c, 0xf443f441, 0xf447f445, 0xf44ef44b, 0xf453f450,
0xf45df458, 0xf462f45f, 0xf46df466, 0xf474f472, 0xf47df479, 0xf482f47f, 0xf48bf487, 0xf494f48e, 0xf49ef497, 0xf4adf4a1, 0xf4baf4b3, 0xf4c2f4be,
0xf4cef4c4, 0xf4dbf4d3, 0xf4e3f4df, 0xf509f5e6, 0xf52cf52b, 0xf531f530, 0xf536f535, 0xf541f540, 0xf59df591, 0xf5a7f5a2, 0xf5b4f5b1, 0xf5bdf5b8,
0xf5cbf5c5, 0xf5d2f5ce, 0xf5daf5d7, 0xf5dff5dc, 0xf5e4f5e1, 0xf5ebf5e7, 0xf6fdf5ee, 0xf604f601, 0xf613f610, 0xf61ff619, 0xf625f621, 0xf630f62a,
0xf63cf637, 0xf644f641, 0xf64af647, 0xf651f64f, 0xf658f655, 0xf662f65e, 0xf66bf666, 0xf66ff66d, 0xf676f674, 0xf67cf679, 0xf684f67f, 0xf696f689,
0xf6a1f69b, 0xf6a9f6a7, 0xf6b7f6ad, 0xf6bef6bb, 0xf6c4f6c0, 0xf6d1f6cf, 0xf6d5f6d3, 0xf6d9f6d7, 0xf6e3f6de, 0xf6e8f6e6, 0xf6f2f6ed, 0xf7fcf6fa,
0xf70cf700, 0xf715f70e, 0xf71ef717, 0xf729f722, 0xf72ff72b, 0xf740f73d, 0xf747f743, 0xf753f74d, 0xf75bf756, 0xf769f75f, 0xf773f76b, 0xf781f77d,
0xf788f784, 0xf794f78c, 0xf79cf796, 0xf7a2f7a0, 0xf7abf7a6, 0xf7b6f7ae, 0xf7bdf7ba, 0xf7c2f7c0, 0xf7caf7c5, 0xf7d0f7ce, 0xf7daf7d2, 0xf7ecf7e6,
0xf7f2f7ef, 0xf7f7f7f5, 0xf802f8fb, 0xf80af807, 0xf80cf80b, 0xf810f80d, 0xf816f812, 0xf82af818, 0xf83ef82f, 0xf84cf84a, 0xf853f850, 0xf86df863,
0xf87df879, 0xf887f882, 0xf897f891, 0xf8ccf8c1, 0xf8e5f8d9, 0x00ffffff, 0x00200000, 0x4e230022, 0x2a2008d5, 0x2608d54e, 0x003a0030, 0x103c003b,
0xfe0ad50e, 0x85e05924, 0xd54e97e0, 0xe1e3240e, 0x4e39e131, 0x9a200ed5, 0x2016d54e, 0x0ed54e21, 0xd54eb120, 0xe4473606, 0xe476e46c, 0xe490e47a,
0xf000f0a8, 0xf004f003, 0xf007f006, 0x06d54e10, 0xd54e1720, 0xf0212c0a, 0xf041f040, 0xf046f045, 0x4e50f047, 0x602006d5, 0x2606d54e, 0xf070f06a,
0x4e83f080, 0x8d240ad5, 0x93f090f0, 0x3206d54e, 0xf0a0f09c, 0xf0a3f0a2, 0xf0c0f0b0, 0xf0d6f0d0, 0x4ee2f0e0, 0xe72306d5, 0x4ef0f0f0, 0xf82c05d5,
0x08f100f1, 0x0cf109f1, 0x10f10df1, 0x2a06d54e, 0xf11df118, 0xf120f11e, 0x4e24f123, 0x220806d5, 0xf130f12b, 0xf13df137, 0xf147f140, 0xf150f148,
0xf156f155, 0xf160f15b, 0xf182f175, 0xf18ef185, 0x4e91f190, 0x9c2e08d5, 0xb0f1abf1, 0xb2f1b1f1, 0xc0f1b8f1, 0xd54ecdf1, 0xdc2e0808, 0xeaf1e0f1,
0xf7f1f6f1, 0xfaf1f8f1, 0x00f2fbf1, 0x0af204f2, 0x21f217f2, 0x38f233f2, 0x4af240f2, 0x50f24df2, 0x6cf251f2, 0x78f271f2, 0xd54e79f2, 0x4e90200c,
0x9d2608d5, 0xa7f2a0f2, 0xd54eb4f2, 0xf2c12a10, 0xf2c7f2c3, 0xf2d4f2d0, 0x08d54edb, 0xf5f2f12a, 0xfef2f9f2, 0x09f302f3, 0x3406d54e, 0xf358f337,
0xf360f35d, 0xf381f362, 0xf386f382, 0xf3a5f390, 0x06d54ebe, 0xd54ecd20, 0x4efa200a, 0x32240cd5, 0x39f436f4, 0x3e16d54e, 0xf45ff45c, 0xf466f461,
0xf470f468, 0xf477f474, 0xf47ef47d, 0xf484f481, 0xf48df48b, 0x4e96f490, 0x3c0808d5, 0xf4bdf4b8, 0xf4c4f4c0, 0xf4d3f4cd, 0xf4def4d6, 0xf4e6f4e2,
0xf515f5fa, 0xf52df52c, 0xf532f531, 0xf537f536, 0xf542f541, 0xf59ff593, 0xf5aaf5a4, 0xf5b6f5b3, 0xf5bff5ba, 0xf5cdf5c7, 0x06d54ed0, 0xd54ede20,
0x4efc200a, 0x24280ed5, 0x2ef629f6, 0x3bf637f6, 0x2a0cd54e, 0xf658f653, 0xf662f65d, 0x4e69f664, 0x782e08d5, 0x7ff67bf6, 0x87f681f6, 0x98f696f6,
0xd54ea0f6, 0x4eb62006, 0xc32006d5, 0x360cd54e, 0xf6e2f6dd, 0xf6e8f6e6, 0xf6f0f6ec, 0xf6fcf6fa, 0xf70bf7ff, 0x4e14f70e, 0x282606d5, 0x2ef72bf7,
0xd54e3bf7, 0x5a3a080c, 0x69f75ef7, 0x72f76bf7, 0x80f77cf7, 0x86f783f7, 0x93f78cf7, 0x9cf796f7, 0xa2f79ff7, 0xa9f7a4f7, 0xb5f7adf7, 0xbdf7b9f7,
0xc2f7bff7, 0xc9f7c4f7, 0xd0f7ccf7, 0xd7f7d2f7, 0xd54ee4f7, 0xf8fa240a, 0x4e05f802, 0x0f2808d5, 0x15f812f8, 0x28f818f8, 0x2a12d54e, 0xf881f87b,
0xf891f884, 0x4ec0f897, 0xff2609d5, 0xff0000e1, 0x008600e0, 0x00dcff25, 0x83dbff00, 0xd9ff210c, 0xd7200584, 0x00100583, 0x21a50903, 0x091027e0,
0x084b01a7, 0x202e206f, 0x1ff41f27, 0x1fcf1fdd, 0x1fbe1fbf, 0x1fae1fb0, 0x1fa51fa7, 0x1f7f1f85, 0x1f301f7c, 0x1f261f29, 0x1eff1e15, 0x1eef1efc,
0x1edd1ee7, 0x1ec71ed3, 0x1eb51ec0, 0x1eab1eae, 0x1ea01ea1, 0x1e8a1e9f, 0x1e701e82, 0x1d3f1e59, 0x1de21df4, 0x1dbb1dc4, 0x1cd31cb7, 0x1c901cd2,
0x1c421c4a, 0x1c1e1c41, 0x1b131c15, 0x10e81bff, 0x10000092, 0x22038291, 0x828f1090, 0x828e2005, 0x008d2103, 0x10270082, 0x1000008b, 0x8288108a,
0x82862005, 0x1000240e, 0x84831084, 0x10812607, 0x10000080, 0x2603827f, 0x107d107e, 0x847a107c, 0x00782a15, 0x10771000, 0x10751076, 0x340f8474,
0x106f1072, 0x1000006e, 0x106c106d, 0x105e105f, 0x1059105a, 0x82198358, 0x10552213, 0x22098654, 0x82501051, 0x824f200f, 0x104e2203, 0x2013864d,
0x220d8247, 0x82451046, 0x82442005, 0x82432003, 0x10422803, 0x10401041, 0x823d103e, 0x103c220b, 0x2a05823b, 0x1039103a, 0x10291038, 0x831f1020,
0x17102f35, 0x00001610, 0x14101510, 0x05101210, 0x0b820410, 0xff0f032c, 0xf80ffb0f, 0x0000ef0f, 0x0382ee0f, 0xec0fed26, 0xe00fe90f, 0xdf200982,
0xde300382, 0xdb0fdd0f, 0xce0fd90f, 0xc70fcc0f, 0xc00fc60f, 0xbd201382, 0xbb240382, 0xa90fad0f, 0xa8200782, 0x0f255583, 0x0f000098, 0x20038297,
0x2a0d8495, 0x0f00008d, 0x0f8a0f8b, 0x827d0f88, 0x827b2009, 0x827a2003, 0x84792003, 0x0076261b, 0x0f720f00, 0x38058271, 0x0f620f6a, 0x0f5f0f61,
0x0f5a0f5d, 0x0f560f58, 0x0f4f0f52, 0x0f3b0f4c, 0x281b8232, 0x0f050f24, 0x0f020f04, 0x08338301, 0x0edf0e53, 0x0ec30ed7, 0x0eaa0eab, 0x0ea40ea7,
0x0e9f0ea1, 0x0e920e94, 0x0e870e8e, 0x0e00007b, 0x0e720e78, 0x0e580e69, 0x0e4a0e57, 0x0e470e49, 0x0e440e46, 0x0e420e43, 0x0e400e41, 0x0e3b0e3d,
0x0e380e3a, 0x0e310e34, 0x0e2f0e30, 0x0e2b0e2c, 0x0e280e29, 0x2e378226, 0x0e210e22, 0x0e1d0e20, 0x0e1b0e1c, 0x82140e1a, 0x0e063a11, 0x0dfd0d01,
0x0dfa0dfb, 0x0df10df9, 0x0deb0ded, 0x00e70de9, 0x0dd10d00, 0x200582c6, 0x200382c5, 0x200382c4, 0x090382c3, 0xc10dc20d, 0xbf0dc00d, 0xbc0dbd0d,
0xba0dbb0d, 0xb80db90d, 0xb60db70d, 0xb00db20d, 0xae0daf0d, 0xab0dad0d, 0xa60da90d, 0x970da40d, 0x920d940d, 0x850d870d, 0x7b0d800d, 0x780d7a0d,
0x720d750d, 0x690d6c0d, 0x630d650d, 0x5f0d610d, 0x5a0d5b0d, 0x570d590d, 0x500d530d, 0x4d0d4f0d, 0x4b0d4c0d, 0x460d470d, 0x440d450d, 0x410d420d,
0x330d3f0d, 0x2e0d320d, 0x280d290d, 0x1d0d250d, 0x180d1a0d, 0x150d170d, 0x0a0d0b0d, 0x080d090d, 0x060d070d, 0x000d030d, 0xfd0cfe0c, 0xf80cfa0c,
0xf00cf10c, 0xe40cee0c, 0xde0ce30c, 0xd70cdd0c, 0xcf0cd40c, 0xcc0cce0c, 0xbf0cc10c, 0xba0cbd0c, 0xb00cb50c, 0xab0cae0c, 0xa00ca90c, 0x990c9f0c,
0x8f0c910c, 0x8d0c8e0c, 0x840c8a0c, 0x7e0c830c, 0x7b0c7c0c, 0x780c7a0c, 0x710c770c, 0x6d0c6f0c, 0x6b0c6c0c, 0x670c6a0c, 0x650c660c, 0x600c640c,
0x520c570c, 0x4e0c500c, 0x4b0c4c0c, 0x430c490c, 0x8400410c, 0x0c370800, 0x0c3b0c3c, 0x0c380c3a, 0x0c280c37, 0x0c160c24, 0x0c0a0c0b, 0x0b050c07,
0x0bed0bf6, 0x0be10be2, 0x0bdd0bde, 0x0bcf0bd4, 0x0b9d0ba7, 0x0b000091, 0x0001006c, 0x821c0f00, 0x0f182603, 0x0f140f16, 0x20098212, 0x2203820e,
0x82080f0a, 0x0f043205, 0x0e000002, 0x0efc0efe, 0x0ef80efa, 0x0ef40ef6, 0x0801b4be, 0xba0ebc4c, 0xb60eb80e, 0xb20eb40e, 0xae0eb00e, 0xaa0eac0e,
0xa60ea80e, 0xa20ea40e, 0x9e0ea00e, 0x9a0e9c0e, 0x960e980e, 0x920e940e, 0x8e0e900e, 0x8a0e8c0e, 0x860e880e, 0x820e840e, 0x7e0e800e, 0x7a0e7c0e,
0x760e780e, 0x720e740e, 0x8f82700e, 0x03826c20, 0x660e683e, 0x160f640e, 0xcc0e600e, 0x5a0e5c0e, 0x560e380f, 0x520e540e, 0x4e0e500e, 0x4a0e4c0e,
0x4626ad82, 0x420e440e, 0x6f82400e, 0x0e3c3408, 0x0e380e3a, 0x0e340e36, 0x0e300e32, 0x0e2c0e2e, 0x0e280e2a, 0x0e240e26, 0x0e200e22, 0x0e1c0e1e,
0x0e180e1a, 0x0e140e16, 0x0e100e12, 0x0e0c0e0e, 0x82080e0a, 0x04b0090b, 0x000e020e, 0xfc0dfe0d, 0xf80dfa0d, 0xf40df60d, 0xf00df20d, 0xec0dee0d,
0xe80dea0d, 0xe40de60d, 0xe00de20d, 0xdc0dde0d, 0xd80dda0d, 0xd40dd60d, 0xd00dd20d, 0xcc0dce0d, 0xc80dca0d, 0xc40d060f, 0xc00dc20d, 0xbc0dbe0d,
0xb80dba0d, 0xb40db60d, 0xb00db20d, 0xac0dae0d, 0xa80daa0d, 0xa40da60d, 0xa00da20d, 0x9c0d9e0d, 0x980d9a0d, 0x940d960d, 0x900d920d, 0x8c0d8e0d,
0x880d8a0d, 0x840d860d, 0x800d820d, 0x7c0d7e0d, 0x780d7a0d, 0x740d760d, 0x700d720d, 0x6c0d6e0d, 0x680d6a0d, 0x640d660d, 0x600d620d, 0x5c0d5e0d,
0x580d5a0d, 0x540d560d, 0x500d520d, 0x4c0d4e0d, 0x480d4a0d, 0x440d460d, 0x400d420d, 0x3c0d3e0d, 0x380d3a0d, 0x340d360d, 0x300d320d, 0x2c0d2e0d,
0x280d2a0d, 0x240d260d, 0x200d220d, 0x1c0d1e0d, 0x180d1a0d, 0x140d160d, 0x100d120d, 0x0c0d0e0d, 0x080d0a0d, 0x040d060d, 0x000d020d, 0xfc0cfe0c,
0xf80cfa0c, 0xf40cf60c, 0xf00cf20c, 0xec0cee0c, 0xe80cea0c, 0xe40ce60c, 0xe00ce20c, 0xdc0cde0c, 0xd80cda0c, 0xd40cd60c, 0xd00cd20c, 0xcc0cce0c,
0xc80cca0c, 0xc40cc60c, 0xc00cc20c, 0xbc0cbe0c, 0xb80cba0c, 0xb40cb60c, 0xb00cb20c, 0xac0cae0c, 0xa80caa0c, 0xa40ca60c, 0xa00ca20c, 0x9c0c9e0c,
0x980c9a0c, 0x940c960c, 0x900c920c, 0x8c0c8e0c, 0x880c8a0c, 0x840c860c, 0x800c820c, 0x7c0c7e0c, 0x780c7a0c, 0x740c760c, 0x700c720c, 0x6c0c6e0c,
0x680c6a0c, 0x640c660c, 0x600c620c, 0x5c0c5e0c, 0x580c5a0c, 0x540c560c, 0x0e081543, 0x480c4afa, 0x440c460c, 0x400c420c, 0x3c0c3e0c, 0x380c3a0c,
0x340c360c, 0x300c320c, 0x2c0c2e0c, 0x280c2a0c, 0x240c260c, 0x200c220c, 0x1c0c1e0c, 0x180c1a0c, 0x140c160c, 0x100c120c, 0x0c0c0e0c, 0x080c0a0c,
0x040c060c, 0x000c020c, 0xfc0bfe0b, 0xf80bfa0b, 0xf40bf60b, 0xf00bf20b, 0xec0bee0b, 0xe80bea0b, 0xe40be60b, 0xe00be20b, 0xdc0bde0b, 0xd80bda0b,
0xd40bd60b, 0xd00bd20b, 0xcc0bce0b, 0xc80bca0b, 0xc40bc60b, 0xc00bc20b, 0xbc0bbe0b, 0xb80bba0b, 0xb40bb60b, 0xb00bb20b, 0xac0bae0b, 0xa80baa0b,
0xa40ba60b, 0xa00ba20b, 0x9c0b9e0b, 0x980b9a0b, 0x940b960b, 0x900b920b, 0x8c0b8e0b, 0x880b8a0b, 0x840b860b, 0x800b820b, 0x7c0b7e0b, 0x780b7a0b,
0x740b760b, 0x700b720b, 0x6c0b6e0b, 0x680b6a0b, 0x640b660b, 0x600b620b, 0x5c0b5e0b, 0x580b5a0b, 0x540b560b, 0x500b520b, 0x4c0b4e0b, 0x480b4a0b,
0x440b460b, 0x400b420b, 0x3c0b3e0b, 0x380b3a0b, 0x340b360b, 0x300b320b, 0x2c0b2e0b, 0x280b2a0b, 0x240b260b, 0x200b220b, 0x1c0b1e0b, 0x180b1a0b,
0x140b160b, 0x100b120b, 0x0c0b0e0b, 0x080b0a0b, 0x040b060b, 0x000b020b, 0xfc0afe0a, 0xf80afa0a, 0xf40af60a, 0xf00af20a, 0xec0aee0a, 0xe80aea0a,
0xe40ae60a, 0xe00ae20a, 0xdc0ade0a, 0xd80ada0a, 0xd40ad60a, 0xd00ad20a, 0xcc0ace0a, 0xc80aca0a, 0xc40ac60a, 0xc00ac20a, 0xbc0abe0a, 0xb80aba0a,
0xb40ab60a, 0xb00ab20a, 0xac0aae0a, 0xa80aaa0a, 0xa40aa60a, 0xa00aa20a, 0x9c0a9e0a, 0x980a9a0a, 0x940a960a, 0x900a920a, 0x8c0a8e0a, 0x880a8a0a,
0x840a860a, 0x800a820a, 0x7c0a7e0a, 0x780a7a0a, 0x740a760a, 0x700a720a, 0x6c0a6e0a, 0x680a6a0a, 0x640a660a, 0x600a620a, 0x5c0a5e0a, 0x580a5a0a,
0x540a560a, 0x500a520a, 0x4c0a4e0a, 0x480a4a0a, 0x440a460a, 0x400a420a, 0x3c0a3e0a, 0x380a3a0a, 0x340a360a, 0x300a320a, 0x2c0a2e0a, 0x280a2a0a,
0x240a260a, 0x200a220a, 0x1c0a1e0a, 0x180a1a0a, 0x140a160a, 0x100a120a, 0x0c0a0e0a, 0x080a0a0a, 0x040a060a, 0x000a020a, 0xfc09fe09, 0xf809fa09,
0xf409f609, 0xf009f209, 0xec09ee09, 0xe809ea09, 0xe409e609, 0xe009e209, 0xdc09de09, 0xd809da09, 0xd409d609, 0xd009d209, 0xcc09ce09, 0xc809ca09,
0xc409c609, 0xc009c209, 0xbc09be09, 0xb809ba09, 0xb409b609, 0xb009b209, 0xac09ae09, 0xa809aa09, 0xa409a609, 0xa009a209, 0x9c099e09, 0x98099a09,
0x94099609, 0x90099209, 0x8c098e09, 0x88098a09, 0x84098609, 0x80098209, 0x7c097e09, 0x78097a09, 0x74097609, 0x70097209, 0x6c096e09, 0x68096a09,
0x64096609, 0x60096209, 0x5c095e09, 0x58095a09, 0x54095609, 0x50095209, 0x4c094e09, 0x48094a09, 0x44094609, 0x40094209, 0x3c093e09, 0x38093a09,
0x34093609, 0x30093209, 0x2c092e09, 0x28092a09, 0x24092609, 0x20092209, 0x1c091e09, 0x18091a09, 0x14091609, 0x10091209, 0x0c090e09, 0x08090a09,
0x04090609, 0x00090209, 0xfc08fe08, 0xf808fa08, 0xf408f608, 0xf008f208, 0xec08ee08, 0xe808ea08, 0xe408e608, 0xe008e208, 0xdc08de08, 0xd808da08,
0xd408d608, 0xd008d208, 0xcc08ce08, 0xc808ca08, 0xc408c608, 0xc008c208, 0xbc08be08, 0xb808ba08, 0xb408b608, 0xb008b208, 0xac08ae08, 0xa808aa08,
0xa408a608, 0xa008a208, 0x9c089e08, 0x98089a08, 0x94089608, 0x90089208, 0x8c088e08, 0x88088a08, 0x84088608, 0x80088208, 0x7c087e08, 0x78087a08,
0x74087608, 0x70087208, 0x6c086e08, 0x68086a08, 0x64086608, 0x60086208, 0x5c085e08, 0x58085a08, 0x54085608, 0x50085208, 0x4c084e08, 0x48084a08,
0x44084608, 0x40084208, 0x3c083e08, 0x38083a08, 0x34083608, 0x30083208, 0x2c082e08, 0x28082a08, 0x24082608, 0x20082208, 0x1c081e08, 0x18081a08,
0x14081608, 0x10081208, 0x0c080e08, 0x08080a08, 0x04080608, 0x00080208, 0xfc07fe07, 0xf807fa07, 0xf407f607, 0xf007f207, 0xec07ee07, 0xe807ea07,
0xe407e607, 0xe007e207, 0xdc07de07, 0xd807da07, 0xd407d607, 0xd007d207, 0xcc07ce07, 0xc807ca07, 0xc407c607, 0xc007c207, 0xbc07be07, 0xb807ba07,
0xb407b607, 0xb007b207, 0xac07ae07, 0xa807aa07, 0xa407a607, 0xa007a207, 0x9c079e07, 0x98079a07, 0x94079607, 0x90079207, 0x8c078e07, 0x88078a07,
0x84078607, 0x80078207, 0x7c077e07, 0x78077a07, 0x74077607, 0x70077207, 0x6c076e07, 0x68076a07, 0x64076607, 0x60076207, 0x5c075e07, 0x58075a07,
0x54075607, 0x50075207, 0x4c074e07, 0x48074a07, 0x44074607, 0x40074207, 0x3c073e07, 0x38073a07, 0x34073607, 0x30073207, 0x2c072e07, 0x28072a07,
0x24072607, 0x20072207, 0x1c071e07, 0x18071a07, 0x14071607, 0x10071207, 0x0c070e07, 0x08070a07, 0x04070607, 0x00070207, 0xfc06fe06, 0xf806fa06,
0xf406f606, 0xf006f206, 0xec06ee06, 0xe806ea06, 0xe406e606, 0xe006e206, 0xdc06de06, 0xd806da06, 0xd406d606, 0xd006d206, 0xcc06ce06, 0xc806ca06,
0xc406c606, 0xc006c206, 0xbc06be06, 0xb806ba06, 0xb406b606, 0xb006b206, 0xac06ae06, 0xa806aa06, 0xa406a606, 0xa006a206, 0x9c069e06, 0x98069a06,
0x94069606, 0x90069206, 0x8c068e06, 0x88068a06, 0x84068606, 0x80068206, 0x7c067e06, 0x78067a06, 0x74067606, 0x70067206, 0x6c066e06, 0x68066a06,
0x64066606, 0x60066206, 0x5c065e06, 0x58065a06, 0x54065606, 0x50065206, 0x4c064e06, 0x48064a06, 0x44064606, 0x40064206, 0x3c063e06, 0x38063a06,
0x34063606, 0x30063206, 0x2c062e06, 0x28062a06, 0x24062606, 0x20062206, 0x1c061e06, 0x18061a06, 0x14061606, 0x10061206, 0x0c060e06, 0x08060a06,
0x04060606, 0x00060206, 0xfc05fe05, 0xf805fa05, 0xf405f605, 0xf005f205, 0xec05ee05, 0xe805ea05, 0xe405e605, 0xe005e205, 0xdc05de05, 0xd805da05,
0xd405d605, 0xd005d205, 0xcc05ce05, 0xc805ca05, 0xc405c605, 0xc005c205, 0xbc05be05, 0xb805ba05, 0xb405b605, 0xb005b205, 0xac05ae05, 0xa805aa05,
0xa405a605, 0xa005a205, 0x9c059e05, 0x98059a05, 0x94059605, 0x90059205, 0x8c058e05, 0x88058a05, 0x84058605, 0x80058205, 0x7c057e05, 0x78057a05,
0x74057605, 0x70057205, 0x6c056e05, 0x68056a05, 0x64056605, 0x60056205, 0x5c055e05, 0x58055a05, 0x00005605, 0x50055205, 0x4c244182, 0x48054a05,
0xc02c7982, 0x40054205, 0x3c053e05, 0x38053a05, 0xa8207182, 0xc220a582, 0xe22a9782, 0x9206b805, 0xba05a206, 0x39820006, 0x3b825c20, 0x1c065a22,
0x24200182, 0x03835d82, 0x4e064e22, 0x7e207582, 0x8434d582, 0x30053005, 0x14054206, 0x20052605, 0x1e051605, 0xee051005, 0x1028d782, 0xf4041005,
0x10068805, 0x02245782, 0xf8045a05, 0x2e202782, 0x2626a182, 0x3e064a06, 0x03825605, 0x32061a2c, 0x34063a06, 0x1a061206, 0x01821406, 0x0c061a24,
0x5f823405, 0xbb826a20, 0xd005cc22, 0xc4200182, 0xc6288982, 0x5605a404, 0x44054605, 0xda21a982, 0x20178305, 0x205d82cc, 0x200382c0, 0x2655820c,
0x04ce0594, 0x82de04c4, 0x824020c3, 0x82362003, 0x823420c9, 0x043c24cb, 0x82e804ea, 0x05162477, 0x82dc0580, 0x04cc3443, 0x05ba05b6, 0x05ce058a,
0x049405b8, 0x04a404a6, 0x82d404a2, 0x82ae2057, 0x821e20ad, 0x05882657, 0x04440484, 0x3c018242, 0x05860540, 0x05ec038e, 0x04220524, 0x031c0534,
0x03ea03ec, 0x04d403d6, 0x04da0320, 0x2287825a, 0x8226052a, 0x053827e3, 0x04880436, 0x00ea000e, 0x00f60325, 0x839c0300, 0x8e042570, 0x26040000,
0x90220382, 0x05829404, 0x82000821, 0x7e042600, 0x04040000, 0x82098204, 0x03a42225, 0x250883a4, 0x00002803, 0x09832203, 0x03260383, 0x00f803f8,
0xb14e0300, 0x22098206, 0x836003a2, 0x20098217, 0x870785a8, 0x80042505, 0x78037403, 0x04250d83, 0x03c00322, 0x200984ca, 0x2027822e, 0x22098496,
0x8358032a, 0x20032145, 0x03250d83, 0x02000052, 0x200382c8, 0x850d83b2, 0x203b8503, 0x85838402, 0x00002511, 0xe403e803, 0x03210b83, 0x85058340,
0xc2032103, 0x17840785, 0x00006824, 0x09833603, 0x99830383, 0x83740221, 0x20038d09, 0x20258303, 0x2713856a, 0x00006e03, 0xd402b603, 0x66200582,
0x64200382, 0x30228382, 0x05823202, 0x1f85aa20, 0x03000023, 0x82038254, 0x5003219f, 0x4e220782, 0x05826202, 0x1b834a20, 0x41860320, 0x038f0b83,
0x2b820220, 0x02231387, 0x878c028c, 0x2107930b, 0x15935603, 0x022113a1, 0x21238f3a, 0x118fea02, 0x02210f85, 0x20078390, 0x20db8201, 0x24bd8201,
0x00005a01, 0x839f8a01, 0x0300101b, 0x96240001, 0x92008400, 0x212d0541, 0x2f843201, 0x00022e08, 0x00040003, 0x00060005, 0x00130007, 0x00150014,
0x00170016, 0x00190018, 0x001b001a, 0x001d001c, 0x001f001e, 0x00210020, 0x00230022, 0x0a7d7b24, 0x2b002a22, 0x240aa96c, 0x00320031, 0x060b7b82,
0x9d009c2c, 0xa200a000, 0xa800a300, 0xdd7aac00, 0x7ac82006, 0xb57a0eb7, 0x05b17a05, 0x3f07ab7a, 0x00ee00e7, 0x00f800f2, 0x010001f9, 0x010c0101,
0x01210113, 0x01270123, 0x0139012f, 0x013c013a, 0x2205117a, 0x79490147, 0x542006ff, 0x3206fb79, 0x015c015b, 0x0160015e, 0x017b0163, 0x01830181,
0x79890186, 0x9c3a10a3, 0xa4019d01, 0xab01a501, 0xb701b201, 0xca01c701, 0xd601cf01, 0xe401d801, 0x1179e701, 0x09022917, 0x0e020b02, 0x11020f02,
0x2608e178, 0x02230221, 0x78310224, 0x382208b7, 0x9d784402, 0x024a2406, 0x7852024c, 0x622e0c7f, 0x69026702, 0x73026a02, 0x7d027902, 0x4b788102,
0x028d280a, 0x02a00293, 0x77e302b3, 0x3d080e93, 0x03f802f4, 0x0369031c, 0x0388036a, 0x039f039d, 0x03ad03a7, 0x03b903ae, 0x03cb03c0, 0x03cf03cc,
0x03d503d2, 0x03e103d9, 0x03f203ea, 0x040304fe, 0x0427040f, 0x04300429, 0x00370435, 0x0082000c, 0x82d06621, 0x21028204, 0x04829008, 0x03822020,
0x03822120, 0x03820120, 0x03862220, 0x07823220, 0x03822320, 0x03822520, 0x03820320, 0x03862620, 0x27201783, 0x03830b82, 0x28200b83, 0x03830b82,
0x29200b83, 0x03830b82, 0x2a200b83, 0x2b200b82, 0x06200382, 0x2c200382, 0x17830386, 0x0b822d20, 0x08200383, 0x2e200782, 0x17830386, 0x0b822f20,
0x0b830383, 0x0b823020, 0x03823920, 0x03820920, 0x03863a20, 0x07823220, 0x03863b20, 0x3c200b83, 0x5a200b82, 0x13200382, 0x5b200382, 0x17830386,
0x0b825c20, 0x0b830383, 0x0b825d20, 0x0b830383, 0x0b825e20, 0x0b830383, 0x0b825f20, 0x0b830383, 0x0b826020, 0x0b830383, 0x0b826120, 0x18200383,
0x62200782, 0x19200386, 0x63200782, 0x1a200386, 0x64200782, 0x1b200386, 0x65200782, 0x1c200386, 0x66200782, 0x1d200386, 0x67200782, 0x1e200386,
0x68200782, 0x1f200386, 0x69200782, 0x20200386, 0x6a200782, 0x21200386, 0x6b200782, 0x22200386, 0x6c200782, 0x23200386, 0x6d200782, 0x24200386,
0x6e200782, 0x25200386, 0x6f200782, 0x26200386, 0x70200782, 0x27200386, 0x71200782, 0x28200386, 0x72200782, 0x29200386, 0x73200782, 0x2a200386,
0x74200782, 0x2b200386, 0x75200782, 0x2c200386, 0x76200782, 0x2d200386, 0x77200782, 0x2e200386, 0x78200782, 0x2f200386, 0x79200782, 0x30200386,
0x7a200782, 0x31200386, 0x7b200782, 0x32200386, 0x7c200782, 0x0b830386, 0x0b827d20, 0x0b830383, 0x0b827e20, 0x0b830383, 0x0b827f20, 0x0b830383,
0x0b828020, 0x0b830383, 0x0b828120, 0x0b830383, 0x0b828220, 0x0b830383, 0x0b828320, 0x0b830383, 0x0b828420, 0x0b830383, 0x0b828520, 0x0b830383,
0x0b828620, 0x0b830383, 0x0b828720, 0x0b830383, 0x0b828820, 0x0b830383, 0x0b828920, 0x0b830383, 0x0b828a20, 0x0b830383, 0x0b828b20, 0x0b830383,
0x0b828c20, 0x0b830383, 0x0b828d20, 0x0b830383, 0x0b828e20, 0x0b830383, 0x0b828f20, 0x0b830383, 0x0b829020, 0x0b830383, 0x0b829120, 0x0b830383,
0x0b829220, 0x0b830383, 0x0b829320, 0x0b830383, 0x0b829420, 0x0b830383, 0x0b829520, 0x0b830383, 0x0b829620, 0x0b830383, 0x0b829720, 0x0b830383,
0x0b829820, 0x0b830383, 0x0b829920, 0x0b830383, 0x0b829a20, 0x0b830383, 0x0b829b20, 0x0b830383, 0x0b829c20, 0x0b830383, 0x0b829d20, 0x0b830383,
0x0b829e20, 0x0b830383, 0x0b829f20, 0x0b830383, 0x0b82a020, 0x0b830383, 0x0b82a120, 0x0b830383, 0x0b82a220, 0x0b830383, 0x0b82a320, 0x01200382,
0xa420f383, 0x03830b82, 0xa5201783, 0x03820b82, 0x82910121, 0x86a62007, 0x20178303, 0x830b82a7, 0x200b8303, 0x830b82a8, 0x200b8303, 0x820b82a9,
0xd8012103, 0xaa200782, 0x17830386, 0x0b82ab20, 0x01210382, 0x20078250, 0x830386ac, 0x82ad2017, 0x8303830b, 0x82ae200b, 0x2103820b, 0x07821802,
0x0386af20, 0xb0201783, 0x03830b82, 0xb1200b83, 0x03830b82, 0xb2200b83, 0x03830b82, 0xb3200b83, 0x03830b82, 0xb4200b83, 0x03830b82, 0xb5200b83,
0x03830b82, 0xb6200b83, 0x03820b82, 0x82ca0121, 0x86b72007, 0x20178303, 0x830b82b8, 0x200b8303, 0x830b82b9, 0x200b8303, 0x830b82ba, 0x200b8303,
0x820b82bb, 0x51012103, 0xbc200782, 0x17830386, 0x0b82bd20, 0x0b830383, 0x0b82be20, 0x0b830383, 0x0b82bf20, 0x0b830383, 0x0b82c020, 0x0b830383,
0x0b82c120, 0x0b830383, 0x0b82c220, 0x0b830383, 0x0b82c320, 0x0b830383, 0x0b82c420, 0x0b830383, 0x0b82c520, 0x0b830383, 0x0b82c620, 0x0b830383,
0x0b82c720, 0x0b830383, 0x0b82c820, 0x0b830383, 0x0b82c920, 0x0b830383, 0x0b82ca20, 0x0b830383, 0x0b82cb20, 0x0b830383, 0x0b82cc20, 0x0b830383,
0x0b82cd20, 0x0b830383, 0x0b82ce20, 0x0b830383, 0x0b82cf20, 0x0b830383, 0x0b82d020, 0x0b830383, 0x0b82d120, 0x0b830383, 0x0b82d220, 0x0b830383,
0x0b82d320, 0x0b830383, 0x0b82d420, 0x0b830383, 0x0b82d520, 0x0b830383, 0x0b82d620, 0x0b830383, 0x0b82d720, 0x9d200383, 0xd8200782, 0x17830386,
0x0b82d920, 0x0b830383, 0x0b82da20, 0x0b830383, 0x0b82db20, 0x0b830383, 0x0b82dc20, 0x0b830383, 0x0b82dd20, 0x0b830383, 0x0b82de20, 0x0b830383,
0x0b82df20, 0x0b830383, 0x0b82e020, 0x0b830383, 0x0b82e120, 0x0b830383, 0x0b82e220, 0x0b830383, 0x0b82e320, 0x0b830383, 0x0b82e420, 0x0b830383,
0x0b82e520, 0x0b830383, 0x0b82e620, 0x0b830383, 0x0b82e720, 0x0b830383, 0x0b82e820, 0x0b830383, 0x0b82e920, 0x0b830383, 0x0b82ea20, 0x0b830383,
0x0b82eb20, 0x0b830383, 0x0b82ec20, 0x0b830383, 0x0b82ed20, 0x0b830383, 0x0b82ee20, 0x0b830383, 0x0b82ef20, 0x0b830383, 0x0b82f020, 0x0b830383,
0x0b82f120, 0x0b830383, 0x0b82f220, 0x0b830383, 0x0b82f320, 0x0b830383, 0x0b82f420, 0x0b830383, 0x0b82f520, 0x0b830383, 0x0b82f620, 0x0b830383,
0x0b82f720, 0x02200382, 0xf8206383, 0x03830b82, 0xf9201783, 0x03830b82, 0xfa200b83, 0x03830b82, 0xfb200b83, 0x03830b82, 0xfc200b83, 0x03830b82,
0xfd200b83, 0x03830b82, 0xfe200b83, 0x03830b82, 0xff200b83, 0x03830b82, 0x01200b82, 0x20067648, 0x820b8300, 0x8201200c, 0x230b8403, 0x01000002,
0x0b840382, 0x0b820320, 0x0b840382, 0x00000426, 0x00000401, 0x05230b84, 0x82010000, 0x240b8403, 0x01000006, 0x23178606, 0x01000007, 0x17840382,
0x0b820820, 0x0b840382, 0x0b820920, 0x0b840382, 0x0b820a20, 0x0b840382, 0x0b820b20, 0x0b840382, 0x0b820c20, 0x0b840382, 0x0b820d20, 0x0b840382,
0x0b820e20, 0x0b840382, 0x0b820f20, 0x0b840382, 0x0b821020, 0x0b840382, 0x0b821120, 0x0b840382, 0x0b821220, 0x0b840382, 0x0b821320, 0x0b840382,
0x0b821420, 0x0b840382, 0x0b821520, 0x0b840382, 0x0b821620, 0x0b840382, 0x0b821720, 0x0b840382, 0x0b821820, 0x0b840382, 0x0b821920, 0x0b840382,
0x0b821a20, 0x0b840382, 0x0b821b20, 0x0b840382, 0x0b821c20, 0x0b840382, 0x0b821d20, 0x0b840382, 0x0b821e20, 0x0b840382, 0x0b821f20, 0x0b840382,
0x0b822020, 0x0b840382, 0x0b822120, 0x0b840382, 0x0b822220, 0x0b840382, 0x0b822320, 0x0b840382, 0x0b822420, 0x0b840382, 0x0b822520, 0x0b840382,
0x0b822620, 0x0b840382, 0x0b822720, 0x0b840382, 0x0b822820, 0x0b840382, 0x0b822920, 0x0b840382, 0x0b822a20, 0x0b840382, 0x0b822b20, 0x0b840382,
0x0b822c20, 0x0b840382, 0x0b822d20, 0x0b840382, 0x0b822e20, 0x0b840382, 0x0b822f20, 0x0b840382, 0x0b823020, 0x0b840382, 0x0b823120, 0x0b840382,
0x0b823220, 0x0b840382, 0x0b823320, 0x0b840382, 0x0b823420, 0x0b840382, 0x0b823520, 0x0b840382, 0x0b823620, 0x0b840382, 0x0b823720, 0x0b840382,
0x0b823820, 0x0b840382, 0x0b823920, 0x0b840382, 0x0b823a20, 0x0b840382, 0x0b823b20, 0x0b840382, 0x0b823c20, 0x0b840382, 0x0b823d20, 0x0b840382,
0x0b823e20, 0x0b840382, 0x0b823f20, 0x0b840382, 0x0b824020, 0x0b840382, 0x0b824120, 0x0b840382, 0x0b824220, 0x0b840382, 0x0b824320, 0x0b840382,
0x0b824420, 0x0b840382, 0x0b824520, 0x0b840382, 0x0b824620, 0x0b840382, 0x0b824720, 0x0b840382, 0x0b824820, 0x0b840382, 0x0b824920, 0x0b840382,
0x0b824a20, 0x0b840382, 0x0b824b20, 0x0b840382, 0x0b824c20, 0x0b840382, 0x0b824d20, 0x0b840382, 0x0b824e20, 0x0b840382, 0x0b824f20, 0x0b840382,
0x0b825020, 0x0b840382, 0x0b825120, 0x0b840382, 0x0b825220, 0x0b840382, 0x0b825320, 0x0b840382, 0x0b825420, 0x0b840382, 0x0b825520, 0x0b840382,
0x0b825620, 0x0b840382, 0x0b825720, 0x0b840382, 0x0b825820, 0x0b840382, 0x0b825920, 0x0b840382, 0x0b825a20, 0x0b840382, 0x0b825b20, 0x0b840382,
0x0b825c20, 0x0b840382, 0x0b825d20, 0x0b840382, 0x0b825e20, 0x0b840382, 0x0b825f20, 0x0b840382, 0x0b826020, 0x0b840382, 0x0b826120, 0x0b840382,
0x0b826220, 0x0b840382, 0x0b826320, 0x0b840382, 0x0b826420, 0x0b840382, 0x0b826520, 0x0b840382, 0x0b826620, 0x0b840382, 0x0b826720, 0x0b840382,
0x0b826820, 0x0b840382, 0x0b826920, 0x0b840382, 0x0b826a20, 0x0b840382, 0x0b826b20, 0x0b840382, 0x0b826c20, 0x0b840382, 0x0b826d20, 0x0b840382,
0x0b826e20, 0x0b840382, 0x0b826f20, 0x0b840382, 0x0b827020, 0x0b840382, 0x0b827120, 0x0b840382, 0x0b827220, 0x0b840382, 0x0b827320, 0x0b840382,
0x0b827420, 0x0b840382, 0x0b827520, 0x0b840382, 0x0b827620, 0x0b840382, 0x0b827720, 0x0b840382, 0x0b827820, 0x0b840382, 0x0b827920, 0x0b840382,
0x0b827a20, 0x0b840382, 0x0b827b20, 0x0b840382, 0x0b827c20, 0x0b840382, 0x0b827d20, 0x0b840382, 0x0b827e20, 0x0b840382, 0x0b827f20, 0x0b840382,
0x0b828020, 0x0b840382, 0x0b828120, 0x0b840382, 0x0b828220, 0x0b840382, 0x0b828320, 0x0b840382, 0x0b828420, 0x0b840382, 0x0b828520, 0x0b840382,
0x0b828620, 0x0b840382, 0x0b828720, 0x0b840382, 0x0b828820, 0x0b840382, 0x0b828920, 0x0b840382, 0x0b828a20, 0x0b840382, 0x0b828b20, 0x0b840382,
0x0b828c20, 0x0b840382, 0x0b828d20, 0x0b840382, 0x0b828e20, 0x0b840382, 0x0b828f20, 0x0b840382, 0x0b829020, 0x0b840382, 0x0b829120, 0x0b840382,
0x0b829220, 0x0b840382, 0x0b829320, 0x0b840382, 0x0b829420, 0x0b840382, 0x0b829520, 0x0b840382, 0x0b829620, 0x0b840382, 0x0b829720, 0x0b840382,
0x0b829820, 0x0b840382, 0x0b829920, 0x0b840382, 0x0b829a20, 0x0b840382, 0x0b829b20, 0x0b840382, 0x0b829c20, 0x0b840382, 0x0b829d20, 0x0b840382,
0x0b829e20, 0x0b840382, 0x0b829f20, 0x0b840382, 0x0b82a020, 0x0b840382, 0x0b82a120, 0x2106ff4b, 0x0b82a201, 0x17840382, 0x0b82a320, 0x0b840382,
0x0b82a420, 0x0b840382, 0x0b82a520, 0x0b840382, 0x0b82a620, 0x0b840382, 0x0b82a720, 0x2106ff4b, 0x0b82a801, 0x17840382, 0x0b82a920, 0x0b840382,
0x0b82aa20, 0x0b840382, 0x0b82ab20, 0x0b840382, 0x0b82ac20, 0x0b840382, 0x0b82ad20, 0x0b840382, 0x0b82ae20, 0x0b840382, 0x0b82af20, 0x0b840382,
0x0b82b020, 0x0b840382, 0x0b82b120, 0x0b840382, 0x0b82b220, 0x0b840382, 0x0b82b320, 0x0b840382, 0x0b82b420, 0x0b840382, 0x0b82b520, 0x0b840382,
0x0b82b620, 0x0b840382, 0x0b82b720, 0x0b840382, 0x0b82b820, 0x0b840382, 0x0b82b920, 0x0b840382, 0x0b82ba20, 0x0b840382, 0x0b82bb20, 0x0b840382,
0x0b82bc20, 0x0b840382, 0x0b82bd20, 0x0b840382, 0x0b82be20, 0x0b840382, 0x0b82bf20, 0x0b840382, 0x0b82c020, 0x0b840382, 0x0b82c120, 0x0b840382,
0x0b82c220, 0x0b840382, 0x0b82c320, 0x0b840382, 0x0b82c420, 0x0b840382, 0x0b82c520, 0x0b840382, 0x0b82c620, 0x0b840382, 0x0b82c720, 0x0b840382,
0x0b82c820, 0x0b840382, 0x0b82c920, 0x0b840382, 0x0b82ca20, 0x0b840382, 0x0b82cb20, 0x0b840382, 0x0b82cc20, 0x0b840382, 0x0b82cd20, 0x0b840382,
0x0b82ce20, 0x0b840382, 0x0b82cf20, 0x0b840382, 0x0b82d020, 0x0b840382, 0x0b82d120, 0x0b840382, 0x0b82d220, 0x0b840382, 0x0b82d320, 0x0b840382,
0x0b82d420, 0x0b840382, 0x0b82d520, 0x0b840382, 0x0b82d620, 0x0b840382, 0x0b82d720, 0x0b840382, 0x0b82d820, 0x0b840382, 0x0b82d920, 0x0b840382,
0x0b82da20, 0x0b840382, 0x0b82db20, 0x0b840382, 0x0b82dc20, 0x0b840382, 0x0b82dd20, 0x0b840382, 0x0b82de20, 0x0b840382, 0x0b82df20, 0x0b840382,
0x0b82e020, 0x0b840382, 0x0b82e120, 0x0b840382, 0x0b82e220, 0x0b840382, 0x0b82e320, 0x0b840382, 0x0b82e420, 0x0b840382, 0x0b82e520, 0x0b840382,
0x0b82e620, 0x0b840382, 0x0b82e720, 0x0b840382, 0x0b82e820, 0x0b840382, 0x0b82e920, 0x0b840382, 0x0b82ea20, 0x0b840382, 0x0b82eb20, 0x0b840382,
0x0b82ec20, 0x0b840382, 0x0b82ed20, 0x0b840382, 0x0b82ee20, 0x0b840382, 0x0b82ef20, 0x0b840382, 0x0b82f020, 0x0b840382, 0x0b82f120, 0x0b840382,
0x0b82f220, 0x0b840382, 0x0b82f320, 0x0b840382, 0x0b82f420, 0x0b840382, 0x0b82f520, 0x0b840382, 0x0b82f620, 0x0b840382, 0x0b82f720, 0x0b840382,
0x0b82f820, 0x0b840382, 0x0b82f920, 0x0b840382, 0x0b82fa20, 0x0b840382, 0x0b82fb20, 0x0b840382, 0x0b82fc20, 0x0b840382, 0x0b82fd20, 0x0b840382,
0x0b82fe20, 0x0b840382, 0x0b82ff20, 0x0b830382, 0x00000225, 0x82000200, 0x82322000, 0x85012007, 0x20178403, 0x820b8202, 0x200b8403, 0x820b8203,
0x200b8403, 0x820b8204, 0x200b8403, 0x820b8205, 0x200b8403, 0x820b8206, 0x200b8403, 0x820b8207, 0x260b8403, 0x02000008, 0x84000008, 0x0009230b,
0xff4b0200, 0x0a022506, 0x0a020000, 0x0b231786, 0x82020000, 0x20238403, 0x820b820c, 0x200b8403, 0x820b820d, 0x200b8403, 0x820b820e, 0x200b8403,
0x820b820f, 0x200b8403, 0x820b8210, 0x200b8403, 0x820b8211, 0x200b8403, 0x820b8212, 0x200b8403, 0x820b8213, 0x200b8403, 0x820b8214, 0x200b8403,
0x820b8215, 0x200b8403, 0x820b8216, 0x200b8403, 0x820b8217, 0x200b8403, 0x820b8218, 0x200b8403, 0x820b8219, 0x200b8403, 0x820b821a, 0x200b8403,
0x820b821b, 0x200b8403, 0x820b821c, 0x200b8403, 0x820b821d, 0x200b8403, 0x820b821e, 0x200b8403, 0x820b821f, 0x200b8403, 0x820b8220, 0x200b8403,
0x820b8221, 0x200b8403, 0x820b8222, 0x200b8403, 0x820b8223, 0x200b8403, 0x820b8224, 0x200b8403, 0x820b8225, 0x200b8403, 0x820b8226, 0x200b8403,
0x820b8227, 0x200b8403, 0x820b8228, 0x200b8403, 0x820b8229, 0x200b8403, 0x820b822a, 0x200b8403, 0x820b822b, 0x200b8403, 0x820b822c, 0x200b8403,
0x820b822d, 0x200b8403, 0x820b822e, 0x200b8403, 0x820b822f, 0x200b8403, 0x820b8230, 0x200b8403, 0x820b8231, 0x200b8403, 0x820b8232, 0x200b8403,
0x820b8233, 0x200b8403, 0x820b8234, 0x200b8403, 0x820b8235, 0x200b8403, 0x820b8236, 0x200b8403, 0x820b8237, 0x200b8403, 0x820b8238, 0x200b8403,
0x820b8239, 0x200b8403, 0x820b823a, 0x200b8403, 0x820b823b, 0x200b8403, 0x820b823c, 0x200b8403, 0x820b823d, 0x200b8403, 0x820b823e, 0x200b8403,
0x820b823f, 0x200b8403, 0x820b8240, 0x200b8403, 0x820b8241, 0x200b8403, 0x820b8242, 0x200b8403, 0x820b8243, 0x200b8403, 0x820b8244, 0x200b8403,
0x820b8245, 0x200b8403, 0x820b8246, 0x200b8403, 0x820b8247, 0x200b8403, 0x820b8248, 0x200b8403, 0x820b8249, 0x200b8403, 0x820b824a, 0x200b8403,
0x820b824b, 0x200b8403, 0x820b824c, 0x200b8403, 0x820b824d, 0x200b8403, 0x820b824e, 0x200b8403, 0x820b824f, 0x200b8403, 0x820b8250, 0x200b8403,
0x820b8251, 0x200b8403, 0x820b8252, 0x200b8403, 0x820b8253, 0x200b8403, 0x820b8254, 0x200b8403, 0x820b8255, 0x200b8403, 0x820b8256, 0x200b8403,
0x820b8257, 0x200b8403, 0x820b8258, 0x200b8403, 0x820b8259, 0x200b8403, 0x820b825a, 0x200b8403, 0x820b825b, 0x200b8403, 0x820b825c, 0x200b8403,
0x820b825d, 0x200b8403, 0x820b825e, 0x200b8403, 0x820b825f, 0x200b8403, 0x820b8260, 0x200b8403, 0x820b8261, 0x200b8403, 0x820b8262, 0x200b8403,
0x820b8263, 0x200b8403, 0x820b8264, 0x200b8403, 0x820b8265, 0x200b8403, 0x820b8266, 0x200b8403, 0x820b8267, 0x200b8403, 0x820b8268, 0x200b8403,
0x820b8269, 0x200b8403, 0x820b826a, 0x200b8403, 0x820b826b, 0x200b8403, 0x820b826c, 0x200b8403, 0x820b826d, 0x200b8403, 0x820b826e, 0x200b8403,
0x820b826f, 0x200b8403, 0x820b8270, 0x200b8403, 0x820b8271, 0x200b8403, 0x820b8272, 0x200b8403, 0x820b8273, 0x200b8403, 0x820b8274, 0x200b8403,
0x820b8275, 0x200b8403, 0x820b8276, 0x200b8403, 0x820b8277, 0x200b8403, 0x820b8278, 0x200b8403, 0x820b8279, 0x200b8403, 0x820b827a, 0x200b8403,
0x820b827b, 0x200b8403, 0x820b827c, 0x200b8403, 0x820b827d, 0x200b8403, 0x820b827e, 0x200b8403, 0x820b827f, 0x200b8403, 0x820b8280, 0x200b8403,
0x820b8281, 0x200b8403, 0x820b8282, 0x200b8403, 0x820b8283, 0x200b8403, 0x820b8284, 0x200b8403, 0x820b8285, 0x200b8403, 0x820b8286, 0x200b8403,
0x820b8287, 0x200b8403, 0x820b8288, 0x200b8403, 0x820b8289, 0x200b8403, 0x820b828a, 0x200b8403, 0x820b828b, 0x200b8403, 0x820b828c, 0x200b8403,
0x820b828d, 0x200b8403, 0x820b828e, 0x200b8403, 0x820b828f, 0x200b8403, 0x820b8290, 0x200b8403, 0x820b8291, 0x200b8403, 0x820b8292, 0x200b8403,
0x820b8293, 0x200b8403, 0x820b8294, 0x200b8403, 0x820b8295, 0x200b8403, 0x820b8296, 0x200b8403, 0x820b8297, 0x200b8403, 0x820b8298, 0x200b8403,
0x820b8299, 0x200b8403, 0x820b829a, 0x200b8403, 0x820b829b, 0x200b8403, 0x820b829c, 0x200b8403, 0x820b829d, 0x200b8403, 0x820b829e, 0x200b8403,
0x820b829f, 0x200b8403, 0x820b82a0, 0x200b8403, 0x820b82a1, 0x200b8403, 0x820b82a2, 0x200b8403, 0x820b82a3, 0x200b8403, 0x820b82a4, 0x200b8403,
0x820b82a5, 0x200b8403, 0x820b82a6, 0x200b8403, 0x820b82a7, 0x200b8403, 0x820b82a8, 0x200b8403, 0x820b82a9, 0x200b8403, 0x820b82aa, 0x200b8403,
0x820b82ab, 0x200b8403, 0x820b82ac, 0x200b8403, 0x820b82ad, 0x200b8403, 0x820b82ae, 0x200b8403, 0x820b82af, 0x200b8403, 0x820b82b0, 0x200b8403,
0x820b82b1, 0x200b8403, 0x820b82b2, 0x200b8403, 0x820b82b3, 0x200b8403, 0x820b82b4, 0x200b8403, 0x820b82b5, 0x200b8403, 0x820b82b6, 0x200b8403,
0x820b82b7, 0x200b8403, 0x820b82b8, 0x200b8403, 0x820b82b9, 0x200b8403, 0x820b82ba, 0x200b8403, 0x820b82bb, 0x200b8403, 0x820b82bc, 0x200b8403,
0x820b82bd, 0x200b8403, 0x820b82be, 0x200b8403, 0x820b82bf, 0x200b8403, 0x820b82c0, 0x200b8403, 0x820b82c1, 0x200b8403, 0x820b82c2, 0x200b8403,
0x820b82c3, 0x200b8403, 0x820b82c4, 0x200b8403, 0x820b82c5, 0x200b8403, 0x820b82c6, 0x200b8403, 0x820b82c7, 0x200b8403, 0x820b82c8, 0x200b8403,
0x820b82c9, 0x200b8403, 0x820b82ca, 0x200b8403, 0x820b82cb, 0x200b8403, 0x820b82cc, 0x200b8403, 0x820b82cd, 0x200b8403, 0x820b82ce, 0x200b8403,
0x820b82cf, 0x200b8403, 0x820b82d0, 0x200b8403, 0x820b82d1, 0x200b8403, 0x820b82d2, 0x200b8403, 0x820b82d3, 0x200b8403, 0x820b82d4, 0x200b8403,
0x820b82d5, 0x200b8403, 0x820b82d6, 0x200b8403, 0x820b82d7, 0x200b8403, 0x820b82d8, 0x200b8403, 0x820b82d9, 0x200b8403, 0x820b82da, 0x200b8403,
0x820b82db, 0x200b8403, 0x820b82dc, 0x200b8403, 0x820b82dd, 0x200b8403, 0x820b82de, 0x200b8403, 0x820b82df, 0x200b8403, 0x820b82e0, 0x200b8403,
0x820b82e1, 0x200b8403, 0x820b82e2, 0x200b8403, 0x820b82e3, 0x200b8403, 0x820b82e4, 0x200b8403, 0x820b82e5, 0x200b8403, 0x820b82e6, 0x200b8403,
0x820b82e7, 0x200b8403, 0x820b82e8, 0x200b8403, 0x820b82e9, 0x200b8403, 0x820b82ea, 0x200b8403, 0x820b82eb, 0x200b8403, 0x820b82ec, 0x200b8403,
0x820b82ed, 0x200b8403, 0x820b82ee, 0x200b8403, 0x820b82ef, 0x200b8403, 0x820b82f0, 0x200b8403, 0x820b82f1, 0x200b8403, 0x820b82f2, 0x200b8403,
0x820b82f3, 0x200b8403, 0x820b82f4, 0x200b8403, 0x820b82f5, 0x200b8403, 0x820b82f6, 0x200b8403, 0x820b82f7, 0x200b8403, 0x820b82f8, 0x200b8403,
0x820b82f9, 0x200b8403, 0x820b82fa, 0x200b8403, 0x820b82fb, 0x200b8403, 0x820b82fc, 0x200b8403, 0x820b82fd, 0x200b8403, 0x820b82fe, 0x200b8403,
0x820b82ff, 0x240b8303, 0x00000003, 0x84038203, 0x8201200b, 0x8403820b, 0x8202200b, 0x8403820b, 0x8203200b, 0x8403820b, 0x8204200b, 0x8403820b,
0x8205200b, 0x8403820b, 0x8206200b, 0x8403820b, 0x8207200b, 0x8403820b, 0x8208200b, 0x8403820b, 0x8209200b, 0x8403820b, 0x820a200b, 0x8403820b,
0x820b200b, 0x8403820b, 0x000c260b, 0x000c0300, 0x230b8400, 0x0300000d, 0x0b840382, 0x00000e24, 0x17860e03, 0x00000f23, 0x84038203, 0x82102017,
0x8403820b, 0x8211200b, 0x8403820b, 0x8212200b, 0x8403820b, 0x8213200b, 0x8403820b, 0x8214200b, 0x8403820b, 0x8215200b, 0x8403820b, 0x8216200b,
0x8403820b, 0x8217200b, 0x8403820b, 0x8218200b, 0x8403820b, 0x8219200b, 0x8403820b, 0x821a200b, 0x8403820b, 0x821b200b, 0x8403820b, 0x821c200b,
0x8403820b, 0x821d200b, 0x8403820b, 0x821e200b, 0x8403820b, 0x821f200b, 0x8403820b, 0x8220200b, 0x8403820b, 0x8221200b, 0x8403820b, 0x8222200b,
0x8403820b, 0x8223200b, 0x8403820b, 0x8224200b, 0x8403820b, 0x8225200b, 0x8403820b, 0x8226200b, 0x8403820b, 0x8227200b, 0x8403820b, 0x8228200b,
0x8403820b, 0x8229200b, 0x8403820b, 0x822a200b, 0x8403820b, 0x822b200b, 0x8403820b, 0x822c200b, 0x8403820b, 0x822d200b, 0x8403820b, 0x822e200b,
0x8403820b, 0x822f200b, 0x8403820b, 0x8230200b, 0x8403820b, 0x8231200b, 0x8403820b, 0x8232200b, 0x8403820b, 0x8233200b, 0x8403820b, 0x8234200b,
0x8403820b, 0x8235200b, 0x8403820b, 0x8236200b, 0x8403820b, 0x8237200b, 0x8403820b, 0x8238200b, 0x8403820b, 0x8239200b, 0x8403820b, 0x823a200b,
0x8403820b, 0x823b200b, 0x8403820b, 0x823c200b, 0x8403820b, 0x823d200b, 0x8403820b, 0x823e200b, 0x8403820b, 0x823f200b, 0x8403820b, 0x8240200b,
0x8403820b, 0x8241200b, 0x8403820b, 0x8242200b, 0x8403820b, 0x8243200b, 0x8403820b, 0x8244200b, 0x8403820b, 0x8245200b, 0x8403820b, 0x8246200b,
0x8403820b, 0x8247200b, 0x8403820b, 0x8248200b, 0x8403820b, 0x8249200b, 0x8403820b, 0x824a200b, 0x8403820b, 0x824b200b, 0x8403820b, 0x824c200b,
0x8403820b, 0x824d200b, 0x8403820b, 0x824e200b, 0x8403820b, 0x824f200b, 0x8403820b, 0x8250200b, 0x8403820b, 0x8251200b, 0x8403820b, 0x8252200b,
0x8403820b, 0x8253200b, 0x8403820b, 0x8254200b, 0x8403820b, 0x8255200b, 0x8403820b, 0x8256200b, 0x8403820b, 0x8257200b, 0x8403820b, 0x8258200b,
0x8403820b, 0x8259200b, 0x8403820b, 0x825a200b, 0x8403820b, 0x825b200b, 0x8403820b, 0x825c200b, 0x8403820b, 0x825d200b, 0x8403820b, 0x825e200b,
0x8403820b, 0x825f200b, 0x8403820b, 0x8260200b, 0x8403820b, 0x8261200b, 0x8403820b, 0x8262200b, 0x8403820b, 0x8263200b, 0x8403820b, 0x8264200b,
0x8403820b, 0x8265200b, 0x8403820b, 0x8266200b, 0x8403820b, 0x8267200b, 0x8403820b, 0x8268200b, 0x8403820b, 0x8269200b, 0x8403820b, 0x826a200b,
0x8403820b, 0x826b200b, 0x8403820b, 0x826c200b, 0x8403820b, 0x826d200b, 0x8403820b, 0x826e200b, 0x8403820b, 0x826f200b, 0x8403820b, 0x8270200b,
0x8403820b, 0x8271200b, 0x8403820b, 0x8272200b, 0x8403820b, 0x8273200b, 0x8403820b, 0x8274200b, 0x8403820b, 0x8275200b, 0x8403820b, 0x8276200b,
0x8403820b, 0x8277200b, 0x8403820b, 0x8278200b, 0x8403820b, 0x8279200b, 0x8403820b, 0x827a200b, 0x8403820b, 0x827b200b, 0x8403820b, 0x827c200b,
0x8403820b, 0x827d200b, 0x8403820b, 0x827e200b, 0x8403820b, 0x827f200b, 0x8403820b, 0x8280200b, 0x8403820b, 0x8281200b, 0x8403820b, 0x8282200b,
0x8403820b, 0x8283200b, 0x8403820b, 0x8284200b, 0x8403820b, 0x8285200b, 0x8403820b, 0x8286200b, 0x8403820b, 0x8287200b, 0x8403820b, 0x8288200b,
0x8403820b, 0x8289200b, 0x8403820b, 0x828a200b, 0x8403820b, 0x828b200b, 0x8403820b, 0x828c200b, 0x8403820b, 0x828d200b, 0x8403820b, 0x828e200b,
0x8403820b, 0x828f200b, 0x8403820b, 0x8290200b, 0x8403820b, 0x8291200b, 0x8403820b, 0x8292200b, 0x8403820b, 0x8293200b, 0x8403820b, 0x8294200b,
0x8403820b, 0x8295200b, 0x8403820b, 0x6c96200b, 0x3220062f, 0x97200782, 0x17840385, 0x0b829820, 0x0b840382, 0x0b829920, 0x0b840382, 0x0b829a20,
0x0b840382, 0x0b829b20, 0x0b840382, 0x0b829c20, 0x0b840382, 0x0b829d20, 0x0b840382, 0x0b829e20, 0x2106ff4b, 0x0b829f03, 0x2106ff4b, 0x0b82a003,
0x23840382, 0x0b82a120, 0x0b840382, 0x0b82a220, 0x0b840382, 0x0b82a320, 0x0b840382, 0x0b82a420, 0x0b840382, 0x0b82a520, 0x0b840382, 0x0b82a620,
0x0b840382, 0x0b82a720, 0x0b840382, 0x2f6da820, 0x20d78306, 0x820b82a9, 0x20178403, 0x820b82aa, 0x200b8403, 0x820b82ab, 0x200b8403, 0x820b82ac,
0x200b8403, 0x820b82ad, 0x200b8403, 0x820b82ae, 0x200b8403, 0x820b82af, 0x200b8403, 0x820b82b0, 0x200b8403, 0x820b82b1, 0x200b8403, 0x820b82b2,
0x200b8403, 0x820b82b3, 0x200b8403, 0x820b82b4, 0x200b8403, 0x820b82b5, 0x200b8403, 0x820b82b6, 0x200b8403, 0x820b82b7, 0x200b8403, 0x820b82b8,
0x200b8403, 0x820b82b9, 0x200b8403, 0x820b82ba, 0x200b8403, 0x820b82bb, 0x200b8403, 0x820b82bc, 0x200b8403, 0x820b82bd, 0x200b8403, 0x820b82be,
0x200b8403, 0x820b82bf, 0x200b8403, 0x820b82c0, 0x200b8403, 0x820b82c1, 0x200b8403, 0x820b82c2, 0x200b8403, 0x820b82c3, 0x200b8403, 0x820b82c4,
0x200b8403, 0x820b82c5, 0x200b8403, 0x820b82c6, 0x200b8403, 0x820b82c7, 0x200b8403, 0x820b82c8, 0x200b8403, 0x820b82c9, 0x200b8403, 0x820b82ca,
0x200b8403, 0x820b82cb, 0x200b8403, 0x820b82cc, 0x200b8403, 0x820b82cd, 0x200b8403, 0x820b82ce, 0x200b8403, 0x820b82cf, 0x200b8403, 0x820b82d0,
0x200b8403, 0x820b82d1, 0x200b8403, 0x820b82d2, 0x200b8403, 0x820b82d3, 0x200b8403, 0x820b82d4, 0x200b8403, 0x820b82d5, 0x200b8403, 0x820b82d6,
0x200b8403, 0x820b82d7, 0x200b8403, 0x820b82d8, 0x200b8403, 0x820b82d9, 0x200b8403, 0x820b82da, 0x200b8403, 0x820b82db, 0x200b8403, 0x820b82dc,
0x200b8403, 0x820b82dd, 0x200b8403, 0x820b82de, 0x200b8403, 0x820b82df, 0x200b8403, 0x820b82e0, 0x200b8403, 0x820b82e1, 0x200b8403, 0x820b82e2,
0x200b8403, 0x820b82e3, 0x200b8403, 0x820b82e4, 0x200b8403, 0x820b82e5, 0x200b8403, 0x820b82e6, 0x200b8403, 0x820b82e7, 0x200b8403, 0x820b82e8,
0x200b8403, 0x820b82e9, 0x200b8403, 0x820b82ea, 0x200b8403, 0x820b82eb, 0x200b8403, 0x820b82ec, 0x200b8403, 0x820b82ed, 0x200b8403, 0x820b82ee,
0x200b8403, 0x820b82ef, 0x200b8403, 0x820b82f0, 0x200b8403, 0x820b82f1, 0x200b8403, 0x820b82f2, 0x200b8403, 0x820b82f3, 0x200b8403, 0x820b82f4,
0x200b8403, 0x820b82f5, 0x200b8403, 0x820b82f6, 0x200b8403, 0x820b82f7, 0x200b8403, 0x820b82f8, 0x200b8403, 0x820b82f9, 0x200b8403, 0x820b82fa,
0x200b8403, 0x820b82fb, 0x200b8403, 0x820b82fc, 0x200b8403, 0x820b82fd, 0x200b8403, 0x820b82fe, 0x200b8403, 0x820b82ff, 0x240b8303, 0x00000004,
0x84038204, 0x8201200b, 0x8403820b, 0x8202200b, 0x8403820b, 0x8203200b, 0x8403820b, 0x202c820b, 0x84038204, 0x8205200b, 0x84038217, 0x8206200b,
0x8403820b, 0x8207200b, 0x8403820b, 0x8208200b, 0x8403820b, 0x8209200b, 0x8403820b, 0x820a200b, 0x8403820b, 0x820b200b, 0x8403820b, 0x820c200b,
0x8403820b, 0x820d200b, 0x8403820b, 0x820e200b, 0x8403820b, 0x820f200b, 0x8403820b, 0x0010260b, 0x00100400, 0x230b8400, 0x04000011, 0x0b840382,
0x00001224, 0x17861204, 0x00001323, 0x84038204, 0x82142017, 0x8403820b, 0x8215200b, 0x8403820b, 0x8216200b, 0x8403820b, 0x8217200b, 0x8403820b,
0x8218200b, 0x8403820b, 0x8219200b, 0x8403820b, 0x821a200b, 0x8403820b, 0x821b200b, 0x8403820b, 0x821c200b, 0x8403820b, 0x821d200b, 0x8403820b,
0x821e200b, 0x8403820b, 0x821f200b, 0x8403820b, 0x8220200b, 0x8403820b, 0x8221200b, 0x8403820b, 0x8222200b, 0x8403820b, 0x8223200b, 0x8403820b,
0x8224200b, 0x8403820b, 0x8225200b, 0x8403820b, 0x8226200b, 0x8403820b, 0x8227200b, 0x8403820b, 0x8228200b, 0x8403820b, 0x8229200b, 0x8403820b,
0x822a200b, 0x8403820b, 0x822b200b, 0x8403820b, 0x822c200b, 0x8403820b, 0x822d200b, 0x8403820b, 0x822e200b, 0x8403820b, 0x822f200b, 0x8403820b,
0x8230200b, 0x8403820b, 0x8231200b, 0x8403820b, 0x8232200b, 0x8403820b, 0x8233200b, 0x8403820b, 0x8234200b, 0x8403820b, 0x8235200b, 0x8403820b,
0x8236200b, 0x8403820b, 0x8237200b, 0x8403820b, 0x8238200b, 0x8403820b, 0x8239200b, 0x8403820b, 0x823a200b, 0x8403820b, 0x823b200b, 0x8403820b,
0x823c200b, 0x8403820b, 0x823d200b, 0x8403820b, 0x823e200b, 0x8403820b, 0x823f200b, 0x8403820b, 0x8240200b, 0x8403820b, 0x8241200b, 0x8403820b,
0x8242200b, 0x8403820b, 0x8243200b, 0x8403820b, 0x8244200b, 0x8403820b, 0x8245200b, 0x8403820b, 0x8246200b, 0x8403820b, 0x8247200b, 0x8403820b,
0x8248200b, 0x8403820b, 0x8249200b, 0x8403820b, 0x824a200b, 0x8403820b, 0x824b200b, 0x8403820b, 0x824c200b, 0x8403820b, 0x824d200b, 0x8403820b,
0x824e200b, 0x8403820b, 0x824f200b, 0x8403820b, 0x8250200b, 0x8403820b, 0x8251200b, 0x8403820b, 0x8252200b, 0x8403820b, 0x8253200b, 0x8403820b,
0x8254200b, 0x8403820b, 0x8255200b, 0x8403820b, 0x8256200b, 0x8403820b, 0x8257200b, 0x8403820b, 0x8258200b, 0x8403820b, 0x8259200b, 0x8403820b,
0x825a200b, 0x8403820b, 0x825b200b, 0x8403820b, 0x825c200b, 0x8403820b, 0x825d200b, 0x8403820b, 0x825e200b, 0x8403820b, 0x825f200b, 0x8403820b,
0x8260200b, 0x8403820b, 0x8261200b, 0x8403820b, 0x8262200b, 0x8403820b, 0x8263200b, 0x8403820b, 0x8264200b, 0x8403820b, 0x8265200b, 0x8403820b,
0x8266200b, 0x8403820b, 0x8267200b, 0x8403820b, 0x8268200b, 0x8403820b, 0x8269200b, 0x8403820b, 0x826a200b, 0x8403820b, 0x826b200b, 0x8403820b,
0x826c200b, 0x8403820b, 0x826d200b, 0x8403820b, 0x826e200b, 0x8403820b, 0x826f200b, 0x8403820b, 0x8270200b, 0x8403820b, 0x8271200b, 0x8403820b,
0x8272200b, 0x8403820b, 0x8273200b, 0x8403820b, 0x8274200b, 0x8403820b, 0x8275200b, 0x8403820b, 0x8276200b, 0x8403820b, 0x8277200b, 0x8403820b,
0x8278200b, 0x8403820b, 0x8279200b, 0x8403820b, 0x827a200b, 0x8403820b, 0x827b200b, 0x8403820b, 0x827c200b, 0x8403820b, 0x827d200b, 0x8403820b,
0x827e200b, 0x8403820b, 0x827f200b, 0x8403820b, 0x8280200b, 0x8403820b, 0x8281200b, 0x8403820b, 0x8282200b, 0x8403820b, 0x8283200b, 0x8403820b,
0x8284200b, 0x8403820b, 0x8285200b, 0x8403820b, 0x8286200b, 0x8403820b, 0x8287200b, 0x8403820b, 0x8288200b, 0x8403820b, 0x8289200b, 0x8403820b,
0x828a200b, 0x8403820b, 0x828b200b, 0x8403820b, 0x828c200b, 0x8403820b, 0x828d200b, 0x8403820b, 0x828e200b, 0x8403820b, 0x828f200b, 0x8403820b,
0x8290200b, 0x8403820b, 0x8291200b, 0x8403820b, 0x8292200b, 0x8403820b, 0x8293200b, 0x8403820b, 0x8294200b, 0x8403820b, 0x8295200b, 0x8403820b,
0x8296200b, 0x8403820b, 0x8297200b, 0x8403820b, 0x8298200b, 0x8403820b, 0x8299200b, 0x8403820b, 0x829a200b, 0x8403820b, 0x829b200b, 0x8403820b,
0x829c200b, 0x8403820b, 0x829d200b, 0x8403820b, 0x829e200b, 0x8403820b, 0x829f200b, 0x8403820b, 0x82a0200b, 0x8403820b, 0x82a1200b, 0x8403820b,
0x82a2200b, 0x8403820b, 0x82a3200b, 0x8403820b, 0x82a4200b, 0x8403820b, 0x82a5200b, 0x8403820b, 0x82a6200b, 0x8403820b, 0x82a7200b, 0x8403820b,
0x82a8200b, 0x8403820b, 0x82a9200b, 0x8403820b, 0x82aa200b, 0x8403820b, 0x82ab200b, 0x8403820b, 0x82ac200b, 0x8403820b, 0x82ad200b, 0x8403820b,
0x82ae200b, 0x8403820b, 0x82af200b, 0x8403820b, 0x82b0200b, 0x8403820b, 0x82b1200b, 0x8403820b, 0x82b2200b, 0x8403820b, 0x82b3200b, 0x8403820b,
0x82b4200b, 0x8403820b, 0x82b5200b, 0x8403820b, 0x82b6200b, 0x8403820b, 0x82b7200b, 0x8403820b, 0x82b8200b, 0x8403820b, 0x82b9200b, 0x8403820b,
0x82ba200b, 0x8403820b, 0x82bb200b, 0x8403820b, 0x82bc200b, 0x8403820b, 0x82bd200b, 0x8403820b, 0x82be200b, 0x8403820b, 0x82bf200b, 0x8403820b,
0x82c0200b, 0x8403820b, 0x82c1200b, 0x8403820b, 0x82c2200b, 0x8403820b, 0x82c3200b, 0x8403820b, 0x82c4200b, 0x8403820b, 0x82c5200b, 0x8403820b,
0x82c6200b, 0x8403820b, 0x82c7200b, 0x8403820b, 0x82c8200b, 0x8403820b, 0x82c9200b, 0x8403820b, 0x82ca200b, 0x8403820b, 0x82cb200b, 0x8403820b,
0x82cc200b, 0x8403820b, 0x82cd200b, 0x8403820b, 0x82ce200b, 0x8403820b, 0x82cf200b, 0x8403820b, 0x82d0200b, 0x8403820b, 0x82d1200b, 0x8403820b,
0x82d2200b, 0x8403820b, 0x82d3200b, 0x8403820b, 0x82d4200b, 0x8403820b, 0x82d5200b, 0x8403820b, 0x82d6200b, 0x8403820b, 0x82d7200b, 0x8403820b,
0x82d8200b, 0x8403820b, 0x82d9200b, 0x8403820b, 0x82da200b, 0x8403820b, 0x82db200b, 0x8403820b, 0x82dc200b, 0x8403820b, 0x82dd200b, 0x8403820b,
0x82de200b, 0x8403820b, 0x82df200b, 0x8403820b, 0x82e0200b, 0x8403820b, 0x82e1200b, 0x8403820b, 0x82e2200b, 0x8403820b, 0x82e3200b, 0x8403820b,
0x82e4200b, 0x8403820b, 0x82e5200b, 0x8403820b, 0x82e6200b, 0x8403820b, 0x82e7200b, 0x8403820b, 0x82e8200b, 0x8403820b, 0x82e9200b, 0x8403820b,
0x82ea200b, 0x8403820b, 0x82eb200b, 0x8403820b, 0x82ec200b, 0x8403820b, 0x82ed200b, 0x8403820b, 0x82ee200b, 0x8403820b, 0x82ef200b, 0x8403820b,
0x82f0200b, 0x8403820b, 0x82f1200b, 0x8403820b, 0x82f2200b, 0x8403820b, 0x82f3200b, 0x8403820b, 0x82f4200b, 0x8403820b, 0x82f5200b, 0x8403820b,
0x82f6200b, 0x8403820b, 0x82f7200b, 0x8403820b, 0x82f8200b, 0x8403820b, 0x82f9200b, 0x8403820b, 0x82fa200b, 0x8403820b, 0x82fb200b, 0x8403820b,
0x82fc200b, 0x8403820b, 0x82fd200b, 0x8403820b, 0x82fe200b, 0x8403820b, 0x82ff200b, 0x8303820b, 0x0005240b, 0x82050000, 0x200b8403, 0x820b8201,
0x200b8403, 0x820b8202, 0x200b8403, 0x820b8203, 0x200b8403, 0x820b8204, 0x820b8403, 0x82052038, 0x200b8403, 0x82178206, 0x200b8403, 0x820b8207,
0x200b8403, 0x820b8208, 0x200b8403, 0x820b8209, 0x200b8403, 0x820b820a, 0x200b8403, 0x820b820b, 0x200b8403, 0x820b820c, 0x200b8403, 0x820b820d,
0x200b8403, 0x820b820e, 0x200b8403, 0x820b820f, 0x200b8403, 0x820b8210, 0x200b8403, 0x820b8211, 0x200b8403, 0x820b8212, 0x200b8403, 0x820b8213,
0x260b8403, 0x05000014, 0x84000014, 0x0015230b, 0x03820500, 0x16240b84, 0x16050000, 0x17231786, 0x82050000, 0x20178403, 0x820b8218, 0x200b8403,
0x820b8219, 0x200b8403, 0x820b821a, 0x200b8403, 0x820b821b, 0x200b8403, 0x820b821c, 0x200b8403, 0x820b821d, 0x200b8403, 0x820b821e, 0x200b8403,
0x820b821f, 0x200b8403, 0x820b8220, 0x200b8403, 0x820b8221, 0x200b8403, 0x820b8222, 0x200b8403, 0x820b8223, 0x200b8403, 0x820b8224, 0x200b8403,
0x820b8225, 0x200b8403, 0x820b8226, 0x200b8403, 0x820b8227, 0x200b8403, 0x820b8228, 0x200b8403, 0x820b8229, 0x200b8403, 0x820b822a, 0x200b8403,
0x820b822b, 0x200b8403, 0x820b822c, 0x200b8403, 0x820b822d, 0x200b8403, 0x820b822e, 0x200b8403, 0x820b822f, 0x240b8303, 0x00000b20, 0x06bb4120,
0x82102021, 0x8403820b, 0x82112017, 0x8403820b, 0x8213200b, 0x2103820b, 0x0782e700, 0x03851420, 0x18201784, 0x03820b82, 0x19200b84, 0x03820b82,
0x1c200b84, 0x03820b82, 0x825b0121, 0x851d2007, 0x5c012103, 0x20200782, 0x23840385, 0x0b822120, 0x0b840382, 0x2020f782, 0x0b840382, 0x17823020,
0x0b840382, 0x0b823220, 0x0b840382, 0x0b823320, 0x0b840382, 0x0b823920, 0x01210382, 0x20078254, 0x2103853a, 0x07825501, 0x0385a420, 0x82ab0121,
0x85a82007, 0x90012103, 0xa9200782, 0x01210385, 0x20078293, 0x210385aa, 0x0782e401, 0x0385ac20, 0x828e0121, 0x85b42007, 0xea032103, 0xb8200782,
0x04210385, 0x20078237, 0x250385bd, 0x00009201, 0x03852221, 0x82170221, 0x85902007, 0xe0002103, 0x91200782, 0x00210385, 0x200782e2, 0x21038592,
0x0782e100, 0x03859320, 0x82e30021, 0x85942007, 0x5b022103, 0x95200782, 0x02210385, 0x2007825c, 0x21038597, 0x07826202, 0x0385ba20, 0xd3820120,
0x82bb2121, 0x2103820b, 0x0782a800, 0x0385c420, 0x00410125, 0x85122200, 0xe7002103, 0x1e200782, 0x02250385, 0x230000f8, 0x21038503, 0x07825601,
0x03850420, 0x82570121, 0x851b2007, 0x0e022103, 0x28200782, 0x01210385, 0x20078263, 0x21038529, 0x0782d600, 0x03852a20, 0x82d70021, 0x852b2007,
0x1c032103, 0x99200782, 0x00210385, 0x200782b7, 0x210385cf, 0x0782d500, 0x0385e920, 0x82d20021, 0x85ea2007, 0xce002103, 0xed200782, 0x00210385,
0x200782d3, 0x210385ee, 0x0782cd00, 0x0385f120, 0x824c0221, 0x85f32007, 0x0f022103, 0xb7830782, 0x00210382, 0x200b82d0, 0x210385f9, 0x0782d100,
0x0385fb20, 0x82a00021, 0x85fe2007, 0xa5012503, 0xbd240000, 0x02200385, 0x25201782, 0x01250386, 0x25000027, 0x210385b6, 0x0782cf00, 0x01210386,
0x820b825e, 0x82252057, 0xc8002103, 0x53820b82, 0x03822520, 0xfc202f84, 0x03820f82, 0x26240b83, 0x26000000, 0x01210382, 0x200782a4, 0x21038501,
0x07822101, 0x03850320, 0x82350421, 0x85042007, 0x83042003, 0x82112013, 0x2103820b, 0x07828601, 0x03851520, 0x83820420, 0x821d2621, 0x2103820b,
0x07821301, 0x03852020, 0x82f20321, 0x85222007, 0x29042103, 0x23200782, 0x04200385, 0x2621fb82, 0x820b8225, 0xa7032103, 0x2a200782, 0x03210385,
0x200782cb, 0x2103852c, 0x0782b903, 0x03852e20, 0x82c00321, 0x852f2007, 0xd2032103, 0x38200782, 0x03210385, 0x200782ae, 0x21038539, 0x07826001,
0x03853f20, 0x82ef0121, 0x85402007, 0xed012103, 0x42200782, 0x01210385, 0x200782ee, 0x2103855a, 0x07828302, 0x03855b20, 0xcb830220, 0x0b825c20,
0x02210382, 0x20078287, 0x2103855d, 0x07828102, 0x03855e20, 0x82840221, 0x855f2007, 0x85022103, 0x65200782, 0x00210385, 0x20078295, 0x21038566,
0x0782e701, 0x03857220, 0x82b70121, 0x857a2007, 0x200b8403, 0x820b827b, 0x200b8403, 0x820b827e, 0xf8022103, 0x80200782, 0x02210385, 0x830782eb,
0x2003826f, 0x20a78302, 0x820f8282, 0x83022003, 0x828320bf, 0x2103820b, 0x0782ea02, 0x03828783, 0x82e90221, 0x8287830b, 0xec022103, 0x93200b82,
0x01200385, 0x26216382, 0x820b8296, 0x0b022103, 0x99200782, 0x00210385, 0x200782a2, 0x2103859b, 0x07828803, 0x0385a020, 0x82ee0021, 0x85a12007,
0x3c012103, 0xa2200782, 0x01210385, 0x200782f2, 0x210385a3, 0x0782f301, 0x0385a420, 0x82f40121, 0x85a52007, 0xf0012103, 0xa6200782, 0x01210385,
0x200782f5, 0x210385a7, 0x0782f101, 0x0385a820, 0x82f60121, 0x85a92007, 0xf7012103, 0xaa200782, 0x01210385, 0x2007825e, 0x840385ab, 0x82b2200b,
0x2103820b, 0x0782f801, 0x0385bd20, 0x82cf0121, 0x85be2007, 0x7d022103, 0xc4200782, 0x04210385, 0x20078235, 0x210385c5, 0x0782d903, 0x0385c620,
0x82fe0321, 0x85df2007, 0x2f012103, 0xe9200782, 0x03200385, 0xea204783, 0x03820b82, 0x82e30221, 0x85f72007, 0x30042103, 0xfa200782, 0x03210385,
0x200782d5, 0x230385fd, 0x0000f402, 0x07a24018, 0x82230121, 0x8502200b, 0x200b8403, 0x820b8204, 0x200b8403, 0x820b8205, 0x86012103, 0x09200782,
0x01210385, 0x20078239, 0x2103850a, 0x0782e103, 0x03850b20, 0x82110221, 0x850c2007, 0x16022103, 0x0f200782, 0x02210385, 0x83078252, 0x2103821b,
0x0b826a03, 0x03851220, 0x82690321, 0x85132007, 0x9c002503, 0x14270000, 0x0b840385, 0x0b821520, 0x00210382, 0x2007829d, 0x84038516, 0x821d200b,
0x2103820b, 0x0782ad03, 0x03852120, 0x82cc0321, 0x85312007, 0x06002103, 0x44200782, 0x02210385, 0x86078246, 0x200b8403, 0x820f824c, 0x20478403,
0x820b824e, 0x44022103, 0x53200782, 0x00200385, 0x54206783, 0x03820b82, 0x55200b84, 0x03820b82, 0x82020021, 0x85572007, 0x200b8403, 0x820b8264,
0x95002103, 0x03860782, 0x82070021, 0x8596200b, 0xe7002103, 0x97200782, 0x02250385, 0x290000ef, 0x20038534, 0x21fb8202, 0x0b823529, 0x02200382,
0x2b24fb82, 0x2b00000d, 0x02210382, 0x2007825c, 0x2103851b, 0x07828d02, 0x03851c20, 0x24200b84, 0x03820b82, 0x825e0121, 0x85502007, 0x82002003,
0x05e02467, 0x82e00000, 0x33002103, 0x43820782, 0x0382e020, 0x67820020, 0x8241e021, 0x2103820f, 0x07823500, 0x03825920, 0x00007624, 0x07823600,
0x03828520, 0x0b828620, 0xe020db82, 0xe0219b82, 0x200b8298, 0x20138256, 0x2103859a, 0x07825800, 0x0385a920, 0x37830020, 0x0b82ac20, 0x00210382,
0x2007825a, 0x210385b4, 0x07825b00, 0x0385b720, 0x825c0021, 0x85d82007, 0x5d002103, 0xdf200782, 0x00210385, 0x2007825e, 0x200382e3, 0x245f82e4,
0xe100005f, 0x21038531, 0x07826100, 0x03823920, 0x17823c20, 0x07826220, 0x03854020, 0x82660021, 0x85522007, 0x67002103, 0x69200782, 0x00210385,
0x20078268, 0x2003856d, 0x20138300, 0x820b827b, 0x6a002103, 0x84200782, 0x00210385, 0x2007826b, 0x2103858f, 0x07826c00, 0xe121cb82, 0x835f829b,
0x82a82037, 0x2103820f, 0x07826f00, 0x0385b020, 0x82700021, 0x85bc2007, 0x71002103, 0xc4200782, 0x00210385, 0x20078272, 0x210385c8, 0x07827300,
0x0385d320, 0x82740021, 0x85d52007, 0x75002103, 0xd7200782, 0x00210385, 0x20078276, 0x210385ed, 0x07827700, 0x0385f620, 0x00780025, 0x8509e200,
0x79002103, 0x21200782, 0x22200382, 0x7a208f82, 0x3d200782, 0x00210385, 0x2007827c, 0x21038589, 0x07827d00, 0x03859c20, 0x827e0021, 0x85bb2007,
0x7f002103, 0xc5200782, 0x00210385, 0x20078280, 0x250385ca, 0x00008100, 0x0385afe3, 0x82820021, 0x82b12007, 0x82b22003, 0x8283205f, 0x85f52007,
0x85002503, 0x3ce40000, 0x00210385, 0x20078286, 0x21038545, 0x07828700, 0x03824720, 0x2f824820, 0x07828820, 0x03856c20, 0x828a0021, 0x20cf8207,
0x21c782e4, 0x0b828b00, 0xe421ab82, 0x2023827b, 0x200b828d, 0x21038590, 0x07828f00, 0x0382a820, 0x1782a920, 0xf0201382, 0xf0290682, 0x00000002,
0xf0000092, 0x21038503, 0x07823901, 0x03820420, 0x17820520, 0x07829520, 0x03850620, 0x82960021, 0x82072007, 0x820e2003, 0x82972017, 0x82102007,
0x82132003, 0x829f200b, 0x85142007, 0x4a022103, 0x15200782, 0x00210385, 0x200782a3, 0x21038516, 0x07829401, 0x03821720, 0x2f821920, 0x0782a420,
0x03851a20, 0x825d0221, 0x851b2007, 0x60022103, 0x1c200782, 0x00210385, 0x200782a7, 0x2103851d, 0x07828101, 0x03851e20, 0xbb820020, 0x8221f021,
0x823e200b, 0x21c38247, 0x0b8240f0, 0x02210382, 0x20078252, 0x20038241, 0x20178244, 0x200782c7, 0x21038545, 0x07828901, 0x03854620, 0x82860121,
0x82472007, 0x824e2003, 0x82cb2023, 0x82502007, 0x825b2003, 0x82d3200b, 0x855c2007, 0xda002103, 0x93830782, 0x00210382, 0x200b82db, 0x2103855e,
0x0782df00, 0x66209f83, 0xe0202f82, 0x67200b82, 0x00210385, 0x20078207, 0x21038568, 0x0782e700, 0x03856920, 0x82060021, 0x826a2007, 0x826e2003,
0x82e8202f, 0x82702007, 0x827e2003, 0x82ed200b, 0x85802007, 0xfc002103, 0x83200782, 0x97820382, 0x82fd0021, 0x85872007, 0x9c012103, 0x88200782,
0x01210385, 0x8307829d, 0x210382c3, 0x0b820101, 0x03858a20, 0x82950021, 0x858b2007, 0x02012103, 0x8d200782, 0x8e240382, 0x03010000, 0x90200782,
0x91200382, 0x05200b82, 0x93200782, 0x2b820382, 0x82070121, 0x85962007, 0x27012103, 0x97200782, 0x00210385, 0x200782b6, 0x21038598, 0x07820a01,
0x9e207b83, 0x0b203b82, 0xa0200b82, 0xa1200382, 0x0e200b82, 0xa2200782, 0x01210385, 0x20078247, 0x200382a3, 0x201782ae, 0x20078210, 0x200382b0,
0x200b82b2, 0x2007821c, 0x200382c0, 0x200b82ce, 0x2007821f, 0x200382d0, 0x200b82d1, 0x2007822e, 0x200382d6, 0x200b82de, 0x20078230, 0x210385e0,
0x07823901, 0x0382e220, 0x1782e320, 0x07823a20, 0x0385e420, 0x829f0321, 0x85e52007, 0xf2002103, 0xe6200782, 0x01210385, 0x20078200, 0x200382e7,
0x202f82ee, 0x2007823c, 0x200382f0, 0x200b82f4, 0x20078244, 0x210385f5, 0x07824802, 0x0385f620, 0x82950121, 0x85f72007, 0x82012003, 0xf8f0219f,
0xfe200b82, 0x49232f82, 0x82f10000, 0x07f1214b, 0x50200b82, 0x08200b82, 0x02210385, 0x20078267, 0x20038209, 0x2017820b, 0x20078258, 0x2103850c,
0x07825e01, 0x03820d20, 0x17820e20, 0x07825b20, 0xf121f382, 0x200b8211, 0x200b825d, 0x21038512, 0x07827302, 0x03851420, 0x67820020, 0x8215f121,
0x2103820b, 0x0782f900, 0x03821820, 0x2f821c20, 0x07825f20, 0x03851d20, 0x82ac0021, 0x851e2007, 0x64012103, 0x20200782, 0x22200382, 0x65202382,
0x23200782, 0x01200385, 0xf121f082, 0x200b8224, 0x20178227, 0x20078268, 0x21038528, 0x07821600, 0x03852920, 0x826c0121, 0x852a2007, 0x02002103,
0x2b200782, 0x2e200382, 0x6d202f82, 0x30200782, 0x35200382, 0x71200b82, 0x37200782, 0x3a200382, 0x77200b82, 0x3d200782, 0x3e200382, 0x7b200b82,
0x40200782, 0x46200382, 0x7d200b82, 0x47200782, 0x01210385, 0x20078283, 0x20038248, 0x2017824e, 0x20078284, 0x20038250, 0x200b8254, 0x2007828b,
0x21038555, 0x07820400, 0x03825620, 0x00005924, 0x07829001, 0x03825b20, 0x0b825e20, 0x07829420, 0x03826020, 0x0121c782, 0x20078298, 0x20038275,
0x20178278, 0x2007829e, 0x82038282, 0xa201215b, 0x85200782, 0x88200382, 0xa4201782, 0x8e200782, 0x02210385, 0x8307825f, 0x2003824b, 0x214b8202,
0x0f8291f1, 0x23829320, 0x0782a820, 0x03859520, 0x82ab0121, 0x85962007, 0x4f012103, 0x97200782, 0x01210385, 0x200782ac, 0x21038599, 0x0782ad01,
0x03829c20, 0x3b829d20, 0x0782ae20, 0x07823383, 0x82b00121, 0x2103860b, 0x0b82b401, 0x0385b120, 0xf7830220, 0x0b82b220, 0x2f82b320, 0x0782b520,
0x0382b820, 0x0b82bb20, 0x0782b720, 0x0382c020, 0x0b82c920, 0xf1210f82, 0x200b82cd, 0x200b82ce, 0x200782c5, 0x210385d8, 0x0782c701, 0x0385d920,
0xda200b84, 0x03820b82, 0x82c80121, 0x85db2007, 0x83012003, 0x82dc20cb, 0x82de200b, 0x214b823b, 0x0b82e0f1, 0x0b82e620, 0x0782cc20, 0x0382ea20,
0x0b82ec20, 0x0782d320, 0x0385f620, 0x82d60121, 0x85f72007, 0x200b8403, 0x200b82f8, 0x202382f9, 0x200782d7, 0x210385fa, 0x07821700, 0x0382fb20,
0x1782fe20, 0x0000d924, 0x038200f2, 0x0b820120, 0x0782dd20, 0x03820420, 0x00000724, 0x0782df01, 0x03820a20, 0x0b820b20, 0x0782e320, 0xf2213382,
0x200b821e, 0x200b82e5, 0x20038221, 0x200b822d, 0x200782ed, 0x20038233, 0x820b8236, 0x38f2215b, 0x39200b82, 0x57820b82, 0x8240f221, 0x0049240b,
0x82000200, 0x854a2007, 0x09022103, 0x4d200782, 0x4e200382, 0x0a201782, 0x50200782, 0x02210385, 0x2007820f, 0x24038251, 0x0200005d, 0x2007820c,
0x2103856c, 0x07821902, 0x03827120, 0xbb757720, 0x78f22105, 0x03820b82, 0x7f830220, 0x0b827920, 0x17827a20, 0x7b200b83, 0x03820b82, 0x82b30221,
0x85832007, 0x83012003, 0x828b2047, 0x2103820b, 0x07822302, 0x03858c20, 0x8d200b84, 0x03820b82, 0x82240221, 0x858e2007, 0x200b8403, 0x200b8290,
0x20538291, 0x20078225, 0x21038592, 0x07820300, 0x03859520, 0x82050021, 0x859a2007, 0x27022103, 0x9c200782, 0x00210385, 0x200782dc, 0x2003829d,
0x203b829e, 0x20078228, 0x200382a0, 0x05af75a4, 0x82a7f221, 0x75a8200b, 0xf221057f, 0x200b82b4, 0x057375b6, 0x82b7f221, 0x2103820b, 0x07823302,
0x0385b920, 0x82340221, 0x85ba2007, 0x200b8403, 0x820b82bb, 0x35022103, 0xbc200782, 0x0b840385, 0x0b82bd20, 0x02210382, 0x20078236, 0x840385be,
0x82c0200b, 0x2103820b, 0x07829700, 0x0382c120, 0x6b82c220, 0x07823720, 0x0385c320, 0x82380221, 0x82c72007, 0x75ce2003, 0xf2210597, 0x200b82d0,
0x054375d3, 0x82d4f221, 0x2103820b, 0x07827902, 0x0382db20, 0x0221d382, 0x20078245, 0x210385e5, 0x07824702, 0x0385e720, 0x82480221, 0x85ea2007,
0x49022103, 0xed200782, 0x02210385, 0x2007824a, 0x200382f1, 0x205382f2, 0x2007824b, 0x200382f5, 0x200b82f6, 0x2007824d, 0x210385f9, 0x07824f02,
0x0385fe20, 0x00500225, 0x8202f300, 0x82052003, 0x82512023, 0x82092007, 0x820c2003, 0x8255200b, 0x851e2007, 0x59022103, 0x28200782, 0x02210385,
0x2007825a, 0x21038532, 0x0782b800, 0xf320db82, 0x0221d382, 0x200b825b, 0x82038258, 0x5d022107, 0x03860782, 0x82610221, 0x8560200b, 0x62022103,
0x03830782, 0x21069b74, 0x0f8281f3, 0x01210382, 0x20078242, 0x21038582, 0x07824301, 0x03828620, 0x83828720, 0x07826520, 0x03859020, 0x82670221,
0x85a52007, 0x68022103, 0xbe200782, 0xbf200382, 0x69202382, 0xc1200782, 0x02210385, 0x2007826b, 0x210385c5, 0x07826c02, 0x0385c920, 0x826d0221,
0x82cd2007, 0x82ce2003, 0x826e202f, 0x85d12007, 0x70022103, 0xdd200782, 0x02210385, 0x20078271, 0x210385e0, 0x07827202, 0x0385e520, 0x82730221,
0x85ed2007, 0x74022103, 0xfa200782, 0xfb200382, 0x75204782, 0xfd200782, 0x03210385, 0x2007829d, 0x250385ff, 0x00007702, 0x038506f4, 0x82780221,
0x85102007, 0x79022103, 0x22200782, 0x02210385, 0x2007827a, 0x21038524, 0x07827b02, 0x03823220, 0x53823420, 0x07827c20, 0x03853620, 0x827f0221,
0x82392007, 0x823a2003, 0x82802017, 0x853c2007, 0x82022103, 0x3f200782, 0x02210385, 0x20078283, 0x21038541, 0x07828402, 0x03854320, 0x82850221,
0x85452007, 0x86022103, 0x47200782, 0x02210385, 0x20078287, 0x2103854b, 0x07828802, 0x03854e20, 0x82890221, 0x85502007, 0x8a022103, 0x53200782,
0x02210385, 0x2007828b, 0x21038558, 0x07828c02, 0x03825c20, 0x8f825d20, 0x07828d20, 0x03855f20, 0x828f0221, 0x82612007, 0x82622003, 0x82902017,
0x85662007, 0x92022103, 0x68200782, 0x6d200382, 0x93201782, 0x70200782, 0x72200382, 0x99200b82, 0x74200782, 0x02210385, 0x2007829c, 0x20038277,
0x20178279, 0x2007829d, 0x2103857d, 0x07824901, 0x03827e20, 0x17827f20, 0x0782a020, 0x03828120, 0x0221f782, 0x200782a2, 0x82038284, 0xa40221c7,
0x9f830782, 0x02210382, 0x200b82a8, 0x2003828d, 0x202f828e, 0x200782a9, 0x20038290, 0x200b8294, 0x200782ab, 0x20038296, 0x200b8297, 0x200782b0,
0x2103859e, 0x0782b202, 0x0385a120, 0x9b830220, 0x0b82ad20, 0x02210382, 0x860782b3, 0xb4022103, 0xb8200b82, 0xba200382, 0xb5203b82, 0xbd200782,
0xbe200382, 0xb8200b82, 0xc0200782, 0xc2200382, 0xba200b82, 0xc4200782, 0x02200385, 0xcd201f83, 0xce200b82, 0x27821782, 0x82d3f421, 0x2103820b,
0x0782c002, 0x0382d620, 0x1782db20, 0x0782c120, 0x0382de20, 0x0b82df20, 0x0782c720, 0x0382e220, 0x0b82e320, 0x0782c920, 0x0385e620, 0x82310221,
0x00fa2407, 0x8209f500, 0x82cb2017, 0x82152007, 0x822b2003, 0x213f820b, 0x0b822cf5, 0x00210382, 0x20078214, 0x2003822d, 0x20178230, 0x820782f2,
0x82f52033, 0x83002003, 0x8232202b, 0x8235200f, 0x82f62017, 0x85362007, 0x13002103, 0x37200782, 0x40200382, 0x5b831782, 0x0b824120, 0x00210382,
0x20078205, 0x24038242, 0x03000091, 0x20078204, 0x20038293, 0x200b829d, 0x20078254, 0x2003829f, 0x200b82a2, 0x2007825f, 0x200382a4, 0x200b82a7,
0x20078263, 0x200382aa, 0x200b82b1, 0x20078267, 0x200382b3, 0x200b82b4, 0x2007826f, 0x200382b6, 0x200b82b8, 0x20078271, 0x200382ba, 0x200b82bd,
0x20078274, 0x200382bf, 0x240b82c5, 0xf5000078, 0x820382c7, 0x7f0321d3, 0xcd200782, 0xce200382, 0x84201782, 0xd0200782, 0xd2200382, 0x86200b82,
0xd7200782, 0x03210385, 0x20078289, 0x210385da, 0x07828a03, 0x0385dc20, 0x828b0321, 0x82de2007, 0x82df2003, 0x828c202f, 0x85e12007, 0x8e032103,
0xe4200782, 0x03210385, 0x2007828f, 0x210385e7, 0x07829003, 0x0385eb20, 0x82910321, 0x85ee2007, 0x92032103, 0xfc200782, 0xfd200382, 0x93244782,
0x01f60000, 0x03210385, 0x20078295, 0x21038504, 0x07829603, 0x03851020, 0x82970321, 0x85132007, 0x98032103, 0x19200782, 0x03210385, 0x20078299,
0x2103851f, 0x07829a03, 0x03852120, 0x829b0321, 0x82242007, 0x82252003, 0x829c205f, 0x82292007, 0x822a2003, 0x829e200b, 0x822e2007, 0x82302003,
0x82a0200b, 0x85372007, 0xa3032103, 0x3b200782, 0x3c200382, 0xa4201782, 0x41200782, 0x03210385, 0x200782a6, 0x21038544, 0x0782a703, 0x03854720,
0x82a80321, 0x854a2007, 0xa9032103, 0x4f200782, 0x03210385, 0x200782aa, 0x21038551, 0x0782ab03, 0x03825320, 0x53825520, 0x0782ac20, 0x03855820,
0x82af0321, 0x825d2007, 0x825e2003, 0x82b02017, 0x85622007, 0xb2032103, 0x64200782, 0x66200382, 0xb3201782, 0x69200782, 0x6b200382, 0xb6200b82,
0x6d200782, 0x03210385, 0x200782b9, 0x2103856f, 0x0782ba03, 0x03857420, 0x82bb0321, 0x85762007, 0xbc032103, 0x78200782, 0x79200382, 0xbd203b82,
0x7b200782, 0x7c200382, 0xbf200b82, 0x7f200782, 0x03210385, 0x200782c1, 0x20038281, 0x20178284, 0x200782c2, 0x20038287, 0x200b8289, 0x200782c6,
0x21038596, 0x0782c903, 0x03829820, 0x17829b20, 0x0782ca20, 0x0382a020, 0x0b82a120, 0x0782ce20, 0x0385a720, 0x82d00321, 0x85a92007, 0xd1032103,
0xad200782, 0x03210385, 0x830782d2, 0x82b720b7, 0x82d3202f, 0x829f830b, 0xd5032103, 0xbe200b82, 0x03210385, 0x200782d6, 0x210385c0, 0x0782d703,
0x0382c320, 0x2f82c420, 0x0782d820, 0x0385cf20, 0x82da0321, 0x85d12007, 0xdb032103, 0xd3200782, 0x03210385, 0x200782dc, 0x210385d5, 0x0782dd03,
0x0385d720, 0x82de0321, 0x85d92007, 0xdf032103, 0xdd200782, 0x13820382, 0x82e00321, 0x82e22007, 0x82e32003, 0x2007835f, 0x820b82e6, 0xe4032103,
0xe8200782, 0x03210385, 0x200782e5, 0x200382ec, 0x202382ed, 0x200782e6, 0x200382f0, 0x830b82f2, 0x82fa201f, 0x2103820b, 0x0782eb03, 0x0385fc20,
0x2b830320, 0x0000ff24, 0x238200f7, 0xf7213382, 0x240b820b, 0x0300000c, 0x200782ef, 0x2103850e, 0x0782f103, 0x03821420, 0x00001523, 0x214b8203,
0x0b8217f7, 0x03210382, 0x200782f4, 0x2103851e, 0x0782f503, 0x03852220, 0x82f60321, 0x82282007, 0x82292003, 0x82f7202f, 0x852b2007, 0xf9032103,
0x2e200782, 0x2f200382, 0x87821782, 0x823bf721, 0x823d200b, 0x218b820b, 0x0b8240f7, 0x03200382, 0x43208b83, 0x03820b82, 0x93820420, 0x8247f721,
0x2103820b, 0x07820104, 0x03854d20, 0x82020421, 0x85532007, 0x03042103, 0x56200782, 0x04200385, 0xf7213082, 0x240b825a, 0x0400005b, 0x20078205,
0x2003825e, 0x200b825f, 0x20078207, 0x21038569, 0x07820904, 0x03856b20, 0x820a0421, 0x82722007, 0x82732003, 0x820b2023, 0x827c2007, 0x687d2003,
0xf72105fb, 0x200b8280, 0x200b8281, 0x2007820f, 0x20038283, 0x200b8284, 0x20078211, 0x20038286, 0x200b8288, 0x20078213, 0x2103858c, 0x07821604,
0x03829320, 0x17829420, 0x07821720, 0x03859620, 0x82190421, 0x859c2007, 0x1a042103, 0x9f200782, 0xa0200382, 0x1b202382, 0xa2200782, 0x04210385,
0x2007821d, 0x200382a4, 0x201782a6, 0x2007821e, 0x200382a9, 0x058f68ab, 0x82adf721, 0x82ae200b, 0x8224200b, 0x82b52007, 0x82b62003, 0x8226200b,
0x82b92007, 0x82ba2003, 0x8228200b, 0x85bd2007, 0x2a042103, 0xbf200782, 0xc0200382, 0x2b201782, 0xc2200782, 0x04210385, 0x2007822d, 0x200382c4,
0x201782c5, 0x2007822e, 0x200382c9, 0x200b82ca, 0x20078230, 0x200382cc, 0x200b82ce, 0x20078232, 0x210385d0, 0x07823504, 0x0385d220, 0x82360421,
0x82d72007, 0x82da2003, 0x82372023, 0x82e42007, 0x82e62003, 0x823b200b, 0x85ec2007, 0x3e042103, 0xef200782, 0x04210385, 0x2007823f, 0x210385f2,
0x07824004, 0x0385f520, 0x82410421, 0x85f72007, 0x42042103, 0xfa200782, 0xfb200382, 0x43244782, 0x02f80000, 0x04210385, 0x20078245, 0x20038205,
0x20178207, 0x20078246, 0x2103850a, 0x0782a300, 0x03850b20, 0x82820021, 0x850c2007, 0x20178403, 0x820b820d, 0x49042103, 0x0f200782, 0x10240382,
0x4a040000, 0x12200782, 0x04210385, 0x2007824c, 0x20038215, 0x05cf6716, 0x8218f821, 0x2103820b, 0x07824f04, 0x03822820, 0x17822a20, 0x07825020,
0x03852f20, 0x82530421, 0x20cf8207, 0x210382f8, 0x0b825404, 0x03824b83, 0x82550421, 0x824b830b, 0x56042103, 0x33830b82, 0x04210382, 0x830b8257,
0x21038233, 0x0b825804, 0x03856320, 0x82590421, 0x856d2007, 0x5a042103, 0x79200782, 0x04210385, 0x2007825b, 0x2003827b, 0x2077827d, 0x2007825c,
0x82038281, 0x5f0421d3, 0x84200782, 0x87200382, 0x61201782, 0x91200782, 0x04210385, 0x20078265, 0x21038597, 0x07826604, 0x0382c020, 0x2382c120,
0x07826720, 0x0385cc20, 0x82690421, 0x85d92007, 0x6a042103, 0xe5200782, 0x02210385, 0x20078219, 0x250385ff, 0x01006b04, 0x03847ff1, 0x03030026,
0x08f30100, 0x00220384, 0x07820604, 0x03840d20, 0x3e030022, 0x0e200782, 0x00220384, 0x07823f03, 0x03840f20, 0x40030022, 0x10200782, 0x00220384,
0x07821901, 0x00220385, 0x0b82a501, 0x03842120, 0x3b020022, 0x26200782, 0x00220384, 0x07820004, 0x03842720, 0xfe030022, 0x2d200782, 0x00220384,
0x07824a04, 0x03843120, 0xc3020022, 0x32200782, 0x00220384, 0x0782ba01, 0x03843620, 0x4e040022, 0x4b200782, 0x00210384, 0x83a38301, 0x004e240f,
0x82870300, 0x844f2013, 0x200b8503, 0x230b8268, 0x04000068, 0x6a202b83, 0x6a200b82, 0x25202382, 0x74200782, 0x00220384, 0x07824802, 0x03847720,
0xca020022, 0x78200782, 0x00220384, 0x07823d03, 0x03848120, 0xe9000022, 0x82200782, 0x00220384, 0x0782db01, 0x03849320, 0xaf010022, 0x97200782,
0x00220384, 0x0782c102, 0x03849920, 0x6d020022, 0x9e200782, 0x00220384, 0x07829800, 0x03849f20, 0x83010021, 0x82a72043, 0x00a7240b, 0x82ad0000,
0x84a82007, 0x03002203, 0x83078202, 0x82ad200f, 0x82a2209b, 0x84b2200b, 0x02002203, 0x200782e8, 0x220384b5, 0x82930000, 0x84c02007, 0x02002203,
0x8307827e, 0x00c1246f, 0x82640100, 0x84c2200b, 0x04002203, 0x20078234, 0x220384c3, 0x82f00300, 0x84c52007, 0x03002203, 0x20078262, 0x220384c6,
0x82060100, 0x84c82007, 0x02002203, 0x20078289, 0x220384ca, 0x827d0300, 0x84cd2007, 0x01002203, 0x200782ea, 0x220384d0, 0x828f0200, 0x84d32007,
0x02002203, 0x2007828e, 0x220384d4, 0x82ec0300, 0x84d62007, 0x03002103, 0xd920d783, 0xd9200b82, 0xaa20bf82, 0xdb200782, 0x00220384, 0x0782ba03,
0x0384e020, 0xa3000022, 0xe2200782, 0x00220384, 0x0782b201, 0x0384e520, 0x49010022, 0xe8200782, 0x00220384, 0x07825503, 0x0384eb20, 0x0b030022,
0xf4200782, 0x00220384, 0x0782ac00, 0x0384f720, 0xb3000026, 0x08f40100, 0x00210384, 0x217f8203, 0x0b8209f4, 0x00000924, 0x0782dd03, 0x03840e20,
0x82030021, 0x15f4214f, 0x15200b82, 0xdc201782, 0x1f200782, 0x00220384, 0x07823a03, 0x03844120, 0xec000022, 0x4d200782, 0x00220384, 0x07829c01,
0x03844e20, 0x9d010022, 0x51200782, 0x00220384, 0x0782e702, 0xf4219382, 0x83478255, 0x8264204f, 0x0064240f, 0x82970000, 0x84652007, 0x02002203,
0x200782d1, 0x2103847b, 0xdf820300, 0x8280f421, 0x8280200b, 0x208b832f, 0x240b8289, 0x02000089, 0x200782aa, 0x2203848e, 0x82680200, 0x84942007,
0x04002203, 0x20078221, 0x22038499, 0x82950000, 0x849a2007, 0x200b8503, 0x200b829b, 0x206b829b, 0x83078295, 0x869c209f, 0x82a1200b, 0x00a1240f,
0x82400100, 0x84a32007, 0x01002203, 0x200782ce, 0x220384a7, 0x82c90000, 0x84a92007, 0x02002203, 0x20078250, 0x220384ac, 0x82b30200, 0x84b22007,
0x00002203, 0x83078204, 0x82b3200f, 0x820c2047, 0x84bb200b, 0x01002203, 0x20078258, 0x220384bc, 0x821d0100, 0x84be2007, 0x01002203, 0x20078226,
0x220384bf, 0x82e50200, 0x84c02007, 0x200b8503, 0x200b82c1, 0x209b82c1, 0x200782f8, 0x220384c2, 0x82f90000, 0x84c42007, 0x01002103, 0xc520eb83,
0xc5200b82, 0x74206b82, 0xc6200782, 0x00210384, 0x200b8301, 0x240b82cb, 0x020000cb, 0x2007825a, 0x220384cc, 0x82030100, 0x84cd2007, 0x02002203,
0x2007821f, 0x220384ce, 0x82250100, 0x84cf2007, 0x03002203, 0x20078207, 0x220384d4, 0x82b50000, 0x84d62007, 0x02002203, 0x200782de, 0x220384dc,
0x82f10300, 0x84de2007, 0x01002203, 0x20078209, 0x220384df, 0x824d0400, 0x84e02007, 0x01002203, 0x200782b1, 0x220384e1, 0x822c0400, 0x84e22007,
0x01002203, 0x2007820f, 0x220384e6, 0x82920200, 0x84f02007, 0x01002203, 0x830782d3, 0x82f12057, 0x826f20b3, 0x84f6200b, 0x00002203, 0x200782a1,
0x250384f7, 0x00fd0000, 0xea82f501, 0x00220382, 0x0b82f100, 0x03840120, 0x64020022, 0x04200782, 0x00220384, 0x07824b02, 0x03840820, 0xaf000022,
0x0a200782, 0x00220384, 0x0782b000, 0x03840b20, 0x83020021, 0x820c2043, 0x820c200b, 0x82d22008, 0x840d2007, 0x00002203, 0x20078294, 0x22038411,
0x82fe0000, 0x84122007, 0x00002203, 0x200782ab, 0x21038413, 0x43830100, 0x0b821420, 0x3b821420, 0x07824720, 0x03841520, 0xd6010022, 0x16200782,
0x00220384, 0x0782b600, 0x03841720, 0x20010022, 0x18200782, 0x00220384, 0x0782a901, 0x03842520, 0xeb000022, 0x27200782, 0x00220384, 0x07821a01,
0x03842820, 0xe3030022, 0x2c200782, 0x00220384, 0x07829703, 0x03843420, 0x5e010022, 0x35200782, 0x0b850384, 0x47247b83, 0xad030000, 0x49201382,
0x00220384, 0x0782be03, 0x03844a20, 0xb7020022, 0x4b200782, 0x00220384, 0x0782b803, 0x03844c20, 0xbd030022, 0x4d200782, 0x00220384, 0x0782cd03,
0x03844e20, 0xe4030022, 0x53200782, 0x00220384, 0x0782a400, 0x03846b20, 0x0f010022, 0x6e200782, 0x00220384, 0x0782de02, 0x03847120, 0xf2030022,
0x75200782, 0x00220384, 0x0782e901, 0x03847720, 0xf4030022, 0x7b200782, 0x00220384, 0x07820901, 0x03847d20, 0x5b040022, 0x82200782, 0x00220384,
0x07823901, 0x03848820, 0x03010022, 0x8a200782, 0x00210384, 0x207f8302, 0x200b828b, 0x20d7828b, 0x20078269, 0x2203848c, 0x82da0100, 0x84952007,
0x04002103, 0x9620f783, 0x96240b82, 0x14020000, 0xab830782, 0xbf43a420, 0xa5f52105, 0xa5200f82, 0x67201782, 0xa8200782, 0x00220384, 0x0782b700,
0x0384a920, 0xd5010022, 0xaa200782, 0x00220384, 0x07822601, 0x0384b120, 0x83040021, 0x82b4206b, 0x00b4240b, 0x820e0100, 0x84b62007, 0x203b8503,
0x200b82b7, 0x201782b7, 0x200782b1, 0x220384b8, 0x82e50200, 0x84b92007, 0x01002103, 0xbb209783, 0xbb200b82, 0xc0202382, 0xbf200782, 0x00220384,
0x0782f800, 0x0384c120, 0xf9000022, 0xcb200782, 0x00220384, 0x07829401, 0x0384ce20, 0x93833b85, 0xb382d520, 0x13824220, 0x0384d620, 0x41020022,
0xd8200782, 0x00220384, 0x0782a900, 0x0384d920, 0x9d000022, 0xe9200782, 0x00220384, 0x0782f200, 0x0384ea20, 0x82010021, 0xfaf5217a, 0xfa200b82,
0x21234782, 0x82f60100, 0x2103820f, 0x53820300, 0x8201f621, 0x2120820f, 0x07825b03, 0x03840220, 0x4a030022, 0x03200782, 0x00220384, 0x07824303,
0x03840420, 0x44030022, 0x05200782, 0x00220384, 0x07824503, 0x03840620, 0x47030022, 0x09200782, 0x00220384, 0x0782c502, 0x03840a20, 0x73030022,
0x0d200782, 0x00220384, 0x07824603, 0x03841020, 0x61010022, 0x17200782, 0x00220384, 0x07825703, 0x03841820, 0x59030022, 0x19200782, 0x00220384,
0x07825803, 0x03841b20, 0x4b030022, 0x1c200782, 0x00220384, 0x07824d03, 0x03841d20, 0x4c030022, 0x20200782, 0x00210384, 0x20438303, 0x240b8222,
0x03000022, 0x20078270, 0x22038426, 0x823c0300, 0x842b2007, 0x03002203, 0x20078280, 0x2203842c, 0x82410300, 0x842d2007, 0x03002203, 0x2007826f,
0x2203842e, 0x827b0300, 0x84332007, 0x03002203, 0x2007823b, 0x22038436, 0x82630300, 0x84422007, 0x01002203, 0x2007825f, 0x22038444, 0x82640300,
0x84812007, 0x02002203, 0x200782f7, 0x22038486, 0x82fe0100, 0x848a2007, 0x04002203, 0x2007823a, 0x2203848d, 0x82e20100, 0x84902007, 0x03002203,
0x20078271, 0x22038491, 0x824a0100, 0x84962007, 0x01002203, 0x200782b9, 0x22038497, 0x828f0300, 0x84982007, 0x01002203, 0x200782b8, 0x2203849a,
0x822f0100, 0x849c2007, 0x03002203, 0x200782f6, 0x220384a2, 0x82e80100, 0x84a62007, 0x03002203, 0x200782a3, 0x220384aa, 0x82f00200, 0x84ab2007,
0x00002203, 0x200782df, 0x220384ac, 0x82a90200, 0x84ad2007, 0x03002203, 0x2007820f, 0x220384b2, 0x82e10100, 0x84b42007, 0x04002203, 0x20078255,
0x220384b6, 0x82160300, 0x84bd2007, 0x04002203, 0x20078238, 0x220384bf, 0x823e0200, 0x84c12007, 0x02002203, 0x2007823f, 0x220384cc, 0x82fd0100,
0x84ce2007, 0x03002203, 0x20078224, 0x220384d0, 0x82c40300, 0x84d22007, 0x00002203, 0x830782f7, 0x00e1246f, 0x82730100, 0x84e3200b, 0x00002203,
0x200782a5, 0x220384eb, 0x826d0300, 0x84ec2007, 0x03002203, 0x8307826c, 0x00f024cf, 0x822b0400, 0x84fb200b, 0x03002103, 0xf7232f82, 0x820100e0,
0x01002203, 0x2007825e, 0x850384e1, 0x82e2200b, 0x82e2200b, 0x2017835f, 0x200b82e3, 0x200b86e3, 0x200b82e4, 0x200b86e4, 0x240b82e5, 0x020000e5,
0x2007828d, 0x850384e6, 0x82e7200b, 0x86e7200b, 0x82e82017, 0x86e8200b, 0x82e9200b, 0x86e9200b, 0x82ea200b, 0x86ea200b, 0x82eb200b, 0x85eb200b,
0x0df9230b, 0x03820100, 0x95000022, 0x0e200782, 0x0b850384, 0x0b821620, 0x00001624, 0x07820603, 0x03841a20, 0x11020022, 0x23200782, 0x00220384,
0x07824803, 0x03842920, 0x49030022, 0x41200782, 0x00220384, 0x07822b03, 0x03844220, 0x1b040022, 0x43200782, 0x00220384, 0x07821c04, 0x03844420,
0x47020022, 0x4e200782, 0x00220384, 0x07827d02, 0x03845320, 0x3c040022, 0x55200782, 0x00220384, 0x07821404, 0x03845a20, 0x83040021, 0x82772037,
0x0077240b, 0x82d50200, 0x84902007, 0x00002203, 0x20078289, 0x2203849b, 0x82e70300, 0x84a62007, 0x03002203, 0x200782ee, 0x210384b4, 0x23830300,
0x0b82b720, 0xcb82b720, 0x07828120, 0x0384cd20, 0xa3010022, 0xe0200782, 0x00220384, 0x07828b03, 0x0384e120, 0xe620fb85, 0xe6200b82, 0xc9202f82,
0xe9200782, 0x00220384, 0x07827001, 0x0384ea20, 0xad020022, 0xec200782, 0x00220384, 0x07829a02, 0x0384ed20, 0x8a010022, 0xef200782, 0x00220384,
0x07827501, 0x0384f020, 0x83030021, 0x82f220cb, 0x00f2240b, 0x82f30000, 0x22038507, 0x82460100, 0x84f9200b, 0x02002203, 0x200782e0, 0x220384fb,
0x82f50300, 0x84fc2007, 0x00002203, 0x2007824b, 0x260384fe, 0x00050300, 0x8479fa01, 0x02002203, 0x20078291, 0x2203847a, 0x82450100, 0x84802007,
0x00002203, 0x83078217, 0x8291201b, 0x82d720bf, 0x849b200b, 0x03002203, 0x2007820c, 0x210384b6, 0x8b820200, 0x82c1fa21, 0x82c1200b, 0x00962223,
0x9a958203, 0x00012802, 0x01000404, 0x18170101, 0x831507a7, 0x1c633d1a, 0x1c00eb05, 0x1c01ec05, 0x1c02ed05, 0x1c03ee05, 0x1e04ef05, 0xe61e0f0a,
0x641e0f4a, 0x442b0782, 0x8b050f8a, 0x00001d0d, 0x820f2f37, 0x06402205, 0x27058211, 0x001d0600, 0x124f460a, 0x0c2c3882, 0x1ae51e00, 0x1e030c2f,
0x0cffa625, 0x00283982, 0x5f125319, 0x0a1e8b8b, 0x0c2a0886, 0x02690407, 0x0c000100, 0x69181300, 0x30081624, 0x00370031, 0x00440043, 0x00460045,
0x00480047, 0x004a0049, 0x004c004b, 0x004e004d, 0x0050004f, 0x00520051, 0x00540053, 0x00560055, 0x00580057, 0xc2a41859, 0xb9080708, 0x0073006d,
0x008e0087, 0x009f0096, 0x00bd00a9, 0x00d700ca, 0x01fc00ed, 0x0120010b, 0x013d012e, 0x015b014f, 0x017e0166, 0x01950189, 0x01aa019e, 0x01b201ae,
0x01c801be, 0x01e501d3, 0x02f501f0, 0x02070200, 0x0217020b, 0x02350227, 0x0256024a, 0x026b025f, 0x02860279, 0x029b028f, 0x02b202a6, 0x02c402b8,
0x02de02cd, 0x02f502e8, 0x030603fe, 0x03240319, 0x033a032e, 0x034b033d, 0x03660355, 0x0377036e, 0x038e0384, 0x03a00397, 0x03b203aa, 0x03c603bd,
0x03d703d1, 0x03f003df, 0x040804f5, 0x04200415, 0x0436042d, 0x04480440, 0x0455044f, 0x04740468, 0x04980487, 0x04ae04a5, 0x04ca04b9, 0x04e204dd,
0x04f704f2, 0x05ff04fb, 0x05140503, 0x0529051f, 0x0533052e, 0x055e0548, 0x056d0567, 0x05760571, 0x057f057b, 0x058c0587, 0x05ab059e, 0x05bd05b9,
0x05cb05c1, 0x05df05d5, 0x05f005ea, 0x05fa05f7, 0x060206fe, 0x060f060a, 0x06190615, 0x0623061d, 0x0638062e, 0x064e0642, 0x06660659, 0x0671066a,
0x067c0677, 0x068d0681, 0x06a6069f, 0x06cc06b3, 0x06e606d9, 0x06f206ee, 0x07fb06f7, 0x070e0702, 0x071f071a, 0x0738072b, 0x074f0743, 0x0767075b,
0x07810776, 0x078e078b, 0x07a30798, 0x07b507ab, 0x07c007ba, 0x07cd07c8, 0x07e307df, 0x07eb07e7, 0x08f707ee, 0x0810080b, 0x0824081d, 0x0831082b,
0x0847083b, 0x085b084e, 0x086c0861, 0x088b087a, 0x08a00894, 0x08a808a3, 0x08b908b0, 0x08da08d1, 0x090a09f4, 0x09160910, 0x0920091b, 0x0932092c,
0x0940093d, 0x0952094a, 0x096d095d, 0x0989097c, 0x09a90998, 0x09ca09bb, 0x09e009db, 0x09f009e6, 0x0aff09f6, 0x0a160a11, 0x0a1f0a1a, 0x0a2c0a24,
0x0a390a30, 0x0a4a0a44, 0x0a550a4e, 0x0a690a5c, 0x0a770a72, 0x0a860a81, 0x0a9a0a90, 0x0aac0aa2, 0x0ac40ab7, 0x0ad10ac8, 0x0ae00ad8, 0x0af60af1,
0x0b010bfa, 0x0b0e0b09, 0x0b2d0b17, 0x0b4b0b3d, 0x0b610b56, 0x0b6d0b69, 0x0b7f0b77, 0x0b9c0b8c, 0x0bb50ba7, 0x0bc80bbd, 0x0bdf0bd3, 0x0bf30be8,
0x0c080cfd, 0x0c1a0c10, 0x0c2d0c20, 0x0c440c3a, 0x0c560c4f, 0x0c660c5c, 0x0c780c70, 0x0c870c7f, 0x0c9d0c95, 0x0caa0ca1, 0x0cbc0cb8, 0x0cd10cc7,
0x0ce00cd5, 0x0cef0ce9, 0x0d050dfb, 0x0d1b0d15, 0x0d340d23, 0x0d4d0d3a, 0x0d720d61, 0x0d8b0d85, 0x0da10d99, 0x0dba0da9, 0x0dcf0dc4, 0x0de10dd5,
0x0efd0dee, 0x0e130e09, 0x0e390e28, 0x0e510e40, 0x0e720e60, 0x0e880e7b, 0x0e9a0e92, 0x0eac0ea4, 0x0eba0eb0, 0x0ed40ec8, 0x0ffc0ee9, 0x0f160f0a,
0x0f2a0f1f, 0x0f460f39, 0x0f650f55, 0x0f770f71, 0x0f7e0f7a, 0x0f8c0f89, 0x0fa70f9d, 0x0fba0fb1, 0x0fd60fc7, 0x0ff40fe6, 0x10ff0ffc, 0x100c1007,
0x1013100f, 0x101f1018, 0x10261022, 0x1032102a, 0x1043103a, 0x105c104d, 0x10711066, 0x1085107b, 0x1097108e, 0x10ae10a3, 0x10c610bf, 0x10d610cf,
0x10f310e1, 0x11fd10f7, 0x110a1100, 0x1117110e, 0x1125111b, 0x1134112f, 0x1148113d, 0x115e1152, 0x11711168, 0x1185117b, 0x1195118e, 0x11a91198,
0x11bd11b4, 0x11d311cc, 0x11e211d7, 0x12f711ec, 0x12071202, 0x1212120b, 0x122b1220, 0x12421237, 0x1257124c, 0x12761265, 0x1286127c, 0x1295128c,
0x12a2129f, 0x12b312a7, 0x12d512bf, 0x12f012e1, 0x130a13fd, 0x131e1312, 0x1337132c, 0x134a133c, 0x13681359, 0x137e1375, 0x1390138c, 0x13a8139d,
0x13be13b2, 0x13d113c8, 0x13dd13db, 0x14f813ea, 0x14141406, 0x1423141c, 0x1430142d, 0x14431437, 0x145a144e, 0x14791469, 0x14a21491, 0x14b514ae,
0x14d514bf, 0x14e214dd, 0x15fc14f0, 0x15121505, 0x152a151e, 0x153d1535, 0x15541544, 0x157e156e, 0x15a21591, 0x15ac15a8, 0x15c215b3, 0x15df15d1,
0x15f415eb, 0x160216fd, 0x1615160a, 0x1624161e, 0x163f162d, 0x165b164f, 0x1664165e, 0x166d166a, 0x167e1675, 0x16911687, 0x16a01698, 0x16b316a9,
0x16c516ba, 0x16dc16d0, 0x17f916e5, 0x17121708, 0x17231718, 0x1734172d, 0x17401737, 0x17501747, 0x176c175c, 0x17861780, 0x179d1792, 0x17b017ab,
0x17d017bc, 0x17e317d6, 0x18fc17ed, 0x183e181c, 0x1857184f, 0x186d1861, 0x187e1872, 0x18931889, 0x18a9189f, 0x18be18b4, 0x18ce18c6, 0x18e618db,
0x19fb18f0, 0x191d1913, 0x192d1926, 0x193d1930, 0x195f194e, 0x19761967, 0x19991984, 0x19a1199c, 0x19b919ad, 0x19d119c6, 0x19e519d9, 0x19f819f2,
0x1a101afd, 0x1a341a2b, 0x1a451a3e, 0x1a531a4c, 0x1a621a5e, 0x1a701a67, 0x1a811a7c, 0x1a951a89, 0x1aa71aa2, 0x1ac01abc, 0x1ade1acc, 0x1b051bf1,
0x1b211b12, 0x1b3e1b2e, 0x1b4e1b48, 0x1b5b1b53, 0x1b761b67, 0x1b881b7a, 0x1b9f1b94, 0x1bb91ba9, 0x1bd11bc7, 0x1be41bdb, 0x1cf61bec, 0x1c0c1c03,
0x1c201c16, 0x1c351c2b, 0x1c451c3d, 0x1c5f1c4f, 0x1c7b1c74, 0x1c931c84, 0x1ca21c98, 0x1cb71cb1, 0x1cc81cbc, 0x1cd11ccc, 0x1cde1cd5, 0x1cef1ce7,
0x1d011df7, 0x1d0f1d09, 0x1d231d1a, 0x1d2e1d2a, 0x1d3d1d36, 0x1d591d4f, 0x1d6a1d61, 0x1d7f1d79, 0x1da41d95, 0x1dc01db5, 0x1ddb1dd2, 0x1df01de2,
0x1e061eff, 0x1e101e0b, 0x1e2e1e1e, 0x1e421e3c, 0x1e581e4d, 0x1e681e5d, 0x1e711e6d, 0x1e8a1e7f, 0x1e961e91, 0x1eaa1ea4, 0x1ebb1eb4, 0x1eca1ec5,
0x1ee11ed5, 0x1eea1ee5, 0x1ffc1ef4, 0x1f1c1f08, 0x1f301f2a, 0x1f461f3b, 0x1f621f58, 0x1f761f72, 0x1f921f83, 0x1fae1f9f, 0x1fc41fb9, 0x1fe31fd0,
0x200220f4, 0x2013200f, 0x2027201c, 0x2037202b, 0x20532046, 0x206d205f, 0x20832077, 0x209a208c, 0x20bc20a8, 0x20dc20cc, 0x210121f2, 0x21202110,
0x214c2137, 0x215e215a, 0x217c216b, 0x218e2183, 0x21a1219c, 0x21af21a6, 0x21d121bd, 0x21ea21db, 0x220a22fb, 0x222b221f, 0x2241223b, 0x22542246,
0x226d2265, 0x2286227a, 0x2297228e, 0x22a7229e, 0x22c322b4, 0x22db22cf, 0x22f322e8, 0x230b23fc, 0x23192316, 0x23292320, 0x233e232e, 0x235b234e,
0x23742365, 0x238d2380, 0x239c2397, 0x23b723aa, 0x23d523c5, 0x23f223e7, 0x24fa23f6, 0x240f240a, 0x24222417, 0x2433242b, 0x24552443, 0x246c2461,
0x248a2477, 0x2499248f, 0x24a424a0, 0x24b624aa, 0x24c524bb, 0x24e224d1, 0x24f124e7, 0x250b25fe, 0x25242518, 0x25342530, 0x254b253e, 0x255d254f,
0x2571256c, 0x258f257d, 0x25a6259b, 0x25c125ba, 0x25cb25c6, 0x25e225cf, 0x25ed25e7, 0x260326f5, 0x2610260a, 0x262a2612, 0x263f262f, 0x26692653,
0x26842677, 0x26a5268e, 0x26c326be, 0x26e826d7, 0x27fe26f5, 0x2714270a, 0x2726271a, 0x273b272e, 0x274f2745, 0x27572752, 0x276a2761, 0x27792772,
0x2782277c, 0x27972790, 0x27a8279f, 0x27b327ad, 0x27c527bb, 0x27d727d2, 0x27ef27dc, 0x28ff27fb, 0x28142807, 0x281d2819, 0x2831282b, 0x28462841,
0x2858284c, 0x286b285f, 0x28842877, 0x28932888, 0x28b028a1, 0x28cd28ba, 0x28e328db, 0x28f128eb, 0x290629fd, 0x2917290d, 0x292b291b, 0x2947293a,
0x2950294c, 0x2966295d, 0x2976296a, 0x298d2983, 0x29a02993, 0x29b029a8, 0x29c529bd, 0x29db29ca, 0x29f429e8, 0x2a112afe, 0x2a222a17, 0x2a372a2d,
0x2a432a3e, 0x2a502a49, 0x2a692a59, 0x2a7a2a71, 0x2a8f2a88, 0x2aa52a97, 0x2ac62ab2, 0x2ad72acc, 0x2af12aea, 0x2b032bf9, 0x2b1b2b09, 0x2b362b25,
0x2b472b3b, 0x2b582b52, 0x2b7c2b6d, 0x2b892b82, 0x2b972b8c, 0x2baf2b9d, 0x2bc92bbc, 0x2bd82bcf, 0x2beb2be6, 0x2c002cf5, 0x2c1b2c0d, 0x2c372c2d,
0x2c4f2c42, 0x2c642c59, 0x2c762c73, 0x2c852c7b, 0x2ca02c96, 0x2cb82caa, 0x2cd92cc4, 0x2dfa2cec, 0x2d112d06, 0x2d242d1a, 0x2d412d33, 0x2d542d4d,
0x2da02d86, 0x2dcc2db9, 0x637865d1, 0x616d616c, 0x6e6f6974, 0x68736168, 0x64676174, 0x616c6c6f, 0x69732d72, 0x31306e67, 0x35343332, 0x39383736,
0x7373656c, 0x6168742d, 0x7571656e, 0x67736c61, 0x74616572, 0x11847265, 0x62613c08, 0x66656463, 0x6a696867, 0x6e6d6c6b, 0x7271706f, 0x76757473,
0x7a797877, 0x6f72657a, 0x6469772d, 0x732d6874, 0x65636170, 0x63756166, 0x6f687465, 0x2d657375, 0x6d696863, 0x8279656e, 0x646e2d1e, 0x7274776f,
0x656c6961, 0x63616272, 0x69215582, 0x2b078661, 0x6f626d75, 0x69742d78, 0x65757373, 0x64307a82, 0x6c6f682d, 0x676e6964, 0x64656d2d, 0x6c616369,
0x59821384, 0x826b7221, 0x250c839e, 0x75622d73, 0x0c876262, 0x6b616823, 0x22c68265, 0x826c706d, 0x826c2006, 0x852284dc, 0x220e8415, 0x82646165,
0x8264201f, 0x756f248c, 0x8d686867, 0x732d210e, 0x6d23238d, 0x896b7361, 0x69762422, 0x8d737572, 0x20d582c9, 0x2b118572, 0x7470616c, 0x756c706f,
0x2d73676e, 0x70212884, 0x360e8265, 0x72612d65, 0x73776f72, 0x66656c2d, 0x69722d74, 0x70746867, 0x866e616c, 0x7570239b, 0xd787706d, 0x73290b84,
0x7370616f, 0x6c656968, 0x23438564, 0x6b6e6973, 0x5a821384, 0x74617727, 0x322d6863, 0x20818230, 0x23a78570, 0x726f7473, 0x742b4986, 0x656c696f,
0x61702d74, 0x85726570, 0x2099831c, 0x840a8573, 0x8a04848e, 0x7365250f, 0x74736576, 0x35820383, 0x65215982, 0x2aa98473, 0x6572742d, 0x642d646e,
0x8b6e776f, 0x7075210f, 0x753e0d85, 0x72662d70, 0x622d6d6f, 0x6b636172, 0x75617465, 0x61727473, 0x69732d6c, 0x61626e67, 0x08857468, 0x63746925,
0x856e696f, 0x6c6f240b, 0x836c2d74, 0x696e34f6, 0x6163676e, 0x6172656d, 0x746f722d, 0x63657461, 0x84696465, 0x68632b23, 0x2d747261, 0x756c6f63,
0x0b856e6d, 0x6e616728, 0x6c637474, 0xcd827061, 0x616f622e, 0x6c636472, 0x7265766f, 0x65646f63, 0x6d202782, 0x65208b82, 0x66230b84, 0x846b726f,
0x75702808, 0x722d6c6c, 0x82757165, 0x204882d2, 0x277c856f, 0x7a757263, 0x6f726965, 0x64236584, 0x84676e6f, 0x6c653e08, 0x74617665, 0x6966726f,
0x7265746c, 0x7269632d, 0x2d656c63, 0x72616d78, 0x6f6c666b, 0x24b88672, 0x6e617266, 0x222f8463, 0x82617567, 0x28aa850b, 0x686e7567, 0x73646e61,
0x829c842d, 0x05fb41d1, 0x65737522, 0x64293782, 0x2d6e6169, 0x65707572, 0x22378465, 0x8470696b, 0x616c2207, 0x213c8572, 0xf482696c, 0x23071841,
0x616e616d, 0x2a052e41, 0x6b73616d, 0x6361662d, 0x82696d65, 0x697328c4, 0x616e6e67, 0x84617269, 0x61702c3b, 0x61726f6e, 0x6570616d, 0x86746573,
0x73652112, 0x6982d085, 0x68616922, 0x73212684, 0x31318274, 0x6d697473, 0x6e696c65, 0x72757465, 0x6873696b, 0x45876c2d, 0x75617625, 0x8277746c,
0x6d2d26b7, 0x63696761, 0x083d432d, 0x850b9443, 0x726324c9, 0x856b6361, 0x066f430a, 0x6e656322, 0x2a08a785, 0x73756c70, 0x6e696d2d, 0x61737375,
0x6f626c69, 0x65737461, 0x6f697463, 0x7268736e, 0x62706d69, 0x697a6172, 0x6e61696c, 0x4265722d, 0x64230611, 0x82676169, 0x6e2d24bd, 0x87747865,
0x72702a0b, 0x63656465, 0x6f737365, 0x22128772, 0x85637573, 0x61652f10, 0x2d687472, 0x6165636f, 0x6261696e, 0xad426775, 0x632d250a, 0x6469766f,
0x8405c342, 0x201b850a, 0x3331826d, 0x2d696e69, 0x73616c67, 0x6d652d73, 0x6d797470, 0x63697375, 0x6e26e782, 0x69796669, 0x1a85676e, 0x5a836820,
0x6174733c, 0x65737572, 0x6c696672, 0x6261746d, 0x632d656c, 0x736c6c65, 0x72616c2d, 0x108a6567, 0x6c290a85, 0x63747369, 0x6b636568, 0x20648278,
0x24508f6b, 0x756c702d, 0x34149073, 0x756e696d, 0x776f7073, 0x6f2d7265, 0x69736666, 0x6c616e67, 0x217a8267, 0x77826f68, 0x6f6c632d, 0x6f726b63,
0x6f646461, 0x826c6e77, 0x6e692407, 0x43786f62, 0x11430556, 0x051f4405, 0x73201184, 0x26062443, 0x74636572, 0x82676e61, 0x838f83ab, 0x6c662341,
0xce826761, 0x6870642c, 0x73656e6f, 0x756c6f76, 0x6d83656d, 0x6c220986, 0x0986776f, 0x6769682b, 0x63727168, 0x6265646f, 0x22068461, 0x82676174,
0x62732402, 0x836b6f6f, 0x24d68303, 0x6e697270, 0x05954374, 0x6e6f6634, 0x6c6f6274, 0x61746964, 0x7463696c, 0x2d747865, 0x42826568, 0x0a847420,
0x64697724, 0x18826874, 0x2d6e6725, 0x8366656c, 0x25098222, 0x746e6563, 0x15857265, 0x2a837220, 0x6a260a85, 0x69747375, 0xb0837966, 0x74756f23,
0x21248264, 0x05836e69, 0x64697629, 0x6d696f65, 0x82656761, 0x746128c7, 0x2d6e6f69, 0x436e6970, 0x5c82067f, 0x732d663b, 0x6b6f7274, 0x6f726465,
0x74656c70, 0x2d6e6570, 0x732d6f74, 0x72617571, 0x06144165, 0x2d707525, 0x85776f64, 0x052d4183, 0x63616227, 0x7261776b, 0x213b8264, 0x0c887065,
0x73616623, 0x2f0c8774, 0x79616c70, 0x73756170, 0x6f747365, 0x726f6670, 0x06862d83, 0x27832d20, 0x732d0b87, 0x65706574, 0x7463656a, 0x76656863,
0x839c8272, 0x840b87e8, 0x23aa86de, 0x73756c70, 0x6d220a86, 0x0b886e69, 0x616d7824, 0x17866b72, 0x63203682, 0x71210b87, 0x82798275, 0x2f1a86ec,
0x6f666e69, 0x736f7263, 0x69616873, 0x61627372, 0x83066645, 0x42e4846c, 0x2d200a04, 0x83077545, 0x2f2f82f3, 0x78656572, 0x646e6170, 0x706d6f63,
0x73736572, 0xd2477d8b, 0x6967290a, 0x656c7466, 0x69666661, 0x79233082, 0x46796565, 0x72210723, 0x054a4269, 0x70302b8a, 0x656e616c, 0x656c6163,
0x7261646e, 0x7961642d, 0x75249782, 0x656c6666, 0x6d286382, 0x6d746e65, 0x656e6761, 0x21081141, 0x0f417075, 0x24918307, 0x77746572, 0x311c8265,
0x2d747261, 0x706f6873, 0x676e6970, 0x646c6f66, 0x05857265, 0x706f2d23, 0x20dd8565, 0x46c98273, 0x0c470952, 0x05ef450b, 0x72616222, 0x2d058442,
0x7465722d, 0x656b6f72, 0x61656779, 0x83867372, 0x74737322, 0x68239b82, 0x41666c61, 0x86460a20, 0x6874280c, 0x74626d75, 0x466b6361, 0x722408a4,
0x74686769, 0x40422385, 0x055b410a, 0x6f742d22, 0x8207bf46, 0x68702d6c, 0x6c707579, 0x6c64616f, 0x6e6f6d65, 0x25055543, 0x72617571, 0x0b842d65,
0x6c6e7534, 0x636b636f, 0x69646572, 0x61632d74, 0x73726472, 0x06826873, 0x72642d37, 0x62657669, 0x686c6c75, 0x636e726f, 0x69747265, 0x61636966,
0x05b34874, 0x696f7024, 0x6d85746e, 0x6e616824, 0x0f852d64, 0x66656c23, 0x210e8a74, 0x0c8a7075, 0x776f6422, 0x85070a43, 0x422c83c4, 0xf68a0632,
0x7521118c, 0x830e8c70, 0x6c672d42, 0x7765626f, 0x636e6572, 0x73696c68, 0x6823b182, 0x466b6365, 0x622805e9, 0x66656972, 0x65736163, 0x08114443,
0x65737530, 0x696c7372, 0x6c636b6e, 0x6664756f, 0x6b73616c, 0x73696373, 0x73726f73, 0x79706f63, 0x65706170, 0x696c6372, 0x6f6c6670, 0x2d797070,
0x1f826964, 0x61757126, 0x61626572, 0x67823783, 0x846c7521, 0x6c6f336e, 0x69727473, 0x6874656b, 0x67756f72, 0x646e7568, 0x57827265, 0x46055d45,
0x742f0981, 0x6b637572, 0x656e6f6d, 0x69622d79, 0x82636c6c, 0x2d742549, 0x6e776f64, 0x75210985, 0x23078570, 0x7466656c, 0x72240985, 0x74686769,
0x48059745, 0x9b830527, 0x9f827420, 0x08843685, 0x65707525, 0x8265766e, 0x052c44a1, 0x20064045, 0x2144832d, 0x18826167, 0x6c6f6238, 0x74697374,
0x70616d65, 0x72626d75, 0x616c6c65, 0x74736170, 0x5b836c65, 0x6c756222, 0x7222cb82, 0xb441776f, 0x05b54905, 0x63243b84, 0x64756f6c, 0xa2840f86,
0x75250f8a, 0x65737570, 0x23b98272, 0x726f7463, 0x742a4a82, 0x63736f68, 0x7365706f, 0xb8826975, 0x62657322, 0x6d296482, 0x732d6775, 0x65637561,
0x241c8272, 0x61746970, 0x49fd846c, 0x2a8707f6, 0x6a240f87, 0x662d7465, 0x65239183, 0x82656272, 0x243e835b, 0x74706d65, 0x05c64279, 0x86682d21,
0x6c702807, 0x6e617375, 0x43656c67, 0x0a86054d, 0x39837220, 0x75210b86, 0x23088670, 0x6e776f64, 0xcf840a84, 0x28890985, 0x27862d20, 0x7721c582,
0x05c44a6e, 0x62617423, 0x2c86826c, 0x74747562, 0x6f6d6e6f, 0x656c6962, 0x240c852d, 0x746f7571, 0x85468465, 0x26468409, 0x6e697073, 0x4272656e,
0x6626058b, 0x2d656361, 0x32826d73, 0x66210984, 0x847c8272, 0x6d2a0809, 0x61676865, 0x6170656d, 0x79656b64, 0x72616f62, 0x616c6664, 0x68632d67,
0x656b6365, 0x74646572, 0x696d7265, 0x636c616e, 0x0e82646f, 0x796c7026, 0x6c6c612d, 0x21082846, 0x48827261, 0x6f726323, 0x2a1e8370, 0x6172622d,
0x6c68636e, 0x486b6e69, 0x69310506, 0x736f666e, 0x72657075, 0x69726373, 0x75737470, 0x29088562, 0x73617265, 0x75707265, 0xc1827a7a, 0x65697026,
0x696d6563, 0x68224483, 0x098a6e6f, 0x764b4385, 0x070a4505, 0x7269662f, 0x78652d65, 0x676e6974, 0x68736975, 0x827e8265, 0x457420a6, 0x214609de,
0x053f4a09, 0x87132846, 0x08a74313, 0x830b3d45, 0x726f21c1, 0x37055e44, 0x79656b2d, 0x656c6f68, 0x6c6c7562, 0x65796573, 0x696c6c65, 0x73697370,
0x2d250787, 0x74726576, 0x419b8269, 0x722106fc, 0x07804673, 0x616c7023, 0x22198279, 0x8674656b, 0x696d231a, 0xc94b756e, 0x72752207, 0x0842466e,
0x0c837420, 0x776f6423, 0x8227866e, 0x6b63218a, 0x70210b86, 0x45158765, 0x73240d3f, 0x65726168, 0x260b4445, 0x706d6f63, 0x86737361, 0x09b64336,
0x7521108c, 0x260e8c70, 0x68676972, 0x4b756574, 0x73250685, 0x6c726574, 0x06894b69, 0x21092b4b, 0xb14b6579, 0x75722305, 0x3d4b6c62, 0x6f772105,
0x66231185, 0x83656c69, 0x822d2003, 0x07a24c35, 0x2d23c683, 0x887a2d61, 0x840b88ad, 0x69772219, 0x23438264, 0x74726f68, 0x128f2088, 0x31222784,
0x2088392d, 0x74280b82, 0x626d7568, 0x70752d73, 0x024d0886, 0x232d8409, 0x676e6f6c, 0x0c892e88, 0x74219d82, 0x840e892d, 0x230f84ed, 0x73726570,
0x6424c382, 0x73736572, 0x73340b85, 0x6f6d6e75, 0x6f626e6f, 0x72612d78, 0x76696863, 0x67756265, 0x450c2b41, 0x642c0af3, 0x6877746f, 0x636c6565,
0x72696168, 0x2508c94b, 0x74756873, 0xdd826c74, 0x63617023, 0x443a8665, 0x622207f5, 0x284f6975, 0x06214505, 0x61726724, 0x66497564, 0x61632d05,
0x6e616c70, 0x67617567, 0x78616665, 0x82822887, 0x70646c28, 0x75637761, 0x03836562, 0x65727339, 0x6c637963, 0x72616365, 0x69786174, 0x65657274,
0x61746164, 0x41736162, 0x70240581, 0x69666664, 0x77237c82, 0x8464726f, 0x78652408, 0x846c6563, 0x6f702909, 0x70726577, 0x746e696f, 0x69210e84,
0x2069836d, 0x222b8269, 0x8270697a, 0x241484fc, 0x69647561, 0x2309846f, 0x65646976, 0x632c0985, 0x6c65646f, 0x2d656669, 0x676e6972, 0x26065c43,
0x63746f6e, 0x82617068, 0x482d2036, 0x6c23059d, 0x456b636f, 0x68230bcd, 0x82646165, 0x61702a2e, 0x72676172, 0x73687061, 0x474f826c, 0x65220596,
0x51826e2d, 0x4207a042, 0x118405bf, 0x6d6f623e, 0x74756662, 0x746c6f62, 0x69627974, 0x75636f6e, 0x7372616c, 0x67756c70, 0x7377656e, 0x77266e84,
0x63696669, 0x19836c61, 0x726f7426, 0x6c6c6562, 0x34051944, 0x73617274, 0x706f6368, 0x67697279, 0x79657468, 0x72642d65, 0x21d6836f, 0xf0826170,
0x75726222, 0x61341d82, 0x632d656b, 0x6c646e61, 0x68637365, 0x2d747261, 0x61657261, 0x70220985, 0x08856569, 0x6e696c2d, 0x676f7465, 0x2d656c67,
0x8766666f, 0x626e3009, 0x63796369, 0x7562656c, 0x6f6c6373, 0x82646573, 0x74702447, 0x826e6f69, 0x687324e2, 0x4f656b65, 0x6320055d, 0xae825483,
0x08847320, 0x2d058842, 0x6e776f64, 0x6d616964, 0x73646e6f, 0x8b466968, 0x65732705, 0x74657263, 0xc1826f6d, 0x732c5684, 0x65657274, 0x69762d74,
0x65687765, 0x75334384, 0x7665736c, 0x73756e65, 0x7372616d, 0x6372656d, 0x83797275, 0x822d200a, 0x842d20be, 0x27f08218, 0x6567736e, 0x7265646e,
0x2d260f84, 0x62756f64, 0x2484656c, 0x16850a85, 0x44824084, 0x8406b74b, 0x256f821f, 0x2d656b6f, 0x0d8b7075, 0x6769722a, 0x656e7468, 0x72657475,
0x6c245685, 0x73737365, 0x72215d83, 0x20068275, 0x84d7832d, 0x82782008, 0x626b2335, 0x81826465, 0x846e6921, 0x732d2904, 0x61776275, 0x74616279,
0x79253c82, 0x6c75662d, 0x210b876c, 0xda826874, 0x75712d22, 0x6522d582, 0x15877372, 0x6c616823, 0x860b8766, 0x240e871b, 0x74706d65, 0x053a4179,
0x826f7021, 0x7265235f, 0xfd822d69, 0x726f732e, 0x656a626f, 0x672d7463, 0x70756f72, 0x75210b86, 0x230d846e, 0x65746f6e, 0x693adf82, 0x63796b63,
0x656e6f6c, 0x6c616373, 0x61622d65, 0x636e616c, 0x6f686465, 0x7b4e7275, 0x74732405, 0x89747261, 0x8a6a840e, 0x896e200e, 0x6168232a, 0x4082646e,
0x2d6b6326, 0x74736966, 0x11840d83, 0x84077049, 0x696c250c, 0x6472617a, 0x73240a84, 0x6b636f70, 0xb3860984, 0x652f0b85, 0x74656361, 0x65646172,
0x6b72616d, 0x82676572, 0x7265254a, 0x76746465, 0x4208cc4b, 0x6c20052c, 0x2305d94b, 0x756e696d, 0x6e23ba84, 0x50726164, 0x288805ec, 0x6568633d,
0x6e696b63, 0x74737564, 0x616d7972, 0x69702d70, 0x6769736e, 0x702d736e, 0x8274736f, 0x656d2610, 0x67617373, 0x069f4365, 0x75617023, 0x260b8773,
0x706f7473, 0x4b676162, 0x622408fe, 0x656b7361, 0x2c090d4c, 0x76696e75, 0x61737265, 0x63612d6c, 0x08074563, 0x61772d23, 0x326f826c, 0x69772d67,
0x632d6874, 0x61656e61, 0x6f696475, 0x4765642d, 0x692005b5, 0x2006864b, 0x05c84e2d, 0x61726227, 0x656c6c69, 0x20b78265, 0x51e5836c, 0x612f0681,
0x692d6c73, 0x7265746e, 0x74657270, 0x83676e69, 0x6564331f, 0x61686661, 0x6573646e, 0x6c2d6579, 0x762d776f, 0x4d827369, 0x6e6f662b, 0x77612d74,
0x6d6f7365, 0x231e8465, 0x656b6168, 0x4c073645, 0x642205a5, 0x9f827264, 0x6f622d25, 0x86616b6f, 0x6163230b, 0xf2866472, 0x7228f082, 0x622d6469,
0x65676461, 0x19830782, 0x6d65742f, 0x61726570, 0x65727574, 0x6c75662d, 0x420f8b6c, 0x198b0d98, 0x6c616823, 0x420f8b66, 0x128b06a0, 0x74365782,
0x6f687379, 0x62726577, 0x70687461, 0x6163646f, 0x69777473, 0xcf82646e, 0x78616d27, 0x7a696d69, 0x210e8765, 0x0e8b6e69, 0x7421c282, 0x8304826f,
0x06d15255, 0x63696d2e, 0x68636f72, 0x6e737069, 0x6c66776f, 0x732cf782, 0x6e6f6f70, 0x6e657475, 0x736c6973, 0x2c067750, 0x7466656c, 0x73617274,
0x61632d68, 0x2913856e, 0x706f7473, 0x63746177, 0x494d7268, 0x06f45309, 0x444d1185, 0x0bbc5009, 0x692b5c82, 0x6567616d, 0x6e657073, 0x826c6963,
0x24028205, 0x696c632d, 0x08444770, 0x47083147, 0x7526092b, 0x6f6c2d70, 0xdd87676e, 0x62242e83, 0x6472616f, 0x4c093455, 0x8f4106b3, 0x0a2c4d06,
0x4f0a3247, 0x75210ba3, 0x4e318270, 0x31471004, 0x851a8706, 0x2341831f, 0x65706572, 0x5f54ec82, 0x696d2306, 0x0a836374, 0x72656d2e, 0x65646567,
0x6f746b73, 0x6d656770, 0x84084249, 0x70752708, 0x6b636f6c, 0xdf826f2d, 0x2208a54a, 0x4a746f64, 0xb1480960, 0x063e4b05, 0x72637325, 0x4b6e6565,
0x13850645, 0x2409ff4c, 0x6870312d, 0x0713566f, 0x616d6933, 0x702d6567, 0x7274726f, 0x72746961, 0x796c7065, 0x05115673, 0x616c6224, 0x9b4b6b6e,
0x854f8c06, 0x69742513, 0x74656b63, 0x2306fb56, 0x72657375, 0x5205d852, 0x78240941, 0x6b72616d, 0x23093e51, 0x2d646e61, 0x28082441, 0x632d6f74,
0x65746e65, 0x83118872, 0x232c891e, 0x6d6f7266, 0x622b2186, 0x62657361, 0x2d6c6c61, 0x82746162, 0x6c6c2103, 0xfc431087, 0x261a8305, 0x6c776f62,
0x84676e69, 0x6863241d, 0x84737365, 0x622d2604, 0x6f687369, 0x230b8670, 0x6472616f, 0x6b200a85, 0x09862a82, 0x67696e24, 0x0b857468, 0x77617023,
0x2309856e, 0x65657571, 0x722f0a86, 0x646b6f6f, 0x62626d75, 0x666c6c65, 0x83746f6f, 0x6f67236c, 0x6984666c, 0x65742d2f, 0x636f6865, 0x2d79656b,
0x6b637570, 0x202c8262, 0x4118846d, 0x662806f6, 0x746c6c75, 0x656c6261, 0x6e282882, 0x2d73696e, 0x64646170, 0x2605cc45, 0x6c6f766c, 0x8379656c,
0x8568204e, 0x737422f8, 0x25088262, 0x62656761, 0x0282786f, 0x2d736525, 0x82617473, 0x4f64205b, 0xb14d0846, 0x69662807, 0x662d6572, 0x586d616c,
0x63270777, 0x75737061, 0x4273656c, 0xe44c08c6, 0x230e8905, 0x7473696c, 0x2405124a, 0x746f642d, 0x05614b73, 0x6e696c27, 0x616e6465, 0x24888264,
0x72616379, 0x22528374, 0x49656274, 0x8b550569, 0x69662106, 0x772aae82, 0x66657661, 0x6b6d726f, 0x82877469, 0x20061643, 0x069b4468, 0x6a832d20,
0x746f6e22, 0x3886b482, 0x82617021, 0x707427de, 0x736c6c69, 0x66457270, 0x622d2609, 0x6c74746f, 0x87129265, 0x25808259, 0x6c75702d, 0xb44e6573,
0x61662d05, 0x6d737473, 0x6e696b6f, 0x72797367, 0xd94f0582, 0x73743005, 0x72656874, 0x656d6f6d, 0x76726574, 0x836c6169, 0x73220803, 0x65726177,
0x73756f68, 0x69657765, 0x2d746867, 0x6c616373, 0x722d7865, 0x6f627961, 0x706f2d78, 0xe0516e65, 0x642d2306, 0xec51746f, 0x05724907, 0x756f6324,
0xd5866863, 0x21069a5a, 0x1a826f74, 0x64746f24, 0x165a766f, 0x0c225a0c, 0x61656824, 0x118c7472, 0x128d3c85, 0x83055e54, 0x5a732013, 0x0c84075c,
0x6b616833, 0x6e612d65, 0x70656c67, 0x63617261, 0x65747568, 0x59a9822d, 0x632406c7, 0x79727261, 0x69220f84, 0x08826767, 0x6b6e612a, 0x62626972,
0x6f726e6f, 0x732c2882, 0x6c646565, 0x73676e69, 0x2d6e6769, 0x67204d82, 0x0a4f0b82, 0x772d2709, 0x746b6e69, 0x45417061, 0x61722306, 0x4983706d,
0x22055341, 0x82766f6d, 0x6976232c, 0xe1836564, 0x68736122, 0x65202c82, 0x4305b656, 0xd35909c5, 0x612d2909, 0x6f727473, 0x7475616e, 0x63241d84,
0x6b636568, 0x6c210985, 0x2209866f, 0x49616567, 0x65210657, 0x201a846e, 0x4aa38267, 0x144c051e, 0x84652006, 0x21308816, 0x2782696d, 0x6e241284,
0x616a6e69, 0x74440984, 0x200a8505, 0x8495826c, 0x61742209, 0x20078567, 0x21418469, 0xa7532d73, 0x6c612505, 0x6e752d65, 0x21071449, 0x0f8d6373,
0x6c662d2e, 0x6c627069, 0x65646e65, 0x6f6f6272, 0x2b053345, 0x65776f74, 0x72622d72, 0x6364616f, 0x0882d182, 0x636d6f27, 0x6b6c6168, 0x05184462,
0x2d200987, 0x63376f83, 0x63727568, 0x696f6368, 0x6f63736e, 0x6361706d, 0x69642d74, 0x50636373, 0x77250513, 0x6369646e, 0x23038365, 0x7669662d,
0x6f220886, 0x11847275, 0x856e6f21, 0x69732210, 0x230f8478, 0x65726874, 0x742d1185, 0x69646f77, 0x65646976, 0x726f6f64, 0x057b4b2d, 0x6f3c0a84,
0x666e6570, 0x68746165, 0x72667265, 0x6167676f, 0x75702d73, 0x6c67706d, 0x65737361, 0x080c055d, 0x71652d20, 0x686c6175, 0x63696c65, 0x6574706f,
0x666e6972, 0x74696e69, 0x77696b79, 0x69622d69, 0x415d6472, 0x25298508, 0x6f6d656d, 0x22467972, 0x05db410f, 0x220a0e46, 0x82766177, 0x071d5328,
0x2d312d22, 0x63221089, 0x39536568, 0x200a8407, 0x05e0422d, 0x746f6e22, 0x70256185, 0x74656c61, 0x071a4e74, 0x72617026, 0x676e696b, 0x35097b59,
0x63656a6f, 0x63657274, 0x74706965, 0x6f626f72, 0x6c757274, 0x04847265, 0x6f632d28, 0x6e69626d, 0x0d856465, 0x726f6829, 0x6e6f7a69, 0x856c6174,
0x0881500f, 0x6f68632c, 0x63736c6f, 0x64776572, 0x15826972, 0x6f687333, 0x72702d65, 0x73746e69, 0x6c756b73, 0x6e61626c, 0x0722442d, 0x726f7423,
0x2f1f8265, 0x72616270, 0x74732d73, 0x65676761, 0x73646572, 0x6f277a82, 0x66617770, 0x82746c65, 0x6f62264b, 0x69687378, 0x07114572, 0x82061c4a,
0x6c240806, 0x61667465, 0x612d6563, 0x7972676e, 0x68637261, 0x62796177, 0x2d6b6f6f, 0x616c7461, 0x61776173, 0x65646472, 0x90522482, 0x65623605,
0x7265697a, 0x7275632d, 0x6f626576, 0x7262676e, 0x62687375, 0x2c778275, 0x6c706d69, 0x6e616365, 0x6962616e, 0x07354173, 0xd04c7520, 0x5a742005,
0x6322093d, 0x32827469, 0x6c656228, 0x6f632d6c, 0x4c82636e, 0x63656726, 0x696b6f6f, 0x2d280586, 0x65746962, 0x706f7263, 0x31066247, 0x68636174,
0x6172676f, 0x642d6870, 0x74696769, 0xad846c61, 0x7a696425, 0x5163797a, 0x2d240528, 0x66617264, 0x67246282, 0x6d757264, 0x2d270383, 0x65657473,
0x4261706c, 0x1856075f, 0x06e44505, 0x6e6f6326, 0x63617274, 0x4d05424f, 0x662909e1, 0x2d656c69, 0x6f707865, 0x82198572, 0x240a88ce, 0x696f766e,
0x059d4f63, 0x0b856920, 0x84061042, 0x0bd74534, 0x73271084, 0x616e6769, 0x85727574, 0x21628531, 0x1a827075, 0x03836c20, 0x6920ad82, 0x6e270c82,
0x70726567, 0x826e6972, 0x6873216d, 0x6624d284, 0x6873756c, 0x612da482, 0x662d6563, 0x6e776f72, 0x65706f2d, 0x0c7b5b6e, 0x7261652b, 0x612d6874,
0x63697266, 0x210b8661, 0x0c83656d, 0x0d867320, 0x61697322, 0x67234b84, 0x826d6972, 0x200b8747, 0x2408886e, 0x6469772d, 0x230d8965, 0x6d616562,
0x2d240d8d, 0x61657773, 0x82051142, 0x2d6e2244, 0x20598368, 0x22238973, 0x83757173, 0x205c82b4, 0x851f842d, 0x742d210f, 0x258b2682, 0x72617422,
0x1d8e0e8a, 0x6e6f7424, 0x858a7567, 0x2d200f85, 0x16865a8f, 0x6e697723, 0x837f896b, 0x2078820d, 0x53038370, 0xa95b08b0, 0x06354209, 0x73271083,
0x69687465, 0x826c6867, 0x65743003, 0x746f6872, 0x6275742d, 0x7265702d, 0x826e6f73, 0x6c65230d, 0xc9876f6a, 0x73696b22, 0x0883ad85, 0x14412d20,
0x830d8408, 0x05054170, 0x6c238484, 0x41677561, 0x098405af, 0x0e852c89, 0x1085c38a, 0x68483e83, 0x562d200b, 0x6d2b078a, 0x6c2d7061, 0x7461636f,
0x8b6e6f69, 0x642d2c0b, 0x616d746f, 0x72656b72, 0x4264656d, 0x6d2606ed, 0x622d6865, 0x0741616c, 0x6f723906, 0x6e696c6c, 0x79652d67, 0x6f6d7365,
0x656d756e, 0x6f6d746e, 0x72617472, 0x7325dd82, 0x70656c74, 0x20d88261, 0x2626832d, 0x61707265, 0x82707373, 0x6570281c, 0x61662d6e, 0x8379636e,
0x696e2208, 0x22068362, 0x826c7572, 0x29578220, 0x72612d65, 0x61766972, 0x0c84706c, 0x41826420, 0x75747223, 0x0cb24872, 0x7326fd84, 0x632d6461,
0x0b887972, 0x61657427, 0x6e617672, 0x0631532d, 0x5609f942, 0x2d27089f, 0x6d616562, 0x836c6f73, 0x6e61249c, 0x82736c65, 0x6c703390, 0x6863746f,
0x61727073, 0x61632d79, 0x6174736e, 0x7d5a706d, 0x06e65008, 0x8608b157, 0x297285ed, 0x72707275, 0x73657369, 0x40826177, 0x6f6f6223, 0x05ce416b,
0x77732d28, 0x696d6d69, 0x1782676e, 0x2d726528, 0x6464616c, 0xe05c7265, 0x05f74506, 0x74293e84, 0x64657269, 0x746f6f74, 0x079a5868, 0x63279d83,
0x63657668, 0x5d726f74, 0x46490603, 0x065d4806, 0x20092548, 0x05324e2d, 0xde5fb487, 0x70613208, 0x2d656c70, 0x6c6f6877, 0x6f746165, 0x6e6f626d,
0x087e4765, 0x65722d23, 0x27898261, 0x69617262, 0x7261636e, 0x72200e83, 0x2a510783, 0x240a8306, 0x73617263, 0x28088368, 0x65646973, 0x72616863,
0x26c68267, 0x6174732d, 0x526f6974, 0x2d240776, 0x6e727574, 0x2a053259, 0x77617264, 0x6c6f702d, 0x586f6779, 0x2d270646, 0x65646f63, 0x8279616c,
0x726724f7, 0x4d70756f, 0x63200826, 0x2608fe5c, 0x676e756c, 0x83696d73, 0x6f633410, 0x696f6570, 0x61632d6c, 0x6f6f706e, 0x61687370, 0x82736570,
0x2d722c6d, 0x6c2d666f, 0x67656669, 0x85677561, 0x682d2404, 0x84686769, 0x0654430e, 0x1c840b8b, 0x65657424, 0x04846874, 0x3106aa44, 0x2d736b73,
0x61656874, 0x74726574, 0x66666172, 0x95626369, 0x07824905, 0x84736e21, 0x63752919, 0x69702d6b, 0x70756b63, 0x3409364d, 0x6e616461, 0x6f62686b,
0x622d6b6f, 0x656c6269, 0x69737562, 0x289a826e, 0x6d69742d, 0x74696365, 0x09c54a79, 0x616c6c23, 0x200d8672, 0x06884573, 0x642beb84, 0x6d726168,
0x61686361, 0x5061726b, 0x2d240c77, 0x74786574, 0x24062d5d, 0x756e696d, 0x210b8673, 0x0a826c70, 0x470c9f62, 0x673405e7, 0x7275706f, 0x61686d61,
0x6261736d, 0x69616861, 0x6964656a, 0x6a2f9a84, 0x6e72756f, 0x772d6c61, 0x6c6c6968, 0x82616b73, 0x686b261e, 0x61646e61, 0x2304826c, 0x6b72616d,
0x33087787, 0x75622d73, 0x656d6b6c, 0x61726f6e, 0x736f6d68, 0x6f657571, 0x6170736d, 0x74656867, 0x6d2d6974, 0x74736e6f, 0x662d7265, 0x6e69796c,
0x61657067, 0x6c706563, 0x2d290482, 0x772d666f, 0x6873726f, 0x07de5769, 0x6c6f7023, 0x0f98586c, 0x3a481384, 0x06034309, 0x61727022, 0x8e834c83,
0x862d7321, 0x20b4840c, 0x20cc8271, 0x1045616e, 0x1690ea85, 0x23073e42, 0x6b636f73, 0x3107e155, 0x746f6f72, 0x7261762d, 0x6c626169, 0x61747365,
0xed822d72, 0x72632d28, 0x65637365, 0x1084746e, 0x642cb782, 0x64697661, 0x616e7973, 0x75676f67, 0x72201a82, 0x7420b983, 0x0482ff83, 0x2d69692c,
0x65746167, 0x61686976, 0x71526172, 0x051f5305, 0x2d24b282, 0x676e6179, 0x2206b94a, 0x4368702d, 0x20080740, 0x6c756b73, 0x6d61636c, 0x6f726770,
0x63646e75, 0x68637461, 0x63726961, 0x64756f6c, 0x6f6f6d2d, 0x2009856e, 0x271b8273, 0x2d656369, 0x64303264, 0x36250784, 0x64676f64, 0x3e858272,
0x7572646e, 0x6974736d, 0x622d6b63, 0x64657469, 0x65676e75, 0x69666e6f, 0x632d656c, 0x83687673, 0x69662ec3, 0x68677473, 0x6874736f, 0x656d6d61,
0x2e138272, 0x61696b75, 0x74616868, 0x7a69772d, 0x41647261, 0x682e065b, 0x6e696b69, 0x70696867, 0x6f686f70, 0x704d7372, 0x08686705, 0x6172632a,
0x72686b63, 0x696e7679, 0x24053d64, 0x6b73616d, 0x2ab4826d, 0x6e696174, 0x7774656e, 0x826b726f, 0x6572284f, 0x74746f64, 0x82727265, 0x2357864a,
0x6e6e7572, 0x73250d82, 0x6c6f7263, 0x20f0846c, 0x320a822d, 0x6f627373, 0x7373656e, 0x6873616c, 0x64697073, 0x66747265, 0x74200a78, 0x74216d82,
0x057a4c6f, 0x6a6e6923, 0x23568275, 0x632d7276, 0x6221ac82, 0x2004826f, 0x64d78377, 0x7723077b, 0x82646e69, 0x2d652103, 0x4105824e, 0x6d270531,
0x62746165, 0x866c6c61, 0x6f6f240d, 0x82722d6e, 0x890e85a8, 0x68732c09, 0x7265776f, 0x65682d73, 0x41797661, 0x2a84086b, 0x6d656423, 0x2ef4826f,
0x616c6674, 0x73752d67, 0x74656d61, 0x86726f65, 0x6f622dd3, 0x7068746f, 0x732d6f6f, 0x6d726f74, 0x62304f83, 0x6572776f, 0x6c627570, 0x6e616369,
0x676f6d73, 0x220cac53, 0x8b686769, 0x6f6c220f, 0x053d4a77, 0x28068a4e, 0x65746177, 0x62616272, 0x83038379, 0x697231e6, 0x62656761, 0x61686f69,
0x6472617a, 0x676f6c62, 0x22086355, 0x88796164, 0x6577230b, 0x6e826b65, 0x82796421, 0x656e2c33, 0x72726163, 0x6163746f, 0x552d6873, 0x6d2007c6,
0x2406d653, 0x706d7564, 0x87638273, 0x662d3907, 0x65657269, 0x72656874, 0x6774656e, 0x73746669, 0x6d616863, 0x6e676170, 0x28062f4e, 0x68777365,
0x656b7369, 0x053e4e79, 0x29057a49, 0x6f727565, 0x72676570, 0x91527069, 0x43098905, 0x672608bd, 0x61746975, 0x2f836872, 0x32422d20, 0x6c6f2f05,
0x622d796c, 0x79727265, 0x73726f68, 0x1b822d65, 0x6369643f, 0x656c6369, 0x6c676973, 0x696d6f6f, 0x6e657474, 0x2d67756d, 0x72746f68, 0x61696461,
0x09e26274, 0x72300f88, 0x72747365, 0x736d6f6f, 0x6c657461, 0x6574696c, 0x2d270888, 0x68736964, 0x822d6473, 0x736423fd, 0x07846d69, 0x2106a541,
0x4b826b73, 0x88676e21, 0x4269200d, 0x73210994, 0x230c836b, 0x726f6e2d, 0x73258c82, 0x6769656c, 0x066e4568, 0x6d732d22, 0x2706655b, 0x6f6e732d,
0x616f6277, 0x6e212282, 0x230b8367, 0x736e616d, 0x70231282, 0x82776f6c, 0x5c6720b2, 0xb642055e, 0x0ac64c05, 0x72772d26, 0x68636e65, 0x6922cb82,
0x05822d6e, 0xd6516d20, 0x75632e0a, 0x64657672, 0x6f636162, 0x6f6f626e, 0x081b516b, 0x6165722d, 0x6c732d64, 0x63656369, 0x43656568, 0x6d200f7b,
0x8705af6a, 0x240e87a0, 0x63747572, 0x26fd8268, 0x65736165, 0x45676765, 0x743606f0, 0x62656572, 0x65677275, 0x6e616872, 0x696d2d64, 0x656c6464,
0xfa82662d, 0x652b1182, 0x74656d6c, 0x6661732d, 0x60797465, 0x2d200744, 0x2305796a, 0x676f6474, 0x2d217f82, 0x208b8263, 0x05bd5f6d, 0x2008506a,
0x2e4d8261, 0x70706570, 0x682d7265, 0x6970746f, 0x85617a7a, 0x61622cad, 0x702d7372, 0x72676f72, 0x55737365, 0x612705f7, 0x776f7272, 0x5670752d,
0xf1600805, 0x06e16006, 0x72756e2f, 0x61776573, 0x732d6576, 0x72617571, 0x069c4165, 0x6b696222, 0x6223a182, 0x8264726f, 0x6c612263, 0x2309866c,
0x656e6f6e, 0x74310a86, 0x6c2d706f, 0x66746665, 0x63696e61, 0x70736e6f, 0x221b8268, 0x466c662d, 0x10880945, 0x74211a82, 0x24f2826f, 0x65746d6c,
0x23ee8278, 0x6873616c, 0x2309054d, 0x612d7a2d, 0x88087e5d, 0x6f642e0b, 0x732d6e77, 0x74726f68, 0x6469772d, 0x8f208865, 0x22278412, 0x88312d39,
0x3d0b8220, 0x6c657073, 0x68632d6c, 0x766b6365, 0x6563696f, 0x6c69616d, 0x2d746168, 0x62776f63, 0x0989796f, 0x82732d21, 0x6f632559, 0x7475706d,
0x6d27e582, 0x6573756f, 0x82636572, 0x762d2cf3, 0x6c796e69, 0x61726163, 0x186e6176, 0x203121dd, 0x07515c43, 0x106ddd18, 0x0c57dd18, 0x0b19de18,
0x53251892, 0x64696c6f, 0x33008200, 0x01870101, 0x00890188, 0x000b0006, 0x010e000c, 0x018b018a, 0x14cbd818, 0x00200023, 0xcfd81021, 0x7c093107,
0x31053005, 0x33053205, 0x35053405, 0x37053605, 0x39053805, 0x3b053a05, 0x3d053c05, 0x3f053e05, 0x41054005, 0x43054205, 0x45054405, 0x47054605,
0x49054805, 0x4b054a05, 0x4d054c05, 0x4f054e05, 0x51055005, 0x53055205, 0x55055405, 0x57055605, 0x59055805, 0x5b055a05, 0x5d055c05, 0x5f055e05,
0x61056005, 0x63056205, 0x65056405, 0x67056605, 0x69056805, 0x6b056a05, 0x6d056c05, 0x6f056e05, 0x71057005, 0x73057205, 0x75057405, 0x77057605,
0x79057805, 0x7b057a05, 0x7d057c05, 0x7f057e05, 0x81058005, 0x83058205, 0x85058405, 0x87058605, 0x89058805, 0x8b058a05, 0x8d058c05, 0x8f058e05,
0x91059005, 0x93059205, 0x95059405, 0x97059605, 0x99059805, 0x9b059a05, 0x9d059c05, 0x9f059e05, 0xa105a005, 0xa305a205, 0xa505a405, 0xa705a605,
0xa905a805, 0xab05aa05, 0xad05ac05, 0xaf05ae05, 0xb105b005, 0xb305b205, 0xb505b405, 0xb705b605, 0xb905b805, 0xbb05ba05, 0xbd05bc05, 0xbf05be05,
0xc105c005, 0xc305c205, 0xc505c405, 0xc705c605, 0xc905c805, 0xcb05ca05, 0xcd05cc05, 0xcf05ce05, 0xd105d005, 0xd305d205, 0xd505d405, 0xd705d605,
0xd905d805, 0xdb05da05, 0xdd05dc05, 0xdf05de05, 0xe105e005, 0xe305e205, 0xe505e405, 0xe705e605, 0xe905e805, 0x6c04ea05, 0x00000004, 0x20028201,
0x38038203, 0x01000006, 0x040000d3, 0x08000083, 0x09000088, 0x0c0000ef, 0x0d000028, 0x08038209, 0x0000734b, 0x00004f0e, 0x00004c0f, 0x0000e210,
0x00008212, 0x0000c713, 0x00006115, 0x00009616, 0x00007a17, 0x00002219, 0x0000501a, 0x0000431b, 0x0000121c, 0x0000081d, 0x0000ac1e, 0x00003621,
0x00005622, 0x00007f23, 0x00007024, 0x20278225, 0x3c6f8226, 0x0000c426, 0x0000f327, 0x0000ce28, 0x0000a129, 0x00007c2a, 0x0000bf2b, 0x0000492c,
0x300b822d, 0x0000962e, 0x00005f2f, 0x00002630, 0x0000fa31, 0x3d478233, 0x00004735, 0x0000eb35, 0x0000c636, 0x0000a637, 0x00004039, 0x0000cc3a,
0x0000b23b, 0x0382b13c, 0x00b42b08, 0x00a93e00, 0x00314000, 0x00bb4300, 0x00fa4f00, 0x00665600, 0x00b35700, 0x00df5900, 0x00376000, 0x00906600,
0x007d6900, 0x93826d00, 0x00f97030, 0x002a7400, 0x00457600, 0x00167b00, 0x0f827c00, 0xd17e2c08, 0xac860000, 0xce8a0000, 0x078d0000, 0x608f0000,
0x3b910000, 0xc3960000, 0xda980000, 0x629b0000, 0xdb9e0000, 0xf0a00000, 0x82a40000, 0x89a63c1f, 0xb0a90000, 0x95ad0000, 0x7fb10000, 0x2fb90000,
0x04bc0000, 0x42c00000, 0x82c10000, 0x82c2200f, 0x77c42487, 0x82c60000, 0x30c828e3, 0x33ca0000, 0x82cb0000, 0x92ce2833, 0x78d00000, 0x82d20000,
0xd42808af, 0xd5000070, 0xd700007d, 0xdb0000ea, 0xde000054, 0xe1000018, 0xe400007a, 0xe70000c1, 0xe900000f, 0xec000008, 0xee000023, 0xf0209382,
0xf1205782, 0x6008d382, 0x000036f3, 0x0000f7f4, 0x00009dfa, 0x00003dfc, 0x00001ffe, 0x0100acff, 0x01004e02, 0x01008603, 0x0100c804, 0x0100f707,
0x0100500a, 0x0100fe0b, 0x01001f0e, 0x0100670f, 0x0100a111, 0x01007113, 0x01007c14, 0x01005c17, 0x01008d19, 0x0100781b, 0x0100b21f, 0x0100d821,
0x01003723, 0x0100e624, 0x384b8226, 0x0100f027, 0x0100bf29, 0x0100a52d, 0x0100a230, 0x01004434, 0x01002e36, 0x34438237, 0x01001739, 0x0100c53d,
0x01003d41, 0x01004247, 0x01005a4c, 0x3907824d, 0x01009b4e, 0x0100f14f, 0x01000c51, 0x01009d52, 0x01007353, 0x01007457, 0x03822258, 0x00fa3008,
0x00b65901, 0x006f5a01, 0x00e35b01, 0x00b55d01, 0x00185f01, 0x00bc6001, 0x00d36201, 0x00706701, 0x00546901, 0x00406a01, 0x00d46b01, 0x82006e01,
0x00f22b03, 0x00837001, 0x00ee7201, 0x93827501, 0x0085763c, 0x00e87701, 0x004b7901, 0x003a7a01, 0x002d7c01, 0x00348001, 0x00c68101, 0xbb828401,
0x001d8524, 0x33828601, 0x00b08838, 0x00f98801, 0x008a8a01, 0x009c8b01, 0x00f68c01, 0x00538e01, 0xc3828f01, 0x00e79128, 0x00979401, 0x37829601,
0x00d09734, 0x006d9901, 0x000a9b01, 0x00769d01, 0x008d9f01, 0xdf82a101, 0x8b82a220, 0x004da428, 0x00cba401, 0x6b82a501, 0x0061a624, 0x1f82a801,
0x005fac35, 0x0066ad01, 0x008eae01, 0x0060af01, 0x0024b001, 0x8207b101, 0x007d2303, 0x5f82b201, 0x2382b320, 0x0079b429, 0x0062b501, 0x822bb601,
0x00f32403, 0x8221b801, 0x24b38203, 0x010073ba, 0x2c8f82bb, 0x0100abbc, 0x010020be, 0x010047c1, 0x245782c2, 0x010067c3, 0x2c6f82c4, 0x01007ac5,
0x010088c6, 0x010072c7, 0x200382c9, 0x2f0383cb, 0xcd0100db, 0xcf010003, 0xd101005c, 0xd2010040, 0xd420b782, 0xd7351382, 0xd90100e4, 0xda01000d,
0xde0100bb, 0xe0010012, 0xe1010036, 0x82038227, 0xbee238e7, 0x86e30100, 0xdce50100, 0xaee70100, 0x31e80100, 0x15e90100, 0x82ea0100, 0xec8c0877,
0xee01003f, 0xef01000b, 0xf10100b6, 0xfa010041, 0xfc01001b, 0xfd01003d, 0xff010048, 0x00020003, 0x0202007f, 0x0302002e, 0x060200e2, 0x080200c9,
0x0a0200dc, 0x0b0200b2, 0x0d0200e0, 0x0e020080, 0x0f020090, 0x110200d7, 0x130200b1, 0x15020057, 0x1802000f, 0x1b0200d8, 0x1e0200c2, 0x210200ae,
0x2402009e, 0x25020084, 0x270200ef, 0x28020060, 0x2a0200d1, 0x2e020046, 0x30020050, 0x3302004a, 0x340200ac, 0x350200a8, 0x380200a2, 0x3b244782,
0x3e02008f, 0x20081382, 0x0200ae3f, 0x02000441, 0x02009343, 0x02008644, 0x02006d46, 0x0200db47, 0x02004948, 0x02007e49, 0x3847824b, 0x02002c4f,
0x0200df51, 0x02008853, 0x02003054, 0x02000755, 0x0200d656, 0x2d378258, 0x0200d258, 0x0200a059, 0x02006e5a, 0x03823c5b, 0x0200ca27, 0x0200ec5c,
0x303b825d, 0x0200115e, 0x0200365f, 0x0200c760, 0x02002564, 0x248f8265, 0x02005d67, 0x20c38269, 0x3493826b, 0x0200876d, 0x0200896f, 0x02006571,
0x02003d73, 0x02004f76, 0x207b8278, 0x084f8279, 0x002f7b38, 0x00407c02, 0x00d47e02, 0x00788102, 0x00198302, 0x008c8502, 0x00bc8702, 0x00fb8802,
0x00378a02, 0x00cc8b02, 0x00618d02, 0x00088f02, 0x00ac9002, 0x00759102, 0x47829202, 0x00069328, 0x00cf9302, 0xaf829402, 0x00589531, 0x00299602,
0x00ab9702, 0x00359902, 0x821e9c02, 0x00802f03, 0x00959e02, 0x0096a002, 0x0024a202, 0x1382a402, 0x00cea924, 0x8782ae02, 0x008faf24, 0x9782b102,
0x0001b338, 0x00bdb302, 0x002db502, 0x0004b802, 0x0041bb02, 0x005bbc02, 0xdb82be02, 0x007dc134, 0x005ec202, 0x00f8c402, 0x00bec602, 0x0084c902,
0xc782ca02, 0x006ecb24, 0xe382ce02, 0x007fd038, 0x00aed102, 0x00ddd202, 0x000cd402, 0x003fd502, 0x0014d802, 0x2382d902, 0x004cdb24, 0x2782dc02,
0x6782dd20, 0x0057e02c, 0x006ce102, 0x00b6e202, 0xdb82e302, 0x00cde42c, 0x0012e602, 0x0037e702, 0x7b82e802, 0x001cea30, 0x00e5eb02, 0x005ced02,
0x0086ee02, 0xaf82ef02, 0x00d8f030, 0x0007f302, 0x00f1f402, 0x00a5f902, 0xff82fb02, 0x00c0fc25, 0x8248ff02, 0xd1730803, 0x8a010300, 0x8c040300,
0x9d070300, 0x5f0a0300, 0x1b0d0300, 0x4f100300, 0x77130300, 0x95150300, 0xbf170300, 0xb2180300, 0xa5190300, 0x961a0300, 0x871b0300, 0x661d0300,
0x421f0300, 0xab210300, 0x88220300, 0x9c230300, 0x5b270300, 0x9a280300, 0x3b290300, 0xc02b0300, 0x2c2e0300, 0x0e300300, 0x7f310300, 0xb3330300,
0x2a360300, 0xd0390300, 0x823c0300, 0xc63f300b, 0xb7410300, 0x4b440300, 0x67450300, 0x82480300, 0x124c245b, 0x824e0300, 0x503c083b, 0x520300a1,
0x53030017, 0x580300da, 0x5a030027, 0x5c030039, 0x5d030018, 0x5f030071, 0x6003006c, 0x630300db, 0x650300f7, 0x67030043, 0x6c03006e, 0x6d030006,
0x6e030032, 0x700300a4, 0x7220c382, 0x732c1782, 0x76030025, 0x790300f3, 0x7b03009b, 0x7e20c382, 0x80202782, 0x86242382, 0x88030080, 0x8928df82,
0x8b030041, 0x8e0300f5, 0x92207b82, 0x94349f82, 0x950300cb, 0x980300f0, 0x99030013, 0x9b0300ed, 0x9f03005a, 0x2408d782, 0x030007a1, 0x030057a2,
0x0300d7a3, 0x0300c5a4, 0x03004ea5, 0x030001a9, 0x0300ddab, 0x030009af, 0x03007ab0, 0x08a782b2, 0x0060b54c, 0x00f8b503, 0x00efb903, 0x0026bd03,
0x003ec103, 0x003ac503, 0x00dcc603, 0x0050c803, 0x004dca03, 0x00b8cc03, 0x00ecce03, 0x008fd203, 0x00bcd503, 0x0029d903, 0x00a7dc03, 0x00edde03,
0x00c3e003, 0x00a8e203, 0x00ade303, 0xe782e403, 0x8f82e620, 0x006ce828, 0x008cea03, 0x1b82eb03, 0x6782ed20, 0x5f82ef20, 0x14f15c08, 0x30f20300,
0x4cf30300, 0x66f40300, 0x73f50300, 0xa9f60300, 0x9cf80300, 0x4afb0300, 0xa6fe0300, 0x75ff0300, 0x4b000400, 0x0b030400, 0xa9040400, 0x8b060400,
0x2f080400, 0x180a0400, 0xa00b0400, 0xb70d0400, 0xfb0f0400, 0x42110400, 0x8f140400, 0x2a170400, 0xc81a0400, 0x821c0400, 0x3f1e341b, 0x261f0400,
0xd8200400, 0x25220400, 0x36240400, 0x82250400, 0x2634081b, 0x2704008d, 0x290400f3, 0x2a040091, 0x2b040073, 0x2c04001b, 0x2d040052, 0x2e040020,
0x310400a1, 0x3304000c, 0x370400d6, 0x39040009, 0x3d040022, 0x4404005a, 0x49384382, 0x4d040015, 0x510400b4, 0x5604008c, 0x59040058, 0x5a04004c,
0x5e0400dd, 0x39086b82, 0x04009b60, 0x04007e62, 0x0400e264, 0x04000a66, 0x0400a467, 0x04001a6a, 0x0400066c, 0x0400f26d, 0x0400e86f, 0x0400de71,
0x04008573, 0x0400ce77, 0x04003a7a, 0x0400687d, 0x03823c7e, 0x0400a233, 0x04001c80, 0x0400b581, 0x04000b85, 0x0400f88b, 0x204b828d, 0x3cd78291,
0x04007a93, 0x0400be95, 0x04000798, 0x0400a699, 0x0400649b, 0x0400189d, 0x0400989e, 0x242382a1, 0x0400f9a3, 0x201782a5, 0x289782a6, 0x04003ba8,
0x040024a9, 0x304382aa, 0x0400fcaa, 0x0400efab, 0x04002baf, 0x0400a0b0, 0x082782b1, 0x003fb320, 0x0074b404, 0x00a9b504, 0x00dfb604, 0x0013b804,
0x00ddb904, 0x006abb04, 0x0032bd04, 0x4782bf04, 0xe3c04508, 0x91c30400, 0x7cc40400, 0x42c50400, 0x4fc60400, 0x5fc70400, 0x62c80400, 0x4dc90400,
0xb3cb0400, 0x95cc0400, 0x70cd0400, 0x4bcf0400, 0x7bd10400, 0xb1d20400, 0x9fd30400, 0x51d40400, 0x37d50400, 0x11d60400, 0x57820382, 0xb2d72508,
0x4ad90400, 0x77db0400, 0xa1dd0400, 0xd8df0400, 0xfde30400, 0xd6e70400, 0x59e90400, 0x22ee0400, 0x0cf00400, 0xf7230382, 0x82f20400, 0xc8f42c93,
0x5bf60400, 0xe5f80400, 0x82fa0400, 0x8afc31a7, 0x16000500, 0xc9020500, 0x75030500, 0x19060500, 0x3b080382, 0x0805002a, 0x0c05008e, 0x1005000f,
0x12050066, 0x13050070, 0x1505002b, 0x16050011, 0x170500ac, 0x190500b5, 0x1b0500bc, 0x1e0500c4, 0x2205005f, 0x260500a7, 0x2805000b, 0x2a050085,
0x2c241f82, 0x2e050046, 0x28080f82, 0x0500712f, 0x0500a430, 0x05007932, 0x05004134, 0x05003535, 0x0500ea36, 0x05003738, 0x0500b639, 0x05009c3d,
0x05008340, 0x08078243, 0x00bf4630, 0x00cf4805, 0x00e34a05, 0x00454c05, 0x009a4d05, 0x00074f05, 0x00d25005, 0x00735405, 0x00685605, 0x00825805,
0x00645a05, 0x00c65b05, 0x23826105, 0xa3826320, 0x00d96428, 0x00ee6605, 0x27826a05, 0x976c4c08, 0x5b6f0500, 0xa2710500, 0x00740500, 0xc4780500,
0xd47b0500, 0xb77d0500, 0x8f800500, 0x56810500, 0x94820500, 0xf6840500, 0x35860500, 0x59880500, 0x348b0500, 0xce8c0500, 0x018e0500, 0x848f0500,
0xfb920500, 0xa8940500, 0x82960500, 0x9b4c086b, 0x9d0500c3, 0x9f0500dd, 0xa10500c4, 0xa30500c5, 0xa50500fc, 0xa6050037, 0xa80500c2, 0xaa0500b0,
0xac05002b, 0xad05004a, 0xb405005e, 0xb7050014, 0xba050027, 0xbc05003a, 0xbe050043, 0xc3050031, 0xc4050004, 0xc5050088, 0xc7050065, 0x24080b82,
0x0500ebc8, 0x050087ce, 0x05004bd0, 0x050025d2, 0x05002ed4, 0x05002fd8, 0x05007dda, 0x05006edc, 0x05003edd, 0x302382df, 0x050079e1, 0x0500aae2,
0x0500d3e3, 0x0500d6e4, 0x085382e6, 0x009fe780, 0x0024ea05, 0x003dec05, 0x004ff005, 0x00adf105, 0x00cdf305, 0x00f8f505, 0x002cf805, 0x0091f905,
0x006bfc05, 0x00e9ff05, 0x00b70106, 0x00f20306, 0x00970506, 0x00900a06, 0x00500c06, 0x00f70e06, 0x00071006, 0x005d1106, 0x00641406, 0x00b91606,
0x00951806, 0x006d1a06, 0x00de1b06, 0x001c1d06, 0x009e2006, 0x00af2106, 0x00982306, 0x008f2506, 0x00362806, 0x009c2a06, 0x00e82b06, 0x1f822d06,
0x5c354c08, 0x51370600, 0x23390600, 0xee3c0600, 0x1e3e0600, 0x77410600, 0x7a420600, 0x52450600, 0x3f4a0600, 0x0e4c0600, 0xcd4e0600, 0x62510600,
0x85520600, 0x86540600, 0x3a580600, 0xa1590600, 0x355b0600, 0x575c0600, 0x3d5f0600, 0x82610600, 0x6338089f, 0x6606000a, 0x6a0600ce, 0x6d060002,
0x70060081, 0x72060087, 0x740600b3, 0x7706000b, 0x78060041, 0x7a0600cb, 0x7b06005f, 0x7e0600f0, 0x82060029, 0x84060019, 0x87060088, 0x8930a382,
0x8b06003f, 0x8d060005, 0x93060060, 0x95060092, 0x97281782, 0x990600d1, 0x9a0600a9, 0x9e280f82, 0xa1060058, 0xa60600e3, 0xa83cdb82, 0xaa0600d8,
0xac0600a3, 0xb106006f, 0xb7060053, 0xba0600a4, 0xbc060042, 0xc20600ac, 0xc6283782, 0xce06008b, 0xd10600b8, 0xd42c0b82, 0xd80600fd, 0xda060078,
0xdd060090, 0xdf285f82, 0xe1060079, 0xe3060030, 0xe5249f82, 0xe9060063, 0x38086382, 0x06007fed, 0x0600a7f0, 0x06004df6, 0x07000cff, 0x07006906,
0x0700fb07, 0x0700a90c, 0x0700dd0e, 0x0700bc10, 0x0700fd12, 0x07003415, 0x0700c517, 0x07006719, 0x0700d61b, 0x3423821c, 0x0700591f, 0x0700c020,
0x07003222, 0x07007f23, 0x07005126, 0x200f8227, 0x08178229, 0x003f2c30, 0x00e62e07, 0x00b83007, 0x00ca3207, 0x009e3507, 0x00bf3707, 0x00963907,
0x00ea3c07, 0x00184207, 0x00454407, 0x00214607, 0x005e4807, 0x1f824b07, 0x264d2008, 0x154f0700, 0x2e510700, 0xb6520700, 0x47540700, 0x02580700,
0xaf5b0700, 0xb15d0700, 0x82600700, 0x3d63307f, 0x3f650700, 0x12670700, 0x62680700, 0x826a0700, 0x896f241f, 0x82700700, 0x753008b7, 0x780700b4,
0x79070008, 0x7b07004d, 0x7e0700f2, 0x800700b9, 0x850700b9, 0x8807006f, 0x8b070050, 0x8d070072, 0x8f070075, 0x920700ec, 0x94070030, 0x96302f82,
0x990700df, 0x9b0700bd, 0x9d0700c6, 0x9e070024, 0xa024db82, 0xa2070060, 0xa4282b82, 0xa70700f5, 0xa80700aa, 0xa92c0382, 0xad0700d9, 0xb1070095,
0xb60700b5, 0xb83c1782, 0xc0070081, 0xc3070086, 0xc5070026, 0xc70700c1, 0xc9070034, 0xcb07000e, 0xd0070039, 0xd4380f82, 0xd807003c, 0xd90700f1,
0xe00700d2, 0xe30700cb, 0xe4070070, 0xe5070055, 0xea24c782, 0xed0700d1, 0x7008db82, 0x070076ef, 0x07005df2, 0x0700a6f7, 0x0800f6fd, 0x0800aa01,
0x08002507, 0x0800ef08, 0x0800db0a, 0x08008a0f, 0x08009a12, 0x08002817, 0x0800561e, 0x0800c31f, 0x08007321, 0x08001123, 0x0800ae24, 0x08006426,
0x08009429, 0x08001a2d, 0x08008c30, 0x08008532, 0x08008334, 0x08002037, 0x08008239, 0x0800013c, 0x0800063f, 0x08000543, 0x08007a44, 0x384b824a,
0x0800dd4c, 0x0800514e, 0x08006851, 0x08004055, 0x08008456, 0x0800a058, 0x2c4f825a, 0x08000d5d, 0x08005c60, 0x08005e65, 0x383f8267, 0x0800f569,
0x0800be6c, 0x0800f76e, 0x08001776, 0x0800de79, 0x0800f07c, 0x340f827e, 0x08007e81, 0x08009087, 0x0800c789, 0x08007f8d, 0x0800ca8f, 0x28878293,
0x0800c094, 0x0800e697, 0x391b8299, 0x0800759a, 0x0800509c, 0x080086a2, 0x0800f5a3, 0x080076a7, 0x080088a8, 0x03824eab, 0xb124e382, 0xb408009f,
0xb9280b82, 0xbb08005b, 0xbd0800c1, 0xc2202782, 0xc43ca782, 0xc60800ce, 0xca080013, 0xce080041, 0xd00800b1, 0xd4080097, 0xda08002c, 0xdf08008b,
0x65086782, 0x0800b6e3, 0x0800abe6, 0x0800f8e9, 0x080062ed, 0x08000cf0, 0x0800d3f4, 0x080011f7, 0x0800bdf9, 0x080069fc, 0x090044fe, 0x0900d204,
0x0900a807, 0x0900ff09, 0x09000c10, 0x09009812, 0x0900e513, 0x09003415, 0x09007418, 0x09004d1a, 0x0900f91e, 0x09005f23, 0x09002a25, 0x09002d29,
0x09002e2a, 0x0900532e, 0x03823a31, 0x0900f524, 0x03821438, 0x00e33708, 0x00b13909, 0x00453c09, 0x00173e09, 0x005b4309, 0x00ae4509, 0x00bc4609,
0x000f4809, 0x00494909, 0x00874b09, 0x00db4d09, 0x00d55009, 0x00d75409, 0x00975709, 0x07825909, 0x585a2808, 0x635b0900, 0x525f0900, 0x43630900,
0x06670900, 0xcc680900, 0xeb6e0900, 0x19730900, 0x1c780900, 0x247c0900, 0x827d0900, 0x2b7f247f, 0x82820900, 0xab852c2f, 0xa3860900, 0x28890900,
0x828a0900, 0x758b3827, 0x128c0900, 0x048e0900, 0xd88f0900, 0xe9910900, 0xbb940900, 0x82950900, 0xf4963427, 0xdd9c0900, 0x6c9e0900, 0xcf9f0900,
0x72a20900, 0x82a60900, 0x82a9201f, 0x82aa2033, 0x82ac20f7, 0xe6ad28e3, 0x33b00900, 0x82b10900, 0x3cb32467, 0x82b50900, 0xc5b72403, 0x82b80900,
0xf0bb3017, 0x9fbc0900, 0x84c40900, 0xbfc70900, 0x82c90900, 0x91cd240b, 0x82ce0900, 0x4ed03c5f, 0x5ed40900, 0x71d60900, 0x9dd90900, 0xc9dc0900,
0x82df0900, 0x36e20900, 0x82e50900, 0xaee82467, 0x82eb0900, 0x6fed2c13, 0x08ef0900, 0xadf00900, 0x82f10900, 0xb8f23a1b, 0x93f40900, 0xe4f730fb,
0xfb1554f8, 0xffff06b4, 0x8b717de5, 0x82eaffff, 0x2004838f, 0x260a8290, 0x08707de5, 0x830734fc, 0x00802609, 0x7d1500ff, 0x83198271, 0x821a2509,
0xf7088b8f, 0x00223382, 0x2882821a, 0x70201982, 0x70221e83, 0x1083ff8b, 0x83f80821, 0x86098333, 0x7d15222e, 0x2d5d8270, 0x088b0080, 0x80c9ffff,
0xff154b00, 0x4682a6ff, 0xb379ff24, 0x0a850533, 0x4c86002a, 0x47f705cd, 0x26ffff06, 0xc6261883, 0xff15cc4c, 0x23855900, 0x23863420, 0x0a822e82,
0x990c0126, 0x00ff0798, 0xfe232683, 0x8634b3b9, 0x213f8226, 0x318a05cc, 0x4a82fb20, 0x82d90021, 0x3900213f, 0x6e842383, 0x0a85238a, 0x66f3fe2c,
0xfb0e0768, 0x30fc0ef0, 0x4882ebcb, 0xa4b01122, 0x0e27c082, 0x00ff5c4f, 0x82ec510e, 0xc710290a, 0x01ff08ae, 0x07d6e300, 0x11270c82, 0xffff86ab,
0x82a4b0f1, 0x0a57261c, 0x4feeffff, 0x83ce835c, 0x24168506, 0xf6a8f1ff, 0x2717828b, 0xff087a54, 0x66e600ff, 0xff233382, 0x82f668ed, 0x2550822e,
0x34b3f1ff, 0x608300ff, 0x5b8b0822, 0xe921fe82, 0x202b84e8, 0x21488317, 0x36820a17, 0x08201082, 0x26820685, 0x82f6e821, 0x70fd2447, 0x821600ff,
0x8508201b, 0x23168506, 0x66e61100, 0x15228b82, 0x2d823433, 0x06820020, 0x44822882, 0xcc120025, 0x82ffffcc, 0x088b2a43, 0x34f82f0e, 0xe64001ff,
0x33658266, 0x061ec5c5, 0xc90900ff, 0x3a00fffc, 0xff0572bd, 0xf0e70200, 0x702b4782, 0xf4ffffa4, 0x00ff1038, 0x82e07a10, 0x8293203f, 0xe8022299,
0x22b582f6, 0x825278ee, 0x00e02623, 0x9cefffff, 0x26238228, 0xffffe83b, 0x820c17fd, 0x4c972123, 0xf42d1e82, 0xffff9278, 0x05e0baba, 0xe6a0ffff,
0x2059a367, 0x904e8233, 0x88292059, 0x880a2059, 0xe5702159, 0xbb235987, 0x82069a19, 0x7b542716, 0xf1ffff8b, 0x048385ab, 0x56418620, 0x2c068206,
0xff6666ed, 0x7b540e00, 0x99f2ffff, 0x23ca829a, 0x088b85ab, 0x3a21dc82, 0x243382e1, 0xfb85abea, 0x9d9b8214, 0x54ee2241, 0x2141877a, 0x418eec91,
0x0436f627, 0x42c5ffff, 0x22448290, 0x821018fd, 0x5c8f2b85, 0xc70b00ff, 0xeffffff0, 0x2b822085, 0xffcd6c26, 0x0817fdff, 0x01227182, 0x0a824ec2,
0xffbade25, 0x82cc0100, 0xe6ff2114, 0x01229682, 0x8c8333b3, 0x295c0f26, 0x0d00ff8b, 0x172c3a84, 0x0200ff0a, 0x00ff299c, 0x08d8a30f, 0x8a2c4a82,
0x4500ff3d, 0xff051e45, 0xb91e5f00, 0x70a0b282, 0x7088cc20, 0xff8ccc26, 0x86abffff, 0x14827083, 0x34207086, 0x28207085, 0x5e207084, 0x70856082,
0x70892820, 0x70873e20, 0x14ee4423, 0x21c28206, 0x2b8286ab, 0x03410e20, 0x827a2005, 0xc510230a, 0xdc420820, 0x835e8308, 0xeeff231b, 0x59827a54,
0x3f42ff20, 0x54152405, 0x8214f77a, 0xe64422b2, 0x43418e68, 0x41820824, 0x00801323, 0x05e542ff, 0x32330f27, 0x4ceeffff, 0x254183cc, 0xfb66e664,
0x2f421554, 0x4c152207, 0x224984cd, 0x82b81e5f, 0xaeea2bfc, 0x0514fb14, 0xf770fb0e, 0x2382f834, 0xb3110023, 0x22478233, 0x41cd4c0e, 0xff250bf3,
0xec51dcff, 0x21f58207, 0xff829a99, 0x823cca21, 0x22688309, 0x8220c5ff, 0x99992109, 0xc5251382, 0x00ff081e, 0x251e830a, 0xff866bfe, 0x14831f00,
0xf6e8fa28, 0xfcffff98, 0x1a82c2b5, 0x3433102c, 0xa8fbffff, 0x0b00fff6, 0x9882cc4c, 0x04828c20, 0x2e83fb20, 0x66e6ee23, 0x20198208, 0x221e82b3,
0x8268e6ee, 0x21398319, 0x388299f5, 0xcdccee27, 0x4c0400ff, 0x251e82ce, 0xff33b3f6, 0x38830300, 0x0984e320, 0xffcecc24, 0x1e83f4ff, 0x98990122,
0xdf221e82, 0x298266e6, 0xe4201483, 0xfd209683, 0xed215783, 0x22aa8219, 0x82ccccf8, 0xb8ed2b1e, 0xffff8451, 0xfff668f8, 0x1583f6ff, 0x70fdfd22,
0x77843e82, 0x5c0ffe25, 0x82f5ffff, 0x01002658, 0xffff5278, 0x238182f9, 0x90c20100, 0x3321b582, 0x23b58232, 0x87d7e301, 0xb0217882, 0x82a182a4,
0x07002259, 0x22548259, 0x829a19fb, 0x4210211a, 0xf5212582, 0x20a2824c, 0x21888218, 0x0482f8ff, 0x33200027, 0xf7ffff33, 0x2173824c, 0x0f820200,
0x33ffff29, 0x00ff0534, 0x8267661c, 0x2163837d, 0xf582cc22, 0x4883f620, 0xac831920, 0x0022fa84, 0xeb82190e, 0xb282f620, 0x4c0d0022, 0xf320d682,
0x00280482, 0xff323308, 0x6666eeff, 0x08206782, 0xff210f82, 0x240f82ee, 0xcccc0100, 0x26988377, 0xebffff34, 0x82089a99, 0x19d922d2, 0x20c9829a,
0x213b82e6, 0x5f82e0ff, 0x84f2ff21, 0x83f220ee, 0x66fa236f, 0x2c827c66, 0xff686624, 0x9583f0ff, 0xcf83fe20, 0x99deff25, 0x828b079a, 0x212c8359,
0xac82b3f1, 0x82b3f121, 0x4cee244d, 0x83088bcd, 0x82cd2015, 0x2916831b, 0xcc4c0e00, 0x1100ff8b, 0x808234b3, 0x66e62228, 0xffffff07, 0x1c829999,
0x0080ff23, 0x820b848c, 0x82332004, 0xffff281c, 0x058bcdcc, 0x41e7ffff, 0xdd820595, 0xb8ded725, 0x820a00ff, 0xe4ff24e2, 0x829714ee, 0xd9ef2655,
0x0700ff9a, 0x27668233, 0xffe1baf8, 0x66e61200, 0x2e240e82, 0x1000ff15, 0x00214083, 0x210a8407, 0x19829819, 0x82f6e821, 0x26ed8219, 0x00400f00,
0x83f8ffff, 0x150026cb, 0xffffcdcc, 0x21a482f6, 0xd5832200, 0x3d83f620, 0x04821320, 0xe6fcff28, 0xffab0866, 0x5882fbff, 0x4c1a0028, 0x0200ffcd,
0xb182cccc, 0x6c832e82, 0x1020b682, 0x00212582, 0x226d8406, 0x829533b3, 0x3433211f, 0x00218e82, 0x20118301, 0x2650820a, 0x9a99feff, 0x820600ff,
0xfeff2879, 0x00ff3333, 0x82cecc03, 0x19fe26ad, 0xffff8f99, 0x205083fc, 0x20c48304, 0x20d883f8, 0x226b8204, 0x82efffff, 0x84002034, 0x83e72039,
0x3307252f, 0xdfffff32, 0x08226f83, 0x398234b3, 0x1483fd20, 0xcccc0028, 0xe3ffff05, 0xc9829999, 0xff262e82, 0xff142edd, 0x48830900, 0x0983e620,
0x99191122, 0xf1222982, 0x1482d7e3, 0xf225ce83, 0x00ffaec7, 0x2362820c, 0x3dcaf7ff, 0x9920bd82, 0xf7221e83, 0xc88585ab, 0x30feff28, 0x1400ffa4,
0x9c820100, 0xffb8de26, 0xcc4c1500, 0x0725d782, 0x00ff7b14, 0x2cc58326, 0xff1f051c, 0x5ccf1800, 0xe82000ff, 0x214782f6, 0x1e825c8f, 0x14830d20,
0x52f80426, 0x1e0e00ff, 0x03223382, 0x09822045, 0xff67e626, 0x8ec20100, 0x22221e82, 0x4547e2ba, 0x0e002107, 0x0e22e583, 0x6d827a54, 0x8b33b32d,
0x0e078b08, 0x01ff30fb, 0x829a9976, 0x289c2504, 0xf3ffff15, 0x0021b882, 0x2404820c, 0x00c0ebff, 0x830f858b, 0xfb082514, 0x05d4fbd4, 0x1a820f89,
0x81822082, 0x34822a83, 0x062a6782, 0xffffae47, 0xff72bdf9, 0xf8820800, 0x83fcff21, 0x300823af, 0x1a828ba4, 0x16820683, 0x0327db83, 0x00ff0020,
0x82713d06, 0x00402504, 0xf7d4f708, 0x00235582, 0x82e27a0c, 0x6686274a, 0x1400ff8b, 0x8589c235, 0xfeff0830, 0xff6666c9, 0xd86389ff, 0x2300ff15,
0x2082cd4c, 0x33b31c27, 0xb81c00ff, 0x230a8252, 0x08ae4723, 0xff220685, 0xd983e3ff, 0x82b51c21, 0x83dc203c, 0xffff21d9, 0x16850683, 0x47e3ff23,
0x22af82ae, 0x82e2badc, 0x82ff202d, 0x823f8206, 0xe3ff2344, 0x54851e45, 0x94f70824, 0xfc8214fb, 0x34b3dc22, 0xe3222782, 0x3782cc4c, 0xb8213285,
0x21328452, 0x328352b8, 0x16843420, 0xcc203283, 0x2322d483, 0x7c82cc4c, 0x34b31c22, 0xcc208e95, 0x87831684, 0x088b342a, 0x01ff2f0e, 0xdb9a19a1,
0xfa276482, 0xffff2010, 0x82e2baf5, 0x3c3f2404, 0x82faffff, 0xf4ff2384, 0x5182a4f0, 0x93faff23, 0x277f82f8, 0xff8280fa, 0x00600100, 0xf3201b82,
0x02345b82, 0xff08f0e7, 0xb89e8aff, 0x514400ff, 0xffff05aa, 0x07666677, 0x47059747, 0xff2409a7, 0xe13aefff, 0x06834283, 0xde220c82, 0xd043ffb9,
0x9988260c, 0xffff079a, 0x22f58389, 0x82c2b5bb, 0xf8fa2744, 0xfdffff52, 0x64820a17, 0x69828020, 0x9a99fe22, 0x94210982, 0x8342837b, 0x269c828c,
0x00ff0040, 0x82e8bb05, 0x5c0f2616, 0x440a00ff, 0x26858218, 0xff082cf7, 0x824f0f00, 0x3b05270f, 0x1300ffe7, 0x0e82ec91, 0xff625026, 0x0ad70800,
0x75221982, 0xa4824861, 0x82ae4721, 0x21af855f, 0x0a82cc4c, 0xa4b0f022, 0xcc212082, 0x214982ce, 0x34828fc2, 0x00236a82, 0x8215ee07, 0x05dc4239,
0xffae8724, 0x84820b00, 0xa10c0022, 0x052c3e82, 0x00ffcccc, 0xffd7630c, 0x0080feff, 0x04255382, 0xffff4821, 0x211e83ff, 0xa3821904, 0x0023a883,
0x820bd703, 0xcecc21bc, 0x762a1e82, 0xffffae47, 0x0532b3bb, 0xe38300ff, 0x00ff8b25, 0x8284ab11, 0x7b5421fb, 0x7c200483, 0x22086648, 0x8285ab11,
0x820e201b, 0xf1ff2916, 0xff8b84ab, 0x7c54eeff, 0x7727d082, 0xff076666, 0x824c7600, 0x4a442273, 0x2644823e, 0xff88d603, 0x82360200, 0x19043104,
0x0100ffda, 0x00ff7453, 0xff8a2104, 0x12830000, 0x0c216e82, 0x27528254, 0xff1a8f01, 0x32b30c00, 0x3329d082, 0x0500ff34, 0xffff34b3, 0x24ac84f4,
0xfff8d308, 0x28ef83ff, 0x18c4faff, 0x6eecffff, 0x260e8214, 0xffff9eaf, 0x41f628f7, 0xff2306c4, 0x8252b8bb, 0x86728367, 0x4c0f220a, 0x212082ce,
0x4982142e, 0x82323321, 0x66662434, 0x83f6ffff, 0xb3f02a13, 0x2f0e0834, 0x54f744f8, 0x22b08315, 0x82ff5c4f, 0x828620bb, 0x82ae2004, 0x54ee2a56,
0xfb088b7a, 0x24fb0624, 0x201c8907, 0x831c8285, 0x54ee238d, 0x6f828b7b, 0x23420683, 0x070c4205, 0x08a4b027, 0xfb0724f7, 0x0ce84924, 0x2006734b,
0x221c8211, 0x8200ff8b, 0x073f4106, 0x41cd4c21, 0xf720063f, 0x00233082, 0x82ffff8f, 0x201f8b6a, 0x09c64951, 0x210b5f41, 0x918514ae, 0xffff0826,
0x07010070, 0x11203c84, 0x00239682, 0x828f0200, 0x0688465a, 0x4c2d2383, 0xfb0e08cd, 0xf7b4f770, 0x94fb1534, 0x05da4b06, 0xb021b082, 0x07074ca4,
0xa3b01123, 0x20938408, 0x05cd4ba3, 0xce20c782, 0x8b22a284, 0x3082f708, 0x384c8c83, 0xf1ff2306, 0x768633b3, 0x5d200684, 0x22060a41, 0x8214aef1,
0xcc4c2257, 0x2b69848b, 0x9f01ff34, 0xff1570fd, 0x47a1a7ff, 0xb8242682, 0xffffb85e, 0x0a820482, 0x49a1a728, 0x80ffff08, 0xe38267e6, 0x48251d82,
0xa14700ff, 0x261c8448, 0x5e5800ff, 0x83088bb9, 0x82b82006, 0x8316836c, 0x220a821b, 0x82b85e58, 0x1c7f2216, 0x23338228, 0x66665800, 0x04822e82,
0x97470023, 0x2a60820a, 0x088b9a99, 0xe0feffeb, 0x82159002, 0x11cb275e, 0xd4ffffec, 0x0482a4f0, 0x9082ee20, 0x5c0fcb22, 0xff235182, 0x82eb11cb,
0x82d4201b, 0x2b002311, 0x5182ec11, 0x14ee3425, 0x8314f708, 0x8234204e, 0x2914832b, 0x0f2b00ff, 0x3400ff5c, 0x308215ee, 0x15820020, 0x11832582,
0x3b824c83, 0x08294882, 0x0e0714fb, 0x94f7b0fb, 0x2268838b, 0x447a54ee, 0xee260b16, 0x088b7b54, 0xef4154fb, 0x7a54210e, 0x11234582, 0x850886ab,
0x082f4306, 0xef417a20, 0x06cb3206, 0x332401ff, 0xffff0734, 0xff00c0d1, 0x3233e1ff, 0x21548205, 0x4c491f45, 0x2bec2706, 0x0400ff85, 0x0e829a19,
0x9b822f20, 0x9a990e23, 0x210a8208, 0x4782f833, 0xff32b32b, 0x0af80300, 0xe61300ff, 0x290e8366, 0x0900fffe, 0xeb08cecc, 0x088205cb, 0x2182d320,
0x088c0636, 0x9f0c00ff, 0x0000ff3b, 0x00ffd6a3, 0xffd7630a, 0x3268faff, 0x0a221482, 0x0a82f668, 0xff9e6f25, 0x82800600, 0x26f52274, 0x26df8266,
0x08c235f4, 0x8207f4fb, 0x11002390, 0x348233b3, 0x82900221, 0xcd4c2156, 0xb3218e82, 0x281f8234, 0x08cc4cee, 0xf770fb0e, 0x20fc8bd4, 0x06284386,
0x26052343, 0xffff0694, 0x8285ebf2, 0x40f42c2c, 0x0700ff00, 0xfffff8f3, 0x824821fb, 0x12232285, 0x210a8208, 0x0a821924, 0x82b81e21, 0x820020b7,
0xe10d211e, 0x09211982, 0x22a98273, 0x82ae0709, 0x99c12795, 0xb900ff9a, 0xbf829a19, 0x295c1f25, 0x831e00ff, 0x970231fb, 0x3100ff0a, 0xffff7bd4,
0xffacdce3, 0x66662100, 0xf1214882, 0x27148217, 0xffa4b011, 0xcd0cebff, 0x6e2bd982, 0xe8ffff14, 0x00ffd7e3, 0x82904201, 0x10e9221e, 0x310a8262,
0xffff842b, 0xff66e6e9, 0x16eef7ff, 0x3aefffff, 0x1a827be1, 0x71fddc28, 0x33e0ffff, 0xa8840532, 0xf4ffff24, 0x44820c17, 0x8d82c020, 0x1e050122,
0xac830e82, 0xde0f0d22, 0xf4312982, 0x00fff41d, 0xff2c070d, 0x10f80000, 0x4c1400ff, 0x310e82cc, 0x00fff212, 0x0868e60b, 0x732200ff, 0x1f00ff33,
0xac82cc4c, 0x85ab1c3c, 0x571b00ff, 0x2700ff0a, 0x00ff52b8, 0xff1ec50e, 0x90822800, 0xc5fdffff, 0x0a820820, 0xbc825420, 0xe0cffd30, 0x0f2600ff,
0xedffff5c, 0x00ff2a07, 0x1e82021a, 0x4821e122, 0x20081e82, 0xffcccc31, 0x32f3c4ff, 0x66fbffff, 0xa7ffff68, 0xffff01c0, 0xff9959c8, 0xff7fcaff,
0xfb1cfb08, 0x2d618216, 0x065138b0, 0xb31100ff, 0xffffff34, 0xd84334f3, 0x0c954108, 0x8b15f325, 0x83b5ffff, 0xfac224c4, 0x84ffffe2, 0x200e8204,
0x28ca828b, 0x069999af, 0xa8d1ffff, 0x272182f6, 0xffae07d7, 0xae871d00, 0x352fff82, 0x2b00ffc2, 0xff0834f3, 0xf067faff, 0x831000ff, 0x130926b7,
0x1200fff8, 0x27a2821c, 0xff19c410, 0x0a970500, 0x1022a282, 0x0a8200c0, 0x82e89b21, 0xd7232619, 0xe8f6ffff, 0x200e8230, 0x22d58294, 0x82e83bef,
0xec05211e, 0xee224282, 0x4282e23a, 0xffd98e26, 0xea11f4ff, 0xc0212882, 0x23798200, 0xcd8c4f00, 0x2728b882, 0xff8b33b3, 0xcd4c2000, 0xcc200483,
0x27230a82, 0x850834b3, 0xffff2406, 0x8433b3df, 0xffff2816, 0x8bcd4cd8, 0x82062308, 0xcdcc2199, 0xf432a982, 0x00ff6626, 0xff101808, 0x5238fbff,
0x500c00ff, 0x0a8708e6, 0xff3d4a2b, 0x1f450300, 0x0900ff99, 0x221a82b8, 0x8267e608, 0x66832186, 0x78282f82, 0xff056666, 0x523862ff, 0x200f8643,
0x226f827c, 0x4384ab11, 0xf7211786, 0x22a78284, 0x8234330d, 0xd90b3125, 0xf7ffff98, 0x00fff0e7, 0xffaec704, 0x1aaff3ff, 0x04225c82, 0x0a82f0c7,
0xff34b326, 0x28bcfcff, 0x0720a182, 0xf6211982, 0x33138247, 0x087c14f7, 0x997cffff, 0x87ffff9a, 0xff059899, 0xe4c51500, 0x4a224a82, 0x4a829a19,
0x66e63d30, 0x08408b4e, 0xf830fb0e, 0x7100ff14, 0x3644cccc, 0x0c39430a, 0xff066b26, 0x5238aeff, 0x8c0a6c48, 0xffff251e, 0x8b7a54ee, 0x21056a43,
0x52440e00, 0x00ff2708, 0x07aec751, 0x3c8274fb, 0xae07f522, 0xf5321f82, 0x00ffcdcc, 0xff00a005, 0xb81efaff, 0x430900ff, 0x0a8208d8, 0x82192421,
0x1844250a, 0x4cffffff, 0x0b22c982, 0xd982c09f, 0x82dfaf21, 0x84eb2913, 0xff14f708, 0x34330e01, 0x0731b782, 0x00ff6786, 0xff50f80f, 0x33331300,
0xc50600ff, 0x260e8220, 0xffff66e6, 0x825278f8, 0xf80f2236, 0x200a8252, 0x27148270, 0xff5ccf06, 0xeae6ecff, 0xa4250e83, 0x07f0ffff, 0x276482ae,
0xffd7a395, 0x1e851fff, 0xad284882, 0xff06a470, 0x34338e00, 0x21050a4b, 0xb183ff84, 0x21082248, 0x4c828b86, 0xa14f1120, 0x0c224808, 0xcccc7124,
0xe842ab07, 0x428b2005, 0x992107e4, 0x22d7829a, 0x446666ee, 0xff25057a, 0x66666700, 0x27118215, 0xff0a57b5, 0x1e45c3ff, 0x42260482, 0xb5ffff90,
0x57827c54, 0x19b0ff29, 0xffff0699, 0x82a430d1, 0x97d63121, 0x1d00ff0a, 0xffff7ad4, 0xff5238f1, 0x68662c00, 0x310de842, 0x00ff2110, 0xffb81e12,
0xd1c21000, 0x970500ff, 0x0a82080c, 0x417bd421, 0x0028053f, 0xff7b1412, 0xf0e7f6ff, 0x91260e82, 0xefffffec, 0x1e822e3d, 0xf8130636, 0xc5edffff,
0x1100ff1e, 0xffff8300, 0xff00c0f3, 0x52381300, 0x00237982, 0x8233f34f, 0x5c2722b8, 0x24b88229, 0xffae0720, 0x82048200, 0x5c27230a, 0x0685082a,
0xdfffff23, 0x218682f8, 0xb2820520, 0xd7a3d822, 0xff243382, 0x060b5767, 0x84216482, 0x26ad8218, 0xff9603f7, 0x82330400, 0xe8f92d5f, 0x0700fff6,
0xff08ea46, 0x44ebf9ff, 0x3f300a82, 0xfdfffffe, 0x00ff1078, 0xff9a9909, 0x07b00100, 0x4c210982, 0x218e82cc, 0x7f820020, 0x3233b127, 0x0200ff05,
0x26cd82c1, 0xff5e4f0f, 0x82400d00, 0x140b3014, 0x0f00ff7a, 0x088be17a, 0xffff54f7, 0x82c0feff, 0x14734122, 0x4209dc4a, 0x5a2d0e6f, 0xff06e2ba,
0xeb91ebff, 0xd08effff, 0x223e829d, 0x82cd4c72, 0xb34a22e0, 0x27ce8232, 0xff34b33c, 0x9919c4ff, 0xb43b3d82, 0x0e080080, 0x00ff70fb, 0xff33b3a7,
0x34331f01, 0x4000ff15, 0x00ff67a6, 0x825c0f4c, 0x780b2135, 0x0d22f382, 0x83823273, 0x4c8d5721, 0xf2350671, 0x00ff3188, 0x08166e0b, 0x01faffff,
0x0500ff89, 0xffffd623, 0x22db83f8, 0x82008002, 0x05534c09, 0x21f0f622, 0xf72c5e82, 0xffff8300, 0xffc22afc, 0x14aef9ff, 0x8b211b82, 0x2d358202,
0xff34736e, 0xcccc54ff, 0xeed9ffff, 0x25826c14, 0x8482b520, 0xa7250682, 0x00ffaec7, 0x22048247, 0x8238b8ff, 0x41582076, 0x06830599, 0x1b831685,
0x00ff8b22, 0x08201082, 0x55200682, 0xff267182, 0xffcd4cbc, 0x76834500, 0x6666ab27, 0x190400ff, 0x205f829a, 0x291482f8, 0xcccc00ff, 0xcbffff15,
0x58825c0f, 0xa4f0d425, 0x832b00ff, 0x3400230a, 0x3c83a4f0, 0x27053248, 0x00ff5c0f, 0xfff6282a, 0x32481583, 0xc2f52115, 0xff222d82, 0xc082f5cb,
0x66e6d427, 0x0ad4ffff, 0x2954823e, 0x088b9a19, 0xff70fb0e, 0x83823b01, 0xdc6f012d, 0x74fb1528, 0xff0514fc, 0x820cfaff, 0xcff5277e, 0xf5ffff5c,
0x0e82024b, 0x09824f20, 0x71fdf422, 0xff235b82, 0x82ef87fa, 0x72fa2789, 0x0100fff2, 0x1b82f067, 0xff14ee26, 0xf8f30200, 0xf0263082, 0x00ffe1ba,
0x1483e708, 0xff9ad926, 0x10981300, 0x6d820e82, 0x450f0027, 0x00ff081e, 0x230a82c3, 0x66e64f01, 0x37225f82, 0x1745aec7, 0x11ce4b1c, 0x0694f732,
0x730b00ff, 0x00ff8b34, 0xff98990a, 0x00e0f9ff, 0x2206864b, 0x82a410f6, 0xb305245c, 0x82ffff34, 0xffff240a, 0x8232f3ff, 0x8ac12103, 0x2305aa4b,
0x0a17f6ff, 0x0b21e385, 0x26318280, 0x15cdccc6, 0x831600ff, 0x1917280a, 0x00ff9999, 0x8267661f, 0xb3222352, 0x06820833, 0x7c944634, 0x94c6ffff,
0x3900ff7b, 0xffff846b, 0x8b856bb9, 0xa8826b08, 0x18850883, 0x7c201d82, 0xb922fe82, 0x2f82846b, 0x4cddff2b, 0x0d00ffcd, 0xffff71fd, 0x213483e0,
0x09827d16, 0x14eee823, 0x2f0f8208, 0xffff9a59, 0xffa4b0e8, 0x852bebff, 0xb3daffff, 0xff23b882, 0x83ccccd5, 0x833c8235, 0x20168260, 0x266f82c6,
0x7b944600, 0x82cb088b, 0x827d82dd, 0x83798383, 0x828e857e, 0x2a00232f, 0x46823433, 0x00260482, 0xffcc4c25, 0x0482e0ff, 0x4c170023, 0x206582cd,
0x24c78384, 0x15a33099, 0x4f3e82ab, 0xff23092a, 0x82cc4ce3, 0xb3dc22a4, 0x233e8234, 0x33b3dcff, 0x8207134f, 0x850e83ae, 0x092c4fd4, 0xb31c0023,
0x826e8233, 0x212f8240, 0x5f832300, 0x2105714f, 0x2c4f34b3, 0xffbb2806, 0x9002c0fe, 0x4f064b15, 0x36820b63, 0x2f83d582, 0xd5833697, 0xd5829699,
0x9183e320, 0x5685ad82, 0x210eae4b, 0xc482aec7, 0x5238b827, 0x38b8ffff, 0x220a8254, 0x82adc7a7, 0xff3c0868, 0xff156eaa, 0xc3b54300, 0x78baffff,
0x5400ff52, 0xffff0b97, 0x0866e6fb, 0x59bfffff, 0xb3ffff99, 0xff05a4f0, 0xae87f4ff, 0x8cf2ffff, 0x0100ffcc, 0xffff73a8, 0xff3ecaeb, 0xcf770d00,
0x91321882, 0xff9108ec, 0x00e0faff, 0x610700ff, 0xfdffff48, 0x09824881, 0x8b0b5738, 0x0900ff08, 0xff8bdf0f, 0x7dff0800, 0xd20300ff, 0x0600ffb0,
0x1b82ec51, 0x82fe7421, 0x7e91311a, 0xab00ff76, 0x00ff3233, 0xff9a1926, 0x66e61e00, 0x4a222982, 0x91829a99, 0x33580022, 0xb82dca82, 0x00ff3333,
0xff3cca47, 0xcdcca7ff, 0x2316828b, 0x900200ff, 0x2114b943, 0x1d823e0a, 0x0a340022, 0x2b279282, 0x00ff5c0f, 0x43c2f52b, 0x0f211ab9, 0x212d825c,
0x2882cbff, 0xe6d4ff28, 0xd5ffff66, 0xb9430ad7, 0xff302608, 0x9a195f01, 0x2865828b, 0x8bf833fb, 0x1bfbffff, 0x21f082e8, 0x09821018, 0x82726821,
0xf047397f, 0xf7d4fb08, 0xffff0534, 0xff2406f6, 0xcc6c0500, 0x27f9ffff, 0x0b00fff0, 0xff233582, 0x84190c00, 0x210c22be, 0x21ea8248, 0x168210d8,
0xffcc0c26, 0x94d80a00, 0x70232a82, 0x84f708a4, 0x0f00223a, 0x271e82e1, 0xff00e007, 0x842b1300, 0xa0203f82, 0x072d0982, 0xffffd8e3, 0x08a430f0,
0xe70700ff, 0x820a84f0, 0x82982019, 0xc7ec2278, 0x320e86ae, 0x080a17f8, 0x2ef9feff, 0x7cffff14, 0xff0548a1, 0x82cc0601, 0x997c2b7e, 0x00ff059a,
0xff5ccf0f, 0xa882f8ff, 0x68060028, 0xecfffff6, 0x0e8238c9, 0xd8821720, 0x142ef027, 0xfaffff08, 0x205e8263, 0x22e883f4, 0x8234b3f4, 0x00803158,
0x66f3ffff, 0x0e088b66, 0x94f7bb2f, 0x06f4f715, 0x4e05104e, 0x51220720, 0x10828bec, 0x0814ae22, 0xff290685, 0xa4b0f1ff, 0x6b0d00ff, 0x055e4e86,
0x82fb0821, 0x5aff2030, 0xb0270b3c, 0xffff8ba4, 0x82c235ef, 0x85068330, 0xf0ff2347, 0x57853eca, 0xf4f70825, 0xb21514fb, 0x8297a035, 0x4e9786ce,
0x3020059e, 0x2505a047, 0xf4ffff15, 0x93820040, 0x33b3f432, 0x780600ff, 0xfaffff10, 0x00ffd763, 0x0894380b, 0x22062841, 0x825ccf0f, 0xf0672619,
0x381300ff, 0x05414152, 0xe8070024, 0x574108f6, 0x83003305, 0xff056666, 0xc435f9fe, 0x5e8300ff, 0xffff05b8, 0x2f822ff0, 0x66e60727, 0x98f9ffff,
0x21348210, 0xab41a430, 0x82002005, 0x82082048, 0x19e4210a, 0x13224486, 0x5882442b, 0x82486121, 0x48e1210e, 0x1e2f6c82, 0xd4f708b8, 0x0060ffff,
0x00ff0501, 0x8290e20a, 0x0a97218a, 0xcc212182, 0x21a482cc, 0xa48267e6, 0x66e6f323, 0x83068308, 0x27f9222e, 0x261682f0, 0xffff14ee, 0x826c27f5,
0x5c8f262a, 0xfbd4fb08, 0x2f808234, 0xfff668fb, 0xe2bafdff, 0x1cfbffff, 0xfeffff29, 0xfb228a83, 0x71463333, 0xcc002305, 0x974fcd4c, 0xb3932307,
0xe1460633, 0x0ae64e0b, 0xee226582, 0x9e417c54, 0x91f22206, 0x069e41ec, 0x260efd41, 0x00ff8bea, 0x82aec710, 0x11002393, 0x325cd8a3, 0x0e002305,
0x2682285c, 0x8bf6a82e, 0x6c00ff08, 0xff06cd4c, 0x00801c00, 0x17272882, 0xffff3333, 0x825ccfe8, 0x66e3225a, 0x23338268, 0xac47ecff, 0x0734bd82,
0xeeffffae, 0xffff0040, 0xff5278ec, 0xd823f6ff, 0x9effff08, 0xff23a482, 0x82e2bac6, 0x4cf521cd, 0xfa22fe82, 0xe2823233, 0xf521c883, 0x05ad4180,
0x63083422, 0x28072b4b, 0x5c4f0e00, 0xaef1ffff, 0x20a49516, 0x06f74bec, 0x1500ff2f, 0xdb0734b3, 0xff2e00ff, 0x00ff05ff, 0x286d8227, 0x00c01300,
0x871800ff, 0x210e82ae, 0x278285ab, 0x7c142c22, 0x00329882, 0xff98d93f, 0x9a19ccff, 0xf03300ff, 0xc0ffffa4, 0xcc823333, 0xb3c3ff28, 0x90feff33,
0xd85c9002, 0x5c66834e, 0xe62e05d8, 0x0e088b66, 0xcccf00ff, 0xab01ffcd, 0x67821e45, 0xcd8ca225, 0x82edffff, 0xb4ff21d9, 0xff23a982, 0x82f4a8b4,
0x3d86820e, 0x5d8fa2ff, 0xe4ffff08, 0xffff295c, 0xff9b1973, 0x3e4a6000, 0xb382ffff, 0x8200ff30, 0x23823473, 0x089c1936, 0x021300ff, 0xfdffff8f,
0x00ffac1c, 0xfff62811, 0xe4250f00, 0x1322e282, 0x1a82e03a, 0x06000028, 0xa90000ff, 0x118205c0, 0x70bd0f30, 0x8ff4ffff, 0x0d00ff5c, 0xffffd823,
0xf78299f0, 0x285c0222, 0xab315f82, 0x00ff66a6, 0xffe2fa0c, 0x6726bfff, 0x264900ff, 0x232e8266, 0x08eb1158, 0x66210682, 0x251182e6, 0xff299c58,
0x30835200, 0x82ca6821, 0xe6f52280, 0x215b8264, 0x0a828a5b, 0x8a21f732, 0x0f4300ff, 0xadffff5c, 0xff8b769e, 0xce0ca4ff, 0xff233582, 0x820ad7ef,
0xe9ff2672, 0xfffff6e8, 0x211d83ee, 0x2c820aee, 0x9255e920, 0x82068305, 0xcc0c2116, 0xf521b082, 0x226382c2, 0x820a1716, 0x1978234f, 0x0c82079a,
0xd6d80832, 0xd6f8ffff, 0x0700ffc8, 0xffff482c, 0x8ba826f7, 0xe023a282, 0x82ff1e05, 0x05142100, 0xb3211b82, 0x30688274, 0xff5819fa, 0x0c02fbff,
0x14feffff, 0xf9ffff7c, 0x22ee824f, 0x8326e7ff, 0x210482c8, 0xb183e2ff, 0x823a0421, 0x2ee022d2, 0x21f68215, 0x4482dcb9, 0x0040d926, 0x45f2ffff,
0xe2214982, 0x2c5a82a1, 0xffebd1dc, 0x6666faff, 0x45d7ffff, 0x311e821f, 0xff5a84f6, 0x70fdbaff, 0x4b3500ff, 0xc5ffff02, 0xda829002, 0x2205b35e,
0x82a4701a, 0x8317209a, 0x8b09361b, 0x1300ff44, 0x00fff628, 0x0804560f, 0xe0ffffa3, 0x00ff34b3, 0x2c6a8329, 0xff289cee, 0x842b2c00, 0x330b00ff,
0x2bd18234, 0xff102e2e, 0x5cb40a00, 0xcc1e00ff, 0x2d22ec82, 0xc2823233, 0xff9a1926, 0x66e62e00, 0x14221e82, 0xf08368e6, 0x16839520, 0x16837a20,
0x986e742c, 0x9966ffff, 0xe1ffff99, 0x208220f0, 0xcd4c1f27, 0x6ee4feff, 0x22c08216, 0x82ae87e5, 0x78ea27f4, 0x1500ff52, 0x8b825c8f, 0x707d1a23,
0x82068508, 0xae872111, 0x8f270482, 0x1a00ff5d, 0x828b5278, 0x85068338, 0xeaff2116, 0xff23b983, 0x828f82e5, 0x2306822d, 0xebffff90, 0x1682f183,
0xe4ffff3c, 0x088b9a99, 0xff30fb0e, 0x00807d01, 0x4c0c00ff, 0x34fb15cc, 0xff0514f8, 0x8e83fbff, 0x86eb0b26, 0x4cf4ffff, 0x0726b982, 0xffff1ec5,
0x2d8219f3, 0x16850685, 0x83f8ff21, 0x272a83f4, 0x7a14f4ff, 0xfc34fb08, 0xf92b3a83, 0xfffff833, 0xffa4b0ef, 0x82b40700, 0x42ed2c49, 0x1000ff90,
0xffff5550, 0x82c235f9, 0x6110229a, 0x200a8248, 0x2209822c, 0x8234b312, 0xfabf2623, 0xc20600ff, 0x2123828f, 0x1482504c, 0xcdcc1f38, 0x4f4c00ff,
0x00ff055c, 0x06cd4cc5, 0xcc1f00ff, 0xb3ffffcc, 0x1082a4b0, 0xe81b0522, 0xb82b7e82, 0x0b00ff52, 0xffff36e9, 0x827a94f8, 0xae8721b3, 0x0426f083,
0xff8b1018, 0x56830400, 0x02cc0022, 0x08260982, 0x0100ffb4, 0x5182e6af, 0x404a1022, 0xd6216182, 0x236b8204, 0x00ff32b3, 0xff227583, 0x7a8233f9,
0xcc4c103f, 0xf9feff08, 0x00ff9a99, 0x1534b373, 0xe64800ff, 0xac00ff67, 0xd305cccc, 0x3353ffff, 0x2abc8234, 0x069a196f, 0xff70fb0e, 0x82190101,
0x99cd2925, 0xff9e159a, 0xcc4c1600, 0xe6218182, 0x07f04466, 0xa4481f20, 0x13db4a05, 0x4b14fb21, 0x034f0c85, 0x14fc210a, 0x5709d644, 0x86280540,
0xab1100ff, 0xf7088b85, 0x00229a82, 0xef824201, 0x200caf4a, 0x23df8286, 0x087a9446, 0x2e250682, 0xfffff2b1, 0x25b783e6, 0xff008028, 0x0482daff,
0x66160027, 0xffff0866, 0x2495833e, 0x15d66392, 0x2eaf4aeb, 0xf7062b26, 0x14f70714, 0x2105854a, 0x0d8514fb, 0x5c4a439c, 0xf7302d13, 0x5800fff4,
0xff153433, 0xc2751600, 0x082da982, 0xffffd8a3, 0x8b5278ec, 0x8af3ffff, 0x30bb823e, 0x28dce8ff, 0x0abdffff, 0xbeffff3e, 0xfffff6e8, 0x8226829e,
0xe67622b7, 0x21228266, 0xfa82b3ad, 0xcecc7522, 0x6a223882, 0x2d823233, 0xcc670030, 0x4f00ffce, 0x00ffb9de, 0xffcc4c77, 0xec418b00, 0x83632005,
0x41002350, 0x4982ae07, 0x8248e121, 0xe3e92238, 0x282d82d6, 0xe2baf3ff, 0x79f6ffff, 0x27728216, 0xffff9042, 0x8b5a84e9, 0xe0225b82, 0x228214ae,
0x2085f12c, 0x403800ff, 0xa9ffff00, 0x1683cc4c, 0x8f029e22, 0xc6271682, 0xffff0a97, 0x82f468ab, 0x7db5220a, 0x22448370, 0x8252f8b5, 0x856b2428,
0x82aaffff, 0x62002360, 0x2d82e1fa, 0x82570021, 0x000024ac, 0x82999002, 0x8233201b, 0x801f28a5, 0x0e088b00, 0x56f730fb, 0xfb2306fc, 0x61058b14,
0xe94116e7, 0xff14291a, 0xde010000, 0x7b00ff05, 0xff244e82, 0x00806400, 0xff820484, 0x8c821082, 0xff221783, 0x16849bff, 0xff227e24, 0x268284ff,
0xfe2d1682, 0x15900280, 0xd4f7062b, 0xff06eb07, 0x09f64e00, 0x38b8ff23, 0x22c88252, 0x8214aea8, 0x82ff2024, 0xffff2906, 0xff3333b8, 0x866bb6ff,
0x5506344b, 0xee2122d5, 0x07ab6254, 0x220a7f52, 0x820714f8, 0xa8112294, 0x10d556f6, 0x6194f721, 0xff220c45, 0xdf62abf1, 0x54ee220a, 0x05ca527c,
0x84221682, 0x3a56ffff, 0x06742905, 0x0080ffff, 0x34f70701, 0x425a3984, 0x15ae2109, 0x2382bc82, 0x7157bc83, 0x8274820a, 0x8b7b2939, 0x0634fb08,
0xf70714fb, 0x00203f82, 0x2006f958, 0x588e8290, 0x205505f9, 0x01ff240c, 0x8570fd7f, 0x837f944c, 0x207c9045, 0x227c8214, 0x835238ef, 0x5706827c,
0xf02206ee, 0xd541aec7, 0x207c8405, 0x12225c34, 0x5312155a, 0x354108b5, 0xc5102205, 0x16354120, 0xb582b320, 0x840e0021, 0x083541c0, 0xf82f0e23,
0x059b5a54, 0x9a99702b, 0x6689ffff, 0xb1ffff66, 0x29098219, 0x8b9a9995, 0x7bffff08, 0xa88233b3, 0x3333a626, 0x336a00ff, 0x74203f83, 0x20052943,
0x2b28827c, 0x67e66400, 0x806300ff, 0x7a00ff00, 0x08371b82, 0xd75400ff, 0x00ff8b0a, 0xffc2f552, 0x52b8c8ff, 0xdfffff8b, 0x82087a14, 0xb8ed2206,
0x26e18254, 0xffffcc0c, 0x82ac47f2, 0x34f321e1, 0xe0225b83, 0x1b82c2f5, 0x8240f021, 0x2838253f, 0xa6fffff8, 0x22059050, 0x820a57a8, 0x8fb82716,
0xb9ffff5c, 0x0a820857, 0x2adca622, 0xdd250683, 0x00ffa430, 0x2804821b, 0x8e0284ff, 0xe88300ff, 0x224482f6, 0x82734f00, 0x410026a0, 0x00ff6626,
0x21b78237, 0x8e830d00, 0x9a994722, 0x7922bb82, 0x0e4566e6, 0x0a60420c, 0x220c3359, 0x5c146e0d, 0xa8230863, 0x82060200, 0x34b3260c, 0xd70000ff,
0x08ef410a, 0xff236382, 0x55cd4cee, 0x01240670, 0x1570fd7f, 0x22096743, 0x52abf1ff, 0x54550ee4, 0x54f72714, 0x0694fb07, 0xd54154fb, 0x82112034,
0x20bf8262, 0x2091827b, 0x07e15954, 0xec41b485, 0x0a084305, 0x0714fb25, 0x5a0694f7, 0x11210581, 0x202555ab, 0x43073f43, 0xb0210fab, 0x064b43a4,
0x5c4fee24, 0xda5b088b, 0x117e5a10, 0x875c4f21, 0xa4b0299c, 0x06eb088b, 0x2b07d4f7, 0x200e0f5c, 0x0c2c5754, 0x34859a83, 0x0f5c7c20, 0x08e65d17,
0xffff8b22, 0x8505dd43, 0x4e842096, 0x2b220608, 0x9544fb06, 0x42112005, 0x545a0adc, 0x059d430d, 0xfcfeff25, 0x82079a99, 0xa3a93345, 0xb8ffffd6,
0xffff5238, 0xff90c2b9, 0xaec7a7ff, 0x0685088b, 0x002f1685, 0x8b904246, 0x575600ff, 0x00ff080a, 0x56f66823, 0x8620056b, 0x5605b24c, 0x11200570,
0xb24cdf83, 0x0a7c410b, 0xdcffff24, 0x3382b89e, 0xebccff2d, 0x2b00ff84, 0xffff5c0f, 0x503473d6, 0x0023120e, 0x82cc8c29, 0x14332767, 0x01ff087c,
0x33835e03, 0xe4410020, 0x0d474105, 0x0e306796, 0x01ff70fb, 0xffcc4c3a, 0x34331200, 0x0a00ff15, 0xf1216983, 0x25d68278, 0xffc460fc, 0x0e84ecff,
0xffd07726, 0xa4f0f5ff, 0xfa2fdf82, 0xffff2070, 0xfff027fc, 0xeaa6f9ff, 0x84feffff, 0x52b82109, 0xf52dfa83, 0xff8b0ad7, 0x3e0af6ff, 0xcf0400ff,
0x262082e0, 0x00ffaec7, 0x82cef708, 0x6c7a3235, 0xc000ff8c, 0xff0520f0, 0x66e6bfff, 0x66beffff, 0x200a8266, 0x059d6992, 0x7a54ee25, 0x42f1ffff,
0xfd5d0d25, 0x0e98440d, 0xa405ce45, 0xffff33dd, 0x0734b348, 0x19c900ff, 0xcd00ff9a, 0xff0534b3, 0x38830c00, 0x289c0c2c, 0x511400ff, 0x0000ffec,
0x13820040, 0xffb89e27, 0xd8a3f3ff, 0x210a8708, 0x1982f4a8, 0xff904226, 0xe2baebff, 0x1e841982, 0x822a5c21, 0xcc7627c9, 0x73ffffcd, 0x488232b3,
0x65a68c28, 0xdc34ffff, 0xf042052a, 0x4274201e, 0x6f5d0fbb, 0x0b9c4607, 0xfb24cda4, 0x54f707f4, 0x5c085544, 0xcc2005fc, 0x220cfc5c, 0x4254f82f,
0x544405a6, 0x245a410b, 0x01ff2008, 0x075c4f16, 0x997affff, 0x37ffff9a, 0xff0568e6, 0xb81ef4ff, 0x30eeffff, 0xe2ffffa4, 0x5c8b0080, 0x1123067a,
0x82085ccf, 0x66a62b25, 0x19c800ff, 0xfeff0598, 0x5e46b3e9, 0x856aa40a, 0x170e37f7, 0x0900ff0a, 0x00ff1038, 0xffc2750c, 0x42800d00, 0x140400ff,
0x0a82087c, 0x82527821, 0xf027250a, 0x9e0e00ff, 0xfa278182, 0x00fff8b3, 0x82ecd107, 0xd0422180, 0xa5211e82, 0x2714825e, 0x0534f307, 0x66a500ff,
0xf8228682, 0x0a829a19, 0xe0cf0727, 0xba0b00ff, 0x263482e2, 0x00ff72a8, 0x82cc4c05, 0x82702048, 0xd9fb22bb, 0x2734829a, 0xff707d0d, 0x98d9fbff,
0x33267282, 0xf3ffff34, 0xd082ce8c, 0xf4e8f122, 0x27118845, 0xffae87f2, 0xe08ff7ff, 0xf8212482, 0x21048252, 0x38821659, 0x82f66821, 0x63fc26f4,
0xfeffffd6, 0x253e82b3, 0xff6866fc, 0x7c82ffff, 0x49fcff21, 0xf6220594, 0x4f8220b0, 0x82eef621, 0x1304275f, 0xf9fffff8, 0xb3823eca, 0x08267130,
0x97f8feff, 0x3c01ff0a, 0xff057c14, 0xac63d8fe, 0x2a2a410b, 0x52780d2c, 0x700800ff, 0x0c00ff21, 0x0482ae07, 0xffeaa626, 0x0a970400, 0x2306ad42,
0x18840400, 0x3820f582, 0xfc22ac82, 0x2882e83b, 0xfff6a837, 0x18a4f5ff, 0x0701ff08, 0xfefff668, 0x0544ebc3, 0x992701ff, 0x0581449a, 0x44112c45,
0xa8210d19, 0x27c982f6, 0x087a54ee, 0x74f72f0e, 0x22078951, 0x82008084, 0x809b2415, 0x82ffff00, 0x820a8204, 0x85082010, 0x00ff2206, 0x4a168664,
0x9582050e, 0x8322154a, 0x0b154a32, 0x220c3945, 0x59aec747, 0x58200905, 0x0020d882, 0xff241182, 0x48e14600, 0x8205354a, 0x1e3c4a62, 0xffff3425,
0x82ec51b7, 0x61cc2054, 0xd74c0deb, 0x5c4f2105, 0x7144ba82, 0x43ed8607, 0xae510930, 0x86ab2106, 0x4414ae51, 0xeb20088b, 0x830ec44a, 0x23b582a3,
0x08ec5157, 0xc44a0685, 0x49002305, 0xf9557a94, 0x062b260d, 0xfdbf00ff, 0x613e8470, 0x918214c2, 0x2109d555, 0xcb82f3d4, 0x9a19cb22, 0x30053666,
0xff9a1989, 0x00802d00, 0x2200ff15, 0x00ffb81e, 0x28e48227, 0x5ccf1400, 0x283300ff, 0x227682f6, 0x831e0538, 0x417b207d, 0x64200891, 0x85260983,
0x088b6666, 0x0683ffff, 0x99ffff24, 0xc4418cab, 0x997a221d, 0x232d829b, 0x33732c00, 0x29275082, 0x00ff285c, 0x82f6280d, 0xe325086f, 0x1600ffd8,
0xff08866b, 0xe2ba2e00, 0xebc7ffff, 0x00ff0584, 0xfff85306, 0xf067f8ff, 0x170900ff, 0xfcffff8e, 0x21098312, 0x4083842b, 0x9a591522, 0x0a274082,
0x00ff48a1, 0x82904212, 0xc00d220a, 0x369c8300, 0xff163907, 0x2691fdff, 0x440700ff, 0xfbffff5a, 0x00ff9603, 0x82e2fa05, 0x6bd130a0, 0x3900ff3c,
0xff053e0a, 0x66e656ff, 0x83f2ffff, 0xa7ff21e8, 0x5b08ee57, 0x18420d1e, 0xcadb2f2d, 0xf3ffff3e, 0xffff3473, 0xff14eede, 0x9682ebff, 0x28e5ff23,
0x277582f6, 0xff1e85b9, 0xb89e5400, 0xf9227582, 0x958278a9, 0xffd4982b, 0xe4e5f6ff, 0xee0300ff, 0x210982da, 0xcd827bd4, 0xbaeaff2c, 0xffff8be1,
0xff5c4ff5, 0x9084edff, 0x3433f222, 0x2208cd82, 0xeac6f8ff, 0x6e0200ff, 0xf8ffffd9, 0x00ffa6bb, 0xff6bfc04, 0x1e05faff, 0x4700ff08, 0xffffae87,
0x82862baa, 0x9ee82257, 0x20cd82fa, 0x266c8297, 0xff3333e5, 0x82b3f7ff, 0x54e32086, 0xe43e08f1, 0x00ff33b3, 0x15cc4c8a, 0x4c3500ff, 0x1500ffcd,
0xffb19a19, 0xcdcc3300, 0x3c00ff8b, 0x6582cdcc, 0x684f0026, 0xbffffff6, 0x002b0482, 0xff0a9740, 0x0a97b0ff, 0x65fb088b, 0xa34f0db8, 0x0be94924,
0x370ac54a, 0xff0714f7, 0x146e5d00, 0x6800ff06, 0xffff0080, 0x0566666d, 0x400600ff, 0xf7200a82, 0x00220482, 0x7482d709, 0x7a54fb24, 0xd7828b95,
0x836c0621, 0x7c062691, 0x0100ffee, 0x220f82ec, 0x82d6a305, 0x180421f7, 0x0e350a82, 0x00ffd863, 0xff1e450a, 0x0a570300, 0xfa1300ff, 0xf5ffffe2,
0x825582c1, 0x2bfc8218, 0xff61a5aa, 0xf4bd7700, 0x5bffff05, 0xd525e883, 0xf715a4b0, 0x221e8204, 0x82291c2c, 0xe3232beb, 0xdcffffd7, 0xff8b2a1c,
0x184fd3ff, 0x83068205, 0xff292511, 0x9002ddff, 0xd7201583, 0x3083f682, 0x199f2f08, 0xfb0e079a, 0x5d01ff30, 0x00ff66e6, 0x1566e644, 0xb8f9ffff,
0xdbffff10, 0xffffb85e, 0xff1a64ec, 0x2a9ce3ff, 0x33e1ffff, 0xeeffff32, 0x7c82f4e8, 0x8217e721, 0x2bf22cc3, 0xe2ffff86, 0xffff7bd4, 0x8298d9fa,
0x99592109, 0xff2dd182, 0x8bd723c2, 0x0fc0ffff, 0x1600ff5c, 0x2020826b, 0x229c83e0, 0x82c2f50c, 0x9eef2635, 0x0600ffb8, 0x270982ac, 0xfff628f8,
0x02ab1200, 0xab270e82, 0x1000ff85, 0x82082a5c, 0x19a4210a, 0x19820a84, 0xc782a120, 0x84eb0722, 0x6e200e82, 0x45218c83, 0x351e821e, 0xff5c8f4d,
0x2a5ce0ff, 0x0a4900ff, 0xf8ffff3e, 0x00ff0040, 0x04828023, 0x32b31322, 0x0d251e82, 0x00ff7ad4, 0x325c8207, 0x0cd70700, 0xbf0b00ff, 0x0300ff7e,
0x00ff1e05, 0x825c8f11, 0x8307201e, 0x4f2a212e, 0xe6314282, 0x00ffcc8c, 0xffa4700e, 0x0180aaff, 0xa11800ff, 0x26908248, 0xff4861b9, 0x824a1400,
0x839f2057, 0xe61b2209, 0x20858267, 0x22138221, 0x82ff7f69, 0x7b05233d, 0x1082abe8, 0xfff02724, 0x81831b00, 0x77831b20, 0xf6a81122, 0x2d261a82,
0x00ff0a97, 0x7c82541d, 0x82684521, 0x8a022dd4, 0x5b00ff3e, 0xffff6666, 0x0868d1e7, 0x17307d82, 0xfbffff0a, 0x00ff1078, 0xff142e0a, 0x247beeff,
0x7a210e82, 0x210982e2, 0x778284eb, 0x0a85fb20, 0x0f828620, 0xffc27526, 0x9ad9f5ff, 0xee260982, 0x0400ff14, 0x1e82e07a, 0xe2baa422, 0x3324a182,
0xd4ffffb8, 0xf52b5283, 0xffff285c, 0xff6766eb, 0x82cff2ff, 0xf3ff2bd4, 0xffff3373, 0xff20f0f7, 0xb582f8ff, 0x8ff4ff2d, 0xfdffffe0, 0xffff8f82,
0x820080f1, 0xbbf82c3d, 0xd5ffffe7, 0x00ffa4b0, 0x82bd7419, 0x5c8f2414, 0x835500ff, 0x5ee7221e, 0x209a82b8, 0x270f8246, 0x15aeebff, 0x996000ff,
0xe4217682, 0x214c8233, 0xb982e6ed, 0x66669622, 0x4b0bca47, 0x504d08e5, 0x08c34f05, 0xfb061423, 0x0e364df4, 0x4f16ae21, 0x06850629, 0x2005404f,
0x05797400, 0x84ab1126, 0x07f4f708, 0x210e0d53, 0x7e4c0e00, 0x0d626a11, 0x62d4f721, 0x264f0e23, 0x30fb2309, 0xa24914f8, 0xffff2405, 0x83ce4c1e,
0x8397208c, 0xdea92ec0, 0xa9ffffb8, 0xffffcccc, 0x8b482196, 0x82068508, 0x2f168211, 0x48615500, 0x6800ff8b, 0xff0884eb, 0x34b3e100, 0x2105c747,
0xc64dff86, 0x22678826, 0x5e7a54ba, 0xc723065e, 0x5effb85e, 0x0683055e, 0x5c5e7c20, 0xab382207, 0x220a8284, 0x9048a145, 0x20388267, 0x052e4e0e,
0x4d111d63, 0x8f5509f7, 0x73012406, 0x551584ab, 0x64550654, 0x48212105, 0x21077855, 0x8f553433, 0x0a57310f, 0xc10700ff, 0xfbffffca, 0x00ffae07,
0x084aec0b, 0x2706ca55, 0xfff833f9, 0x5c4f1000, 0xb4261e82, 0x1200ff05, 0x8f5570bd, 0x06002405, 0x82083eca, 0x4861260a, 0xdb0600ff, 0x061955e8,
0x1638f822, 0x23058f55, 0xb0b3efff, 0x82271e82, 0xfeff5278, 0x8268e6c6, 0x80822739, 0x3901ff00, 0x0a829a19, 0x18c40622, 0x4c213982, 0x213482cc,
0x58823ab4, 0x823eca21, 0xb85e250e, 0x21f9ffff, 0x1022f483, 0x0a829042, 0x55323321, 0xff230572, 0x831e45ed, 0x35b2820e, 0x0814aeef, 0x02ffaf0e,
0xff98193d, 0x00c07401, 0xfc24fb15, 0xb3820514, 0x82084c21, 0x276a82cf, 0x7208f4ff, 0xc2f7ffff, 0xf2203f82, 0x28050e4d, 0x8b0498ff, 0x97ffffff,
0x250584fc, 0x0000fff0, 0x2c82fe03, 0xe23af222, 0x83350a82, 0xf4fffffe, 0x00ff281c, 0xff0a4809, 0xd823fcff, 0x3b0d00ff, 0x271e82a6, 0xffca96af,
0xa6ac1601, 0xae215b82, 0x22c182b8, 0x82cc4ce9, 0x24fc260a, 0xf2ffff19, 0x278d82c5, 0xffe71bf4, 0xc4b5f6ff, 0x3a210e82, 0x215e82e1, 0x3482707d,
0x0040f222, 0x88210a82, 0x268a8204, 0x00ff856b, 0x820c5008, 0xf6282a99, 0xe70c00ff, 0x24fb08f0, 0x22a983f8, 0x8208ccf9, 0xcc8c21ea, 0x64211e82,
0x21fe8219, 0x0e82166e, 0xffc18a26, 0x52380600, 0xcd201984, 0x28210a82, 0x261982f4, 0xffffa470, 0x84a4b0f7, 0xffff2419, 0x823473ef, 0x336e321e,
0xdafeff33, 0xff0566e6, 0x7b145500, 0xb32301ff, 0x210a8234, 0x4e820c04, 0x96820c20, 0x800c0023, 0x24cb8200, 0x00ff6666, 0x05c0510e, 0x7f820683,
0x82ae8721, 0xa09a26ad, 0xfd0300ff, 0x21b28270, 0x4b829458, 0x7a145525, 0x83dcfeff, 0x6e0026d7, 0x01ff3433, 0x05994125, 0x86103821, 0x7312229f,
0x21a48274, 0x0e825e4f, 0xffb08726, 0xb8def9ff, 0x10273482, 0xffff9899, 0x8284abfa, 0x68662b19, 0x8fedffff, 0xf8ffff5c, 0x9f8564e6, 0x30fb0e31,
0x997801ff, 0x1400ff9a, 0xff150080, 0x824f0b00, 0x6bf22c1d, 0xfeffff86, 0xffff8c2c, 0x827ad4eb, 0x086c267b, 0xb0f4ffff, 0x250582a4, 0xff1804fa,
0x0483fbff, 0xe8bbf827, 0x8ffdffff, 0x4f4b82e0, 0xf62305be, 0x828bf8d3, 0xeae621b1, 0xec20b182, 0xf9272a82, 0x00ff14ae, 0x82169907, 0x8d782a0a,
0xa300ffd2, 0xff05ac5c, 0x236a83ff, 0x00805dff, 0xf9210a82, 0x221a82ac, 0x82f067f8, 0x73e82634, 0x12fcffff, 0x083148f2, 0xf0c7f822, 0xf8274b82,
0x00ff2fbd, 0x82207002, 0x8f0226bd, 0xfb0400ff, 0x223082e8, 0x86856bf2, 0x2bfe21a5, 0x14220982, 0x0e82862b, 0xffe55026, 0x7a940d00, 0x8e25ec82,
0x00ff66e6, 0x275f84ab, 0xff741371, 0x54a3aa00, 0xf4226a82, 0x2083dfaf, 0x00ff7c25, 0x82f8d301, 0x842b21ea, 0x95210e82, 0x82488440, 0x05ea7634,
0x830a5721, 0x82852019, 0x0e2d21f9, 0x54211982, 0x25f9827b, 0xff08d863, 0x72828700, 0x885dff24, 0x0a8205b4, 0x5e826620, 0x5e83a220, 0x4c0b0023,
0x827484cc, 0x162e2134, 0xd7215882, 0x230e850c, 0x8aacf4ff, 0x8e823482, 0xf4ffff24, 0x1982a4b0, 0xff7cd424, 0x0483ebff, 0x1aaff422, 0x6b215382,
0x25c68284, 0xff9a1971, 0x488454ff, 0x2ef28e22, 0x772e0a82, 0xfb0e054c, 0xff0ef830, 0xd8636d01, 0x1282fb15, 0x5c4f2822, 0x6a21ba82, 0x0e234e33,
0xec91f222, 0x2312bb79, 0xfe7f0d00, 0x2d087674, 0x0734b395, 0xf865ffff, 0xd700ff10, 0x4482a4b0, 0xcfb7f52c, 0x610e00ff, 0x0300ff46, 0x5c481e58,
0x0e002805, 0x00fff960, 0x82ae470a, 0x830e20ab, 0x450a21fa, 0x14271982, 0xffff3e0a, 0x82eaa6fc, 0x00402619, 0xa0f1ffff, 0x271e8200, 0xffc2f585,
0xb05245ff, 0x8520ff82, 0x0021b682, 0x82b684bb, 0x2253823a, 0x829fb85e, 0x7c542154, 0x59200a82, 0xf522d182, 0x3082c4c0, 0xb85e0e22, 0xe530fb82,
0x0400ffa2, 0xffff3233, 0xff1e05ec, 0x34b3f5ff, 0x9e214f82, 0x056a46ba, 0xaa558b20, 0x11bd5005, 0x06d4fb28, 0x97f3ffff, 0x3c418b0a, 0x30072d06,
0xfaffff20, 0x00ff00c0, 0x08663b0b, 0xb8200a82, 0x0b20d482, 0x00219b82, 0x2b098301, 0xffae470d, 0xdfef0700, 0x870900ff, 0x0126c982, 0xffcc4c14,
0x9f834b01, 0x4b04ff23, 0x173d5086, 0x50087954, 0xf7200d3a, 0x00237b82, 0x82f6680c, 0x820b201e, 0xf8ff2619, 0x00ffe0cf, 0x236b8205, 0x9ac4f4ff,
0x0522d682, 0x9582f047, 0xff218b82, 0x260983fe, 0xff54b8f2, 0x8210f8ff, 0x78f62b9f, 0xfeff0850, 0xff7cb4eb, 0x7b83b4fe, 0xb3fb0023, 0x0ec54633,
0x2c090f53, 0xf70eb0fc, 0x1554f7f4, 0x75d9ffff, 0x2ca182c2, 0xff723df0, 0x00800d00, 0x33ecffff, 0x05076832, 0x19eaff27, 0x0400ff9a, 0x28f082e6,
0x00802f00, 0x00ff6b07, 0x23578203, 0xfcffff6b, 0xd020da84, 0xff201382, 0x86202483, 0x33253483, 0x66f6ffff, 0x06ab7666, 0x8299f221, 0x89ff23a9,
0x59820080, 0x0020f723, 0x20a1828b, 0x225a82e0, 0x8266e6f8, 0x19f7250a, 0x072b089a, 0xff230885, 0x85200700, 0x00ff2518, 0x8b00e008, 0x5c22df82,
0xb582aec7, 0xb89e1436, 0x33daffff, 0x2b00ff34, 0xffff9a99, 0xbecccce5, 0x8bbe088b, 0x97360e82, 0x1a00ff0a, 0x00ff0040, 0xff2a9c14, 0x00c02500,
0x0c00ff08, 0x3382cccc, 0xb89e1122, 0x0e272082, 0xffff4861, 0x82c2b5f1, 0x61ee2360, 0x06850848, 0x0e00ff22, 0xf12a9c83, 0x00ffae87, 0x8b9a9911,
0x2f8ccb08, 0x4f0e0023, 0x213a825c, 0x2f83a111, 0x5c580026, 0xb8ffff28, 0x00232f82, 0x6f34b347, 0xff3106fb, 0x48a1f1fe, 0x196000ff, 0x00ff159a,
0x9ab85e8e, 0x22068205, 0x827c6666, 0x80092306, 0xbd828a00, 0x829a1921, 0xcccc23cc, 0x8f82958b, 0x34331e28, 0xff958b07, 0xf582f7ff, 0xbd07002d,
0xf6ffff70, 0x088a4881, 0x8391ffff, 0x5cf422d6, 0x2336822a, 0x07cccc1b, 0x08217382, 0x22ae82e1, 0x8266e6f8, 0x821e203c, 0x19f721f2, 0x6b219c82,
0x823a8206, 0xffff2108, 0xff231883, 0x8248e1f8, 0x1ef729c5, 0xffff08b8, 0x070040e4, 0xa1274682, 0x0b00ff47, 0x8205289c, 0x00802258, 0x202d828c,
0x243b82de, 0x8b723df8, 0x22238281, 0x828ec2e1, 0x05c85359, 0x83210821, 0x3433235e, 0xa68200ff, 0x0e088c39, 0x3f02ffaf, 0x00ffcccc, 0x150080c0,
0xff7c798b, 0x66e6f1ff, 0x82088b7a, 0x00002271, 0x22ec82b3, 0x8266e65f, 0x19002c9b, 0xdcffff98, 0xffff0080, 0x82ce4ce3, 0x223f8204, 0x8299dcff,
0xfeff2599, 0x069a99bf, 0xa6211b82, 0x23928266, 0xff0a57e3, 0x240a2a66, 0x66a000ff, 0x229d8266, 0x82c3f5df, 0xf8ed2222, 0x25228252, 0xffe1faf1,
0xcb820e00, 0x8b089d29, 0x0300ff94, 0x82930601, 0x89012fe9, 0x01ff0892, 0xffd66300, 0xe87bdf00, 0x12829205, 0x82940321, 0x00013b18, 0x088b9284,
0xff938b92, 0xfafefdff, 0x190600ff, 0xfaffff9a, 0xff0870fd, 0x8d836a00, 0x6250a222, 0x24229d82, 0x414934b3, 0x57842005, 0x002a0595, 0xff7c540e,
0x34b31100, 0xda6b088b, 0x0835560f, 0x070dfb25, 0x823400ff, 0xd1ff25f9, 0x93050080, 0x04303982, 0xff839c19, 0x64e6feff, 0x8b8b0882, 0xb8feff05,
0x0029e482, 0x1500803f, 0xb3f2ffff, 0x24ba8233, 0xffcd4cf5, 0x820482ff, 0x2110820a, 0x73823b08, 0x34251982, 0xb30a00ff, 0x29188333, 0x0d00ffcc,
0x088bcd4c, 0x088306db, 0x838bcc21, 0x201d8418, 0x240a8234, 0x08cc4c0d, 0x833182db, 0x842c8622, 0x83f22036, 0x063b2da5, 0x84f8ef0e, 0xff1534f8,
0x00801a00, 0x15202d82, 0xea22dc83, 0x6a829082, 0x707de527, 0x0784fb08, 0x17b943cb, 0x24052571, 0xb3f1ffff, 0x7c048634, 0xfe270522, 0x0666e6be,
0x83f8ffff, 0x4c3625c5, 0xd1ffffcc, 0x00210482, 0x29258329, 0x8b9a99c7, 0xc7ffff08, 0x3c829999, 0xd583d120, 0x1b82d620, 0x3af8ff28, 0xc9ffffe1,
0x1a8234b3, 0xb8deee23, 0xb7401806, 0x8200200b, 0x82968290, 0xf708229c, 0x27c58394, 0xff90821a, 0x717d1500, 0x70200483, 0x8235b582, 0xf8088b8f,
0x44fc0654, 0xffff153b, 0x07cccc67, 0xd40900ff, 0x0605437b, 0x52b80a37, 0x190700ff, 0x0b00ff9a, 0x00ff3373, 0x08cdcc05, 0x338300ff, 0x21488333,
0x9a82cc08, 0x0ad7f822, 0xa9822082, 0x28f7ff23, 0x839a83f6, 0x82bb8206, 0xf8ff2316, 0xa582cccc, 0x3433f72a, 0xf7078b08, 0x1504fb04, 0x66214082,
0x208c8266, 0x22b88305, 0x82cdccff, 0x2609840f, 0xff080080, 0x8ab37000, 0x201b8355, 0x63558407, 0xf720054e, 0x55820682, 0x8705dc7b, 0xffff2455,
0x82cd4c8f, 0x234e83ae, 0x00800000, 0x00224e85, 0xa9833300, 0x08266882, 0xecffffdb, 0x7682cdcc, 0x66660b25, 0x83faffff, 0xcc0a2217, 0x058a43ce,
0x83090021, 0xe6f722be, 0x227a8266, 0x89343398, 0x201682d0, 0x207a8600, 0x21d08434, 0xc5823433, 0x3782cb82, 0xff2cd088, 0xcdcc7cff, 0x00ffeb07,
0x15333383, 0x8205fd59, 0x060941e7, 0x00212b83, 0x822b8208, 0x8506835a, 0x82548316, 0x221082fb, 0xae54f708, 0x14f7236e, 0x3b85158b, 0x50858484,
0x7182ff20, 0x93b3a098, 0xfb14fc23, 0x276683b4, 0xff34332c, 0xcdcc2300, 0xcc250483, 0x332c00ff, 0x84668233, 0x2a168506, 0x3433dcff, 0xd3ffff8b,
0x8508cccc, 0x82ff2006, 0x83332011, 0x83342004, 0x82cd2015, 0x201c822d, 0x221b82cd, 0x843333dc, 0x82bb8244, 0xdb082454, 0x7eff156b, 0xfb760ad3,
0x34b32107, 0x17824782, 0xf1213d82, 0x243082b3, 0xffcc4c0e, 0x10077dff, 0x46f1ff21, 0x384308f2, 0x203f8206, 0x053843cd, 0x08255484, 0x02ffef0e,
0x233b8273, 0x33b3dc00, 0x09366882, 0x00ff6470, 0xfff0c702, 0xf85e0500, 0xde0900ff, 0xfdffff76, 0x0982a430, 0x08d7633b, 0xf6fcffff, 0x0a00ff04,
0xffffc335, 0xff1078f5, 0x5d4f0400, 0x6ef7ffff, 0x21238214, 0x1e82136e, 0xe0baf422, 0xab222382, 0x15820585, 0xfffce92a, 0x66260f00, 0x67f3ffff,
0x0c214d82, 0x28098266, 0xffac47f0, 0x48e10700, 0x2c628208, 0x00ff54e3, 0x055c0f0b, 0xdd0100ff, 0x211582f4, 0x39827428, 0x68823b20, 0x30080f28,
0xa3f0ffff, 0x4f828bd8, 0x7c14f822, 0xf827b682, 0xffffacc7, 0x8246b6fa, 0xf8e82665, 0x02f8ffff, 0x221a820c, 0x829022fd, 0xae072184, 0xf82c6a82,
0x00ff8c4c, 0xff804700, 0x0ecdecff, 0x5e240982, 0xeaffff84, 0xf1227983, 0x2982b4b8, 0xba53f727, 0xbd0800ff, 0x2c298272, 0xff1639fc, 0x7edf0300,
0x56f4ffff, 0x26e28246, 0xfffff0e7, 0x820040f6, 0x10972104, 0xf8262982, 0xffff20f0, 0x58822df9, 0x82d6ff21, 0xc8f4276d, 0x0600ff32, 0x72829ada,
0x0852f827, 0x230900ff, 0x212982d8, 0x488284a0, 0x3e0af427, 0x26edffff, 0x21bd8265, 0x1482a4b0, 0xff527826, 0xd663faff, 0xc5211382, 0x2248821f,
0x821cfaf7, 0x0cc22167, 0x9521d282, 0x21ec8240, 0x1e825c2f, 0x2205a04b, 0x829e4ff9, 0x99f922d2, 0x201b8258, 0x22d7823c, 0x82c2f5fc, 0xb0922173,
0xfb273582, 0xffffe0cf, 0x82dd24f7, 0xfed3213a, 0x6f21dc82, 0x25b7829d, 0xffffe8e7, 0xf182d7fb, 0xcc080022, 0xe2212383, 0x277e8290, 0xff0a17f1,
0x34f3e9ff, 0x7d21f182, 0x20cc8270, 0x2738827a, 0xff0c97ff, 0x70bdffff, 0xfc222482, 0x3982f813, 0x82e2da21, 0x19fc2229, 0x210a82a0, 0x4e82a2e6,
0xff008027, 0x98190400, 0x22788282, 0x83089a19, 0x7e0a2106, 0xeb215b82, 0x211b8286, 0x7482fc89, 0x820af721, 0x8207207e, 0x04002189, 0xf6221983,
0x40827cdf, 0xb89eef22, 0x70212482, 0x266582e6, 0x00ff3473, 0x82c83600, 0xaec726e4, 0x67f3ffff, 0x276a82ae, 0xff0601f6, 0x12030900, 0xf9272982,
0x00fff007, 0x82924d06, 0x62b02129, 0x06212982, 0x26d882e8, 0xffff4821, 0x825e6ff8, 0x64f92229, 0x210a8218, 0x198270bd, 0x82568e21, 0x3eca2623,
0x4b0700ff, 0x22238202, 0x8208146e, 0x88b62143, 0x3e217d82, 0x27488276, 0xff9082f7, 0xecd1f1ff, 0xc0307782, 0xefffff00, 0x00fff668, 0xff981901,
0x9899eeff, 0xf4224882, 0xc282d823, 0x82ee7c21, 0x92f63629, 0xfdffff6e, 0xfffffe34, 0xffc5a0fa, 0x0c22f6ff, 0xcf0200ff, 0x2109825d, 0x53822a9c,
0xf0c70222, 0x9d200a82, 0x09227282, 0x2382b4e8, 0x82ceac21, 0xc2752167, 0xc5212382, 0x221e821e, 0x820a570b, 0xe85b2af5, 0x0800ff05, 0xffff7849,
0x237782f0, 0xf8b30c00, 0xa125db82, 0x0f00ff46, 0x22678263, 0x823e4af8, 0x29fd2772, 0xf5ffff38, 0x72826626, 0x9c84fd22, 0x85265382, 0x0500ffe4,
0x0982bcb4, 0x82265121, 0xa8862153, 0x8a208682, 0x00232982, 0x82e69009, 0x2323820a, 0x1aaf0900, 0x4d822382, 0x78020023, 0x22238252, 0x82081078,
0x23d58278, 0xaec70a00, 0x05277282, 0xffff0c82, 0x8200d0ff, 0x1c9a2624, 0x560000ff, 0x210982fe, 0x0982d8a3, 0x9c84f320, 0x82b85e21, 0x9ce426f5,
0xdc0a00ff, 0x21a6822a, 0x0982562e, 0x1382de20, 0x7e2a0322, 0x03224882, 0x7c820661, 0x82868b21, 0x4e032248, 0x210a8214, 0x1f8266c6, 0xffec3126,
0x721dfbff, 0x40206d82, 0x03225782, 0x29829859, 0x18440922, 0x47263e82, 0x0400ff6c, 0x238282d5, 0xff8a2126, 0xc2b5fcff, 0x3d222382, 0x0a820870,
0x82848021, 0xc0ca210a, 0x0f264882, 0x00fff668, 0x2982a706, 0x82ab0e21, 0xce072114, 0x0d227282, 0x1e82bade, 0x822a1c21, 0x52062748, 0xf7ffff2e,
0x29822e92, 0x18e40526, 0x28f8ffff, 0x0b2c2e82, 0xffffb428, 0xffa265fe, 0x48e10700, 0xd721c082, 0x2229824c, 0x8290e207, 0xeedc210a, 0x9c2bc082,
0x0b00ffec, 0xffff641b, 0x82781efa, 0x9ad92123, 0xf9277282, 0x00ff048b, 0x826a9c08, 0xa80c2248, 0x219282f4, 0x2482aec7, 0x8288ab21, 0x82c22004,
0xa10a2138, 0x0c224882, 0x48823cca, 0xe4d00827, 0x96f9ffff, 0x22298246, 0x8298ee07, 0x7a342144, 0x23212482, 0x21588254, 0x628294b8, 0x5d82d120,
0xd4ed0722, 0x05222982, 0x5e821ccf, 0x8272e821, 0x8243208c, 0x310a221e, 0x21a08228, 0xcf82d00d, 0x8284ab21, 0x1df72272, 0x210a8270, 0x48820a77,
0x9ce40825, 0x830d00ff, 0xa50727ac, 0x0e00ffa0, 0x1982d6a3, 0xff347326, 0xd8630f00, 0x0a274882, 0xffff5078, 0x82f668fc, 0x55092229, 0x210a8280,
0xa18262d0, 0x6d821820, 0x82e70421, 0x350327a6, 0x0900ffc4, 0x29826045, 0x82360321, 0x420927c6, 0xfbffff0c, 0x2382cc0c, 0xff8e1725, 0x82b2f6ff,
0x2e0322cf, 0x27728214, 0xff84abf5, 0x7e8a0300, 0x05274882, 0x00ff78be, 0x82008014, 0x14ae220f, 0x05dd4fff, 0xfce9fe27, 0x731100ff, 0x21488233,
0x14828f0b, 0xd878032e, 0x2cffff05, 0xffff34b3, 0x15cd4c43, 0x4d168e76, 0x54200833, 0x4523d052, 0x2b4906f2, 0x70ff2210, 0x23b0824c, 0x159a99bd,
0x0326d682, 0x00ff81f5, 0x4f821404, 0x04760a22, 0x0826ef82, 0x0800fff6, 0xc18252f8, 0x2afcfb22, 0x1c21eb82, 0x22c18229, 0x82486110, 0x9e8f2124,
0x8c2fbc82, 0xffffffcc, 0x00ffb4c8, 0xff523812, 0x82980c00, 0x09002329, 0xfb82fafe, 0x82eefc21, 0xf8062729, 0xf9ffff10, 0x2982f2b2, 0x829e4f21,
0x99f92b29, 0xde0600ff, 0x0700ffb8, 0xeb82df8f, 0xe89b0622, 0x42210a82, 0x2119828e, 0x2382aa71, 0xffc43526, 0xfeb4f8ff, 0x91212382, 0x227282ec,
0x827849f6, 0x88c1217d, 0x08274882, 0x00ff707d, 0x82162e0e, 0x00403077, 0x971000ff, 0xfeffff0a, 0x00ff68e6, 0x82f66811, 0xdc0b2748, 0x0300ff28,
0x2982d082, 0x926d092c, 0xcb0200ff, 0x0500ff02, 0xb1823a5f, 0x46f4dd21, 0xd82008b3, 0xfd225382, 0x14821038, 0x72826220, 0x4c17f622, 0x53212382,
0x21ab8234, 0x23823e8a, 0x82e23a21, 0xa8f4221e, 0x30f582f6, 0xff059aa4, 0xccc1f7ff, 0x7c0f00ff, 0xf3ffff6a, 0x2309824c, 0xffb85e0c, 0x2205ac6b,
0x82c4b507, 0xd6022772, 0x0a00ff88, 0x728298d9, 0x46760222, 0x78245382, 0xfaffff52, 0x09222983, 0x5382a4b0, 0x82008021, 0x7c752186, 0xf6225382,
0x0a821a6f, 0x82647b21, 0xe6502114, 0x4b212382, 0x216d82c6, 0x0e82ae87, 0x82328821, 0x2efd271e, 0xf5ffff14, 0x72825238, 0xa470fa27, 0x300000ff,
0x252482ec, 0xffff6666, 0xbb82a8ff, 0x6866fa22, 0x0c210982, 0x222982ce, 0x829999f4, 0x281c26f5, 0x4cf4ffff, 0x22a682cd, 0x8281ecd1, 0x7ad42105,
0xfc201a82, 0x00231a82, 0x82c47509, 0xb3fc2244, 0x208d8233, 0x278d8238, 0xffcdccf5, 0x0ce20400, 0xe6215e82, 0x21298267, 0x298230a8, 0x2982f720,
0xb8fcff22, 0xfb221e82, 0x19823333, 0xff2adc24, 0x4e830300, 0x1ec5f622, 0x0322d682, 0x98827d7f, 0x82fe3421, 0x80f02b48, 0xf9ffff83, 0xffffd057,
0x3e8266f1, 0x3233f826, 0x19f2ffff, 0xf6228282, 0x488248e1, 0x6783f920, 0x146e0822, 0xfa262982, 0x00ff9a19, 0x6882d707, 0x7283f420, 0x98990125,
0x83f8ffff, 0x28fa225d, 0x202982f6, 0x223483f8, 0x82d823fa, 0x008021f6, 0xe326bc82, 0x0600ffd6, 0x238234b3, 0x82662621, 0x74062772, 0xf7fffffe,
0x48829663, 0xce57f322, 0x30219282, 0x212482e6, 0x6455295c, 0x61f52706, 0xf3ffff47, 0x48823433, 0x142ef722, 0x66213982, 0x27298266, 0xff6811f8,
0x84cb0500, 0xda2b2482, 0xfeffff1c, 0xffff6e47, 0x82a430fa, 0x2c122153, 0xfa2c2982, 0xffffe530, 0xff8e17f8, 0x2fbd0100, 0xe8212382, 0x21a08272,
0x2382ecf1, 0x82e23a21, 0xe2082272, 0x21da8290, 0x4882f688, 0x821cf721, 0x17f22268, 0x832e820a, 0x66f12272, 0x26198266, 0xffffcd8c, 0x829a99f0,
0x85f52748, 0x0300ff1f, 0x29829a99, 0x7faaf622, 0x2f210a82, 0x29a1829e, 0xffffdde4, 0xffcf17fb, 0xef82fcff, 0xbbf6ff23, 0x2c298222, 0xffc7cbfc,
0xa4b0f6ff, 0xf40400ff, 0x25238239, 0x00ff66e6, 0x48824c09, 0x67e6fc22, 0x0a227282, 0x2e827b54, 0x82817521, 0x42fa2748, 0xebffff8f, 0x0f82e570,
0x82eb5121, 0x34b3219c, 0x1420a682, 0xd2461e82, 0x856b2106, 0x2c075550, 0xff1b8ff6, 0xce4cfdff, 0xa1faffff, 0x255d8248, 0x00ff9a19, 0x1382ce02,
0x9899f622, 0x03225382, 0x68827f0a, 0xff3eca26, 0x6d870a00, 0x7c839182, 0xec910822, 0x91212382, 0x211e82ea, 0xbb83450b, 0x057a5427, 0x160800ff,
0x20d18204, 0x263e82d9, 0xff11980c, 0x8299f3ff, 0xb50f2709, 0xf8ffffc3, 0xbb82b81e, 0xed1cfd22, 0xf0218782, 0x219c82a4, 0x9c8222fe, 0x10d8f822,
0xc42cea82, 0xf0ffff5a, 0x00ff4cf7, 0x8ba65b0f, 0x072d4f82, 0xff8b85eb, 0x52380700, 0x490500ff, 0x21658278, 0x0e820a17, 0x0836fe22, 0xdc210a82,
0x218482ee, 0x6a8252f8, 0x75b3072c, 0xb9ffffff, 0x1300ff02, 0x0982f232, 0xff7ca12b, 0x29dc1500, 0x460e00ff, 0x272982ca, 0xff0a9708, 0xe630f7ff,
0x03222982, 0xe882e9c6, 0xff84202a, 0xbba90b00, 0x18faffff, 0x09277482, 0x00ff00c0, 0x82ee6809, 0x0f072c29, 0x0600ffdf, 0x00ff6ed2, 0x82bb2900,
0xd0372623, 0x25f9ffff, 0x21728266, 0xb382ae07, 0x5383f620, 0x7c5f0922, 0x0b254882, 0x00ffc3f5, 0x23dd8212, 0x5c4ffeff, 0x87213e82, 0x20a182ae,
0x2072829c, 0x05ed4112, 0x82660621, 0x763e2167, 0x6a26d282, 0xfdffff3e, 0x1e8222d0, 0x2205ac78, 0x8262b006, 0x660622d2, 0x211b82a8, 0x048212c3,
0x823e0a21, 0x926d2173, 0x04277e82, 0x00ff1826, 0x82eae508, 0x3333213a, 0x8021dc82, 0x24b78200, 0x00ff9919, 0x058b4204, 0x82343321, 0x9919210a,
0x0e217e82, 0x229482e6, 0x829a1916, 0x212482f1, 0x04830b00, 0x82660021, 0x33002213, 0x21488233, 0xad82ec03, 0xdd24f722, 0x03222982, 0x44825ffa,
0x82f02721, 0xff7f274e, 0xe6fbffff, 0x73829466, 0x8267e621, 0xb36f2820, 0xe2ffff34, 0x4b156666, 0xff2205b8, 0xc84bf1ff, 0x82cd2005, 0x9912239f,
0x06820899, 0x85ab1122, 0x21082559, 0xa66cff7b, 0x0eec6605, 0x828b8521, 0x7b54213e, 0xff232d82, 0x856766ed, 0x4c498444, 0xdb21050d, 0x225e82eb,
0x82fc29f7, 0xd6f82525, 0x0700ff04, 0x00230a83, 0x8204d608, 0x20068230, 0x83118488, 0xff782104, 0x04210e82, 0x82bd828b, 0x827a821c, 0xffff2428,
0x8288d6f8, 0x29f72238, 0x212d8278, 0xff82f7ff, 0x4ef8ff21, 0xd482064e, 0x8b33332c, 0xf8af0e08, 0x5901ffb3, 0x65829a19, 0xfc49fc2c, 0x820c00ff,
0xf2ffff8e, 0x014f80ca, 0xf3ff2805, 0xffffd463, 0x825c4ffc, 0xe1f022ee, 0x08ff8248, 0x051e8520, 0xf3f4ffff, 0x1400ff34, 0xffff68a6, 0xffea11ef,
0x707d1000, 0x7aebffff, 0x0a00ffe2, 0x80823e4a, 0x72c80322, 0x7527f582, 0x00ff05c2, 0x821a4f03, 0xd8a32153, 0x64218a82, 0x2609825a, 0xfffff4e8,
0x821c4ff3, 0xae472118, 0xf3225382, 0x0a82703d, 0xff230f82, 0x820a17f3, 0x60652123, 0xb5216d82, 0x212382c4, 0x1e820060, 0x1e82fc20, 0xa1f1ff23,
0x27728248, 0xff920df6, 0xfc560000, 0xba2b7282, 0xffffff1c, 0xffff028f, 0x82ce8cd7, 0xba38218b, 0xfb222982, 0x5d82f2b2, 0x82ae0721, 0x98fb2229,
0x210a8210, 0x4482cc4c, 0xff564e26, 0x90820600, 0xc220d082, 0xfb210482, 0x21728487, 0xc68266a6, 0xff06a124, 0x3e83f9ff, 0xb27df227, 0x630400ff,
0x212d82d6, 0xbb8214ae, 0x924d0422, 0xf5210a82, 0x214882c4, 0x298266eb, 0x6a1cf731, 0x70ecffff, 0xf5ffffa4, 0xffffbe3f, 0x825278ed, 0x5ccf221e,
0x21ac8208, 0xf082c215, 0x829a9921, 0x33f72229, 0x270a8234, 0xff7d3473, 0xd8230200, 0x2305ab4b, 0xc235f8ff, 0xf5222582, 0x2a820080, 0xff142e25,
0x82ccfdff, 0x33f12792, 0x0700ff32, 0x238267e6, 0x82b08721, 0xf907226e, 0x210a829a, 0x4482b85e, 0x8206ef21, 0x2fec826e, 0x80f0ffff, 0xffff7b00,
0xffcdccf1, 0x66e6eeff, 0xf4264482, 0x00ff66e6, 0x6a831908, 0x00234f83, 0x8232b307, 0x9919211f, 0xb3215482, 0x06b84534, 0x8366f521, 0x40f82229,
0x264f8283, 0x00ffc475, 0x82ec5102, 0xc0352123, 0x97219882, 0x2123828e, 0x6e82ce4c, 0x0a170b27, 0xeff7ffff, 0x226e821b, 0x826025f4, 0xf97e21ce,
0x97202e82, 0xec211482, 0x27938266, 0xffd763f7, 0x6766ebff, 0xf3277282, 0x00ffeb11, 0x82566e04, 0x8cf32229, 0x350a82cd, 0xffff7d3f, 0xffae87f2,
0x8175f9ff, 0xbdfbffff, 0xf3ffff70, 0x29829ca4, 0xc2b5fb22, 0x9e250a82, 0x0600ff76, 0x20cc8299, 0x220482f2, 0x82660c00, 0x5efb20cb, 0x0c210563,
0x212e82cd, 0x4882a886, 0x8223f421, 0xabd5265e, 0x0000ff86, 0x227282d7, 0x82ea91f2, 0x48a12609, 0xd4f5ffff, 0x2048827c, 0x236782f0, 0x1a6ffbff,
0xf3272982, 0xfffff668, 0x827e4afc, 0x83d920b7, 0xcad62653, 0xbd0300ff, 0x21678271, 0xc682707d, 0x920d042b, 0x63f2ffff, 0x0e00ffd8, 0x2738820c,
0xff0040fa, 0x856b0b00, 0x6e212382, 0x221e8214, 0x821f050f, 0xe67022b0, 0x059b4a05, 0xcaebff26, 0x1000ff3e, 0xff280482, 0xffe07aef, 0xc3f51400,
0x7d217282, 0x27398272, 0xffe325fc, 0x0040f1ff, 0xfd2b7282, 0xfffff37d, 0xff3854f7, 0x82190500, 0x82eb2072, 0x14002404, 0x828b6666, 0x8f0a264f,
0x00ff8b5c, 0x28a98209, 0x8c0c0700, 0xca0200ff, 0x2159823d, 0x1a82a8a6, 0xe5d00322, 0xa1218482, 0x2a6a8348, 0xffff3333, 0xff7c9fff, 0x82a61900,
0x81ff21fd, 0x1d271e82, 0x00fff628, 0x82020b13, 0x730b210a, 0xf4221e82, 0x29829042, 0x7909052b, 0xd6faffff, 0x0f00ff04, 0x27c8828d, 0xffbe1ff8,
0x70fd0c00, 0x8c210482, 0x2229823e, 0x827e6a09, 0x9418266d, 0x370000ff, 0x265d828e, 0xffffc8f6, 0x8272dcf6, 0xb85e2113, 0xf322b382, 0x29825ccf,
0xb3828020, 0xce070023, 0x200a8214, 0x27dd824a, 0xff48c105, 0x0ad70d00, 0x8c219c82, 0x2c5782cc, 0xff081e45, 0x9e2f0100, 0x1b0700ff, 0x26098264,
0x00ff60e5, 0x82d0d706, 0x7413211e, 0xc0210982, 0x2f1e8200, 0xfff6a80a, 0x1203fbff, 0x800400ff, 0xfdffff00, 0x06222883, 0xf183c2f5, 0x08ec0822,
0x0827f182, 0x00ffba89, 0x829c0405, 0xce0c2620, 0x920800ff, 0x2735826e, 0xfffe9405, 0xcccc0b00, 0xe521c182, 0x269d8280, 0xffff0c17, 0x821c1ff4,
0x5c8f2128, 0xf4229d82, 0x0a821e45, 0x826a7c21, 0x17142ae6, 0x1d00ff0a, 0x00ffb89e, 0x232e8219, 0xd8230f00, 0x8c20d182, 0x00234882, 0x82089a59,
0xe23a2124, 0x30213982, 0x222982a4, 0x82e44505, 0x221f830a, 0x82c0ea0d, 0x238e8258, 0xd6230c00, 0x42212382, 0x2229828e, 0x829a190b, 0x6c47210a,
0x5721b882, 0x21e6820a, 0x2382e6f0, 0x82c2b521, 0xc2f52186, 0xfa277282, 0x00ff56a4, 0x835a2d0c, 0x20702148, 0x8320ec82, 0x0522d282, 0x0982086c,
0x82e69021, 0x23e68238, 0x68f10000, 0x10200f82, 0x02218783, 0x220982cc, 0x827c140f, 0x79a9214d, 0x67834d82, 0xbd140922, 0x0d271482, 0xffff7a54,
0x82e1faf3, 0x49092d48, 0xf7fffffc, 0x00ffe19a, 0xffbc140f, 0xbc2a9c82, 0x2b0900ff, 0x0a00ff86, 0x29824616, 0x62d00822, 0xae210f82, 0x30198214,
0x00ff0c42, 0xffa4f00e, 0x2646f6ff, 0xc20800ff, 0x22918290, 0x82cc0cf3, 0x14ae219c, 0x0b274882, 0x00ffec51, 0x8266e612, 0x82ab2087, 0x1e162c3e,
0xfeffffb8, 0x00ffac87, 0x82c43517, 0xcf0f2748, 0x0400ff5c, 0x298256ae, 0x64900c2c, 0xbd0300ff, 0x0700ff70, 0x97829c19, 0xff343325, 0x824cfcff,
0x800c2b48, 0xf3fb0800, 0xe6f6feff, 0xe5541566, 0x00802108, 0x0b695518, 0x00ff8b22, 0x8605e254, 0x210e8316, 0x5f828b8f, 0x8f821a22, 0x15281b82,
0xffff0b97, 0x8b0080ea, 0x4c823e82, 0x11840685, 0xe5270486, 0x088b6666, 0x821cf7db, 0xc0f2215f, 0xf5222683, 0xeb827b54, 0x00240a83, 0x0800400d,
0x0d224382, 0x11828f42, 0x8285ab21, 0x0bd721f7, 0x40219e82, 0x225f8300, 0x8290420d, 0xd709261b, 0xf5ffff0a, 0x236a8242, 0xd7a3f3ff, 0xff282d82,
0xff33b3f2, 0x3233f6ff, 0x4c221682, 0x0e82ffcd, 0x088b3437, 0xf714f80e, 0xf7cb1534, 0xffff0554, 0x069a9992, 0xcce1ffff, 0x828b83cc, 0x130022e9,
0x28428257, 0xff6666f6, 0xf6a81c00, 0x843b8208, 0x86ab210a, 0x1e84b182, 0x857a5421, 0x201a822e, 0x2a3b8272, 0x05b4fbcb, 0xfc0694f7, 0x5b54fb14,
0x00210704, 0x0d0e740e, 0x7154f821, 0x6d640c60, 0x07cb2a0a, 0x4b0694fc, 0xf774f807, 0x2ff08294, 0x065c0fd7, 0xabeaffff, 0xff054b86, 0x1e450e00,
0xc0543582, 0x0bcf5509, 0x4147ff20, 0xffcc2107, 0x0e841683, 0xc17b8b20, 0x09005605, 0x540af154, 0x002406bc, 0xfff62807, 0xff2b1683, 0x0ad70800,
0x00ff088b, 0x8252380f, 0xc7f12571, 0x5a05cbae, 0x220cd76f, 0x6fb3f1ff, 0xfb23079f, 0x6ef80714, 0x511808fb, 0xfc530728, 0x4cee3005, 0x0e088bcc,
0x3802ffaf, 0x00ff3433, 0x8234b36f, 0xf22008c4, 0x00ff48e1, 0xff5ccf11, 0xe0fae6ff, 0xd90300ff, 0xeeffff9a, 0xffffc435, 0x081acff2, 0x4c88ffff,
0xa729b382, 0xff057cd4, 0x666687ff, 0x27ba8206, 0xff8b8440, 0xe2a5f9ff, 0x40219982, 0x22a98300, 0x830870bd, 0x00c02106, 0x04871184, 0x839ad921,
0x404e23b0, 0xb6820600, 0x829a1921, 0xa60f2521, 0x0a00ff66, 0x02226e83, 0x1482b89e, 0x6f823782, 0x9f004026, 0xa1f0ffff, 0x61268483, 0xecffff48,
0x37820080, 0x215fff23, 0x226b8248, 0x8266e6e5, 0xfae4256b, 0xf6ffffe2, 0xff2f5e82, 0x7affffea, 0xd1ffff08, 0xffff0080, 0x829042da, 0x83c82093,
0xe6002249, 0x280a82a6, 0x8ba826f8, 0xbff8ffff, 0x21a382be, 0x0a82cecc, 0xcc4cf722, 0xa0232c82, 0x83071e05, 0x162e210c, 0x42209983, 0x23058041,
0x58d90700, 0x01236682, 0x829a195a, 0x0716229e, 0x229e82ae, 0x82d6e315, 0x20303721, 0xc71100ff, 0x0d00ffb0, 0xff08fe14, 0x98198700, 0x856300ff,
0xef49051e, 0x1c0d2206, 0x27b3822a, 0xffa4cccc, 0x68e6f2ff, 0xcc302a82, 0xfeff08ce, 0xffcccc67, 0xcc4ca000, 0x4b06cb15, 0x33216c84, 0x824a8233,
0xf8ff2804, 0x00ffcdcc, 0x5bcdcc08, 0x1d420577, 0x07002309, 0x73823333, 0x08231982, 0x82cb07cb, 0x097a4983, 0x200aa849, 0x234c82cb, 0x88d60800,
0xc149b482, 0x82782005, 0xfc2925db, 0x064b088b, 0x7c831a8a, 0x83290721, 0x3433211a, 0x23821a83, 0x490aff57, 0x4b2308c7, 0x8d064b07, 0x0ad7221a,
0x2210828b, 0x8608f628, 0x883420b4, 0x84ce82b4, 0xef0e25b4, 0x159b54f8, 0x0e22a882, 0xc7820040, 0xff088c30, 0xd8e30d00, 0xbb0c00ff, 0x0600ffa6,
0x0f82f468, 0x5c8f2732, 0x8f1000ff, 0x00ff055c, 0xffd6a30f, 0x1e852500, 0x04270a82, 0x00ff0476, 0x82780909, 0x30fd2125, 0x55210482, 0x265b8240,
0x00ffe0fa, 0x822adc03, 0x17002834, 0xc400ff0c, 0x8205d823, 0xab11255a, 0xf1ffff84, 0x002a0482, 0xff7c540e, 0x7c54eeff, 0x0685088b, 0x46181685,
0xff240cc5, 0x04fb02fc, 0xff283582, 0xfffc29f7, 0x1cdaf8ff, 0x23051a41, 0x022bf7ff, 0x06833583, 0xc3211182, 0x0bee4a12, 0x0000ff26, 0x44f7cc10,
0x86216b8a, 0x206b87ff, 0x216b857a, 0xe8718b7a, 0x18878206, 0x2308544f, 0xfbbeefff, 0x6b863583, 0x87dee421, 0x7e2a216b, 0x06826b84, 0xbc211182,
0x416b82ce, 0x6b8208cc, 0xf79a1923, 0x736b8564, 0x6b820611, 0xd0837a20, 0x7f646b91, 0xffff2507, 0xfb66e6ff, 0xff233583, 0x823333f7, 0x66e62154,
0xcc210482, 0x062844cd, 0x11820685, 0x9132b321, 0x20d78b6b, 0x20d78885, 0x76d7857b, 0x43410757, 0xe8fe2f0b, 0xff079a99, 0xcd4cc4ff, 0xb33b00ff,
0x57820532, 0x002b7382, 0xffcecc07, 0x33b3f5ff, 0x830300ff, 0xccf5227d, 0x284283cd, 0x8b14aeea, 0x51edffff, 0x21c082eb, 0x0a82cccc, 0x3433e923,
0x22068208, 0x821ec5f5, 0xf0e72128, 0xc2213282, 0x21948290, 0x468263d0, 0xa4302608, 0x7100ff08, 0xffff9a19, 0x0566e68e, 0xc72500ff, 0xdaffffae,
0x00ff142e, 0xffcc4c32, 0x3433ebff, 0x663500ff, 0x08578266, 0xb3250024, 0x00ff0634, 0x8b52b82a, 0x302700ff, 0x0f00ffa4, 0x00ffec51, 0xff707d1e,
0xf6681900, 0xf6ffff08, 0x608274f3, 0x82e4c521, 0x3ff1229e, 0x2b6182c0, 0xffffa065, 0xff6666f7, 0xcecc0d00, 0x0e223482, 0x2582cc4c, 0xcccc9d2b,
0x663c00ff, 0xffff1566, 0x235d82e2, 0x0080f4ff, 0xf3223082, 0x0f827a94, 0x82523821, 0x85fe300a, 0xfdffff20, 0xffff48e1, 0x8acc4cff, 0x5cfeffff,
0x06830511, 0x6e260c82, 0x0000ff56, 0x1c827efe, 0xff186426, 0x92390100, 0xf3225282, 0x8882f893, 0x8256ae21, 0x35e2273c, 0x0c00ffc2, 0x0a82866b,
0xd8e3fd22, 0x57832a82, 0x82e6ff21, 0xb3002283, 0x20838234, 0x82838202, 0x5d012106, 0x0022b582, 0x418200fe, 0x821e9a21, 0x82372104, 0x9c2b2a82,
0x00ff0828, 0xff7eca1d, 0x82850b00, 0x834683c4, 0x053e210f, 0x00234685, 0x82281c02, 0x9a99212a, 0x19200e82, 0x01200482, 0x83051641, 0x21168206,
0x92822891, 0x46840220, 0xa6826a20, 0x82f0c521, 0x6c0c214b, 0xe2229c82, 0x40828e37, 0x3eca1d24, 0xe482ffff, 0x01200a82, 0xff24a282, 0x8c866bff,
0x42822682, 0xa5473682, 0xb3fd2305, 0xf3848a34, 0xcc211782, 0x820482cc, 0xfeff2f16, 0xff3433f2, 0x9a999300, 0x0200ff15, 0xba82ea46, 0x7faa0222,
0xa7216e82, 0x210482f0, 0x14821904, 0x82020b21, 0xb3142769, 0x3100ff33, 0x5e8248a1, 0x82a63121, 0xb51422ec, 0x220a82c2, 0x82e90602, 0x96032125,
0xa7210482, 0x202a82af, 0x220982ae, 0x82060100, 0x14432109, 0xff229982, 0x0a82e21a, 0x82904d21, 0x82332074, 0x9902233e, 0x2982899a, 0x829a1921,
0x66ce211a, 0x99274483, 0xffff059a, 0x828f42eb, 0x32b3215a, 0xfe220a82, 0x3082e1fa, 0xffce0c26, 0x0a57fdff, 0x69822a82, 0xb8fdff24, 0x30828b52,
0x16820683, 0x827b5421, 0x9a5921b7, 0xfd210482, 0x210e8270, 0x1a8232f3, 0xcd4ceb27, 0x66ceffff, 0x22408268, 0x82e15ace, 0xcc4c2150, 0xfd220a82,
0x258217f9, 0x8266e621, 0xfd572104, 0x70822a82, 0x00248782, 0x99feffff, 0x00228082, 0x0a820100, 0xeebcfd22, 0xa8216582, 0x211e8279, 0x79821a4f,
0x82a80621, 0x6afc221e, 0x218f8208, 0x4882ec91, 0x827c5421, 0xc51422e4, 0x215e821f, 0x0a827b54, 0xa3030122, 0x2206d94a, 0x8285ab02, 0x2378822a,
0xae470200, 0x02269f82, 0xfb98192f, 0x61821564, 0x8200ff21, 0x83462048, 0xd0582176, 0xad210982, 0x21318250, 0x668250f8, 0x82180421, 0x6ece27ab,
0x1400ff14, 0xa08286ab, 0xe03aeb22, 0xab216782, 0x220a8284, 0x82bcd3ff, 0xf4fd2120, 0x66212a82, 0x21098264, 0x098234b3, 0x8534b321, 0x8b1021f7,
0x52200c82, 0xfe22ed82, 0x73821659, 0x82e8fb21, 0xfef4210e, 0xcc20f784, 0x5e219882, 0x224082b8, 0x82285cce, 0x3e4a21ae, 0x2587f784, 0x5258fe22,
0x55212a82, 0x2194823e, 0x0982fafe, 0xf78fb920, 0x14823820, 0x82d84e21, 0x830620a4, 0x6cfc21ae, 0x7a20f789, 0x2020f784, 0x54205e82, 0x01220a83,
0x79823013, 0x82440021, 0x9c99212a, 0x4c210982, 0x210982cc, 0x9f82cc4c, 0x46020024, 0x0c828be8, 0x42f0a721, 0x18200833, 0x20093342, 0x09334234,
0xf6826820, 0x21053342, 0x2a824000, 0xff9e0f25, 0x83cc0000, 0x9a992146, 0x29063543, 0x34f8af0e, 0xff1514f8, 0x4c181100, 0x002008ac, 0x22059a6a,
0x501ec510, 0x842005fe, 0x08914d18, 0x3c457c20, 0x45842015, 0x068206a8, 0xe23aef23, 0x07d579ff, 0x10618420, 0x00ff3206, 0xfb981967, 0xffff15a4,
0x0668e660, 0x94fbffff, 0x252982fe, 0xff026bfc, 0x0a830300, 0x6b040023, 0x82698302, 0x86118406, 0x240e8204, 0x14f7088b, 0x214f8206, 0xad825ccf,
0x14ae0b32, 0x6b0d00ff, 0xfdffff86, 0x00ffce0c, 0x080a570f, 0xcf360a82, 0x0b00ff1a, 0xffff6666, 0xffdc59f5, 0x0ad70700, 0x66f4ffff, 0x1a828b66,
0x66e63822, 0x2f223b82, 0x86820a17, 0x055c0f27, 0xa80c00ff, 0x052945f6, 0x83070021, 0x6f0d2514, 0xfcffff1a, 0x0c220983, 0x2f82a4b0, 0xe00ffc22,
0x9e262382, 0xf2ffffb8, 0x4a8272a8, 0xffec1126, 0x0040f3ff, 0x26212382, 0x2b1e8266, 0xffcd4c94, 0x1fc5deff, 0xccffff05, 0x2605d54f, 0xffff6967,
0x82ccccd0, 0x80cb22cb, 0x37218200, 0x079a59e6, 0x782400ff, 0xf8ffff52, 0x00ffe690, 0xffae871b, 0x1aafdfff, 0xd9222082, 0xe182b85e, 0x4af5ff23,
0x21b2823e, 0xad8298ce, 0x82cccc21, 0x78292c58, 0xa8f6ffff, 0x00ff08f6, 0x828a2112, 0x7c1434b8, 0x191500ff, 0xf9ffff99, 0x00ffcc4c, 0x8bcdcc16,
0x4164f708, 0xa0223800, 0x6d4166e6, 0xb1802069, 0x9434206c, 0x41f882d9, 0xc23a06da, 0x0b00ff90, 0xffffa470, 0xff6866f5, 0xcccc0700, 0x66f4ffff,
0xff088b64, 0x108330ff, 0x9a999d2d, 0x0500ff15, 0x00ff0c82, 0x82f6a801, 0x647b2609, 0xcf0000ff, 0x2109829c, 0x25829082, 0xa9060024, 0x0c828b78,
0x22702b08, 0xaafeffff, 0x0600ff80, 0xffff48e1, 0x081cdafd, 0x5c0f00ff, 0x3000ff28, 0xff052a9c, 0x04760400, 0x1e0e00ff, 0xf6ffffb8, 0x198210b8,
0xff162e26, 0x727df0ff, 0xcf215482, 0x226a825c, 0x825278f4, 0x1058210a, 0x512b8582, 0xf8ffffec, 0xffff8636, 0x820080fc, 0xdaee218a, 0xeb271e82,
0xffff9a19, 0x827ad4bd, 0x19102248, 0x214d8298, 0x0a8294f8, 0x2083b820, 0x6666d222, 0x63189f82, 0x71200c54, 0x19238f82, 0x8408299c, 0xff2a2406,
0x8282eaff, 0x631627e2, 0xe5ffffd6, 0xb282707d, 0x16850684, 0x66ebff23, 0x0dea4d66, 0xa1630020, 0x235a8205, 0x00801a00, 0xfe282d82, 0xff66a66d,
0x34b35dff, 0x00276682, 0x00ffcdcc, 0x82323300, 0x71bd2104, 0x4c210482, 0x210482ce, 0x13845ccf, 0x1923ef82, 0x8207a4b0, 0x2b433674, 0x2b00ff86,
0x00ffae07, 0xffad873b, 0xec114000, 0x4c1500ff, 0x212082cd, 0x3a82b349, 0x8ec21622, 0x2227bc82, 0x00ff6626, 0x829a196c, 0x7504310a, 0x0e00ff82,
0xffffba1e, 0xff92b8f6, 0x142e0f00, 0x260d1b41, 0x00ffe27a, 0x640a5701, 0xff23055c, 0x41c235f8, 0x1624081b, 0xdeffff08, 0xff2eaa82, 0x055c8f95,
0xabfeffff, 0xfbffff02, 0x04827ac9, 0xff898126, 0xfca9fdff, 0xc9210982, 0x213d8238, 0x2982fc54, 0x0ad7fb22, 0x51210a82, 0x21198228, 0xca509a99,
0x01002205, 0x23868266, 0x08323304, 0x5e26b182, 0x8900ffb9, 0xad41cecc, 0x82918413, 0x410120f1, 0xeb2510ad, 0x36f8ffff, 0x21918704, 0x67825cef,
0xf082d020, 0x4c68ff22, 0xff234882, 0x829999fe, 0xcccc2182, 0xa6830482, 0x34b3fd22, 0xcc210982, 0x218682cd, 0x2982cc4c, 0x0a85fb20, 0x3e82ce20,
0x04200983, 0x00232382, 0x82333302, 0x2591849b, 0xff5c8f26, 0x23417a00, 0x42812006, 0x9320083f, 0x8e082341, 0x9a592691, 0x4cf5ffff, 0x219182cd,
0x2341c435, 0x82142008, 0x0ac42867, 0x42ffff3d, 0x82053333, 0x85eb26fa, 0xff3100ff, 0x22e582ff, 0x500a1700, 0xf531063c, 0x00ffeb51, 0xff66e60a,
0xe1baf2ff, 0x190000ff, 0x2834829a, 0x8b1ec5f2, 0x82f4ffff, 0x2054828f, 0x211a8266, 0xeb82d1ff, 0x34b3f222, 0x8f231a82, 0x8207ce4c, 0xc3b53e26,
0x7fd3ffff, 0x1800fffe, 0xffffcd0c, 0xffceccd8, 0xd7e32400, 0x80eaffff, 0x00ff0800, 0x238e8312, 0x15cc4ce2, 0x82057742, 0x654a8316, 0xe62305fb,
0x8208d663, 0x2c06825c, 0x7d1500ff, 0xe9ffff71, 0x00ff2a9c, 0x0551431a, 0x230acc42, 0x8b9a9914, 0x4f821782, 0x5b840685, 0x80213282, 0x33548200,
0x088b0080, 0x01ffef0e, 0xff9a9966, 0x6666fc00, 0x9100ff15, 0xff230a82, 0x8266e689, 0x1e0c35dd, 0xf6ffffb8, 0x00ff0c02, 0xff486107, 0x8480f2ff,
0x9e0200ff, 0xf1221382, 0x9d828e82, 0xb89e5128, 0x1100ff06, 0x58829899, 0x4e820d20, 0x630e0023, 0x820a82d8, 0x221c8210, 0x180c97a0, 0x2009c065,
0x283882ab, 0xffea510e, 0xe43aefff, 0x3cfc828b, 0x0668e6a0, 0x05d7ffff, 0x2800ff1e, 0xffffc2f5, 0xff866bc8, 0x20051700, 0x0fc6ffff, 0x2220835c,
0x821263f7, 0x06026a20, 0xff527838, 0x7cfffcff, 0xfaffff85, 0xff0808a1, 0x5c8fa2ff, 0x6eaaffff, 0xc0820514, 0xff9ba426, 0x4a2c1300, 0x5027ac82,
0x00ffcdcc, 0x82d6e349, 0x66f92715, 0x0000ff66, 0x0a829002, 0x1f85d428, 0xd6ffff8b, 0xbe823d4a, 0xff0a572b, 0xd763dcff, 0x38e8ffff, 0x27468252,
0xff991985, 0x7c546000, 0xfb262582, 0x00ff299c, 0x7f827003, 0xaec7fa26, 0xac0100ff, 0xfa221e82, 0x89830ad7, 0x00e0f822, 0xf8214082, 0x2c7282ef,
0xff10d8fc, 0xae47fbff, 0xf8f9ffff, 0x25218210, 0xff21d0f7, 0x8c82f5ff, 0xcf01002c, 0xf0ffffdf, 0x00fff6e8, 0x09826f0a, 0x7cd4f72d, 0x5002ff08,
0xfeff9c04, 0x82acfc2f, 0x800a2c9b, 0xf7ffff00, 0x00ff0acc, 0x825c0f0f, 0x00e0265f, 0x210800ff, 0x222e8248, 0x8208ee67, 0xe02f210a, 0x70260a82,
0xfeffffa4, 0x23822030, 0xa8821720, 0x8290f521, 0x2b082209, 0x20678286, 0x233d8278, 0x32336a00, 0xff2ca882, 0x00fffed3, 0xff041609, 0x0662fcff,
0xf1293882, 0xf8ffffaa, 0x00ff2466, 0x27298406, 0xffcccc6a, 0x33337900, 0x07f94e18, 0x717df522, 0xe6210a82, 0x226e8255, 0x8296ee14, 0x82412788,
0x3b00ff90, 0x0a829ad9, 0x55830620, 0xfade0522, 0x1e2c7982, 0xffffffb8, 0xff9100a0, 0x6c67faff, 0x05228f82, 0xe3829a19, 0x60828120, 0x66660022,
0xe021e282, 0x22198242, 0x82856666, 0xf8e42b8b, 0xe6ffff52, 0xff05b85e, 0x1b82b9fe, 0x8044002d, 0xffff1500, 0x8b6666ee, 0x82f2ffff, 0xf1ff2351,
0x0a829a99, 0xf668ee22, 0x60232c82, 0x85073233, 0x0b526b0c, 0x33b31023, 0x2764828b, 0xff333372, 0x3a120000, 0x5a208a82, 0xae223883, 0x0a826626,
0x01801b2b, 0xa1e9ffff, 0x2800ff48, 0x20b58240, 0x27048304, 0xff985915, 0xb85e1b00, 0x12203482, 0xf022aa83, 0x298200c0, 0x82de0f21, 0xe6f325b5,
0x1700ff66, 0x00233e82, 0x829a9901, 0xde0f2225, 0x082582fa, 0x1e050d27, 0x071000ff, 0xfeff05ae, 0xffba9e8e, 0x523a2201, 0xf8ffff05, 0x058beb11,
0x02ffef0e, 0xff98191f, 0xcccc3f01, 0x277f8215, 0xffff0c00, 0x05343320, 0x8208f96b, 0xf1ff2170, 0x10227f83, 0x815098d9, 0xe3ff2905, 0xffff07d6,
0xff5ce6a0, 0x6622f982, 0x3084bb05, 0xf722f482, 0x35820040, 0x82c0f821, 0x400729a6, 0x00ff8b42, 0x082ebd08, 0xe0200683, 0x04821184, 0x9a390622,
0xc0211582, 0x20ee8300, 0x22068208, 0x820600ff, 0xf8ff23ca, 0x3883c4e0, 0x82a20521, 0xe6002caa, 0xf7ffff68, 0xffffc435, 0x829c99f9, 0xcccc26a3,
0x66f6ffff, 0x26318264, 0x88e6b0fd, 0x83df00ff, 0x00ff29a6, 0xff07ce4c, 0x9a193f00, 0xf4218282, 0x20fc8296, 0x204d8411, 0x23ac820e, 0xae470e00,
0x10827482, 0x46254d84, 0x03b400ff, 0x27ed82bc, 0xffe13ac8, 0xc2b52b00, 0xd7230a82, 0x82063fc5, 0xfdff2270, 0x28f18270, 0xffdfff3f, 0x343330ff,
0x21118215, 0xfd8242f7, 0xff23c083, 0x8284c0f8, 0x6626217c, 0xff217782, 0x820682f8, 0x20d79f0c, 0x05ad5207, 0xbf520683, 0xf9ff2305, 0x548332b3,
0x08343326, 0xf0ffffcb, 0xff276282, 0x00401200, 0x4100ff06, 0x00200cdf, 0x2012df41, 0x38df419a, 0xd8a3e627, 0x26de00ff, 0x2ae68224, 0x07ce4c64,
0x336f01ff, 0x64158034, 0x092c062b, 0xffffdc19, 0xff0e5dfc, 0xf0f20800, 0x6229d282, 0x0600ff4e, 0xff08a430, 0x052843ff, 0x439a1921, 0x68310e28,
0x1400fff6, 0xff05eb11, 0x7c544100, 0xca3b00ff, 0x0d28433e, 0xbc824020, 0x00a0ff2c, 0xde0500ff, 0xf9ffffb8, 0x2c430681, 0x80f92316, 0x65828500,
0x48e1e527, 0x21e8ffff, 0x45448248, 0x02210a55, 0x254582e0, 0xff0681fd, 0x4a820200, 0x80fdff22, 0x02214f82, 0x20138360, 0x234f8341, 0x078c57c2,
0x210c1b45, 0x1b45c475, 0x1e052107, 0x310a1b45, 0xff8b1a0f, 0x0e4df8ff, 0x07fdffff, 0xfaffffae, 0x0482d823, 0x8218a421, 0x82a22e76, 0xa9ffff0b,
0xff058c8c, 0x9a99e6ff, 0x277d829f, 0xff99d950, 0x86eb4900, 0xf9231182, 0x82ff9a59, 0x82e02028, 0x87d4220a, 0x2c4282ae, 0xff5c4fd6, 0xec51f2ff,
0x5cdcffff, 0x21ae8229, 0x4282e03a, 0x291c8527, 0x576000ff, 0x2125824c, 0x3b8299fb, 0xe06f0322, 0x1b453482, 0x48e12110, 0xf8244082, 0xffff9eef,
0x20061b45, 0x0d1b45f0, 0xff289122, 0x36061b45, 0x00ff66e6, 0xff21700a, 0x7ad4f7ff, 0x4f02ff08, 0xfeff9819, 0x4568e630, 0x0820091b, 0x20121b45,
0x211b45f0, 0x34487931, 0x696900ff, 0xef0e0578, 0x00fff4f8, 0x5766e658, 0x40260955, 0xf5ffff00, 0xa2820040, 0x00c0f223, 0x82068508, 0x85c02085,
0x09555716, 0x00212283, 0x8316820a, 0x848b2004, 0x212d8217, 0x3f840d00, 0x86cc4c21, 0x4ef22032, 0x7d210570, 0x08708233, 0x9a195427, 0x00ff7615,
0xff48212f, 0x9082e4ff, 0xab6800ff, 0xe7ffff84, 0x08ae4861, 0x82d9ffff, 0x3600ff8e, 0xffffec91, 0x21f583c0, 0x2482a121, 0x9a99bb23, 0x2a1a828b,
0x8b66e6d5, 0x358b2105, 0x82218b35, 0xc7ff2161, 0x00216182, 0x26788218, 0x6626cdff, 0x822700ff, 0xdcff230e, 0x1a8334b3, 0x66e64e36, 0xdf00ff05,
0xab069a19, 0x4000ff07, 0xff069002, 0x48612300, 0x1c249d82, 0x00ffb89e, 0x0a820482, 0xe27a2222, 0xa0265482, 0x00ffd6e3, 0x2f82e600, 0x18eeff21,
0x6513955b, 0x5f241806, 0xff06e2fa, 0x3c210082, 0x226a82ab, 0x8270fd1f, 0x22172262, 0x252e820c, 0xff00800f, 0xbc821700, 0x99f6ff33, 0x1500ff9a,
0xff089a19, 0xcccc72ff, 0xffff15be, 0x218483ee, 0x8483f1ff, 0x8f840e20, 0xb89e1122, 0x0020b082, 0xff210682, 0x86118200, 0x820e8204, 0x711583f0,
0x9e210865, 0x0d6571b8, 0x82f1ff21, 0x2a49845c, 0x6666eeff, 0x24f7088b, 0x4178ffff, 0xf6220abf, 0xbf416626, 0x590c221d, 0x8363839a, 0x00ff2406,
0x5966a60b, 0xbf410f43, 0x14f72612, 0x00ff15bb, 0x1cf1410d, 0x00283682, 0xff00c00a, 0x00c0f2ff, 0x06845f82, 0x8d948884, 0x84cccc21, 0x25548216,
0x088b3433, 0x7e428b4b, 0x26f62208, 0x42309468, 0x0c22087e, 0xbe859859, 0x838b9821, 0xa26820be, 0x2b8b21be, 0xcb215edc, 0x5c3c435b, 0xffef0e2b,
0x98195f02, 0xe68800ff, 0x13854166, 0x9a590c26, 0x00ff8b08, 0xff220682, 0x8541f5ff, 0x0a544115, 0x66a6f322, 0xff202d82, 0x4b710682, 0x26328505,
0x8b64660c, 0x8e2b8b08, 0xaec7215e, 0x830fd643, 0xd909225e, 0x14e4419a, 0x44523821, 0xcc2b0a32, 0x0b00ffcc, 0xffff9c99, 0x829a19f6, 0x295e839b,
0xb31700ff, 0xff154d34, 0x1c8341ff, 0x9a199529, 0x0700ff05, 0x82066666, 0xb81e2117, 0x21083e43, 0x3382b8de, 0xff48a130, 0xe23a1400, 0xebffff08,
0x00ff66e6, 0x14821e2f, 0x2a9ce32d, 0x946800ff, 0xe7ffff7a, 0x82ae4661, 0x75d9251a, 0x3700ffc6, 0x25173044, 0xd5ffff06, 0x918266e6, 0x9a99d936,
0xbdf1ffff, 0xe0ffff70, 0xffff4761, 0x0852f8e8, 0xeed6ffff, 0x2022ea82, 0xa845562e, 0x09c44a25, 0x4a0ea845, 0xa84518c4, 0x45662006, 0x093021a8,
0x00ff3c1f, 0xff4e8209, 0x9c19feff, 0x190f00ff, 0xf52ead82, 0x00ff9899, 0x08323308, 0x33c9feff, 0xa869c134, 0x82f22008, 0x06225cec, 0x20c51026,
0x00ff8b08, 0xff240682, 0x66660d00, 0x21210982, 0x088e5246, 0x0cc20532, 0x000000ff, 0xfeff053a, 0xffea66cc, 0xfa32f000, 0xf42ce882, 0xffff9378,
0xffcc4ce7, 0x9e5ef9ff, 0x2005c44c, 0x1b4e456e, 0x0082ff20, 0xffffd822, 0x82095245, 0x191f226f, 0x22d2829a, 0x82900240, 0xbeff211b, 0x21220a82,
0x16820040, 0x34f31a3c, 0x611900ff, 0x0300ff48, 0x00ff842b, 0x08666620, 0x11f8ffff, 0x0600ff68, 0x7a828e37, 0xb673a923, 0x29268206, 0x156ce700,
0x19df00ff, 0x6842c398, 0x820e205c, 0x812531fc, 0x990701ff, 0xffff159a, 0xff00b0fd, 0x3333c4ff, 0x2d24a082, 0xcaffff0e, 0x28270983, 0xffffe2fa,
0x469a19db, 0xf7220732, 0x33820634, 0xff8f0226, 0x0080c300, 0x2321af82, 0x22ad82ac, 0x82cc4ca0, 0x32fe2c0a, 0xf6ffff6f, 0xffffcecc, 0x8204a6fe,
0x9a992109, 0xa021fa82, 0x83098283, 0x4f0129e4, 0xffff7eda, 0x15666648, 0x9b214282, 0x222f82bb, 0x8366e600, 0x8e04274b, 0xff0554fb, 0x0d849100,
0xcc8c1b22, 0x18324f82, 0x00ff3473, 0xff48a111, 0xc2b50800, 0x211a00ff, 0x74820848, 0xffe47826, 0x703d0400, 0x61523982, 0x2d466505, 0x32b38a22,
0x0a236d82, 0x82ab86ab, 0x836a2040, 0x94ff200c, 0x21b38240, 0x7882b007, 0x72cccc21, 0x0e8409f3, 0x83828b20, 0x3433ad24, 0x6a4315e8, 0x48212307,
0x6a43ffff, 0x259b4705, 0xe183bd20, 0x19adff28, 0xffff8b99, 0x3c8261b5, 0x146ecd2c, 0xc5e2ffff, 0xb6ffff1f, 0x5d82b8de, 0x33f3e12f, 0xb35bffff,
0x01ff0534, 0x06989910, 0x21ee828b, 0x8f82cc4c, 0x82ce4c21, 0x68662609, 0x19feffff, 0x2313849a, 0x62ffff08, 0x25392c47, 0xffe27a0d, 0x2c47f1ff,
0x055c4d10, 0xffb89e22, 0x22052c47, 0x8264f70e, 0x66e62186, 0x2a0caf66, 0x86d6f8ff, 0xf7ffff8b, 0x84087a29, 0xfffc2a06, 0xba290700, 0xbcf9ffff,
0x2209826a, 0x828be0ef, 0x820720c5, 0x00ff2406, 0x5b201008, 0xe6240eee, 0xffff9266, 0x82057a5d, 0xf7ff27c6, 0x088b3333, 0x5e884bcb, 0xff234283,
0x8446d6f8, 0x89ba2057, 0x3e2a215e, 0xd6213582, 0x20518204, 0x05cb62d5, 0x59820682, 0x935d1682, 0xffff220a, 0x655382ff, 0xf8220589, 0x2c82cccc,
0x82991921, 0x343321a6, 0xed279083, 0xffff3433, 0x829a19dc, 0x0feb226a, 0x0754495c, 0xffe27a3b, 0xec916800, 0x5ce7ffff, 0x2300ff28, 0xff089819,
0x9a99d9ff, 0x9c3600ff, 0x0758492a, 0xff0a9726, 0x0080bbff, 0xff294482, 0x0666e6b5, 0xf395ffff, 0x279f8233, 0xffcd0caa, 0xcc0caaff, 0x95220a82,
0xaa8334f3, 0x3333c726, 0xcc1800ff, 0xcd201682, 0x00217882, 0x230e8227, 0x68e6dcff, 0x4e251a83, 0xf705cccc, 0x2a3b8294, 0xcbe0feff, 0x3f00ff05,
0x820670fd, 0x0a572c6f, 0x1b00ff8b, 0x00ff90c2, 0x8266a61c, 0x73222e0a, 0x00ff0834, 0x0766e640, 0xfa1f00ff, 0x222282e2, 0x82ce0818, 0x7f0f2517,
0x1700fffe, 0xff27d282, 0xff9c99f6, 0x82331500, 0x72ff2426, 0x82aecccc, 0xe1f322cd, 0x22578248, 0x82707de3, 0xb8f13c88, 0xddffff52, 0x00ffae87,
0xfff62814, 0x0ad7ebff, 0x0800ff08, 0xffff7493, 0x188c6cf7, 0x22077c45, 0x8200c0f9, 0xdef5242a, 0x82ffffb8, 0x2704820a, 0xff0890c2, 0x00e0fcff,
0xfb2c0486, 0xfffff0e7, 0xffe06ffe, 0xb4e8fbff, 0x0683f583, 0xe7250c82, 0x0100ff2c, 0x2716828f, 0xffc4e0fc, 0x40200300, 0x56823582, 0x05206084,
0x76866c84, 0xff238083, 0x8294b8f1, 0x7de32265, 0x8225822e, 0x820720a2, 0x27f7210c, 0xf8245882, 0xffff10d8, 0x0e820484, 0x06835d83, 0x00231185,
0x82f02707, 0xd80822ec, 0x22b58210, 0x82b81e0c, 0x1c002333, 0xd1869082, 0xae470e22, 0xd6856485, 0x5283d182, 0xbb9cd683, 0x826de721, 0xe8fb2226,
0x20bb8872, 0x83bb87c5, 0x060023fc, 0x72820040, 0x48210a23, 0x820a83ff, 0x703d2104, 0x08227c82, 0xd686b693, 0x26140023, 0x82d68225, 0xf1ff2d1f,
0x00ff34b3, 0xff008022, 0xff7fe3ff, 0xf328b983, 0xff0666e6, 0xef27f7ff, 0xd1836182, 0xc685bf8a, 0x0700ff24, 0x04823128, 0x0023f782, 0x82cfd708,
0x0c002633, 0x058b9a19, 0x82d683ff, 0x23d28322, 0x52782200, 0x20093c41, 0x824f8208, 0x0800240f, 0x4105ec91, 0xa196059e, 0xac84b782, 0x8400ff21,
0x020022bb, 0x20c08590, 0x83d582ff, 0xeb9121c0, 0x7a214982, 0x426a82e0, 0x0c200609, 0x5983bb82, 0x6c470e22, 0x1c227982, 0x2582d082, 0xec110c23,
0x83a98807, 0x840720a4, 0x10d821a9, 0x0820a983, 0xbb820682, 0xff422026, 0x0ad7f8ff, 0xf722e282, 0xcb41f628, 0x7de32209, 0x25508570, 0x52b8f1ff,
0x648300ff, 0x54820483, 0x74930822, 0x85073b41, 0x004021a4, 0x6882a484, 0xa0860f83, 0x89420a87, 0x76f72212, 0x27bb82c8, 0xff05de64, 0xceccebff,
0xe6210482, 0x06425a66, 0x0080dd27, 0x801c00ff, 0x279e8300, 0xffb81e0c, 0x1a000000, 0xa985e182, 0x8a410622, 0xcf20a983, 0x3121a984, 0x24068508,
0xaef9ffff, 0x20168314, 0x060844b5, 0xffaf0e2c, 0xccccff01, 0x66a000ff, 0x40821566, 0x20f95f7c, 0x09687d79, 0xff058b30, 0x343320ff, 0x99ffffff,
0x00ff159a, 0x72184c23, 0xb3220976, 0x10848b34, 0x06850820, 0xe3ffff28, 0x00ffcc4c, 0x2c82b31c, 0xa94edc20, 0xb3dc2305, 0x16838b33, 0x1b84cd20,
0x5a4e0a82, 0x18068206, 0x83070573, 0x4c232a32, 0x2b088bcd, 0xf71514fb, 0x0c8c6554, 0x200d5b65, 0x2085832c, 0x05b679dc, 0xffffcc25, 0x63ccccd3,
0xd3210536, 0x078579cc, 0xb379ff20, 0x83f7200c, 0x3307222a, 0x05d25233, 0x19630020, 0x00ff2906, 0xffcd4cda, 0x9683b701, 0x0c20cd82, 0x00260a82,
0xffa4500b, 0x4d821200, 0x00ff2608, 0xffce4c0c, 0x5caff4ff, 0xff64f708, 0x6afc3fff, 0x0600ff05, 0xffff32b3, 0xffcdccf9, 0x9a990300, 0x80f7ffff,
0x2bc68200, 0x083333f7, 0xff0624fb, 0x66e6ecff, 0xee210e82, 0x203682cc, 0x201e83f7, 0x27ce82f4, 0x33b3f2ff, 0x2500ff08, 0x8207ea7b, 0x48f820fc,
0x8a82052b, 0xec639482, 0x83c08411, 0x18d16353, 0x3f00ff2d, 0xfb069a19, 0xffff0714, 0x8266e660, 0x7de52278, 0x25788270, 0xff8f82ea, 0x92831500,
0x801a0028, 0x04f70800, 0x1b826b07, 0x7bd4f222, 0xf4261b82, 0x00ff7f2a, 0xb3821908, 0xb633fb22, 0xb282da82, 0x85ffff21, 0x28f5830a, 0x99e93603,
0xaf0900ff, 0x2124827d, 0xf08366e6, 0x03c00023, 0x21f08296, 0xa682b375, 0x6a7c0823, 0x3f581815, 0x438b2007, 0x9a7a0661, 0x34fb2309, 0xa841ab07,
0x0d35670c, 0x0080e525, 0x88eaffff, 0x240e8204, 0xfeff088b, 0x24c082df, 0x66e6ffff, 0x229b8266, 0x8b9a99e9, 0x206182b7, 0x05934708, 0x072e1682,
0x00ff3433, 0x8b66e607, 0xf706ab08, 0x1b820734, 0x82b31121, 0x330f2211, 0x7f878532, 0x9b330538, 0x24fb155b, 0x0654f707, 0xfb0724f7, 0xef0e0654,
0x82c300ff, 0x03002e71, 0xff150080, 0x3e4aedff, 0xb81200ff, 0x223c8252, 0x82a4701e, 0x82b6200a, 0xb5122358, 0xec8208c2, 0x44759321, 0xff260682,
0x06b3ebf3, 0x5e18ffff, 0x87210b2f, 0x233182ae, 0x0852781a, 0xa3820685, 0x86ae8721, 0x44158204, 0x0127095a, 0xffff0568, 0x824861f7, 0x06a62149,
0x6f900a82, 0x84c2b521, 0x216f827f, 0x7a821909, 0x1e050928, 0x190c00ff, 0x05829099, 0x83cdcc21, 0x93092247, 0x27638275, 0xffdd2409, 0x7433fdff,
0xff82f082, 0xd0faff23, 0x21318222, 0xbc820a00, 0x00c01b23, 0x20208205, 0x39638224, 0x7b94e0ff, 0x571d00ff, 0xd9ffff0a, 0x088bb85e, 0xffff8b5f,
0xffae07f2, 0xf082e3ff, 0xe1e9ff2f, 0xddffff48, 0x5d08b85e, 0x1eb8ffff, 0x310b82b8, 0xffff299c, 0xff7c14b2, 0xd763eaff, 0xccaeffff, 0x638208cc,
0xff46562b, 0xfa3ef6ff, 0xbefeffff, 0x23098235, 0x818b9a19, 0xff26e482, 0xff00c0c2, 0x47833e00, 0x0984d320, 0xffcdcc26, 0x48e11000, 0x3b208582,
0x00241482, 0x0566e60f, 0xbd26ff82, 0x0500ff71, 0xd282f4dd, 0x82852b21, 0xe28521c1, 0x99210482, 0x21298299, 0x5b830c57, 0xff6f7226, 0xfe95ffff,
0x6a216582, 0x2109827f, 0x0982aea7, 0x82ed5c21, 0xf3ff2de5, 0x00fffc29, 0xff900c00, 0x67e6f3ff, 0xf6230582, 0x829466e6, 0x9993255b, 0x2501ff9a,
0x2605fd56, 0x00ff66e6, 0x8334b386, 0xe00825ec, 0xf8ffff00, 0x07211083, 0x20098220, 0x24a482f7, 0xff067b08, 0x914318ff, 0x00e0210b, 0x1082fd82,
0xd0490820, 0x79ff2305, 0xa182cc4c, 0x88160736, 0x220400ff, 0x0800ff0c, 0x00ffca21, 0xffc28a02, 0x48e10700, 0x06848282, 0x0a00ff24, 0x9482ead1,
0x6b828620, 0x34330627, 0xccfbffff, 0x288682cc, 0xff32b34e, 0x68e6f0fe, 0x051e4715, 0x20074d47, 0x06fc481e, 0xc6480f83, 0x0e002316, 0xe2466c47,
0x1c002305, 0x6683d282, 0x60250c23, 0x477d8206, 0x2e470517, 0x053e4706, 0x06850820, 0x8209c648, 0xf02721d0, 0xff203382, 0x220f9d49, 0x47782200,
0xb620142e, 0x96069d49, 0x07ab48a0, 0xf5ffff2a, 0xff8bb8de, 0x90c2f9ff, 0xc0210482, 0x28bb8600, 0x4a6cf7ff, 0xebffff05, 0x28d682de, 0xfff2d2eb,
0x0080ddff, 0x06957eff, 0x82801c21, 0x49002025, 0x0820064e, 0x23077d49, 0x8a410600, 0x8249a488, 0xf8ff2109, 0xff23dd83, 0x47560ef8, 0x71200bea,
0x23058249, 0x51b8f1ff, 0x260daa48, 0x00ff156e, 0x48af8708, 0xa0920aaa, 0xff24ab87, 0x70fdffff, 0xe1201f82, 0x48066b49, 0x08220609, 0x88827593,
0x0020bf83, 0x2506aa48, 0xf1ffff0b, 0x738693b8, 0x2f7de323, 0x228b838b, 0x8506bedf, 0x056441af, 0xb982a886, 0x594a0820, 0x07002106, 0x20075e4a,
0x82e58200, 0x2bf38333, 0x1c00ff06, 0xff8b8f82, 0xaf470e00, 0xeb225086, 0xc4840ad7, 0x4e820820, 0x424a6c20, 0x05094b08, 0x8e05194b, 0x200321a0,
0x2306194b, 0x10180400, 0x2305194b, 0x4c170400, 0x06836183, 0x1682ff20, 0x5d4ad520, 0x03002405, 0x4bff3b1f, 0x00200519, 0x0482d683, 0x4a053421,
0x0023053d, 0x4a8e2d14, 0x6345063d, 0x80e32205, 0x0d194b00, 0xc683bf91, 0x4b063d4a, 0x4d421619, 0x470e2105, 0x2014f04b, 0xa17a82cc, 0xd01721bb,
0xa221bb82, 0x21b6820c, 0x04839819, 0x95829a20, 0x34337a27, 0xb37600ff, 0x0cf54d32, 0x29070024, 0x8e828b78, 0x0822f022, 0x194f0685, 0xf6082206,
0x08194f44, 0x2709456b, 0x66e6f7ff, 0xf8ffff8b, 0x82053350, 0x05a14706, 0x89491683, 0x0af54d06, 0x04d6f822, 0x2a214c82, 0x2257827e, 0x8382d508,
0x8206825e, 0xfc292611, 0x440600ff, 0x14047518, 0x8282d521, 0x2af7225e, 0x202d827e, 0x860682ff, 0xbbf9225e, 0x255e86e8, 0x191c01ff, 0xc1827498,
0x4861ea2b, 0x405100ff, 0xddffff00, 0x2ce18299, 0xff9ad94d, 0x2005d2ff, 0xe64700ff, 0x21eb8266, 0x1e82e1e9, 0x48a12222, 0x25056f45, 0x00801c00,
0x16828b5f, 0x4861d922, 0xe0265f82, 0xffff289c, 0xc983a6e2, 0xb89edb22, 0xe4231682, 0x82079042, 0x86cb2598, 0x300500ff, 0x092c4382, 0x00ff1e25,
0xff4acc02, 0x7a940900, 0x00233782, 0x82ecd10c, 0x0f0c27c5, 0xfbffff5c, 0x16824200, 0xffec1136, 0xd2edf6ff, 0x1200ff08, 0xffffc2b5, 0x8bae47ed,
0x8fe1ffff, 0xed221f82, 0x0f843e4a, 0x2c08c343, 0xff05d26d, 0x241b0c00, 0xf9ffffff, 0x180a829c, 0x210bb764, 0x3682c275, 0x3e8ae522, 0xe527ee83,
0xffffae87, 0x865278ea, 0x440e8204, 0xec4d0869, 0x216f900b, 0x6f826648, 0x823e4a21, 0xeff6226f, 0x8395821a, 0xf2f32204, 0x26a9822e, 0xffff8a01,
0x83142ef3, 0x5cfd2246, 0x2c6982ee, 0xff0e6dfd, 0x04580000, 0x72fdffff, 0x2109826e, 0xc082fc69, 0x9a990c27, 0xa8efffff, 0x21ca82f6, 0x3082842b,
0xffe27a2b, 0x72bd1500, 0x21faffff, 0x271e8246, 0xfffe7f3b, 0x9a19f0ff, 0x3e22b982, 0x2982c8be, 0x46041421, 0x00350577, 0x8bcc4c2c, 0x333d00ff,
0x958b0834, 0xb3feffff, 0x0900ff34, 0x228c82e6, 0x826466fd, 0xcccc2b09, 0xebaf0e08, 0xe68f00ff, 0x26821566, 0x82280c21, 0xf8042c60, 0x0b00ff94,
0x00ff84ab, 0x8244ab08, 0x162e2104, 0x48276082, 0x00ff4721, 0x827b1444, 0xa6012c60, 0x0100ff66, 0x00ff148e, 0x827d1f02, 0x8ac1219f, 0xd6210e82,
0x21048287, 0xdf825a44, 0x12b8f52a, 0xa11700ff, 0xe9ffffcb, 0x00246782, 0x70cccc10, 0x27059149, 0x8b66a6dc, 0x59e3ffff, 0xe320c882, 0xff269483,
0x0834b3dc, 0x1382072b, 0x093b8418, 0x86abf128, 0xc51000ff, 0x72828b1f, 0x66e60025, 0x910514fb, 0xab11221e, 0x05b55d85, 0x0d780883, 0x597a2008,
0x37820503, 0xd8636033, 0xcdffff07, 0x00ffd7a3, 0x05ae872f, 0x75f6ffff, 0x23c683c2, 0xfbffff14, 0x0b229183, 0x2b8232b3, 0x9a190c24, 0xc382f808,
0x9a19b023, 0x12775915, 0x48612323, 0x82258208, 0x2bb28206, 0x00ff4861, 0xffb89e1c, 0xb89edcff, 0x06849982, 0xff231685, 0x824861e3, 0x821782a1,
0x8217832d, 0x83992028, 0x273283e0, 0x8b666623, 0x8b14fc08, 0x66215fa0, 0x5a5f8766, 0xdc200543, 0x5f820682, 0x5f931682, 0x8548a121, 0x2300227b,
0x218d835e, 0x27835c01, 0x34b35826, 0xb7ffff15, 0x4322df83, 0xf482ffff, 0x9082fc31, 0x4b0300ff, 0xfaffff02, 0x00ff0ce2, 0x8266e600, 0xd49827fe,
0x1bfeffff, 0x0a820823, 0x822a9c21, 0xdc19250a, 0x19fdffff, 0xfb22af82, 0xc68233b3, 0x3333fb2a, 0xfb076708, 0x07af0614, 0x0422fb82, 0x1d8285cb,
0xff9c2426, 0x87560400, 0x98263182, 0x0100ff52, 0x3c83a2e5, 0x82df8f21, 0xb8de210a, 0xe6215b82, 0x22378266, 0x820080fc, 0xcdcc211f, 0xb7271a82,
0xffff67e6, 0x820100bc, 0x31fb2281, 0x211582eb, 0x20820a77, 0x3b83f720, 0x82ce0421, 0x78fb27a1, 0x00ff0852, 0x3b821e48, 0x14eebb23, 0x30a28205,
0xffff717d, 0xff82b5fc, 0xf31d0500, 0x19ffffff, 0x216f8298, 0x5f822b67, 0x82dee421, 0x5e042229, 0x240a82b9, 0x00ff46d6, 0x22c18202, 0x82660400,
0x0400236f, 0x1a82cccc, 0x9a19242b, 0x0614f707, 0xdcdbffff, 0x23af8228, 0x7a34fbff, 0xdb212582, 0x21748264, 0x4483f6a8, 0xe182ae20, 0x6e831820,
0xf0670422, 0x1b210a82, 0x24638364, 0x0000fff4, 0x22d382e6, 0x82ac7c03, 0x8c4a217c, 0x00238d86, 0x82ec1144, 0xce04228d, 0x213982da, 0xfe82d282,
0x66660822, 0x33214982, 0x210f8232, 0x25829a99, 0x9a994329, 0x4c8700ff, 0x824b15cc, 0x84e52072, 0x83e820f7, 0x3aef25c6, 0xf6ffffe0, 0xff231c82,
0x829b59e8, 0xd7012227, 0x216c828e, 0x8b82a0ba, 0x82822021, 0x773e21d0, 0xa721c082, 0x2113826c, 0xfa886270, 0x82a4f021, 0xa308316c, 0xf7ffff14,
0xff9034de, 0xce4cf4ff, 0xf3ffff8b, 0x0022d784, 0x0a828400, 0x820ad721, 0x8207207d, 0x54f42236, 0x2125827c, 0x04823854, 0x08ead132, 0xa3cdffff,
0xd0ffffd8, 0xff059082, 0x9a999fff, 0x2a0a3e43, 0xf1ffff7a, 0x00ff86ab, 0x4386ab11, 0x8420071f, 0x0e20c782, 0x58183f82, 0x11210f19, 0x201992ab,
0x234b82eb, 0xcc4c2300, 0x3610674e, 0x00ffef0e, 0xff9a19ee, 0x34b31e01, 0xd7ffff15, 0x00ff33b3, 0x8266e68c, 0x19fd2c80, 0x0a00ff99, 0x00ffe03a,
0x8234b307, 0x8c2b2109, 0x99220482, 0xe7828b99, 0x33333828, 0x0b00ff06, 0x82820080, 0x9a990a2a, 0xd8f9ffff, 0x0500ffce, 0xff232682, 0x827408f6,
0x80642d20, 0x50ffff00, 0xff05b81e, 0x98997400, 0x22222b82, 0x2b823433, 0x00803b33, 0x08688b6e, 0xffff678b, 0x6f0080c4, 0xccddffff, 0x234f82cc,
0xce4cb6ff, 0xbe252382, 0xffff3233, 0x277b836a, 0x68660a00, 0xccf7ffff, 0x01275482, 0xffff64e6, 0x8366e6f0, 0xffd0260e, 0x9a99f5ff, 0x820a8308,
0x99f522c8, 0x82198398, 0x19fe221e, 0x3019839c, 0x0800ff9c, 0xff083233, 0xf8feaffd, 0x02d001ff, 0x22c4828e, 0x826891f5, 0x162e2b15, 0x2bfeffff,
0x0f00ffc7, 0x0e827a14, 0x82502d21, 0x1a6f21c9, 0x0822a782, 0x0a82912d, 0x83da6e21, 0xff7b2519, 0xf8d30100, 0x2206c863, 0x82b0d2f7, 0x4ac7271e,
0x63ffff3e, 0x4882e0cf, 0xa4703b32, 0x992000ff, 0x01ff1598, 0xffc2f540, 0x9a1903ff, 0xbe201582, 0x8d22f283, 0x0a8234b3, 0x824cfa21, 0x19f62293,
0x2089829a, 0x21ad8266, 0x0e82ccf9, 0x0080f422, 0xc723de83, 0x8306cdcc, 0x8b672416, 0x82f8ffff, 0x0a002826, 0x00ff3433, 0x8267e602, 0x28b0836c,
0x99193100, 0x80ac00ff, 0x22468200, 0x829a1999, 0xccd4252b, 0xc5ffffcd, 0xfc2c1084, 0xff87e1fa, 0x8f42fbff, 0x99fdffff, 0xfa225d82, 0x5383c2f5,
0xae07d622, 0xf8222782, 0x53820040, 0x52b8f928, 0x4c0600ff, 0xdb828bcc, 0x089a9922, 0x00200682, 0x00238282, 0x82152e00, 0xce4c26d2, 0x5c0000ff,
0x066f6729, 0x751f0025, 0x8203f7c3, 0x8ae02667, 0x6d00ff3d, 0x22b98333, 0x84d7a3ff, 0xffff241d, 0x84ebd1ff, 0x20418231, 0x05e86f01, 0xd0820620,
0xeb820020, 0x0500ff22, 0x0622b883, 0x2082a470, 0x1866e621, 0x20077e84, 0x2e14827b, 0xa4f06101, 0xd4ffff15, 0x00ff14ae, 0x82ec512b, 0x1ef3265b,
0xffff97ba, 0x28ad82f0, 0x70bd0600, 0x19efffff, 0x23b28398, 0x060040bd, 0x2505c845, 0xabf1ffff, 0x2472ff85, 0x837b2007, 0x0cbf221c, 0x0edd75cd,
0x08855718, 0xe625bf82, 0xf7052b67, 0x2a208214, 0xabf3ffff, 0x4200ff05, 0x820601c0, 0x5c4f216d, 0xb0217782, 0x2c1082a4, 0xff7c3f06, 0x84c0f9ff,
0x210a00ff, 0x061153cc, 0x14820020, 0x00ff0825, 0x84b89e16, 0x26258304, 0x00ff4a4a, 0x823e4a06, 0x820a2020, 0xf9ff23d8, 0x0f8232b3, 0x08703d2c,
0x4c70ffff, 0xbeffffce, 0xc9825c0f, 0xc5682208, 0xffff061e, 0x8b66e6de, 0x5ce4ffff, 0xe6ffff29, 0xff88cccc, 0x0100dfff, 0xebffff08, 0xffffd7a3,
0x0585451f, 0xff4c972b, 0x0080daff, 0x821d00ff, 0x261f824e, 0x00ff34b3, 0x82d7a325, 0xbf0023cd, 0x9f829a19, 0x48a12522, 0x1d256982, 0x00ff8e82,
0x22aa8320, 0x829a99fc, 0xe27a2121, 0xd62d4684, 0xff0574f7, 0xf6e8fdff, 0x022100ff, 0x8269828e, 0x19002380, 0x79853433, 0x0320b782, 0xff245982,
0x1534b352, 0xf8278682, 0xffff12a3, 0x826d07fa, 0x74082c04, 0xa4f8ffff, 0x63088b18, 0x89076306, 0x87f0201a, 0x95a3211a, 0xff248082, 0x067b54e5,
0xa3212782, 0x27218212, 0xff7308fa, 0x94f80500, 0x072a8b82, 0xb308e65b, 0xd8ffff07, 0x1e8ad7e3, 0x1e8b7220, 0x1a00ff24, 0x58829899, 0x5d070023,
0x82178470, 0x0af72a04, 0x5b0700ff, 0xb3088be8, 0x283d8306, 0xff52f8ff, 0x20450800, 0x201a8291, 0x22d28219, 0x82666607, 0x1a002373, 0xf48285ab,
0xee5c0722, 0x05226882, 0x90828df7, 0x84f00721, 0x089528a0, 0xffd7ffff, 0x95b307ff, 0x8296201e, 0x5ce5221e, 0x2e96822a, 0x8bec11ff, 0x30fb0e15,
0x99eb00ff, 0x41b4f79a, 0xff25888b, 0xfb0080b3, 0x228e8294, 0x539999dd, 0x00230693, 0x82cc4c1a, 0x202908e7, 0x8b086866, 0x2600ffa4, 0x00ff7b14,
0xff527832, 0x856b1100, 0xcc1500ff, 0x00ff08cc, 0xff004004, 0xdf4f0500, 0x800800ff, 0x832c8200, 0xfaff230f, 0x1a8221b0, 0x66661127, 0x3aeaffff,
0x243982e2, 0xffff9a19, 0x211f82cd, 0x5a820872, 0x9899df2f, 0x4ce3ffff, 0xe5ffffcd, 0xffff34b3, 0x05f050db, 0x3233dc25, 0x434101ff, 0x0e25c166,
0x00ffb4f7, 0x11f55ac0, 0x0b774118, 0x4cfc2921, 0xf55a05a0, 0xd6082105, 0x0ea54118, 0x29070024, 0x21828bba, 0x08e0ef22, 0xe6210683, 0x05a04c66,
0x2605ac53, 0x8b3433f7, 0x4dcb4b08, 0xff290c5e, 0x8b87d6f8, 0x29f7ffff, 0x82308279, 0x4d5e8706, 0xef23051b, 0x83088b9e, 0x829e204d, 0x1008224c,
0x10545b62, 0xe6211082, 0x08585b67, 0x47829920, 0x83333321, 0x80f23a31, 0x6b00ff00, 0xfb15866b, 0x5000ff54, 0xff059002, 0x9a19fbff, 0x070200ff,
0x2b23826c, 0x00ff32b3, 0xff18a401, 0xceccfaff, 0xff232d82, 0x839999fa, 0xcdcc2682, 0x5bfeffff, 0x242a85e8, 0x10f8fdff, 0x233d8208, 0x70fdafff,
0xee223d82, 0x66820a17, 0xffac9c2b, 0x5c4ff4ff, 0x78eeffff, 0x22318252, 0x820080ed, 0xfdfe21b4, 0x002ce582, 0xff3333bd, 0x343381ff, 0xb33200ff,
0x34228284, 0xb4821e05, 0x7c14bc25, 0x828000ff, 0x00ff24f7, 0x82ccccff, 0x1300232d, 0x44826666, 0xffcc4c26, 0xae871100, 0x32834982, 0xd8630726,
0xadffff08, 0xff23b482, 0x5a7a9454, 0xec2208dc, 0x6582c2b5, 0xe23af326, 0x38f0ffff, 0xef217083, 0x2242838c, 0x8223f8ff, 0xeb0222d5, 0x2bca8202,
0x00ff64fb, 0xff9c8406, 0xe27af9ff, 0x4f0df35a, 0x01220902, 0xd3822090, 0x5a32e821, 0x83820510, 0x79f7ff23, 0x21318216, 0x04829022, 0xff506d27,
0x70ddf6ff, 0x227f828b, 0x83f0e7fb, 0xf0e72122, 0x221cef5a, 0x83227bf9, 0x82de2072, 0x30fd2b7c, 0xea0200ff, 0xf8ffffc0, 0x40834821, 0x40829e82,
0xff21aa82, 0x82b482ff, 0x82c0820a, 0x3a065b57, 0x3e4a1322, 0xff29fb84, 0x1ec50c00, 0x8cefffff, 0x826783cd, 0x275c82ff, 0xfff4fdf7, 0x4015fdff,
0x7a21c482, 0x210482e1, 0xda50227b, 0x1ad95b0d, 0x6bdcf622, 0xf9284082, 0x00ff9523, 0x8b167907, 0xa0220582, 0x06820884, 0x10180422, 0xdf2afb83,
0x170400ff, 0x0300ffd0, 0x04824220, 0x557c1f21, 0x00230c5a, 0x41dd8406, 0xfb820500, 0x00ffc125, 0x82d00208, 0xde072239, 0x224083b8, 0x83347310,
0xffe12afb, 0xadc70f00, 0xb5ecffff, 0x22af83c3, 0x5babdcf3, 0x865a2030, 0x5111200a, 0xff8209c4, 0xfb835c82, 0xae205082, 0x10220a82, 0x67833373,
0xacdc0722, 0x1421fb82, 0x217e82fe, 0xfb839c04, 0x92826420, 0x081e8527, 0x74f7ffff, 0x27ce82bd, 0xff0588ab, 0xcdccfcff, 0x2305de50, 0x0080feff,
0x1921d282, 0x2240829a, 0x839a1904, 0x86082240, 0x213182ea, 0x048271dd, 0xffb09226, 0x8f220900, 0x0a407318, 0xff111826, 0x2270feff, 0x1f213c82,
0x2246823b, 0x8208bcdf, 0x0a972667, 0x63f8ffff, 0x06b16954, 0x66f9ff24, 0x82829368, 0x82981921, 0x67e6216d, 0x9a823c83, 0x0f275f82, 0x00ffaec7,
0x8220c50c, 0x4c13220a, 0x223882cc, 0x5bae070d, 0x1220056c, 0x2008d351, 0x054d54ee, 0xea511c82, 0xf8ff2409, 0x828b12d8, 0xee2721be, 0x23093142,
0xffc2b5ec, 0xff29f783, 0x5238f3ff, 0x731000ff, 0x82678334, 0x205c82fb, 0x22f78208, 0x82ea0200, 0x85062220, 0x21c5821e, 0x835bdc84, 0x52b62009,
0x00220601, 0xf7832003, 0xff101825, 0x82900100, 0x06bd52ce, 0x96230922, 0x06224082, 0xd0826adc, 0x82e88621, 0x5ff82374, 0xf942087c, 0x43f78206,
0xf783052c, 0x0482c020, 0x5082e021, 0x6c2708a7, 0xffff054c, 0x86227bf9, 0x15fd2204, 0x21af8240, 0x39822efd, 0x4821f822, 0xef224083, 0xa842ce8c,
0x83f02006, 0x4a1322af, 0x09c9413e, 0x1020e98c, 0xf020e984, 0x1c5e3383, 0x24c62105, 0xf3214a82, 0x06c35132, 0x84f80e2b, 0x2b1534f7, 0xcb07ab06,
0x200082ff, 0x22ce82f2, 0x8288d608, 0x290722b3, 0x07024578, 0x9eef0722, 0x0f23f082, 0x82079a19, 0xd6082217, 0x21cb8287, 0x1c8388d6, 0x44827920,
0x8b782924, 0xf4823b08, 0x82dacc21, 0x09b568b1, 0xabf1ff22, 0x07a14718, 0xd0ffff26, 0x4b0766e6, 0xff245d82, 0x54f705e0, 0x11274483, 0x00ffd6a3,
0x83285c0e, 0xff2a2504, 0xd8a31100, 0x0683bd83, 0xff231685, 0x82d6a3f1, 0x5cee24b7, 0x827b082a, 0x0fab452f, 0x04d60828, 0x06ab088b, 0xaa9000ff,
0x08211982, 0x0831829b, 0x333b002c, 0xcaffff34, 0x00ff6626, 0xffcccc2e, 0x00c0c2ff, 0x23f4ffff, 0xffff08d6, 0xff6766d2, 0x2240f6ff, 0xb3e0ffff,
0xd5ffff33, 0x69829a59, 0xea91d122, 0x43221a82, 0xa784cecc, 0x0570fd23, 0x21a684bb, 0x9f4a85ab, 0xff7b2508, 0x7b54eeff, 0x8b20eb82, 0xd062e782,
0x0a534609, 0xf0ffff22, 0x4c82e782, 0xcd4cf627, 0x280700ff, 0x072c46f6, 0x8b0ad729, 0x00ffcb08, 0x820d0000, 0xffdf263a, 0x062b07f3, 0x0a1363ff,
0x04204282, 0x53823582, 0x976b0821, 0x74f821ec, 0x2017257f, 0x213282ab, 0xe3830800, 0x82061d5b, 0x33f729f7, 0xfc088b34, 0x1514fb64, 0xca275782,
0x00ffe2fa, 0x82e1fa2a, 0x1e052aea, 0x053500ff, 0xf7088b1f, 0x234e8294, 0x8b1e0535, 0x1e841983, 0x0a82e220, 0x08321082, 0x54fc07ab, 0x0e076b06,
0x54f7d4f7, 0x2300ff15, 0x18829a59, 0x66a61c23, 0x063e61ff, 0x08201082, 0x06821182, 0x8305e351, 0xffff2616, 0x8b66a6dc, 0x85068508, 0xe3ff2116,
0x17833883, 0xff232d82, 0x5c33b3dc, 0xe32206d0, 0x5482cd4c, 0x8bcc4c27, 0x6b34fb08, 0x20318915, 0x82368499, 0x844982ad, 0x20718531, 0x85168467,
0xf7082286, 0xabb48254, 0x54fb2690, 0xf774f706, 0x79c68274, 0x11221068, 0x668284ab, 0x17820020, 0x21064d4f, 0xa57e540e, 0x239b821e, 0xff7c54ee,
0x210f6879, 0xc68244fb, 0x801a0027, 0x00ff8b00, 0x5c441815, 0xeaff2114, 0x99181686, 0xe52008c3, 0x16842d83, 0x0074ff20, 0x7de52205, 0x208d8270,
0x850682ff, 0x05a47644, 0x08245483, 0x152b64f7, 0xe4307a82, 0xffff142e, 0xffe2faf3, 0xd823e7ff, 0x14edffff, 0x7826ad83, 0x00ff0852, 0x0f82a324,
0x8e82f228, 0x4c1a00ff, 0x2a8268cc, 0x766cd620, 0x83ca2005, 0x05d5222c, 0x05f6411e, 0x0e82ff20, 0xfb088b25, 0x82ff0654, 0x82e12009, 0x05d52625,
0x2a00ff1f, 0x07f641fa, 0x4205fd41, 0x16830527, 0x24062742, 0xe85800ff, 0x2c3382f6, 0xffa4b0f0, 0x66e61100, 0x66f6ffff, 0x21a38266, 0x30826766,
0x33b31825, 0x8c14fb08, 0x06df6851, 0x9a19ca22, 0x07201982, 0x20177c42, 0x177c42d4, 0x8214f721, 0x35002433, 0x826066e6, 0x9a192b89, 0x0e088b56,
0xf7a8f72f, 0x6d821554, 0x9a990625, 0x830500ff, 0x8204847d, 0x828b200e, 0x850683fd, 0xfaff2316, 0x70829a99, 0x6666f922, 0x82056c54, 0x83ff2008,
0x82048613, 0x202f820e, 0x850683ff, 0x854b8311, 0xeb082656, 0x94f78707, 0x05aa6815, 0x2008e041, 0x1b761886, 0xff7c250b, 0x34b3f1ff, 0xab290482,
0xeeffff84, 0x088bcc4c, 0x28f7827b, 0x07cc8cdd, 0x802500ff, 0x25518200, 0x00ff0040, 0x22823322, 0x3433f024, 0x998274a7, 0x32b3152b, 0x991500ff,
0x00ff059a, 0x8521820c, 0x33142204, 0x83738234, 0xf3ff230f, 0x25820080, 0x6c820a87, 0xcccceb23, 0x841583ff, 0xff082504, 0x66e6e7ff, 0xcc210482,
0x204082ce, 0x22588315, 0x82ff7fdf, 0x824c204a, 0x19d92224, 0x232f8299, 0x083433d6, 0x8d250682, 0xffff9a19, 0x842b83a2, 0x830e8204, 0x848d20e7,
0x23118322, 0x9a195d00, 0x722d7382, 0x8b0866e6, 0x4c00fff3, 0x00ffec51, 0x224f8256, 0x82ae6300, 0x590f22f2, 0x23858298, 0x07347322, 0xee22d083,
0x5182cd4c, 0x33b3f124, 0x671800ff, 0x86200e2a, 0x94181182, 0xeb280d75, 0xfb9b058b, 0xffff1560, 0x2105e455, 0xfb82b3e8, 0x60b3e821, 0x824106a7,
0x22198205, 0x831700ff, 0x231d83b1, 0x34b31c00, 0x06849a82, 0x1b831685, 0x17829a82, 0x07eb0822, 0x33220884, 0x2a84ffff, 0x6b821720, 0x08275884,
0xffff08fb, 0x820080cb, 0xb3fd2267, 0x26248234, 0x6666fcff, 0x82feffff, 0x05127aa2, 0x8299fd21, 0x4cfd22fe, 0x212682cc, 0x1982e6d8, 0x9a19d426,
0xf2ffff05, 0xf0203f83, 0xf8271a83, 0xffff0080, 0x829a19ec, 0x80eb22d7, 0x3b258200, 0x07cc4cf0, 0x00ff808b, 0x829a1908, 0xe60b00ff, 0xcb088b67,
0x948b9606, 0x08968b94, 0x0b228382, 0x168266e6, 0x80201c82, 0xff33ab82, 0x063333d4, 0xe60000ff, 0x0900ff67, 0x00ff3433, 0x82cccc03, 0x32b33339,
0x330600ff, 0xff089234, 0x99192700, 0xe62b00ff, 0x16820566, 0x0a282583, 0xff8f9a19, 0x66e60c00, 0x0d224a82, 0x21826866, 0x6f830220, 0xffffa824,
0xdf7466e9, 0x836e2005, 0x4ce92757, 0xff778bcd, 0x9c83f1ff, 0x5382f820, 0x99eaff23, 0x209b829a, 0x21db84ff, 0xc1823333, 0x1a83fc20, 0x0482f520,
0x83050021, 0x82f420eb, 0x0a002104, 0xff230e82, 0x826666fd, 0x200a8455, 0x24e082fb, 0xcd4c0b00, 0x822382ff, 0x8302209c, 0x7f0a220e, 0x201e82ff,
0x22298201, 0x82b30100, 0x4f058348, 0x0421069b, 0x202982cc, 0x4f528403, 0x062005a5, 0x0426a684, 0xffff34b3, 0xb18266fa, 0x19f9ff22, 0xee828582,
0x058b6639, 0x00ffef0e, 0xff48214a, 0x34339f01, 0x0700ff15, 0x00ffb99e, 0x87846b0b, 0x5b0d27e7, 0x0e00ffa6, 0xf68233f3, 0xff600526, 0x9a191000,
0x0124d682, 0x0698998c, 0x9c200c83, 0x0e27fd82, 0xffff64e6, 0x82a0faf7, 0x68e62621, 0xa4f2ffff, 0x2c97825a, 0xff98994b, 0x14ae8eff, 0xffff8f05,
0x221682f9, 0x82330200, 0xe6f8217c, 0xf8277c83, 0x8b0832b3, 0x83ebffff, 0x82ef208e, 0x84ff20a5, 0x820e8204, 0xbafe2259, 0x20598319, 0x221b832a,
0x820080de, 0x2fe18285, 0xff06cb07, 0xcc4cccff, 0xff14f707, 0x9a999cff, 0x97221582, 0x15849a19, 0xcccc352c, 0x3600ff07, 0xffffcccc, 0x188319d5,
0x206e4554, 0x07455498, 0x543ad421, 0x233e0c45, 0xffffeb51, 0x05e04fe4, 0xdeb5ffff, 0x85ffffb8, 0x8b159899, 0x4c0700ff, 0x0200ffce, 0x09822b27,
0xff9a1936, 0xf6080400, 0x190600ff, 0x00ff0898, 0xffc1ca0e, 0x34331600, 0x6425db82, 0xffffecd1, 0x23fc83b0, 0x3d0aabff, 0xeb2dfa82, 0xff8bf6a8,
0x1480efff, 0x801000ff, 0x24468200, 0x08cc4c14, 0x350082ff, 0xd4f706ec, 0x331bffff, 0x00ff1534, 0x0766e623, 0xcdffffcb, 0x73829a99, 0x0080be23,
0xc44a1807, 0x223c8212, 0x6374fb08, 0x8427180d, 0xfb06cb07, 0x62f70734, 0x5e27051e, 0x01ff85eb, 0x82f6e88e, 0xc716225b, 0x216082ae, 0x9c82c2f5,
0xb7830520, 0x66260827, 0x190900ff, 0x21c18299, 0x0982b4fa, 0x8b34b329, 0x6401ff08, 0x8506cccc, 0x8205820c, 0xfbff2d26, 0x00ff8e05, 0xff981905,
0x58d9f7ff, 0x3927e382, 0xffffcc4c, 0x827c54a5, 0xb31d2546, 0xd1ffff34, 0xe5201a83, 0xbe300983, 0xffff67e6, 0xff0080c8, 0x9a99f8ff, 0xfcffff08,
0xff231983, 0x82870080, 0x33b326e4, 0xccfbffff, 0x236182d0, 0xfeffe5ff, 0xe82ad582, 0x00ffcecc, 0xff66660b, 0x2682f0ff, 0x84110021, 0x83f02031,
0x83ee2070, 0x281e8314, 0x9a99f4ff, 0xe6e5ffff, 0x82358466, 0xffff2406, 0x88cccce8, 0xff9a2135, 0xfa203586, 0xf9217283, 0x204a82e6, 0x208683f9,
0x200483fa, 0x21ba84f9, 0xb08233b3, 0x3382b220, 0xcc73ff23, 0x23b082cd, 0x07333364, 0x33203f82, 0xfc21b682, 0x20f88299, 0x2034830b, 0x232a82fe,
0xce4c0c00, 0x00246582, 0x8b989905, 0x6626ed82, 0x0000ff68, 0x3b556666, 0xb3002506, 0x8b8b0834, 0x03223e82, 0x17826466, 0x00226d82, 0x2183e604,
0x8fcccc23, 0x22e7828c, 0x8200806b, 0xcc562355, 0x238247cc, 0x2786ba42, 0xff291c38, 0xa205d4ff, 0x11289182, 0xffffae47, 0x15d7e351, 0x28211082,
0x83d382f6, 0x75e63df4, 0x2a00ffc2, 0x00ff3333, 0xff7b1406, 0x9a992800, 0x6a00ff08, 0xffff6766, 0x059a19ac, 0x45053848, 0xf52905bc, 0xff899a99,
0x9919f5ff, 0x23ea828b, 0x8b66e6fb, 0x2a06b05b, 0x87cd4c00, 0x800000ff, 0x828b0800, 0xcc2f38fd, 0x5fffffcd, 0xff153333, 0x0080cd00, 0x9500ff06,
0xffff6866, 0x82cc4c8a, 0xe6f52f4b, 0xf9ffff64, 0xffff0080, 0xff9a19f4, 0x6c18fcff, 0xfb22089c, 0x8a1806d4, 0xff2416cf, 0x6666c300, 0x03275682,
0xff8ab9de, 0x82070400, 0x82ff20c1, 0x03002136, 0xff21b182, 0x217382ff, 0xd9828b8c, 0x12820520, 0x4cffff23, 0x83d382cc, 0x99ff225d, 0x2009829a,
0x059b7499, 0x8b676626, 0x0100ff97, 0x0021eb82, 0x2134820b, 0x34820300, 0x7affff35, 0x0e079a99, 0x3f00ffef, 0x01ffe1fa, 0x1566e600, 0x4c53ffff,
0xd6220505, 0xf58248e1, 0xa4824020, 0xb85eea26, 0x9eeaffff, 0xbf230482, 0x82089ad9, 0x255b83af, 0xff00c0f5, 0x04820700, 0x26f6ff2d, 0x0a00ff66,
0x088b48e1, 0x831801ff, 0x0100225e, 0x2b8b8282, 0x8bb8de0d, 0x3a0b00ff, 0x0800ffe2, 0x00292682, 0xff1e4505, 0xb81e0d00, 0x242c8208, 0x00ff7a14,
0x0836831e, 0x4861092f, 0x731b00ff, 0x0300ff34, 0x00ffd8a3, 0x08142e24, 0x28c4feff, 0xf500fff6, 0xff0580be, 0xd763feff, 0x19f2ffff, 0xffffff98,
0xffff7b14, 0x2ccb82f1, 0x02ff087d, 0xfbecd136, 0xffff15aa, 0x23ef8292, 0x1e055600, 0x30206e82, 0x09326383, 0x00ffde24, 0xffa43026, 0x560e5200,
0x6300ff8b, 0xaf8266e6, 0xf428ff2e, 0xfa6900ff, 0xffe160e2, 0x0200cbff, 0x0684a782, 0xd4ffff29, 0x8b35feff, 0x8296ffff, 0x20068225, 0x304184ce,
0xffffac5c, 0xff5238d3, 0x0c420f00, 0x07deffff, 0x204082ae, 0x22a583c7, 0x8248612c, 0x01002866, 0x5300ff42, 0x820566a6, 0x9e53255d, 0x1700ffb8,
0x45210483, 0x20c682e1, 0x22048324, 0x829a9925, 0x7ee328c1, 0xffff06be, 0x829919e8, 0xf82008b7, 0xe9ffff52, 0xffff0080, 0xffec11ed, 0x1f05efff,
0x35e1ffff, 0xffff08c2, 0xff0a17c7, 0x6a9c2c00, 0x7d1e3073, 0xd1241af5, 0xf5ffffaa, 0x2942d978, 0xfff81e09, 0x12830900, 0x3073ffff, 0x68ff2613,
0xaaf7ce4c, 0x21f08215, 0xf0825e23, 0x04830e20, 0x82a11c21, 0xa11122f0, 0x05597748, 0x1b82ba20, 0x44610e2e, 0x5ee3ffff, 0xffff8bb8, 0x0848a1dc,
0x897d0685, 0x82168206, 0x028021fe, 0xff232d82, 0x82cc4cef, 0xb3f0271b, 0x1b00ff34, 0x388234b3, 0xcc4c242f, 0xf8ef0e08, 0x15b4f794, 0x2e2c00ff,
0x24128214, 0xffecd123, 0x82048200, 0x8210820a, 0x8217834b, 0x82332057, 0x69168234, 0x068206f4, 0x82ecd121, 0x2edc224b, 0x831b8214, 0xd3ff2338,
0x2d82ecd1, 0x3f820683, 0x84cccc21, 0x21548216, 0x79833433, 0x9a19ea27, 0xffff156b, 0x820d82f3, 0x84eb3605, 0xf6fcffff, 0xf5ffff87, 0xffff1e05,
0x0808ccfa, 0x8f0000ff, 0x220a825c, 0x828c71bd, 0x66e62105, 0xfa225a82, 0x4f839a99, 0x3e4ade22, 0x2d055751, 0x0080e1ff, 0x9eebffff, 0xe8ffffb8,
0x3182c235, 0x32b3c728, 0x0900ff06, 0xaa8290c2, 0x68e60726, 0x660800ff, 0x00233782, 0x82ce4c0a, 0x33003237, 0xffffff7f, 0xff9899d8, 0xcdcc2900,
0x4ccfffff, 0x218783d0, 0x338233c2, 0x83a2ff21, 0x23048249, 0x1000ff15, 0x002da982, 0xffcc4c12, 0x66660a00, 0x4c1800ff, 0x224d82ce, 0x8366e61a,
0x70392a42, 0xd1ffffa4, 0x00ffc275, 0x229c832e, 0x83a470c7, 0x11dc2142, 0xe027f883, 0xffff28dc, 0x825278ed, 0xe27a3204, 0x3ae4ffff, 0xffff08e2,
0xff72fdd5, 0x32332000, 0x21968205, 0x7a82cc4c, 0x9a990527, 0xdc0f00ff, 0x2253822a, 0x41703d11, 0x33220a4c, 0x4c4100ff, 0x83cd2006, 0xcce72253,
0x2af182cd, 0xff51b8ea, 0xae07f5ff, 0x83f1ffff, 0x05ef2279, 0x2153821e, 0x4282d9e2, 0x7bd71621, 0xf7213483, 0x224082d0, 0x82dfcff7, 0x68912a55,
0xd00100ff, 0xf0ffff21, 0x21e682e6, 0x13826f0a, 0x2130837b, 0x90482030, 0x2ffe2206, 0x9f4018e0, 0xae163811, 0xb600ffda, 0xff0544b6, 0x008081ff,
0x80bdffff, 0xffff1500, 0x820080b1, 0x66c027d9, 0xc4ffff66, 0x0a82cc4c, 0x6866b623, 0x27068208, 0xff3233f1, 0x33b30c00, 0x08058645, 0xb30f0020,
0xff088b33, 0x34334701, 0x0b00ff06, 0xff8bb89e, 0x86eb0900, 0x950600ff, 0x0400ff40, 0x0e82f668, 0x82826021, 0x264821cc, 0x9022bd82, 0x64823e0a,
0x6666c834, 0x00ff3706, 0x15cdcc6c, 0x7fbfffff, 0x3300ffff, 0x17823333, 0xe17ade28, 0xcfffff06, 0x6582295c, 0x5c8fd827, 0x33d6ffff, 0x220a8233,
0x830180cc, 0xb3f52177, 0x07277782, 0xffff12e3, 0x829a99f7, 0xa6bb2155, 0x00237782, 0x820080c7, 0x47f12f33, 0x1100ffae, 0xffff3433, 0xff6766f5,
0x2a821400, 0x4cfaff35, 0x1600ffcd, 0x0e0867e6, 0x0302ffaf, 0x00ff9899, 0x826666dc, 0x73ea2170, 0xff23a982, 0x82ec51cd, 0x9ee6255a, 0x3d00ffb8,
0x232d3c83, 0x00ff7ad4, 0x080ad723, 0x400f00ff, 0x20048400, 0x21cf8205, 0x0483281c, 0x9d8b2a22, 0xe421ed82, 0x2010841a, 0x210a8208, 0x0a84d8e3,
0x42827920, 0xd6e3f422, 0x96201083, 0xf0241682, 0xffff90c2, 0xca820482, 0xf628dc24, 0x0484ffff, 0x52b8c22d, 0x611900ff, 0x00ff8b48, 0x82a4b032,
0x9415235e, 0x0c8207bc, 0x17820f20, 0x83f3ff21, 0x830c207a, 0x45f02209, 0x20ce821e, 0x240683ff, 0x49f3ffff, 0x210482fe, 0x5e82ae47, 0xae47f022,
0xea225982, 0x33823473, 0xff21b483, 0x205083ff, 0x84b883ff, 0x8200205f, 0x222082b8, 0x8651b8f0, 0xf4ff23b3, 0xb38467e6, 0xedffff26, 0x7f8bffff,
0xd6209c83, 0xd720b384, 0x8b210a84, 0x201d8379, 0x200b836b, 0x838d82d8, 0xf0ff23ec, 0xec8200c0, 0xbfbf2422, 0x2326b382, 0xe6ffffd8, 0x67829999,
0xff32b326, 0x3d4acdff, 0xea239683, 0x8206c375, 0x1f4521da, 0xb3839182, 0x4cf3ff23, 0x230a82cd, 0x08cd4cf0, 0xcc220684, 0xc58400ff, 0x9042f322,
0xba218682, 0x293382e1, 0xcd8c1500, 0x3200ff06, 0xec8214ae, 0xb886ff82, 0x852bdc22, 0x28226482, 0x4e8208f6, 0x8400c021, 0x83052004, 0x209c848b,
0x219c84d8, 0xa884e81b, 0x05319c82, 0xffff158e, 0xffec71fa, 0x67460700, 0x38fdffff, 0x210982d4, 0x5d83ae47, 0xea460722, 0x072c5782, 0x00ffe345,
0xff6cc702, 0x5d8f0500, 0x8e210482, 0x22358216, 0x41713d0f, 0x0024060b, 0xff0ad723, 0x3d220485, 0xd782af47, 0x82b89e21, 0x4fcd22ae, 0x0952415c,
0x8141f020, 0x45f32208, 0x21368220, 0x5d83e2ba, 0x06820f20, 0xd783d285, 0x10826882, 0x82ff0821, 0x07cc21d2, 0xd3820c82, 0x83063542, 0x235f84d7,
0x862bdcff, 0x70207a84, 0x0023d286, 0x87988e05, 0xe24521bb, 0x9220bb83, 0x4721bb89, 0x2245826c, 0x83f04707, 0xff2c25bb, 0xcc8c0500, 0x8e210482,
0x20408214, 0x0570420b, 0x9d8b282c, 0xe3f4ffff, 0x0b00ff96, 0xac822a1c, 0x42c0f021, 0xf4410792, 0x84d78306, 0x833d207c, 0xb03222bf, 0x057141a4,
0x8206cc21, 0x64bb26c2, 0x0a0000ff, 0x21bf823c, 0x048334b3, 0x6c823220, 0x34b30f23, 0x23068508, 0x4cf3ffff, 0x0c226e82, 0xa98232b3, 0x82cc4c21,
0xfcfe2937, 0xffff6866, 0x159a99d3, 0x082f5718, 0x828f8221, 0x717d21ec, 0x1a223182, 0x38838f82, 0x6c180682, 0x71220812, 0x0e8200ff, 0x06823882,
0x22829020, 0x827d1521, 0x82ea23f4, 0x3e848b8f, 0x2005d252, 0x07c36e71, 0xff274982, 0x8b0080e5, 0x7c53db08, 0xaa7f0c9b, 0x9042220e, 0x221183ff,
0x830900ff, 0x400d21d9, 0xff203082, 0x220ae67d, 0x8242f5ff, 0xf2ff2369, 0x5e8370bd, 0x9a99f325, 0x82f5ffff, 0x2b0485c5, 0x8b34b3f2, 0xffef0e08,
0x9a197100, 0x2807e443, 0x060a57eb, 0x47f0ffff, 0x229482ae, 0x431f45f3, 0x4521084d, 0x2240831e, 0x411e45f0, 0xff2305dd, 0x413e4af3, 0xb04208f4,
0x82152007, 0x611922d3, 0x0cb04247, 0x42842b21, 0x1c211ab0, 0x09b04202, 0xb0421420, 0x1639210c, 0x2109f441, 0x5782e946, 0xe4450722, 0x2008b042,
0x07f4415c, 0x2516b042, 0xe6ffffae, 0xc0822a9c, 0xea51cd22, 0x2120b042, 0x5d8252b8, 0xe2ba0c22, 0xb042d784, 0x141e360f, 0x1500ff7a, 0x00ffa4b0,
0xff20c514, 0xcc0c1900, 0xc00400ff, 0x33548200, 0xff82cf0a, 0xe525c000, 0xf6ffff05, 0xffff0080, 0x7f9a19f8, 0x9937c182, 0xf0ffff99, 0x088b9999,
0xb30502ff, 0x0effff34, 0xff150080, 0x82cc5eff, 0x667e2237, 0x362c8266, 0xff7e7bff, 0x9a991d00, 0x3f1600ff, 0x1c00ff64, 0x00ff32b3, 0x4212ae22,
0xb8210a85, 0x82908450, 0x840c20ee, 0xb80f239b, 0xf6440852, 0x82b02009, 0xe1ba21a7, 0x45216482, 0x2033821c, 0x129345ff, 0x00ffad22, 0x21059345,
0x93457cd4, 0xff2a240f, 0x431c0b00, 0xe4210522, 0x0722431e, 0x9345f420, 0xff2a2805, 0xfeffedff, 0x83ffff8b, 0x2004820f, 0x149745a8, 0xdc41f420,
0x0d974505, 0x07308029, 0xf2ffffff, 0x4500ffee, 0x4c21059b, 0x26a482ce, 0xffff52b8, 0x836666ef, 0x33f122a4, 0x20578232, 0x211682f3, 0x9b45f3ff,
0xd7e32137, 0x3846af84, 0x42d72005, 0xff280636, 0xffec51fe, 0x0a57feff, 0xe6210482, 0x21048266, 0x04822005, 0x82cdcc21, 0x7a142104, 0x9f27bf82,
0x00ff5ccf, 0x4a026b4b, 0xcc2213f2, 0x4818ffff, 0xe12107e8, 0x2c9e8248, 0xff5ceff8, 0x4cd7fcff, 0x47fbffff, 0xcc4318f0, 0x828f200d, 0x05484845,
0x0ae84818, 0x2dcc4318, 0x081df24a, 0x4cd7fe2d, 0xe800ffce, 0xff150080, 0x0080baff, 0x803600ff, 0x00ff0500, 0xff6ce706, 0x8ee20300, 0xf40700ff,
0x0200ffbc, 0x00ff5839, 0x44028008, 0x14210940, 0x57f98297, 0xe6230513, 0x4408d863, 0xff2305bd, 0x82e6b0fa, 0x9a192109, 0x2305274e, 0x66e6feff,
0x08250984, 0x01ffef0e, 0x325d835a, 0x1533b3ea, 0x281000ff, 0x00ff06f6, 0x8b0ad70b, 0x830900ff, 0x82048216, 0xcc0b230a, 0x068308cd, 0xff3cca26,
0x8075f6ff, 0x8a261b82, 0xf4ffff40, 0x76820636, 0xd7efff39, 0xffff060a, 0x8b70fdd9, 0xf5ecffff, 0x2d00ffc4, 0x00ffc2f5, 0x8446e11a, 0x22808204,
0x82a4700b, 0xa4702153, 0x0822bd82, 0xae82fe54, 0xff005522, 0xbe2a0082, 0x7f0d00ff, 0xf7ffff7c, 0x1382f6aa, 0x080a5722, 0x5b820a83, 0x82550827,
0x81f2ffff, 0x20228206, 0x211e83ff, 0x1884f4a8, 0x70820820, 0x825a9721, 0xde8f2704, 0xe5ffff05, 0x04829819, 0xffb81e2b, 0x0100d2ff, 0x071300ff,
0x229f82ae, 0x82200526, 0x20c3826e, 0x220c8207, 0x43bac90b, 0x00230586, 0x82c08a09, 0x33332136, 0xf420ac83, 0x16850682, 0x4020c882, 0xf422b182,
0x59824636, 0x3382c382, 0x5082c483, 0x853d0a21, 0xe5ff21c8, 0xc8835f82, 0xf4222082, 0xc3823d8a, 0x82146e21, 0xaaf7227a, 0x87af827f, 0x000023a4,
0x9f828400, 0x82f6a821, 0x7eaa2104, 0xf7222982, 0x0a8402ab, 0xff23e285, 0x82787ef2, 0xf154212d, 0xab211382, 0x229d8284, 0x82636e0b, 0x6891238c,
0x5982ff05, 0xc3834820, 0xec22a682, 0x778346f6, 0xffff3e25, 0x41edfcd9, 0xf4220953, 0x45820436, 0x8250f821, 0x817521b0, 0xb083b584, 0x2305b356,
0xffc335f4, 0x7f20d982, 0x75211682, 0x219a82c2, 0x3782fcc9, 0x2606bf41, 0x8b900226, 0x831300ff, 0x83d220c7, 0x82c78304, 0x82ba20cc, 0x91f4229d,
0x207e83ec, 0x87c783ea, 0x000024a8, 0x86ff0601, 0x125521a8, 0x0431a887, 0xffff022b, 0xfffed4fb, 0xf8730500, 0xebfdffff, 0x21098286, 0x65838175,
0x06820520, 0x76250c82, 0x0200ff04, 0x24208214, 0xfff62804, 0x832f8200, 0x8a6f21de, 0x77218c82, 0x84de86d0, 0x2d0025e3, 0xffffc3f5, 0xbd82e382,
0xecfcd922, 0x24066e41, 0x070000ff, 0x218b82ae, 0x6a424821, 0xf6ff2305, 0x3a820080, 0x2005a263, 0x8206820b, 0xae872116, 0x8b210482, 0x22cc8202,
0x4178c90b, 0xdf8209da, 0x5484ff20, 0x3c21e382, 0x216382ff, 0xde85ff46, 0x6e0b0023, 0x21528214, 0x7e82ec91, 0x7421bf8a, 0x20bf83fe, 0x21b28202,
0xbf847a74, 0x0c830682, 0xbf837c20, 0xba837a20, 0xbf878420, 0x2005a042, 0x22d48254, 0x42420000, 0xab2607a0, 0x0800ff0e, 0xb8820c57, 0xf289f422,
0x6622a382, 0x708205e8, 0x82343321, 0x68e6227a, 0x228a829e, 0x82b1ffff, 0x45ff2157, 0x1523c183, 0x1815cd4c, 0x200e9565, 0x20c082cc, 0x05334811,
0xa9181120, 0x6b182994, 0xae180982, 0xdb210cab, 0x225e826b, 0x823333f7, 0xccf8231e, 0x5c18ffcd, 0x65820a07, 0x11860820, 0xb4821684, 0x82054d41,
0x781b8215, 0xcd20067f, 0x85063478, 0xe4731806, 0xffcd2208, 0x245483ff, 0xfb14f808, 0x08d16214, 0x2107ae7d, 0xc271ff54, 0x28142305, 0x3f7bfff4,
0x20638219, 0x0eb1740a, 0x240c1074, 0x000000ff, 0x081474c4, 0xa85f0820, 0x748c2009, 0xd8220814, 0x1474ffce, 0x06355f12, 0x073e6618, 0x7a5ff283,
0x64068506, 0xff2105b4, 0x84ed82f8, 0x099260c5, 0x1474c082, 0x0ebf7c08, 0x778c6c21, 0xa48a077c, 0x8748e121, 0x00c021a4, 0xc020a982, 0x1e83a483,
0xc0f9ff22, 0xff2c5482, 0xffff3cff, 0xffb0def5, 0xf83f0600, 0x00201e83, 0x260dc363, 0xff322714, 0x5ae0ebff, 0xdd2107e9, 0x23438280, 0x8b0080e3,
0xf3213a82, 0x05847de6, 0x748bf021, 0x90263118, 0x0e00ff8b, 0xc886ae47, 0x200c1874, 0x21ef828c, 0xd8748c6c, 0x05277f06, 0xc883a485, 0x5d64a48a,
0x18042c09, 0xfeffffd4, 0x00ff1a6f, 0x82181904, 0x82068499, 0x8217200c, 0x8f0127ca, 0x0300ffe0, 0x04823c1f, 0x86402021, 0x080029da, 0xff057493,
0x841f1400, 0x27210482, 0x131c742c, 0x0766e622, 0x7418dc74, 0x5020241c, 0x0023df85, 0x18f82814, 0x8b120d40, 0x15d874bb, 0xffd01725, 0x828f0100,
0x200322d2, 0x20bb8340, 0x7dbb8200, 0x002b09d4, 0x00ffc400, 0xff48210a, 0x85c0f9ff, 0x0e4a7718, 0x82ccd821, 0xbe1f21da, 0x4c208482, 0x22204882,
0x210bbd7d, 0x4a779819, 0x82cc2020, 0x2707223d, 0x058942f0, 0x24fb0823, 0x806f186b, 0x2f0e255c, 0x4cb501ff, 0xd0227282, 0x68829a19, 0x34b3ca28,
0xe64f00ff, 0xf65d0566, 0x138b5f05, 0xff066b27, 0x0040fbff, 0x0805828b, 0xff006026, 0x1098feff, 0x10fcffff, 0xfdffffa4, 0x72080060, 0x57efffff,
0xffff050a, 0xff52f8dc, 0xba9ee8ff, 0xc0d2ffff, 0xdc272b83, 0x00ff48e1, 0x82466117, 0x10002321, 0x2182f6a8, 0x281cfc26, 0xa00200ff, 0xfb274282,
0x00ff6766, 0x82f06701, 0x33332351, 0x6083088b, 0x9418ee20, 0xff210880, 0x08696cf1, 0x0714fb26, 0xc0caffff, 0xb0223182, 0x41829a19, 0x71fdf826,
0x80f5ffff, 0xfc260f82, 0xffff8f42, 0x014ab3f3, 0xff082606, 0x666633ff, 0x052c5e07, 0x09899118, 0x1100ff2b, 0x088b85ab, 0xf70634f7, 0x2d1c8274,
0x62700300, 0x8e0000ff, 0x0300ff01, 0x8082806a, 0x829b1621, 0xd6432c09, 0x0d00ff08, 0x00ff717d, 0x82e17a28, 0x11c72963, 0xaa00ff26, 0xa2050bd7,
0x21206082, 0x192dc382, 0xffffcd4c, 0xff142ef9, 0x00801900, 0x832c828b, 0x260c8206, 0x00ff3e4a, 0x82f2d206, 0x1e0526e4, 0xdd0c00ff, 0x2c8582b2,
0xffa430b6, 0x5c8f22ff, 0x0774fb05, 0xc26318f7, 0x00ff2418, 0x839a99cc, 0xb30c2790, 0xfcffff32, 0x3e82cc4c, 0x84ce4c32, 0x800a00ff, 0xc6fb0800,
0x997cffff, 0x5b5b159a, 0xfc228c82, 0x2082d7e3, 0x29066a49, 0x66feffff, 0xfbffff66, 0x8582f6e8, 0x0c820684, 0x67e9e621, 0x8e4411bc, 0xf0411807,
0x00302312, 0x8179bb00, 0x2172820a, 0x26824821, 0x713d0622, 0x22078d44, 0x84703d06, 0x00ff290a, 0xffce0c00, 0x8ed7f5ff, 0xb3210e82, 0x21048233,
0xfc82cecc, 0xffffff24, 0x9383155b, 0x98916820, 0x5805d259, 0xe921064c, 0x20988f7a, 0x2079825b, 0x189b9aff, 0x8614ea41, 0xbb08228d, 0x21b6835b,
0x87823e4a, 0x8bc2ca22, 0xcc219782, 0x7e0a82cc, 0xce2105cf, 0xd4021008, 0xff3a9f01, 0x34338afe, 0x66dfffff, 0xffff1566, 0xff1058fb, 0x20b00400,
0x0700ff8b, 0x0a823c9f, 0x82f0a721, 0xa4b02204, 0x20058308, 0x22048621, 0x823b9f07, 0xb004221f, 0x212f82a4, 0x1a82df4f, 0x00800f2a, 0x80f0ffff,
0x00ff0500, 0x04830a83, 0x04210a82, 0x203098b0, 0x29568204, 0xe04ffbff, 0xf8ffff8b, 0x7685c460, 0x5c210f82, 0x8b468408, 0x9a56864b, 0xb3fd2630,
0xfdffff33, 0x29c282b3, 0xff66e6fc, 0xccccfeff, 0x0982ffff, 0x4b828b20, 0x0c820683, 0xffaaf126, 0xf0270100, 0xa7262582, 0x0200ffef, 0x66861058,
0x6183a785, 0xff237186, 0x91f6a8fd, 0xa4f0214b, 0x06824b84, 0xe7214b82, 0x414b916c, 0x0e411a34, 0x85668409, 0x20002b71, 0xffff0080, 0x15008048,
0xbd18ffff, 0x002a09a8, 0x8bf6e811, 0x171600ff, 0x0685080a, 0x1183ff20, 0x15820486, 0x1c838482, 0x28821b82, 0xeeffff25, 0x828b9a19, 0x66e6213e,
0xff212d82, 0x22f983e9, 0x849919ee, 0x82158416, 0x0701282d, 0x00ff3433, 0x82343378, 0x83cf2066, 0xccff3671, 0xffff05cc, 0x8b6666fb, 0x00ff8e88,
0xff66e600, 0x34b30300, 0x270a8208, 0x00ff3e37, 0x05ae8730, 0x24250a82, 0x0e00fffe, 0x271a8266, 0xffb0620c, 0x7b940b00, 0xae260e82, 0xfeffff14,
0x2982a5b0, 0x3eca0c22, 0xd62c0a82, 0x0900ff88, 0xffff0a57, 0xffc08af4, 0x1e827382, 0x3233f323, 0x260a8208, 0xffffbef1, 0x828cecfa, 0x11052248,
0x214d82aa, 0x0a827e0e, 0x7ad40c22, 0x09210a82, 0x2a4e8202, 0xfffff668, 0xff98b0f6, 0x82280100, 0x31f32209, 0x215382ec, 0x49824d01, 0xc251f122,
0xa5834e82, 0x9899f323, 0x05f861ff, 0x68e6ff2b, 0xffaf0e08, 0x34b3d201, 0x27c382eb, 0xffcc4c6d, 0x33b39200, 0x9625c382, 0xffff9a99, 0x200a8496,
0x833384f3, 0xcceb2504, 0xffff8bcc, 0x00230f83, 0x8200800c, 0xf85f248d, 0x8234f7d5, 0x81f3232d, 0x1283ff06, 0x00ff8b25, 0x82343314, 0xfa7e210a,
0x7b820f84, 0x7d7f0c22, 0x85210a82, 0x2119821e, 0x79648f42, 0xe27a2108, 0x88251a82, 0xffff5278, 0x21638376, 0x79836a00, 0xcd4c6922, 0x271daa64,
0xff6666a9, 0x32b356ff, 0x53202582, 0x25054346, 0xffcdcc10, 0x3c830e00, 0x33330f22, 0x82053e65, 0xb3112158, 0x08659a18, 0xcdccf022, 0xef22b282,
0xad833333, 0x079a1922, 0x16987718, 0x0634fb22, 0x23055565, 0xb3f1ffff, 0x5282c082, 0x860a744c, 0xb5421811, 0x00ff220b, 0x27648252, 0xf8af0e05,
0x15b4f714, 0xf7203bad, 0x00206c82, 0x4318a38a, 0xa0960c8e, 0x86836196, 0xff073326, 0x9a9956ff, 0xae410482, 0x8395201f, 0x4c692dc8, 0xffff05ce,
0xffae8777, 0x32b376ff, 0xdf410a82, 0x71bd210a, 0xf3227e82, 0xbc418380, 0x41ff2006, 0xa0241ad7, 0x34f72b07, 0x251dae41, 0xff666669, 0x638396ff,
0x83920021, 0x99932279, 0x306e829a, 0xffcc4cad, 0x9a19ffff, 0xf82f0e05, 0x4b15eb14, 0x06b84807, 0x18f1ff21, 0x210dc19a, 0x827594fb, 0x0a58780c,
0x3282cb20, 0xab490020, 0x0eb87506, 0x84144849, 0x2d836a62, 0x8620628b, 0x18081b76, 0x21104068, 0xae4134b3, 0xff082305, 0xec8249ff, 0xa0560128,
0x14fb1500, 0xe68214fb, 0x707df324, 0x0483ffff, 0x0500002d, 0xebffff1f, 0x00ff00c0, 0x82717d0c, 0x90822113, 0x250a7567, 0x401400ff, 0xa0678b00,
0x271a8209, 0xff9a5949, 0x34534900, 0x2d224482, 0xeb82cc4c, 0x4feeff23, 0x8283825c, 0xf1ff2304, 0x9418a4b0, 0x4f21145a, 0x2243825c, 0x82a4b011,
0xb3d2233e, 0x3f820734, 0xff486126, 0xb89eb6ff, 0x4306a141, 0x6a9005b4, 0x82071668, 0x431b823c, 0xfb220ada, 0xc484f714, 0x82527821, 0x148e219a,
0xfa43bf82, 0x2e4a8308, 0xff2f0e08, 0xcc4c4501, 0xff1574f7, 0x42b35a00, 0x332410cf, 0xeeffff8b, 0x22058f59, 0x18cc4cee, 0x27103284, 0x00ff064b,
0x6bcc4c0d, 0x32209c82, 0x53413c91, 0x16094307, 0x3c827320, 0x00801527, 0x4cccffff, 0x214082cc, 0x5f82cc06, 0x34b3ef2a, 0x4cf8ffff, 0xedffffce,
0xef286e83, 0xffff32b3, 0x083433f9, 0xcc208582, 0x0a821482, 0x8d180982, 0x0e83089b, 0x4c100023, 0x251e82ce, 0xff3433e0, 0x48834c00, 0x993aff2f,
0xffff0699, 0xff703de0, 0x34b3b3ff, 0x22408305, 0x84ffff33, 0x45ed224a, 0x245e861f, 0xff14aeef, 0x20728200, 0x21198208, 0x0a84a4b0, 0x47241982,
0x1200ffae, 0x19828282, 0x82ffcd21, 0x08cc2959, 0x8a1500ff, 0x3300ff3e, 0xaf824882, 0x9642ff20, 0x44002009, 0x54211259, 0x0759447b, 0x8b85ab22,
0x32223a82, 0xe38285ab, 0x7b540d25, 0x434b05ab, 0x4c200e03, 0x690b0b51, 0x3c840524, 0x11207682, 0x5a223c85, 0x3c8233b3, 0x82cc4721, 0x4fac2d11,
0x00ff055c, 0xff66e604, 0x86eb0b00, 0xa2830482, 0x1ec50727, 0xe60c00ff, 0x83688366, 0x23168506, 0xe23af8ff, 0xff232a85, 0x827a14f4, 0x47200883,
0xffffcccc, 0x05a4b053, 0xb3baffff, 0xff158b34, 0x9a19dfff, 0xcc4c00ff, 0xff6b05cc, 0x3433b3ff, 0x40295982, 0xff0666e6, 0xcd4ca5ff, 0x231e824b,
0x6bcdccf1, 0x90201382, 0xf2231384, 0x82ab34b3, 0x998a3039, 0xfb0e0699, 0xf844f770, 0x076b1534, 0x823d00ff, 0x00ff2276, 0x21488232, 0x0a83cdff,
0x19c2ff28, 0xff8b089a, 0xad82e7ff, 0x4cf8ff22, 0xe9287182, 0xff7e9999, 0x34b3edff, 0x1f2a8282, 0xffff9a99, 0xff3233ec, 0x31831500, 0xceccdc22,
0xd7202a82, 0x82058e47, 0x83ff2038, 0x82048643, 0x088b240e, 0x456b066b, 0xf4510ade, 0xffff210c, 0x410b576a, 0xab260844, 0xb9ffff07, 0xc48271bd,
0x33f3e822, 0xed255c82, 0x00ff5c4f, 0x26ee8212, 0x01ff08a2, 0x8232b330, 0x1400284e, 0x00ffaec7, 0x86ecd110, 0xc0142304, 0x9b828b00, 0x156e4a24,
0x8644ab06, 0x0dbf1807, 0x3484180f, 0x0acf4d0b, 0x4b078b30, 0x065b152b, 0x06bb072b, 0x04f707eb, 0x6118155b, 0x2b221642, 0xcd6dff07, 0x0080210c,
0x08242885, 0x04fb04fb, 0xeb224088, 0x2696152b, 0x6b205696, 0xab277982, 0x70fb0e06, 0x8334f8bb, 0x1811207a, 0x2229cd9f, 0xb0ab076b, 0x076b2ced,
0xfeffff8b, 0xffffc275, 0x8266e6ff, 0xe27a2109, 0xcc210982, 0x2f0982cd, 0xff081e85, 0x67662e00, 0x54f2ffff, 0x2100ff7c, 0xd5221e83, 0x2e82281c,
0x0e42cd20, 0x300c424c, 0x210c4042, 0xb64485ab, 0xeda21806, 0x0c404212, 0x4042f920, 0x6e0a2934, 0x07ab0615, 0x54fb14f7, 0x2b2ec641, 0x2b0604fb,
0x0604f707, 0x154b04fb, 0x24210882, 0x2d054206, 0x0624fb38, 0xff30fb0e, 0x34337d01, 0x331301ff, 0xffff1534, 0xff66e6fb, 0x04820700, 0xccf7ff23,
0x060444cc, 0x9a19f729, 0xffff088b, 0x82666663, 0xd7322d5f, 0x7f00ff0a, 0xff059a19, 0x10f80200, 0x602b2b82, 0xffffff00, 0x00ffd017, 0x82ae6708,
0x3088263f, 0x990600ff, 0x202f829a, 0x3d0a85fb, 0xf7ffff98, 0x00ffeabb, 0xff86eb03, 0x66e6f8ff, 0x44fb088b, 0xf3ffff06, 0xff8b52f8, 0x4d82f5ff,
0x18f7ff32, 0xfeffff10, 0xfffff668, 0x08e610f4, 0x0584fb6b, 0x0f265182, 0xf9ffffe6, 0x6582d623, 0x820a1821, 0x9a192109, 0x8f278c82, 0xfaffffdf,
0x8808cecc, 0x23a1820a, 0x880a9706, 0xe8217182, 0x23a282f6, 0xcd4c9200, 0xd6275a82, 0xffff5238, 0x8266e63d, 0x98fd2146, 0xf4265a82, 0x00ffaec7,
0xa782e005, 0xf6a8f427, 0x870a00ff, 0x21a782f0, 0x46825278, 0x7b140327, 0xcafdffff, 0x219d823e, 0x74823333, 0xfc826620, 0x33330322, 0x07234a83,
0x828b10b8, 0x428021dd, 0xc0211b82, 0x21718200, 0x66820a97, 0x08a4b026, 0xc4f764f7, 0x0422fc82, 0x1e8270fd, 0xff285c25, 0x82990000, 0x8009219b,
0xfb225e82, 0x1382cecc, 0x0868e629, 0xf764f80e, 0x823315f4, 0x9ef3278b, 0x2000ffb8, 0x8b8248e1, 0xe2faf832, 0xbd1200ff, 0xeeffff70, 0x00ff3233,
0x7748610c, 0xff296882, 0x06008082, 0xff798b77, 0x262a82ff, 0xedffff84, 0x82089042, 0x34b3270b, 0x1edfffff, 0x438305b8, 0x240b9f71, 0xff8b0080,
0x221082ff, 0x6bb4fb08, 0x0020073a, 0x0e146818, 0x4234f821, 0xf7201706, 0x00213383, 0x20aa831a, 0x850482ea, 0x834c8238, 0xe6942b86, 0xf1feff66,
0xff153433, 0x1b82e7ff, 0xb3e0ff28, 0xdbffff32, 0xad82ce4c, 0xff9a1926, 0xcc4cd8ff, 0xe0222583, 0x7f825238, 0xf668e231, 0xf00b00ff, 0xe8ffffa4,
0x00ff3dca, 0x8284ab14, 0xb8ec27b2, 0xecffff52, 0xe982c2b5, 0x5c0ff732, 0x14f7ffff, 0xf0ffff7c, 0x00ffcdcc, 0x8bce4c06, 0x9927ef82, 0x00ff0898,
0x8268664c, 0x050028b7, 0x00fff873, 0x82e75b04, 0x90622b04, 0x6a0500ff, 0x0000ff7f, 0x2083e826, 0x82e2fa21, 0x590c21be, 0xff227382, 0x3c8282b2,
0xffb81e26, 0x6008f1ff, 0x2f215082, 0x2104821b, 0x6b83142e, 0x82e1ba21, 0x52b82f6b, 0x0e00ff05, 0xffff3729, 0xffae47f4, 0x6b821100, 0x66f9ff26,
0x1200ff66, 0x2205d146, 0x82cccc18, 0xfa162277, 0x24ac82e2, 0x00ff5238, 0x23cd820f, 0x5c8f1300, 0x08216582, 0x2204822c, 0x82a4700a, 0x82132014,
0xd7012289, 0x0686640a, 0x52d8f722, 0xff201986, 0xff240a82, 0xd6e30100, 0xf32bc582, 0xf7ffff34, 0xffffcccc, 0x820080f5, 0x191b2d1e, 0x6b00ff9a,
0x8b159819, 0x8cfaffff, 0xfb278f82, 0xffff18a4, 0x82709dfb, 0x8295310e, 0xd9ffffff, 0xffff0818, 0x061e05b3, 0xa6f3ffff, 0x00279082, 0xffff7e4d,
0x8248e1f9, 0xa1f726ae, 0xd00800ff, 0x210482e6, 0x4a82ebd1, 0x1e451328, 0x471300ff, 0xe48205ae, 0x82cad621, 0x52b821a8, 0x25061f42, 0xff9a9906,
0x7a43edff, 0x33e72205, 0x226a8233, 0x821f05e9, 0xaec721ea, 0xb3219082, 0x22ff8233, 0x8208a470, 0x23558296, 0x7b94f5ff, 0xe6261482, 0xfeffff66,
0xa5849919, 0x33215f82, 0x201e8234, 0x214582f5, 0x14830800, 0x00211983, 0x22b9830f, 0x82343308, 0x2ac984ed, 0xff008018, 0xcd4c1f00, 0x822400ff,
0x11002152, 0x00244282, 0x8b33b327, 0x1f289982, 0xff8baec7, 0x0a971d00, 0x0f2b7382, 0x1700ff5c, 0xffffc435, 0x827b54eb, 0x82af821a, 0x3d4a22b4,
0x21658205, 0x0482a2f0, 0xff86eb24, 0x55820f00, 0x54f9ff21, 0x66210587, 0x317a8268, 0x079899b3, 0xf770fb0e, 0x7d01ff74, 0xff150a57, 0x5d821e00,
0xd1faff2e, 0x1c00ffec, 0xffffce4c, 0xa33273f3, 0xfd21e182, 0x22518272, 0x8232330e, 0x666625b6, 0xcc0200ff, 0xeb201a82, 0xf5202983, 0xff230e82,
0x8266e6f1, 0x82f4204a, 0xf1ff21a6, 0xec251983, 0xffffcccc, 0x822d83fd, 0x21c58219, 0x1e829a99, 0x1982f220, 0x83090021, 0x82f02033, 0x0700261e,
0xffff6866, 0x22f883ef, 0x82cc4c04, 0xe608261e, 0x00ff0766, 0x214e8210, 0x04830300, 0xa9820f20, 0x00212484, 0x8348820d, 0x21818338, 0x4e849a19,
0x1e82d882, 0x00216284, 0x8276860b, 0x820a201e, 0x868c834e, 0x8486847c, 0x269a8290, 0xff797308, 0x82b3e3ff, 0x82f320c1, 0xe1ff215e, 0xff234982,
0x8268e6fa, 0x4cdd2179, 0x2005b24b, 0x21b4824c, 0x8548b3f1, 0x00ff2d23, 0x0734b322, 0x30a5ffff, 0x0f00ffa4, 0xff2b9e82, 0xda5ccfba, 0x5f00ff8b,
0x85089a19, 0x00ff2206, 0x271c8345, 0xff8e024f, 0x5ccf5a00, 0x3d212682, 0x22a18272, 0x4866a622, 0xff352e83, 0x0a57ddff, 0xffff4b07, 0x15f6a8be,
0xccc8ffff, 0xf1ffffcd, 0x21aa82cc, 0xaa8233d7, 0xcecccd28, 0xc5ffff8b, 0x7682cc4c, 0x80c3ff26, 0x2800ff00, 0x16822083, 0x3700ff22, 0xf2222083,
0x768232b3, 0x9a19f728, 0xf8ab0e07, 0x62561534, 0x08725605, 0x07107018, 0x82e4fb21, 0xf7ff2395, 0x82783433, 0xffcc2a08, 0x0ad70800, 0x24f8088b,
0x0de37406, 0x4b08404d, 0xfc2016ec, 0xff233082, 0x82ebd1d3, 0x2edc2f1e, 0x2300ff14, 0xff8bcccc, 0x34332c00, 0x6483f708, 0x0f5c0020, 0x06544713,
0x0b8ccc18, 0x8433b321, 0x08cd225f, 0x2e14484b, 0x2105074e, 0xe38233b3, 0x86cd4c21, 0x24588304, 0x2b14f708, 0x4ab39615, 0xf721166c, 0x01531834,
0x850e2008, 0x4acc204b, 0xb0500528, 0x0c0c500d, 0x14f7cb22, 0x880e1476, 0x502b20c9, 0x295017ca, 0x85eb2016, 0x82c9847d, 0x23828478, 0x8b34b311,
0xfb21c982, 0x20ca9b14, 0x51e682cc, 0x50580e13, 0x057b4105, 0x4c834c20, 0x517c5421, 0x7718137b, 0xfb2109cb, 0x9b304274, 0x822beb21, 0x110021ff,
0x2005e551, 0x08e551cd, 0x088b3323, 0x2eae42eb, 0x41062b21, 0x742117fc, 0x17c8414b, 0x32848b20, 0x2008234f, 0x05bf4133, 0x14fb0822, 0xcd224b8f,
0xa482ff8b, 0x85083321, 0x12914206, 0xc8820620, 0x202d5e43, 0x2ef5524b, 0x0e06cb29, 0x194601ff, 0x82b4f79a, 0x667f24cd, 0x8200ff66, 0xff052a04,
0x3433feff, 0x350000ff, 0x200983c2, 0x21098232, 0x0982d863, 0x2305c746, 0x06a4f0a9, 0x29051251, 0xf6285c00, 0x8b34fb06, 0x5c50f715, 0xcca32205,
0x321988cc, 0xff063433, 0x9a994b01, 0xcf6700ff, 0xffff155c, 0x82323398, 0xa4302a04, 0x7600ff05, 0xcb069a19, 0x2df48207, 0xff48210f, 0x0080faff,
0xb80d00ff, 0x5f44ff52, 0xf50a2605, 0xfeff08c2, 0x22898394, 0x82a43018, 0xe6b92238, 0x18d38266, 0x7c0b004e, 0x4b2e0805, 0x0600ff07, 0xff06df0f,
0xbb098000, 0xb68214f7, 0x66e67925, 0x7b1514fc, 0xff2005f2, 0x2105467c, 0x838259e3, 0x33822320, 0x14f80822, 0x3017eb7b, 0xfc0774f7, 0x74fb0694,
0x94f80e07, 0xb39100ff, 0x20428434, 0x26fd82b5, 0xff9002e3, 0x8261e3ff, 0xb5dc29a7, 0xff088bc2, 0x142ed9ff, 0xce325e82, 0x00ffba1e, 0xff00c016,
0xcc4cdeff, 0x2b1200ff, 0x05840886, 0x16270f86, 0xfffffebf, 0x824821ce, 0x82d92029, 0x8206821a, 0x2147823d, 0x4c87d863, 0x8332b321, 0xe6ed224c,
0x311b8266, 0xff66a6ef, 0x1e850700, 0x5cf4ffff, 0x0c00ff2a, 0x67822a1c, 0xff2b0a83, 0xff84abf3, 0x6666efff, 0x82f8ffff, 0xedff2366, 0x358333b3,
0xc3b5dc22, 0xe3223582, 0xe1824761, 0x8b70fd28, 0x4a2300ff, 0x0682083e, 0xecd12622, 0x00239485, 0x8346e131, 0xff85258e, 0x34b32100, 0xde274c82,
0xffffcd4c, 0x837ad4ed, 0xff472594, 0x0240e9ff, 0x2b21c882, 0x204c8585, 0x204c84c2, 0x214c8248, 0x4582289c, 0x266f2320, 0x19122205, 0x2494839a,
0x1000ff1f, 0x27098259, 0xff291c0c, 0xd6a30b00, 0xf3224c82, 0x0a8461a5, 0x52219482, 0x211e82f2, 0x35829a99, 0xcd4c1222, 0x23228283, 0x47823d4a,
0x8271fd21, 0xba9e2104, 0x63829884, 0x98820020, 0x31222282, 0x7a8348e1, 0x94830020, 0x8e843320, 0xed204c82, 0x2222b383, 0x1982289c, 0xbccd4c22,
0x4885c485, 0x43823e20, 0x74829c20, 0xb89e1c22, 0x4c214882, 0x824883cd, 0x22228294, 0x82995910, 0xe27a227b, 0x249082ff, 0xf3ffffd7, 0x269582e3,
0x99990b00, 0x830c00ff, 0xb30f2290, 0x26b98234, 0x00ff0ead, 0x83323313, 0x4a232235, 0x8335823e, 0xe3ff2347, 0x8c419002, 0x23638205, 0x142ed9ff,
0xff239085, 0x84ba1ece, 0xffff2590, 0x08cc4cde, 0x4282a083, 0x842b1226, 0xde3100ff, 0x16217d82, 0x22b482c0, 0x8f7ad426, 0xd863214c, 0xb3214c83,
0x224c8333, 0x8566e6ed, 0xefff2394, 0x948467a6, 0xf4ffff24, 0x4c82295c, 0x7c540c22, 0x94820a84, 0xff239982, 0x82cc4cf0, 0xccec2835, 0xf70e08ce,
0x821563d4, 0x80f6260b, 0xfaffff00, 0x203f8266, 0x080488f7, 0x3433fc25, 0xf7ffff08, 0xffffce4c, 0x809a19fc, 0x990100ff, 0xf9ffff98, 0x00ffcccc,
0x08686606, 0x8605d33b, 0x830400ff, 0x19fd2238, 0x2113829a, 0xe2820080, 0xcccc0622, 0x00208a82, 0xff220682, 0x8f820200, 0x80060024, 0x26849000,
0xd3db0823, 0x20258205, 0x82d68233, 0x8596203e, 0x0800234e, 0x5e8432b3, 0x0822a482, 0x0a829a99, 0x05201f83, 0x88820983, 0x08259885, 0x069b0763,
0x5a5c18ff, 0x00ff2915, 0x0734b3a6, 0xb3e3ffff, 0x0d215682, 0x214b8233, 0x9f824cec, 0xce4c1b22, 0x20208b82, 0x2c208b85, 0x8206e347, 0xecd12742,
0x332c00ff, 0x6d828b34, 0x0c720683, 0x72698209, 0xdf200623, 0xff208082, 0xff214483, 0x839a83e4, 0xf2ff2758, 0xff08cecc, 0x844959ff, 0x82b92005,
0xc6ff2160, 0x04856f82, 0x8b2d0e82, 0x63067b08, 0xff1cf707, 0x66e69801, 0x25788215, 0xff2a5c0c, 0x2782f5ff, 0xa30b0027, 0xf2ffffd6, 0x847183b3,
0x23168506, 0x2a5cf4ff, 0xf3237182, 0x8208d6a3, 0xd9f12506, 0x0a00ff9a, 0xf6275083, 0x00ff6626, 0x83cc4c0d, 0x8506839f, 0x09002316, 0x54829ad9,
0x66260e2a, 0xff9cfb08, 0x9a193700, 0x09266383, 0x00ffe27a, 0x3a829905, 0x8696082c, 0x990800ff, 0x0300ff99, 0xd98224db, 0x33b30822, 0x22200a83,
0x19293d82, 0xfeffff9a, 0x00ff1e66, 0x30098307, 0x08fca8f9, 0xb8ffffdb, 0x90054200, 0x73fbffff, 0x05a24134, 0x82f9ff23, 0x2086828e, 0x05c366f9,
0xff220682, 0x2e84fdff, 0x86008022, 0x802d2682, 0x433b0800, 0xf8ffff05, 0xffff66e6, 0x216682f9, 0x0983f5ff, 0x8266fe21, 0x4cf7220e, 0x276a82cd,
0xff0867e6, 0x6766f7ff, 0xcc240a82, 0xfaffffcc, 0x8f821982, 0x0920b383, 0xb3233c82, 0x76067b07, 0xff200bbc, 0x093d5318, 0x22055341, 0x821c00ff,
0xf3ff2246, 0x208f82b3, 0x23bb8213, 0xcccce3ff, 0xdf208f82, 0xd3208f85, 0xdc225283, 0x97183333, 0xbd490e5a, 0x05f24113, 0x1300ff24, 0x538200c0,
0x4e823320, 0x82401c21, 0x4c0c2309, 0x274208cc, 0x20208205, 0x20658346, 0x336f8239, 0xcc4c3900, 0xb34600ff, 0x9b088b33, 0xfb07b306, 0x152cfc1c,
0xf2207582, 0x0a201f83, 0xbf414082, 0x10a76d05, 0xb30a0023, 0x20468234, 0x8553820d, 0x086a1806, 0x20378207, 0x8e6b18ff, 0x834c2012, 0x265482ca,
0xf72f0e08, 0x8304f834, 0x22d88262, 0x82ecffff, 0x07614282, 0x6142db82, 0x42d92005, 0xee200561, 0x00211b82, 0x2504820e, 0x33b3f1ff, 0x1a4a00ff,
0x0d0e5705, 0xb2471e83, 0x20da8205, 0x68024326, 0x562aa084, 0x8b566060, 0xff065b08, 0xaf82b9ff, 0x1c00ff25, 0x41ffcc4c, 0x342107bd, 0x14bd41ff,
0xdc211682, 0x25048233, 0x8bccccd3, 0x9918ff08, 0xbd411518, 0x20f38308, 0x822d821c, 0xffcd2258, 0x05bd4100, 0xe2824620, 0xca2b7183, 0xff8be1fa,
0x1e05d5ff, 0x89c08bb6, 0x00c023f9, 0xfc4300ff, 0x82402005, 0x12fc4309, 0x3776d120, 0x00ff2405, 0x43152e2c, 0x332005fc, 0x23226e82, 0x2076cdcc,
0x3b07220c, 0x2c691873, 0x00c0210e, 0x13956b18, 0x297a6d18, 0xff219882, 0x279383f5, 0x8b00400d, 0x8bb4f708, 0x4c205f83, 0x095b9d18, 0x6f185f91,
0xf2220fcc, 0xf08234b3, 0x1682f520, 0x13287018, 0x4234b321, 0x0d20067e, 0x08265482, 0xc4fb24fb, 0x9d18ff15, 0x7e420dee, 0x08da4207, 0x0dec9d18,
0x0d00ff24, 0xe382cd4c, 0x16820a20, 0x2113da42, 0x8344cd4c, 0x2b548405, 0x01ff0e08, 0xffcccc31, 0x8cecbd01, 0xaf45c882, 0xdc242105, 0x23058644,
0x7a69f7ff, 0xf6226482, 0xaf451e85, 0x83462006, 0x390021b9, 0x82062d45, 0x4cb9221a, 0x064545cc, 0x83353342, 0x33dc22ca, 0x0baf4d34, 0x82093342,
0x06334216, 0x3342cc20, 0xb3a62207, 0x12541834, 0x067b2217, 0x201a8263, 0x20f546ff, 0xff809926, 0x9a990100, 0x2008f546, 0x28f54667, 0x90727d2e,
0x8c0400ff, 0xffdb08cc, 0xbeff4700, 0x2208f946, 0x83961257, 0xff922152, 0x2b06f946, 0xff08de24, 0x42000000, 0x7e00ff07, 0xfe23db82, 0x4274133a,
0x6f440e23, 0x824c2011, 0xb30a22e2, 0x13584634, 0x6f44f520, 0x09f04108, 0x16822882, 0x26065846, 0x00ffd4fb, 0x82cc4c61, 0x63744563, 0x6866cd26,
0xe3ffff07, 0x20269f43, 0x159f43d2, 0x9c472e20, 0xffcd2110, 0x2f103a45, 0x07989932, 0x2e01ff6b, 0xff1534b3, 0x00c0f2ff, 0xf5213382, 0x5d731840,
0x18448243, 0x220a6b71, 0x8ef4fb8b, 0x1170415f, 0x353b3c46, 0xff70fb0e, 0x9a99d800, 0x707e01ff, 0x00ff15a4, 0xffcccc09, 0x5182feff, 0x80090022,
0xfe22cd82, 0x13829002, 0xffcd4c3c, 0x0a57fdff, 0x0a00ff08, 0x00ff67e6, 0x0552382f, 0x190500ff, 0x1100ff9a, 0x0482a225, 0x82666621, 0x8a6c2119,
0x33260982, 0xfbffff32, 0x2982bcb6, 0x1e821120, 0x94200a82, 0x1e821982, 0x9feeff23, 0x2a19823c, 0xffff34b3, 0x0828dcee, 0x83f0ffff, 0xc2c32c1e,
0xff8d0590, 0x3433ffff, 0x830100ff, 0x33ff2310, 0x0f848c32, 0x2a215953, 0xff66e6f9, 0x68e6f7ff, 0x83f6ffff, 0x99fb2509, 0xf5ffff98, 0x00235f82,
0x829a9900, 0xb3ca275f, 0x26ffff33, 0xa8826666, 0xbe820c20, 0x66040026, 0x0b00ff68, 0x00218982, 0x28a38206, 0xcc4c0a00, 0xb30700ff, 0x3e3f5334,
0xe6ffff22, 0xff214882, 0x297782ec, 0xcd4ce1ff, 0xdeffff7e, 0xe7829999, 0xf5288284, 0xffff9a99, 0x050080d6, 0xcc211082, 0x83f882cd, 0x83ee20a7,
0x2019841f, 0x201382ee, 0x05e75300, 0x67e6ee27, 0x330400ff, 0x82c18234, 0x1100211e, 0x8205f053, 0x33112913, 0xff930832, 0x68661c00, 0xf6234482,
0x828dcc4c, 0x236b82ed, 0x32b30200, 0xff220982, 0x3c7fffff, 0x83f22006, 0xcccb225a, 0x216a8dce, 0x50837a94, 0xee228482, 0x5f8229dc, 0x08cc4c22,
0xd9218482, 0x226a879a, 0x85ff7b94, 0x4a04226a, 0x8209823e, 0x2405826a, 0x00ffa4b0, 0x21488446, 0x0a8230d7, 0x82332321, 0x28e62b68, 0x3400fff6,
0xff8b9a19, 0xcc533a00, 0x825b2005, 0x400036da, 0x00ff0a17, 0xffcc8c4c, 0x5ccf5500, 0x351300ff, 0x00ff08c2, 0x21c5820a, 0xaf832c00, 0x19050023,
0x08204299, 0x0a20cb82, 0x20052042, 0x09204233, 0x0a839920, 0x33829420, 0x82676621, 0x05204298, 0x20421e82, 0x99f92105, 0xe622b882, 0xd2823433,
0x8299aa21, 0x42b22b29, 0xffff1590, 0xff52f8d7, 0x9483ebff, 0x7bd4e42e, 0xccd4ffff, 0xffff8bcd, 0x08cd4ccf, 0xe5210682, 0x208a82cc, 0x27df8207,
0x34b3e7ff, 0x780d00ff, 0xb3212a83, 0x2b948234, 0xff48e12d, 0x0080b700, 0x2400ff05, 0x11296b83, 0xc9159899, 0x19f800ff, 0x205d829a, 0x253683f6,
0xffcecc02, 0x1b82f6ff, 0x82065a41, 0xffff28ba, 0xff08cecc, 0x82e6c2ff, 0x660b229c, 0x2d3b8266, 0xffcdcc08, 0x9a19fcff, 0x4c0900ff, 0x058288cc,
0xff2c6682, 0x089819fe, 0xfb0e078b, 0x9f00ff30, 0x2d261a83, 0xff15cc4c, 0x0a469200, 0xb3112605, 0x0f00ff33, 0x25048233, 0xffcd4c0e, 0xae821000,
0x08248e82, 0xff8b9999, 0x2005214b, 0x271683fd, 0xff008005, 0x6666fbff, 0x0a201a82, 0x04203083, 0x0b200483, 0x00226c82, 0x6c829902, 0xb26a0c20,
0x33112205, 0x20358233, 0x28ad8210, 0x66e6faff, 0x660e00ff, 0x83b28468, 0x98192635, 0x4cf9ffff, 0x20a382cd, 0x2093830e, 0x207183f6, 0x21248203,
0x0982ecff, 0x33f6ff28, 0xf1ffff34, 0xcd823433, 0x3233f622, 0x4c240a82, 0xebffffcc, 0x2206664d, 0x84f2ffff, 0xcccc29d1, 0x00ff8108, 0x0534b306,
0x9823e383, 0x840200ff, 0x22808395, 0x83666601, 0x8b67219f, 0xf3214082, 0x21bb8219, 0x1682f5ff, 0x8b250483, 0x19f3ffff, 0x2c16829a, 0x07cc4c97,
0x192800ff, 0x00ff8b9a, 0x21638226, 0x33820f00, 0x821c0021, 0x190023a2, 0xa282ce4c, 0xa2820d20, 0x820b0021, 0x140021bc, 0xfe207883, 0x00229c82,
0x8c82b30b, 0x83ccf221, 0xcc0b221e, 0x828882ce, 0x05947414, 0x1985eb20, 0xf520a682, 0xd8205e84, 0xff214882, 0x20da83db, 0x201983cb, 0x235c82ea,
0x9a99c6ff, 0x84229083, 0x8582cd4c, 0x33b39b27, 0x4c6400ff, 0x207e82cc, 0x0563717b, 0x11830682, 0x1684cd20, 0x7b00ff24, 0x2d8233b3, 0x66390023,
0x20228266, 0x2c828334, 0xfff668ea, 0x98992700, 0x8cdcffff, 0x26a183cc, 0xffff3433, 0x44723df4, 0x8284068a, 0xca82f420, 0x57f2ff21, 0x338305c9,
0xff21ac82, 0x831984ff, 0x211982c0, 0xd483ff68, 0xffff0823, 0x834882e3, 0xffff22ea, 0x84ca82d9, 0xd7ff23fe, 0x738266e6, 0x82a7ff21, 0xffff27a8,
0xffff7fb7, 0x7e83b8ff, 0x08201083, 0xbe20b382, 0x0032c582, 0xff676628, 0x0080c8ff, 0x993700ff, 0xe6ffff9a, 0x4d426666, 0xd4f72205, 0x0f3455f8,
0x8618ab20, 0x8f620aaa, 0x94fb2113, 0x20174c55, 0x266d827e, 0xff66e6f4, 0x82b30700, 0x83fa20e3, 0x190b2209, 0x20b58298, 0x217383ec, 0x788219f4,
0x0483e920, 0x0483f920, 0x0080e722, 0xb922b583, 0x3582cd4c, 0x33b3c62b, 0x4c3900ff, 0x00ff8bcc, 0x05574146, 0x11854620, 0x1683cd20, 0x0e820482,
0x00212d82, 0x212d8317, 0x59821500, 0x2f05af4f, 0xffcdcc12, 0x9a19f5ff, 0x3100ff08, 0x6b079a19, 0x730f0554, 0x4c20100c, 0x0e204b82, 0x24058055,
0xab088b33, 0x22708206, 0x1884ab11, 0x54109fa8, 0x11410d18, 0x4b072409, 0x821574fb, 0x82232033, 0xe3ff2147, 0x00210482, 0x22a7821c, 0x52b3dcff,
0x6b18053c, 0xd6830bf6, 0x08201782, 0x6b18dd82, 0x775113f6, 0x84ff2005, 0x2004823f, 0x24548434, 0xfbeb08cc, 0x0ffa5434, 0x211ee163, 0xf562d4fb,
0x5834201c, 0xf6670570, 0xab113405, 0xf7088b85, 0xda0e06d4, 0xf715f4f7, 0x00ff0616, 0x828df705, 0x67052c79, 0x0300ff2b, 0x00ffea66, 0x82486102,
0x8e422214, 0x210a8208, 0x0a828f62, 0x14432208, 0xe9feffff, 0x0600fffc, 0xffffc420, 0xff6ff2fb, 0x34330400, 0x00ff4a08, 0x05085743, 0x50faffff,
0x262582e5, 0xffff8ae1, 0x82bf5ff5, 0x51fa27eb, 0xfaffffeb, 0x2182761e, 0xa8bcff23, 0x222182f8, 0x82aaf1fb, 0x48cc2138, 0xeb264782, 0xf9ffff85,
0x6685b8de, 0xbdfaff23, 0x82668372, 0x200a8271, 0x26458270, 0xffff6766, 0x829a99fc, 0x52f82109, 0xaa20a782, 0x68226a82, 0x0e8215f6, 0x849eaf21,
0x00ff2453, 0x83be9f0a, 0x14ae21ae, 0x08217384, 0x218583cc, 0x2782050a, 0x82920d21, 0xf2322604, 0x150100ff, 0x26ab8280, 0xfffffa1e, 0x82f49dfd,
0x1e452225, 0x210a8208, 0x0a82f0a7, 0x820c4221, 0x34b3217d, 0xff28e985, 0x8b66e6fa, 0x0616fb08, 0x08215982, 0x21b88372, 0x7d83d698, 0x2d821620,
0x82b89e21, 0x829c8314, 0x82702043, 0xecbc210a, 0x82205783, 0xdf213d82, 0x236b853c, 0xccccfbff, 0x4031bb82, 0xffff7cff, 0x057aa9bc, 0xdbffffe6,
0xfc150a97, 0x0a4e5514, 0xffff9925, 0x829a59e3, 0x8cdd2159, 0xff242b82, 0x0766e600, 0xda220c82, 0x3c5568e6, 0x824c2007, 0x1a3c55be, 0x34732225,
0x8501ff08, 0xff5f1836, 0x622b2014, 0xff2406d4, 0x66e6ffff, 0x07885018, 0x71839920, 0x0080e523, 0x276b8208, 0xff3e8ae5, 0xae87eaff, 0x8f260482,
0xe5ffff5c, 0x2a845278, 0x0a820820, 0xff008026, 0x9a190000, 0x09831982, 0x66661526, 0x1a00ff8b, 0x06833584, 0x00204c85, 0x15841682, 0x08242a84,
0x158b54fb, 0x6fe50e85, 0x74fbdb28, 0x0634fb15, 0x9a8507bb, 0xaf839387, 0x8b23a982, 0x7e06cb08, 0xdd7e05cd, 0x99511805, 0x075b220a, 0x88aa82f7,
0x9082213a, 0x70202183, 0x1a220486, 0x3a879082, 0x820a017f, 0xe5ff320a, 0x5b08707d, 0xffaf0e07, 0x5eda0300, 0x21a901ff, 0x3aee8248, 0xfff49d06,
0x4cf70d00, 0x110e00ff, 0x0800ffec, 0x00ff6ce7, 0x8bc3750f, 0x8244f808, 0x800f347e, 0xff998b00, 0x9418f7ff, 0x990600ff, 0xf2ffff9a, 0x8208b408,
0x32b3210a, 0x26080a82, 0xffffae07, 0xff68e6fd, 0x5278efff, 0x66f5ffff, 0xf4ffff66, 0xff083c0a, 0xcc4c96ff, 0xba7dffff, 0xffff05e2, 0x82ceccaf,
0x22d2821f, 0x82e6c2ff, 0x19b9291f, 0x08368b9a, 0xe4ffff8b, 0x002e4c82, 0x71323307, 0x330b00ff, 0xe8ffff34, 0x388266e6, 0x3882fe20, 0xcc000022,
0xfe253d82, 0xff8c0080, 0x240582ff, 0x190100ff, 0x241a829a, 0xbb0100c0, 0x29898205, 0xff9166e6, 0xcd4cfbff, 0x4c7b00ff, 0x830a2005, 0x4f002e1d,
0xff079a19, 0xc00a49ff, 0x91df00ff, 0x222782ea, 0x828736f6, 0xc4f52159, 0xfa26a182, 0x1000ffe1, 0xb582ae87, 0x82779e21, 0x52f821ea, 0xff324d82,
0xff06beff, 0x3c3f1b01, 0xdea6feff, 0xff8b15b8, 0xa3824f00, 0x82410021, 0x400021c3, 0x0e820983, 0x84088b21, 0x831b8215, 0xbfff2311, 0xb7820080,
0x0080b022, 0x0682be83, 0x1183ff20, 0x0e820486, 0xff202d82, 0x59820683, 0x3282da83, 0x44825485, 0x3233cc28, 0xb32400ff, 0x82821534, 0x82ce4c21,
0x32332104, 0x0a201b82, 0x84062d5f, 0x2192820f, 0x1a83ccf9, 0xff231f82, 0x82ccccf5, 0x230f8369, 0x32b3f9ff, 0xdb271a82, 0xffffcc4c, 0x82ce4cdb,
0x820a83d7, 0x8232204b, 0x82309a0a, 0xffff2136, 0x46821f82, 0x76854c82, 0x8c820f83, 0xd5612420, 0x84cc2005, 0x83ce204b, 0x9a0a8356, 0x82062030,
0x218783bd, 0xb18200ff, 0x0f83b782, 0x4c060023, 0x204b84ce, 0x82d88334, 0x2092828c, 0x20a28634, 0x82309a00, 0x82fe9736, 0x214b83de, 0x51840534,
0x0e250a85, 0xf4f730fb, 0x0f2f46f8, 0x200cbe47, 0x08531854, 0xffff2611, 0x0634b3da, 0x32fb827e, 0xff6666f4, 0x3433f8ff, 0xf4ffff86, 0xff089819,
0x82e6d2ff, 0xb3932410, 0x5bdb0534, 0xa26a0fc9, 0xffff3e1e, 0x06cd4c95, 0x99c8ffff, 0x7bffff99, 0xff059a19, 0x9a19f1ff, 0x33dcffff, 0xddffff32,
0x29148219, 0xff34b3e8, 0xe13ad9ff, 0x7f82088b, 0x4685ab21, 0xff242eb2, 0x7b542500, 0x0c329382, 0xff8b85eb, 0x67a60b00, 0xcc0700ff, 0x0400ffcc,
0x0e8252f8, 0x0868e62e, 0x212d00ff, 0x6c00ff48, 0x3b05cc4c, 0x33205b9c, 0x6a080e47, 0x6a220904, 0x5b8233b3, 0x82663721, 0xeb842955, 0xff990584,
0xb0c72300, 0x61830482, 0x824c1721, 0xcc262266, 0x29b782ce, 0xcc4c2500, 0x70fb0e06, 0x7341b4f7, 0x44fb2230, 0x067d6606, 0x410cc86e, 0xcd200c55,
0x2311d45c, 0x074b0624, 0x82058a41, 0x10ad1829, 0xff8b2608, 0xcc4ceeff, 0x094f5f08, 0x200c3661, 0x8833823b, 0x2496671a, 0x7b07cb22, 0x481c3241,
0x9b241141, 0x0794f706, 0x23083949, 0x00ff7b54, 0x2e055249, 0x088b85ab, 0x0e0664f7, 0x74f730fb, 0x611534f8, 0xff2c053e, 0x00802700, 0x5cf9ffff,
0x2300ff2a, 0xed350983, 0x00ff1e45, 0xff66661b, 0x4821e5ff, 0x0c00ff08, 0xffff9a99, 0x280482f3, 0x34330000, 0xccebffff, 0x210e82cc, 0x048232b3,
0x08666622, 0xff231985, 0x82ce4cf3, 0x82b32019, 0x8600208a, 0x00ff2419, 0x8200800b, 0x33f0251e, 0x0f00ff32, 0xec205783, 0x00212382, 0x2c57830b,
0xff66e6e9, 0x34b30500, 0xf7072f08, 0x1aca4214, 0x2782a020, 0xccbaff27, 0xffff3ccc, 0x227a83a5, 0x62ceccf0, 0x8b23a093, 0x62274b06, 0xc426178b,
0x8b086666, 0x0682ffff, 0x351a8b62, 0x08ffffcb, 0xff1566e6, 0x9a192c00, 0xb30a00ff, 0x2400ff34, 0x0486cc4c, 0x18820e84, 0xffff0826, 0x0666e6a4,
0x07320584, 0xb4f8af0e, 0x7b1514f8, 0x8b079306, 0x420d00ff, 0x4358ff90, 0xbd0a2205, 0x14aa5370, 0x08f04518, 0xff078326, 0x842b4bfe, 0xe8224682,
0x9882f628, 0x85abec27, 0xabecffff, 0x280a8284, 0x084821e8, 0x57a6ffff, 0x2052820b, 0x241d82ff, 0x541300ff, 0x2b1c827b, 0x00ff33b3, 0x8b0ad717,
0x1500ff08, 0x002d4783, 0xff9a590f, 0x66a6ebff, 0x28faffff, 0x210982f6, 0x37825c8f, 0x5c4fd728, 0x9961ffff, 0x1583059a, 0x1582f520, 0xff0a9722,
0x99202986, 0x1522d482, 0x40838f42, 0xcecc6728, 0x0e00ff06, 0xb5823d4a, 0xcd8c0c2b, 0x780900ff, 0x0300ff10, 0x33fb82ee, 0x08b2bd0d, 0xcf1b00ff,
0x6800ff5b, 0xff053eca, 0x7a945e00, 0x18202b82, 0x0023a683, 0x820a5715, 0xf668364d, 0xa10700ff, 0x1600ff48, 0xff08b8de, 0x727d1800, 0xb84900ff,
0x222b8252, 0x829a1924, 0x7c08222b, 0x2257826a, 0x824e2208, 0x775e2652, 0x020600ff, 0x21048290, 0x2b820601, 0x84ab1622, 0xa0233682, 0x82cb0583,
0x83112027, 0x052043ef, 0x7b540e22, 0x11243282, 0xdb0885ab, 0x0020f682, 0xf3431982, 0x231d8405, 0xcc4ceeff, 0xff2ab582, 0xff008028, 0x666615ff,
0xa34eff15, 0xccfc2b05, 0xffff88ce, 0xffccccfd, 0x324dfcff, 0x33ae2205, 0x23578234, 0xcb66e610, 0x5c2d8c82, 0xff061e05, 0xe27aecff, 0x66c5ffff,
0x20108266, 0x333f8297, 0x9a998a00, 0x0634fc15, 0x34f807ab, 0x0e076b06, 0xf4f7d4f7, 0x1f7df582, 0x83cb2014, 0x7e19828a, 0x002005d7, 0x7e095d7c,
0xd8220dee, 0x10828b10, 0x64f02721, 0xf7270514, 0x00fff628, 0x82343307, 0x0ad72534, 0xcc0800ff, 0x0024ba83, 0x8b66663f, 0x05226682, 0xe6820020,
0x82080521, 0x73022622, 0x0300fff8, 0x29228217, 0x08209004, 0x8f2000ff, 0xa382bb5c, 0xa0da012c, 0xbe0200ff, 0x0000fffa, 0x2082d6e3, 0x82761e21,
0x16032330, 0x06820806, 0x6ef20822, 0xba215582, 0x215f821c, 0x7282ce17, 0x8b924d27, 0xfaffff08, 0x285382e0, 0x7af4faff, 0x88fdffff, 0x06547af6,
0xec71fb22, 0xdf291a82, 0x055ba470, 0x25feffff, 0x261b8260, 0xffffc440, 0x829a19ff, 0x48e12120, 0xfc22b082, 0x5382f6e8, 0x83f7ff21, 0x4c072181,
0xf8224e82, 0xae8248e1, 0x8232b321, 0x00002953, 0xfeff9a99, 0x150080fa, 0xa3237582, 0x820566e6, 0x04063106, 0xfbffff1a, 0x00fff853, 0xff8aac1b,
0x08ace4ff, 0xff232882, 0x825c4fee, 0x9ef1234b, 0xa06effb8, 0x3aef2206, 0x27cc82e0, 0xffec1100, 0xf6e8b2ff, 0x69277c82, 0x00ff3333, 0x82cecc96,
0x4cfb2b0a, 0x0400ffcd, 0xffff32b3, 0x0982ccf9, 0x75830220, 0xa14ff920, 0x4af22205, 0x2747823d, 0xffc3b5f5, 0x3ccaf4ff, 0xf3220a82, 0x9e83c435,
0xe6dbf927, 0x580200ff, 0x21328210, 0x3c826adc, 0x82e0af21, 0x5c4f2184, 0x59206282, 0xff244c82, 0x0534b3a6, 0xde211f82, 0x26df8276, 0x00ff862b,
0x82008001, 0x333321df, 0xfc224082, 0x40833333, 0xff240682, 0xcd8cfeff, 0x25821684, 0x83db1921, 0x089a2104, 0xdc200a88, 0x32211982, 0x202383f2,
0x832384cc, 0x853482d5, 0x21518241, 0x30843473, 0xe6216582, 0x27358224, 0xff666694, 0x9a996b00, 0x4421ce83, 0x21ce87dd, 0x1f8229dc, 0xdc21ce84,
0x87408329, 0x83c220ce, 0x843e20ce, 0x8ac220ce, 0x831120ce, 0x826c20ce, 0xdfaf213c, 0x5282ce87, 0x82ffff21, 0x21ce835c, 0x7282d3ed, 0x82ec1121,
0x236c827c, 0x3233fcff, 0xfd224082, 0xce859a19, 0xce868e82, 0xce933220, 0xce879a20, 0xa30e8d21, 0xbaa627ce, 0x5800ffa0, 0xce836766, 0x825c4f21,
0x33b32191, 0xce839b83, 0xf9207b83, 0x3d20ce92, 0xc320ce84, 0xe720ce85, 0x20089d41, 0x41ce8c6b, 0xe6210b9d, 0x20a88367, 0x21ce82dc, 0x9382f272,
0x82f03221, 0x5dfc2040, 0x068205e9, 0x94089d41, 0x259d41ce, 0x9d419920, 0x54cb2707, 0x3400ff39, 0xce8984ab, 0xce873420, 0x84cc4c21, 0x0a9d4109,
0xff52b826, 0x70bdf4ff, 0x200b6c42, 0x214882e8, 0x2882fe54, 0x8236e921, 0x21b021ce, 0x2b079d41, 0xffec9169, 0x527896ff, 0xb32600ff, 0xca235182,
0x82dc3433, 0x55002e48, 0xff8bcdcc, 0x66e64100, 0x194700ff, 0x330a829a, 0x08666653, 0x4c73ffff, 0x0c01ffcd, 0xff151e85, 0x99190300, 0x6e2a4382,
0xffff9016, 0xffcc8cfd, 0x89600500, 0xc3082205, 0x272d8212, 0xff5e3a07, 0xf41d0700, 0x08230a82, 0x8208bae9, 0x16032706, 0xffffff86, 0x3882021c,
0xfff41d26, 0x8825feff, 0xbe219082, 0x05ca43fc, 0xff05bb26, 0xfbe9fcff, 0x8f269882, 0xfaffff1a, 0x1b8267e6, 0x85e07a22, 0xff238882, 0x820456f7,
0xaff827c6, 0xf8ffff1b, 0x0a8210ed, 0x2406f722, 0x2e824f82, 0x00fffc24, 0xd182e300, 0x8ae1fc27, 0xda0100ff, 0x39878279, 0xff080641, 0x9d6f2100,
0x00d0ffff, 0x00ff0540, 0xff33b3ec, 0xe2fab8ff, 0xce43ff15, 0xa4b02207, 0xac9f18ff, 0xdcb3250c, 0xab6b0728, 0x86237e82, 0x82079a99, 0xfda1255d,
0xc0ffff70, 0xd0212583, 0x20d98282, 0x220e83f0, 0x82ce4cf5, 0x6b072156, 0xfe22c082, 0xd7820ad7, 0x82008021, 0x05f252c0, 0x2c413220, 0x41ce2005,
0xff28132c, 0x00ff00f0, 0x059a99a5, 0xf626f882, 0x1100ff66, 0x7c829a99, 0xffcecc26, 0xcc4c0e00, 0x4c239182, 0x18088bcc, 0x20b9f3bb, 0x23c383ff,
0x0596831f, 0x0fafbb18, 0xfeff062b, 0xff3433e0, 0x00805f00, 0x162a6115, 0x251a1e53, 0x00ff8bcc, 0x3e82b31c, 0x7f180482, 0x6b221d71, 0x5f8234fb,
0xcdccd322, 0x52614d83, 0x230a8206, 0x08ccccd3, 0xf7200682, 0x12107f18, 0x32717f18, 0x70fb0e29, 0x000000ff, 0x7414f890, 0x84250510, 0x530e00ff,
0x0cfb4aeb, 0x6c4a9420, 0x218b4d0e, 0xcdccc722, 0x09343382, 0xffff9999, 0xff9a99f1, 0x9a190700, 0xccefffff, 0x0300ffcc, 0x2605c659, 0x00ff089a,
0x8e9a9923, 0x54b32058, 0x3a4c0c14, 0xffff3311, 0x066666dc, 0xccf2ffff, 0xc5ffffcd, 0xffff34b3, 0x09824ccf, 0x9819d325, 0x83c3ffff, 0x4cf82213,
0x205882ce, 0x2b148390, 0x05cccc99, 0x800d00ff, 0xf4ffff00, 0x00247382, 0x77323304, 0x8305e35a, 0x82082092, 0x218e820a, 0x1f83f2ff, 0x0100ec27,
0xccfbffff, 0x33ac83ce, 0x0a00ff99, 0xfb08cc4c, 0x0534f774, 0xaef4ffff, 0x0800ffd9, 0xff233e82, 0x827533fb, 0x22cb834d, 0x82b83e04, 0x21238209,
0x0a8400ff, 0xdb820e20, 0x500c0023, 0x832882e5, 0xe80d2509, 0xdb088bf6, 0x202cd882, 0xff8bcdcc, 0x33331c00, 0xb31300ff, 0x0c200482, 0x00239582,
0x82cd4c1c, 0xb366227a, 0x099b4c33, 0xff15ac22, 0x820a1e62, 0x05846a32, 0x78eb5321, 0x99220d10, 0x3382cd4c, 0x4983f320, 0xcc4c1c25, 0x82e3ffff,
0x275882ef, 0xdfffff34, 0x088b3333, 0x840a1f4e, 0x7c542150, 0xab214983, 0x050f5784, 0xb600ff26, 0x74f70080, 0xa9226982, 0x74410080, 0x0caf4d0f,
0x2211a879, 0x8456ffff, 0x839e2033, 0x4c782375, 0xfd8205cc, 0x7e686621, 0x00280546, 0xff989901, 0xceccebff, 0xff230e85, 0x6f9a99f2, 0xf22007b6,
0xfe201988, 0x19822d83, 0x2b07db4c, 0xffcccc54, 0x32b39200, 0x85ffff05, 0x57059344, 0xf14d068f, 0x79ff200c, 0xf7211530, 0x050e5734, 0x082c4518,
0x4f0f4c79, 0xab21110a, 0x4d348206, 0xa67716d7, 0xccf3180e, 0x24998309, 0x33ab00ff, 0x23aa8634, 0x66660d00, 0xff29c084, 0x32331400, 0x70feffff,
0x240e85a4, 0x7c94f2ff, 0x210a8708, 0x19820a97, 0xeb3eee83, 0xffff3eca, 0xff9899f2, 0x0080f4ff, 0x61ffff08, 0xffff34b3, 0x05cc4c78, 0xf730fb0e,
0xdd50f824, 0x09fe4e05, 0x24085143, 0x57dfffff, 0x1fbe180a, 0x2d638308, 0xffcd4c05, 0x52380000, 0x660500ff, 0x69828b66, 0x0c820683, 0xff231682,
0x87aec7ff, 0x5c8f2109, 0x20221a82, 0xc04ef6a8, 0x0d135809, 0x2416fa57, 0x99ceffff, 0x2a6f829a, 0xff66e636, 0xcccce6ff, 0x832800ff, 0x82cd2009,
0x0c0021ae, 0xc322c883, 0x5882cc4c, 0x00800325, 0x83efffff, 0x82f42004, 0xeeff2623, 0xffffce4c, 0x232382ee, 0x6666fcff, 0xee20dd82, 0xfc20e883,
0x19831e83, 0x330b0027, 0xfdffff32, 0x274c824c, 0x08ce4c11, 0x1d00ff85, 0x3e835383, 0x591a0021, 0x0021072d, 0x21588312, 0x8e7fbcff, 0x16456d19,
0x5f00ff2e, 0xff0766e6, 0xcdccfaff, 0xccffffff, 0xfa278882, 0x00ff9999, 0x82cc4c00, 0x05d45a13, 0x0682fa20, 0x99200c83, 0xa4832082, 0x00232a83,
0x82323300, 0x8ca020a9, 0x0f70426f, 0x64184c20, 0x4c200977, 0x22076359, 0x844300ff, 0xbde2386f, 0xe8ffff70, 0xffff9a99, 0xff8f42ed, 0x66e6dbff,
0xd7ffff8b, 0x63089a99, 0xff23052a, 0x824c3900, 0x82c62090, 0x05a5666f, 0x7019e07f, 0xf1581632, 0x00ff2b30, 0x06d7e310, 0x99e1ffff, 0x9582ad9a,
0xff8f8225, 0x83cc2c00, 0x333122b6, 0x2d958234, 0x00804d00, 0xe62d00ff, 0x4200ff67, 0x0482cccc, 0xff9a192c, 0xce4c1e00, 0x3100ff08, 0x27426666,
0x8b210817, 0x30fb0e07, 0x00ff14f7, 0x1533b3fc, 0x337700ff, 0x2200ff33, 0xff059919, 0x01001100, 0xcc0400ff, 0x260982ce, 0xffff32b3, 0x823233f6,
0x66e6220e, 0x834f827a, 0xefff2115, 0x15841f82, 0x4ceeff3d, 0xffff7acd, 0x089919fb, 0x3377ffff, 0xd8ffff34, 0xff0567e6, 0x66e665ff, 0x4474f707,
0xf2450f7d, 0x117d440c, 0x4018fb20, 0x98410f01, 0x82a7200a, 0x058b7650, 0x4cf9ff23, 0x226182ce, 0x828f02ef, 0x26988277, 0x7949eeff, 0x820900ff,
0xfbff24ac, 0x829c1f25, 0x24068287, 0xff1000ff, 0x211582ff, 0xc283c9d6, 0x1022d782, 0xc28377fe, 0xc1826720, 0x3eca2826, 0x990b00ff, 0x9522e783,
0x05529a99, 0x182d4417, 0x33b37c23, 0x051f5207, 0xff15142b, 0x9a59ddff, 0x5a00ff07, 0x31cd82cc, 0xff00c0f0, 0x34334500, 0xffff8b3c, 0x0866e6a0,
0x655c34fb, 0x052e4917, 0x107a4218, 0x2a05ba44, 0xff9a993b, 0x3433d7ff, 0x833200ff, 0x82c820dd, 0x0e00265a, 0xfb083433, 0x2ecb72b0, 0x07b0f722,
0x2116f173, 0x9d8d66c4, 0x85246453, 0x195f229d, 0x22e4829a, 0x82daa430, 0x5ccf26f4, 0x400f00ff, 0x0b987400, 0x00ff8423, 0x118c440e, 0x2f12fc44,
0x01ffef0e, 0xff66668c, 0x48e16801, 0x2500ff15, 0xff245682, 0x055238e7, 0x84775182, 0x00ff2206, 0x06f96c12, 0x828b9e21, 0x33613c62, 0x00ff0634,
0x8b68e61e, 0x191900ff, 0xe6ffff98, 0xff8b66e6, 0x9a19e1ff, 0x82073608, 0xe6c82c08, 0xdaffff66, 0xff5b0080, 0x8299caff, 0x059e461e, 0x02009427,
0xffff0570, 0x205e83dd, 0x216e82ea, 0x0483d6ff, 0x0e83f220, 0x6666d322, 0xff205782, 0xff200683, 0x67231682, 0x830d00ff, 0x19dd2e42, 0x1500ff99,
0xff089a99, 0x000094ff, 0x223c82a6, 0x827b94ca, 0x2337831b, 0xbb1f85da, 0x37207e82, 0xe0207382, 0x8d827382, 0x8c826620, 0x82ec1121, 0x23518204,
0x15ee1e00, 0x3322a985, 0x26829e06, 0x0023be83, 0x839a9905, 0xffcd25d2, 0x00800a00, 0xe883c682, 0xc7180023, 0x20e882ae, 0x831a8416, 0x821a203d,
0x080026b0, 0x00ffcc0c, 0x05774c1b, 0xff210683, 0x25168300, 0x34f3f7ff, 0x2a8300ff, 0xeef0ff32, 0xfeff0814, 0xff68e6f7, 0xecd1fcfe, 0xe9ffff15,
0x2321aa83, 0x82ec8419, 0x192a22b4, 0x2075829a, 0x2e9c822d, 0x066307bb, 0x94fbffff, 0xffff8b7b, 0x82856bfc, 0x82eb8204, 0x20d58210, 0x21b78236,
0xe882deff, 0x7d160027, 0xe3ffff71, 0x235d8233, 0x83900220, 0x1d2c9a82, 0xffffcdcc, 0x059a99f8, 0xb3cb01ff, 0x4d231682, 0x8415cc4c, 0x830420e6,
0x66fc25fb, 0x0300ff68, 0xff28b282, 0x8b9899fb, 0x5b066308, 0xd2204983, 0xfb464982, 0x83d52005, 0x19e92709, 0xdcffff9c, 0x4d8468e6, 0x0725ce82,
0xab056666, 0x26bf8293, 0x00ff0080, 0x82cccc1c, 0x8221209f, 0x068b2a9f, 0x15b814fc, 0xff0674f7, 0x5b821800, 0x99511809, 0xf8ff2211, 0x214383cc,
0xc7513333, 0xfb082105, 0xff213082, 0xca5118f7, 0xc0501808, 0x82e7820a, 0x83ff2017, 0x82c28242, 0x245782c7, 0x8b088bcd, 0xfb51186b, 0x8230820c,
0x20418281, 0x18534b34, 0x34209290, 0xa382b282, 0x52823082, 0x5c83cc20, 0x6e189284, 0x928207f1, 0x152bab24, 0xc98f34f7, 0x3082369f, 0x989ec98d,
0x30fb0e3b, 0xe61a01ff, 0x5f01ff66, 0xff155278, 0xcecc3800, 0x87faffff, 0x2c00ffae, 0x2195824c, 0x708233d0, 0xccc5ff26, 0x64fb08cc, 0x832f7444,
0x7c002030, 0xfb211530, 0x205683b3, 0x2d7682fb, 0x6666ffff, 0x19fcffff, 0xff088a9a, 0x7283dcff, 0x9a199c28, 0x65ffff05, 0x95440080, 0x99f32419,
0x55ff8b9a, 0x07200568, 0xfa274383, 0x00ff34b3, 0x82666609, 0x80ea2742, 0xc3ffff00, 0x428268e6, 0x9919fa23, 0x05c572ff, 0x33b3ed23, 0x05d470ff,
0x6182ef20, 0xff050023, 0x252982fe, 0xffd763ef, 0x3e830500, 0x7b54f727, 0x4c1200ff, 0x2b0e82ce, 0x00ffa4f0, 0x0832b310, 0x234e00ff, 0xda261e82,
0xff0534b3, 0x8b842a00, 0xe520ca96, 0x08758b18, 0x7b82ff20, 0xe5229682, 0x2c410080, 0x2503450c, 0xd377b420, 0x208d8309, 0x23a7830e, 0x8b85ab11,
0x0a238982, 0x828bb8de, 0x299c26de, 0x99faffff, 0x21a4829a, 0xcd82aec7, 0x0f22a484, 0x198233f3, 0x12261483, 0x00ffec51, 0x1e821904, 0x52781322,
0x1f223583, 0x3582cd4c, 0x66661c25, 0x83f3ffff, 0x4c142716, 0xebffffcd, 0x5082cc4c, 0x66e60423, 0x82468290, 0x04002310, 0x36820080, 0x8f67e622,
0x22271682, 0x00ffcccc, 0x822adc5e, 0xe6052af1, 0x1000ff67, 0x00ff1ea5, 0x22258312, 0x828cac08, 0x32b3210e, 0x0e218082, 0x20298256, 0x37718210,
0x560efaff, 0xb30800ff, 0xedffff34, 0xff8562b0, 0x285cefff, 0xecffff08, 0xff364482, 0x05e23aca, 0x01ff2f0e, 0xf7008006, 0x00ff1554, 0x06008039,
0x104754f7, 0x25ea7709, 0x18075421, 0x4d0f0acb, 0xe7470dda, 0x066b2311, 0x658214fb, 0x20056b7b, 0x208983f6, 0x20a983f3, 0x23e482f2, 0x66e6fbff,
0x0a879e82, 0xf1ffff28, 0x00ff6866, 0xbe823305, 0x3233f827, 0xb30b00ff, 0x2d1e8234, 0xffcdcc9e, 0xcccc9100, 0x9bffff05, 0x4d86cdcc, 0x202b584c,
0x1e584c14, 0x2011305a, 0x061941ab, 0x9a190e2f, 0x3a0900ff, 0x0c00ffe2, 0x00ffa470, 0x24b3820d, 0x0a170400, 0x290a8208, 0x00ff5278, 0xff7a1404,
0xcd830e00, 0x20c5fa25, 0x820700ff, 0xf4ff23a8, 0x1e821e45, 0x66e68b2f, 0x402effff, 0x00ff0500, 0x4b9a992a, 0x83268215, 0xb3e92211, 0x23118234,
0x07cc4c16, 0x192ceb82, 0xffff069a, 0xcb666688, 0xc6ffff15, 0x56215983, 0x23e3834c, 0x0734b3a9, 0x2b059d41, 0x02ffef0e, 0xff343342, 0xa4f07d01,
0x57302382, 0xffff9899, 0xffc275cd, 0x67664cff, 0x57ffff8b, 0x00347882, 0x083e8a32, 0x33e1ffff, 0x0900ff33, 0xff6c703d, 0xa4f0e8ff, 0xdf261b82,
0xff0848e1, 0x134bc0fe, 0xd9df2105, 0x1e20c582, 0x1c83ca82, 0x1f00ff23, 0x82ca82b0, 0x32a6822c, 0xff6666a8, 0xae873200, 0xb3b200ff, 0x00ff8b34,
0x82cc4ca9, 0xd6782162, 0x1d271a82, 0xfffff4e8, 0x8200abf6, 0x68e62c2f, 0x191700ff, 0x08ac8b9a, 0x843f01ff, 0x20002452, 0x826cb81e, 0x5c0f2114,
0x34207b83, 0xc2212882, 0x216f8290, 0x3e82cc3d, 0x5c0f6222, 0x4518ac82, 0xdb780c91, 0x116d410c, 0x1100ff24, 0x7d8214ae, 0xec510e22, 0x820be152,
0x54ee22c6, 0x2111827b, 0x048233b3, 0x4c85ab21, 0x83820536, 0xa5835a20, 0x66665b22, 0xcd206682, 0x0026d582, 0xffce4c08, 0xca83ccff, 0x19830420,
0x3433cc24, 0xc682088b, 0x82cc8c21, 0xc0cd2a41, 0xfbffff01, 0xfffffef4, 0x232082ce, 0xee1cf8ff, 0xf1271a82, 0xffff29dc, 0x8206c1fd, 0x820720b7,
0x6f0f25fb, 0x0800ff9e, 0x00236a82, 0x8266a60b, 0x2e312efa, 0x4400ff15, 0x8e055c8f, 0x210400ff, 0x82048248, 0x020021d7, 0x00233f82, 0x829a1905,
0x8206845b, 0xe5d02116, 0x8f264682, 0x0300ff1a, 0x65829503, 0x82f4dd21, 0x75202b3c, 0xd3ffffc2, 0xff05707d, 0x97825d00, 0x198b0023, 0x270a829a,
0xff900203, 0xb5480500, 0x02200582, 0x0023ce82, 0x84cc4c05, 0x82068247, 0x820c2017, 0x53fd26bf, 0x0200fff8, 0x223c82f5, 0x82088cfb, 0x826d2047,
0x5aff23d9, 0x3c8266e6, 0xa4b00729, 0x53f4ffff, 0x5eff8134, 0xf22205a5, 0x2a823233, 0x08323329, 0xf730fb0e, 0x8234f854, 0x664d2bad, 0x00ff8b66,
0xff34b33f, 0xd284c9ff, 0xff32b326, 0x52f8b6ff, 0x03214882, 0x0db17233, 0x837cff20, 0x169c7a09, 0xfcffff35, 0xff06cccc, 0xce4cf0ff, 0xc0ffff42,
0xff54cc4c, 0x8299b2ff, 0x062b21f8, 0x450a977c, 0x74212542, 0x0eee4f07, 0x7c1e0b42, 0x5a1805c8, 0xf73c1207, 0x00ff0614, 0xfb00805a, 0xffff1514,
0xff66e6f2, 0xcc4c2500, 0x66dcffff, 0x1a00ff67, 0xd62df783, 0x088b3333, 0x074b062b, 0x80ba00ff, 0x27be8200, 0x4b008045, 0xeb074b15, 0x29213782,
0x227683cc, 0x85999923, 0x0d00232b, 0x3f849a19, 0xffff0822, 0x26082582, 0x30fb0e06, 0x34f844f7, 0x4400ff15, 0xff8b6666, 0xce4c3b00, 0xfdd8ffff,
0x1d00ff70, 0xffff9819, 0x089002c7, 0x411300ff, 0xf9441e47, 0xffff2411, 0x82cc4cff, 0x80002c7d, 0xfaffff00, 0x00ff33b3, 0x84343300, 0xb9681809,
0x99fa2209, 0x2026829a, 0x833c82cc, 0xffff2120, 0x6f822a86, 0x4b180020, 0xcf51113b, 0xccec2120, 0xff236f82, 0x8268e6e2, 0x66e626b4, 0xb3c4ffff,
0x82c88232, 0xbbff25ec, 0x088b9a99, 0x21316b5f, 0xbf4134f7, 0xa24a180f, 0x9cab201e, 0x11fb432f, 0x914dcb20, 0x04f73717, 0x4e00ff06, 0x152b6666,
0xccebffff, 0x1300ffcd, 0xffffcccc, 0x09824ce4, 0x34330c27, 0x80e1ffff, 0x2ed08300, 0x00ff076b, 0x0666669e, 0x9961ffff, 0x83154b9a, 0xe6be210e,
0x00220e82, 0x6c82b300, 0x3333052d, 0x660000ff, 0x0500ff66, 0x838b6766, 0x08662105, 0xff240685, 0x9a99ffff, 0x09821684, 0x82cc4c21, 0x33332709,
0x41ffff08, 0x76829a19, 0x76835082, 0x06235182, 0x82db076b, 0x821e2010, 0x00ff236c, 0x4d82b31b, 0x00217c83, 0x82578314, 0x0e082190, 0x00215e82,
0x0b615514, 0xff675422, 0x830a5d60, 0x844f203c, 0x0574643c, 0x8bae8727, 0x78b0ffff, 0x21858252, 0x4482c5ff, 0xccdcff28, 0xcdffffcd, 0x04830180,
0xffff0029, 0x089899e9, 0x823300ff, 0x7fff27b1, 0xff059a99, 0xa5820600, 0x99efff27, 0xffff839a, 0x271583ed, 0xff9999ef, 0x6666f9ff, 0x1582ab82,
0x68200a83, 0x93201984, 0x7a820a83, 0x1a821020, 0x00ff532b, 0x0566e68b, 0xb3d5ffff, 0x0c2e4733, 0x8624b243, 0x267b82d1, 0xfbecff3f, 0x82bb1554,
0x332c21ff, 0x2607a675, 0xcdcc2300, 0x8200ff8b, 0x82c28210, 0xff342306, 0xc782dcff, 0xcc201682, 0x29054e76, 0xfb065b08, 0xe4f70734, 0x4c1815eb,
0xc2221911, 0x4b189a19, 0x5b2010df, 0x200b5b44, 0x83d218b3, 0xeeff220d, 0xa740184c, 0x0a9e4913, 0x7fcc4c21, 0x342708d8, 0x06db088b, 0x1804fbbb,
0x8317804b, 0x18d38368, 0x210b5279, 0xd3820080, 0x08261082, 0xd4f8af0e, 0x3a8214f8, 0x54eeff26, 0xf1ffff7c, 0x59067359, 0x08200583, 0x2107ff44,
0x1a887b54, 0x1a8f8520, 0x1a887a20, 0x074af818, 0x1a913588, 0x0614fb22, 0x34853f85, 0x0a055118, 0x11228f82, 0xd48286ab, 0x825c4f21, 0x7a542a04,
0xb01100ff, 0xeb088ba4, 0x06204506, 0x84201a9a, 0x7c203588, 0x1a91358f, 0x54106f62, 0x0e2c08b0, 0xf734f7ef, 0xd4f71574, 0x3600ff06, 0x2368d878,
0x07cc4cc9, 0x10a3d418, 0x241ef744, 0xff0694fb, 0x763883ff, 0x362365ce, 0x520734b3, 0x411819bc, 0x314c08bf, 0xffcd2505, 0x85ab1100, 0x4105c169,
0x84750645, 0x75ec2026, 0x14201584, 0x26238475, 0x07cc4cc9, 0x7815f36b, 0x40251a54, 0xf5ffff00, 0x799d824c, 0x0f6e0543, 0x18f22005, 0x210a9fd6,
0x68820040, 0x00c0f223, 0x09bf7608, 0x0c9dd618, 0xbb14f825, 0x79ffff15, 0xb3241815, 0x0a00ff34, 0x64820482, 0x4a7dcc20, 0x0dbd7b13, 0x127ea718,
0xfc54fb23, 0x5c807704, 0x30fb0e23, 0x1bae57eb, 0xc2b5dc23, 0x07265507, 0x555c0f21, 0xd9210826, 0x0726559a, 0xfff6282b, 0x66e60400, 0x02efffff,
0x082a5590, 0xff8e0222, 0x26072a55, 0xffff7ace, 0x559a19fb, 0x6626092a, 0xe2ffff05, 0x55889999, 0x3a497c55, 0xcc3f00ff, 0x00ff06cd, 0x8b333344,
0x333800ff, 0x3500ff34, 0x00ff0080, 0x82666603, 0x24838314, 0x66660000, 0x20c48293, 0x23b08200, 0x9a991100, 0x0d22c582, 0xca839999, 0xffff3425,
0x823333ff, 0x821582c0, 0x8419200a, 0x7c982b19, 0x4cfeffff, 0xeeffffce, 0x1a82cc4c, 0x00800023, 0x20bc8283, 0x223c82fa, 0x82cc99ff, 0x99ab2a16,
0xafffff9a, 0xffffcccc, 0x053a4299, 0x5a33a021, 0xab220af8, 0xbc59ff85, 0x00ff210a, 0x2136ce55, 0xce550ad7, 0xff352408, 0x55e60400, 0x1d230ece,
0x56070080, 0x9c202a24, 0x22082056, 0x5600ff32, 0x66200620, 0x24092056, 0x00ff059a, 0x19205635, 0x058b8b2d, 0x24f7af0e, 0x8b1564f7, 0x462c00ff,
0xcd2405f1, 0xcc2300ff, 0xd6180482, 0x34200893, 0x232e1b82, 0xffffcccc, 0x8b3333dc, 0xccd3ffff, 0x068408cd, 0x7a7d1184, 0x04f82323, 0x9d1884f7,
0x916f0cbc, 0xa6dc2606, 0xf4fb0866, 0x067b5e07, 0x4ce3ff22, 0x04845182, 0x34b3dc30, 0x067b088b, 0x4b056b7b, 0x05ab7b06, 0x0a8874fb, 0xd96f7b20,
0xff9a210a, 0x200ab171, 0x224783f7, 0x83592300, 0x66a62114, 0x8305db6f, 0x088b280e, 0xfb0654f8, 0x8224fcb4, 0x66582280, 0x21ca8266, 0x23829947,
0x0a820482, 0xca821082, 0x06820020, 0xb8ffff23, 0x82358266, 0xffff2216, 0x059559a7, 0x8305c873, 0x0dc87316, 0xff211782, 0x84288400, 0x283c8232,
0x94f7088b, 0xb3b200ff, 0x20638233, 0x205d8312, 0x20048306, 0x2250830d, 0x82cdcc11, 0xe6142267, 0x52678366, 0x4f1815a0, 0x8b241436, 0x19ebffff,
0x4483a782, 0x33eeff25, 0x8300ff33, 0x06224958, 0xcd4c8d22, 0x09ac4a18, 0xff343323, 0x0dd918ff, 0x00ff3120, 0x0733b372, 0x00ffaf0e, 0xffcdccf8,
0x8a01bb01, 0x0131aa82, 0x00ff9919, 0xff060103, 0x67e60200, 0xfd0100ff, 0x220e826a, 0x4d8b3333, 0xb682055d, 0x66e60227, 0x02feffff, 0x821b8296,
0xfcff238b, 0x1a82fafe, 0x98190e2c, 0x52daffff, 0x00ff05f2, 0x7b82b325, 0x46e1f124, 0x26828e05, 0x8dbade2d, 0x21fdffff, 0xffff8b46, 0x823ecafc,
0x200683ee, 0x20128489, 0x201e8488, 0x23368208, 0xffffcc4c, 0x05823083, 0x8268e621, 0x7c54220f, 0x211b8205, 0x218266e6, 0x9a19fd22, 0xfc222d82,
0x7f82cccc, 0xccfcff23, 0x234782cd, 0x8d9919fd, 0x67211e83, 0x203b828e, 0x238c82f1, 0x84ab2500, 0xd9213082, 0x24ae8266, 0x05ba1e0e, 0x21998288,
0x41844621, 0xde21c482, 0x22b382ba, 0x82c23503, 0x8200207b, 0x24b58506, 0xbade0200, 0x8226848e, 0x992621bb, 0x3883f182, 0x0e00ff22, 0x0023d182,
0x820ead25, 0x82b220c6, 0xf6ff2915, 0xff151aef, 0xcecc1200, 0xbe260482, 0x1e00fffa, 0x4d826666, 0x32b31227, 0x41edffff, 0x263b8206, 0xff9c9922,
0x826bddff, 0x1200237f, 0x158230b3, 0x8b904227, 0x99e1ffff, 0x210a829a, 0x0482d04c, 0x08ae4727, 0x9982feff, 0x20048398, 0x22a5829a, 0x82cd4ced,
0xce4c2115, 0x94212482, 0x222a827a, 0x828f42ed, 0x32b3215b, 0xdd26cb82, 0x00ff856b, 0x25849922, 0x84004021, 0x826c8215, 0x200a8272, 0x270f83c0,
0xff08cecc, 0x0a577d01, 0x05310484, 0xd2ffffad, 0xff1500c0, 0x66e696ff, 0x0297ffff, 0x20b48290, 0x29588317, 0x0532b3e8, 0x6900fff4, 0x6f821e05,
0xcccce832, 0x451700ff, 0xfeff0520, 0xff4c173a, 0x281cc6ff, 0x3827d182, 0x00ff4e82, 0x82343315, 0x30152632, 0x3800ffa4, 0x213d8382, 0x0a82b001,
0x8e82042c, 0x4f0400ff, 0x0200ff5d, 0x0982e2fa, 0x8b5ccf22, 0x0422e782, 0x8b82cdcc, 0xbc830420, 0x1e05fd2c, 0xb30100ff, 0xfbffff34, 0x1a82727d,
0x33331527, 0x7dc7ffff, 0x274b8270, 0xff008038, 0xcccceaff, 0x04200a82, 0xfe230a83, 0x828ece4c, 0x32b32126, 0xfb23e882, 0x85083433, 0x84882006,
0x86048212, 0x20fa8222, 0x823888c7, 0x82cd203e, 0x0080214e, 0xfe22bb82, 0x2586cc4c, 0x33b3fb22, 0x33213583, 0x238b8233, 0xa430fbff, 0xb0214883,
0x225b82a3, 0x825c4ffe, 0x008021a3, 0xea214382, 0x820a82cf, 0x22388281, 0x86b27dc7, 0xfbff23de, 0xad83777e, 0xffff3225, 0x82d703fd, 0xce4c212a,
0xcc21c783, 0x238b82cc, 0xcccc0400, 0xfc21e582, 0x82168429, 0x89812104, 0x082a2a84, 0x026001ff, 0x1594fb4e, 0x4e8200ff, 0x21082741, 0x0f843433,
0x0127db82, 0x00ff32b3, 0x86666605, 0x19022237, 0x2109829a, 0x2741cccc, 0x83cc2005, 0xce4c215f, 0xe6206f82, 0x2a832082, 0x99faff24, 0x4684089a,
0x5684d886, 0x20412741, 0x092741cc, 0xfb286e82, 0xffff0080, 0x8832b3fb, 0x14520582, 0x82fb2005, 0x23128406, 0xfeffff8e, 0x00219182, 0x05274104,
0x2741f583, 0x42338206, 0xd8550506, 0x20ad8405, 0x20b783fd, 0x11274104, 0x4683e584, 0x2a82f984, 0xa4180820, 0x8b20179b, 0x3321fc82, 0x06ea4f34,
0x6666fd22, 0x2906c05e, 0x08ce4cfd, 0xccefffff, 0x208207cc, 0x6582e920, 0x82eeff21, 0x82048553, 0x088b230e, 0xa882067b, 0x8266e621, 0x82fe201d,
0x0000221d, 0x223982e6, 0x8268e6fe, 0x3433223e, 0x231a8208, 0x00ff9899, 0x21056173, 0xbd479a99, 0xfeff2105, 0x25059545, 0x060080c7, 0x4483ffff,
0x4f84ff20, 0x83110021, 0x16002546, 0xe3089a19, 0x00226d82, 0x644db311, 0x0ad26506, 0x8f784b20, 0x0a29520c, 0x9f973320, 0xc8ffff24, 0x35829a19,
0xff7ffe22, 0xa675a383, 0x86fe2008, 0xff082509, 0xcdccfeff, 0xb8849982, 0x88cccc21, 0x85cd2009, 0xbf6118db, 0x219f880b, 0x6e8204f7, 0x0029eb84,
0x8cae0700, 0x0f0000ff, 0x2c04825c, 0xff0866e6, 0x9a994500, 0xdfffff07, 0x0ae218f5, 0xaaa518af, 0x1725420c, 0x1921e482, 0x21e31898, 0x85ff3516,
0xff0666e6, 0x9a99d9ff, 0x00ff05cb, 0xffcccc50, 0xcc4c4300, 0x07220a82, 0x2750cecc, 0xe6ff2406, 0x82839766, 0xce4c3c0b, 0x8affff08, 0x00ff9a19,
0x0598995c, 0x80f0ffff, 0x0b00ff00, 0xffff0180, 0x8233b3ed, 0x99992204, 0x26148296, 0xff0866e6, 0x82333c00, 0x7ead2010, 0x2582054e, 0xccb8ff35,
0xff8505cc, 0x68e6faff, 0x99fdffff, 0xf8ffff9a, 0x82903233, 0x26528305, 0xcc4c1f00, 0x82cbffff, 0xffff2421, 0x4834b399, 0x57200960, 0x69aee318,
0x4118ba67, 0x06200a5f, 0x2bd49968, 0x343308ff, 0x801700ff, 0x07c31500, 0x5c05a65c, 0x5b22109f, 0x675cff06, 0x07532215, 0x201a8f53, 0x05455dcd,
0x495b0821, 0x33200a20, 0x08275186, 0x088bcdcc, 0x975306c3, 0x5dbb201a, 0xc3221700, 0x1a97c307, 0xb485bb20, 0xb488cd20, 0xf72b6c82, 0x088b3433,
0xfb0e0653, 0x1954f770, 0x231b6220, 0x070a57dd, 0x5a6d5618, 0x9a99ea2f, 0x191000ff, 0xe5ffff9a, 0x00ff0080, 0x23048209, 0x9a19e3ff, 0x230ded7d,
0x34b3c6ff, 0x64051064, 0xff251717, 0x66e61c00, 0x05717a8b, 0x8f7a4484, 0x18588205, 0x183e4d43, 0x217f8d56, 0xc082e23a, 0x81662220, 0xa9891807,
0xff522609, 0x33b31100, 0x2a1c828b, 0x07280000, 0xf730fb0e, 0x64158bf4, 0x807005ec, 0xa4b02d05, 0xb0f1ffff, 0xffff8ba4, 0x085c4fee, 0x9c520685,
0xf2ff2305, 0x9c520a97, 0xd4f72206, 0x85098506, 0x0e002119, 0x00233b83, 0x823eca10, 0x82068330, 0x34b32642, 0x350f00ff, 0x2e4682c2, 0x088bcc4c,
0x84f7c4fb, 0x0604f715, 0x7c90ffff, 0x631805a2, 0x55890940, 0xff255296, 0x9a196f00, 0x213c8307, 0x98831100, 0x77826d83, 0x8bec5122, 0x72833084,
0xa2b01122, 0xba827282, 0x4c0e0023, 0x82b984ce, 0x06042172, 0x82059346, 0x211c8734, 0x1c86ec51, 0x210da06d, 0xe783f6a8, 0x08ea5126, 0xfb0704fb,
0x8c71a483, 0x0a0b4106, 0x82ec5121, 0xeeff2367, 0xf185eb51, 0xaef1ff23, 0x287d8415, 0xaf0e088b, 0x44f894f7, 0x2c8c8215, 0xff64fb06, 0x00800400,
0x2d0600ff, 0x26048250, 0x00ff34b3, 0x7b801902, 0x0a8206ac, 0x72ff7221, 0x2a0805cf, 0x8f7889fd, 0x47faffff, 0x74f7086e, 0x06c0feff, 0x00ff05a8,
0xff666603, 0x9819fbff, 0x660000ff, 0xf9ffff68, 0xffff9a99, 0x82cc4cfd, 0x34b32226, 0x210a8208, 0x0a833233, 0xf9200482, 0xff215682, 0x7e0483fc,
0x7261055d, 0x82342005, 0x61f820c1, 0xd960058c, 0xd4f72607, 0xd4ffff07, 0x29478219, 0x15c275af, 0xfeffff92, 0x9f82d823, 0x8266e621, 0x32b3215d,
0x59822f83, 0x4474fb21, 0xd8180730, 0xfb220fcd, 0x71820614, 0x82cd4c21, 0xb8fa2228, 0x83a08251, 0x23fd2238, 0x224282d7, 0x82089a19, 0x830a8491,
0xfaff2214, 0x82ed82e1, 0x02002368, 0x61847bd4, 0x7f24f282, 0x74f771fd, 0x9921d783, 0x211c8299, 0xfa820a57, 0x82676621, 0x7c142145, 0xd6228984,
0x9d828b08, 0x359e3128, 0x3dccfeff, 0x4e821572, 0xff482124, 0xe5820a00, 0xac070023, 0x83098208, 0x990a2a4e, 0xff088b9a, 0xb0c71502, 0x22118206,
0x828b9899, 0x20f88344, 0x2b8a84f5, 0xffff9819, 0x08ceccf5, 0xf1ffff87, 0x2e053247, 0xffff6866, 0xffceccc8, 0x32b3cdff, 0x83d9ffff, 0x84c62025,
0xc9fe2942, 0xff069a19, 0x1e85c7ff, 0xcd25cd82, 0x00ff66a6, 0x085f8226, 0x7af0ff27, 0x3700ff1d, 0xff083233, 0x93f8fbff, 0x660e00ff, 0xfb0e0568,
0xe000ffb0, 0x00ff0080, 0x159a996e, 0xa80f00ff, 0x211882f6, 0x8082ae47, 0xff146e26, 0x0ad71200, 0xb527c482, 0x1600ffc3, 0x820834b3, 0x82752019,
0x7058310a, 0xb0ffffa4, 0x00ffb8de, 0xffc2f517, 0x85abcbff, 0xcc213782, 0x215682cc, 0x6b8266f3, 0x48e10328, 0xc4ffff05, 0x3e8252f8, 0x82cc4c21,
0x212e826b, 0xa7820b00, 0xb8030022, 0x16221382, 0x4882289c, 0xf0870131, 0x580900ff, 0x0400ff12, 0x00ff1b2f, 0x8292d806, 0xb97e26ec, 0x5e0500ff,
0x221e82b8, 0x8271bd0e, 0x5c8f2681, 0x331900ff, 0x20818233, 0x2209824f, 0x823e4a1d, 0xb628214c, 0x0a201e82, 0xff221e82, 0xb58240fe, 0xb89e0d31,
0x10fcffff, 0x1100ff62, 0xffffcd4c, 0x82eea7f9, 0x9410221e, 0x2092827b, 0x228c8312, 0x82227008, 0x820f205d, 0x9f10223e, 0x211a823a, 0x6d820f06,
0x0c971027, 0x79f7ffff, 0x26a08258, 0xffff4861, 0x82c06aef, 0x0a172123, 0xea22c082, 0x8782299c, 0x828cd721, 0x3e0a2114, 0xc72b9b82, 0xf1ffff2c,
0x00ffeb11, 0x82a47002, 0x87d1221e, 0x251e82ae, 0xfffff0c7, 0x77825ed6, 0x12c0f825, 0x82e3ffff, 0xebff23a0, 0x1e825a47, 0xdf82ea20, 0xb8f0ff27,
0xf2ffff94, 0x22578281, 0x824621ea, 0x93b826b0, 0xe8e5ffff, 0x2d1e82f6, 0xffcb21f9, 0x48e1d5ff, 0x050f00ff, 0x907eff60, 0xa1152705, 0xedffff89,
0x1e82cc4c, 0xaf82f020, 0x99f2ff2b, 0xf5ffff9a, 0xffff3789, 0x27cf83ec, 0xffae47fc, 0xcd4ce9ff, 0xf13b1e82, 0xffff58b9, 0xff9a99a8, 0x33f34f00,
0x33e7ffff, 0x2600ff32, 0xffff0a57, 0x829a19f4, 0xfd0c2dd8, 0xfcffff71, 0xff057208, 0xc3b54000, 0x702b3e82, 0x0c00ffa4, 0xffffc235, 0x4d5278f6,
0xe422068f, 0x48820080, 0x9183fe20, 0xe04ff822, 0x70212e82, 0x213e8263, 0xed8220f0, 0xff23f782, 0x820a97f8, 0xbaf0311e, 0xf9ffffe1, 0xffff1018,
0xff9042ea, 0x0080feff, 0x9c266c82, 0x0300ff28, 0x1e82e0ef, 0x8f42ef30, 0xa70200ff, 0xebfffff0, 0x00ff856b, 0x2882d807, 0x7bd4ed25, 0x840600ff,
0x3af622e3, 0x2729821d, 0xff0510b8, 0xe17aefff, 0x27201582, 0xed262982, 0xffffeb91, 0x298298f7, 0x3dcaf922, 0x86841882, 0xe5d0f922, 0xa5830a82,
0xb85e082f, 0x75eeffff, 0x1000ffc2, 0xffffd38d, 0x234883f8, 0x87760900, 0x6721a082, 0x28cf82f0, 0x83cd0c15, 0xe31700ff, 0x21cb82d7, 0x098248e1,
0x827b1421, 0xb85e211a, 0x3520f583, 0xfd27ea82, 0x00ff10f8, 0x8215ee0b, 0xbeff21ac, 0x66220982, 0x1a828b66, 0x852b1737, 0x1500ff8b, 0x00ff291c,
0xff322804, 0xb81e1200, 0x2e0800ff, 0x251a82d8, 0xff33f31f, 0x7a830e00, 0x82941421, 0x4f1a2ab9, 0x0500ff5c, 0x00ff717d, 0x2b548421, 0xff2bdc06,
0xbce92900, 0xb3f1ffff, 0x1b252882, 0xffffce4c, 0x270983e9, 0x0866e612, 0x5460ffff, 0x60373382, 0xff159999, 0x924d0300, 0x471400ff, 0x1100ffae,
0x00ffc1ea, 0x82ecd107, 0x82de20c3, 0xf0022267, 0x276782a3, 0xff01ed00, 0xfeb5ffff, 0xe2276c82, 0xfbffff5b, 0x838be56f, 0x149f4199, 0xff527826,
0x5178e4ff, 0xfc3b5f82, 0xffff81b5, 0xffcccceb, 0xc72beeff, 0x21f8ffff, 0xefffff48, 0xffffa430, 0x82ae07fd, 0x83fa2c1e, 0x0100ff12, 0xfffffabe,
0x827dffe8, 0x0c022173, 0xff235483, 0x8251f8c4, 0x6a5121e3, 0x2e116f43, 0x0e089999, 0x14f7b4f7, 0x0754f715, 0x820674fb, 0x0a572756, 0xf1ffff8b,
0x9782f6a8, 0x8b666622, 0x9922bc82, 0x0685089a, 0x57211182, 0x8216840a, 0xf6a82615, 0x04f8088b, 0x8bac1806, 0x82fc202d, 0xdcff2330, 0x618252b8,
0xae47e322, 0x14acb118, 0xea82b820, 0xcc4ce32e, 0x472300ff, 0xff088bae, 0x06e10200, 0x0f366482, 0xffff9042, 0xffe23aa5, 0x01c04e00, 0xc5baffff,
0x5f00ff1e, 0x20830a17, 0x60052025, 0x18f32b06, 0x210c4c4d, 0x51180a00, 0x81180c0f, 0x0a220831, 0xc11870bd, 0xff20120a, 0x0c318118, 0x33b3f227,
0x4cf5ffff, 0x820486cd, 0x2764830e, 0xff9a9921, 0x9a9948ff, 0xfb276682, 0xffff0040, 0x42d8a3f3, 0xf22c06be, 0x00ff281c, 0xffbe5f0c, 0xe23afbff,
0x0535af82, 0xffff21b0, 0x05e0cffd, 0x3bf4ffff, 0xfeffff64, 0xffff0a82, 0x225483f6, 0x82ce4cf6, 0xccf322f7, 0x9fc118cc, 0x82d32017, 0x07462ee8,
0xffff07ae, 0xffb89ec0, 0x48611800, 0x30698205, 0x00ff15ae, 0xffa4b004, 0x9919f2ff, 0xccfaffff, 0x216982cc, 0x0e823433, 0x0834b325, 0x821d01ff,
0x70002398, 0x988232b3, 0x8273ff27, 0xc10500ff, 0x21738206, 0x09820a59, 0x82945821, 0x12e32109, 0x8c2a0982, 0xffff08cc, 0xff666683, 0x5383a5ff,
0x5f000022, 0xfd27c282, 0x00ff9498, 0x82025e00, 0x0a9721ad, 0xfd239882, 0x8208f47d, 0x29fe2706, 0xfffffffc, 0x3b8280a9, 0x82904221, 0x7ecc2109,
0x38260982, 0x00ff0810, 0x4082265a, 0xa4f0d733, 0x1b00ff05, 0x00ff2e2a, 0x9a803522, 0x662c00ff, 0x82908268, 0x30002304, 0x66829819, 0xa0836020,
0x9a998122, 0x21089082, 0x0786ebbd, 0x3a2500ff, 0x0300ffe2, 0x00ffee5c, 0xff5ccf21, 0xdeef0e00, 0xe61a00ff, 0x1600ff66, 0x2f82f6e8, 0xf6a8af27,
0xb52300ff, 0x22ea82c2, 0x829a19fb, 0xf628244a, 0x82f9ffff, 0xfcff211f, 0xf920b083, 0xfd220483, 0x7f829a99, 0x14829120, 0x66af0023, 0x2c598267,
0xff3433e4, 0xcd4c4100, 0xb3bcffff, 0x26838332, 0xb5ffff66, 0x828b9a99, 0x90f7334f, 0x54fb0662, 0xff069b07, 0xae470c00, 0x0b00ff8b, 0x55827a14,
0xff84402b, 0x727d0800, 0x6bf8ffff, 0x304b8202, 0xff041682, 0x47a15e00, 0x24f80e05, 0xffbf01ff, 0x044818ec, 0x9aab270e, 0xeeffff8b, 0x50827a54,
0xaec7ed22, 0x0c26c582, 0xffff0080, 0x7682b3fd, 0x7b820c20, 0xf3fbff22, 0x0b207682, 0xfa221383, 0x4f822045, 0x98190a2d, 0xebfaffff, 0x00ff0584,
0x82cecc0f, 0x21ca8265, 0xbb830600, 0xaec7ec22, 0xff230e85, 0x823433f0, 0x82f8204e, 0x210a8219, 0xd566ff32, 0x99f92105, 0x1982f382, 0x0700ff24,
0xfb7366e6, 0x05002706, 0xff059a19, 0x2982f6ff, 0x82040021, 0xf5ff21f4, 0x02200983, 0xf4202983, 0x2c05d87a, 0x06cc4cfe, 0x33e2ffff, 0xffff8b34,
0x822183e7, 0x820a8204, 0x8b082510, 0x0d00ff75, 0x33247884, 0x1400ff33, 0xf729a283, 0xbf08cdcc, 0x33ebffff, 0x209e8233, 0x2b9e832c, 0xff9919ee,
0xcc4c1d00, 0xb3d4ffff, 0xcf294383, 0xff08cccc, 0x9a99fcff, 0x21458207, 0x1782cccc, 0x4283de20, 0x7283d420, 0x0483d120, 0x8366f121, 0xb3ea229c,
0x2eaf6934, 0x1300ff28, 0xff076666, 0xc183f0ff, 0x8c830320, 0x0482f220, 0x33060026, 0xf3ffff34, 0x08221383, 0x79829a99, 0x1483e820, 0x32b30f22,
0xf120f582, 0x00219582, 0x20a48309, 0x231f83fc, 0xff32b314, 0xcc200e82, 0xe620d482, 0x19848282, 0xb30e0023, 0x054f6134, 0x82030021, 0x0e0021fc,
0xf628b083, 0xff083433, 0x68661700, 0x66216c82, 0x20e88266, 0x2139820a, 0x1a82f8ff, 0x820c0021, 0xfcff212e, 0x00247282, 0x8b66e60c, 0x1b202582,
0xff220682, 0xd8821600, 0x8b220483, 0x108200ff, 0x03201682, 0x8b24aa82, 0xf2ffffa1, 0x13201883, 0xeb208283, 0x08299783, 0x57083233, 0xcc1400ff,
0x219e82ce, 0x8f8233d3, 0x75821120, 0x82e2ff21, 0x2b002355, 0x3e82cc4c, 0x7b823020, 0x33200682, 0x00211682, 0x25328321, 0xff90022c, 0x09832e00,
0xaec70f22, 0x16225982, 0x2762c235, 0x18862005, 0x2908f94a, 0x1100ff7a, 0x088b34b3, 0x0082ff8b, 0xff05ec2a, 0x140070fe, 0x00c0ffff, 0x100aec76,
0x05018a21, 0x94f80e2c, 0x8b15b4f7, 0xb3dcffff, 0x3a5aff33, 0x83cd2007, 0x8b34300e, 0x063cfb08, 0x00ff074b, 0x069a192e, 0x181500ff, 0x31081057,
0x9a19e6ff, 0xe6f0ffff, 0xf1ffff66, 0xff08cccc, 0x0f83b9ff, 0x05290482, 0x80f7ffff, 0xf6ffff00, 0x211f8399, 0x5682cccc, 0xe76b0a83, 0x24208206,
0xe64600ff, 0x82258266, 0x00ff2836, 0xff34330e, 0x82b30a00, 0x82192004, 0x205f844a, 0x216c8508, 0x798207cb, 0xa6218382, 0x23418266, 0xff9a59e3,
0x0a501c19, 0x8b07cb23, 0x159f5aff, 0x5c181420, 0x1b5b0c7d, 0x32c3820a, 0x9a9938ff, 0xff1594fb, 0x66668700, 0xff07cb06, 0x8399b8ff, 0x820720d3,
0x080022ad, 0x27928266, 0x66e61000, 0x0300ff9b, 0x0021b982, 0x2a988215, 0x6666faff, 0x661200ff, 0x8ebc0866, 0x834c2056, 0xb3dc24d6, 0x5b4b0834,
0x4b181771, 0x5d5b0c37, 0x21bc850c, 0x575bcc4c, 0x831c2006, 0x592323fc, 0xf7828b9a, 0x82193021, 0xfbff2690, 0xffffcd4c, 0x268483ed, 0xff33b302,
0x82cceaff, 0xe610232a, 0x20827b67, 0xff25a682, 0x9a99f7ff, 0x82bc8505, 0x24cc84d4, 0xefffff9c, 0x31c083e6, 0xff67e615, 0xce4ce9ff, 0x662300ff,
0x00ff8b67, 0xc082e615, 0x32b3162d, 0x00ff9c08, 0x059a1910, 0x186bcb0e, 0xa50af19c, 0x41f82096, 0xfca40f53, 0xcb14f82a, 0xfc07cb15, 0x074b0614,
0xfb234082, 0x4294f734, 0x26541860, 0x26e6410a, 0x06c4f726, 0x332c00ff, 0x20094c5d, 0x07f3602e, 0xff077b24, 0xaa422600, 0xff32210c, 0x2007aa42,
0x53aa4268, 0x9b206c83, 0x20176d53, 0x23fd823b, 0xab94f80e, 0x3420fa85, 0x20085b43, 0x065b43cc, 0x41322442, 0xfb251b8d, 0x1554f7b4, 0xdd4e41fb,
0x2916a544, 0x34fb078b, 0x34f715cb, 0x0882cb06, 0x074b0632, 0x54f78b0e, 0x00ff8b15, 0xff66668d, 0x9a997200, 0x0e820486, 0x84088b21, 0x831b8215,
0x83ff2016, 0xffff2111, 0x08200a82, 0x11875982, 0x1683ff20, 0x2d821584, 0x1b821c83, 0x54854987, 0xd72b4482, 0xffff0080, 0x15666697, 0x821900ff,
0xefff2165, 0x24058d67, 0xffff3433, 0x260f82fb, 0x9a190900, 0x83fdffff, 0x6608227a, 0x21478266, 0x06820d00, 0x0c00ff27, 0x00ff34b3, 0x21258206,
0x25830700, 0x98990a22, 0x0c214b82, 0x27a682e6, 0x0568660f, 0xcc0500ff, 0x22052773, 0x830300ff, 0x33092224, 0x22718232, 0x82686609, 0x0900219f,
0xff213182, 0x822083fc, 0xffff2216, 0x244585fa, 0xffff0868, 0x246c82ee, 0x66e61600, 0x217c8205, 0x60833233, 0xffff3223, 0x201483fc, 0x21818207,
0x2983fdff, 0x66660622, 0xf5202982, 0x19226a83, 0x298267e6, 0x4e82fe20, 0x19040029, 0x00ff879a, 0x8233b302, 0x05df4939, 0x0080fc22, 0xfc24ef82,
0xffffcdcc, 0x89202182, 0x3321c482, 0x26388334, 0xffff9999, 0x82ccccf1, 0x4cfb2138, 0xfa2e1b82, 0x87830080, 0x33f8ffff, 0x0100ff33, 0x21829a99,
0x00223283, 0x4982b300, 0x7983fd20, 0x33b30223, 0x201a8289, 0x223c83b3, 0x820080fb, 0x99192194, 0xf8203c82, 0x00215882, 0x20958309, 0x275182f4,
0x33b30500, 0x7f088b7f, 0xf4207182, 0xfa201383, 0x22835a83, 0x84f6ff21, 0xb3fa23ae, 0x34828433, 0x3f82fe20, 0xe6fdff23, 0x828c8267, 0x82ff20bf,
0x83098297, 0xe6fe2169, 0xdc20d483, 0xef220a83, 0x29823433, 0xe17aeb23, 0x055f63ff, 0x52b8f72f, 0x19e7ffff, 0x0a00ff9a, 0xffffec91, 0x372983eb,
0xae470300, 0xccf9ffff, 0x00ff05ce, 0xff1f0509, 0xcccceeff, 0x071400ff, 0xf72a1482, 0x00ffcecc, 0xff676612, 0x29840500, 0x66660f25, 0x830400ff,
0x060021ef, 0x00217d82, 0x20498302, 0x21048207, 0x8282ffff, 0xff2a1384, 0x08ceccfd, 0xf2ffffb2, 0x4f820080, 0x30820220, 0x33ffff25, 0x8400ff32,
0x82998209, 0x302f8309, 0x089a99fe, 0x00ff068b, 0xffcc4c3a, 0x9a19da00, 0x83a08215, 0x830a2051, 0x80f22230, 0x05ea4101, 0x2005d97e, 0x20f584fd,
0x231e82d9, 0xcc4cf8ff, 0xf020cf82, 0xfc22da83, 0xef8668e6, 0x9819eb27, 0x330e00ff, 0x2cc48233, 0xff0834b3, 0xcdcc2a00, 0xe6ecffff, 0x207f8266,
0x82158305, 0x83c08291, 0x83fe203e, 0x990523d9, 0x25828b9a, 0x67e61d22, 0x0e237f82, 0x548b3233, 0x00260513, 0xff343311, 0xc783f5ff, 0x98190a26,
0xe9ffff08, 0x16222c83, 0x70823433, 0x1a82f620, 0x80cefe25, 0x579b1500, 0x5b5817a8, 0x587b2016, 0xcc220f40, 0x5c75ff8b, 0x00ff221b, 0x246a82a7,
0x9a199500, 0x29dc8215, 0x00ff3233, 0xffcc4c08, 0x9583f6ff, 0x9a990422, 0xba423b82, 0x82082006, 0x82b3200a, 0x82fd20af, 0xfbff2323, 0x23866666,
0xb3820220, 0x99f7ff26, 0x7393089a, 0x0222fd82, 0x2685cecc, 0x20057843, 0x214a82fc, 0x2b820800, 0xe6010024, 0x5a850866, 0x23830020, 0x82030021,
0x2223854a, 0x829a19fe, 0x66662418, 0x82a38308, 0x19ec26f7, 0xafffff98, 0x218c8299, 0x4f180600, 0x6b2132b4, 0x1843826b, 0x2733554f, 0x0e05abab,
0xef00ffef, 0x01248c82, 0x1534331d, 0x992a9282, 0x0200ff99, 0xff9332b3, 0xa2840000, 0x8bcd4c23, 0x05915608, 0x8b9a1923, 0x058858ff, 0x18e6fb21,
0x22072fc3, 0x8234b3f8, 0x990021e0, 0x0022cc82, 0x338232b3, 0x34200985, 0x0e860982, 0xcbcb0828, 0x0c00ff05, 0x04820080, 0xff1e8526, 0x32331400,
0x0f834682, 0x7af3ff23, 0x03a218e2, 0x00c0231d, 0x80434b02, 0x4cff2207, 0x265482cd, 0xffff3233, 0x826766ff, 0xce4c2104, 0x66210482, 0x26408266,
0x7f9a1906, 0x820300ff, 0x05db4b93, 0xb7820120, 0xe6f1ff22, 0x40221a83, 0xf77bcc4c, 0x064b222e, 0x059b4d8b, 0x83ffff21, 0x66f62746, 0xfeffff66,
0x1382cc4c, 0x829a9921, 0x8399206b, 0xcc87220f, 0x18d282cc, 0x2786989c, 0xff3e4ac8, 0xe04f62ff, 0xb02e9182, 0x00ff66e6, 0x15cccc42, 0x70fcffff,
0xc88207a4, 0x9042f025, 0x83f3ffff, 0x2f0484be, 0x8bce4cf0, 0x78ffff08, 0xff06cccc, 0xcd4cf0ff, 0xf32d2182, 0x00ffcd4c, 0x8b34b30c, 0xbd0f00ff,
0x22e18270, 0x825c8f03, 0x35002839, 0x00ff1e05, 0x829a192a, 0xa0fa3004, 0xe63500ff, 0xc0088b66, 0xffffb68b, 0x826005d5, 0xfaca3136, 0x078b08e2,
0x4c00ffff, 0x1534fbcd, 0xcc0000ff, 0x0a204682, 0x02257f83, 0x00ff3333, 0x230e8308, 0x94666603, 0x89205082, 0xff296182, 0x05cdcc93, 0x4c70ffff,
0x2b3382cc, 0xff0080dd, 0x68660300, 0xb3e0ffff, 0x0e252b82, 0xffff6666, 0x2a1383e7, 0x08cccc15, 0xe6c0ffff, 0x82054c67, 0x251182b5, 0x0280f3ff,
0x7f18ffff, 0x7f210bf9, 0x222182fe, 0x82e17af3, 0x008021b3, 0x08f17f18, 0x841f8521, 0x276c820f, 0xcb000040, 0x0100ff05, 0x01207f83, 0xc2838e84,
0x82990121, 0x190222c7, 0x20188299, 0x2062834c, 0x251483f6, 0xffcecc14, 0x6582faff, 0x33170023, 0x254a8232, 0x089a9918, 0x0f72064b, 0x0c4f700e,
0x28111f70, 0x4c4000ff, 0x00ff06cd, 0x34c882af, 0xcccc20ff, 0x7600ff15, 0xff070080, 0xcccc5e00, 0x4cb5ffff, 0x22c882ce, 0x8268e6e6, 0xcccc27df,
0xffff7b6a, 0x16824cdb, 0x6666fc2b, 0x0e078b08, 0x3cf854f7, 0x25778215, 0xff00400d, 0x40820a00, 0xc00a0022, 0x0d230982, 0x198bcd4c, 0x180e5c01,
0x2111d263, 0x4883f5ff, 0x3982f520, 0xb3f2ff23, 0x05ab6034, 0x4861de22, 0x1e347882, 0xffff34b3, 0xffecd1fb, 0x98191c00, 0xebf3ffff, 0x1700ff84,
0xff24e482, 0x08142eee, 0xf4820a82, 0xc0170023, 0x27978200, 0xff32b3f4, 0x5c4f0b00, 0xf6270a82, 0x00ff9a99, 0x82486109, 0x300f228d, 0x210a82a4,
0x04826666, 0x82b85e21, 0x66092230, 0x241a8468, 0x330f00ff, 0x261f8232, 0xffce4c09, 0x839ef6ff, 0x9938211a, 0xc7236082, 0x82056866, 0x22258220,
0x82b3f6ff, 0xf0ff2120, 0xff216182, 0x821a83f6, 0x82082004, 0x4d5b822b, 0xce210790, 0x830f828b, 0x66092276, 0x201a8266, 0x231a82f4, 0xce4c0b00,
0xe8208182, 0xe822cf83, 0x4b823233, 0x40831120, 0xb282e820, 0x190c0032, 0xe3ffff9a, 0x00ff67e6, 0xff323304, 0xcd4ce1ff, 0x21259082, 0x9b069a99,
0x22898207, 0x4dcd4c0d, 0x0a2206be, 0xc46b33b3, 0x19ff2012, 0x1812c402, 0x6c0f2c95, 0x64180b22, 0x9b2a0ad7, 0xdeffff07, 0xff066666, 0x8c83fbff,
0x9c83e120, 0x66e6f322, 0x68238c83, 0x83eeffff, 0x82a0828c, 0xb317248c, 0x85ffff34, 0x660b23b6, 0xcc85ff66, 0x4c090023, 0x064341ce, 0x82063341,
0xf6ff231a, 0x4e419a99, 0x220a8206, 0x41ff8b98, 0xb3260b28, 0xffff0832, 0x5b8266c7, 0x05200482, 0x41052341, 0xf0220543, 0x2a82cecc, 0x9899f622,
0x68205083, 0x26064e41, 0x66660900, 0x8200ff8b, 0x8266865c, 0x205b8270, 0x2276830b, 0x8266660b, 0x21928240, 0x9c8200ff, 0x80210a83, 0x21b28600,
0x6082e6e3, 0xd084c684, 0x4f82da82, 0x0722e682, 0x3e41069b, 0x09136d05, 0xf2237382, 0x850834b3, 0x41ff2006, 0x3b230f35, 0x6dffff06, 0x3741098c,
0x2294820a, 0x83cc4c0d, 0x85332046, 0x0d00254b, 0x088bcd4c, 0x21285f83, 0xff079a99, 0xcd4ce1ff, 0x2306cc41, 0xff66e6e3, 0x2005e041, 0x29a082e8,
0xcecc1100, 0xe8ffff08, 0x4e413333, 0x24298208, 0x34b3f4ff, 0x21e28305, 0x5c42ff67, 0x8299200d, 0x9a99210f, 0x23095c42, 0xf0ffff98, 0x2005ed4f,
0x227882b3, 0x82686609, 0x66c7211a, 0x38236082, 0x82059899, 0xb89e212b, 0x4c214582, 0x083341ce, 0x41486121, 0x0022064e, 0x1a835e09, 0x0f222a83,
0x1f823333, 0xb95e0922, 0x00245b86, 0xff5c4f0b, 0x32208182, 0x17278182, 0x00ff00c0, 0x82cecc17, 0x2eee224b, 0x06504314, 0x85ebf322, 0x27066443,
0xffebd1fb, 0x34b31e00, 0xde257582, 0x7b064761, 0x08374107, 0x41004021, 0x6918063c, 0x354110f2, 0x42db200a, 0x678309cd, 0x2005cd42, 0xf8971840,
0xcd4c2110, 0x332e5684, 0xff077b08, 0xb99e2100, 0x0400ff06, 0x7883152e, 0x0c22f382, 0x8c837b14, 0x00ff9925, 0x84ecd111, 0x208c82a0, 0x867e82e8,
0xb0f422b6, 0x23cc86a4, 0xb89ef6ff, 0xff24e284, 0x5ccff0ff, 0xf6235282, 0x51ff48a1, 0x1a830621, 0x68200a82, 0x270d2841, 0xff08ce4c, 0x9a993800,
0x98210483, 0x212b8205, 0x0482cd4c, 0xffb85e26, 0x34330f00, 0x09222a82, 0x50826666, 0x8248a121, 0x66092225, 0x420a8467, 0x992009de, 0x46200f83,
0xf4228c82, 0x818233b3, 0x82a4b021, 0xcc172440, 0x82ffffcd, 0x210a839c, 0xb2860080, 0x82191c21, 0x140c2260, 0x22d0867c, 0x82142e04, 0x9e21244f,
0x427b07b8, 0xbd210e6d, 0x2b738270, 0x0890420d, 0xfb8b078b, 0xffff152c, 0x8217786b, 0x00ff2217, 0x21608215, 0x0482eaff, 0x801a0024, 0x52828b00,
0x82145873, 0x13d46b51, 0x8304f721, 0x18002060, 0x700a636d, 0x4c210d18, 0x05de41cc, 0x67180020, 0x0e243766, 0x8600ffef, 0x0129f882, 0x15842b70,
0x332100ff, 0x21048233, 0x64414821, 0x4133200e, 0x992c4a64, 0x140c00ff, 0x1d00ff7c, 0x00ffcecc, 0x2b0d6441, 0x8b9a99f3, 0x66f4ffff, 0x0a00ff66,
0x29096441, 0x400d00ff, 0x0b00ff00, 0x16829a99, 0x82ecbf21, 0x6666283e, 0x00ff088b, 0x4466e650, 0x40210e36, 0x0a937114, 0x4170bd21, 0xff23051a,
0x459042f5, 0x08240565, 0xffff067b, 0x2098a446, 0x0d35549c, 0x26aca446, 0xffceccfc, 0x7eb3e8ff, 0xff260697, 0xff9819ea, 0x0e83f4ff, 0x0080ec26,
0x9e00ff08, 0xff23cc82, 0x4a9a9983, 0x5f2789b3, 0xffff3e4a, 0x823048b5, 0x190f2b91, 0x7affff99, 0xff157c54, 0x0a83fc00, 0xcc4c392c, 0xeeffff05,
0xffff6866, 0x0482e6f6, 0xbc83ec20, 0x0483f920, 0x914deb20, 0x33b44609, 0xafffff27, 0xff069a19, 0x0be542ff, 0x0f336b18, 0x2106e542, 0xe54234b3,
0x09b84606, 0x3233e222, 0x2008b846, 0x4eb84667, 0x828bcd21, 0x15b846eb, 0x0021f282, 0x0ab84609, 0x46666621, 0x662008b8, 0x09208682, 0x2105b846,
0x94458b34, 0x06634805, 0x00800a22, 0x2306eb45, 0x99991800, 0x2108b846, 0x0a823333, 0xf3211a83, 0x283a82e6, 0xff98191c, 0xcdccfbff, 0x06b846ff,
0xff7fdd22, 0x200ab846, 0x472c82f6, 0xf12905f5, 0x088bcccc, 0xa3f3ffff, 0x23a582d7, 0xff295cf4, 0x2214b846, 0x47d7a30b, 0x0c2206f5, 0x2f82295c,
0x460e0021, 0x5f820519, 0x280a8649, 0x00ff077b, 0x06018022, 0x053c6bff, 0x824c0621, 0x8201207d, 0x06002669, 0x00ff9919, 0x829b8201, 0x089a3209,
0x0e058b8b, 0x01ff8af8, 0x15b85e86, 0x4c1500ff, 0x280482cc, 0xff7c0040, 0x48612400, 0x295c826d, 0x866b43fe, 0xe1ffff06, 0x9282b2fd, 0xbefff027,
0x9edbffff, 0x362383b8, 0xeaffff83, 0xf70800c0, 0x056afb6a, 0xa14fffff, 0xffff0748, 0x19ba09d0, 0x200ce30b, 0x72b218ff, 0x18f7200c, 0x2a0863bb,
0xff04d6f8, 0x04d60800, 0x18f7088b, 0x25186bb4, 0x1a00ff8b, 0x64829082, 0x00280482, 0xff707d15, 0xd663e6ff, 0xff299082, 0x0666e6d0, 0x66b000ff,
0x08e08266, 0x3433d420, 0xf8d500ff, 0x8afb0552, 0x8764ffff, 0xffff15ae, 0xff66e66a, 0x9a199500, 0x2a01ff05, 0x8e82cc4c, 0xcecc6a22, 0x052c1584,
0xff01ff0e, 0x00ff9a19, 0x1566e650, 0x2e053977, 0x05d5ffff, 0xdcffff1e, 0xffff142e, 0x8348e1cb, 0x8506835d, 0x23002316, 0x8482ecd1, 0xae472b23,
0x20068208, 0x2d23822c, 0xe2fa2a00, 0xeb2200ff, 0x3400ff86, 0x2d82b81e, 0x470b0023, 0x3c1b82ae, 0xff86ab0a, 0x7a14feff, 0x0f0a00ff, 0xfdffff5c,
0xff08a205, 0xb0b29100, 0xfffeff07, 0x20b882fd, 0x298d83b4, 0x69ffffff, 0xe62fffff, 0x09820566, 0xff311a24, 0xa882d3ff, 0x83d5ff21, 0x82dc2004,
0xcaff23c5, 0x51829919, 0xff240684, 0xcdccd6ff, 0x0e526f18, 0xe1207f86, 0x0c217f9e, 0x237f87cd, 0x074a4ce7, 0x0c229b82, 0x968352f8, 0x00ff5d3b,
0xfff6a80d, 0x99590c00, 0xe30300ff, 0x01ff08d8, 0xff98193f, 0x707d5e00, 0x2b108205, 0x00ff727d, 0xff18d400, 0x32330500, 0xa9260982, 0x0200ff58,
0x8f8234b3, 0xa8110023, 0x214582f6, 0xd7824f0e, 0x4083f120, 0xae070028, 0x59eeffff, 0xc582089a, 0xff9a1936, 0xd6e3b0fe, 0x01ff0e05, 0xffcc4cf4,
0xcc4c0400, 0x88ffff15, 0x77220a83, 0x578234b3, 0x82381b21, 0x6828217c, 0x0d317782, 0x00ff146e, 0xff707d32, 0x5ccff8ff, 0xcc3500ff, 0x214082ce,
0x7682bdf3, 0x8e825b32, 0x4a00ff40, 0xffff5278, 0xff6766a4, 0xd6980b00, 0x77201a82, 0x11272583, 0xffffa63b, 0x83e17a8d, 0xffe02b04, 0xe83b1100,
0xcf77ffff, 0x2482085d, 0x829a9921, 0x295c212e, 0x7a2e3882, 0xb4ffffe2, 0x00ffa4f0, 0xff1f855b, 0x5883f3ff, 0xcd205e82, 0x9e206883, 0x80217282,
0x20f98201, 0x279c826c, 0xff646628, 0x58391b00, 0x9c823d82, 0xce20a683, 0x0f2ca182, 0xffffb89e, 0xff4861f0, 0x7c541900, 0x0f83e882, 0x04820020,
0x0f272582, 0x00ff249b, 0x82d4a30f, 0x5d192015, 0x4082050a, 0x98990f2e, 0x5afeff08, 0x00ffcecc, 0x1534b3eb, 0x46271b82, 0x00ff7c94, 0x83856b39,
0xff842204, 0x200e8200, 0x833c828b, 0x22118506, 0x8294c6ff, 0xb9ff2658, 0x8b08846b, 0x200683ff, 0x201182ff, 0x2004837a, 0x200e837c, 0x822d8286,
0x82862015, 0x94c6221b, 0x21328279, 0x54836666, 0x089a9930, 0x01ff8b0e, 0x159a1901, 0xcc0500ff, 0x148207cc, 0x66e64522, 0xe582d082, 0x823b0021,
0x440022b5, 0x22b582e1, 0x82e27a0b, 0x2c22086d, 0x00ff34b3, 0xff0a9707, 0xcc4c2f00, 0x23f1ffff, 0x2000ffd8, 0xffff9a99, 0x089a59df, 0xf4ffff97,
0xeb821e05, 0x9a190b27, 0xfa0b00ff, 0x220a82e2, 0x82008021, 0x82a62021, 0x662e214f, 0x0e250482, 0x00ff28dc, 0x2630832d, 0x08f668f8, 0x824400ff,
0xf4ff2369, 0x6e821e85, 0xff232882, 0x824861c4, 0x19ba289e, 0xffff089a, 0x823433fa, 0xd6ff218b, 0xee211783, 0x206c82cc, 0x207183d8, 0x223b83e1,
0x8234b3e3, 0x4c4b3620, 0x57ffffce, 0xff05cc4c, 0x0080f8ff, 0xf6ffff84, 0xffff9819, 0x237b82fc, 0x34b3f5ff, 0xf522ed83, 0xf65133b3, 0x05475206,
0x92202682, 0x4a263883, 0xa800ff3d, 0x388234b3, 0xd7a3e122, 0x2506bf7b, 0xff32c5ee, 0x37822700, 0x2900ff24, 0x25820080, 0xecffff34, 0xaf0e058b,
0x337d01ff, 0x2901ff34, 0xff1534b3, 0xfe828f00, 0x5773ff20, 0xe60b2805, 0xfeffff64, 0x5495cc4c, 0x00210554, 0x20a28303, 0x823983f4, 0xffd0250a,
0x6766f4ff, 0x24838c82, 0xf882f320, 0x66f7ff23, 0x21288268, 0x58826766, 0x29839720, 0x82cc9921, 0x180021b7, 0x6d28cd83, 0x8d056666, 0xfbffff7f,
0xf323b983, 0x8281cecc, 0x66e621cf, 0xcf842882, 0x82e6f821, 0x83f22038, 0x83ff2004, 0x4cf525de, 0x0500ffcc, 0x7f20ff84, 0x00233c82, 0x82008044,
0xb37f25c6, 0xbbffff33, 0xf5210a84, 0x200a8233, 0x272582fa, 0x66e6f2ff, 0xe60000ff, 0xf6203e82, 0x20056756, 0x2a538498, 0x0700ff99, 0xff869a19,
0x82330c00, 0x190225f1, 0xff08979a, 0x00238884, 0x829a9992, 0xc797274b, 0x6600ffae, 0x0a823433, 0xd763f727, 0x990800ff, 0x21c88299, 0x3082a4f0,
0x03207083, 0x0b221e83, 0x34829999, 0x1fc5032c, 0x800b00ff, 0x0900ff00, 0x288252f8, 0x0023e782, 0x5771fd0b, 0x002406a0, 0xff7b948f, 0x2105d472,
0x1a834000, 0x7a548423, 0x21bb8205, 0x3482ce4c, 0x82180421, 0x227f8304, 0x823cfe06, 0x34332258, 0x234f828b, 0x8bcc4c0c, 0x34251683, 0x01f9ffff,
0x252a83c4, 0xf4ffffcc, 0x1a82e8fb, 0x35824020, 0xab7bff2d, 0x2f0e0586, 0x54f774f7, 0x1800ff15, 0x23096074, 0x5c4f3900, 0x46233782, 0x8508a4b0,
0xffff2506, 0xff34b3c6, 0xff221683, 0x5382b9ff, 0xb923f682, 0x838bcd4c, 0x82332016, 0xa4b02104, 0xb9200a82, 0x82051b6c, 0x6a511806, 0x82b02007,
0x6c4620e1, 0x322d0559, 0x155b34b3, 0x999affff, 0xffff0699, 0x285d83a0, 0xd763b2ff, 0x66b2ffff, 0x223a8266, 0x82ce4ca0, 0xecff3268, 0x00ff28dc,
0xff1f850f, 0x5478f0ff, 0x231300ff, 0x24c382d7, 0x34b37a01, 0x250c8306, 0xffffffd6, 0x208250f8, 0x84008021, 0x20998204, 0x05706013, 0x32b35f22,
0xff244984, 0x9a994d00, 0x4c2d5e82, 0x0e088bce, 0x19cf01ff, 0x1534f89a, 0x233d82fc, 0xd763e6ff, 0xea236682, 0x46ff8982, 0x89790ad6, 0x7de52205,
0xc9671870, 0x00ff2709, 0x8b299c19, 0x3382f808, 0x821a0023, 0x20628290, 0x201e8515, 0x05d24670, 0xf4f70828, 0x0000ff07, 0xe0460600, 0x66eb2206,
0x2c3c8366, 0xe4ffff70, 0x088b9a99, 0x0cfcf4fb, 0x27688215, 0xfffe94fb, 0x026bfcff, 0x0e820486, 0x5b088b22, 0x0883f882, 0xf3181385, 0xbb210a5d,
0x205b8207, 0x832c8204, 0x85ff2013, 0x820e8204, 0x2f0023fa, 0x69829a19, 0x17850c83, 0x5e855383, 0x85820820, 0x5b67e626, 0x14f78b05, 0x5b2070e6,
0xe623f883, 0xe9158b67, 0x23e38672, 0x8cfb84f7, 0xf727e483, 0xfffffc29, 0x8604d6f8, 0x230e8204, 0x34fb088b, 0x0c22bd18, 0x2907002c, 0x00ff8bfc,
0x0804d608, 0x088407eb, 0x83ff8821, 0x20048313, 0x22178478, 0x82f7088b, 0x82218332, 0xc305191e, 0x072b210e, 0x2005905c, 0x2369e2ff, 0x5cfb04f7,
0x2017b941, 0x052749ff, 0x2e42ff20, 0x51fd2305, 0x2e42ff68, 0xbb8b220a, 0x332f4205, 0xff075b26, 0x9a19ffff, 0x8d1cbe41, 0x42fc2077, 0x6d850692,
0xa6420820, 0x075b2135, 0x9c1a2e42, 0x22e7946f, 0x439c8403, 0xa6421e17, 0x8b662705, 0x54f80e15, 0x847d34f8, 0x62d42018, 0xf7203112, 0xd0623383,
0x4b8b3117, 0x0634fb15, 0xf70714fb, 0x14f70634, 0x54fb8b07, 0xfb230f8c, 0x8215cb74, 0x21228816, 0x208234fb, 0x13852a85, 0xfb2eaded, 0x33154bbc,
0xe3074b06, 0xc307cb06, 0x0683154b, 0xf7220e83, 0x1688cb84, 0x8214fc21, 0x201888a1, 0x2018897c, 0x212f89cb, 0x46a064fb, 0xf78b0e24, 0x076415f4,
0x41fb2030, 0x9a82359e, 0xd182cb20, 0xd9824b20, 0xcb14f825, 0x8294fb15, 0x94f72108, 0xcc841182, 0x0e2e1ab0, 0xb601ff2f, 0x01ff9a99, 0x159a9956,
0xbd1800ff, 0xfb231882, 0x5994fb94, 0x00200987, 0x290d8759, 0xff080080, 0xd5f87fff, 0x991814f7, 0x80242381, 0x1400ff00, 0x0a819918, 0x00333d83,
0xff527868, 0x32b396ff, 0xea00ff05, 0x00ffcc4c, 0x5cce4ce9, 0xbe180e28, 0x7a2a092c, 0x068b08e2, 0xff70fb0e, 0xb9823601, 0xb9910020, 0x9f82c020,
0x6682f320, 0x0482ff20, 0xf9259982, 0xffffcccc, 0x2a1483f9, 0xffceccf7, 0x66e6fcff, 0x4ef7ffff, 0x068305c9, 0xd1250c82, 0x0300ffec, 0x26358220,
0xff90c2f9, 0x83400600, 0x9e9627cf, 0x6900ffb8, 0xd2823453, 0x48a19622, 0x46859c86, 0x34b3f922, 0xcf213482, 0x224b875c, 0x828b5ccf, 0x82f72066,
0x21168206, 0x4b82ebd1, 0x829a1921, 0x82be2071, 0x4c062240, 0x821a82cc, 0x18ff2087, 0x2007959a, 0x5dfe8240, 0xf8840500, 0x67666922, 0x66216682,
0x21668366, 0x0a829999, 0x419a5921, 0x30960667, 0xff213b87, 0x44971800, 0x22e88509, 0x82606900, 0x8c9623c2, 0x518405cd, 0x67200483, 0x0d179918,
0x97184020, 0x308607e0, 0x410bee41, 0x96210e34, 0x82c28299, 0x21408204, 0x0a835969, 0x4d66a621, 0x29083947, 0x00ff1ec5, 0xffcc8c5b, 0x34f3b4ff,
0x734a00ff, 0xa4ffff34, 0x00ff4861, 0x0898990b, 0xcc77ffff, 0x1100ffcd, 0xffff723d, 0xc082808d, 0xe27a8d22, 0x4c210e82, 0x211882cd, 0x4b4d47e1,
0x5278210d, 0x26074b4d, 0xffffaf87, 0x82ccccf3, 0xcf35271e, 0xf8ffff5c, 0xbe4d1acf, 0x0d002d05, 0x00ff0e6d, 0xff686628, 0x9a391b00, 0x20244b4d,
0x272582a4, 0xffec910f, 0x508a0f00, 0x22114b4d, 0x82b32bff, 0xb3d328b2, 0xffff1534, 0x789a19c7, 0xf2270568, 0xffff70bd, 0x838f42f5, 0x51902004,
0xc782050f, 0x21140559, 0x378307c3, 0x82069921, 0x99992225, 0x8230828b, 0x0a0023d8, 0x698233b3, 0xcd4c0d23, 0x08ba5a08, 0x5171bd21, 0x38250d33,
0xc30667e6, 0x05dc5607, 0x1e841982, 0x00207582, 0x83065251, 0x00ff2906, 0xffd7a30b, 0xcc4cf5ff, 0xf2265782, 0x530834b3, 0x5c61c307, 0x820a2008,
0x0a6d51b6, 0x33202184, 0x2108bc59, 0x2a5cffcd, 0x38194f05, 0x22c6d141, 0x419a195f, 0xf7212e99, 0x2f624134, 0xf7b4f724, 0x5d181554, 0xff21166e,
0x7c5218ff, 0x07605e0c, 0x6c74f721, 0xcd250a42, 0x540e00ff, 0xa18d187a, 0x86ab2114, 0x2506ba6e, 0xfb0774fb, 0x65838b64, 0xcccc9e33, 0xcc4e00ff,
0xb1ffffcd, 0x00ff3433, 0x8b333361, 0x21068308, 0x16838b34, 0x65831b84, 0x554c6120, 0x66362605, 0xe7ffff66, 0x2516824c, 0xff34b330, 0x3283d9ff,
0xcc4c2026, 0xf2ffff08, 0x002e1982, 0xffce4c0b, 0x9a19feff, 0x2b1400ff, 0x0e82ff84, 0x0d222882, 0x50820a97, 0x00201983, 0x19820a82, 0xff323325,
0x82d90100, 0x990d2723, 0xf4ffff9a, 0x1e8234b3, 0xcecc3426, 0x2100ff5f, 0xff238b82, 0x829a99bd, 0xb3b623a4, 0x06820832, 0x22837a20, 0x00809424,
0x0484ffff, 0x00807b22, 0xff209d82, 0x11850683, 0x826b0021, 0x00ff2411, 0x82666685, 0x4900212d, 0x00267e82, 0xff00c021, 0x8d834200, 0x9ad93423,
0x835b82b7, 0x228a8566, 0x82333314, 0x6626219e, 0xcd259983, 0x68f2ffff, 0x221e82f6, 0x8467660a, 0xff8a250a, 0x7cd4ebff, 0x9582c885, 0xd3823220,
0x2f83d920, 0xe883df20, 0xcd4ce727, 0x4ccfffff, 0x2a9282cc, 0x089a99c9, 0xb4f8af0e, 0x191554f8, 0x200e6b06, 0x261d8286, 0x08e03aef, 0x183ffeff,
0x2609b05f, 0xcc4c0e00, 0x82f1ffff, 0x05d36d44, 0x6d05da6d, 0x8b2909ea, 0xc51000ff, 0x01ff0820, 0x051451c1, 0x2e860c82, 0x7a540e22, 0x73826082,
0x14fc0824, 0x5418b4fb, 0x4f830c77, 0x33256c83, 0x34fb0832, 0x20098207, 0x20ef83ed, 0x86a4830e, 0x8b332169, 0x1122da82, 0x5e8233b3, 0x00201683,
0x69874c82, 0x86a10021, 0xcecc2169, 0x33206983, 0xff288b85, 0x8bcd4cee, 0x2b14fb08, 0x7b20d584, 0xf1225382, 0x898485ab, 0x4b206886, 0x54216789,
0x8318847b, 0x831f20b9, 0xc5102267, 0x215c831f, 0x49184821, 0x40220d1a, 0x338266e6, 0x84100021, 0x414c8267, 0xee24050a, 0x088b7b54, 0x077ba018,
0x847a5421, 0x18862068, 0x26071b55, 0x08e23aef, 0x419ffeff, 0x6120323e, 0x3420d48c, 0xcc20d488, 0x4f18d488, 0xff230867, 0x8433b3f1, 0x083323d4,
0xd58994fb, 0x2026a741, 0x20688701, 0x060441cd, 0x824c0e21, 0x82ee2009, 0x0e083e5d, 0xe6ef01ff, 0x1901ff66, 0xff156666, 0xce4c0300, 0x66f7ffff,
0xfdffff66, 0xffff3233, 0x380e83f6, 0xff3433f9, 0x32b3f9ff, 0xd4ffff08, 0xffff32b3, 0x059a99d8, 0x190100ff, 0x2029829a, 0x21b482b3, 0x09839900,
0x82008021, 0x2039829e, 0x22068508, 0x83ffffff, 0x80f72545, 0xfeffff00, 0xff275f82, 0x0834b3f7, 0x832b00ff, 0x22408550, 0x84cccc06, 0x00ff2356,
0x7482cc02, 0xfc206a84, 0x44835f83, 0xfbffff22, 0x08f27b18, 0x6482fa20, 0x80f4ff29, 0xffff8500, 0x829819f5, 0x83fb2085, 0xe6f723f5, 0x3f820568,
0x80666625, 0x83f8ffff, 0x99f5222b, 0x83908298, 0x19f6236a, 0x2c82089a, 0x0b84f820, 0xfd207083, 0xf7208583, 0x6a83d082, 0xc8204082, 0x00231482,
0x82cccc11, 0x83f22040, 0x83f52035, 0x88f02061, 0x83f120fa, 0x66f922da, 0x06d44866, 0xe6c6ff27, 0x82890566, 0x836d8284, 0x83f62067, 0x99fd22b7,
0x221d829a, 0x733433f2, 0xff210544, 0x201483f1, 0x230483fe, 0x8b9a99f0, 0x21055a44, 0x1682ff8b, 0x00ffcd23, 0x22258301, 0x823333f2, 0xcc4c21e8,
0xf6211a82, 0x2a1482cc, 0x84666602, 0x660600ff, 0x86948966, 0x39002366, 0x90829a19, 0x2883f020, 0x68830620, 0x0983f120, 0x09830820, 0x0482f220,
0x840a0021, 0x57c8253c, 0xeeffff0a, 0x21058252, 0xa641f628, 0x00402107, 0xe4835c82, 0x7b14fa25, 0x820700ff, 0xffff33ff, 0xffd7e3f7, 0x66e60900,
0x99f8ffff, 0x0a00ff99, 0xc0826866, 0x96666622, 0xfb276e82, 0x00ffeb51, 0x82981908, 0xeef9226e, 0x201b8214, 0x221b82e6, 0x5252b8fa, 0xff2205b2,
0x1e8291fb, 0x83e60b21, 0xc2fc22ff, 0x8329828f, 0xba02227e, 0x264e82e1, 0x00ff32b3, 0x8229dc06, 0xce4c2604, 0x2b00ff08, 0x221e8242, 0x82666627,
0x82fe2048, 0x05526869, 0x826eff21, 0x80082352, 0x39848b00, 0x06850820, 0x0000ff24, 0x1082ec91, 0x0023a482, 0x829a1901, 0x24ce8409, 0xff71bdd4,
0x21408500, 0xaf8223f9, 0xce4c0622, 0x4525d382, 0x0900ff1f, 0x21248299, 0x1e823d03, 0x32b30822, 0x04226a82, 0x9e82156e, 0x05226483, 0xa8853e4a,
0x0f060023, 0x83bc845c, 0x85ab211e, 0x0029d286, 0x96299c06, 0x660700ff, 0x22f48567, 0x821c0800, 0xd90922af, 0x21258298, 0x2582eb05, 0x68260722,
0xc0265e82, 0x0200ff00, 0x3482e07a, 0x820ad721, 0x142e2172, 0x372d1e82, 0xfffff6a8, 0x05723dee, 0x660d00ff, 0x263e8266, 0x00ff0a57, 0x84cdcc0e,
0x00ff22c8, 0x2609830f, 0x08ae8706, 0x830c00ff, 0x193924c7, 0x828d059a, 0x7a14224a, 0x216f8292, 0x0a82c235, 0xff333324, 0x21840100, 0x2c830d20,
0x1c4f0222, 0x14844082, 0x82743321, 0x00802209, 0x203c828b, 0x8206820e, 0x3433260c, 0xccfeffff, 0x216b828c, 0x8182cccc, 0x82e4b021, 0x8409201a,
0x52782d14, 0xf8ffff92, 0xff8d3eca, 0x86ebf6ff, 0xff236e86, 0x8266e6c6, 0xe60e2798, 0xf9ffff66, 0x8e825278, 0x82062c43, 0x68662640, 0xa8f5ffff,
0x202982f6, 0x23148237, 0x8ec21100, 0x08222982, 0xe282cecc, 0x41ecd121, 0xff2405b6, 0x912085fd, 0xd9215582, 0x22258298, 0x829a1908, 0x6826215a,
0xe782b682, 0x99f5ff29, 0x0600ff98, 0x82809a99, 0xb304211a, 0xf7239682, 0x820568e6, 0x19f5212c, 0x05211782, 0x209d824c, 0x20ef83f4, 0x282b8304,
0x089a19f4, 0xffff078b, 0x4c428310, 0x1b700596, 0x23002709, 0xff8bcccc, 0x23832d00, 0x2b00ff27, 0xffffcd4c, 0x25d182dc, 0x33b32400, 0x8a18ffff,
0xff2a10e3, 0x8bcd4cdb, 0xb3d4ffff, 0x06820833, 0xd882d220, 0x32873f82, 0x33332c22, 0x26d26c18, 0x01ca4710, 0x264618a3, 0x058b2618, 0x4b94f70e,
0x05fe6f15, 0x6fffff21, 0xfe6f0ef7, 0x3e537005, 0xf7732908, 0x838b1594, 0xf8ffff8f, 0x00ff0080, 0xff33b306, 0x6666fcff, 0x6000ff08, 0x054b0100,
0xf7ffff96, 0x00ffcecc, 0x8e66e60e, 0x80221d82, 0x19829600, 0x32330824, 0x13848896, 0x00ff8023, 0x2f2c8307, 0x34b3aaff, 0xcc3800ff, 0x00ff05cd,
0x0733337b, 0x0d209982, 0x240d0c63, 0x8bceccf1, 0x07014d08, 0x6766f422, 0x2d0bb44c, 0xe60000ff, 0x051cfb66, 0x94f7af0e, 0x284bf4f7, 0x1d664907,
0x82cc4c21, 0xb3113063, 0x07cb0834, 0xcc4a00ff, 0x00ff06cc, 0x829a191b, 0x19182813, 0xeeffff9a, 0x6dff84eb, 0xe6220557, 0xb1823473, 0xc3827520,
0x6eb3fe26, 0xff8d0514, 0x2605a970, 0xff981901, 0x82ccf9ff, 0x26058244, 0xff8b08ce, 0x6ae6e1ff, 0xff230676, 0x830080e7, 0x8368200e, 0x993624af,
0x18cb0698, 0x18177f4a, 0x180b2a67, 0x270a7d4a, 0xffff074b, 0x06299c36, 0xd7214482, 0x2759820a, 0xffcd8ce7, 0x00801800, 0x1e209c82, 0x2805fa43,
0xff323306, 0x5c0f0100, 0x057c71ff, 0xb0120227, 0xcc0500ff, 0x37a883cc, 0x01ff5ac4, 0x05ec914c, 0x330800ff, 0x1900ff34, 0xffa4cc8c, 0x7c141100,
0x9920de83, 0x00239182, 0x8267e649, 0xe60028eb, 0xcb054b66, 0x821514fb, 0xb3112254, 0x10b74833, 0x56189a8e, 0x4b200792, 0x4107d079, 0x0e29285c,
0x15eb74f8, 0x807affff, 0x24cf8200, 0xff00c0d2, 0x250482ff, 0xf3ffff05, 0x048634f3, 0x66e6ef27, 0x4cf9ffff, 0x217282cc, 0xa18266e6, 0x82eeff21,
0xffff2306, 0xb882f0ef, 0xf0a70622, 0xe8272582, 0x0c00fff6, 0x84081018, 0x00ff243b, 0x8200402d, 0x20518540, 0x3f6d18ee, 0xf1ff2108, 0x2008ca4c,
0x26a5842b, 0x00ff7a54, 0x827b540e, 0x86ab2ada, 0xab1100ff, 0xf8088b85, 0x8b151954, 0x41eb2017, 0x5b3017a3, 0xffff1523, 0x8bccccf2, 0x33f5ffff,
0x0a00ff34, 0x00210a83, 0x05fb4c0d, 0x11840682, 0x0e820486, 0x1c83bf82, 0x11858b20, 0x38823283, 0x08203e82, 0x44850685, 0x54844984, 0x3928d282,
0x00ff6666, 0x15666651, 0x2205cc41, 0x82b3f9ff, 0x33082665, 0xfcffff33, 0x821982e6, 0x22538309, 0x82343308, 0x2e082253, 0x05655214, 0x3d060023,
0x05655270, 0xf714f728, 0x00ff0514, 0x0f827d0c, 0x00800c22, 0x14272482, 0xffff0040, 0x189082f3, 0x2108f7aa, 0x0a840080, 0xebffff24, 0x868270bd,
0xbc511a83, 0xb6ff2805, 0xffff48a1, 0x823493b6, 0x20a38240, 0x223c8207, 0x4186ab11, 0xd3180630, 0x6c180cc1, 0x65410850, 0xffff210a, 0x0720ef82,
0x99273f82, 0x4900ff9a, 0x83056666, 0x888f2075, 0x8371206a, 0x0941536a, 0x8f82f322, 0xa0831f82, 0xc0ebff22, 0x083eaa18, 0x08008029, 0x0c8000ff,
0x82ffffcc, 0x0e052904, 0x01ff53f8, 0x1500c087, 0x3982fb82, 0x840e0021, 0x343326c9, 0xe60a00ff, 0x26968266, 0x088bcc4c, 0x8206d4fb, 0x5c4f2109,
0x38225d83, 0x29828152, 0x82a47021, 0x82c02010, 0xc2ff2748, 0xffffb8be, 0xce827306, 0x88fdff23, 0x271b8231, 0xffc5c0fe, 0x32b3f5ff, 0xf5282c82,
0xff0834b3, 0xae879fff, 0xff20e582, 0x220ecc5a, 0x5a8f821a, 0xff241bcc, 0x52786000, 0x00283682, 0xffec510a, 0xc4c0feff, 0x47228f82, 0x6382ffae,
0x09823220, 0x828e0221, 0xc2250857, 0x00ff0ab7, 0x05d8a3f8, 0xd8feff2c, 0xfb150040, 0xcb6b0654, 0xc8ffff05, 0xff0652f8, 0xae073000, 0xf70554f7,
0x210a85a2, 0x188654fb, 0x824b6b21, 0xf88425f1, 0x24fb1524, 0xff235d82, 0x825c4fee, 0x83b020c8, 0x820483cd, 0x20ed820e, 0x315b1824, 0x21f8830e,
0x705c1100, 0x22068205, 0x820e00ff, 0x82048535, 0x088b260e, 0x633f00ff, 0x363382d8, 0xffae07e2, 0x34b32700, 0xb8d0ffff, 0x1800ff52, 0xffff7a14,
0x8266a6cd, 0xa7ff2920, 0xff8bf5e8, 0xcd4cb8ff, 0x51210482, 0x230a82ec, 0x0866e6a7, 0xff220685, 0x7a834700, 0xce4cb827, 0x1c5800ff, 0x2c2d8229,
0x47e12200, 0x2100ff8b, 0x00ff6826, 0x2753830b, 0xff98d91b, 0xf6e81400, 0x0e216982, 0x26598238, 0x9fae870a, 0x84fdffff, 0x0a97210a, 0xe021c082,
0x201a8200, 0x200a840a, 0x260f82d7, 0xfff628fd, 0x83f0ebff, 0x00e025d5, 0x68f5ffff, 0xff263982, 0xff52f8d8, 0x9882e2ff, 0xabd1ff27, 0xf0ffff86,
0x2204826b, 0x82f528cf, 0x84ff326f, 0x00ffc395, 0xff460100, 0x00809bff, 0x806400ff, 0x207e8200, 0x05cc4f7b, 0x11840682, 0x0e820486, 0x00233182,
0x82662645, 0xd9402622, 0xdfffff9a, 0x21f58287, 0x0982192a, 0x9a59ca22, 0x46238682, 0x82075238, 0x1528411b, 0x09114918, 0x0ab54918, 0x64f80e28,
0xff1544f8, 0x864eeeff, 0xd249180a, 0xffff2808, 0x07f6e8b5, 0x82d8ffff, 0x37003061, 0xffffec91, 0xffcc4cbf, 0x1e852200, 0x4cb8ffff, 0xa1200598,
0xff22af83, 0xf98217ad, 0x82a8c321, 0xe22108f9, 0xffff71fd, 0x08d623a6, 0x8ffaffff, 0xefffffdf, 0x00ffa530, 0xff293c09, 0x14eeedff, 0xd01000ff,
0x20188221, 0x22ab8399, 0x82d7e310, 0x20f3830a, 0x28338211, 0xdf4f0900, 0x6b0500ff, 0x21238285, 0xca822bc7, 0xf568142a, 0x633f00ff, 0x3a00ffd7,
0x2a202383, 0x42200483, 0x00217384, 0x2d738332, 0x90c22d00, 0x73e7ffff, 0x1c00ff34, 0xa382d623, 0x82cc8c21, 0x99d32373, 0xcc96069a, 0x089f4a18,
0x427a5421, 0x00270576, 0x8b86ab11, 0x4514f708, 0x71420e22, 0x24f72108, 0x50074b41, 0x0e2205bb, 0x25465c4f, 0xff082b05, 0xcccce9ff, 0x66eefeff,
0xe1821566, 0x827a1421, 0x207021b8, 0x0a261b82, 0xf6ffff3e, 0xd68200c0, 0x827c9421, 0xd6382118, 0xeb2a2982, 0xffff9a99, 0xffa4b0c0, 0xc282c5ff,
0x83d5ff21, 0x66bd2304, 0x1a828b66, 0xc783cd20, 0x40d2ff32, 0x1800ff00, 0xffffcc8c, 0xff9ad9e3, 0x34732700, 0x2c22fd82, 0x96846666, 0x458b8521,
0x002005d3, 0xd8417c82, 0x85082005, 0x21c28206, 0x0d4385ab, 0xeeff2605, 0x088b7b54, 0x84c782fb, 0x41198509, 0x6d430ae2, 0x061e4609, 0x1e468c82,
0x05254605, 0xff256190, 0x0a174a00, 0x2e8a8207, 0xffff67e6, 0xfff668c8, 0x34b34000, 0x82ddffff, 0x460021ba, 0x2205734c, 0x8232735e, 0xf3522d87,
0x3c00ff34, 0xffa80a57, 0x2adc5900, 0x0626b682, 0x00ff6666, 0xcb82cc10, 0x3182f620, 0xe6120030, 0xefffff66, 0x00ff3233, 0x08008004, 0xf459af0e,
0x7d54201b, 0x59280ea5, 0xffff8b9a, 0x0866a6dc, 0x821af459, 0x7e228333, 0x34200963, 0x232a9482, 0xf708cc4c, 0x34f707d4, 0xec4734fb, 0x8233200a,
0x05a450e5, 0x088bcd22, 0x200b4254, 0x050951ff, 0xcd4cee23, 0x06705408, 0x44520020, 0x0847491c, 0x85eb8b21, 0x5234205e, 0x5e8e1041, 0x0e287118,
0xfb215ea7, 0x225fdc54, 0x186cf7cb, 0x212ec396, 0xaf6c74f7, 0x11b6700c, 0x4cf5ff24, 0xca6dffcc, 0x74fb240a, 0x8f2b8b06, 0x07846f64, 0xffff8b25,
0x1934b3f2, 0x9e101535, 0x6ecd2064, 0x3320082f, 0x8b213f84, 0x57649408, 0x64b507dd, 0x8211946e, 0x2f0e3264, 0x1594f7db, 0xff8b07bb, 0xae874f00,
0x804000ff, 0x21048200, 0x0e825278, 0x18051243, 0x20140764, 0x529d185b, 0xe3ff230e, 0x9482cd4c, 0x33b3dc25, 0x5e54fb08, 0xfb21176b, 0x7b5318d4,
0x7f592009, 0xf7200ce7, 0x00233383, 0x18cd4c23, 0x2f087f40, 0x2300ff33, 0x088b9a59, 0x8bcb069b, 0x0634f715, 0x2c22a084, 0x294f142e, 0xd1232206,
0x13294fec, 0x737fdc20, 0x075b2508, 0x155bcb0e, 0xf7279282, 0xffff3433, 0x8200c0f8, 0xcccc2904, 0x40f7ffff, 0x6b088b00, 0x08838782, 0x00211885,
0x05934907, 0x08cccc24, 0xbb8264f8, 0x82110021, 0x0e00242d, 0x85ff0040, 0x220e8204, 0x83ff088b, 0x858b2015, 0xf1ff2311, 0x598200c0, 0x0040ee33,
0x0764fc08, 0x4c9c01ff, 0x1584f8cc, 0xa2f9ffff, 0x27168290, 0xffe05af9, 0x66a6feff, 0xab360f82, 0xfdffff86, 0xff08f41d, 0x5c4fd2ff, 0x23ebffff,
0xdeffffd8, 0x76824821, 0xff84eb26, 0x8ec2e3ff, 0xff235782, 0x823e0ac4, 0x26dd3135, 0x1f00ff66, 0xffff2adc, 0xfff6e8ba, 0x8e020000, 0xe7213582,
0x213082a3, 0x3a82ffff, 0x82b3e221, 0x70fb22c5, 0x20fe8242, 0x20598266, 0x395483f5, 0x0080a1fe, 0x00ffab07, 0xffe8fb09, 0xb8de1b00, 0x1d0400ff,
0x1800ffb2, 0x5682e2fa, 0xa1490023, 0x2cae8248, 0xff1e4533, 0x5238e0ff, 0xb34900ff, 0x22168334, 0x82f6e81f, 0x1c242c16, 0x0500ff28, 0x00ff94f8,
0x827c142b, 0x761e21da, 0x0d22e082, 0x4282cc8c, 0xffa4f025, 0x82e60700, 0x800b218c, 0x002ae482, 0x08cc4c0c, 0x5e2d01ff, 0x368207b8, 0x82a11321,
0x4cef21bb, 0x0b262682, 0x8b789a19, 0x41830e08, 0x9a19a022, 0xff30fb82, 0x04fbecfe, 0xffffff05, 0xffffae1a, 0x68ccccd3, 0x1921a982, 0x4c0a829a,
0xe522050a, 0xe482ae87, 0x8278ea21, 0x8f152288, 0x224a825c, 0x8200801a, 0xd77f2272, 0x768c180a, 0x9a99220e, 0x079071ff, 0x7ad40a22, 0x0a202882,
0xff23a082, 0x82ea46fd, 0xd6633ee7, 0x0bfcffff, 0xffff0884, 0xff6866f3, 0xf8936700, 0x66a8ffff, 0x4e00ff66, 0xffff52f8, 0x83698595, 0x25168206,
0xffffd763, 0x8b8207b1, 0xf668f327, 0x6698ffff, 0x2d6d8266, 0x8fd76309, 0x140a00ff, 0x0200ff7b, 0x098234b3, 0x717bd421, 0xff230df8, 0x826666ea,
0x83e520a6, 0x80ff219b, 0x2005a956, 0x249182e5, 0x0080eaff, 0x211c83ff, 0x1b82ffff, 0xff233382, 0x82d7e3d3, 0x02dd2128, 0x23224f82, 0xa68248e1,
0x142e2c22, 0xff289782, 0x00ff9919, 0x05a4f06f, 0x8d211182, 0x2a628233, 0xffcdcc72, 0xcccc7200, 0x598d00ff, 0x8c20057d, 0x1182a582, 0xff217e82,
0x2054838d, 0x230483ff, 0x08343373, 0xff224e82, 0x0585cccc, 0x0000ff38, 0xffff66e6, 0x08ceccff, 0xf770fb0e, 0x1514f8d4, 0xe680feff, 0x1e820766,
0xf827cf84, 0xffffbaa9, 0x827a94f4, 0x3c7f2604, 0xd9faffff, 0x267c829a, 0xffa4f0fa, 0x8228fdff, 0x4cfc22ee, 0x213d82cc, 0x3d7f9a19, 0x4ff82208,
0x223a82e0, 0x827268f8, 0xf0c721f9, 0x02263082, 0x0500ff90, 0x35822050, 0x26827920, 0xe6770029, 0xffff0566, 0x6d842bac, 0x00230c12, 0x82707d15,
0x9c1928c8, 0x00ff082a, 0x82f0e760, 0x1a00217e, 0x2605e26c, 0x1400ff71, 0x82ff0a97, 0x8b8f2b0e, 0x5300ff08, 0xff060ad7, 0xb4828600, 0x00224a85,
0x15826c09, 0x00600827, 0x820d00ff, 0x2174820c, 0x8b543413, 0xfaff2305, 0x19821acf, 0xb0870b2a, 0xa4fcffff, 0x0700ff18, 0xf322aa83, 0xd985a4b0,
0x0e082008, 0x9c01ff2f, 0x01ff9a99, 0x159a190a, 0xb8f5ffff, 0x0800ff52, 0xffff1058, 0xffb8def0, 0x8287feff, 0xa8f721bb, 0xf527e182, 0xff0810b8,
0x8298f7ff, 0xc0f52119, 0x01226582, 0x23820080, 0xff48e125, 0x83470a00, 0x05985a23, 0xff664627, 0x9eaff6ff, 0x05177fff, 0x9999f222, 0x20056b56,
0x24068308, 0xffff5ccf, 0x273583f9, 0xffec91f2, 0xa4b0f4ff, 0xc0212a82, 0x83548200, 0x20598573, 0x215484fe, 0x828242e0, 0x82ae6721, 0x221e838c,
0x82b80400, 0x30fa2273, 0x22548220, 0x8288a8e6, 0xa4f02205, 0x2cd1828b, 0x8b105805, 0x670500ff, 0x0100fff0, 0x260482c7, 0xffa47004, 0x82a00300,
0x16003250, 0x00fff688, 0xffbc7412, 0x66e60c00, 0xe61a00ff, 0x22298266, 0x8234b31c, 0x82002086, 0xffff2406, 0x849a19f3, 0xffff2216, 0x227182e9,
0x82801200, 0x90ff2235, 0x23148299, 0x155c0f93, 0x15839c82, 0xde2f052c, 0x7df2ffff, 0xfdffff70, 0xab82d4ed, 0x827c9421, 0x83a020ff, 0x07792d29,
0x88ffffad, 0xff055819, 0x3333acff, 0x670cc141, 0xe62606fd, 0xff08d663, 0x4042a0ff, 0x82e52005, 0x15002743, 0xffff717d, 0x988268eb, 0x41821a21,
0x4a820ec1, 0x82059a21, 0xc4f527ca, 0x0700ff83, 0x70829899, 0x82343321, 0x053f4409, 0x20700422, 0x042cbd82, 0x00ff6085, 0xff6aee00, 0x76330400,
0xe727f182, 0x00ff08dc, 0x823e8a0b, 0xba292136, 0x2205d441, 0x83660b00, 0x990c26e7, 0x14f8089a, 0x26338207, 0xff0a970c, 0x82b3f8ff, 0x4f0c224a,
0x2cd4865c, 0x08904204, 0x01ffef0e, 0xf79a999c, 0x08ef419e, 0x41805521, 0x882107ef, 0x26e48274, 0xfffff6a8, 0x4124bbf5, 0xc22108ef, 0x2171828e,
0x23820080, 0x41d7e321, 0x9c2107ef, 0x26808329, 0xffff6646, 0x41f4bdf6, 0xf2200cef, 0x22053655, 0x417ad4f1, 0x942107ef, 0x07ef417c, 0x4190c221,
0x9a2308ef, 0x41ffffa0, 0xe52005ef, 0x0822da82, 0x7382ae67, 0xef411e83, 0xaa312106, 0xe6265482, 0xfdffffa8, 0xf3410601, 0xff6c2215, 0x05f34100,
0x82b89e21, 0x8816278a, 0x1100fff6, 0xf341b092, 0x801d260c, 0xff8b0800, 0x41068200, 0x192206f3, 0xf3413433, 0x66662107, 0x3c203582, 0x0024d582,
0x15cccc49, 0xc7267c82, 0x0800ffae, 0xd5428255, 0xfeff2805, 0xffff6290, 0x825c8ff7, 0x14c32118, 0x25130941, 0x0a00ffd6, 0x23820040, 0x822a9c21,
0xef213248, 0xe5ffff9e, 0x00ff142e, 0xff666613, 0xcdccd6ff, 0x2105828b, 0x7e823333, 0x33d6ff26, 0xecffff32, 0xd7224a83, 0x8f4634b3, 0x66e32206,
0x21548268, 0x4083c0f5, 0x200f0941, 0x080941f0, 0xfa221e83, 0xff829a39, 0x41b8de21, 0x60210e09, 0x31d88200, 0xff006005, 0x6cc70100, 0x780400ff,
0x0300ff52, 0x8a82eaa6, 0xf2122d31, 0xfa2300ff, 0x1900ffe0, 0x00ffcccc, 0x8266e635, 0xe6392229, 0x208a8266, 0x27068200, 0x33e6ffff, 0x3400ff34,
0xff280482, 0xff66e6d2, 0xcccc2400, 0x3d283582, 0x00ffce4c, 0x15cecc4a, 0xc7307c82, 0x0800ffb0, 0xffff8055, 0xff46e1f0, 0x7488feff, 0x21070941,
0x094102cb, 0x41d82013, 0x28200809, 0x37304882, 0xffff9eef, 0xff162ed2, 0x98192000, 0x66bcffff, 0xff217e82, 0x216382b8, 0x0683ff8b, 0xdfffff2e,
0xfffff4e8, 0xff0280bb, 0xb007c8ff, 0x33212a82, 0x22094132, 0xff38b431, 0x0a57f9ff, 0xe60600ff, 0x8b928868, 0x8200ff08, 0x0e0141fb, 0x01415020,
0x14433107, 0x3600ff7c, 0x00ff10f8, 0xff008026, 0x9a195100, 0x57202982, 0x8205094f, 0xffff2206, 0x221683d9, 0x822a5c4f, 0x68e6219e, 0xf0212a82,
0x228282a4, 0x82cccc16, 0x846b21ec, 0x2108ff43, 0xff43562e, 0x20e52107, 0x2107ff43, 0x29824ea2, 0x2105ff43, 0xff43842b, 0x1e852114, 0xe522e882,
0x27822085, 0x7c14a023, 0x200c8407, 0x07006c1e, 0x45208521, 0xff2312c1, 0x43323388, 0xff2405ff, 0x70bdfaff, 0x821f0344, 0x06034420, 0x03445220,
0x3e2a2108, 0x270d0344, 0xff080080, 0xaec77f01, 0x00237e82, 0x44ec910c, 0x0b220606, 0x0644846b, 0x26052a06, 0x2f0e0866, 0x34f824f7, 0x05fd4715,
0x21079e79, 0xb0839082, 0x08707d23, 0x9fdf182b, 0x442b2017, 0x00230cef, 0x48008015, 0xeb20065c, 0x210dad46, 0xa8827d15, 0x8f821a32, 0x06eb088b,
0x4b154b7b, 0xcb074b06, 0x9b07cb06, 0x0eeab618, 0x83eaff21, 0xe5ff2140, 0x72b7b182, 0x41008021, 0x8b83055e, 0x8c065e41, 0x14f72472, 0x6d15a4f7,
0xe685055e, 0x9b850020, 0x9b827882, 0xb384ffb4, 0x0219b982, 0xeb240bf4, 0x153bcb07, 0xea83e283, 0xb4fbab2e, 0x6b06ab15, 0xab066b07, 0x156beb07,
0x0e840683, 0x8254f721, 0x14fb2316, 0x17822b07, 0x2b066b2d, 0xf7064b07, 0x06eb0754, 0x82cb076b, 0xb30e2310, 0xa41834f8, 0x40180ccf, 0xfc210a6e,
0x17cb7c24, 0x18067b21, 0x4d0b3fa1, 0xf8200a4c, 0x00273283, 0xff00400d, 0x87c00a00, 0x280e8204, 0x069b088b, 0xfc157be3, 0x85591834, 0xffff2117,
0x0c19cd18, 0xff8b3428, 0xcccc0800, 0x3083f808, 0xd7080028, 0x0700ff0a, 0x04823333, 0x83f62821, 0x8bcd2218, 0x85068508, 0xf8ff2416, 0x828b0ad7,
0xf6282441, 0x839bd308, 0xcd4c21cd, 0x0a233f82, 0x96ff33b3, 0x4d4c20cd, 0xff25068a, 0x8b33b3f2, 0x0f637c08, 0x8b081878, 0xa24118cd, 0x069b220d,
0xa6a518eb, 0x4d68970d, 0x6882068e, 0x68873420, 0x6c4edb82, 0x053a5908, 0x688c0820, 0x3b413420, 0x4c0d2906, 0x9b088bcc, 0x732cf706, 0x0a284218,
0xff201c8e, 0xc00a9e7c, 0x934b2182, 0x6c416883, 0x20688206, 0x056c4107, 0xff208582, 0x0a1d7d18, 0x410a6c41, 0xe9820cce, 0x82ccf821, 0x33f72104,
0xff21e982, 0x180683ff, 0x41084f5f, 0x0e2c0ace, 0x34f8bb2f, 0x9500ff15, 0x9c060080, 0x2908fe82, 0xff333310, 0x9042f9ff, 0xf3ffff97, 0xff0870fd,
0x0100b000, 0x0c50ffff, 0x72a405cd, 0xd7ffff8b, 0x72726766, 0x7affff08, 0x04849899, 0x72720522, 0x8b221484, 0x1582a472, 0xf7222682, 0x39820544,
0x8235fe21, 0x41f9293f, 0x1000ffcb, 0x9c8b3433, 0x5f824682, 0x25171c44, 0xcb058b8b, 0x838224fb, 0x510b5f63, 0xff23091a, 0x51b31100, 0xbd581417,
0x51b3200a, 0x53631017, 0xab112f08, 0x0e088b85, 0xccd801ff, 0x1701ffcc, 0x67829a99, 0xcc4c3423, 0x20cb8256, 0x2c1182aa, 0x34b3cbff, 0x04fb0856,
0xb38effff, 0x20b98234, 0x256a83f6, 0xff9a99f6, 0x6418f0ff, 0x0e830880, 0x4c090023, 0x22e082cc, 0x180080f6, 0x210dbc40, 0x0f82ce4c, 0x82008021,
0xe66f26e0, 0x7100ff66, 0x21448233, 0x0a832100, 0xc1842220, 0x82333721, 0x19de24ba, 0x8200ff9a, 0x2740820f, 0xffcc4c80, 0xe23a8100, 0x65826a83,
0x6e090027, 0x0000ff14, 0x221f8219, 0x84a4300f, 0x2104824a, 0x4f82ec51, 0x82660921, 0x5109254f, 0x0f00ffec, 0xff254383, 0x00fff4e8, 0x22138208,
0x8391f6ff, 0xb380261e, 0x7effff32, 0x284882ba, 0x483327fe, 0xe6c2ffff, 0x05c54166, 0x200a6541, 0x0537725d, 0x4107304c, 0xa82518e2, 0xffff0100,
0x18e24158, 0xe7ffff2a, 0xff720100, 0x6666d7ff, 0x8205e641, 0x3cf7212a, 0x2e15e641, 0x8b140000, 0x6f00ff05, 0x00ffedff, 0x64008075, 0x951813fc,
0x43540ae0, 0x34b32106, 0x65053c54, 0x02420e62, 0x2f0e281f, 0x04f754f8, 0x87b4f715, 0x18ff20f2, 0x230eddec, 0xff06c4fb, 0x0a62ec18, 0x05d5ff24,
0x10838b1e, 0x0754e220, 0xfaca2506, 0x2a00ffe2, 0x0e8dee18, 0xc255d420, 0x7a54280e, 0x1000ff8b, 0x820820c5, 0xb80b3606, 0xf9ffff52, 0x00ff9c64,
0xffcccc09, 0x649bf6ff, 0x940500ff, 0x23b7827c, 0x07285c51, 0x00231585, 0x5ad8a309, 0x0023058d, 0x8298990c, 0x330e2d34, 0xfeff0834, 0xf79a19cf,
0x54f71564, 0x09225d82, 0x168232b3, 0x34330722, 0x0b984519, 0x83083551, 0x0bb84358, 0x9a193f22, 0xf822c582, 0x21829919, 0xcdccf823, 0x0a3951ff,
0x45059445, 0x16830573, 0xe6250982, 0x8b088b67, 0x1867924b, 0x8407c363, 0x84332067, 0x19048379, 0x9209d82c, 0x84332067, 0x83cd2060, 0x0fd318f9,
0x8307200e, 0x00ff2967, 0xfb66e6f0, 0xb4fb1594, 0x0ea84718, 0x5b7a5421, 0x3883050c, 0x86ab1127, 0x540e00ff, 0x0744697b, 0x8b85ab3d, 0x06b4f708,
0xfb0e074b, 0xf814f830, 0x64fc1524, 0xf754fb07, 0x54fb0504, 0x520504fb, 0x1a23050b, 0x47ff0080, 0x152005c9, 0x082b4218, 0xa6473382, 0x0833480d,
0x54f80e24, 0x9e1894f7, 0x9a210d9e, 0x0a1b53ff, 0x2118d05c, 0x1a9806ab, 0x0542f720, 0x23cb8214, 0xab07eb08, 0x85132042, 0x22f6821a, 0x83cd4c23,
0xffcc3d7c, 0x33b31c00, 0xb3dcffff, 0x4b088b34, 0xfb1594fb, 0x07eb0694, 0x2b0694f7, 0x2cf7bb07, 0x1b415b18, 0x461e4521, 0x0a25066f, 0x00ffe2ba,
0x7a44180d, 0x1e452711, 0xf2ffff8b, 0x4618e2ba, 0xfb291710, 0x157cf7c4, 0x80e500ff, 0x2fa88200, 0xff00801a, 0x707de5ff, 0xbaffff05, 0xcb079082,
0x52231282, 0x820700c0, 0x7b082ea8, 0xfcffffe8, 0x00ff00a0, 0x85d02208, 0x0d1f5e91, 0x6606fa27, 0x010600ff, 0x06806048, 0x82600321, 0x99f72945,
0xff088b98, 0x3433edfe, 0x0cba5c18, 0x210ad45c, 0x608214fb, 0x0e07eb29, 0x99c200ff, 0x8234f89a, 0xcc7a2284, 0x227182cc, 0x8234b314, 0x4c122270,
0x21b782cc, 0x294eaec7, 0x66ec2306, 0xe9820866, 0xff66662b, 0xecd1e0ff, 0x4a00ff05, 0x235882b3, 0xcc4c2300, 0x2205a94f, 0x83e3ffff, 0xdcff230a,
0x566834b3, 0x84098206, 0x82048614, 0x088b210e, 0x19385318, 0x8394f721, 0x184e82e5, 0x22125e55, 0x8233b34a, 0x660a2796, 0x1f00ff67, 0x7b82142e,
0x00800629, 0x991300ff, 0x8300ff9a, 0x0d0025a5, 0x00ff5238, 0x0821b583, 0x2c27828b, 0xfb66663d, 0x8bc015f4, 0xc08bb6b6, 0x329c8208, 0x6066e635,
0x192a00ff, 0x088b569a, 0x19caffff, 0x7dff8b9a, 0xd52205a7, 0x0a8266e6, 0x08221082, 0x2084568b, 0x2c822682, 0x088b3108, 0x34f82f0e, 0xffff15ab,
0x06a430e6, 0xe876ffff, 0x6b01fff6, 0xff05703d, 0xdf4ffbff, 0x780c00ff, 0xf4ffff52, 0x00ff351e, 0xff3e4a08, 0xf6a8f2ff, 0x06835783, 0xffff7f25,
0x8204b6f7, 0xeb513126, 0x87f3ffff, 0xffff086c, 0xffd7a378, 0x90c294fe, 0x4d853c82, 0x180bc45f, 0x21113f65, 0x9f5a7b54, 0x8b852308, 0x075aeb08,
0xffff242e, 0x833333fe, 0x9a192833, 0x00ff05bb, 0x859b999f, 0x825b200c, 0x5b1b827d, 0x7d852e1d, 0x448b8621, 0x855a060a, 0x34b32112, 0x7907855a,
0x082f05ff, 0x04f73333, 0x3700ff15, 0x00ffcdcc, 0x8266e694, 0xd1372783, 0x6bffffec, 0x81829a19, 0x4761902d, 0x30fb0e06, 0x194101ff, 0x1900ff9a,
0x391e9f6a, 0xffff0a97, 0xff7c94c6, 0xf6683900, 0x6bb9ffff, 0xfb088b84, 0xffffff54, 0x498270fd, 0x20194341, 0x05bc445e, 0xb0f1ff23, 0x06a346a2,
0xfb069b23, 0x559c18d4, 0xb866180e, 0x0d784113, 0x0674f724, 0xf37d00ff, 0x20848309, 0x2210828b, 0x82080a97, 0xb52e2606, 0xe6ffffc4, 0x25c38299,
0xff008028, 0x0482daff, 0x66160031, 0xffff0866, 0xff66e62e, 0xd6639200, 0x5a04f715, 0x47250ed1, 0xffff8bae, 0x4c8419dc, 0xe3ff2809, 0xffffcc4c,
0x44ae47e3, 0xfb2f0672, 0x14f70604, 0xff24f707, 0x9002c0fe, 0x8524fb15, 0x21448e0d, 0x44823e4a, 0x289cdd22, 0xff208482, 0x57430682, 0x7de12206,
0x2a448672, 0xf830fb0e, 0x7f01ff14, 0x5c1570fd, 0xe98306f0, 0x24055042, 0x5c4feeff, 0x30a2828b, 0x067c54c5, 0xb37affff, 0x05d4fb33, 0xf83f00ff,
0x5e638251, 0x4196141c, 0x8254fb21, 0xf766183e, 0x119b5c09, 0x2211a45f, 0x8285ab3a, 0x4c852364, 0x7282f7cd, 0x07c0ff23, 0x2041aeae, 0x207282f7,
0xac9e1800, 0x14ae210b, 0x51299c83, 0xaf0e08ec, 0x01ffb4f7, 0x21ef829f, 0xd34694fb, 0x0ae1410c, 0x6e604b20, 0x26005d07, 0xcb07ab27, 0x07d4fb06,
0x5e4f976b, 0xaa43094a, 0x064a5e0c, 0x2329b35d, 0xd4f7066b, 0x6b206a82, 0x9b5e9e8a, 0x00ff220c, 0xe12f1911, 0x08985e0a, 0x22055f65, 0x5eff14ae,
0x51210697, 0x07975eec, 0x66e9002e, 0xb6feff68, 0xff152a9c, 0x9899f6ff, 0x9a2c0483, 0xe500ff05, 0xff070080, 0x00600900, 0xa0211082, 0x21108200,
0x1b823906, 0x66c6f927, 0x330800ff, 0x08786334, 0x78633420, 0x05e8621c, 0x200a6175, 0x07a275ff, 0xcb4b0822, 0x240a7f75, 0xc0ebffff, 0x0b0b6300,
0x774b4b21, 0x18820a05, 0x63050e63, 0x51830829, 0xcc18ff20, 0x092216e2, 0xb7824861, 0x82345321, 0x831a2040, 0xf6ff23c3, 0xc88400a0, 0x50186f9b,
0x858308fa, 0xcb206c8d, 0x00258a82, 0xff9a3906, 0x20fc86ff, 0x22fc9932, 0x64ff361e, 0x53180975, 0x80200a83, 0x82097364, 0x6dbd83c3, 0x0c200771,
0xff280f82, 0xffb0c7eb, 0x64fbffff, 0x08248589, 0x34f82f0e, 0x2005a242, 0x18a45ffc, 0xc0ffff24, 0xa64268e6, 0x14f72430, 0x4414fb06, 0xef2615d9,
0x8b08c235, 0x0682ffff, 0x22060e45, 0x453ecaf0, 0xd445060e, 0x86ab2621, 0x680d00ff, 0x054961f6, 0x067b0825, 0x820714f7, 0x26a7426a, 0x8bec5122,
0xae276882, 0x00ff0814, 0x8298193f, 0x110021d3, 0x2913ab42, 0x9a99d6ff, 0x9cf6feff, 0x2a41152a, 0x05074205, 0x410e3b42, 0xd0421acb, 0x1aff240b,
0x85060080, 0x09002510, 0xff05cc6c, 0x01204c82, 0x230b3e78, 0xff7ff3ff, 0x86081f66, 0x2ea8420a, 0x22053b42, 0x66ffae47, 0x2e2006b1, 0xb166b782,
0xa4302205, 0xde8a198b, 0x053b420e, 0xb1667120, 0x1a384305, 0xd042ff20, 0x05fd490a, 0x04831084, 0x221d3343, 0x82e23a06, 0x64bb2587, 0x330800ff,
0x3147c342, 0xffe2fabf, 0x64fb3f00, 0xf72f0e05, 0x15f4f794, 0xff4474fb, 0x0e00290c, 0xff8b7c54, 0x84ab1100, 0x2005234c, 0x08234c84, 0x57427c20,
0x23921806, 0x84ab2710, 0xeeffff8b, 0x30827c54, 0xaf440683, 0xf1ff2305, 0xaf4484ab, 0xfb8b2206, 0x4e659194, 0x77820f42, 0x0c62cf18, 0x48506590,
0xf1ff210f, 0x0d5f8218, 0xf794fb22, 0x18060962, 0x21117f54, 0x561814f8, 0xcd201cde, 0x1004a518, 0x180ec143, 0x230a0098, 0xb4fb34f8, 0x4805d24c,
0x7d18099a, 0x8b200a26, 0x8f051351, 0x75809ecd, 0xd2850637, 0x25056073, 0xf7d4f72f, 0x834715f4, 0x08a66805, 0x18139c41, 0x470dba91, 0x9c411041,
0xfbeb221f, 0x20ce9214, 0x21c784cd, 0xceb50833, 0x22124f41, 0x6274fb34, 0x1b4107e7, 0x119c4140, 0x21081d78, 0x3241ebd4, 0x11694211, 0xc4184c20,
0x32410c40, 0x1f694210, 0xf82f0e23, 0x08384334, 0x202b9b41, 0x0e854274, 0x431f9b41, 0x658a0938, 0x658fcea0, 0xfc21ce9f, 0xcd384334, 0xf734f823,
0x11d242f4, 0x431fd544, 0x9c4110a1, 0x19894223, 0x44353843, 0x9c411107, 0xf8e322ce, 0x17755824, 0x42595b20, 0x0d745809, 0x42595b20, 0x82bb2017,
0x14415931, 0xf806bb24, 0x6a187b1c, 0xa4460fcb, 0x0700790b, 0x530a7045, 0x6743052a, 0x84ab2117, 0x10249718, 0x06b4f724, 0xad18fb8b, 0xb3200f06,
0x1fe48618, 0xcc82b420, 0x2414d87c, 0x1100ff8b, 0xc3ca18b3, 0x57659412, 0x0a470e53, 0x20659d10, 0x20cb8734, 0xddca184c, 0x24cb8207, 0x2cf764fc,
0x22848215, 0x52cd4c0d, 0x8e8307e5, 0x00400d26, 0x06bb088b, 0x0b838618, 0x410a3b7f, 0xd32233b3, 0x02421cfb, 0x08a57f0e, 0x59184eb3, 0xc021084b,
0x20b78200, 0x86db82b3, 0xab0e22b2, 0x456a18f8, 0x827b200b, 0x485420f4, 0xec4307c2, 0x10e84330, 0x22094e44, 0x7254f707, 0x5841076f, 0x0fd04e12,
0x470d8c45, 0xf0471128, 0x474c2010, 0xf722078a, 0xd2422b74, 0x444b8d0e, 0x4b91113b, 0x10a65d18, 0x20100947, 0x084f6bfc, 0x91304549, 0x10354180,
0x3309bb46, 0x0000ff07, 0x00ff713d, 0x156666b3, 0xc2f7ffff, 0x0600ff8f, 0x24052163, 0x00ff6766, 0x331a8308, 0x08676606, 0xf56500ff, 0x4f00ffc2,
0xff05cc4c, 0x00800a00, 0x2105c94e, 0xb7820f00, 0x80f8ff2f, 0xffff8b00, 0x0832b3f2, 0x6661ffff, 0x053e4468, 0xffff3226, 0xff33b3f0, 0xff221c83,
0x3086f5ff, 0x9a222082, 0x46853e0a, 0x8b2f0e22, 0x10641742, 0x33011502, 0x1900ff27, 0x00ffecd1, 0x05ec6664, 0xff717d3d, 0xccccf7ff, 0xb0f0ffff,
0x0700ffa4, 0xff8b0080, 0xce4c0d00, 0x9e00ff08, 0x85079899, 0x00ff240c, 0x845c4f0f, 0x00ff241c, 0x848f820a, 0x28208230, 0xffe2fa65, 0x34b3b0ff,
0x311a8205, 0xffffcd4c, 0x8b9999f9, 0x99f3ffff, 0xf8ffff99, 0x0f8333b3, 0xff089a26, 0x1e059aff, 0x0e282585, 0xf714f8af, 0xb4fb15e4, 0xff285582,
0xff707de5, 0x9082eaff, 0x0e820486, 0xfb088b23, 0x0e5761b4, 0x4e187d20, 0xe25a0811, 0x15002108, 0x0482b082, 0x59075861, 0xbd611016, 0x54f72108,
0x8025d382, 0xfeff1500, 0x055469ff, 0x80e62108, 0xe2ffff00, 0xffff7cd4, 0xff2a1cf1, 0xacc7eaff, 0x990e00ff, 0xffff0898, 0xffd86392, 0x707d4b00,
0x9d28c882, 0xff076866, 0x98996d00, 0x8f211082, 0x2210825c, 0x82d04c15, 0x289c2626, 0x191d00ff, 0x303a8298, 0xff8bae07, 0x9a99e6ff, 0x01ff0e08,
0xf89a19bf, 0x05044934, 0x3d8add22, 0xe3231782, 0x18ffd559, 0x6f0a6a6d, 0xa621066d, 0x05825766, 0xff251983, 0x33732200, 0x52cd188b, 0x82d4201b,
0x02002c7f, 0x2300ff56, 0xffff9a59, 0x863233e4, 0xccdb273c, 0xfb088bce, 0x3f194be4, 0x71200a53, 0x0b694f18, 0x2405b462, 0x66ebffff, 0x82168466,
0x9999223b, 0x20dd828b, 0x850682e4, 0x065b6916, 0x90821a23, 0x070b6208, 0x48611622, 0x2f06245d, 0x8bb89e19, 0xffe3f708, 0x6666c8fe, 0xfdffff15,
0xff277882, 0xffceccfa, 0x8299faff, 0xccfc2287, 0x210982cc, 0x50829a19, 0x02a2fe29, 0xffff0690, 0x829ffaf9, 0x7dfa2672, 0x0300ffb2, 0x280f8261,
0xff1e45fd, 0xfa5e0500, 0x843b8208, 0xf45d2b0a, 0x830000ff, 0x0600ffd8, 0x23826871, 0x72828c20, 0xb8de0426, 0x05ebd108, 0x04260d82, 0x0400ff19,
0x0482862b, 0x702f9618, 0xfb14f723, 0x26828354, 0xffff3e4a, 0x820020fb, 0x824c20a4, 0xb3f922db, 0x05746834, 0xb3faff2c, 0xfb0e0832, 0xf714f830,
0xe1821594, 0x9a99a833, 0xffff09fb, 0xff666664, 0x33b3ccff, 0xccbfffff, 0x20e382cc, 0x200a83f3, 0x223483f0, 0x823433e9, 0x220f8326, 0x834c0f00,
0x83cb201a, 0x334021d2, 0x8b264f82, 0x00ff66e6, 0x7b65999b, 0x0a6a270a, 0x5500ff3e, 0x0483c3f5, 0x00ffc222, 0x8b290e82, 0xe18bf508, 0x0aaaffff,
0x2a45823e, 0x08c2f595, 0xf80e068b, 0x8354f794, 0x866b187b, 0x2d8e7b2a, 0x6083fb20, 0x0714fc22, 0xe1237a82, 0x8208f58b, 0xe66a233c, 0x94823566,
0x219a1923, 0x25fd838b, 0x8000ff9b, 0x838266e6, 0x82490021, 0x660036c8, 0x00ffcd4c, 0xff52789c, 0x99993000, 0x214600ff, 0x00ff0848, 0x2514830c,
0xff0ab711, 0xe2841900, 0xff240f83, 0x08f648ee, 0x9a262583, 0xdeb9ffff, 0x3982ffb8, 0xffffcc25, 0x82ae8763, 0x67b620dc, 0x9d250501, 0xffff66e6,
0x855582b1, 0xcc9e2904, 0xff088bcc, 0xcdcc9eff, 0xb1252282, 0x00ff3333, 0x2711824e, 0x196200ff, 0x8beb089a, 0x07208183, 0xf8213083, 0x218182cc,
0x56821908, 0x3333f722, 0xf7223083, 0x3082f628, 0x0ad7f827, 0xe6f7ffff, 0x820a8366, 0x20068230, 0x215982c1, 0x93183200, 0x00210735, 0x631b823d,
0x3f5e0c9c, 0x84ff2011, 0x8207205b, 0x86ff2037, 0x18d3205b, 0x20086daa, 0x09357f00, 0x01ff0e35, 0xffcc4cea, 0x9a999701, 0x1500ff15, 0xffff68e6,
0x824821ea, 0x8adc2271, 0x210a823c, 0x0f849819, 0xff6d0831, 0x66e6e1ff, 0x00ff2905, 0x05e2fa61, 0x821e00ff, 0x1e00238a, 0x0a825c0f, 0xc8821520,
0xdf150029, 0x2300ff9e, 0x838b6866, 0x82662043, 0x62202133, 0x122b9f82, 0xffff32b3, 0x059042ed, 0x82c2feff, 0x36ff2330, 0x648233b3, 0xce4ca733,
0x5ca700ff, 0xffed0529, 0x3e0a9eff, 0x58ffff05, 0x22668299, 0x8232b358, 0x83f9200a, 0xccf92281, 0x068647ce, 0x8266fb21, 0x83f7204c, 0x33fd2646,
0xffff0832, 0x22cf83a7, 0x826866e2, 0x80f62229, 0x06d04300, 0x2482f720, 0x83020021, 0x82f92019, 0x07002313, 0x2982cc4c, 0x9a99f925, 0x820500ff,
0xfdff2604, 0x00ffcccc, 0x27198309, 0xffcdcc02, 0x9a990800, 0x1d209a82, 0x00231982, 0x82cccc58, 0x201585c0, 0x251a824c, 0xff999904, 0x29830700,
0x3333062a, 0x190600ff, 0x078b089a, 0x2206425c, 0x629999b2, 0xff2a0ccc, 0x8b1ec5f0, 0x3aefffff, 0x068208e2, 0x8282ed20, 0xb3f1ff26, 0xf2ffff33,
0xff265882, 0x8bcd4cee, 0x1c532b08, 0xf0ff230c, 0x2882cecc, 0xc683ef20, 0x2107bc45, 0x99824cee, 0x6105907b, 0xf721082d, 0x0ce94f94, 0x220a1f52,
0x186000ff, 0x83092b46, 0x00ff2717, 0xff32330f, 0x4f6c1100, 0x0afb5805, 0xff2c6a8a, 0x079a199f, 0x6060568b, 0xfb088b56, 0x39615a82, 0x8bb62209,
0xadbd18c0, 0xffc03807, 0xe1fa2a00, 0x3500ffb6, 0x088b1f05, 0xf80e06eb, 0xc000ff94, 0x821566e6, 0xcff730b0, 0xfcffffe0, 0xffff00e0, 0xff2ac7f7,
0x82c0f9ff, 0x23048209, 0x05434308, 0x22052357, 0x82dcf8ff, 0x044e1817, 0xb8ed2210, 0x283d8252, 0xffae47f2, 0x34f30e00, 0x22a6828b, 0x8208cc0c,
0x30083006, 0x0300ff20, 0x00ff0020, 0xff283108, 0x82400600, 0x3d062309, 0x20820870, 0x82cc6c21, 0x48612104, 0x8d255782, 0xff063433, 0x200582ff,
0x84118407, 0x82052004, 0x5238212c, 0x51210482, 0x05d354ea, 0x19030023, 0x2109839a, 0x3c828b34, 0xae471222, 0x0d275c82, 0xffff52b8, 0x82cc0cf1,
0xf3ee2279, 0x206e8234, 0x21be8aff, 0xbe87d8ce, 0x8a90c221, 0x83f920be, 0x18be9033, 0x2118c34e, 0x9f82d343, 0x25583383, 0x05df5505, 0x82323321,
0x3308217c, 0x00227183, 0xc6820c11, 0xe1ba0d22, 0xff24f784, 0x1f451200, 0x08229f83, 0x22832130, 0x41273121, 0x0020054c, 0x8d84f282, 0x1127ba82,
0xffff4861, 0x823493ee, 0xcc7229e0, 0xffff07cc, 0x06cd4c8d, 0x1682f284, 0x86b89e21, 0xf9ff24f7, 0x84ffaec7, 0x82ff20f2, 0x82e082ac, 0x82e083a1,
0xffff24e7, 0x841f45f2, 0xffff24f7, 0x82e1baed, 0x20f6826e, 0x212283df, 0x6b41d9ce, 0xf9ff2905, 0x00ff8fc2, 0x08004006, 0xbe21be85, 0x210d82b8,
0x8b869a39, 0xbe840820, 0x9a190922, 0x00204f82, 0x33850682, 0x7d070021, 0x38850650, 0xf782d320, 0x4106002d, 0x0500ff48, 0x00fff668, 0x85152e08,
0x0800218d, 0x4105dc56, 0xdf201980, 0xff216685, 0x428d82f7, 0xc222063f, 0xdb820890, 0x87cdac21, 0xb37222e0, 0x22f18233, 0x8234b372, 0x99ee21fd,
0xee209782, 0x20050c44, 0x07c346cc, 0x82ccf721, 0xe6fc232b, 0xfc82ff66, 0xe083cd20, 0x852f5e42, 0x85f282be, 0x330822c3, 0x7ee58633, 0xff22104d,
0x9242e0fc, 0x059f4105, 0x0543d327, 0x470600ff, 0x210d82ae, 0xf285b8be, 0xd1f7ff24, 0x89828bec, 0x415ccf21, 0x1e200a80, 0x20088041, 0x058041e2,
0x2283e020, 0x41d8ce21, 0x51180880, 0xee210803, 0x3147829e, 0x05345311, 0x4c8dffff, 0x00ff07cc, 0x06cccc72, 0x1685ffff, 0x82486121, 0xaef92216,
0x05ec4216, 0x2109f07e, 0xa88200ff, 0x5e426e82, 0x42e22007, 0x1e20085e, 0x21055e42, 0x51438b20, 0x21be9905, 0x3f4266c6, 0x82cd2008, 0xb3f8309b,
0xfb0e0833, 0x1f00ff70, 0x01ff9a19, 0x6552f87f, 0xf22508d6, 0xffffeb91, 0x3b4018f1, 0x18ff2008, 0x200746a0, 0x3f4018ee, 0x00ff2912, 0xff85ab11,
0x7ad40000, 0x2206ec57, 0x8200800d, 0x80122989, 0x01ff0800, 0x07ec113f, 0xe9180c82, 0xed220ecb, 0xb283156e, 0x6666ec2f, 0x9ef8ffff, 0x54fb15b8,
0xe660ffff, 0x21f78266, 0x788251f8, 0xc3b5f82c, 0x2efcffff, 0xf6ffff14, 0xa78267e6, 0x66e6f622, 0xff23f782, 0x82f0e7f6, 0xecd121be, 0xe92d1682,
0x0700fffc, 0xffffb99e, 0x085c8ff9, 0x283d87f7, 0x48a11400, 0xe1eeffff, 0x83d18248, 0x5e0e2204, 0x227b82b8, 0x83b85e1b, 0x66e62d88, 0xffffff07,
0x00ff6626, 0x6c3e8a1a, 0x6120aa82, 0xeb202b82, 0xee248183, 0x0e08b8de, 0x20232882, 0x8c1566e6, 0x056b56b1, 0x146e0d22, 0x08c14b18, 0xeb911222,
0xe620e982, 0xb3454482, 0x09214105, 0x337cff39, 0x00ff0733, 0xff0080ab, 0xff7f9c00, 0x1400ff05, 0x00ff9a99, 0x82ce0c11, 0x2230828c, 0x829ef1ff,
0xe4ff298c, 0xff0848a1, 0x9a197cff, 0x80212b88, 0x832b8800, 0x8e1f209c, 0x0779412b, 0xff273882, 0xb81ee0ff, 0x83f1ffff, 0x82eb20e4, 0x110022bd,
0x21d9821e, 0x728354ff, 0x98599b2b, 0x7dffff05, 0x8b07cc4c, 0x9c6483ff, 0xec51212b, 0xee222b89, 0x0c7c7a54, 0x91f22806, 0xefffffec, 0x828be13a,
0x82ed20a0, 0xffff23f3, 0x1a8568e6, 0xd1410020, 0xff0e2309, 0x6f82cb01, 0x97780125, 0x84ff150a, 0x71ff237a, 0x4e829a19, 0xcc8cac22, 0x1085d286,
0xff23fe84, 0x85c2f5ee, 0x0e0029fe, 0xff8b6866, 0x32331c00, 0x21091442, 0xcd825e1b, 0x9a19e022, 0x220f8b41, 0x828b94fb, 0xf03f275b, 0x60ffffa4,
0x5b829002, 0x00c0f027, 0x21f3ffff, 0x20da8248, 0x227c82e8, 0x85400f00, 0x16f9410f, 0x50824720, 0x82fa5e21, 0x5e1b226d, 0x0af94176, 0x00ff6725,
0x415c8f1a, 0xfb2611f9, 0xf7fdf730, 0x3482157d, 0xffcc4c30, 0x3333f7ff, 0xb30800ff, 0xf0ffff34, 0x70820080, 0xf37bef20, 0x84ef2005, 0x8204831b,
0x06f05916, 0x9a19f82a, 0xe0feff08, 0x44fbae07, 0xf125a482, 0xffff142e, 0x28cd82f6, 0x3373edff, 0x99ffffff, 0x2142829a, 0x4c8229dc, 0x08008022,
0xdb210a82, 0x820a8464, 0x7d9f2223, 0x269c829b, 0x08666611, 0x8307f4f7, 0x285c3009, 0x600900ff, 0x1000ff83, 0x00ff9002, 0x849c240f, 0x82082029,
0xd723210a, 0x7d260a82, 0x1200ff70, 0x5382cd8c, 0x8268a621, 0xecd121a5, 0xf3214382, 0x35d98232, 0xff52f81f, 0x3e0a50ff, 0x70fb0e05, 0x01ffa4f7,
0x1566e680, 0x8b828b6b, 0x717de522, 0xea23ba82, 0x74ff8f82, 0xa04e0ab4, 0x15002209, 0x05624d7d, 0x2606526f, 0xfeffffab, 0x83053433, 0xb65c180d,
0x0e876913, 0xd6631622, 0x2206ba77, 0x968b54fb, 0x7de5236f, 0x6f850870, 0x9a99e423, 0x216f86ff, 0x6f870080, 0x5d18a382, 0x71200822, 0x104f1e83,
0x05f36911, 0xb94c6b89, 0x15d42705, 0xe600ffff, 0xdd820766, 0x66a6dc27, 0x59e3ffff, 0x8204869a, 0x06de480e, 0x14830983, 0x00ff992e, 0x8b66a61c,
0x592300ff, 0x00ff089a, 0x18052d4f, 0x21148359, 0x406394f7, 0x08577e0e, 0x00ff0e2b, 0xff8f8234, 0x66660700, 0x06dc4315, 0x66e68e29, 0x5300ff05,
0x42076766, 0x002e05ff, 0x05d7e38e, 0x5eebffff, 0x1100ffb8, 0x78434821, 0x09ed4307, 0x220bc143, 0x82e11f00, 0x99f12721, 0x1400ff98, 0x308248a1,
0x9a841920, 0x8b71fd2a, 0xff54f715, 0x9a199f00, 0x0f275b82, 0x00ff0040, 0x82b8de0c, 0x801726ba, 0xf0ffff00, 0x220f84c0, 0x84fb08b9, 0x889b2022,
0xb81e216d, 0xb92c6d83, 0xa1f1ffff, 0xffff8b06, 0x0888a1e4, 0x2805a945, 0x020000ff, 0xe6ffff8f, 0x44628261, 0x71840550, 0x859a9921, 0xf80e2871,
0x5f01ff94, 0x451552f8, 0xff250cd7, 0xff86abf1, 0x060544ff, 0x088be02b, 0x66edffff, 0xffffff66, 0x074362ee, 0x21090544, 0xfc8617f7, 0x8063ff23,
0x838e8300, 0xe6ee2128, 0xce432d82, 0x08eb4305, 0x91822890, 0x2885ff20, 0x1444bc82, 0x1f002117, 0x2306bd45, 0x9e1400ff, 0xee23e382, 0x410848e1,
0xff30057d, 0x05299c64, 0xc58200ff, 0xff8b071f, 0xb85e1b00, 0x9e09e945, 0x8211202b, 0x0e0025dc, 0x00ff7a54, 0x2006cf45, 0x23e18220, 0x9a991200,
0x2107cf45, 0xf146cc4c, 0xfb0e260b, 0x1f01ff70, 0x201d8519, 0x07636315, 0x44823a84, 0x4605d146, 0x862010de, 0x23050167, 0x7a54eeff, 0x06845c82,
0x47065041, 0xef22054a, 0xa041e03a, 0xff8b2506, 0x146eedff, 0x2805bd4b, 0x0080f2ff, 0xcc1000ff, 0x273383ce, 0xfff56815, 0x00800600, 0x210a0e42,
0x1e82a007, 0x9e6f0626, 0xce0300ff, 0x09228982, 0x7e821018, 0x0a170923, 0x30068308, 0xffff1018, 0xffe530fc, 0x04160900, 0x61f8ffff, 0x213d8207,
0x2942a470, 0x429a2006, 0x12210729, 0x329742e1, 0xff2f0e37, 0x8f023000, 0xe68000ff, 0x01ff1566, 0x069a195f, 0x9e2900ff, 0x267682b8, 0xffb8de15,
0x82a13100, 0x82e32054, 0x1e003059, 0xff0800c0, 0x66e650ff, 0x19c000ff, 0x4178059a, 0xdf29068a, 0x788b0040, 0x61ebffff, 0x821d8348, 0x3fff2349,
0x92821e05, 0xff223383, 0x2d8266e1, 0x7ddf1527, 0x19cfffff, 0x2157829a, 0xfe82f49d, 0x175f0135, 0xbfffff0a, 0xff159a19, 0xf6e8a0fe, 0xe5ffff06,
0x7c8b299c, 0xea22062d, 0x0a82f668, 0x289ce528, 0xffffff08, 0x1b82e0fd, 0xff7c9426, 0x2a991500, 0x00231f85, 0x8466661a, 0x22a78442, 0x83d6631a,
0x829920a7, 0x9915225a, 0x820a829a, 0x83082010, 0xf6682106, 0x4c219182, 0x2f3883cc, 0xe4ffff9a, 0x088b34b3, 0xf770fb0e, 0xff156b74, 0x4912324b,
0xfb2306b1, 0x6154f754, 0xdb64066b, 0x200a830a, 0x210483ff, 0x1f84f708, 0x5a180f88, 0x0c221242, 0x47180080, 0xff200be9, 0x0a465b18, 0xb89e562d,
0xa056ffff, 0x00ff0500, 0x826666a9, 0x9a99210a, 0x309a0a82, 0x8207804d, 0x0d134bb0, 0xeb20c882, 0xfa4bc795, 0x18828406, 0x2217315b, 0x82866ba9,
0x82602081, 0x56ff2387, 0x0a827a94, 0x9bb85e21, 0x09b162f3, 0xf723ee90, 0x9b54fb54, 0x84fb20c2, 0xf9ff281f, 0xffff1ec5, 0x83e2baf9, 0x65cc20c7,
0xdb4b0563, 0xdb7d1805, 0x94f72460, 0x731504fb, 0x5a750bd3, 0x07cb220a, 0xc24218cb, 0x5d42181c, 0x064b2211, 0x9b4d18cb, 0xb3f22412, 0x18088b34,
0x180bc273, 0x220a505a, 0x184b074b, 0x5b0c6f71, 0x8b200a14, 0x42183283, 0xcb2211f2, 0xa2584b06, 0x411a9105, 0x3c21612d, 0xa04318a3, 0x4144202f,
0xfb222e42, 0xc6e10644, 0x00ff4326, 0x1566e62f, 0x19280582, 0xff055c9a, 0x66e6d0ff, 0x19210482, 0x370a829a, 0xff33b3f6, 0x9a99f6ff, 0xf0ffff8b,
0x00ffcccc, 0xffcd4c09, 0x0080f7ff, 0x3b06af73, 0xceccf5ff, 0x330f00ff, 0x00ff8b34, 0xff008008, 0x32330a00, 0x00ffba08, 0x0534332e, 0xff245484,
0xccccd1ff, 0x09210a82, 0x93528266, 0x8432842c, 0x8242823c, 0x85ff2048, 0x202f8252, 0x843b8408, 0x82408245, 0x82ba2051, 0x975f8206, 0x8395822c,
0x84cc209f, 0x82af82a9, 0x21ba82b5, 0x478234b3, 0x9a19d022, 0x0521d584, 0x82e3845c, 0x982c9ad7, 0x188b20f2, 0x2e625b81, 0xcccc7301, 0x332c00ff,
0x00ff1533, 0x8368e60a, 0x8b672404, 0x821100ff, 0xf5ff2315, 0x0f839819, 0xd0826620, 0xd082f520, 0xff231f84, 0x823433ee, 0x830f83eb, 0x201a821f,
0x222a8393, 0x82cecc93, 0xccd322e4, 0x824b84cd, 0x19f5220a, 0x203b8499, 0x213088ff, 0x3082ff99, 0x4b869a20, 0x99200a82, 0x4c824682, 0x50822586,
0x4bcb0823, 0x837f8405, 0x82798228, 0x22898283, 0x8467e60a, 0xff082599, 0xffff7f00, 0x05250484, 0xf894f70e, 0x36521854, 0x8dff230c, 0x4f826666,
0x0a5c8218, 0xda560020, 0x18002008, 0x83108a82, 0x05ce561b, 0x06850820, 0x5218ff20, 0xff21087b, 0x333782ff, 0xfc8b088b, 0x8b791524, 0x9d8b997d,
0xff9d8b08, 0x9a190d00, 0x1220ce82, 0x2205e955, 0x829a1911, 0xe60e2e35, 0x798b7d66, 0xff798b08, 0x9a19f1ff, 0x85e7827d, 0x1945241d, 0x8222f79a,
0xd229089b, 0x056f66e6, 0x7e8b0789, 0x8b7e8080, 0x808b7e08, 0x08988b96, 0x938b079b, 0x9093938f, 0x05adc408, 0x928f8f92, 0x8b08938b, 0x2dee8397,
0x8b7f959a, 0xccffff08, 0xff0666e6, 0x6083f3ff, 0xe6f6ff27, 0x7f8b8166, 0x26408d08, 0xaaaab28b, 0x822600ff, 0xff083c20, 0x9a193300, 0x2800ff06,
0xaa8bcccc, 0x08648b6c, 0x747e738b, 0x19eaffff, 0x41087e9a, 0xfb216220, 0x088c4914, 0x7a540e25, 0x63f1ffff, 0xab211168, 0x6a168486, 0x4b180697,
0x69670be8, 0x0dc35e13, 0x94fbb331, 0xff063b15, 0xcdccf2ff, 0xf5ffff8b, 0x46ff3333, 0x2c600a19, 0x069b2416, 0x628307cb, 0x8f180e65, 0x40210c3b,
0x21458200, 0x1861cdcc, 0x330d2606, 0xab088b33, 0x05027406, 0x517a1385, 0x0733220a, 0x821a979b, 0xc0f22290, 0x21958200, 0x0482cc4c, 0xff2a5482,
0x8b34b3f2, 0x74f70e08, 0x1d6754f7, 0x11006205, 0x0f6fff20, 0x1f5f620c, 0x0b934a18, 0x220a2b41, 0x6094f7ab, 0xf6500e3b, 0xa6f5330a, 0x00ff0766,
0xff34b35d, 0x7c14f2ff, 0xb5ffffd5, 0xdb8252f8, 0xff66e627, 0xcc4ca2ff, 0x21e08208, 0xce566666, 0x4b4b180c, 0x0f806211, 0x9922dd82, 0x4f82069a,
0x849a1921, 0x41412144, 0x10840684, 0x1c840820, 0x5f180720, 0x84842df6, 0x44830720, 0x9a86cd20, 0xaa82a482, 0x7b14f222, 0x5483ba84, 0xa582a620,
0x0a1a4d18, 0x200f2a42, 0x06db5233, 0xb2190e20, 0x548208e9, 0xa5825920, 0xeb0d0023, 0x24448485, 0x074a00ff, 0x210486ae, 0x2f82b35d, 0x84eb0d22,
0x5921fe83, 0x7360189a, 0x078b2c17, 0x6bfeff6b, 0xff156666, 0x85991400, 0x62b32025, 0xc2411104, 0x07bc630e, 0xebffff2a, 0xff076666, 0xcc4c3a00,
0x24068949, 0xffcecc2d, 0x22048400, 0x8400800c, 0x82d78218, 0x18062024, 0x930bb654, 0x854183d7, 0x34b322d7, 0x82b2828b, 0x2033828c, 0x244486f3,
0x33d2ffff, 0x21588532, 0x9f83c5ff, 0x58855d82, 0x82308541, 0xff072158, 0x33204482, 0x8205874a, 0x83098258, 0x050e4b5d, 0x7d875d82, 0x327c0020,
0x142f4209, 0x0edbbf18, 0x0020e584, 0x5d839882, 0xac833420, 0xb686cd20, 0x824c3a21, 0x20ca8209, 0x617b5c08, 0xfeff3008, 0xff008063, 0x34336f00,
0xe9ffff15, 0xffff66a6, 0xff32b3e0, 0x99d9f2ff, 0x99d9ffff, 0xffff8b9a, 0x080080d6, 0x00ff218b, 0x359a1955, 0x456a00ff, 0x293305b9, 0xff8b0080,
0x66662600, 0x190d00ff, 0x1f00ff9a, 0x74ffce4c, 0xfe2c0526, 0xffcc4cf4, 0x34b30b01, 0x5c01ff05, 0xff245a82, 0x15cccc90, 0x840ed25c, 0x825a8254,
0x206a8360, 0x2074839a, 0x207e8433, 0x203a8408, 0x204483ff, 0x86508405, 0x8264845a, 0x8248826e, 0x8b082b7a, 0xff2f0e07, 0x9a19bf01, 0x5b8254f7,
0x82eeff21, 0x05c05a72, 0x34b3f122, 0x2e053842, 0xcdfeff08, 0xff06cc4c, 0x67666900, 0x4c96ffff, 0xf483209d, 0x00c0f922, 0x84109d4c, 0x22aa8210,
0x57ebd1f7, 0xfb220f11, 0xe482f734, 0x82082b72, 0x1814209a, 0x200cce67, 0x4d1f84f7, 0x9622365f, 0xb68285ab, 0x0500a027, 0xb33201ff, 0x088b4434,
0x66660d23, 0x0a5b42ff, 0x07b06918, 0x66a90027, 0x34fb1566, 0x208f83fb, 0x0a7c58f9, 0x29e06818, 0x1b946818, 0xff846b25, 0x82606900, 0xcdfe228a,
0x448a8233, 0xee200870, 0x0b116218, 0x2009fd69, 0x26168412, 0xab1100ff, 0x82088b85, 0xcccc22be, 0x21ca8206, 0x44829a99, 0x4d666621, 0xdb84379c,
0x730c0028, 0xf3ffff34, 0x28193473, 0x0e251014, 0x01ff30fb, 0x25638376, 0x156666c9, 0x0441ffff, 0xe5691835, 0xcdfe2109, 0x22059456, 0x565c4fee,
0xff23054d, 0x560a97f2, 0xef220868, 0x8182e13a, 0xb9deef27, 0x660d00ff, 0x83f98566, 0x34b322e9, 0x21e98207, 0x048248a1, 0x1832b321, 0x200d206b,
0x073874c0, 0x89440020, 0x186f4105, 0x201f3542, 0x060941f7, 0x41527821, 0x89201f09, 0x5a151342, 0xf7220e90, 0xde42cdcc, 0x1a4a4f35, 0x6900ff36,
0xffffb85e, 0x05349396, 0xcc3201ff, 0xff8b07cc, 0xa4b01100, 0x22068d46, 0x18f6680d, 0x25105c64, 0xf2ffff47, 0x7d760a97, 0xff082605, 0x3433cdfe,
0xb66a1807, 0x4f662008, 0x49430695, 0xe76a1805, 0x500c2010, 0xff2306a4, 0x18f3ffff, 0x8608d5d4, 0x0e083813, 0xb3f701ff, 0xdd00ff34, 0xfb15cdcc,
0x68ffff44, 0xff0567e6, 0x829ef0ff, 0x82f2209d, 0xe7ff2117, 0x0a229583, 0xa08246c1, 0x7cb4143b, 0x5700ff08, 0xff073c0a, 0xd6e364ff, 0xccfdffff,
0xbdffffce, 0xfffff628, 0x254e82d9, 0x0b572d00, 0x218225fb, 0xf0070526, 0xe8efffff, 0xec221682, 0x73821b8f, 0x82ae8721, 0x995934bb, 0xf00900ff,
0xffff08a4, 0xff0040d4, 0xead11f00, 0x83d8ffff, 0xcc3c22e7, 0x235b82ce, 0x0800803d, 0x98210682, 0x318a8233, 0xff67667f, 0x32332000, 0x99a000ff,
0x0100ff9a, 0x548266e6, 0xe2fa4f23, 0x2f208207, 0xff84ab14, 0xae471800, 0xca0a00ff, 0x0f00ff3e, 0xff204182, 0x0821a782, 0x08ba84f7, 0xff056424,
0x281c0b00, 0x8ff5ffff, 0xffff8b5e, 0xffccccee, 0x68e6f4ff, 0x66f6ffff, 0x2f0e0867, 0x34f814f7, 0x7e782b15, 0x0a29780c, 0x82752b20, 0x5c4f2209,
0x191883ff, 0x501db103, 0x3c790551, 0x110b7909, 0xb3f1ff23, 0x08217b33, 0x088bcd25, 0x998bb4f7, 0x43a1187e, 0xb0f1220c, 0x507c86a4, 0xa1180621,
0x1a890908, 0x59182185, 0x43420916, 0xeb082105, 0x17ba5618, 0xfcb4fb24, 0xd5501514, 0x86b68206, 0x830e20e2, 0x061d7aec, 0x4109d879, 0xeb202317,
0xa30c3b7a, 0x15eb23fe, 0x6394ffff, 0x94053951, 0x1617411a, 0x5c187c98, 0x0e2518dd, 0xf714f72f, 0x68804114, 0x12044518, 0x421cff41, 0xa07d547e,
0x822b200c, 0x183641fd, 0x42053c42, 0x2e421013, 0x057c4a37, 0x6918cc20, 0xfb240bfa, 0x1534f754, 0x0d1f5718, 0x4108007f, 0xc76c11ff, 0x0e00230f,
0x4d875c4f, 0x08203682, 0xfe42c898, 0x0c7d430b, 0xf82f0e23, 0x21818224, 0x0044f4fb, 0xf595190c, 0xa3b02807, 0x00ff8b08, 0x43a3b011, 0x4c21074f,
0x055f43ce, 0x82f70821, 0x20188230, 0x377d18a4, 0x056f4d08, 0x23604f20, 0x5d4f2105, 0xff239585, 0x4914aef1, 0x2f4f0658, 0xfb732161, 0x2105966f,
0x824e3433, 0xcccc2807, 0x330d00ff, 0x83088b33, 0x18342006, 0x2108925f, 0x5e4e0040, 0xfb082305, 0x684e0714, 0x00402108, 0x2107684e, 0x308200c0,
0x82f2ff21, 0x4f118506, 0xf72b0a15, 0xfba30714, 0xffff158c, 0x82d7a3ee, 0xebf12739, 0x0e00ff85, 0x59827a14, 0x2a5c1123, 0x20068408, 0x21118228,
0x0482ec11, 0xff7c1426, 0xb85e1100, 0x06844b82, 0xff231685, 0x8286ebf1, 0xa3ee2438, 0x82ff08d6, 0x82c2205d, 0xf6a82749, 0xf1ffff7d, 0x0a8266e6,
0x8b9a9934, 0x2cf70e08, 0xff1554f8, 0x33330200, 0x1f00ff06, 0x558267e6, 0x99991d3d, 0x17efffff, 0x1000ff0a, 0xffff3333, 0x08c275e4, 0x191800ff,
0xd6ffff9a, 0x850572fd, 0x2900230a, 0x0a828e02, 0x3233102c, 0x8a1b00ff, 0x1d00ff3e, 0x2f829a99, 0x83f6e821, 0x83662044, 0x33022285, 0x20518234,
0x23648230, 0x662700ff, 0xd8206f82, 0xff230a83, 0x826666cf, 0xf1ff21b9, 0xff2b2e82, 0xff0080fc, 0xcc4cf3ff, 0x83f9ffff, 0x19f32290, 0x2068829a,
0xddd01829, 0x074b2119, 0x1652bf18, 0x6654fc21, 0x15780c0d, 0x82cb200a, 0x11002332, 0x634e34b3, 0x18cc2008, 0x84083747, 0xf9ff2668, 0x00ff29dc,
0x227e830c, 0x823d8afc, 0x34b32209, 0x842b828b, 0x820020a4, 0x20bb83bc, 0x83c08567, 0x20d8830e, 0x26b58326, 0x155238bb, 0x82f8ffff, 0x0c0027d7,
0xffffb8de, 0x628233f2, 0xfe820720, 0x19f1ff23, 0x23258299, 0xcdccfdff, 0x0c1fae18, 0x17eeff22, 0x0be8cc19, 0x00217082, 0x26048211, 0x9a19eeff,
0x511600ff, 0x492105fe, 0x2b33834c, 0xff3333dd, 0x52383b00, 0xa900ff05, 0x00236a82, 0x82aec714, 0xccfd226a, 0x204f82cc, 0x852882f1, 0xf8ff236c,
0x80850a17, 0x21f3ff27, 0xffff0848, 0x238182dd, 0xaec7c4ff, 0x49213682, 0x842b824c, 0x86ec8254, 0x82d58269, 0x83082065, 0x84388306, 0x83112076,
0xe6e933af, 0x8b088b66, 0xfbdcfb07, 0x54f71584, 0x0774fb06, 0x546d24fb, 0xac4e180e, 0x44f72a08, 0xfb94f707, 0x74f71574, 0x202a8307, 0xed4e1844,
0x2c418217, 0xff94f80e, 0x9a991a01, 0xffff8b15, 0x2de38280, 0x34f3b9ff, 0x9994ffff, 0x96ffff98, 0xae8400c0, 0xffff0825, 0x82c2f5eb, 0xe00f25c4,
0x35eaffff, 0xfb280982, 0xffff5e7a, 0x8bd823e9, 0xbf201a82, 0xc331ea84, 0x00ff33b3, 0xff908224, 0x0080e1ff, 0xf53900ff, 0x341a82c2, 0xffb8dec9,
0xec11ceff, 0x6bf1ffff, 0xc6ffff85, 0xffff14ee, 0x225483ff, 0x8266e6fe, 0x5efd2c1e, 0xf4ffffb7, 0xffff70fd, 0x826626f6, 0x9a99255e, 0x26f5ffff,
0xff24e582, 0xf027feff, 0xfe278f82, 0x00fff41d, 0x82fc3700, 0x8220200f, 0x70002254, 0x27358200, 0xff291cf3, 0x16190300, 0x0c263082, 0x0c00ffcd,
0x0e8264fb, 0x820a1721, 0x48e12a09, 0x0900ff08, 0x00ff1799, 0x2c838327, 0xff3cdf50, 0x66e6ba00, 0xd4f400ff, 0x23a9827a, 0xfed40800, 0xfb267f82,
0x0700ffdc, 0x04833433, 0x0e044818, 0xccf8ff23, 0x241684cc, 0x33f7ffff, 0x23318234, 0x9a9994ff, 0xb2218682, 0x209d8266, 0x240483dd, 0x623d4ac9,
0x35928208, 0x00ff8331, 0xffecd10a, 0x710c0100, 0x050b00ff, 0x0200ff1e, 0x0982034b, 0x82c33521, 0x780d2b1e, 0x4100ff52, 0x00ff5dcf, 0x23829134,
0xa4303522, 0x5c200e82, 0x0f22b582, 0x1e823233, 0x7a541c2b, 0x8f0600ff, 0x1b00ffde, 0x08f18259, 0x7673ff27, 0x401900ff, 0xf9ffff00, 0xc3080efe,
0xaef2ffff, 0x3e00ff14, 0x00ff3233, 0xff64bb14, 0x9c191f00, 0xd33500ff, 0x223982f8, 0x82fca905, 0xf8d326e0, 0x5b0e00ff, 0x2bca8222, 0x00ff22b0,
0xffd8a304, 0xe2a7f5ff, 0x10261e82, 0xffffc295, 0xf5822cdb, 0xcc4c0927, 0xdcd2ffff, 0x30bc822a, 0x080080d4, 0x01ff2f0e, 0xff008043, 0x00c08c01,
0x05fb5b15, 0xc0ecff22, 0xed227182, 0x0e823433, 0xef200983, 0xeb3fde83, 0xff0866a6, 0x34b3e4ff, 0x7a2500ff, 0xdeffffe2, 0x00ff9919, 0xffb81e26,
0xcdccd9ff, 0x822300ff, 0xffff224a, 0x252e839d, 0xff48e1a4, 0xb483baff, 0xb81e8922, 0xb8236582, 0x82086666, 0x83802006, 0x33642d3a, 0x98ffff33,
0x00ff66e6, 0x8bcdcc7b, 0x7b269782, 0xff8bcccc, 0x6b826400, 0x19670023, 0x220a829a, 0x82cc4c7f, 0x3500272d, 0xff573433, 0x29826d00, 0x80b7ff28,
0x4300ff00, 0x7e820040, 0x9a99ec27, 0x59abfeff, 0x20a8829a, 0x20c683ea, 0x261f83f0, 0x826766e5, 0x43e3ffff, 0xb72105b2, 0x277283de, 0xffe23ac5,
0xe2ba2f00, 0x4d224f82, 0x4f835278, 0x48a1262f, 0x3d1800ff, 0x2200ff71, 0x00ff8f02, 0x28538330, 0x08f5283a, 0x00ff8392, 0x23b0835b, 0x8b9a998a,
0x3a209083, 0x422b2883, 0xff0548e1, 0x00200400, 0x82f9ffff, 0x030023c8, 0x0982f4bd, 0xffe13a26, 0x7c5f0300, 0x9e210982, 0x2aba82b9, 0xfff6681b,
0xead1cbff, 0x82f4ffff, 0xbdff214d, 0xff21c382, 0x29e482ce, 0x0080ddff, 0xffaf0e08, 0xad821701, 0x991f0122, 0x0027ad82, 0xffcccc02, 0x824c0000,
0xcc022204, 0x220982ce, 0x83ff9a19, 0x088b2613, 0xffb68bc0, 0x404718ff, 0x6060210b, 0x0d5e4718, 0xc08bb622, 0x0222bf83, 0x3688cdcc, 0x4a850983,
0x8682cc20, 0xcd4c0925, 0x82fbffff, 0x0a002181, 0xff212382, 0x225a83fc, 0x8300800b, 0x544818cb, 0x1c002909, 0xff8b33b3, 0xcd4c2300, 0x1e824c83,
0x2885ff20, 0x97820a20, 0x092e3c85, 0xf708ce4c, 0x2f00ff5d, 0xff15cccc, 0xa5822e00, 0x82d4ff21, 0x1f0021bf, 0xff216982, 0x03a118cc, 0x66db2208,
0x20738267, 0x26148303, 0x8b9919f8, 0x83f7ffff, 0x83fc20f6, 0x19f826f6, 0xffff089a, 0x200f83f1, 0x201f83dc, 0x831483e0, 0xd1ff2639, 0xffff3233,
0x058359d3, 0xff214982, 0x200f83d4, 0x202383bf, 0x202d83db, 0x055043af, 0x8233af21, 0xbfff21a2, 0x0021ce82, 0x27968324, 0xff85ebd0, 0xcecc2b00,
0xd1255482, 0x00ff3333, 0x2454842c, 0x00ff52b8, 0x23e38233, 0xfa1ef1ff, 0x5484d082, 0xf0b7fc2b, 0xe60700ff, 0x00ff8b66, 0x23398208, 0x10480300,
0xa9830f83, 0x06e10e2c, 0x992400ff, 0x1f00ff99, 0x3985ae47, 0xcd20dc82, 0x66215882, 0x22c88266, 0x827b142f, 0x90c2250a, 0xb34000ff, 0x24256282,
0x00ff0ad7, 0x05994250, 0xcccc5022, 0x40204f82, 0xdb25c483, 0x00fff628, 0x3b74832f, 0x08703dd4, 0xffff078b, 0xff66663f, 0x9a990000, 0xb0ffff15,
0xff8b0080, 0x0080bfff, 0xe7180484, 0x00210d30, 0x18168640, 0x8312e15e, 0x2360821b, 0x0800804f, 0x3f840685, 0x3285ff20, 0x08255483, 0x00ffef0e,
0x24968296, 0xe23a6301, 0x82ff8315, 0x822220b6, 0x38002250, 0x250982cc, 0xff1e451a, 0xaa484400, 0x22ab9105, 0x83ffff98, 0x82ff20ab, 0x82d020ec,
0x33c9410a, 0x8299f221, 0xb3df2a44, 0xe5ffff32, 0xffff9c19, 0x327982d2, 0x6466d8ff, 0x66d7ffff, 0x00ff0866, 0xff343369, 0x1899adff, 0x3d8ad18b,
0xffd7e36f, 0x8e57a8ff, 0x4800ff05, 0xffff6766, 0x151e45c7, 0x4c5a00ff, 0xb9ffffcc, 0x15823333, 0xb2820420, 0x2e05a05c, 0xff666602, 0x9a990900,
0x0b00ff8b, 0x82089919, 0x990a2206, 0x1413439a, 0xbb43ff20, 0x438c200d, 0x602209b7, 0x3882568b, 0x82f1ff21, 0xfdff2b4a, 0x857e9a19, 0x33f4ffff,
0x61460834, 0xe1ff2305, 0x7182cccc, 0x9a190b2a, 0x661400ff, 0x0600ff68, 0x00238682, 0x82666617, 0xcc19226a, 0x213882cc, 0x71834e00, 0x0080bf25,
0x834100ff, 0x80b03242, 0xff088b00, 0x34b3daff, 0xddffff8b, 0xffff66e6, 0x200483f0, 0x222082e6, 0x83b3e8ff, 0x82602057, 0xb5fe260f, 0xff150080,
0x102b43ff, 0x2b431a82, 0x52382107, 0x20122b43, 0x082b43b8, 0x1e82b820, 0x210b2b43, 0x2b43ae47, 0x8a092507, 0x1600ff3e, 0x10214983, 0x2209824a,
0x8299991d, 0xcdcc240e, 0x841d00ff, 0x4f5e2b7e, 0xb5ffff5c, 0xff0533b3, 0xd682ffff, 0x66f9ff23, 0x83098267, 0x4cf9249e, 0x82858bcc, 0xafff21d2,
0xf342d282, 0x83122011, 0x110021d2, 0x03205883, 0x10202083, 0x002eee82, 0x08008006, 0x334900ff, 0xc6ffff34, 0x53826666, 0x32b3db25, 0x82ecffff,
0xd5ff211a, 0x2f06484a, 0x33d0ffff, 0x8b088b34, 0x01ff0e06, 0xaacc4cfa, 0x2a24f782, 0x00f834b3, 0xef362c82, 0xffa786ab, 0x3ccad6ff, 0xefffff8b,
0x086f5c8f, 0xcc2affff, 0x1a84fccd, 0xff0b9724, 0xa082e4ff, 0x70140026, 0xdcffff62, 0x00374c82, 0x8b19e420, 0xaa01ff08, 0xff069a99, 0x90c22000,
0x1400ff8b, 0x82aefe7f, 0x34b32b3b, 0xfeff08a7, 0xf734b3ed, 0x9718158d, 0xc0200807, 0x0c325618, 0x820d8a5a, 0xffff2491, 0x4cccccf2, 0xf3221509,
0x688266a6, 0x0683ff20, 0xf3ffff24, 0x1f5b3473, 0x63094c0b, 0x01ffaf2b, 0xf7cc4ce2, 0x00ff1594, 0x21a98322, 0x4d193b00, 0x8b3016e3, 0xff066866,
0x00809bff, 0x1950ffff, 0xffff059a, 0x40304d19, 0x8399ab21, 0x19992246, 0x2257829a, 0x41cdccd4, 0xfc2807d6, 0xff87e1fa, 0x8f42fbff, 0x14304d19,
0x8b06412d, 0xb7f9ffff, 0x0600ff4c, 0x728bcc4c, 0x4d19057a, 0x8a2a0930, 0x4c0100ff, 0x0000ffce, 0x0983a65b, 0xff08cc29, 0xd0751f00, 0x846e00ff,
0x8ae022b1, 0x220a8730, 0x845aa4ff, 0xffff2420, 0x8476d1ff, 0x20448234, 0x05494801, 0x34b30722, 0x48215d82, 0x256284b4, 0xbe0700ff, 0x47828bfa,
0x52f82928, 0x0500ff06, 0x28823e0a, 0x71bd0422, 0x00249c85, 0x871f0503, 0x2b221c82, 0xbe863333, 0xe6660023, 0x24cf8266, 0xff67e6ce, 0x27e08500,
0xff9919fd, 0xe03a0a00, 0x58834982, 0x862b0a22, 0x4f190e82, 0xd4201887, 0x26826382, 0x08f6ff23, 0x23578274, 0xff008064, 0x0a874f19, 0xf72f0e2d,
0x1534f834, 0x14f7076b, 0x6707ab06, 0xd1560534, 0x540e2206, 0x13b6727a, 0x2209726e, 0x82bb076b, 0x801a22bf, 0x20368200, 0x18568315, 0x2509528e,
0x54fc075b, 0x5618bb06, 0xbb201775, 0xcd206a8c, 0x23059267, 0x33b31100, 0x0de97918, 0x290add6e, 0x34fb34fb, 0x0654f815, 0x2a4ca4fb, 0x4cf42018,
0xa425186c, 0x04fbcb07, 0x06274815, 0x28070024, 0x494bfff6, 0xd7082205, 0x05e65d0a, 0xcdcc0822, 0x0723c282, 0x75ff3333, 0xab200aa1, 0x00236982,
0x83cccc08, 0x26a2822c, 0xff343307, 0x8233f7ff, 0x826b20a2, 0x0a017668, 0xccccf822, 0x08255a85, 0x14f7076b, 0x1967898b, 0x210d2a5f, 0x591806ab,
0x67a80ba6, 0x80857082, 0x6789b283, 0x15bb2422, 0x0d47e718, 0xe888848a, 0xc118b183, 0x80850949, 0x5d4cab82, 0x48342007, 0x082005aa, 0xd518e88b,
0x6b250c47, 0xfba4fb06, 0x65384144, 0x3320d086, 0xf822bc82, 0xf283cdcc, 0x18095541, 0x41166be1, 0xf7213351, 0x24671804, 0x07002108, 0x41411f41,
0x0e3c1883, 0x19a801ff, 0x1535f79a, 0xdef0ffff, 0x0f00ffb8, 0xffffb81e, 0xffae07e7, 0x564ef5ff, 0xea3dcf82, 0xff08a09a, 0x52f8cfff, 0xff065b07,
0x9a9949ff, 0x33f300ff, 0x93850534, 0x80f6ffff, 0x059a7a00, 0xe6f5ff23, 0x069f7666, 0x825c4f21, 0xb0f12533, 0xf1ffffa4, 0x2d1f4b53, 0x00ff06db,
0xff6666b6, 0xcccc0cff, 0xa0829105, 0xff68e624, 0x53820900, 0x4cfbff26, 0x0a00ffcc, 0x22052150, 0x8252f83f, 0x0fd02377, 0x5882075c, 0x289cea27,
0xdc1900ff, 0x219c822a, 0xab822045, 0x84462121, 0xff0824b0, 0x82194f00, 0xfa4f2398, 0x428205e2, 0x83146321, 0x8b122104, 0x33211b82, 0x21a682f8,
0x0f82ec9c, 0x08486127, 0x0ab0ffff, 0x2d2a823e, 0xff0570fd, 0x66e6a7ff, 0xff1513f7, 0x5f842f00, 0x5f84df83, 0x5f822920, 0x82b8de21, 0xcd4c265f,
0x3a0e00ff, 0x205f94e2, 0x224f8212, 0x82ff1a64, 0x827c2000, 0xf032211f, 0x9d216382, 0x2163881c, 0x638266e6, 0x50418983, 0x23e6220a, 0x215382d8,
0x63836045, 0x82e89b21, 0x11d02989, 0xffff07ea, 0x06daebc0, 0xf0211782, 0x201782a4, 0x36f984f6, 0xffff0040, 0xff52f8f9, 0xa4f0f7ff, 0xd7ffff08,
0xffff0a97, 0x82281cca, 0x822720d6, 0xcaff23e1, 0x0a8234b3, 0x66e62a2a, 0x74fb05c3, 0x3b1554fb, 0x180c5554, 0x58136252, 0xeb270d54, 0x0a00ff06,
0x418b5c0f, 0x00320568, 0xff00c004, 0xae070600, 0x0f0800ff, 0x00ff085c, 0xbb826628, 0xb8de3536, 0xd8ffff05, 0x00ff9002, 0x05ec5135, 0x0e055361,
0x34f894f7, 0x2609ab64, 0xffff5d6d, 0x8266e6a2, 0x198d23b3, 0x0682089a, 0xb85ece2b, 0x591500ff, 0xd2ffff9a, 0x284082a6, 0xffb89e23, 0xae47dcff,
0x06995f08, 0x48a1cd2a, 0x3ad6ffff, 0xd3ffffe1, 0xff20c383, 0x0482e883, 0xfd201e82, 0xff207f82, 0xff210484, 0x28f88260, 0xff1884fc, 0x00600100,
0x268a8288, 0xff764001, 0x8201fdff, 0xc5022daf, 0xfeffff60, 0x00ff3433, 0x8b004003, 0x42201a82, 0xff280682, 0x9ad93000, 0xc21f00ff, 0x1927a582,
0x00ff0180, 0x8248a113, 0x9920221a, 0x2a748299, 0x00ffc2b5, 0xff676624, 0x82e6f8ff, 0x6626228e, 0x20358366, 0x2306828d, 0xb37100ff, 0x5d284782,
0xff8b4821, 0xb8de7200, 0x0683bc82, 0x8effff26, 0x00ffcc4c, 0x3a651682, 0x2f0e2806, 0xb4f714f7, 0x18072b15, 0x2b0ea255, 0xb6b68bc0, 0xeb08c08b,
0x0614f707, 0xff221c82, 0x378284ff, 0x829bff21, 0x82048553, 0x826a820e, 0x8bcd2215, 0x181182ff, 0x840c2afb, 0x14fb2334, 0x7a8215eb, 0xd2181120,
0xcb20128f, 0xa860ea82, 0x088b640b, 0xfb074b29, 0x07cb0614, 0x898bd4f7, 0x5bd7183a, 0x203a850d, 0x20588234, 0x05786e0e, 0x7e828420, 0x7c54ee23,
0x293a8608, 0x34f82f0e, 0xffff15eb, 0x4476cff7, 0x9e562d18, 0xa900ffb8, 0xff053453, 0x9a9956ff, 0x98200483, 0x6c37285d, 0xcf6b1ebe, 0xffff241f,
0x83ccccf9, 0x82ce2004, 0x0a8818b0, 0x2f0e240d, 0x6dab74f7, 0x1b5d3b5a, 0x5ea9221c, 0x27f782b8, 0xff053493, 0x6666a900, 0xe15c0484, 0x518b2025,
0x866d06f9, 0x07926c08, 0xdb7ac020, 0x10bc6005, 0xffef0e2b, 0x34336602, 0x337100ff, 0x23ce8234, 0x94cc4cfc, 0x10832382, 0x32b3063a, 0x4cf6ffff,
0x5b088bcc, 0x8f00ff06, 0x8b079a19, 0x192c00ff, 0xdcffff9a, 0x00280482, 0xff66e623, 0x66e6d3ff, 0x087c7118, 0x09c98118, 0x18a4b021, 0x200f15bd,
0xd9531854, 0x14f7210c, 0x0c9fa718, 0x250aa447, 0xe670ffff, 0x6f820766, 0x08207882, 0xf72c4482, 0xffffc440, 0xfff027fa, 0xae47fcff, 0x06229782,
0x0a890824, 0x00ff2008, 0xff621002, 0x9eaff5ff, 0xdb0600ff, 0xf9ffffe8, 0xdb084821, 0xfaafffff, 0x00ff05e2, 0x82c2aa04, 0x6666213a, 0x33201b82,
0xfd21c882, 0x20e382b3, 0x05c74506, 0x98190622, 0x0622ca82, 0x4182182e, 0xff105826, 0xa0b00400, 0xaf210482, 0x233c82e0, 0x1e055000, 0x06223c82,
0x37827cd4, 0x8258d921, 0x9c192620, 0x4c0a00ff, 0x2f7682ce, 0x0894cc4c, 0xccc9feff, 0xeeffffcc, 0xfb15cccc, 0x6218c582, 0xf7231574, 0x82bb0724,
0xb30922e1, 0x266682f8, 0xff3bbf08, 0x82d80500, 0xb8032a66, 0x0800ff52, 0xff08dcf9, 0x240a8700, 0xeffdffff, 0x205f829e, 0x21c78250, 0x8f8224f9,
0xb8de0623, 0x842f8208, 0xfbff2385, 0x97824055, 0x82f6a821, 0xcdcc21d9, 0x57218a82, 0x2309820a, 0x088b66e6, 0x16850685, 0x83fdff21, 0x4cfb2720,
0xfbffffcd, 0x3c825c4f, 0xff23ff85, 0x82852bf9, 0x66262120, 0xf0266282, 0xf5ffffa4, 0x768432b3, 0x7d858220, 0x89828220, 0xff00c039, 0x3433faff,
0xb30900ff, 0xbb088b33, 0x0724fb06, 0xd3ffff8b, 0x41ff66e6, 0xdc2705dc, 0x00ff9a19, 0x189a192c, 0x5b1b2674, 0xb3200834, 0x2a0c685b, 0xf8ebaf0e,
0x00ff1554, 0x8200800b, 0xe6092721, 0xf7ffff67, 0xc2825ccf, 0xff333326, 0x14aef4ff, 0x01218482, 0x2e7e8280, 0x059082f3, 0xb3a401ff, 0x00ff0632,
0x82cc4c14, 0x8210202b, 0xebff2190, 0x4c369a84, 0xebffffcc, 0x55080a97, 0xf53fffff, 0xffff05c2, 0xff9c19fc, 0x2083f2ff, 0x8266f321, 0x83f620d7,
0xb3f12941, 0xff088b32, 0x68e6c2fe, 0x09234282, 0x825b3333, 0x1934224f, 0x0ca66d9a, 0x6e0aa06e, 0xa2180685, 0xff220f93, 0x3383b7fe, 0x66f5ff23,
0x20218266, 0x20f883f6, 0x22678308, 0x82ccccfd, 0xcc4c2cc4, 0xc3ffff08, 0x01ff71bd, 0x8200803c, 0xdccb2287, 0x20166929, 0x250d894e, 0xfcab06d3,
0xde821564, 0x5e181a20, 0x5e181229, 0x88821626, 0x2d82e520, 0x88eaff21, 0x820e8204, 0x83ff20eb, 0x84ff2006, 0xc9661816, 0x4bf8200a, 0x31aa0544,
0x0e2d8dad, 0xf4f764f8, 0x0654fb15, 0xfb05cb4b, 0x89fe8234, 0x0e671885, 0x073b260a, 0x9b0694f8, 0x885a8607, 0x84ff20a3, 0xfc0825b3, 0x15e4fb64,
0xa118d686, 0xf8200f5a, 0x00205382, 0x8a09154d, 0x84f737d9, 0x0694fc07, 0x0e0784fb, 0x9300ffaf, 0x94f7cdcc, 0x4c01ff15, 0x294d3433, 0x071d4106,
0x95835085, 0x9f820820, 0x3078a588, 0xe536080f, 0xff08707d, 0x9a99b7fe, 0x5a00ff07, 0x00ff3e8a, 0x059a19b5, 0xdc0a00ff, 0x1500ff29, 0xffa132b3,
0x9a990d00, 0x661800ff, 0xff088b67, 0xcc4c8b01, 0xfeff156b, 0x9d82b374, 0xe6f3ff23, 0x2bbc8266, 0xff66e6f4, 0x3333f9ff, 0x99faffff, 0x0808836d,
0xcdcc8823, 0xb311ffff, 0x01ff0533, 0x069a19bf, 0x1e0c00ff, 0x00ff8bb8, 0xff7c140b, 0x1cda0600, 0x6b0500ff, 0x29648284, 0xff0888d6, 0xfeff5f00,
0x728254f7, 0xe47a0b22, 0x4f347282, 0xf0ffff5c, 0xffa40080, 0x6466e7ff, 0xfb0e088b, 0xf600ffb0, 0x56238183, 0x4e159a99, 0xff2405f9, 0xffccccf9,
0x20121e7f, 0x281682f7, 0x00e0fcff, 0xd1f7ffff, 0x209382ec, 0x250982c0, 0x0890c2f9, 0x2e472b2b, 0xeb2b211b, 0x23365f65, 0x602900ff, 0xd6226182,
0xe582ec91, 0x00802528, 0xd6ffff07, 0x048248a1, 0x2038c764, 0x668a82eb, 0xeb2019fb, 0x0023c682, 0x851e4506, 0x49ffaad9, 0xf32106ea, 0x21ad8280,
0x5465c0eb, 0xa0d6220e, 0x20c88200, 0x21c38251, 0xc383dafe, 0x61290023, 0x27108248, 0xff054861, 0x1e850c00, 0x14230486, 0x478b3433, 0xff2005a0,
0x082d4682, 0xf601ff0e, 0x00ff9a99, 0x156666a9, 0x6696822b, 0xd065363b, 0x21808218, 0x0482846b, 0x05006023, 0x209683ff, 0x24918406, 0x9ed6ffff,
0x06f647b8, 0xdb478683, 0xffff2410, 0x7452b8f9, 0xb4650869, 0x062b7520, 0x411d0042, 0x01201093, 0x19734f19, 0x9118c020, 0xd6220d36, 0xb28285ab,
0xc382a020, 0x80250124, 0xbe840600, 0x7042c884, 0x2beb2136, 0x6e26fc83, 0xf3ffff14, 0xce675278, 0x82022009, 0x0080270f, 0xf8ab0e08, 0x79181534,
0x326f0bc3, 0xc61b190a, 0x19eb207e, 0x18189519, 0x22305455, 0x6e0654fb, 0xf72216bc, 0xbc6e4b34, 0x0d056f0e, 0x12444f18, 0x4b8f1420, 0x5618cd20,
0x646f0bcf, 0x14f72411, 0x1814f706, 0x20305e4f, 0x18658f94, 0x281f5e4f, 0xcb0e0694, 0x9b1514f8, 0x278d8207, 0xff0ad708, 0xf6280700, 0x0e820486,
0xcb088b22, 0x180c0452, 0x220a3e6a, 0x82ab077b, 0x80323c1a, 0x1900ff00, 0xff05703d, 0x66e60800, 0x730400ff, 0x0900ff34, 0x00ffcecc, 0x825c4f02,
0x66e62809, 0x00ff088b, 0x7d66e6b0, 0xfb21170b, 0x8b7818d4, 0xac631817, 0x82b4201a, 0x14737d33, 0x9c00ff2f, 0xffff9a99, 0x15ccccc6, 0x19f7ffff,
0x05e25b99, 0x33f6ff22, 0x07893019, 0x9a19f638, 0x14fb088b, 0xff074b06, 0xcdcc7200, 0x00ffa106, 0xff9a190f, 0xc7831a00, 0x1c20c184, 0x2305d353,
0x8b34b31c, 0x47821685, 0xffa19a26, 0x66e6f0ff, 0x722ec982, 0xeb06cccc, 0x4fffff07, 0xff069a19, 0x3582cdff, 0xcce6ff23, 0x27fd82cc, 0xff666623,
0x3433a1ff, 0xcf267782, 0xff8b6666, 0x8883d8ff, 0x820cf861, 0x090f6217, 0x5361ff20, 0x09266207, 0x83270021, 0x20178338, 0x827a8208, 0x62448517,
0x3c820542, 0x0e088b2b, 0x4c1a01ff, 0x6800ffcc, 0x2bdf834c, 0xffceccdd, 0x9a99dfff, 0xfcffff05, 0xfa207d83, 0xf9217183, 0x208782e6, 0x219783fd,
0xea8299f9, 0x63066322, 0x17c35418, 0x3b201a9a, 0x210e6149, 0xa57234b3, 0xdb082105, 0x00214c82, 0x2b6c8206, 0x6d870200, 0x190600ff, 0x0400ff9a,
0x04836c82, 0x00ff0825, 0x826045a1, 0xcd4c2104, 0xfa259182, 0x00ff9999, 0x838c8410, 0x19122224, 0x2242829a, 0x8333b312, 0x336127da, 0x4e00ff34,
0x0483cdcc, 0x9018cd82, 0xff2210f5, 0x708233b1, 0xcc9eff23, 0x832d82cc, 0x014b1806, 0x4ced2b12, 0xffff8bcc, 0xff68e6ed, 0x65830200, 0x9819ef27,
0x660500ff, 0x21858266, 0x5e82b35d, 0x34b3a726, 0x1600ff15, 0x11207684, 0x82110862, 0x057f6293, 0xff261b83, 0x8b66e6e9, 0x0684ff08, 0x1684ff20,
0x11c43119, 0x2b0fb262, 0x01ffef0e, 0xffcc4c1e, 0x66e62401, 0x01206882, 0xf9205083, 0x0023d783, 0x82849a99, 0x83f92099, 0xff8329bc, 0x6666ffff,
0xfeffff84, 0x2005b748, 0x209d8234, 0x2a248216, 0x3333ecff, 0xffff9205, 0x8633b3f9, 0x83f620be, 0x4cfc2720, 0xf6ffffce, 0x8a826766, 0x32b3fd29,
0x99fbffff, 0x41ffff99, 0xe62105cb, 0x83098267, 0xfffa2239, 0x201e82ff, 0x202e83fc, 0x05fa41fa, 0x869a1922, 0x21058757, 0x2083fbff, 0x0080fc22,
0x4c213982, 0x202582cc, 0x249f82fa, 0x6666f8ff, 0x21458481, 0x12828e82, 0x7183e320, 0xce4c092b, 0xf5ffff05, 0xffffcd4c, 0x21b783f7, 0x0982ccf3,
0x5283f820, 0x33b3f223, 0x23258286, 0x6e9a19f9, 0xfe202182, 0xf6201283, 0xf8208983, 0x99212184, 0x839e829a, 0xccfe2293, 0x832583ce, 0x33ff2140,
0xf921a882, 0x9b421833, 0x20398207, 0x2040858b, 0x05a8498b, 0x66000023, 0x82098266, 0x0000212a, 0xf6203584, 0x00214082, 0x20358301, 0x215e82f7,
0x1e830700, 0x00206883, 0x39849582, 0x82a89921, 0x99f3257a, 0xffff9099, 0x00219883, 0x27a28307, 0xff0040f5, 0x66e60800, 0xe3222182, 0x8682aec7,
0x8232b321, 0x02f72325, 0xc882888f, 0x18e1fa21, 0x8307348e, 0x99072266, 0x2a25829a, 0xffc375fc, 0x34b30400, 0x83fcffff, 0x820420f2, 0xfcff246b,
0x8390c3f5, 0x222f831a, 0x82cc4c05, 0x35fd2140, 0x052a2582, 0xffff0100, 0xff4676fd, 0xc7830500, 0x64bbfd22, 0x4c210982, 0x242983cd, 0x00ffc74b,
0x22b08309, 0x8287d602, 0x26898209, 0xdf0f0700, 0x830600ff, 0x1600281e, 0x00ff152e, 0x82cdcc13, 0xe1fe2248, 0x2b158248, 0xffffcccc, 0x921f85fe,
0x8b08938b, 0x33270e82, 0x0100ff34, 0x8292e17a, 0xb81e2105, 0x53821e84, 0xebd1e922, 0xce203483, 0xf8273482, 0x00ff21f0, 0x82323307, 0x7929217d,
0x03225e86, 0xe88239b4, 0x0834b322, 0x4421d282, 0x8234829c, 0x0200231e, 0xcc82ba89, 0x825c4f21, 0x23fc8213, 0xae070500, 0x03221e82, 0xa7823d0a,
0x05004027, 0x070300ff, 0x210a82ae, 0x0982ce0c, 0x82cd4c21, 0x82e12029, 0x8a0321cb, 0x04221e82, 0x2982a4b0, 0x33b30522, 0x8c206782, 0x0a221e82,
0x43821f05, 0x828e8221, 0x71fd2162, 0x0a217682, 0x271e823e, 0xff52381c, 0x34b3f6ff, 0x0a224882, 0x1a8200c0, 0xff0ad725, 0x83330c00, 0x22b68333,
0x8267660c, 0xe2fa2252, 0x208c8208, 0x220a82e6, 0x82ec111d, 0x19012229, 0x20b1829a, 0x20778247, 0x22098308, 0x82146e07, 0x2229830e, 0x83962301,
0x22728329, 0x8220d000, 0x82cc2033, 0x6b002291, 0x22098202, 0x848b66e6, 0x8b662144, 0xff231685, 0x82fe94ff, 0x232a8209, 0x2030ffff, 0x09201a82,
0xff234082, 0x822adcfe, 0x257e82ad, 0xec91f8ff, 0x688300ff, 0xb8f6ff23, 0x24398552, 0xeee2ffff, 0x207e8214, 0x23e7820d, 0x1e05fbff, 0xff26a885,
0xff48e1f8, 0x48830a00, 0xf628f722, 0x1c202982, 0x00251e82, 0x05cc4c09, 0x22ee8294, 0x8295c2f5, 0x727d2bea, 0xb30500ff, 0xf8ffff34, 0x21823273,
0x00800327, 0x54fbffff, 0x211f827c, 0x09826666, 0xffd82325, 0x82e60300, 0xfafa2209, 0x821e83e0, 0xfaff23d4, 0x6a82289c, 0xcccc0226, 0xfdfaffff,
0x02203e82, 0xfa223383, 0x33820ad7, 0x82ce4c21, 0x34b32213, 0x25348208, 0xffff32b3, 0x23824cf7, 0x3383fd20, 0x66e6f623, 0x25638284, 0xff08cecc,
0x3983e9ff, 0x3233ec2a, 0x81ffff05, 0x15a734b3, 0x4e05894d, 0xff27053d, 0x8b9a99e9, 0x63e6ffff, 0xe42505e5, 0x00ff9a99, 0x205e8315, 0x208d82eb,
0xefae1800, 0x83142011, 0x1b00212d, 0x00212d84, 0x4d2d8219, 0x162005de, 0xde4d2d82, 0x01ff2205, 0x23bd8244, 0xcecca0fe, 0xf9256682, 0xffff3433,
0x208984fe, 0x232183ff, 0x8b66e6f8, 0x06838f82, 0x00ff8427, 0xff9a9900, 0x232283ff, 0x9a190100, 0xa1821682, 0xa682ab84, 0xceccf822, 0xc382bd82,
0x84ffff21, 0x23d783cd, 0x32b30300, 0xfa222582, 0xf78734b3, 0x0024d682, 0x86008002, 0xcc210f82, 0x821a83cc, 0x03002450, 0x82059a19, 0x82032011,
0xfbff2185, 0x00217f82, 0x27798302, 0xffcc4cfb, 0x00800300, 0xf8202582, 0x81410f82, 0x80fd3005, 0x948e9500, 0x0900ff08, 0x00ffce4c, 0x82cc4c1c,
0x19f72579, 0x0a00ff9a, 0xab556382, 0x330c2205, 0x294c8234, 0x08cc4c0d, 0x0600ff6e, 0x218266e6, 0x32b3f622, 0x20060d42, 0x206f83f8, 0x20e38407,
0x224082cc, 0x82666609, 0x33ff215e, 0x06201e82, 0xff212382, 0x231e83ff, 0x8bcecc06, 0x08203984, 0xf6820685, 0x16827f83, 0x35830982, 0x81822a82,
0x35830120, 0xff224082, 0x1e830700, 0x85830820, 0x01249584, 0xa8089a19, 0x05244084, 0x0c00ff90, 0x07201c83, 0x98821c83, 0x0800ff22, 0xac83e482,
0x95847682, 0x8824c283, 0x0200ff94, 0x4982d882, 0x05227f83, 0x5e8233b3, 0xd0820420, 0xff22fe83, 0x32830400, 0x33330422, 0x02224c82, 0x1a823433,
0xcc4c0523, 0x225a838e, 0x82cccc02, 0xce4c211d, 0x70823d84, 0x02229083, 0x2182cd4c, 0x3c840820, 0x4433b321, 0xff210519, 0x237e83fd, 0x84323307,
0x13201a82, 0xff24c182, 0x05cdcce9, 0x3f833082, 0x99190123, 0x83d78292, 0x20a58278, 0x8321828b, 0xff922306, 0xf485ffff, 0xffffcc25, 0x8667e6fe,
0x16002338, 0x38833333, 0x82cc4c21, 0x19092233, 0x05824698, 0x99090026, 0xfcffff9c, 0x9b827984, 0xfdffff22, 0x05227983, 0x09823433, 0x90008022,
0xb6870582, 0x83058821, 0x26b6840d, 0xffff68e6, 0x82cdccfb, 0x30b321c0, 0x80213c82, 0x20628200, 0x21478307, 0x14824cfa, 0x00800229, 0x08828881,
0x82f6ffff, 0xe3ff23c9, 0x758234b3, 0x64e6082b, 0x4cf5ffff, 0x0700ffcc, 0x226f8219, 0x82ccccf3, 0x99f3294c, 0xffa8089a, 0x9a19f9ff, 0x09202182,
0xff211c82, 0x051b46fe, 0xf7202b82, 0x01200983, 0xf6208683, 0xe4822582, 0xff237882, 0x82ce4cf9, 0x82662009, 0x33f9237d, 0x39848b32, 0x06850820,
0x9921f282, 0x21108298, 0x09823233, 0x2a823583, 0xfe208182, 0x40823583, 0xf8ffff22, 0xf8209e83, 0x95830e84, 0x08216882, 0x2440846e, 0xffff8605,
0x058042f2, 0x98827682, 0xf7ffff22, 0xac82a283, 0x9584d582, 0x8e27c283, 0xfdffff82, 0x82810080, 0x82662049, 0x4cfa2227, 0x225e82cc, 0x84d04cfb,
0xffff24fe, 0x823033fb, 0x9a99221f, 0x210f8286, 0x1a829a19, 0x6f83fa20, 0x66e6fc22, 0xfd205e83, 0xe6209084, 0x41823682, 0x1a832b82, 0x32b3fd22,
0xf6202582, 0xff474b83, 0x08d24805, 0x34b3f923, 0x069e4392, 0x3316002e, 0x00ff0534, 0xff9a191b, 0xcc4c7e00, 0x5107cc52, 0x60440fe3, 0x80ea230c,
0xa3198b00, 0xf5510cfd, 0x0bfa520f, 0x250af251, 0x34f8ef0e, 0x6283a4f7, 0xae836120, 0x66e6a222, 0x2405a749, 0x9a198dff, 0x838f828b, 0xffff2106,
0xa7491683, 0x6ed82c0d, 0x0f00ff14, 0xffffb89e, 0x822a9cdb, 0xcd0c265b, 0x8fe2ffff, 0x3631825c, 0xff299cef, 0x703ddfff, 0x28e9ffff, 0xe7fffff6,
0xffffa470, 0x83d7a3ff, 0x82d82004, 0x82fd201e, 0xfdff2361, 0x0f8286cb, 0xff2e4282, 0xffe0bafc, 0xa03a0100, 0x1efdffff, 0x0a8208fa, 0x82d14221,
0x4e22300a, 0xb30200ff, 0xfeffffb6, 0x00ffcc4c, 0x82d90e03, 0x2600388a, 0xff8b9a59, 0xf6682000, 0x1e0b00ff, 0x1800ffb8, 0x00ffe1fa, 0x8286eb0c,
0xcc1e2135, 0xf0277e82, 0x00ff28dc, 0x489a9923, 0x002105e7, 0x05f66526, 0x66e67222, 0x5d223582, 0xd7849a19, 0xe7820a82, 0xb72b3182, 0xfeff9899,
0x15cc4cf4, 0x821900ff, 0x1d0023f8, 0xcf82cecc, 0x25220983, 0x2582cc4c, 0x9a992822, 0x2105bc4a, 0x38833533, 0x8221cd21, 0xffff2481, 0x828b7caf,
0x06b221b7, 0xf5210482, 0x21048280, 0x04827eaf, 0x827eff21, 0x6f002b4f, 0xfaffff00, 0x00ff36be, 0x09838000, 0x1832b321, 0x36099ceb, 0xff48619d,
0xec51b0ff, 0x6badffff, 0x95ffff84, 0xffff7a94, 0x8234b3ea, 0x82142035, 0xb3ff2675, 0x00ff6666, 0x2104824a, 0xa583c7ff, 0xb0825a20, 0x21221a82,
0x8682a4b0, 0x48a11f31, 0x020800ff, 0x1b00ff0c, 0x00ffac87, 0x82d6f80d, 0x5918321a, 0xf4ffff9c, 0x00ff1e05, 0x8164e61e, 0x332400ff, 0x239d8234,
0x1c0f0300, 0x02263182, 0x00ff74b3, 0xee82b901, 0x90420127, 0xe10200ff, 0x22318248, 0x83a03a01, 0x2bb7830a, 0x00ffe06d, 0xffde4403, 0x9ce6fdff,
0x34221382, 0xc28208bc, 0x2982b820, 0x4a570022, 0x4c359682, 0x1700ffd0, 0xffff6866, 0xff30b3ef, 0x98991f00, 0xf7af0e08, 0x278382b4, 0xff153433,
0xcdcc7fff, 0xac95aa18, 0x9af90a2c, 0x190b00ff, 0x0600ff98, 0x09825efb, 0xffce4c27, 0x5c0d0000, 0x31058208, 0xfeff66e6, 0x05322948, 0x339100ff,
0xb7ffff34, 0xdf82cccc, 0x1582fe20, 0xe6ffff22, 0x0982fe82, 0x082cdd18, 0x82981921, 0x4c032930, 0xf70e06ce, 0x4b15ab34, 0x2a0e826f, 0xff8b7a54,
0x86ab1100, 0x6294f708, 0x6818059f, 0xcb2011b0, 0x0e5b7118, 0x09bb5f18, 0x842a3983, 0xb3f1ffff, 0x0e00ff33, 0x80507c54, 0x83082005, 0xfaca2262,
0x238082e1, 0xff1f05d5, 0x0b9b7618, 0xff216283, 0x9b7618ca, 0x87629012, 0x39511895, 0x20628508, 0x3a62867a, 0x995601ff, 0xb600ff9a, 0xfb159a99,
0x0514f714, 0x7df3ffff, 0x0c00ff70, 0x58ff9082, 0xff220513, 0x1382e0fa, 0xf3230e83, 0x18089082, 0x271c1f6b, 0xff327349, 0x66a6b6ff, 0x2d224482,
0x93503433, 0x11797d0c, 0x240f5b73, 0xccd200ff, 0x223382cc, 0x82b89eb6, 0xb89e2144, 0x180a5055, 0x202bc36d, 0x23c484f7, 0x146e0c00, 0x8721c482,
0x22f582ae, 0x83343314, 0x820220b5, 0x0080280f, 0x30fb0e08, 0x5d34f8ab, 0x7618054a, 0x57181275, 0xd8630d2e, 0x05525d0a, 0x10516a18, 0xe2ffff34,
0xff060080, 0x66660b00, 0xcc6bffff, 0x00ff05cd, 0x6f82b324, 0x9919ec26, 0xe61c00ff, 0xde201482, 0x00210e82, 0x2009830d, 0x217e82d6, 0x2182888c,
0x91830320, 0xcc4cf623, 0x05e64dff, 0x3433f52d, 0xf7ffff85, 0xff0832b3, 0x82ccfaff, 0x99f72515, 0xf6ffff9a, 0xfb215183, 0x2d098219, 0x8b34b3f5,
0x06d4fb08, 0xb5f5ffff, 0x19828bc2, 0x480a5721, 0xff2e0559, 0xff71fdf9, 0x66660800, 0xf9ffff08, 0x0a8264fc, 0xffce4c29, 0xf45cfeff, 0x820a00ff,
0x03002f47, 0x00ffc540, 0x0834b309, 0x000100ff, 0x79828e83, 0x75d30d27, 0x802900ff, 0x249b8200, 0x00ff33f3, 0x28838221, 0x52b82400, 0xe61300ff,
0x2d258267, 0xff67660b, 0x33339400, 0xe2ffff05, 0xdf42c275, 0x8b7c2d0f, 0xab1100ff, 0x54f70884, 0x2b15f4fb, 0x7f0ab17f, 0x64180e41, 0xeb281455,
0x0e06cb07, 0x14f714f8, 0x0efb8f18, 0x08fe4118, 0xfb072b27, 0xb4f706b4, 0x7f741807, 0xdd6d180f, 0x347d8308, 0xffff14ae, 0xff85abf1, 0xec510e00,
0x54eeffff, 0x2b088b7b, 0x18ad828b, 0x2609a74f, 0x9a59e3ff, 0x82ffff8b, 0xfb082210, 0x22a383b4, 0x82f6a8dc, 0x66a629ed, 0x57e3ffff, 0x2300ff0a,
0x08231e82, 0x8506b4f7, 0x23198509, 0xf6a81c00, 0x23235d82, 0x77080a57, 0xff2918c8, 0x9a997600, 0xa23601ff, 0x2ec0820c, 0xff3233fa, 0xfcc90500,
0x0300ff83, 0x70fff893, 0xfb2205e5, 0x44180634, 0xf2210720, 0x229d8291, 0x8214aef1, 0x38ef2388, 0x3b420852, 0x2eb48506, 0xffea91f2, 0x84ab1100,
0x00ff088b, 0x8200c052, 0x0f1f2733, 0x1bffff5d, 0xf1420080, 0x70bd210e, 0x870a0e57, 0xc475260a, 0x4c1400ff, 0x062056cd, 0x800c002b, 0x74f70800,
0xcce200ff, 0x223d82cc, 0x833433ad, 0x18ee20f1, 0x28074979, 0xeb91f2ff, 0xc51000ff, 0x836b8320, 0x260c8206, 0x00ff4621, 0x5467660d, 0xff240685,
0x66e6a000, 0x002e3382, 0xffa4f007, 0x6666fcff, 0xfaffff93, 0xdc823433, 0x0802cb27, 0xf834f80e, 0x06e64434, 0x6009695e, 0xd5880898, 0xff7a5426,
0x84abf1ff, 0x8620d583, 0x20053a54, 0x45721811, 0x0b215608, 0x9c859420, 0x86202d84, 0x04823283, 0x7a54ee24, 0x4945088b, 0x20628a05, 0x205b8486,
0x0538417a, 0x76677a20, 0x20498205, 0x20628a86, 0x0c6a1935, 0x05794513, 0x60261a82, 0xfa2a00ff, 0xf78256e2, 0x99b6ff26, 0x36ffff9a, 0x200bde44,
0x12de4471, 0xffff8f22, 0x2022de44, 0x09de4433, 0x7a633320, 0x0d09560e, 0xb382cc20, 0x240d3a78, 0xccd200ff, 0x223382cd, 0x44b99eb6, 0x002054de,
0x803dd482, 0xaf0e0800, 0x193c02ff, 0x6d01ff98, 0xff15b89e, 0x6866fdff, 0xca0a00ff, 0xf6ffff3e, 0x3393824c, 0xff0a9707, 0x68e6f4ff, 0xffff088b,
0x0634339b, 0x3e0000ff, 0x732b3883, 0xffffff34, 0x00ff98dd, 0x8200400b, 0x7ebc2609, 0x510900ff, 0x2b2482ea, 0xff4e8eff, 0x9a591100, 0xe6f1ffff,
0x0d274982, 0xffff48a1, 0x839899ee, 0x6600233f, 0x0c830667, 0x838b9a21, 0xff66251c, 0xb85ef2ff, 0x2706e26c, 0x0866a6ee, 0xe6feffff, 0xf6221482,
0x648216ae, 0x5f82b320, 0x82c0f421, 0x4c002769, 0xf3ffffcd, 0x1e82cc8c, 0xf5289b23, 0x208c8306, 0x273f8266, 0xff8360f6, 0xf668f8ff, 0x6020b082,
0xf5238082, 0x8208c235, 0x2130254a, 0x99fcffff, 0xed367b82, 0xffffa430, 0xff7a94ae, 0xaec73400, 0x4cb1ffff, 0x00ff08ce, 0x14827025, 0x142ec826,
0x283f00ff, 0xd8203882, 0x0028e482, 0xff67e656, 0x48a1e9ff, 0x122c1e82, 0xffff33b3, 0xffec31fb, 0xc3b50c00, 0xbe21a782, 0x226782b8, 0x82a4b0ec,
0x05002b1a, 0xe8ffff1e, 0xffff842b, 0x6d8280ec, 0xe8200484, 0x2205e54a, 0x696666fb, 0x8520099d, 0x296a2682, 0x273e8209, 0xfffc29f7, 0xba290700,
0xd621ab82, 0x22098204, 0x828be0ef, 0x19df224e, 0xeb6c199b, 0x43062208, 0x18178296, 0x2808fbaf, 0x1a00ff8b, 0xffff9082, 0x284a82ea, 0x707d1500,
0x7de5ffff, 0x23338272, 0x225bfbff, 0xe8226782, 0x5582d823, 0x00237f83, 0x82008013, 0xd917232c, 0x0682089a, 0x5c4f1322, 0xc22fb683, 0x421100ff,
0x1200ff90, 0x00ff34b3, 0x82cccc04, 0xf556216b, 0x16221482, 0xf4820a57, 0xffd82325, 0x82352700, 0x6625250e, 0x3700ff68, 0x05823982, 0xff54792a,
0x14ae4e00, 0x33edffff, 0x513c3382, 0xffff866b, 0xff3033ff, 0x66660300, 0x11feff08, 0xffff5e4f, 0x157b9476, 0x0fe4ffff, 0x293c6282, 0xffff3333,
0xff3d8afd, 0x66e62a00, 0x5e0100ff, 0x1700ffb9, 0xff0834b3, 0xd7635000, 0x052fd382, 0xffffe75b, 0xff4861c4, 0xb3fd0e00, 0x83b8ffff, 0x512527c5,
0xff0851eb, 0x8883ceff, 0xff27b482, 0x0080dbff, 0x821b00ff, 0xe8ff3a6e, 0x00ff8f82, 0x08999922, 0x30a501ff, 0xff158ba4, 0x5c8fe8ff, 0x66ddffff,
0x23258567, 0x9ad9e4ff, 0xf0263982, 0xecffffa4, 0x6582ac87, 0xcc4c252b, 0xeb3900ff, 0x00ff9a86, 0x27458347, 0xffce4c05, 0x9a993b00, 0xd8208084,
0x00228082, 0x44828c82, 0xff242582, 0x606866fe, 0x2805a96e, 0x67e6d6ff, 0x00ff0e08, 0x27568269, 0x66660901, 0x0c00ff15, 0xff213c82, 0x227d83f3,
0x82904214, 0x71fd21f1, 0x7d211382, 0x21048270, 0x4b82be7f, 0x82594921, 0x4d492860, 0xffff0510, 0x18cc4c0d, 0x1817ba9a, 0x490dfb76, 0xff2308cc,
0x19b3f200, 0x820f2243, 0x456e885a, 0x7d210889, 0x206a82b3, 0x2175840c, 0x1582727d, 0x8e421422, 0x0a259a18, 0x2b065b49, 0xff1ec5f9, 0xd24d0600,
0xccf7ffff, 0x0322eb82, 0xac180020, 0x16820fe6, 0x2c05605e, 0xffccccf9, 0x00c0f9ff, 0x80ffff08, 0x22268200, 0x829af97f, 0x7af322c0, 0xfb5118e1,
0x23208208, 0x1f850c00, 0x08230f84, 0x657601ff, 0x9a2405b8, 0x0634fb15, 0x20050147, 0xd35618ff, 0xffff210f, 0x21072847, 0x5618ff9a, 0xb9460ad0,
0x80a61806, 0xe89b1809, 0x0e4408b3, 0xab01ff2f, 0x01ff66e6, 0x1566e68b, 0xdeebffff, 0x1400ffb8, 0xffffe23a, 0xffce8ce4, 0x3e0a0500, 0xf3edffff,
0xf5ffff32, 0xff080080, 0xb85eccff, 0xebe1ffff, 0x95ffff84, 0x00ffae07, 0xffec914c, 0x9a9985ff, 0x1e820484, 0x99998522, 0x98200a83, 0x20201984,
0x85202983, 0x66213382, 0x821a8268, 0x2049833f, 0x21538234, 0x5d836d07, 0x6782cc20, 0x84b23d21, 0x82082071, 0x4821210a, 0xc22f0a82, 0x1b00ff90,
0xffff3473, 0xff52f8fa, 0x820c1200, 0x830a2023, 0x33002b77, 0x00ff48a1, 0xff7a141e, 0x19826a00, 0x6eb3ff28, 0x7a00ff14, 0x04836666, 0x0a875c82,
0x83ff6621, 0x83f62019, 0xff7c2529, 0x9a993300, 0x0a225882, 0x4982b087, 0x823c0a21, 0x23e58253, 0xc2751b00, 0xcc206782, 0x142a5882, 0xfb084821,
0xb4ffff6c, 0xf7829a99, 0x82b3d321, 0x82f42075, 0xc3ff2217, 0x21c38219, 0xd38219c3, 0x7bd4f424, 0x5276ffff, 0x28fe2f05, 0xf8fffff6, 0xffff33b3,
0xff0080f9, 0x2383fcff, 0xf5e8f723, 0x32d8828b, 0x8b10b8fe, 0xaffeffff, 0x0000ffdf, 0xfffffd27, 0x8221b0fe, 0x00502109, 0xf8271a82, 0x00ff0456,
0x82373b01, 0x5ccf247b, 0x820800ff, 0x0200213f, 0x0023e882, 0x82999908, 0x820e209a, 0x38002754, 0x00ffae47, 0xca822645, 0xb81e452c, 0x4a3800ff,
0x0e00ff3e, 0x1e823433, 0xf0a70826, 0x070200ff, 0x08220482, 0x42821098, 0x8230e821, 0xa430260e, 0x71f7ffff, 0x221e8228, 0x82a33002, 0x846b210a,
0xcc211982, 0x210982cd, 0x04836866, 0xffff6632, 0x08ccccfd, 0xff01ff0e, 0x15c83433, 0xc0e8ffff, 0x9b23af82, 0x82053433, 0xe8bb24b5, 0x83f1ffff,
0x79f3270f, 0xf6ffffda, 0x0e82b007, 0x837c5421, 0xb50322c4, 0x24b482c1, 0xffff1c05, 0x274c8232, 0x3433cd00, 0xfc00ff8b, 0x2b05dc70, 0xfff6a80e,
0x10f80900, 0x8a0c00ff, 0x40259c83, 0x0300ff42, 0x21df8240, 0x2b836400, 0x00401723, 0x21b28205, 0x158214ae, 0x9ae8662b, 0x61f8ffff, 0x0600ff48,
0x22098219, 0x821619f2, 0x852e27a8, 0x93ffff1f, 0x25820280, 0x21700527, 0x38f3ffff, 0x218b8250, 0x7c82fe54, 0x7e2a1c21, 0xff2e05cb, 0x085238f7,
0x28caffff, 0xd4fffff5, 0x29821ec5, 0xe1fa2137, 0xc7baffff, 0x3800ffae, 0xffffaf47, 0xff52b8c7, 0x703d4500, 0x274f8269, 0xff7c142c, 0xcccc3500,
0x08252582, 0x00ff20b0, 0x2225830a, 0x8284000f, 0xe2ba217f, 0x0e82a482, 0x77faff23, 0x2129820a, 0xfb82806c, 0x707dd122, 0x0d2b2982, 0xffffcc0c,
0xff9022f9, 0x827f0800, 0xccf02779, 0xfcffffce, 0x83829c99, 0x08666629, 0x14f82f0e, 0x181534f8, 0x180ecf95, 0x4b1f6d69, 0xd4200512, 0x180e124b,
0x2508ee5a, 0x8b07d4f7, 0x248200ff, 0xe3ffff2f, 0x00ffcc4c, 0xff66a61c, 0x34b3dcff, 0x3ce8828b, 0xff9a99df, 0x0080defe, 0xf4ffff15, 0xffff4861,
0x05289ccd, 0x5dfeffff, 0xf8fffff4, 0x27b382e0, 0xffa6bbf9, 0xd803fbff, 0xa8210e82, 0x343083f6, 0x8b66e681, 0x6699ffff, 0x6600ff67, 0xff8b9a99,
0x32337e00, 0x36068208, 0xfff85307, 0xe8fb0400, 0x430600ff, 0x0700ff14, 0x00ff4220, 0x8248a101, 0x823220fb, 0x0b002357, 0xfb8248a1, 0x10580722,
0xb3201582, 0x07222982, 0xf6823889, 0xff20302b, 0xcc0c0300, 0x0cf9ffff, 0x27298208, 0xff1f4517, 0x52b8c9ff, 0x02222982, 0x158210b8, 0x82e79b21,
0xef29218b, 0x8f2b7c82, 0xfaffff9e, 0xffff0da0, 0x82299cfb, 0x0fe527b6, 0xe9ffffde, 0x298278e9, 0x71fd1027, 0x63ddffff, 0x20d782d8, 0x28d78226,
0xff28dce3, 0x48a12200, 0x274f827a, 0xff1e0516, 0xf6e81a00, 0x04202582, 0x05227983, 0x99821864, 0x828a8121, 0x83db2083, 0xd66326a8, 0x3bfdffff,
0x272982e8, 0xff703d36, 0x00c0e8ff, 0x06222982, 0x158216ee, 0x82880121, 0x82cc2099, 0x66f82199, 0xfe225482, 0x8382ce4c, 0x0834b32b, 0x24f72f0e,
0xf71594f7, 0x0e175f84, 0x18cd4c21, 0x2056a397, 0x3e9818bb, 0x80393719, 0x00ff8b00, 0xff008031, 0x5c4fdeff, 0x191700ff, 0xcfffff9a, 0xce82866b,
0x82990721, 0x0af02a0a, 0xf9ffff3c, 0xffff3233, 0x22d283ec, 0x823433ef, 0x666623c3, 0x06847b08, 0xedffff22, 0x0021de82, 0x24e38606, 0xffff089b,
0x264082f3, 0xec111b00, 0x82e4ffff, 0x12002654, 0xffff48a1, 0x055649e0, 0x092b6818, 0x2edcff22, 0x077dd718, 0x055b8b27, 0x94f8af0e, 0x1cb718f8,
0x076b2318, 0x8073d4fc, 0x59232105, 0x4205af46, 0xc34d057c, 0x54f82905, 0x14fccb06, 0xffff8b15, 0x14f38318, 0x46065421, 0xb3200dec, 0x08aa9b18,
0xf807542c, 0x54fb06d4, 0xcb64fc07, 0x4d6aff15, 0xe007190a, 0x0d156121, 0x210a1a73, 0x8073ff8b, 0x064b2514, 0x156b14f7, 0x940e7a6b, 0x0cce7236,
0xa10ee56a, 0x2f0e2b97, 0x911900ff, 0x0f01ffec, 0xd28266e6, 0x0ad7f222, 0x3107734b, 0xffff6f80, 0xff3233f6, 0xfe23ffff, 0xccf2ffff, 0x0a8808ce,
0x00ffcd29, 0xff4b080a, 0x828cf4ff, 0x370d2209, 0x3018828d, 0xff086626, 0x9a197800, 0x20f8ffff, 0x6900ff00, 0x2c098299, 0xffce2c97, 0x66e60700,
0x1987ffff, 0x271e8298, 0xff92db00, 0x3433f3ff, 0x80213d82, 0x275c8200, 0x00ffcc4c, 0x8b34b30b, 0x88221a83, 0x78828b04, 0x82dc8721, 0x04082104,
0x88210482, 0x21048230, 0x1a82fc07, 0x52380d22, 0xd8200a82, 0x0a221482, 0x3082ae07, 0xffaa6f22, 0xd6229282, 0x188200ff, 0xf72f9282, 0x00ff1a84,
0xff342390, 0x991983ff, 0x837c00ff, 0xde6f276e, 0x0900ffb8, 0x3d82cc4c, 0x156e0622, 0x19211e82, 0x298a189a, 0x12f36c0e, 0xffff7b25, 0x18a4b0f1,
0x2208f142, 0x829a19c2, 0x839d2091, 0x8362204e, 0x3dff240a, 0x180866e6, 0x6d08db47, 0xff490d21, 0x5c4f210d, 0x09fd9e18, 0x8266e521, 0x824520fd,
0xba002804, 0xffff9a99, 0x839a991a, 0x191f25ed, 0xc0feff9a, 0xdd229484, 0x5482ae87, 0xb85ee323, 0x8f8618ff, 0x9a992107, 0xdc206683, 0x00232e82,
0x8248a11c, 0x223d8316, 0x83527822, 0x29068338, 0x9c1d00ff, 0x1c00ff29, 0x6682b89e, 0x89192320, 0xe4210ad3, 0x30bd8230, 0xff52b81c, 0xe1badbff,
0xf80e088b, 0x1534f764, 0x18fc69fc, 0x65762b20, 0x18002007, 0x690e36cb, 0xeb2019db, 0x29172a6a, 0x14fb24fb, 0xeeffff15, 0xcc824861, 0xb89ef125,
0x830e00ff, 0x1100230a, 0xa319b89e, 0xeb214565, 0x225edc8b, 0x4114f8bb, 0xff351a29, 0x9a993fff, 0x0d00ff07, 0x00fff668, 0xff9a190a, 0x8f821000,
0x05697cff, 0x7b14122d, 0x34f8088b, 0x1200ff06, 0x838b7a14, 0xff902519, 0xfabef9ff, 0xff292d85, 0x0810d8f5, 0x68c000ff, 0x173941f6, 0x74f80e28,
0x660c01ff, 0x40821566, 0xff9a9926, 0x3433f7ff, 0x662a3a82, 0xe8ffff66, 0xff8bcc4c, 0x2773e4ff, 0x22068205, 0x83f2ffff, 0x22168220, 0x83edffff,
0x252a8220, 0x6cffff08, 0x5b826666, 0x82f3ff21, 0xf8ff2196, 0xff253c82, 0x7fcc4cf4, 0x25188286, 0xff9819f4, 0x1683fbff, 0x1682f220, 0xb302002d,
0xf6ffff34, 0x00ff66e6, 0x82323309, 0x4cd42d1e, 0x2c00ffce, 0x5b050080, 0xbeffffbb, 0x1a201783, 0xbc232b83, 0x828b9919, 0x4cf7251d, 0x14fb06cd,
0x5617a753, 0xa9830fbe, 0xb3110027, 0x14f70834, 0x163a4507, 0x4b82eb20, 0x89180020, 0x883b152d, 0xff0633b3, 0x67e64300, 0x4100ff8b, 0xbba69a19,
0xfa2f00ff, 0x00ff08e2, 0x8232b32b, 0xa2a52204, 0x05cf5c05, 0x2609002c, 0x0d00ffc8, 0x00ffcccc, 0x0482bc02, 0x68e60b22, 0x0c23e082, 0x84970808,
0x00ff2206, 0x291a8207, 0x7c54f4ff, 0xf3ffff8b, 0x1b415c0f, 0xfeff2206, 0x25f983e8, 0x159a99f3, 0xd683ffff, 0xff072b24, 0x72840800, 0xcdcc4f22,
0x4c207282, 0xe2251e83, 0x00ff3433, 0x283f833a, 0x080080ca, 0x990601ff, 0x20c98298, 0x201582c5, 0x261082ff, 0x4cb3ffff, 0x83ffffcc, 0xb0ff3a24,
0x088b3333, 0xf70e078b, 0x8a01ff94, 0xff153e8a, 0x9a192c00, 0x322e00ff, 0x27a682f2, 0xff66e606, 0x1c3a0600, 0x14836182, 0x0a770222, 0x3a83ba82,
0x20c0fd23, 0x26148208, 0xffff6666, 0x8222c0fd, 0x00802623, 0x63f9ffff, 0x82ca8296, 0xf7ff2328, 0x1e823894, 0x3d820f20, 0x80c1ff2a, 0xffc90500,
0xae871100, 0x08224f82, 0x21826866, 0x942a5c22, 0xa8213682, 0x213682f6, 0x36829819, 0x8228dc21, 0x4c05222c, 0x200a82ce, 0x227a82d9, 0x82323303,
0x8e0221d9, 0x99212382, 0x2109829a, 0xfa82d8a3, 0x6083ee20, 0x70fdc122, 0x3e204482, 0xf0220a83, 0x4f849a19, 0xa4848083, 0xf9202a83, 0x00211982,
0x22488302, 0x829a99f7, 0x83022053, 0x230a82ef, 0xb3fcffff, 0x28825383, 0x84faff21, 0x82192028, 0xd1ff241e, 0x825ecccc, 0x832e2044, 0xe6d32225,
0x200a8266, 0x20d08305, 0x21c182f9, 0x45840300, 0xfd273083, 0xffffcccc, 0x6434b3f6, 0x4f840793, 0x2884f920, 0xff206e82, 0xfd220e84, 0x1e8266e6,
0xff21ea82, 0x239885ff, 0x4d008011, 0x02204f82, 0xf7212683, 0x26e48299, 0x82ceccfc, 0x83faffff, 0xe6f92286, 0x822c8268, 0x820f8405, 0x821b8215,
0x202582e6, 0x232f8200, 0x00ff4d08, 0x05203d82, 0xff214984, 0x825382ff, 0x835f820a, 0x4c9a2021, 0x7d8406aa, 0xb3217885, 0x075d5e32, 0xf720a784,
0xbb85b182, 0xcf82c584, 0xdb821e82, 0x8200ff21, 0x5e0522e5, 0x82f383ff, 0x411c834f, 0x30830509, 0x25061d41, 0x00ff9a99, 0xe7833302, 0x9999f722,
0x4c210a82, 0x216e85ce, 0x19820600, 0xe6fdff27, 0x0800ff67, 0x27e78366, 0xff9919f0, 0x00803e00, 0xc1254882, 0xffff71fd, 0x220a84ee, 0x41d7a3f7,
0x022607b1, 0x0300ff8f, 0xcf413233, 0x4c052206, 0x228482ce, 0x4129dcf9, 0xfd2306ef, 0x8294f6a8, 0x825c205e, 0x6608230f, 0xee820868, 0xc9ae8722,
0x80264b83, 0x0f00ff00, 0x0a8266e6, 0x3994f722, 0x19202182, 0x6321ef83, 0x065d4295, 0x27c0fd22, 0xfd228087, 0x87421ac0, 0x02002305, 0x9b420a77,
0x3a062206, 0x2028821d, 0x289f82e6, 0xf2322e00, 0x192c00ff, 0x2348829a, 0xb80ecdd1, 0xf9220682, 0x1c84e3c5, 0x8821a082, 0x223086f6, 0x86e63f02,
0x0200234f, 0x0a84d93f, 0x9c212382, 0x236e856b, 0xc76b0800, 0x08208284, 0x9887ea84, 0x5278ee22, 0x02210f82, 0x20538290, 0x23ef82fd, 0x285c0800,
0x23051973, 0x72fd0800, 0x23213982, 0x200482d7, 0x22848326, 0x82662606, 0xd823210a, 0xfd215882, 0x82238771, 0xfdff23f3, 0x5383d6a3, 0xff8f0223,
0x204d82ff, 0x20598305, 0x82638467, 0x1902220a, 0x212f8299, 0x8386c86b, 0x6a9c0622, 0x66200e82, 0x02221e82, 0x6f43de3f, 0x20ac8206, 0x21c185e0,
0xcb83fdff, 0x66e6062b, 0xc5f9ffff, 0xffb808e4, 0x26ed82ff, 0x74f70e05, 0x471514f7, 0x064809d8, 0x05115b0c, 0x8c188620, 0xab211a52, 0x06ae5586,
0x18098d56, 0x7a087e7d, 0xff2c0ac8, 0x9a992b00, 0x00ff15cb, 0x06666654, 0x22192e48, 0x56a4b011, 0xe15a05dc, 0x23538405, 0x0763063b, 0xf7329e82,
0xffff0080, 0x83cc4cfe, 0x4cfdffff, 0xf8ffffce, 0xe1820080, 0x66660426, 0x64f715eb, 0xff2252ae, 0xc1552fff, 0xcc4c2105, 0x57214d82, 0x06705e0a,
0x2a5cfd22, 0xfd296882, 0x5308cc4c, 0x94fbbb07, 0x05c64815, 0xfd459090, 0x13397a0d, 0x0d9c8c18, 0x180d6378, 0x3a0af959, 0x198affff, 0x3c00ff9a,
0xff153433, 0x66e6f9ff, 0x330a00ff, 0x00ff8732, 0x6ace4c0c, 0x0682063d, 0x18c4052c, 0x140100ff, 0x0500ff7b, 0x09825879, 0x82146e21, 0x5c4f3009,
0xdaffff08, 0x00ffd7e3, 0xff9ad902, 0x8299e2ff, 0xb31e2246, 0x262e8234, 0x0866e625, 0x584800ff, 0x53830699, 0x7e330721, 0xff2505f2, 0x67e60700,
0x831c828b, 0x00ff2106, 0xff234082, 0x18ccf8ff, 0x200754a1, 0x056747f8, 0xae47ba29, 0xffff8b05, 0x82b99eef, 0x25388286, 0x9919e6ff, 0xe16b00ff,
0x081b6a06, 0x68829c20, 0x08230c82, 0x830714f7, 0x0a172309, 0x4c18ffff, 0xff2a0e23, 0x9a99c0ff, 0xdeffff06, 0x4e8266e6, 0xae87e02e, 0xecffff7b,
0xffffa470, 0x083433e5, 0x8c270582, 0xdbffffcd, 0x82059899, 0x46162c6a, 0xb3e8ffff, 0xf6ffff34, 0x826f9ce4, 0x33e3222c, 0x22218233, 0x82cd4ca7,
0xb4ff215b, 0x3c20c183, 0xff22e882, 0xe38219c3, 0x291c4b22, 0x202dc183, 0xff0648e1, 0x1e85faff, 0x660900ff, 0x05e95666, 0x830a0021, 0x0b00246a,
0x820834b3, 0xe61b2b93, 0x00ff9d66, 0xff008017, 0x38831800, 0xcecc0827, 0x94f70e08, 0x079359f7, 0x4b09af53, 0x02431f09, 0x0d4b7621, 0x15c37b25,
0x5d3b07b3, 0xcd2a1cc0, 0x540e00ff, 0xf1ffff7b, 0x6e4b33b3, 0x68542208, 0x253382f6, 0xff3d4afd, 0xe9420700, 0x93cd2105, 0x0827c782, 0x8b080080,
0x821514f7, 0x8302200a, 0x82002067, 0x0200271b, 0x00ffd6a3, 0x46824c00, 0xf6a80228, 0x2fffff08, 0x6f5c3333, 0x13407e0c, 0x0daf9718, 0x0664f728,
0xfb7b07c3, 0xdda115ec, 0x2012e043, 0x1b3d4154, 0x474c9682, 0x33b32606, 0x14f7088b, 0x08bb82ab, 0x47f4ff23, 0xfcffffae, 0xffff769e, 0xff862bf5,
0x8480faff, 0x8cf6ffff, 0x00ff08cc, 0x0606e120, 0x194b00ff, 0x24e1829a, 0xff66e63c, 0x82048200, 0x8210820a, 0xb358231c, 0x0c820733, 0x8fc21c22,
0xe4252e82, 0x1c00ff9c, 0x08478207, 0x4616ef23, 0x451700ff, 0xffff0820, 0xffcc8ce5, 0xf4682400, 0xebffff05, 0x00ffec91, 0xff7cd41a, 0x6666e1ff,
0x0579429b, 0x86422182, 0xe8e92805, 0xffff8bf6, 0x840a17ee, 0x820a8204, 0x49082010, 0x098205df, 0x1100ff24, 0x1982f6e8, 0xff70fd27, 0xa4301500,
0x2279828b, 0x82e2ba1c, 0x450b2278, 0x2153821e, 0x0a8252b8, 0x608f0f21, 0x002407f1, 0x0552b845, 0x07201182, 0x24055c43, 0x0700ff34, 0x21048233,
0x9a18cc08, 0x11821038, 0xf8ffff24, 0x86829a19, 0x9a19b722, 0xff28c982, 0xff4821da, 0x66a6e2ff, 0x4720a482, 0xda21c982, 0x229082d7, 0x82d623fd,
0x68012170, 0xfa2d8182, 0x00ff68a6, 0xff9a1901, 0x9899faff, 0x2205828b, 0x82083433, 0xb8f23606, 0xfbffff52, 0xfffff8f3, 0xff14aef3, 0xb613f9ff,
0xc5f5ffff, 0x2a35821e, 0xffec1118, 0xe23af7ff, 0x821200ff, 0xe8ff238d, 0x324b0080, 0x2f0e2606, 0x34f7b4f7, 0x21d98215, 0xab82a4b0, 0x5c4f0e24,
0x6b1800ff, 0xcb200930, 0x41076461, 0x346105a9, 0x5c4f2105, 0xff20f882, 0x0bd25518, 0x1808ae5c, 0x251859b3, 0x2b00ff4b, 0xd6459a99, 0x2053a505,
0x385f18b3, 0x073b2607, 0x00ff06b3, 0x25b18208, 0xfeffff93, 0xf742cd4c, 0x4cfd2c06, 0xff2b08cd, 0x66660400, 0x8564f715, 0x4e862052, 0xbf820698,
0x14e6f718, 0x2a087157, 0x332fffff, 0x00ff0733, 0x43f6a802, 0x9921071f, 0x05db459a, 0xbd02002b, 0xc3088b71, 0xbb94f706, 0xd2561815, 0x85ab220d,
0x2210828b, 0x85087b54, 0x7a5421e4, 0x2206cf46, 0x1886abf1, 0x58144e58, 0x444108dd, 0x9eb41805, 0xccc32414, 0x8209fbcc, 0xccf52267, 0x05d845ce,
0xb3f3ff23, 0x078c4c32, 0x8b34b328, 0xfaffff08, 0x7782e83b, 0xa886fa27, 0x140100ff, 0x210f827a, 0x0982a4b0, 0x82166e21, 0x26fd2c1a, 0xdaffff66,
0xffffd6e3, 0x45cc4ce1, 0xff2105dc, 0x050c52da, 0x9919b725, 0x18ffff06, 0x252bac98, 0xb84500ff, 0x0082ff53, 0xff05fa31, 0x1f850f00, 0x1a00ff8b,
0x00ff8fc2, 0x823e4a0b, 0xb51c230a, 0x068208c2, 0xa0191622, 0xd86ff682, 0x14fb2109, 0x33436582, 0x377d820b, 0xe6e9ffff, 0xffff0866, 0x070a97c0,
0xdeffff8b, 0xff9bb8de, 0xec91e0ff, 0xcf314f82, 0xecffff5c, 0xff08146e, 0xf6682400, 0x8ce5ffff, 0x286b82cc, 0xffae4717, 0x0c17efff, 0x06754da7,
0xcdcc1c22, 0x0029f782, 0x0633b358, 0x1c4b00ff, 0x24768228, 0xffd8e33c, 0x82048200, 0x8210820a, 0xe120233e, 0x2e820748, 0x459a9921, 0xff2205dc,
0x098219f5, 0x0e83fc20, 0xcc4cf422, 0xff213d82, 0x228884e4, 0x420080e8, 0xf72f06f0, 0x00ff3233, 0x089a1918, 0x94f72f0e, 0x411554f7, 0xab2135c3,
0x08614285, 0x61427b20, 0x08a05e14, 0x157b5325, 0x5b3b0663, 0x4f200906, 0x2842f982, 0x00ff2420, 0x82666654, 0x82f820d7, 0xfdff3ab6, 0xff83ce4c,
0xcc4cfeff, 0x80f7ffff, 0xfb088b00, 0xff158b14, 0x8f42fdff, 0x2105828b, 0xad426666, 0xfdff2305, 0x09820a57, 0x08cc4c25, 0x602fffff, 0x98420798,
0x64f72828, 0xf7065307, 0x42157bec, 0xdda005a1, 0x4e2f0143, 0x240808ed, 0x1514f76b, 0xb80b00ff, 0x00ff8b52, 0xff7ad40a, 0x789efcff, 0x730900ff,
0xfaffff34, 0xff088280, 0x06e12000, 0x05dc4107, 0xbf47ff20, 0xe33c2805, 0xb4ffffd8, 0x478b66e6, 0x8b2805e1, 0xe3ffff05, 0x6f8b3333, 0x2805de45,
0x33b3e8ff, 0x16efffff, 0x221d8246, 0x42299cdb, 0xff320649, 0xffa430e5, 0xa470ecff, 0xe0ffff7b, 0xff8bae87, 0x8842deff, 0x9a992105, 0xff235c82,
0x4566e6e9, 0x192607bf, 0x1600ff9a, 0x007e0a17, 0x82098306, 0x90022119, 0x86821e84, 0xa4301523, 0x22068208, 0x82e2ba1c, 0xae472159, 0x4526b982,
0xf0ffff1e, 0x8d83a470, 0xae47ba22, 0xf8298d83, 0x00ff9919, 0xff66e600, 0x0b9c18ff, 0x00ff2a25, 0x0667e648, 0xde2500ff, 0x225a82b8, 0x4552b81e,
0x003305de, 0xff2adc02, 0x0ad7daff, 0x0500ff08, 0x00ff9859, 0x82f66801, 0x45662009, 0x002106de, 0x052c4605, 0x74820d20, 0x0c00ff24, 0xde45ec51,
0x0a002205, 0x229a823a, 0x82b613f9, 0xc5083435, 0x1800ff1e, 0x00ff52f8, 0x9d008017, 0xe61b00ff, 0x18088b66, 0x2961a858, 0xb4fb14f7, 0x4dffff15,
0xd482cd4c, 0x48613128, 0x9eceffff, 0xa38205b8, 0x18ff7f21, 0x200e376f, 0x200f8401, 0x85058308, 0xffff250a, 0x8bffbfeb, 0xff241584, 0x00800c00,
0x973f1a82, 0x00ff51f8, 0x05ae0768, 0x0700ff83, 0xffff66e6, 0xff9999fe, 0xcecc0900, 0x0400ff8b, 0x830866e6, 0x0ce22606, 0x640100ff, 0x26168219,
0x00ffeac6, 0x82cb0108, 0x70fd272a, 0x6700ff08, 0x04849a19, 0x1e494218, 0xcf279899, 0xffff508d, 0x820080cf, 0xb3b22240, 0x20cf8233, 0x080b4711,
0x42f1ff21, 0x9c6608f4, 0x616a4116, 0x9600ff2f, 0xfeff9a99, 0x156666e9, 0xe698ffff, 0x7d048466, 0x5a411b0a, 0xff8b2209, 0x98631800, 0x00ff240d,
0x82cc8c30, 0x34732104, 0x4d204082, 0x4c0e3f68, 0x38820a71, 0xae4a1120, 0x46168307, 0xb22d08e1, 0xff06cccc, 0xb89eceff, 0x613100ff, 0x36017b48,
0x6700ff24, 0xc6869a19, 0xd408002c, 0xf7ffff7c, 0x00ff852b, 0xdb826601, 0x3333f626, 0xfbffff8b, 0x8205654c, 0xffff2206, 0x24fd82fe, 0x3233f6ff,
0x05234983, 0x20637041, 0x8272837e, 0x7d15208e, 0xce2b1c73, 0x00ff66a6, 0x05cd4c31, 0x4c4dffff, 0xee200585, 0x2307e745, 0xa4b0f1ff, 0x2005a866,
0xd06a1808, 0x08f3560d, 0xb200ff28, 0xff0733b3, 0x6a83ceff, 0x33b3ce22, 0x4238d041, 0x082c0afe, 0x00ff99d9, 0xff9ad908, 0xcdcc0900, 0x2b054f41,
0x66e60400, 0x00ff088b, 0x8b8ae104, 0xc42c1682, 0xfeffffdc, 0xff93e89b, 0x34fef7ff, 0x2e063b43, 0x67e698ff, 0x0d00ff05, 0xffff9a59, 0x181799f2,
0x20116064, 0x466d18f7, 0x00ff275f, 0xff9a997e, 0xe142d1fe, 0x33f7220f, 0x20a88234, 0x22978219, 0x423233f6, 0xfb200608, 0x2205e048, 0x82771efb,
0x3bf622a8, 0x22e68223, 0x82831864, 0xcc012cf6, 0x98ffff08, 0x00ffcc0c, 0x42820068, 0x31213898, 0x266d8259, 0x05ce8cce, 0x18b200ff, 0x220fbd63,
0x4d5c4f0e, 0x11230886, 0x6c8b84ab, 0x03190645, 0xff2a092d, 0x34334dff, 0x3100ff07, 0x04844861, 0x211e9144, 0x5e420080, 0xf8ff2706, 0xebffff52,
0x6d42ead1, 0x0e082609, 0x54f7f4f7, 0x20e28215, 0x35c618e9, 0x53ea2008, 0x6820052d, 0x99212a82, 0x2deb829a, 0x06999946, 0xe6fdffff, 0x1400ff66,
0x09836666, 0x00ff6725, 0x82666615, 0x33162397, 0x06840834, 0x00ff3325, 0x83991902, 0x221b8216, 0x849a1902, 0xff08262a, 0x6766b900, 0x201a8306,
0x294c8498, 0x330100ff, 0xeaffff34, 0x70849999, 0x2082cd20, 0x66e69729, 0x00ff15cb, 0x82ce4c05, 0x21a88221, 0x87830200, 0x21838282, 0x8266e621,
0xe9ff215d, 0xff217982, 0x213885fd, 0x8254ff9a, 0x80eb2805, 0xffff0800, 0x8466e684, 0x826e835d, 0x010021b4, 0x16227883, 0x9282cc4c, 0x9a191528,
0xffa18b08, 0x3c82feff, 0xc087ac83, 0x2408d183, 0x9a197b00, 0xf5ffff06, 0x15ab0080, 0x4c8bffff, 0xff8106ce, 0x28dc3f00, 0x33ecffff, 0x3500ff32,
0xffff2085, 0x228b83e6, 0x82922d22, 0x834e20a2, 0x5aeb22f4, 0x2023821c, 0x2f7f8299, 0xa96626c7, 0xf0b5ffff, 0xffff08a4, 0x8b66e66a, 0x4f204282,
0x0620e584, 0x24207d83, 0x00212c82, 0x25048309, 0xff523820, 0x46830b00, 0xae071a22, 0x0a204682, 0x17220a83, 0x14822a9c, 0xff33b326, 0x48211100,
0x4c260982, 0x0a00ffcd, 0x1e82cccc, 0x82330b21, 0xa10a2514, 0x0900ffca, 0x03281483, 0x00ff922d, 0x8bcd4c07, 0x07201a82, 0x0927d184, 0xffffce4c,
0x826ed2fc, 0x23a58235, 0x365ef5ff, 0x0b201a82, 0xf5221483, 0x14823433, 0xff32b326, 0xb8deeeff, 0x68824f82, 0x63e8ff23, 0x831e83d6, 0xf8e5210a,
0x09398882, 0xffff6866, 0xffaec7df, 0x98190600, 0x99dbffff, 0x068b089a, 0x4fbafeff, 0x28c0825c, 0xe1fa1d00, 0x0f4a00ff, 0x30e2825c, 0x00ff299c,
0xff9ad938, 0x67664e00, 0xa51400ff, 0x20e682e4, 0x204683e6, 0x217a82dd, 0xa582ecff, 0x7acaff29, 0xffff81e0, 0x82d823c0, 0x4f8b2a1a, 0x00ff065c,
0x6b0a9770, 0x05194215, 0x82ebff21, 0xfdff22fc, 0x340082ff, 0x8b9a99ea, 0xff8b0875, 0x66e6eaff, 0x000200ff, 0xe9ffff01, 0x27aa82b3, 0xff991902,
0x6666ebff, 0x84273e82, 0xff0671dd, 0x82bcfaff, 0x83142074, 0x82fd2064, 0x075b425f, 0xa2821920, 0x1600ff23, 0x238b8219, 0xffcdcc02, 0xff241683,
0xd7430500, 0x80219582, 0x22dc8200, 0x828f227b, 0x833f207a, 0x05424536, 0x0080f427, 0xf6ffffa5, 0x22308299, 0x4c343320, 0x002105e8, 0x23678324,
0x9999b000, 0xf9226782, 0xfa8468e6, 0x98272483, 0xccdfffff, 0x82ffffcc, 0x64712034, 0xe8220709, 0x1082ce4c, 0xee200483, 0xff28b182, 0xff32b3f4,
0x3233f5ff, 0xf4211e82, 0x211982cc, 0x3e8266f5, 0x1483f620, 0x3983fc20, 0xceccf723, 0x221a828b, 0x829999f9, 0xb3f625e2, 0x0300ff33, 0xf4207583,
0x0a22ab83, 0x1a829899, 0x1483f420, 0x3a830a20, 0x824cf421, 0x821120c0, 0xf5ff21ca, 0x0032af82, 0x0832b317, 0xffff068b, 0x5267e6fb, 0xb1ffff15,
0xd4829999, 0xff34b325, 0x8263c0ff, 0x833820de, 0x05e2275d, 0x4a00ff1f, 0xe8829a19, 0xa4b07424, 0x1b829506, 0x00213e82, 0x215d8213, 0x4383caff,
0x04821920, 0xccddff2f, 0x078b08cc, 0xcc8200ff, 0xff158bcc, 0x21138300, 0x85822200, 0xce2b2782, 0x803500ff, 0x00ff9500, 0x8366e63f, 0x32b32644,
0xffff6d06, 0x25d883b5, 0xff6666c0, 0x2682c7ff, 0x9a247982, 0x4cebffff, 0x0e2a4483, 0x99fb01ff, 0x4501ff9a, 0x92823433, 0x9418fd36, 0x170c00ff,
0xf0ffff08, 0x00ff6ca7, 0xff3e0a04, 0xc235f7ff, 0x40200483, 0xb3211482, 0x26ac8273, 0x05a470b3, 0x82acffff, 0x00002f51, 0x8b050d00, 0x195300ff,
0x00ff0599, 0x7b828c4c, 0x5c8f4c22, 0x08270a82, 0x00ff80ca, 0x82fcc908, 0x82f520ea, 0x590f2a09, 0xf3ffffdc, 0x00fffce9, 0x3c948302, 0x5c4fe8ff,
0xb10500ff, 0xe6ffff68, 0x00ff9a59, 0xff026b00, 0x866be5ff, 0xa3f9ffff, 0x2b6582fe, 0xffcd8cc2, 0xce4cf1ff, 0x0cd0ffff, 0xcb2c0982, 0xffffcccc,
0xff3333f6, 0x9a99c1ff, 0xfa221e82, 0x3882c4cb, 0x82fa1121, 0x0080214d, 0x19250982, 0x0700ff98, 0x202882cc, 0x201e84e8, 0x2098824d, 0x180482ff,
0x3807597a, 0x8b48e1e3, 0x6ed2ffff, 0x1c00ff14, 0xffffb81e, 0x08d8e3e3, 0x280d00ff, 0x826382f6, 0x12002e2a, 0xffff6766, 0xff9a19f8, 0x3d8a1100,
0x221a828b, 0x823e8a11, 0x4c1322d3, 0x265682cd, 0x00fff007, 0x82eb110e, 0x1a0f2104, 0xb2271a82, 0x00ff9919, 0x829a19b2, 0x751722e2, 0x2a3682c2,
0x00ff9643, 0xff9ad919, 0x827efdff, 0xdc1a278f, 0x0400ff28, 0x29826a3c, 0xf6683e31, 0xd70900ff, 0x3400ff0a, 0x00ffa430, 0x82c2f52f, 0x32b33643,
0x663d00ff, 0x00ff0867, 0xffbc1e08, 0x95831b00, 0x99ffffff, 0x20428298, 0x20428299, 0x69f182fa, 0xfe2a05bb, 0xff666654, 0xccccb2fe, 0x6318ff15,
0xc0200c64, 0x0bf25219, 0xff904226, 0x00c00a00, 0xbd210482, 0x40a61870, 0x90422114, 0xf223f782, 0x180870bd, 0x2608bd49, 0xffff0040, 0x85cc4cf5,
0x0e082454, 0x829800ff, 0x990124f6, 0x82150ad7, 0x82cc20ab, 0x21f72f17, 0x0000ff48, 0xffffcdcc, 0xff7ad4f0, 0x1e82f7ff, 0x23f6ff34, 0xffff08d8,
0xff3d0ab8, 0xc2f5afff, 0xfbffff05, 0x04820a97, 0xff343326, 0xaec7f9ff, 0x2483f982, 0x856bf922, 0xb3213882, 0x83298232, 0xfeff230a, 0x1e8266e6,
0xffd7a324, 0xda830200, 0x0a57fb27, 0x800500ff, 0x231e8200, 0xb3beffd7, 0xf6224482, 0x7618c5a0, 0x00230bd1, 0x823b5f09, 0xb85e2283, 0x20058308,
0x250a84fa, 0x330f00ff, 0x0a858b33, 0xa1f6ff23, 0x321a8248, 0xff291c16, 0x14eee9ff, 0x3700ff05, 0x00ffb81e, 0x82f6283d, 0x8208200a, 0x090023b0,
0x30849ad9, 0x23056778, 0x67e60900, 0x2124bf82, 0x078b0848, 0x5f22fe82, 0xe288c3f5, 0x87333321, 0x863682e2, 0x991921e2, 0x3b20e285, 0x6621dedd,
0x21de8866, 0xde8dcd4c, 0x8833b321, 0x66e621de, 0x3321de88, 0x21de8834, 0xde88cccc, 0x86ffce21, 0x2bb682de, 0x00ff078b, 0xff66e647, 0x33336600,
0x18051173, 0x20125c96, 0xe56e1874, 0x5d501808, 0x3773180e, 0x82fb2016, 0x72ff2030, 0x8b231402, 0x73fb8b07, 0xb3200579, 0x12f84418, 0x506f678f,
0xd973180f, 0x2067990f, 0x1865874b, 0x21110073, 0xcd8eb4f7, 0x0fa55418, 0x96186590, 0xfb2218c0, 0x90798b34, 0x15002407, 0x18ff717d, 0x250a56b2,
0x821a00ff, 0x82188b90, 0x907909aa, 0xeaff2f0d, 0xffff8f82, 0xff0080ea, 0x707de5ff, 0x0683088b, 0x22827120, 0x90791683, 0x00ff3e0b, 0xff5eda03,
0x48218901, 0x0600ff15, 0x00fff49d, 0xff52f80d, 0xec110e00, 0xe60800ff, 0x87471966, 0x9a192113, 0x99272982, 0xf2ffff9a, 0x8208ae07, 0x32b3210a,
0xff330a84, 0x68e6fdff, 0x78efffff, 0xf5ffff52, 0xffff6666, 0x823c0af4, 0x82492076, 0x20ff2644, 0xff05166e, 0xc3ba18ff, 0x22118307, 0x823433f9,
0x27098321, 0xff9819f5, 0x9a99faff, 0xf5202b82, 0x0a821483, 0x00ff7e23, 0x70658201, 0x4c21064e, 0x231a82cc, 0xbb0100c0, 0xf7274282, 0xff9166e6,
0x194cfbff, 0x32417a47, 0xf70e058b, 0x1504f7d4, 0xf7ffff8b, 0xfffff027, 0x8610d8f8, 0x230e8204, 0x062b088b, 0x650bb565, 0xbb270a4e, 0x0654fb07,
0x820724fb, 0x82e62037, 0x16002de5, 0xfffff668, 0xff9a99e9, 0x0a971900, 0x8306e061, 0x84ff2009, 0x20048319, 0x221a848b, 0x8324f708, 0x075b2939,
0x84f724f7, 0xbb063b15, 0x32834182, 0x46843c86, 0x8b235082, 0x8234fb08, 0x8509837a, 0xe9ff2119, 0xff285682, 0xf668e6ff, 0x3b075b08, 0x68211a83,
0x827b82f6, 0x851f8415, 0xfb082886, 0x94f80704, 0x8404f706, 0x858c8254, 0x82162091, 0x85ff20a0, 0x8b142254, 0x26588215, 0x34f707bb, 0x18075b06,
0x30085a74, 0xfff833f9, 0xe81bfdff, 0x84f9ffff, 0xfaffff5a, 0x2b0e82f3, 0x08a470fb, 0xff05433b, 0xba89fbff, 0xf0210482, 0x211782a4, 0xa64a3233,
0xfaff2a05, 0x088b3433, 0xb0fcffff, 0x27788220, 0xffe0affc, 0x00b00000, 0xdb260f82, 0x0100ffe8, 0x1a82f863, 0xb25df727, 0xd20300ff, 0x8235826e,
0x0800237d, 0xff829a99, 0x0080092a, 0x2b07b308, 0xb3072b06, 0x00273182, 0x00ff0556, 0x82e87b09, 0x93082218, 0x21288274, 0x3282086c, 0xff2adc26,
0x1659f7ff, 0xff290a8a, 0xd663feff, 0xdff5ffff, 0x209f823c, 0x255b82ac, 0x0834f3f8, 0x9a833b43, 0x823e7521, 0x6cf52136, 0x80201782, 0xfd277e82,
0xffff9a19, 0x83ce4cf8, 0x8206839a, 0x846b261b, 0xe30200ff, 0x26c082d8, 0x00ffa470, 0x82080c05, 0xe6b8233e, 0x3c82db66, 0x4a82f920, 0x0c070022,
0xfe271082, 0x00ffd763, 0x837e1f0a, 0xff29257d, 0xf4a80800, 0x0a857d84, 0x94210f82, 0x213a827b, 0xac82ee91, 0x82e17a21, 0x2700245b, 0x82ff9919,
0x82aa2000, 0x016028be, 0xffff071a, 0x5de4e5a0, 0xf6220573, 0xc7851884, 0x6cf7ff23, 0x25c7838c, 0xfcffff17, 0x6382d623, 0x7ad4fc22, 0x9e21c782,
0x210f82ba, 0x3c8233b3, 0x84cc4c21, 0x244e8209, 0x2130faff, 0x2135828b, 0xaa828340, 0x82e81b21, 0x21cb82aa, 0xaa820400, 0x82d33b21, 0xf3fa2ca6,
0x0400ff75, 0xffff448b, 0x19e71bfd, 0x2114205f, 0x168219e4, 0x84e27a21, 0x232a82de, 0xdb085c8f, 0x00233882, 0x82df0f07, 0x2a5c2117, 0x1924da82,
0x0100ff9a, 0x08225583, 0x768234b3, 0x82323321, 0x990822df, 0x200a839a, 0x83368234, 0x285f1909, 0x00ff260b, 0x069a195f, 0x27d882eb, 0xff66e6d8,
0x54000000, 0xf6228782, 0xa5821984, 0x8b6cf722, 0x93213082, 0x263a82f8, 0x00ffd723, 0x83eaa608, 0x820a86db, 0x7b942164, 0x20216e82, 0x20788270,
0x22398266, 0x82cc0c07, 0x19472969, 0xff05db99, 0x00200900, 0x17261b82, 0x1100ff0a, 0x45825c6f, 0x4821092a, 0xe8f5ffff, 0x3bd308f6, 0x06211d82,
0x22538253, 0x82f8f3f8, 0x289c2143, 0xe0211782, 0x25628384, 0xf7ffffd8, 0x62840857, 0x0c200a84, 0x2a07bc6d, 0xffff146e, 0x8b1e85f6, 0x82ff6308,
0x82ac2000, 0x00a02b9f, 0x00ff0754, 0x061eda60, 0x5d8307b3, 0x85e87b21, 0x080023a8, 0xa8847493, 0x0300ff25, 0x820828dc, 0xf0a7210a, 0xcf210a82,
0x378c82e0, 0xffff2e1d, 0xff3a74fe, 0x5c0f0700, 0xa7f9ffff, 0xffdb08ee, 0x0100b8ff, 0x052c8f82, 0xffff3e0a, 0xff4075fb, 0x66e60200, 0x80211b82,
0x32fd8200, 0x083333f9, 0x01ffef0e, 0xf766e63f, 0x00ff1514, 0x82f66839, 0xb02d266a, 0x2e00ffa4, 0x23d3838f, 0x08a47039, 0x06821182, 0x19ffff21,
0x22105791, 0x820a97c6, 0x4fd22143, 0xd1226a82, 0x0a82a470, 0x5c8fc622, 0xff27da82, 0xffff9a19, 0x829a99c6, 0x23048243, 0x6666d1ff, 0x662f5882,
0xbd088b66, 0xffff156b, 0x0634339c, 0x84b1ffff, 0x82c0207e, 0xc4ff231a, 0x3a82cc4c, 0x6866b623, 0x19068208, 0x221b6490, 0x8232b30f, 0xb30c278a,
0x0b00ff34, 0x0a8266e6, 0xcecc0e22, 0x00253382, 0xff989949, 0x214a83ff, 0x1b823b00, 0x08275a84, 0x198e00ff, 0x8254f79a, 0x2e2c22d2, 0x242a8214,
0xffecd123, 0x82048200, 0x8310820a, 0x23068235, 0x33dcffff, 0x16824c82, 0xd3ffff26, 0x088bcccc, 0xd1210682, 0x239319ec, 0xb7fe2529, 0x155366e6,
0x052c5282, 0x00fff272, 0xff7ffb00, 0x562e0500, 0xa0210982, 0x21098268, 0x4f82ae47, 0x4d17f522, 0xfd210a82, 0x251a8270, 0xff9a1902, 0xc558f3ff,
0x2ec22805, 0xffff0615, 0x82295ccf, 0x8fd8276c, 0xd6ffff5c, 0x0a823333, 0x0180cc22, 0xff329a82, 0xff32b3f5, 0x12e30700, 0x99f7ffff, 0x0900ff9a,
0x9a82a6bb, 0x80c70023, 0x27338200, 0xff7b94eb, 0xcccc1700, 0x33264a82, 0x1e00ff33, 0x7f820180, 0x33b32129, 0xc8ffff08, 0xa1c39a19, 0x863482f0,
0x85cd20f0, 0xf06919f0, 0x0b5c6c07, 0xd3ffff22, 0x20063041, 0x241683ff, 0x2e2c00ff, 0x2b2d8215, 0x68e6a701, 0xffff156b, 0x06f628c2, 0x34208083,
0xf32cb382, 0xffff84eb, 0xff87f6fc, 0x1e05f5ff, 0x081a9419, 0x82989921, 0x1a94190a, 0xef0e2b5d, 0x80ac00ff, 0x3c01ff00, 0xf68266e6, 0x9a99372d,
0x973700ff, 0x5c00ff0a, 0x828b6666, 0x340f820a, 0xf668c8ff, 0xff59bd08, 0x66660700, 0x4cb0ffff, 0xd6ffffce, 0x230982e6, 0x080080c6, 0x2405a950,
0x6666feff, 0x27ba8205, 0xffff34b3, 0x7732b3f1, 0x3783ca82, 0x0f82f120, 0x4c0a0023, 0x202582ce, 0x82ca82f1, 0x84cc200a, 0xff9f2119, 0xce2b0a82,
0x4c0e00ff, 0x00ff08cc, 0x82981901, 0x9a992c04, 0x1600ff05, 0x00ff68e6, 0x829a1920, 0x216a8225, 0x65832b00, 0x0e82e420, 0xe61b0023, 0x21448266,
0x298299e0, 0x68661f2b, 0xe6ccffff, 0xffff8b67, 0x20b782e0, 0x821482ff, 0xcc8f271a, 0x8fffffcd, 0x858234b3, 0x707de025, 0x83e1ffff, 0xccff21bd,
0x1f223b83, 0x2a849082, 0x1b206a82, 0x50822583, 0x6084b720, 0x7083ab20, 0x00245782, 0x8d999901, 0x0e287d82, 0x00ff6766, 0x9f666609, 0xb9841d82,
0x82333321, 0x9a9921ce, 0x0a213882, 0x20b9824c, 0x22d383f1, 0x8234b3fc, 0x220a84de, 0x8232b3f5, 0x23fa8279, 0xe6feffff, 0xc520ff83, 0xd6202083,
0xff26c382, 0xff9919b2, 0xae820600, 0x02ceff28, 0x3100ff8f, 0x298268e6, 0xf087c72b, 0x803800ff, 0x00ff8b00, 0x231a825b, 0x10783800, 0x66210f82,
0x335f8267, 0xff3e4a70, 0x33337100, 0xffbbf705, 0x9a1907ff, 0xc7ffff15, 0x0484dc83, 0x3283a420, 0x3d830f84, 0xbd590825, 0x82f9ffff, 0x4e00211c,
0x0021cd82, 0x22e28329, 0x82008039, 0x83012044, 0x82cb8274, 0x830920ca, 0x4c0e2fca, 0x00ff9fce, 0xff666603, 0x32330f00, 0xaf84ffff, 0x660e0026,
0xf6ffff68, 0x1983a982, 0x1582ca82, 0xf0ffff24, 0xa082cdcc, 0xba83fe20, 0x6766fe2d, 0xe9ffff05, 0xffff9819, 0x82cccce0, 0x262a823f, 0x3433d3ff,
0x411b00ff, 0x6a82068e, 0x44831f20, 0xc483e020, 0x98193322, 0x1f20cf82, 0x14828f83, 0x00ff0823, 0x222a8370, 0x82cc4c70, 0x84158585, 0x833320f0,
0x83e0203b, 0x991e2225, 0x206a829a, 0x225084e4, 0x825fb8de, 0xd8a32260, 0x2170826b, 0x4c410a17, 0x0662410d, 0xff773424, 0xbd840400, 0x0d228c83,
0x25821e85, 0x82b3f521, 0x610e228d, 0x203b8248, 0x23a1824c, 0xff72fd13, 0xe682d682, 0x82450a21, 0x0100211e, 0x0023b182, 0x82b81e01, 0x83392081,
0x16292571, 0x4e00ffca, 0xff2d3e82, 0xbd227bf9, 0x02ceffff, 0x00ff0890, 0x291a8238, 0x3c8ac7ff, 0xa4ffff8b, 0x6f416766, 0x99992107, 0x8f205f82,
0xff205f82, 0x05350482, 0x00ffef0e, 0xff333360, 0x66e6f700, 0xffffff15, 0x00ffb8de, 0x221c8302, 0x8314eeff, 0x82332009, 0xb30223fa, 0x06820833,
0x82665821, 0x8347207f, 0x82048479, 0x828b200e, 0x4c3b2264, 0x201b82cc, 0x25328333, 0xff00c0df, 0x09831b00, 0xcc0cd022, 0x0f201a82, 0x0026d482,
0xff9a190b, 0x3a831200, 0x09830520, 0x34b31328, 0x8bc0088b, 0x6c18ffb6, 0xff270b61, 0xcdccf3ff, 0x83fdffff, 0x82f4203a, 0xfbff282a, 0xffff64e6,
0x823333f5, 0x663a2b44, 0xf4ffff68, 0xffb73433, 0x6a83ccff, 0x19c2ff23, 0x268d829a, 0xcc4cb9ff, 0x83c6ffff, 0x82048431, 0x088b290e, 0xff0604fc,
0x5278b0ff, 0xbf23f082, 0x18ffae87, 0x300dce6a, 0xffcccc3e, 0x852b2800, 0x663500ff, 0x3800ff67, 0x20208207, 0x30d98213, 0x01ff2f0e, 0xff3433b5,
0x00802c00, 0x89ffff15, 0x32e582e6, 0x050080bc, 0x052bf78b, 0x190700ff, 0x00ff069a, 0x8200400d, 0xd90921e4, 0x0a20ca82, 0x2008e14f, 0x220082ff,
0x82059bf2, 0x741e8218, 0x00200598, 0xcc821d82, 0x8b66a62a, 0x31ffff08, 0xff06dacc, 0x07978218, 0x18c23521, 0x820b71bd, 0xf3ff2239, 0x233a827b,
0x00c0f2ff, 0x22052350, 0x8240f5ff, 0x590c2209, 0x863a829a, 0xca012375, 0x8382fb4b, 0xcc8aff26, 0x43ffffcd, 0xff279282, 0x52b8e2ff, 0x83d0ffff,
0x822120a2, 0xc2ff2238, 0x22918299, 0x82b89e37, 0x32012333, 0xa9823433, 0x289c3722, 0x21209082, 0x3d22eb83, 0x30820080, 0xba34b326, 0xd3feff08,
0x53203283, 0x0022e083, 0xe0822630, 0x48a14d22, 0x042cdc82, 0x00ffcd8c, 0xffeb1105, 0x99190200, 0x28096149, 0x00ff08cd, 0xf7aa1000, 0x22228234,
0x8271fd3f, 0xf0ff24c4, 0x8334fba4, 0x20f921ae, 0x0221a482, 0x21bf823f, 0x0982a0f9, 0x04820320, 0xdefaff23, 0x263082b8, 0xff422130, 0x8261b2ff,
0x53ff2156, 0x0e238982, 0x828c01ff, 0x25048384, 0x1c00ff15, 0x0482ce4c, 0xffae4726, 0xcccc2d00, 0x0f839f82, 0xb8e3ff23, 0x2d378252, 0xff981907,
0x16eef8ff, 0xf4ffff8b, 0x0a823c8a, 0x8468e621, 0x24b4820f, 0xffcc4ce5, 0x820482fe, 0xcc042686, 0xf3ffffcd, 0x27b98266, 0xff33b302, 0x6666f2ff,
0xf1232f82, 0x820834b3, 0x19c22506, 0xcdffff9a, 0x0485e082, 0x8b260e82, 0xc2ffff08, 0x1b82d723, 0x29dccd27, 0x193200ff, 0x2273829a, 0x8266e63d,
0x8200202d, 0x27118206, 0xffbed723, 0x29dc3d00, 0x00232982, 0x82cd4c0e, 0x990d251e, 0xfcffff99, 0x0c216183, 0x224f8299, 0x823433fb, 0x8226209c,
0x2800270a, 0xff056666, 0x1a83d9ff, 0x0a820f82, 0xff228783, 0x878433fb, 0xffff672a, 0xffcd4cfd, 0x33b3f1ff, 0xdc21759c, 0x83758428, 0x88d82004,
0x828b8279, 0x829e8279, 0x28dc21bf, 0xc222ae82, 0xa382d823, 0x84051d4f, 0x20e88256, 0x826a85ff, 0x83908674, 0xff05298a, 0x32b38d00, 0xe68b00ff,
0x13289b83, 0xffff3433, 0x159a19c4, 0x19224d82, 0xf64e2a9c, 0x16002805, 0xffffd663, 0x4e0080e5, 0x702005fb, 0x2306fb4e, 0x2a9ce9ff, 0xe6220a82,
0x6983d663, 0xe083e420, 0x717d1525, 0x83ebffff, 0x821a22df, 0x182d8290, 0x220bad5a, 0x829a9914, 0x661b2754, 0xff5b0866, 0x6282affe, 0x16d84818,
0x1a222482, 0x5b180080, 0x799309bc, 0x12344918, 0x16827983, 0x79855482, 0x8f83a620, 0x66666925, 0x82cbcb15, 0x829c20e2, 0x63ff220d, 0x20e28266,
0x05264200, 0x8268e621, 0x99f422ba, 0x07264298, 0x0868e627, 0xb3e3ffff, 0x22048632, 0x823433d2, 0x230f831f, 0xce4c1c00, 0x89341a82, 0x00ffcecc,
0x05323376, 0xf714f80e, 0xeb8b15f4, 0x0604fb05, 0x200b0950, 0x09797eff, 0x07b4fb22, 0xd5183c82, 0xf7221352, 0x6b500654, 0x18702009, 0x260cfc92,
0xffff0764, 0x8266e6a0, 0x80ed2253, 0x203e8200, 0x21b182f1, 0x16190e00, 0xab270841, 0x072b15eb, 0x822b06eb, 0xfb742577, 0x74f715f4, 0x0f047518,
0x8b237fbe, 0x826b05bb, 0x19dc207b, 0x3108115c, 0x34b31c00, 0x2300ff8b, 0x0e08cc4c, 0x6c01ff2f, 0x04843433, 0xffff152f, 0xff9899e7, 0xf4681800,
0x66d8ffff, 0x83a98268, 0xe7ff310f, 0xff080c97, 0x010048ff, 0xff054cfb, 0xf5e8d5ff, 0x27079645, 0xffccccbb, 0x0b172a00, 0x08200f84, 0x19210a82,
0x240a8399, 0x4400ff68, 0x20608333, 0x230f822a, 0x98192a00, 0x982a1a82, 0x2cf70100, 0x0a00ff05, 0x048366e6, 0x11222282, 0x8382cccc, 0xff210f83,
0x232284f5, 0xff68e60a, 0x9a200a82, 0xee207682, 0x0a829182, 0x0f849820, 0x2cfb0823, 0x293a82fb, 0x0100c0ff, 0x98ffff4b, 0x20826666, 0x0000c023,
0x239382cb, 0xcbcd0cc0, 0x67204482, 0x3f2fb583, 0x00ff33f3, 0x08010040, 0x00ff4cf7, 0x82ffffb7, 0x4c2e286c, 0x2e00ffcd, 0x82d6ae47, 0x4c2e2723,
0xd1ffffcc, 0x8b8252b8, 0xce4c2e22, 0x47820a84, 0xe2fab422, 0xb3210a82, 0x20048332, 0x24508233, 0xff010050, 0x820482ff, 0x66e324e7, 0x84ffff66,
0x19d12004, 0x23086abd, 0x9a991c00, 0xe3232582, 0x82ffd763, 0x8398200a, 0x82662056, 0x9c1c22ca, 0x820f8429, 0x0090245b, 0xb624f701, 0xffff25e7,
0xfb010070, 0xff213d82, 0x82b882f9, 0x8bcc2804, 0x0600ff80, 0x83ff33b3, 0x865c820b, 0x96ce210a, 0x0b837882, 0x32201b82, 0xb0201682, 0x44207382,
0x18207382, 0x0023b182, 0x82686618, 0x9927281d, 0xe7ffff98, 0x83ff9a99, 0x8b08320f, 0xff2f0e07, 0x9a19b101, 0xe63e01ff, 0xffff1566, 0x230a82ac,
0x66e65300, 0xf922e682, 0x63829819, 0xff48e126, 0xceccf0ff, 0x51230982, 0x828b80ec, 0xe60322e2, 0x0cb47766, 0x273eb77a, 0x19fc00ff, 0x968b079a,
0xb321c982, 0x06864934, 0xae83f720, 0x9a99082d, 0x2effff08, 0xfeff66e6, 0x829a19e1, 0xa8dc299a, 0xffff8bf6, 0xff0a57e3, 0x0a094618, 0x2320d182,
0x16841186, 0x8200ff21, 0x84a6820e, 0x83118506, 0x82388232, 0x8508203e, 0x21448206, 0x4985cc4c, 0xb3dcff29, 0xeb088b34, 0x821564f7, 0x33f7221a,
0x4dbf1833, 0x74fb2110, 0x0c9e6b18, 0x33070023, 0x25728233, 0x08cdcc08, 0x088407eb, 0x00ffcc25, 0x82f62807, 0x82332004, 0xd70825bd, 0xf7088b0a,
0x00223282, 0x6b18cc08, 0x1878071a, 0x072b230a, 0xd4182f0e, 0xf7211aec, 0x0e707ad4, 0x09234718, 0x18885918, 0x430e447c, 0xf7210abf, 0x186d89d4,
0x2113ca66, 0x645514f8, 0x3246180e, 0xcc4c220c, 0x0f6455ff, 0x3082fc20, 0xb218ff20, 0xca5515c4, 0x18332007, 0x90103389, 0x1f305665, 0xf8246599,
0x1554fb34, 0x70621e99, 0x7b542108, 0xbf828582, 0xab110025, 0x91088b85, 0x0cad1880, 0x9b0e241e, 0x8215f4f7, 0x821a234c, 0x3256ff90, 0x707d2806,
0x821a00ff, 0x56088b8f, 0xa7180d32, 0x395608a0, 0x56ff2005, 0xf8222632, 0x5c18ab64, 0x79410e9f, 0x56fb201f, 0xa78218de, 0x2105db41, 0x4b60cd4c,
0x11002605, 0x088b33b3, 0x05ae18f7, 0x6bae1814, 0x576b20ba, 0xeb225cc4, 0x5f8234f7, 0x80e5ff23, 0x27c34100, 0x08226418, 0x2b245258, 0x00ffaf0e,
0xff9a1937, 0xc2f58701, 0x00286882, 0xff90420d, 0xd7a30b00, 0x2b06d85b, 0x8b295c0c, 0xff06ab08, 0x34330e00, 0x09245882, 0xffffcdcc, 0x095d1d19,
0x88ffff26, 0x9b073e0a, 0x33201e84, 0x73181e88, 0x8b2908b3, 0xb3f2ffff, 0xf6ffff33, 0x30048233, 0xffcd4cf5, 0xcdccf1ff, 0xffff088b, 0x06ffffaf,
0x600019ff, 0x233e830d, 0x08cd4c0d, 0x0d224582, 0x82873433, 0xffcccc23, 0x83828400, 0xf55f2463, 0x8e8307c2, 0x08b14c37, 0x61078b21, 0xfe310529,
0x150ad7e2, 0x66f9ffff, 0x0700ff66, 0xffff6866, 0x267783f4, 0xff0080ff, 0x8240faff, 0xe6f72304, 0x14820866, 0xff47e12a, 0x0080f0ff, 0xf8ffff05,
0xf5221f83, 0x9c823233, 0xff8f0224, 0x2983fdff, 0xc235f522, 0xb3213d82, 0x87298234, 0xffff250a, 0x9a8f82fd, 0x33261583, 0xb30a00ff, 0xa2820832,
0xffb81e30, 0x9a990f00, 0x1700ff05, 0x00ff71bd, 0xad824c21, 0xec913025, 0x820200ff, 0x1a002778, 0xffff67e6, 0x298333e1, 0x63831520, 0x5983e820,
0xda2b8884, 0xffff9a99, 0xff9919ea, 0x8333e8ff, 0x19dd2163, 0xda220f82, 0x4882cc4c, 0x33332123, 0xa0b01806, 0x8bcc230e, 0x0919ffff, 0xca180d99,
0x2f820cc7, 0x78f6ff23, 0x21248252, 0x8f825ef7, 0x5b830520, 0x142efc27, 0xcc0800ff, 0x22bf82cc, 0x82852bfc, 0x34b3260a, 0xb50100ff, 0x82b982c3,
0x060024e8, 0x8292c375, 0x0a4823bf, 0x7282d93e, 0x9c820520, 0xcc050027, 0x0000ffce, 0x33e08219, 0xffcccc08, 0x66e6faff, 0xe60500ff, 0x8b8b0866,
0x8901ff05, 0x0123d882, 0x44343315, 0x94202f1a, 0x670cff71, 0xb2180e80, 0x94231386, 0x8ffb8b06, 0x1f944565, 0x659cfb20, 0x9413275c, 0x1e794565,
0x275c659e, 0x06942612, 0x4c01ff0e, 0x08198233, 0x9a198022, 0x1100ff15, 0xffff5238, 0xff7ad4f3, 0x281c0500, 0xa8f1ffff, 0xfcfffff6, 0xffffae47,
0x08ce4cea, 0xf8250a82, 0xeeffff10, 0x2b148268, 0xffa826f8, 0x0040f4ff, 0x28f2ffff, 0x59210e83, 0x251e829a, 0xff5c8fdc, 0x1483ecff, 0xa4f0b631,
0xca0700ff, 0xb2ffff3e, 0x00ff0080, 0x82d6a31f, 0x82ef201e, 0x0600274d, 0xffff9eaf, 0x28824fed, 0x7228f825, 0x83f9ffff, 0xa0ef2209, 0x871e8242,
0x2138820a, 0x2382c5e0, 0xfff25226, 0x8d571000, 0x57222382, 0x4382080a, 0x6c82c020, 0xec11f325, 0x823f00ff, 0xe9ff215c, 0x00246b82, 0x8bf6e83d,
0x1d271a82, 0xff8bb89e, 0x82301d00, 0x27052c73, 0x1800fff0, 0x00fff6e8, 0x82d2cd0d, 0xcf1e221a, 0x2ed5825c, 0x00ff0a17, 0xff48a113, 0xb85e1c00,
0x820600ff, 0x240033d0, 0xff0868a6, 0x7cff0300, 0x451700ff, 0xfeffff1e, 0x2382862b, 0xff5e4f26, 0x1058faff, 0x78217882, 0x23928250, 0x067ebfb1,
0x002d5982, 0xff158e02, 0xcccc9b00, 0xffff15db, 0x2dd0834f, 0x05e90700, 0x26f0ffff, 0x0500ff66, 0x0982ee9c, 0xff20052b, 0x1cba0400, 0x21f1ffff,
0x21098246, 0x3d82ae47, 0xae87aa22, 0x9e258b82, 0xe6ffffb8, 0x21b68291, 0x44826e0e, 0x33330725, 0x832a00ff, 0x0200211e, 0x0e204883, 0x07212383,
0x25af82a8, 0xff146e0b, 0xd5830c00, 0xec110822, 0x14229a82, 0xc4825278, 0x2b266183, 0x00ff0a97, 0xdd82b00a, 0x09575b28, 0xd0e7ffff, 0xd38508f2,
0x78fbff22, 0x1120aa82, 0x0a214783, 0x22e7822f, 0x823e8a04, 0x04162118, 0x04221e82, 0x0a82f087, 0xff0c1725, 0x82d0f5ff, 0x2223839a, 0x82e7eeff,
0x87042113, 0xa4209a83, 0x18364d83, 0xffff142e, 0xff299cba, 0xa470fdff, 0x66d2ffff, 0xe2ffff66, 0xb982dab9, 0x0280e42f, 0x4eeeffff, 0xedffff92,
0xffffcccc, 0x23c383e4, 0x6b707dfa, 0xf72f1a82, 0xffff852b, 0xff9a99cc, 0xd7a31200, 0x83dfffff, 0x4c1d27cf, 0xe9ffffcd, 0x1e826766, 0xcdcc8e24,
0x9161058b, 0xf5ff2a0b, 0xff8b0040, 0x66a6f3ff, 0x51068208, 0xf620096d, 0x0d20d983, 0x08221b82, 0xe05164f8, 0x05ab6108, 0x3082c020, 0x590c0023,
0x2130829a, 0x5a830c00, 0xcc4cf533, 0xcc0a00ff, 0xf2ffffcd, 0x088b34b3, 0x34f82f0e, 0x06c8488b, 0x20312b19, 0xe983f120, 0xa4b01122, 0x6c07c848,
0x89180857, 0x6c181453, 0xfc2c0c6a, 0x7f01ff04, 0x9b1570fd, 0x0734fb06, 0xa725bc82, 0x00ffaec7, 0x2a048247, 0xb81eb9ff, 0x385800ff, 0x85088b52,
0x83168506, 0xff8b2a1b, 0xec515700, 0x0734f708, 0x0cc56c9b, 0x180e0021, 0x8311e051, 0x6b0d2299, 0x06c67086, 0x00ff2b26, 0x05400100, 0x210df172,
0x778216ae, 0xea51ee23, 0x20068408, 0x07ef72ec, 0x6c16ae21, 0x6482060d, 0xff5fff23, 0x319d83ff, 0xff5d0fcb, 0xa4f0d4ff, 0xd7d5ffff, 0xcbffff0a,
0x9d825c0f, 0x16850684, 0xe72b0023, 0x229d82b4, 0x939a1934, 0x184f209d, 0x180a0842, 0x2513bf8a, 0xffffff2b, 0x9d8ebefe, 0x82a4b021, 0x35ef2296,
0x229d83c4, 0x86c235ef, 0xe2ef229d, 0x189d8688, 0x316e65fb, 0x1574fb74, 0x34fb07eb, 0xf7072b06, 0x34fb0634, 0x0884154b, 0xf7231284, 0x82152b74,
0x211e8814, 0x2a8a34f7, 0xb9820e20, 0xff5c0f2c, 0x34b3f0ff, 0xedffff15, 0x37190641, 0xbe210d31, 0x230f82fa, 0xff08cecc, 0x09313719, 0x1ec93719,
0xffff9a22, 0x07c93719, 0x50823220, 0x8b904226, 0x99e1ffff, 0xed221582, 0x0f82ce4c, 0x08ae4725, 0x8282feff, 0x2004830f, 0x82108405, 0x221a8304,
0x829999e1, 0xc937192a, 0x4d012f14, 0x01ff3e8a, 0x1532b313, 0x6900fff4, 0x37821e05, 0x3719e820, 0xff270891, 0xff66e696, 0x190297ff, 0x240cb937,
0x04f8ef0e, 0x4a8b19f8, 0x0aee500d, 0xff075b2d, 0x34b33200, 0xff8b9c06, 0x82660f00, 0x4cf92c3d, 0x0c00ffcc, 0x087f66e6, 0x824d00ff, 0xb2ff380b,
0x970534b3, 0x0600ff7f, 0xffff34b3, 0x8b33b3ef, 0xffff087a, 0x82cd4c8d, 0xb3112138, 0x09877318, 0x231f5b62, 0x568b066b, 0x13c18218, 0x8b14fb21,
0x27f78318, 0xb666e6d5, 0x7b08c08b, 0x620c2152, 0xf7220a2b, 0x574c07d4, 0xd4f73216, 0x34fbbb06, 0xf7072b15, 0x00ff0614, 0x0733b312, 0x83be83ff,
0x05cd2bc8, 0x4ccdffff, 0x94fb06cc, 0x601864fb, 0x0e530da4, 0x08415312, 0x00801a22, 0x200e8853, 0x21118215, 0x178200ff, 0x6a530820, 0xd4f72216,
0x3ed6182b, 0x96b88a0c, 0x05a35331, 0x2005b353, 0x258da0ff, 0x94f8af0e, 0x628214f8, 0xcc4c2322, 0x1c235082, 0x50ff34b3, 0x94210b3a, 0x23481807,
0x22338331, 0x18592300, 0x24147548, 0xd4fb14fc, 0x05ca5215, 0x99226783, 0x718400ff, 0x66a6dc2b, 0x074b088b, 0xf74b06cb, 0x218b8354, 0x23829a59,
0x67a61c22, 0x2e851e84, 0x064b0830, 0x54f8074b, 0xcb1554fb, 0xdcffff07, 0x988234b3, 0xcc4ce322, 0x08354618, 0x0834b32a, 0xf78b06cb, 0x064b1594,
0x5a85b286, 0x00202383, 0x0826dc83, 0x74fb07cb, 0xcc1874fb, 0xfd183d67, 0xc9350894, 0xff156666, 0x66e680ff, 0xff0514fb, 0x66e6f8ff, 0xb3f9ffff,
0xae741834, 0x18108410, 0x270d8c92, 0x00ff00c0, 0x08004006, 0xf7203d84, 0xf53c3d83, 0x00ff54f4, 0xff002009, 0x7542fdff, 0xcc0d00ff, 0x0400ffcd,
0x00ff39f4, 0x0866e60b, 0x0f820a89, 0xff91ad2c, 0x67e60700, 0xee0c00ff, 0x1a828b15, 0x9a19ff23, 0x220c8206, 0x828ba4f0, 0x14ae211c, 0x38218882,
0x26308210, 0xffffc2f5, 0x82f007f4, 0x86042020, 0xffff270a, 0xfff628fe, 0x1e82f2ff, 0xccf6ff26, 0xf6ffffce, 0x0e205a82, 0x002ecd82, 0xffd76309,
0x9a99b600, 0x7f00ff15, 0x8f839a19, 0x1c070023, 0x2ba28229, 0x00ffcc4c, 0xff333308, 0x9a190300, 0x70830984, 0x6a821082, 0x822e0821, 0xe0fc21fb,
0xf882c885, 0xcd82c020, 0xfb203d83, 0x0023cd82, 0x82f02709, 0x82d8205e, 0xbe022287, 0x26728276, 0xfffffa3e, 0x83020bfb, 0x82ae2091, 0x240a87f4,
0x2ff5ffff, 0x21b0821a, 0x23829a39, 0x82343321, 0x00ff2a5c, 0xff06f5e8, 0x5c0ff3ff, 0x212c828b, 0xea82eb51, 0x4a82c720, 0x3d0afb22, 0xf822dc82,
0x46820810, 0xff270a86, 0x68c30200, 0x820d00ff, 0x0900391e, 0x00ff1e28, 0x089a1909, 0xffb0fb0e, 0x66668900, 0x662900ff, 0x14fb1566, 0x0520cf84,
0xb9209d82, 0x0720be82, 0xff20c382, 0x0822b184, 0xc1823233, 0x06853083, 0x2020df82, 0x0722c882, 0xf382ae47, 0xd2854020, 0x87f70821, 0x85cd843d,
0xc10d2204, 0x82778206, 0x0b0023d2, 0xd28452f8, 0x97830820, 0xab820a85, 0x8266c621, 0xb44821b5, 0xf320bb82, 0xff258d82, 0x66e600ff, 0x210c8307,
0x96415c0f, 0xf4ff2305, 0x2182ec51, 0xd2840720, 0xcd823e20, 0x0a86f420, 0x24059641, 0x0ad70100, 0x9f4618ff, 0x20cd8409, 0xb8001976, 0x248f8207,
0x66e680ff, 0x05964105, 0xe6f8ff22, 0x0320e582, 0xf722d283, 0x6382cdcc, 0x33b3f823, 0x21068408, 0xe484ff32, 0xebf6ff23, 0x1fb21886, 0x14fb220a,
0x233d85ff, 0x10d8f6ff, 0x28059b41, 0xf93ef2ff, 0x41fdffff, 0x2591838a, 0x0400ffae, 0x9184fef4, 0xb0820a85, 0xff9a392c, 0x80ea0900, 0x0d00ff8b,
0x6942cccc, 0x23cd8205, 0xa4f00c00, 0x23059641, 0x14ae0b00, 0x1120fe83, 0xf5213b82, 0x212082c4, 0x0a84f80b, 0x9641c220, 0xfdff2305, 0x4082e03a,
0xf623a283, 0x19087cd4, 0x336d4102, 0xf715d4fb, 0x94f70634, 0x0634fb07, 0xf80794fb, 0x1594f714, 0x16850a85, 0x70fb0e35, 0xa81b00ff, 0x1574f7f6,
0xb30801ff, 0x00ff0634, 0x829a9918, 0x0c3108ea, 0x00ff3c4a, 0xffaec71d, 0x68a6eeff, 0x571100ff, 0xffff080a, 0xff33b37b, 0xcccc8800, 0xfaffff05,
0x00ff1098, 0xfff06705, 0x9eeff8ff, 0xb30200ff, 0x22098276, 0x828ba4f0, 0xf1f82325, 0x0c828bec, 0xff0af726, 0x8a4cfdff, 0xa3212a82, 0x822f84d7,
0x7f7b271a, 0x77ffffbd, 0x4082162e, 0xe9a6ee25, 0x83eeffff, 0x480c2650, 0xe2ffffb4, 0x225a8233, 0x82e19a18, 0x08013b40, 0x154bd6a3, 0x5cf7feff,
0xffff062a, 0x8b6666e7, 0xb5f3ffff, 0xe2ffffc3, 0x8982e23a, 0x829a5921, 0x66a62d37, 0x8400ff08, 0xffff0080, 0x05343377, 0x47208982, 0xfa27a982,
0x00ffb89e, 0x83343306, 0xffcc2577, 0x66e60700, 0x00234d82, 0x82910d07, 0x110722cf, 0x20a58327, 0x212a82f8, 0xb984f668, 0x4c214083, 0x22cf86ce,
0x825e1100, 0x4a11223b, 0x216a8280, 0xf98232b3, 0x85cccc21, 0x0e08327a, 0x01ff70fb, 0xff66e637, 0x66e67000, 0x7bffff15, 0x227f8299, 0x82323377,
0x83fa20c2, 0x99fa230a, 0x7085849c, 0x6718ff20, 0xff850728, 0x835cef21, 0x82b62070, 0x82a620fa, 0x6805233c, 0x3c850832, 0x22064041, 0x8218a4ee,
0x207082cc, 0x21ff8300, 0x70821d00, 0xff870020, 0x21058741, 0xb7823c8a, 0xa2820c20, 0x83e2ff21, 0x82ee20d3, 0x82ff2097, 0x41918404, 0x0e2a8eb3,
0x15eb94f7, 0x78efffff, 0x05848b52, 0x0500ff23, 0x21ee826c, 0xf982e6f1, 0xeefc0a22, 0x2f2b0a82, 0x00fff628, 0x05d663a2, 0x7b1dffff, 0xe52205c5,
0xda6a0080, 0x06be5409, 0x5a34f821, 0xff2f1788, 0xcccce200, 0x2fffff07, 0xffff3433, 0x8200805d, 0x7d5d8347, 0xef270516, 0xffff6666, 0x829a99fa,
0x0080227b, 0x396d828b, 0xff3e4a10, 0x34b3ce00, 0xd400ff15, 0xffff3233, 0x0564e65a, 0x301000ff, 0x635dffa4, 0xae162305, 0x0f858b14, 0x990c0024,
0x2583089a, 0x00ff3425, 0x829a19a5, 0x59092a25, 0x0800ff9a, 0x00ff0200, 0x25be8306, 0x8bcc4c0c, 0x16490898, 0xf5d71806, 0x82fc200f, 0xe5ff22af,
0x07766b7d, 0x210afd49, 0x3f827e8b, 0x828f0221, 0x82b3206f, 0x470a2759, 0x0e0883ae, 0xef7474f8, 0x83842005, 0x829b20a9, 0x84ff20fe, 0x830e8204,
0x23cf37b3, 0xffff8bd7, 0xff85abd1, 0x7a940f00, 0xfdd8ffff, 0x1d00ff71, 0xce82b047, 0x29dcf131, 0x970a00ff, 0xfdffff0a, 0x00ffd723, 0x82ec1114,
0xe89b260e, 0x260e00ff, 0x21bc8266, 0x1e829c0a, 0x0a170e22, 0x14261982, 0x0200ff7b, 0x198248e1, 0xff291c2b, 0xae67f5ff, 0x1b00ff08, 0x203882d7,
0x2c1e83eb, 0xfff62821, 0x52f8f4ff, 0xe32200ff, 0x2b7382d7, 0xda195800, 0xfeffffff, 0x4700ffb8, 0x4722a683, 0xe88232b3, 0x9a195822, 0x0682ef83,
0xb8ffff24, 0x1b837c54, 0xffff3225, 0x82b8dea7, 0xcdff2231, 0x250b82b3, 0xffe2faff, 0x3182d0ff, 0xebe7ff24, 0xaa826d86, 0x82cc4c21, 0x663f2167,
0x0dfbed18, 0x3576ff20, 0x78d88209, 0xb3210537, 0x055e7e33, 0x4ceeff27, 0xfb088bcd, 0xab431824, 0x0a314e0c, 0x0724f722, 0x9a188982, 0x97760955,
0x8285200d, 0x540e221b, 0x854a847b, 0xff083b5a, 0x1ec5b9ff, 0x2a00ff07, 0x00ff9a19, 0xff66a635, 0x01004000, 0x782000ff, 0xb682d154, 0x667b0023,
0x27338266, 0xff008064, 0x8e829bff, 0x842c3382, 0x0e089a99, 0x00ff94f8, 0x1533b3e7, 0x06211a82, 0x241a8220, 0xfff0a7fd, 0x27098400, 0xff2050fb,
0x15ae0400, 0xe92d5782, 0x00ffbc54, 0x05ec9116, 0x4ffbffff, 0x301582e0, 0xffff9caf, 0xff16d9f9, 0x8e570200, 0xbdfaffff, 0x84608270, 0xffff2e06,
0xff34f3f8, 0x32a8fdff, 0x35fcffff, 0x212f82c2, 0x4082a450, 0x8260fa21, 0x8204825a, 0x208d2d40, 0x7100ff02, 0xff051e25, 0x00a00500, 0x0a820484,
0x83af0421, 0x82b02056, 0x57022271, 0x218082ce, 0x9082ea26, 0x90420523, 0x82068408, 0x23518363, 0xce0c0700, 0x25825183, 0x3eca0322, 0xe9225682,
0x97824861, 0x82b89e21, 0x4bfb2256, 0x21368284, 0x9782b27d, 0xf982e620, 0x10580222, 0x68200983, 0xf9229783, 0xed8268e6, 0x82f3f921, 0x82dd8392,
0x845c20c2, 0x27408245, 0xff095783, 0xf08783ff, 0x66214083, 0x21158267, 0xbc82cc4c, 0x85999921, 0x2105823b, 0x8182cccc, 0xccf9ff23, 0x84ea82cc,
0x20dd8252, 0x83ac8300, 0x84082045, 0xffff217c, 0xc2838682, 0x8221b021, 0xdf4f2140, 0x26218682, 0x214582e9, 0xdc8231a8, 0x82904221, 0x06002381,
0xc782f027, 0x6c270622, 0x00204585, 0xff20bd82, 0x40824583, 0x210a0341, 0x77821971, 0x66e68e22, 0x2f418c82, 0x06612105, 0x82067041, 0x83e0206c,
0xff302551, 0x16d9f9ff, 0xfa20cc82, 0x82054e72, 0x21518506, 0x9788f8ff, 0xc235fc22, 0x2020978f, 0x2206b641, 0x853c1f06, 0x06002345, 0x97844821,
0xae820682, 0x85b81e21, 0x04002345, 0x9787a4b0, 0x00807c27, 0x997c00ff, 0x22d8829a, 0x828c8c06, 0x42e0211f, 0x4c220482, 0xc88391cc, 0x08333331,
0xcce3feff, 0xeaffffcc, 0xff153333, 0x8299c5ff, 0xb3c422b9, 0x22ae8234, 0x4834b3f9, 0xf7200696, 0x00201f82, 0x20089648, 0x08fb4a08, 0xff66e624,
0x214bfcff, 0x82332005, 0x34b321cf, 0x2405f14d, 0x4c8dffff, 0x214083ce, 0x158200c0, 0x4884c021, 0xf72206bb, 0xef8268d1, 0x5ccff723, 0x49068508,
0xff2305a0, 0x49ecd1f7, 0xff2305a0, 0x8200c0f9, 0x402d21ef, 0xd2223582, 0xae8300c0, 0x82523821, 0xa2b02640, 0x300800ff, 0x836a85a4, 0x82ef8309,
0x06af4a10, 0x20030022, 0x8405dc49, 0x20408245, 0x82b78372, 0x82408304, 0x0600214b, 0x03210483, 0x87f48220, 0x82142034, 0x08002381, 0x98855c2f,
0xf9210985, 0x822082c0, 0x2440822a, 0xff146e3a, 0x82048200, 0xd22508c2, 0x00ff49cc, 0x05ae272e, 0xff30fb0e, 0x0080f000, 0xff1574f7, 0x00806f00,
0x0d00ff06, 0x978bcc4c, 0xb3f7ffff, 0x26c98233, 0xffffcecc, 0x829a99f3, 0x8005213d, 0xf322bf82, 0x5c82ff7f, 0xf1230983, 0x828168e6, 0x32332624,
0xfb94fb08, 0x20528274, 0x053e58f4, 0xffff3225, 0x825178ef, 0x34332125, 0xeb273982, 0x0800ff85, 0x8208cecc, 0xf5e8210a, 0xcc2b0a83, 0x99fbffff,
0x00ff9b9a, 0x82d7e305, 0x34b3216a, 0x4c275982, 0x00fff6e8, 0x826666b3, 0x998f2344, 0x2b820699, 0x8beb9127, 0x10f4ffff, 0x20318221, 0x2731834c,
0x00ff9e4f, 0x0868660c, 0x0a843c82, 0x82ff7f21, 0x168a2b9a, 0x190e00ff, 0x0a00ff9a, 0x28821d09, 0x82cdcc21, 0xf8ff354a, 0xdf00ff52, 0xff0564fb,
0xce4c0b00, 0xd60900ff, 0x1000ff88, 0x0023af82, 0x82bebf00, 0x98192143, 0x3721b382, 0x2029828c, 0x3039820c, 0xca36f7ff, 0x660400ff, 0xf0ffff66,
0xffffae07, 0x221383fa, 0x829042f2, 0x83b32067, 0x9c4c290a, 0xaf0e0528, 0x04f864f7, 0x8309c95b, 0x7d152a4b, 0x1a00ff70, 0x088b0080, 0x6a8a18cb,
0x074b2117, 0x1808cd5b, 0x250d5e7e, 0x07630683, 0x36822cf7, 0x66e61e26, 0x1900ff8b, 0xe6206783, 0xff270a83, 0x089a19e1, 0x8e93076b, 0x25658251,
0x80e5ffff, 0x51980800, 0x4f064b21, 0x6f4f0b41, 0x82cb200a, 0xe07a1983, 0x0080210b, 0x9322b586, 0x1a83ab06, 0xfc20f884, 0x002cfd82, 0xff9a9903,
0x9a99fbff, 0x2cfb088b, 0x83e59f82, 0x8207b321, 0x2176836c, 0xf2648b99, 0x82ff2005, 0x820a828b, 0x39074187, 0x4108e547, 0x675b1507, 0x0607410d,
0x66e61e26, 0x111900ff, 0x0c9b6119, 0x062cf725, 0x418307b3, 0x0e321959, 0xff00ffaf, 0x00ff9a19, 0x15cc4c92, 0xb37dffff, 0xba820734, 0x9e2ff727,
0xcff8ffff, 0x280482df, 0xffff62d0, 0x8b2130f7, 0x210b8208, 0x1b829e2f, 0xbe9ffa26, 0x500500ff, 0xfe221682, 0x09820a17, 0x82426021, 0x18fa3b1a,
0x1000ff10, 0xffff52b8, 0xff56ceed, 0xa4b00800, 0x4aefffff, 0xfaffff3e, 0x1e820a17, 0x5c4fef22, 0x20210a82, 0x214a8200, 0x2382ae47, 0x825caf21,
0xf6e82138, 0x66312382, 0x00ff0866, 0x6b291c0c, 0x661e00ff, 0xeaffff66, 0x298b8299, 0x8b67e620, 0xff8bb808, 0xd1832300, 0x8b210482, 0x322582b8,
0x07ce4c82, 0xe7f6ffff, 0x0700fff0, 0xffff72e8, 0x82b448f5, 0xb6b32645, 0xcff3ffff, 0x259f835c, 0xff34b3f3, 0x9482ffff, 0x82f5ff21, 0xfbff2237,
0x210e8233, 0x748380f5, 0x08323325, 0x834001ff, 0xcc14225a, 0x25e682ce, 0xff6466e3, 0x6f838800, 0x24829220, 0xe3510026, 0x8affffd8, 0x00223d82,
0x2982b30c, 0xe6110023, 0x07104866, 0x82f1ff21, 0x0e0022ca, 0xe7401951, 0xcaf0210f, 0x7248dc82, 0xcc4c2106, 0xee22e282, 0x9d820c17, 0x33338b22,
0xed838e82, 0x142e9331, 0x1caeffff, 0xe2ffff28, 0xffff9dd0, 0x829a9977, 0xc7fd2224, 0x27c18273, 0x00ffcccc, 0x7f93b80a, 0x2f260582, 0x0900ff5c,
0xdd8266e6, 0x00003427, 0x023700ff, 0x2004828f, 0x2c4382b3, 0xff4861fd, 0x67e63200, 0x99a6ffff, 0x221e8299, 0x82df4f05, 0x7c7f2139, 0x992a2e82,
0x0000ff17, 0x00ff84e0, 0x3d82cf04, 0x00a00822, 0x14201e82, 0x00267782, 0xff5e4f23, 0x3d821800, 0x82250021, 0x2c0024ff, 0x828b67e6, 0x803a261a,
0x00ff8b00, 0x21c6821d, 0x9382bbff, 0x80020028, 0xfbffff00, 0x1a82b89e, 0xe0cf0426, 0x60f7ffff, 0x09267882, 0xffff1699, 0x5e821fff, 0xbc820520,
0x8009003e, 0xffbe0884, 0x1e855900, 0x193800ff, 0x0100ff9a, 0x00ffb9de, 0xfffe7f33, 0xb99ec9ff, 0x0b273982, 0xffffa430, 0x8270fdf5, 0x9c9924c2,
0x820c00ff, 0xfdff2123, 0x092bd783, 0x0e083433, 0xf4f7d4f7, 0x4a079b15, 0xff2816c6, 0x6666c7ff, 0xf4ffff06, 0x0028dd82, 0xff281c13, 0xcd4cebff,
0xe3264382, 0xe8ffffd8, 0xb3826666, 0x16850684, 0x83f3ff21, 0x82f42020, 0xecff24cf, 0x8708d8e3, 0x14054b3b, 0x44d4fb21, 0x002107ac, 0x0a096715,
0x088b8f24, 0x677324f7, 0xff8b2605, 0x56001001, 0x26988205, 0xff34332c, 0x82cc2300, 0x83232077, 0x332c2bb6, 0xbb088b33, 0x9334fb06, 0xac18ff15,
0xec5d0cfb, 0x00ff2409, 0x8200400d, 0x213383ef, 0x0982c00a, 0x08449e18, 0x4f823320, 0x16820a20, 0x22061c59, 0x5900c0f2, 0xff21071c, 0x83d982f5,
0x20548216, 0x226182b3, 0x666394f7, 0x6b2107c1, 0x093f672b, 0x8b008022, 0x67103654, 0x0227393f, 0xffff0690, 0x67d663ee, 0x0e2d113f, 0x00ff30fb,
0xff9a1970, 0x34b3f9ff, 0x271f8215, 0xfff8b3f9, 0xe6d00100, 0xdb291082, 0x0300ff64, 0xffffcf77, 0x2dbe82fa, 0x231100ff, 0xe6ffffd7, 0xff055c4f,
0xf6820500, 0x20f8ff22, 0x0b22f182, 0x298285eb, 0xff52982e, 0x52780900, 0x00ff088b, 0x0685ab3d, 0x70260c82, 0x00ff8b21, 0x1082ec0b, 0xa8660622,
0x00233085, 0x8206e107, 0x1411270f, 0x1900ff7b, 0x468214ae, 0x20f00226, 0x700400ff, 0x02270482, 0x00fff668, 0x8298ee07, 0x54052234, 0x2a25827c,
0xffc62000, 0x32332700, 0x8234fb05, 0x8300204e, 0xccd822a0, 0x3c3382ce, 0xffcd4c4f, 0x6a49c601, 0x9affff15, 0xffff3e0a, 0xff00b0ff, 0x5c8fb6ff,
0x5badffff, 0x23bf8210, 0x08b8dea3, 0xd3360682, 0x00ffb89e, 0xffa47010, 0x3e8ad7ff, 0x1e1b00ff, 0xe1ffffb8, 0x59823c0a, 0xae871026, 0x28edffff,
0x19216f82, 0x223582cf, 0x82289cd8, 0x48e126ae, 0xc7deffff, 0x221e82ae, 0x82040800, 0x82c02054, 0x100021da, 0xff275982, 0x00ffc0bb, 0x82fd0700,
0xfcbb2113, 0xa0221e82, 0x8f833233, 0x00252482, 0xfffe4300, 0x23248300, 0x42400000, 0x07210982, 0x210482fc, 0x24820444, 0x82e00921, 0x3821223e,
0x21e78252, 0xc682a4d0, 0x82d66321, 0x2376828b, 0x0cd71200, 0x1b271e82, 0x00ff6826, 0x829c191e, 0x66662614, 0x662800ff, 0x22f68266, 0x82cc4c2d,
0x600023b7, 0xd282727d, 0x1682e620, 0xc8e44e26, 0x809effff, 0xb3218383, 0x273582fe, 0xff9a9900, 0xd200a0ff, 0xd322f882, 0xe282b8de, 0x8221dc21,
0x1cdc22b4, 0x220a822a, 0x823ecad4, 0xf6ff223c, 0x2ed0824f, 0xffcdccf8, 0xccccf8ff, 0x33f7ffff, 0x78088b33, 0x71821663, 0x90c23d26, 0x403200ff,
0x3127aa82, 0x00ff0a57, 0x8200c03d, 0x0800232d, 0x1b8210d8, 0xf0270722, 0xd7214482, 0x225b824c, 0x83b428f7, 0x8206825b, 0x225b8311, 0x8522bbf9,
0x0e083054, 0x15a4f7ab, 0xcc7201ff, 0xffff06cc, 0x84b89ec6, 0x18052004, 0x18096143, 0x2912ef6e, 0xff162e06, 0xe2baf9ff, 0xd91800ff, 0x20201c7f,
0x06229582, 0x1f4a703d, 0x04f72305, 0x431804f7, 0x9e820ae6, 0xb5821420, 0x80f3ff22, 0x0c242482, 0xfb080080, 0x0f881f84, 0xebffff24, 0x7a8200c0,
0x14831f83, 0x909c0820, 0x146e3922, 0xa027b682, 0xfeff0500, 0x1834338d, 0x210e0c6b, 0xdd4da4b0, 0x47a51806, 0x54f82416, 0x821534fb, 0xcc4c2738,
0x3900ff06, 0x04844861, 0x8a85aa9b, 0xb5820020, 0xfb22a590, 0xe582fb04, 0x0804b918, 0x20103b41, 0x2d1f84f7, 0x852b0600, 0xb8f9ffff, 0x0800ff52,
0x604b3433, 0x33332107, 0x4b0d1056, 0x40410660, 0x84ff2007, 0x41048370, 0xfb82103b, 0x8215ae21, 0x006027b6, 0x7201ff05, 0xd35c34b3, 0x11355c0e,
0x415db320, 0xef0e250c, 0x156b24f7, 0x71311270, 0xf72bc207, 0x5700ff33, 0xff1566e6, 0x18660900, 0x2116e0b6, 0xb618dbdb, 0x642536b6, 0xe6d8ffff,
0x263c8266, 0x079a1986, 0x1900ff8b, 0x260ee206, 0x8b34b3f2, 0x83ffff08, 0xffff2406, 0x84cc4cf5, 0x848b2004, 0x23168210, 0x0766e679, 0x192c3f82,
0x2700ff9a, 0xff059a19, 0x0080f7ff, 0x171db718, 0x18f0b618, 0x053bdb22, 0x25fadb41, 0x156df7da, 0x1c41ffff, 0x1af24118, 0x2700ff30, 0x00ff66e6,
0x05343326, 0xe679ffff, 0x96410766, 0x00ff3005, 0xff34b30a, 0xcc4cf5ff, 0x4c0d00ff, 0x85088bcc, 0x83168506, 0x05e4411b, 0x86271682, 0xb2079a19,
0x18d9ffff, 0x21383ab9, 0xf241db3b, 0x3b3b291b, 0xf72f0e05, 0x15d4f7f4, 0xb9239882, 0x73ffcd4c, 0x332307e1, 0x49b8ffff, 0xba220569, 0x1b823333,
0x82ccc521, 0x4c3922aa, 0x239882cd, 0x0833b346, 0xb0300683, 0x3a00ffa4, 0x00ff3433, 0xff5c4f39, 0xcdcc4500, 0x4722c683, 0x1b829a99, 0xd8823920,
0xb0c6ff23, 0x2e3882a4, 0x085c4fb9, 0x19bfffff, 0x157efb9a, 0x83e5ffff, 0xe6f82918, 0xeaffff66, 0xffff34b3, 0x25050e4e, 0x083433e2, 0x2b820773,
0x6483fb20, 0x99990229, 0xe6fbffff, 0x82888e68, 0x00102ffe, 0xff057b01, 0x32330600, 0xb3f9ffff, 0x8519ff32, 0x0622118d, 0x1f84ce4c, 0x0a207582,
0x25858c82, 0x74822f82, 0x82ccf321, 0x4c0b221a, 0x214082ce, 0xaf4b6611, 0x07316d05, 0x820e0021, 0x10002388, 0xb383cecc, 0xb3841220, 0x57181183,
0xff280a9d, 0x9a99eeff, 0xf4ffff07, 0x04823282, 0x85053221, 0xf9ff2180, 0xff223382, 0xa983f5ff, 0x7a820620, 0xa7820f83, 0x9b27a098, 0x8e8e059b,
0x820100ff, 0x04002345, 0xa5829819, 0xed820420, 0xed82a320, 0x821d0021, 0xebff2343, 0x1a4f9a99, 0x66e42706, 0x0700ff66, 0x4d829a19, 0x34333528,
0x4900ff07, 0x84820080, 0xff981924, 0x09833600, 0xa583be20, 0x82b0ff21, 0x18832020, 0x210afb60, 0xb383ff34, 0x4c232782, 0x6b088bcc, 0x932319eb,
0x82da8b07, 0xae872447, 0x834200ff, 0x784933f9, 0x1100ff52, 0xff0868e6, 0x0080c2ff, 0xe8ffff07, 0xe08266e6, 0xff266c82, 0xff9919ef, 0x6c84eaff,
0x9a99e628, 0xffff8b08, 0xa38719e1, 0x2582e620, 0x4c1e0021, 0xd54f0535, 0x19002309, 0xd8829a19, 0x2d821082, 0x82190021, 0x824482c7, 0x83152032,
0x21588309, 0x69830600, 0x19420023, 0x26d68298, 0xff33b302, 0x82190000, 0x8302201f, 0x2b0985fb, 0x088b33b3, 0xff0604f7, 0x34b30200, 0x02254a82,
0xffff9899, 0x826c83ff, 0x8209840f, 0x82ff20a8, 0xc6ff2833, 0xfb053433, 0x43154d0c, 0xc5690647, 0x69cc2007, 0xf32208c5, 0x2e199999, 0x4b84083c,
0x49490d20, 0x23068205, 0x990b00ff, 0x0a2e7682, 0x00ff34b3, 0x8b67660c, 0x0e00ff08, 0x216a3333, 0xcc4c2108, 0x08275485, 0x74f8af0e, 0x7c15e4f7,
0xdf301973, 0x00fff628, 0xff5ccf13, 0x29dce3ff, 0x4c1c00ff, 0xf3227e82, 0xa38285ab, 0xcc4cb123, 0x25458207, 0xff00c0c6, 0x0483cdff, 0x8240d121,
0x40c22509, 0x4f088b00, 0xce201782, 0x2c20fb83, 0xfd27c783, 0x00ff6766, 0x82482137, 0xe3472283, 0x218882d8, 0x0f82e2fa, 0x4022f183, 0x92820080,
0x32334e22, 0x9a221a82, 0x4e829082, 0x610b0033, 0xf7ffff48, 0xff959ad9, 0xb8def4ff, 0x1e0200ff, 0x226b82b8, 0x827a14c1, 0xcc9c23c7, 0x11827e05,
0x6682a020, 0xc275f322, 0x9b242682, 0xfdffffe8, 0xf2223083, 0x2582fafe, 0x90c2fc28, 0x41f0ffff, 0x158205ec, 0x82006021, 0x6f082c2a, 0xf3ffffdf,
0x00fff468, 0x827dff0c, 0xba5e2114, 0x1e286882, 0xffffa4b0, 0x05e6f0f9, 0x8622a482, 0x0683a891, 0xb91ecb25, 0x82d5ffff, 0xd4ff296e, 0xff560140,
0x0080ffff, 0xca224e82, 0x0a84b89e, 0xd4ffff29, 0x00ffec91, 0x825c0f2b, 0x5e3522ac, 0x341a82b8, 0xff15eeff, 0xae877a00, 0x1e00ff05, 0x00ff52b8,
0x05ac1c06, 0x269a8298, 0x00ff0080, 0x82f66808, 0x66a6216f, 0xb8216f83, 0x212c8298, 0x1082e8fc, 0xeebc0f22, 0x80229683, 0x91829800, 0x84995921,
0x847e2026, 0x22218222, 0x824721c1, 0x9a992115, 0xf4832182, 0xc0fdff22, 0xf727e282, 0xffff99d9, 0x826626f6, 0x84f420a6, 0x9964238f, 0x0c82079a,
0x1c82b220, 0x1c370027, 0xbfffff29, 0x276e8240, 0xff71fd48, 0x3433f1ff, 0x0221d982, 0x3b318299, 0xff707da5, 0x67e64d00, 0x4cb7ffff, 0x5f00ffcc,
0x088b6666, 0xffda8bec, 0xb85e4b00, 0x5c22bf82, 0x298248a1, 0x34b34e28, 0x1c00ff07, 0xa982e03a, 0xff295c26, 0x20c51300, 0x19210e82, 0x23208299,
0x083eca20, 0x2c200682, 0x997e5b82, 0xcccc2106, 0x2106997e, 0x4818238b, 0x30821b90, 0xb30a0022, 0x0c29f518, 0x210bea45, 0x7442f5ff, 0x22c48208,
0x4733b3f2, 0xfb6608bf, 0xf78b2308, 0xe94d15c4, 0xfc431805, 0x06bb2513, 0x5b0714f8, 0x17a34318, 0xf7e4f724, 0x43181524, 0xfc2719dd, 0x94f70744,
0x1844f806, 0x21171744, 0x43182b8b, 0xf7300ac1, 0x5b158b14, 0x0714fc06, 0x00ff06bb, 0x8b0a9719, 0x116e4418, 0x4884b420, 0x120b4418, 0xf72f0e38,
0x1534f894, 0xccecffff, 0xffd407cc, 0x862bf1ff, 0xbfffffc2, 0xf482146e, 0x9a99b228, 0xedffff08, 0x3c823333, 0xd0ff2608, 0x00ff67e6, 0xffcc4c11,
0x32b3d2ff, 0x331f00ff, 0xdcffff34, 0xff08cecc, 0x66660700, 0xb3f7ffff, 0x00ff0532, 0x2b0a8308, 0xff0080f6, 0x9a190200, 0x99f2ffff, 0xfa240482,
0xffffcecc, 0x21051142, 0x3e82ccfa, 0x0f820a82, 0xf8201983, 0xf3220483, 0x1d456666, 0x82098306, 0x2d922119, 0xfa275286, 0x00ff87d6, 0x8200800b,
0x820a8783, 0x90102457, 0x820d00ff, 0x08002666, 0x00ff4f5f, 0x231e8309, 0x7f6a0700, 0x4c217b82, 0x268182ce, 0xff713d1f, 0x82332300, 0x42112da1,
0x2d00ff8f, 0xff8bce4c, 0x99192f00, 0x1222a782, 0xc882cdcc, 0x834d0021, 0x8236203c, 0x4000269e, 0x00ffec91, 0x22d78349, 0x827ad40e, 0x33132220,
0x27208334, 0xff86ab11, 0xcd4c0e00, 0x54210482, 0x18f3827a, 0x391a7b9f, 0xfc6b068b, 0x8b7a1574, 0xb3efffff, 0x0600ff33, 0x977f34b3, 0xff977f08,
0x3e83f9ff, 0x32331122, 0x10267c82, 0xf7089a19, 0x23830614, 0x0f19e620, 0xcc2b0815, 0x087f7fce, 0xffff7f7f, 0x83ceccee, 0x82cc202d, 0x66e62c41,
0xef0e088b, 0x34f894f8, 0x181cfc15, 0x500c188b, 0x21080a9b, 0x020000ff, 0x057cfb90, 0x00ff568b, 0x6001002b, 0xf7088bc0, 0x00ff0654, 0x8b70fd34,
0xc08bb6b6, 0x0c82ab08, 0x48a14622, 0x39267882, 0x00ffb85e, 0x0a836139, 0xb89e4623, 0x82118208, 0xffff2406, 0x849899c6, 0xffff2f16, 0x8b6866b9,
0x54fb8b08, 0xf7066b15, 0x38830714, 0x00402322, 0x1c252682, 0xffff00c0, 0x210a83e3, 0x0e51dcff, 0x82068205, 0x824c2011, 0x271682a5, 0xb3dcffff,
0xbb088b34, 0xfc213882, 0x22a782b4, 0x82fc29f7, 0xd6f822dc, 0x9a9e1804, 0x0094180b, 0x0dcb5108, 0x5d74f821, 0x807417b5, 0xf8ff2206, 0x996c18cc,
0xef0e250c, 0x24f854f7, 0x2117f956, 0xa85634f7, 0x08c6720e, 0x0764fc26, 0x07db063b, 0x202ded65, 0x2633823b, 0xf70764f8, 0x18157b0c, 0x210dbe9e,
0xcf820ad7, 0xf628f726, 0x73077308, 0x3321f183, 0x830f8234, 0x0a1075a9, 0x6c827b20, 0x33f7ff24, 0x9f18ff34, 0xa3220f3d, 0x1a977306, 0x18c24019,
0xa307a322, 0x7875d982, 0x73481809, 0xcd45190a, 0x06732218, 0x246782a3, 0x0ad70800, 0x064541ff, 0x85f62821, 0x7b0829c6, 0x6b2cfb06, 0x0734fc15,
0x560ef279, 0xf7230a9f, 0x83db0724, 0x76ea8372, 0x94410805, 0x41082005, 0x5a82089b, 0xf727dd85, 0x088bf628, 0x91cb063b, 0x07527633, 0xcd203384,
0x33858982, 0x89823320, 0xbb203385, 0x57091058, 0xf7250d08, 0x44f80604, 0x0cb7678b, 0x8967ff20, 0x075b2209, 0x0f79413b, 0x0e3cf618, 0xf82c9985,
0x00ffcdcc, 0x8bcccc08, 0x4b06db08, 0x41193391, 0x342011f3, 0x86062d41, 0x24fb2133, 0x20173459, 0x219f82fb, 0xa5820734, 0x01cc2910, 0x04fc24ce,
0x1815b4f7, 0x221648a3, 0x435b06bb, 0x332705bb, 0x330700ff, 0x42ffff33, 0xcd23065e, 0x18ab088b, 0x830cb092, 0x05f2421d, 0x07bb0822, 0x185d5c19,
0x184fa418, 0xbb065b22, 0x200abb43, 0x436c82cd, 0x332305bb, 0x186b088b, 0x180c7c4c, 0x220a1893, 0x8e5b075b, 0x42cc201a, 0x6b2207dd, 0x9c480e07,
0x069b251d, 0x7b0714f8, 0x29179c48, 0x15bb64f8, 0x14fc067b, 0x50489b07, 0xbb3b2831, 0x00ff8b15, 0x180a9719, 0x202ccb4c, 0x216d836b, 0x9583d4f7,
0xbb066b2e, 0x8b64fb07, 0x0634f715, 0x34fb075b, 0xf7230d82, 0x829cfb44, 0xfbff2354, 0xa35b9a99, 0x062a5c09, 0x53065324, 0x0b828b07, 0x8200a021,
0x8760201a, 0xa0fb2504, 0x5b088b00, 0x3282de82, 0xfc201d82, 0x82065e5c, 0x66042698, 0x07c30866, 0x201a9753, 0x07925cbb, 0x82030021, 0x8204856c,
0x088b2432, 0x97c306c3, 0x06bb231a, 0x238300ff, 0x2e84ff20, 0x220a3f5c, 0x97c30753, 0x075b271a, 0x34f7ef0e, 0xd6823cf8, 0x23069958, 0x00ff33b3,
0x21059958, 0x704dcd4c, 0x4c0d2206, 0x23b182cc, 0xff34b30a, 0x18149c58, 0x2a0c47c5, 0xfbf3067b, 0x00ff0524, 0x82666674, 0xb3072273, 0x20398234,
0x21c28207, 0x0482feff, 0x08051945, 0xcc4cfd21, 0x6600ff08, 0xffff9819, 0x0534b3d9, 0xfcffff94, 0xff919999, 0x6766f7ff, 0xf6ffff8b, 0x85086666,
0x83852006, 0x82662112, 0x9a261e83, 0x99ffff08, 0x308568e6, 0x20052745, 0x824682ff, 0x66662209, 0x215a84ff, 0xa482f8ff, 0x8b242582, 0x23069a99,
0x9b208182, 0xb78b7d82, 0x510d444b, 0xff220658, 0xbc824cf5, 0xa482f220, 0x04fb0823, 0x055e5906, 0x4c21e382, 0xafc618cd, 0x19b32014, 0x250c2840,
0x24f70693, 0x34826b07, 0x8283c920, 0x05250482, 0xf8f9ffff, 0x21b48352, 0xb38429dc, 0x8528be82, 0xff088b1e, 0x0040edff, 0x830e3464, 0x1100278d,
0xcb0834b3, 0xfe7bff07, 0x82ff2016, 0x2370821f, 0xff7b540e, 0x2305044a, 0x8b85ab11, 0x927b2f82, 0x00ff2316, 0x6582c012, 0x7a080023, 0x222182e2,
0x85d72308, 0x06002c82, 0x0885ae07, 0x993600ff, 0x83ffff9a, 0x83ab20a4, 0x8e8320b6, 0x099f5aeb, 0xfb3b0724, 0x2247156c, 0x05324705, 0xccf8ff22,
0x200cde46, 0xabb41934, 0x1a761810, 0x44cd201d, 0x072206aa, 0x56823333, 0x8b33332e, 0x0e064b08, 0xf4f744f8, 0xab065b15, 0x2505e54a, 0xf1ffff84,
0xe58286ab, 0xff7c5429, 0x7a54eeff, 0x18fb088b, 0x820d32fd, 0x8b84211e, 0x7c231a83, 0x82f4fb08, 0xdcff3333, 0x00ff66a6, 0xff67a61c, 0x9a59e3ff,
0x592300ff, 0x217e8b9a, 0x83098305, 0x211e8419, 0x1a848b66, 0x2028fd82, 0xff077c14, 0xf6a85000, 0xf0221082, 0x218205a4, 0xff0ad72b, 0x46e10c00,
0x801200ff, 0x210e8200, 0x2b829a99, 0x00801f24, 0x5e82ee08, 0x332c0024, 0xc34dff34, 0xa4fb240f, 0x8215a4fb, 0x19f72284, 0x21d1829a, 0x048666e6,
0x8b210e82, 0x20d88208, 0x21408219, 0x1682f8ff, 0x83070021, 0x0800230a, 0x918266e6, 0x09824c83, 0x1483ff20, 0x0e820486, 0x1f833082, 0x2b827182,
0x57854784, 0x74fb0825, 0xe98bcb07, 0x00202164, 0xe0207c82, 0xf7220487, 0xc9840020, 0x16850682, 0xf722c9be, 0xca83e834, 0x82c0f921, 0x40fc2160,
0xfa200482, 0xfd270488, 0xff084861, 0x8280c9ff, 0xb8e72814, 0x00ff0552, 0x4666e699, 0xe62105ab, 0x11154166, 0x18072821, 0x226edb7b, 0x83dcfb5b,
0x83f220b9, 0x18f520b9, 0x2524bcbb, 0x14fb07db, 0xb8553b06, 0xf5ff2207, 0x0ce87a4c, 0x21165744, 0x308264f7, 0x330d0023, 0x53bc1834, 0x090e5e14,
0x2308957c, 0x14f7073b, 0x19054a4c, 0x21211b1c, 0x59770040, 0xfb082205, 0x073e4164, 0x0b6eb019, 0x200b2472, 0x172472d4, 0x1c064118, 0x16503019,
0x06d4f72c, 0xe4fb34fb, 0x0d00ff15, 0x2382cd4c, 0x34450a20, 0x06ac5606, 0xcb07cb22, 0x560c9745, 0x21840ac7, 0x82063741, 0xff332716, 0x34b3f2ff,
0xd218088b, 0x98450d15, 0x05504105, 0x57410820, 0x0a25510b, 0xd2184b20, 0x2f274c15, 0x404d00ff, 0x8254f700, 0x668924d1, 0x8200ff66, 0x37ad5b04,
0x34fb3422, 0x201be95c, 0x211f84f7, 0xa1560600, 0xff342305, 0x1d190800, 0x332011a8, 0x5b0d0e67, 0x762224ad, 0xb68248a1, 0x82006021, 0x0cc023b6,
0xc8e98bcc, 0xff682625, 0x84b3f9ff, 0x5c3220c8, 0x34220876, 0xd983088b, 0xc8843420, 0x1e191420, 0x765c0f71, 0xae76211c, 0x89202f82, 0x0e2ec882,
0xf600ff2f, 0x00ff9a99, 0x159a99d6, 0xc81834fb, 0x245d0cf4, 0x1cca5d10, 0x33738928, 0xa676ffff, 0x05820566, 0xff235082, 0x419a9976, 0xff241ba2,
0xe13a0600, 0x23059a71, 0x152e0800, 0x2114ac68, 0xd488a430, 0x8c5e7120, 0x23a18406, 0xe27a0c00, 0x8621de82, 0x978d1866, 0x068c5e09, 0x8b54f722,
0x3220c5bf, 0x3321c5ae, 0x42c58734, 0x9a411163, 0x9ef72016, 0xfb0e32c5, 0x3600ff30, 0x00ff48a1, 0x156666c9, 0x5e8900ff, 0x220482b8, 0x8205ce4c,
0x66662105, 0x99219f82, 0x420a8299, 0xcc2105dd, 0x2bcc5fcd, 0x411a1442, 0xfb201ffc, 0x181e7343, 0x2909668c, 0x421400ff, 0x0000ff90, 0x6e896606,
0x00ff082b, 0xff52f89f, 0x34330d00, 0x1b865f15, 0x402164ab, 0x36871800, 0x00802108, 0x54446082, 0x9a592105, 0x83092641, 0x0626410a, 0x2641cc20,
0xffff2446, 0x82e2fa5f, 0x9af921cc, 0x2105e26a, 0xe58266a9, 0x15210482, 0x346e44ff, 0x0e11ca18, 0x61122160, 0x8d430768, 0xa1762812, 0x76ffff48,
0x82053393, 0x230a8205, 0x856b8900, 0x3661fe18, 0xa000ff2c, 0xffff1e05, 0x05ae0760, 0xa54134f7, 0x43762007, 0xf84409c6, 0x66662105, 0x8f455eb6,
0x52382107, 0x45192b43, 0x2041168f, 0xaec7222c, 0x206082ff, 0x09a7449a, 0xfb0e0826, 0x8b54f7b0, 0x1ceead18, 0x180df444, 0x8e10506a, 0x00ff2180,
0x18a4ca18, 0x62063462, 0x08250844, 0x9e76ffff, 0x210482b8, 0x924200a0, 0x800c220d, 0x92a28400, 0x18f92030, 0x2218eead, 0x95cbb0fb, 0x458f20c7,
0x6b18051a, 0x89221c13, 0xb846866b, 0x76ff2306, 0x0a827b94, 0x900cca41, 0xe2ae18f3, 0x06ca411a, 0x2644c298, 0xbff92206, 0x05b146ff, 0xcff7ff23,
0x05dc455c, 0x8b270983, 0x30fb0e08, 0x18ebf4f7, 0x221d47b0, 0x82b89e76, 0x335321a2, 0x20094a46, 0x0a4a4699, 0x200b0843, 0x19878200, 0x411b7537,
0xcd9f1fbc, 0x1b47b018, 0x5421c882, 0x3b5942cb, 0x451a6541, 0xff2305f3, 0x42349376, 0x2c490639, 0x2b85420e, 0x42079141, 0xef391859, 0xf4f714f7,
0x0614f815, 0xcb0794fb, 0x07a4f706, 0x1a00ff8b, 0xffff4861, 0x2d0482ea, 0xb89e1500, 0x9ee5ffff, 0xfc088bb8, 0x09850634, 0x47201983, 0x8b201e84,
0x08221084, 0x3883a4fb, 0xf807942b, 0xe0feff84, 0xfc1566e6, 0x222982f4, 0x820040f7, 0x83f8201e, 0x82048276, 0x2110820a, 0x5c827b08, 0x82dcff21,
0x58002013, 0xff220791, 0x28822300, 0x94f80823, 0x20098506, 0x831984ff, 0x82868204, 0x9b08211a, 0x002d3282, 0xff66e607, 0xccccf8ff, 0x190800ff,
0x0601579a, 0xf82f0e25, 0x1854f814, 0x211aa788, 0xe14e14fc, 0x4e3f820a, 0x88180ae1, 0xf82018a7, 0x00223383, 0x64825923, 0x184ce321, 0x270ca788,
0x64fc34fb, 0xeeffff15, 0xf125d684, 0x00ff00c0, 0x240a830e, 0x00c01100, 0x82aa8208, 0x86118406, 0x220e8204, 0x83ff088b, 0x821b821c, 0xffff2128,
0x8b203282, 0x2d823e84, 0x11824583, 0x84cdcc21, 0x21158216, 0x1a433333, 0x83d42005, 0x069422d0, 0x155676ff, 0x6b34fc21, 0x33821850, 0x62180020,
0x5118072f, 0xf8200cc3, 0x1a833383, 0xbe76ff20, 0x14fb210f, 0x2f29d0df, 0x1574f7eb, 0xb8f4ffff, 0x2bf98252, 0xff7b54f5, 0x33b3fdff, 0xf3f5ffff,
0xfc280482, 0xff086766, 0x66e60500, 0x0026d282, 0xffcc4c23, 0x1b821c00, 0x34210482, 0x210e82ff, 0x1c828bcd, 0x19ab1121, 0x23099406, 0xff8b7c54,
0x0bc50119, 0x0fe49818, 0xb9ffff23, 0x222d826b, 0x8294c6ff, 0x99c62265, 0x2470829a, 0x086666b9, 0x185d822b, 0x2414e198, 0x053500ff, 0x2752821f,
0xffe1fa2a, 0xe2fa2a00, 0x35230a82, 0x85081e05, 0x84602006, 0x8b562512, 0x8b94f708, 0x7a20bf8a, 0xb121bf82, 0x25bf83ec, 0xfcffff34, 0xa2820e6d,
0x06e10522, 0xba82bf8a, 0x84b31c21, 0x85cc20bf, 0x828620bf, 0x540e244f, 0x1900ff7a, 0x51108502, 0xbf830fa7, 0xb4828420, 0x7c94c623, 0x82c482ff,
0x20d082ed, 0x25bf8c84, 0xd5ffffe2, 0xb8831e05, 0x5d831e20, 0xbf84ae82, 0xbf9ae220, 0xeb2f0e24, 0xc182f4f7, 0x18faca21, 0x2109fe99, 0x668266e6,
0x9a19ca22, 0xff20eb82, 0x3d830682, 0x5982e120, 0x4166e621, 0xd4820512, 0xae470b22, 0x0a375982, 0x00ff85ab, 0xff144e02, 0xcd0c0a00, 0x920300ff,
0xffff08f2, 0x4efa1efa, 0xcd200ae3, 0x2206415c, 0x8233b3dc, 0x0a7d5391, 0x0ff29818, 0x00ff7a22, 0x0ee32b19, 0x4600ff24, 0x65827b94, 0x07af4819,
0x46240a82, 0xeb087c94, 0x00205d82, 0x0bf60c19, 0x2bf4f723, 0x221b8215, 0x86200535, 0xfa2a27fd, 0xcaffffe0, 0x7083e2fa, 0x16850683, 0x05d5ff23,
0x21d68320, 0xd684e0fa, 0x8306d441, 0x411f201b, 0xd6870830, 0xd6888620, 0xd695cc20, 0xd688cc20, 0xd6853420, 0x29549618, 0x7c20d683, 0x8425d684,
0x6b3900ff, 0x24d68884, 0xf8c4f70e, 0x23c98224, 0x707de5ff, 0x23058943, 0x9082eaff, 0x20056073, 0x0d677308, 0xe8187d20, 0x4318077b, 0x1b74088d,
0xa256180d, 0x0b737a0b, 0x1834fc21, 0x7409254e, 0x5f8d0d1b, 0x0f694318, 0x18150021, 0x1808dbb2, 0x5b109743, 0xfb220aad, 0xb318f7c4, 0xe75b0a09,
0x7850180d, 0x2460830d, 0x0080e5ff, 0x78501808, 0x8b94212e, 0xff32c0dc, 0xe2fa4afe, 0xff1549fb, 0x0040edff, 0xb31200ff, 0xe4728b34, 0x12002205,
0x220f83c0, 0x8208cccc, 0x260a8415, 0x00ff34b3, 0x82b85e1e, 0xcc12221f, 0x202f82cd, 0x821a844c, 0xedff2215, 0x18358233, 0x20076d46, 0x821a86cc,
0x82332015, 0x3433260a, 0xa1e1ffff, 0x85f58248, 0x2b508260, 0x00ff078b, 0xff85eb43, 0x9a192601, 0x33207883, 0x4c202783, 0x278b3782, 0x0834b322,
0x42213d82, 0x217d828f, 0x7382cccc, 0x0a827982, 0x8471bd21, 0x8393888d, 0x21938b98, 0x1a830040, 0x40219384, 0x82738200, 0x848e8451, 0x201a8288,
0x238e83e2, 0x15cccc1d, 0xef845684, 0x6082ee84, 0xd488fa82, 0x8c82cc20, 0x3583d48b, 0xef83ed20, 0x0582ff20, 0xd4824b84, 0x829a9921, 0x84258260,
0x82ac834a, 0x0c4041c2, 0x00218682, 0x18ef8412, 0x27087b66, 0xff9a9972, 0x66668dff, 0x0e820486, 0x39828b20, 0x11850683, 0x0a840020, 0x21820020,
0x92820820, 0xff200682, 0x04861183, 0x10aae018, 0x83824983, 0x08253382, 0x54f78b0e, 0x8532ad15, 0x238ea739, 0x19a400ff, 0xba2bbb82, 0xff150080,
0x3333faff, 0x820600ff, 0xf5ff2ddf, 0x00ff66e6, 0xff32b300, 0xcd4cf9ff, 0x34201883, 0x0a86cf82, 0xff201482, 0xf5271483, 0x00ff68e6, 0x83cccc05,
0x08cc2a23, 0x331600ff, 0xe6ffff34, 0x20388266, 0x20148326, 0x265782e4, 0x34333600, 0x82c3088b, 0x822620c0, 0x1b00214b, 0x16255583, 0x00ffce4c,
0x050e7919, 0x6f852782, 0x1483ff20, 0x98190a22, 0x55834b84, 0x6f84ce20, 0x6086cc20, 0xff206a83, 0xa2822383, 0xcc269384, 0xffff7908, 0x7b824ceb,
0x0080e125, 0x83eaffff, 0x6cd3207a, 0xd52605ac, 0xff8b0080, 0x8783e1ff, 0x5f821520, 0x83eeff21, 0xb3142887, 0x068b0834, 0x820c00ff, 0x95002132,
0xee22ec84, 0x2782cd4c, 0x33b3f122, 0x107abf18, 0x00ffcd23, 0x83e0830e, 0x1100241b, 0x828b33b3, 0x991122dc, 0x20c5829a, 0x8255830e, 0x820a821b,
0x84082017, 0x82342006, 0x9a99213f, 0x8d823283, 0x6666ee2a, 0x34f7088b, 0x00ff154b, 0xff2431ab, 0xce4ceeff, 0x32208d84, 0xce208d95, 0x33201683,
0xb3225482, 0x14428b32, 0x839f2063, 0x4c7b22ff, 0x21c782cc, 0x7782330c, 0xce4c2725, 0x832600ff, 0x831d20fd, 0x192e2604, 0xff088b9a, 0x85068300,
0xe2ff2d16, 0x00ff9a99, 0xff34330c, 0x32b3d8ff, 0x022b1a82, 0xffff9899, 0x940080f7, 0x83fbffff, 0x6608273b, 0x0200ff68, 0x1a829a99, 0x00800822,
0x98250a83, 0xb30400ff, 0x201f8232, 0x825183fd, 0xff08231f, 0x1a83efff, 0x32333529, 0xffffb258, 0x823433c4, 0xc4ff2a63, 0xff8bcd4c, 0x66e6ccff,
0x231e8564, 0xcecccaff, 0x34832982, 0x82f7ff21, 0x23448264, 0x00ff8234, 0xff235483, 0x836866fd, 0x824f825f, 0x9466210a, 0x75846084, 0x082d1f84,
0x00ff068b, 0xff991911, 0x34b3d400, 0xb1b21815, 0x0a9c6b0b, 0xee206b82, 0x0210fb82, 0x23000100, 0x9b6666b0, 0x4332c442, 0xf7232952, 0x4215cb34,
0x52432df6, 0x994f242f, 0x1834fb9a, 0x212eb092, 0xb76454f7, 0x16e06517, 0x0654fb37, 0x54f8ef0e, 0xfb1514f8, 0xffff0694, 0x8bc2f595, 0x0aaaffff,
0x2104823d, 0x0a8266e6, 0x7c4a9520, 0x24068205, 0xf55500ff, 0x2c1684c3, 0x0a6a00ff, 0xf7088b3e, 0x8bf50694, 0x821683e1, 0x20128333, 0x82638208,
0x84352019, 0x8b212e12, 0x37ffff08, 0x6cfb9a19, 0x6b066b15, 0xac351907, 0x52382b08, 0x33f5ffff, 0xf2ffff34, 0x2283cdcc, 0x11820683, 0xff142e26,
0xcccc0a00, 0x0d304182, 0xab083433, 0xe0ffff07, 0x00ff66e6, 0x0566e600, 0xff272a85, 0xcc4cf4ff, 0x830900ff, 0x83002095, 0x202a8423, 0x21358233,
0x04829ad9, 0xff5ccf22, 0x33201582, 0x00225182, 0x5d82f31f, 0x71fdff24, 0x695aab05, 0xecd12109, 0x23885e84, 0x33330d22, 0x0a223f82, 0x8c84aec7,
0x08249c85, 0x06ab076b, 0x34202183, 0xd1211a83, 0x821a83ea, 0x82a88325, 0xfaff22ca, 0x258883e2, 0xf6ffffcc, 0x35849a19, 0xf1ffff22, 0x08298c82,
0x154b4cf7, 0xe1e9ffff, 0x27458248, 0xff1e05ef, 0xb8de1100, 0x15234082, 0x8508e23a, 0x23118406, 0xc51200ff, 0x15821b82, 0x0683a283, 0xff221685,
0x2d821eee, 0x2d823e83, 0xff220683, 0xf882efff, 0x4982ff20, 0x088b7424, 0x5ab0ebcb, 0xba1e1622, 0x10237682, 0x94ffe0fa, 0x8264205a, 0x2da4825f,
0x0200e9ff, 0xaf0e088b, 0x158b94f8, 0xb91954fc, 0x9c180cc3, 0xf7200a26, 0x1b154d18, 0x2300ff24, 0x6a829859, 0x68a61c23, 0x0b585bff, 0x197d4d18,
0xa0f71425, 0x8207b315, 0x99063432, 0xfaffff9a, 0x00ff9999, 0xff666605, 0x6666f9ff, 0x8263088b, 0x61f92384, 0x18828b47, 0x82b89e21, 0x9a992104,
0x19820a82, 0x82630821, 0x82228331, 0x4861212c, 0xff281884, 0xb99e0600, 0x06b3088b, 0x26830882, 0x67204582, 0x5a854a84, 0x8beb0822, 0x9a20668c,
0x6f826690, 0x84824885, 0x93836692, 0xa282fa20, 0xa7820020, 0x6620668d, 0x01660010, 0x14fc2240, 0x0c9c412b, 0x02030210, 0xb4f7215b, 0x221a0844,
0x44067cfb, 0x09440579, 0x82f72029, 0x06002132, 0x44067144, 0x0e2c730a, 0xfd01ffaf, 0x01ff0080, 0x1502fabf, 0xda22bd82, 0x05828be2, 0xff709d26,
0xf0a7feff, 0x21080982, 0xffffd6e3, 0x08f41dfd, 0xe3d3ffff, 0xebffffd8, 0xffffd623, 0xffcc4cdf, 0x86ebf8ff, 0xb5e4ffff, 0x1a828bc2, 0x2a1cc622,
0xde313582, 0x00ff285c, 0xff2adc1f, 0x7b54bdff, 0x020000ff, 0x221a828e, 0x82a570de, 0x0600360a, 0x4cd6ffff, 0xf7ffffcd, 0xffff0eff, 0xff33b3c6,
0xaaf1e7ff, 0x28198208, 0x8b074861, 0xc01100ff, 0x050a5500, 0x400e0022, 0xee220982, 0x56830040, 0x55096b55, 0xff270a3d, 0xc2f5ffff, 0x560564fc,
0xff220551, 0x30830700, 0x3f82f820, 0x7d080021, 0x20240544, 0xff063e0a, 0x1c850c84, 0x2b0a686d, 0xff0704f7, 0x71bd3300, 0xdc1700ff, 0x2822ab82,
0x228251f8, 0xffc4f526, 0x0b972300, 0x00237082, 0x820b1747, 0x82312a8c, 0xe0ffff8e, 0x00ff5238, 0x05d34b47, 0x5ccf1e22, 0x22201682, 0x05273283,
0x00ff10f8, 0x82146e2a, 0xfa1e21b2, 0x0c26bf82, 0x00ff3433, 0x2b82f804, 0x82b30721, 0x800b2209, 0x28298200, 0x08cc4c0c, 0x5c2d01ff, 0x2fda832a,
0xffe0ba12, 0xccccefff, 0xfc0b00ff, 0xedffff92, 0x2105914d, 0xe68280e2, 0x32397223, 0x21698215, 0xfb829002, 0xffc2f53b, 0x142ee6ff, 0x73f9ffff,
0xe9ffff32, 0xffff5ccf, 0x089a19fe, 0xcaafffff, 0x3bb4823e, 0xffa47019, 0x1d7a0100, 0x261a00ff, 0x0500ff66, 0x00ffdb79, 0xfff6681c, 0x12630a00,
0xae232482, 0x82079042, 0x862b3535, 0x8ff8ffff, 0xeaffff1a, 0xffff66e6, 0xff6c5cfc, 0x66e6ebff, 0xff2ed982, 0x8b928dfa, 0xbcfaffff, 0x0000ffac,
0x0982026d, 0x8270bd21, 0xfc762109, 0x4a22c282, 0x3b82e296, 0x6290fb2b, 0xbeffffff, 0xfbffff01, 0x211f828b, 0x04829bff, 0x5e9afb22, 0x96823b83,
0xea213b82, 0x21e48278, 0x6c828c04, 0xd8a3ec22, 0x88218182, 0x220a8273, 0x820a17bd, 0x30e8213b, 0x06219c82, 0x20bc820e, 0x261a84e5, 0xffffe25a,
0x82842be2, 0xec9121b0, 0x4b226082, 0x2482fce6, 0x3333fc22, 0x66216082, 0x21978267, 0x7b82cd4c, 0x87666622, 0xec265c83, 0xff8bcd4c, 0x1282e8ff,
0x20050c6a, 0x22b983e6, 0x829999f8, 0xe6ba225c, 0x20378266, 0x223783eb, 0x82ceccfa, 0x82b320d4, 0x99f92241, 0x2609829a, 0xffff9919, 0x826666f7,
0xb33f335c, 0x00ff0733, 0xff1fc518, 0xd7630a00, 0x0e00ff05, 0x9d82ae07, 0xff5ccf25, 0x82cc0c00, 0x82042067, 0x0c00282f, 0x00ff6666, 0x82cccc04,
0xb351222f, 0x20548234, 0x206583ec, 0x840483fa, 0x4cf9255e, 0xe7ffffcc, 0xf5220e83, 0x248268e6, 0x00803f22, 0xd6205489, 0xe3205488, 0x5485f782,
0x82cc8c21, 0x2254835e, 0x8234f303, 0x97bd22a9, 0x2a2f820a, 0xffd7631a, 0xf8f30600, 0x821600ff, 0x030028a9, 0x00ff8c37, 0x82d86313, 0x72fd21f5,
0x04285482, 0xff8b6f12, 0x9f9a0300, 0x8e211082, 0x21098202, 0x098211d8, 0x82fcc621, 0xe844221a, 0x213f8272, 0xd5829912, 0x146efe26, 0xcc0f00ff,
0xfb258f82, 0x00ffce0c, 0x22f88312, 0x4e50b8f9, 0xff280623, 0x943433fd, 0x2efdffff, 0x09202482, 0xfd22b483, 0x7f837c54, 0x8214ee21, 0xca142c3f,
0xf9ffff3e, 0x00fff628, 0x82f6a814, 0x46e12709, 0x421900ff, 0x3b828b8e, 0xfe340422, 0x042c7b82, 0x00fff292, 0xff047a00, 0x4e820400, 0x62210982,
0x221a8200, 0x4226c044, 0x1e20095f, 0x20085f42, 0x0c5f42da, 0x6866c030, 0xff84fb07, 0x66e60700, 0xafffff15, 0x3282c2f5, 0x289c1224, 0xae85ffff,
0xff90c226, 0x090cfbff, 0xdc21ae82, 0x2178822a, 0x578216b9, 0x52780822, 0x2321a882, 0x23ae83d7, 0x00ff3433, 0x4c21ae85, 0x281a82cc, 0x0766e652,
0x19e8ffff, 0x2650839a, 0xe7ffff68, 0x4eff0080, 0xe02a05ad, 0x00ff6666, 0x0866e601, 0x3182af0e, 0xff3b5f26, 0xb85e6901, 0xf3237182, 0x7fff0681,
0x42210742, 0x210a8290, 0x0f84fa7e, 0x0c224c82, 0x0a827d7f, 0x82707d21, 0x8f4221f5, 0x23061160, 0x9082f3ff, 0xbf211a82, 0x238282f8, 0x0552f83f,
0x18099c60, 0x2610fc85, 0x0740ffff, 0x5c54fbae, 0xbd210d60, 0x22278271, 0x848380f3, 0xff082237, 0x837e8bff, 0x890c20cb, 0x53a9277e, 0xa900fff8,
0x40826666, 0x82ac5621, 0x5ea92d73, 0x02ff05b8, 0xffc4a016, 0x48a1b6fe, 0x0e2e6118, 0x1fcc5918, 0x1d496518, 0x6018b320, 0xb4351262, 0xffef0e06,
0xcccc9e01, 0x359701ff, 0x14fb15c2, 0xfd3ffeff, 0x2b8c8272, 0x7a9a19fb, 0x4ceeffff, 0xf6ffffce, 0xff23b282, 0x43ffffee, 0x7a200502, 0xe6210682,
0x51158366, 0x0e82053b, 0x9ccdcc22, 0x8025b982, 0x01ff0100, 0x213c83bf, 0x20820400, 0xfe100034, 0x1100ff76, 0x00ff32b3, 0x9c0ad709, 0x24fbffff,
0x068308de, 0x821e2521, 0x82cc2011, 0x49ee2157, 0xfb2d6182, 0xffff3233, 0x088e02ef, 0x00ff068b, 0x28878267, 0xd863afff, 0xfb04f715, 0x1b754104,
0x086f4118, 0xb75e0220, 0xebff2405, 0x5e8bcccc, 0xd35d09c2, 0x22bf820e, 0x63800c00, 0xff2206e3, 0xd4825900, 0x66590023, 0x20e58266, 0x859e83a6,
0x0728610a, 0x00ff8b23, 0x87308e14, 0x8219843b, 0x7f0c221f, 0x266b84fe, 0xff078b08, 0x8200a0fe, 0xccd22883, 0xffff15cc, 0x8266a6a6, 0x9a992104,
0x5922b982, 0x0a879a59, 0x1a0beb5e, 0x830ead14, 0x05ef5f73, 0x8f25bf90, 0x04f7d5f8, 0x1c3a4205, 0x2b077022, 0x0c5b4318, 0xea829e88, 0x08205583,
0x321ab642, 0xaf0e078b, 0x4c8800ff, 0xdd00ffcd, 0xff15cdcc, 0x82ffaf00, 0xe6682200, 0x31bb8267, 0xff48610f, 0x34b3f2ff, 0x4f1800ff, 0x0a00ff5c,
0xf38246c1, 0x7cb41422, 0x54264f82, 0xff073c0a, 0x60846c00, 0xff866b25, 0x82992a00, 0xcad125e6, 0xd9ffff3c, 0x84321383, 0xff08d8e3, 0x10f8faff,
0xe8efffff, 0x1300fff6, 0xc182e670, 0xffae872b, 0x66a60d00, 0xf00900ff, 0x264382a4, 0xff02c02b, 0x82cf1f00, 0x97272159, 0x3c220e82, 0x5e8248e1,
0xf6683d23, 0x31068208, 0xffce4c83, 0xd823a1ff, 0xe62900ff, 0x7effff64, 0x7f8228dc, 0x08ce4c24, 0x1c8207dd, 0x84ab1427, 0xb8e7ffff, 0x26128252,
0xffff3eca, 0x840a97f0, 0x3c7182a6, 0xff010050, 0xc2f567ff, 0xf4ffff05, 0xffff66e6, 0x8b0080f6, 0xcceeffff, 0x0b00ffcc, 0x22a18219, 0x826766f6,
0x02802825, 0xf7158b8f, 0xa0ffff44, 0xd40f38e6, 0xffff077a, 0xff7b5462, 0x5c4f8700, 0x9d00ff05, 0x00ff33b3, 0x82343388, 0xc70f220a, 0x208c9bae,
0x205f84fb, 0x22898364, 0x18ffd7e3, 0x230a8eeb, 0x7b140b00, 0x89829982, 0xff2f0e2d, 0x9a991d01, 0xe60300ff, 0x55ff1566, 0xf127057e, 0x837ccecc,
0x82f1ffff, 0x020026c8, 0x7c0866e6, 0x26ca828e, 0x00ffcd4c, 0x829a190d, 0x4c0f29fa, 0x44f708cc, 0x0644fb07, 0x9c212382, 0x2edc8229, 0xff0ad7f2,
0xcdcc0a00, 0x0cfdffff, 0x85089acd, 0x00ff2406, 0x827b1408, 0x260e3258, 0x0500ff67, 0xff08cdcc, 0x1e056001, 0x059000ff, 0x27b9821e, 0xff66e60b,
0x48e10400, 0xb3215482, 0x26308234, 0x00ff703d, 0x829a1909, 0xd8e32294, 0x830a8708, 0xcc02261e, 0xf2ffffcc, 0x2004824c, 0x281e83fb, 0x08ec11f4,
0xfeff24fb, 0x264582a0, 0xcb54f80e, 0x1806ab15, 0x8216c3f3, 0x18ee2097, 0x51125a6b, 0x1a93066c, 0x82ffff21, 0x20368215, 0x059c44f1, 0xef18cc20,
0x2d270e30, 0xffffcd4c, 0x82cc4c2d, 0xb3b227bd, 0x074b0633, 0x185074fb, 0xd06f180e, 0x94f72308, 0xdb6f6b07, 0x05fb5d17, 0x2305445c, 0x7c540e00,
0xab24be82, 0xab088b85, 0x1807f76e, 0x821183b5, 0x33b32121, 0xb4563682, 0x18951805, 0xcdfe2709, 0xff07cc4c, 0xae83d200, 0x05270482, 0x4c4dffff,
0x82cb06cc, 0xb3f22812, 0x00ff0634, 0x8232b336, 0xc4a02104, 0x2108996a, 0x9643fa7e, 0x0681240d, 0x4400ff08, 0x84200640, 0xeb26f882, 0xffff70bd,
0xc74480f3, 0xff082205, 0x05c370ff, 0x057c5425, 0x82edfeff, 0x2f0e266a, 0x04f834f7, 0x2a288215, 0xff3433df, 0xcd4cecff, 0x82e4ffff, 0xe3ff2863,
0xffff33b3, 0x82ceccf2, 0x33a82232, 0x397f8232, 0xffcdcc12, 0x67e60a00, 0xe61500ff, 0x0600ff66, 0x00ff3333, 0x8bcd4c17, 0x6d18eb08, 0x00210c76,
0x22d7841c, 0x82cd4c23, 0xb3062487, 0x82ff0734, 0xff34254a, 0x32330d00, 0xcc255e83, 0x4c1b00ff, 0x23f882ce, 0x08cccc20, 0x2c260682, 0x00ff142e,
0x1682cc23, 0xecd12328, 0x332c00ff, 0x37828b34, 0x16850683, 0x0ded7a18, 0xcc20a386, 0x3420a388, 0xf920a387, 0x18056a7f, 0x250eb442, 0x8bcc4cb9,
0x71182b08, 0xff210ca2, 0x231382e3, 0xb3dcffff, 0x20051d59, 0x20d982cc, 0x21f4831c, 0xa482b3f3, 0xf4831320, 0xcccce322, 0x82050e41, 0xd3ff219f,
0xff219a82, 0x82eb82dc, 0x216c8204, 0xf082ccd3, 0xe519ff20, 0xd485157e, 0x1300ff28, 0x00ff00c0, 0x4e82331c, 0x82401c21, 0x4c0c2209, 0x23d182cc,
0x076866cd, 0x294bd619, 0x00ffec25, 0x41152e2c, 0x33200509, 0x23225782, 0xb282cdcc, 0x82142e21, 0xd1d32897, 0x078b08ec, 0x1815733b, 0x230b84de,
0x00c00a00, 0x0d222682, 0xb3820040, 0x06820020, 0x0b0f7718, 0x1b82f220, 0xffff0822, 0x16850683, 0x8311da73, 0x831b853f, 0x088b243c, 0x19bbb4f7,
0x831ba7a0, 0xb30a21e0, 0x18052374, 0x9114b244, 0xcc4c228d, 0x286485ff, 0x8b34b3f2, 0xfcb4fb08, 0x18c08e24, 0x830f9d41, 0x833282a4, 0x73c09265,
0x5b850fe3, 0x6583f520, 0x8b2dfd82, 0xffef0e08, 0x33b3b900, 0xb34701ff, 0x2b688234, 0xffcdcc38, 0xe07a2c00, 0x335200ff, 0xfc2fb682, 0x00ff0a17,
0xff666633, 0x48a1ccff, 0x825fb708, 0xcccc3567, 0x80bfffff, 0xe7ffff00, 0xffffcecc, 0x089a19ca, 0xe61f00ff, 0xe7262182, 0xff059a19, 0x0a825f00,
0x7a180483, 0x042b2873, 0xff6bae87, 0x3433e8ff, 0x18ffff08, 0x260ac07b, 0xff9a99f1, 0x18b3f5ff, 0x2344737a, 0x4e00ff88, 0xf925b683, 0xffbd647b,
0x737a18ff, 0x83a52020, 0x820482dd, 0x838d20c2, 0x8491200a, 0x660a25d8, 0xf7ffff68, 0x0026f382, 0xff64e601, 0xe782f0ff, 0xd0200e82, 0x9921a482,
0x20ba829a, 0x226083f7, 0x839899f5, 0x221e8219, 0x839c19fe, 0xff9c3119, 0x32330800, 0xaffdff08, 0x01fff8fe, 0x058e02d0, 0x91211582, 0x21158268,
0xee82162e, 0xffc72b26, 0x7a140f00, 0x2d270e82, 0x0a00ff50, 0x83081a6f, 0x8291200a, 0x986e210a, 0x7b251983, 0xd40100ff, 0x210e823a, 0x7b82a470,
0x82b0d221, 0xe392271e, 0x8cffffd7, 0x9c82e0cf, 0x67663432, 0x33d7ffff, 0x00ff1532, 0xffcc4c73, 0x6766a5ff, 0x05201582, 0x00269882, 0xff33331a,
0xb182f8ff, 0x4c1c0029, 0x00ff77cd, 0x82ffff13, 0x83e620a3, 0x1919251a, 0xdaffff9a, 0x002fd782, 0x6c9a1905, 0xe6f1ffff, 0x078b0866, 0x821800ff,
0x25ff271c, 0xff159a19, 0x2282e2ff, 0x831d0021, 0x99f12a0f, 0x2800ff99, 0x00ffce4c, 0x23518202, 0xcccc2700, 0xb9278282, 0xffff34b3, 0x829a996d,
0x83ce20cb, 0x66f12af5, 0xc8ffff66, 0x00ff0080, 0x2138820c, 0x0482d9ff, 0x85260021, 0x22268355, 0x83c000ff, 0x32002255, 0x22788299, 0x829919d8,
0x4cc22436, 0x82ffffcd, 0x180a8204, 0x3fb3227e, 0xffd76338, 0x67663800, 0xf0fb0e05, 0x158b34f7, 0x74f7066b, 0x00ff8b07, 0xffa4b011, 0x85abf1ff,
0x083ea218, 0x088b7b24, 0xe4828b4b, 0x9e18ee20, 0x54261c5e, 0xf2ffff7b, 0x0a470a97, 0x54fb2108, 0x180e3f47, 0x2111815b, 0x34830e00, 0xaa18f120,
0xf72208db, 0x3e850614, 0x18075947, 0x2a12714c, 0x0d00ff33, 0xfffff668, 0x82cd4cee, 0xd4f72296, 0x0beb6115, 0x7d150022, 0x660eac62, 0x7a210664,
0x12da62e0, 0x820bac62, 0x727d211e, 0x07015e18, 0x851e8521, 0x08240854, 0xf774f80e, 0x14f715b4, 0x00ff8b07, 0xff0a170b, 0x0040faff, 0x470a00ff,
0xf6ffffae, 0x00ff7a94, 0x089ad905, 0x91210a82, 0x2b0a82ec, 0xfffff8d3, 0xff3433f4, 0x00800000, 0x19381382, 0xfbffff9a, 0x6b08de0f, 0xffff057b,
0xffa430f0, 0x1218f8ff, 0x97f9ffff, 0xec274582, 0x00ff36c9, 0x82f6e807, 0x162e2718, 0x0400ff08, 0x3b82c2b5, 0xffaec726, 0x32330c00, 0x8a212382,
0x256e823c, 0x088b34b3, 0x3677073b, 0x05467705, 0x20144041, 0x411b827a, 0x86200540, 0x0fa6ba18, 0x0ac15c18, 0x2608d641, 0x00ff34b3, 0x82ec510e,
0xcc4c2756, 0x34fb088b, 0xa31815ab, 0x6b202df3, 0x0021df82, 0x23d2829e, 0x8b5c8ff5, 0x3520e682, 0xfa37b982, 0xffff24e6, 0xff9002fa, 0xe670f7ff,
0xaaffff08, 0xffff5238, 0x82257585, 0x230a8325, 0xaf877a00, 0xfa270a82, 0x00ff8f02, 0x855c8f08, 0x05002534, 0xffff9819, 0x08214483, 0x0f5b426b,
0x8214ae21, 0x51ee2359, 0x068508ec, 0x23050c42, 0x14aef1ff, 0x29051c42, 0x0f00ff08, 0xff060a57, 0x4c835900, 0x90028022, 0xa6245c82, 0x14fb6666,
0xf0220782, 0xb34933b3, 0x1432410c, 0x860da842, 0x0a002ed0, 0xff8ba470, 0x3dca0900, 0x160500ff, 0x21048204, 0xaf8271fd, 0x82629021, 0xc7552a6e,
0x7900ffae, 0xff05caa5, 0x230a8300, 0x008085ff, 0x06220a82, 0xf1821e05, 0x82666621, 0xcecc2534, 0xe6faffff, 0x0a260982, 0x088b6666, 0x0082ffab,
0x21826220, 0xbc181120, 0x8a410831, 0xca102206, 0x20d4823e, 0x41068200, 0x002305d1, 0x41c2350f, 0x082805e1, 0xa8f0ffff, 0xffff06f6, 0xf720c982,
0x0028c982, 0xff9a9959, 0x9a197f00, 0xed834682, 0x01279a82, 0x0e156acd, 0x428b74f8, 0x4a21118f, 0x078f423e, 0x080ad722, 0x93210a82, 0x2bbe82f8,
0xffff00e0, 0xff082cf4, 0x10780000, 0x1c261382, 0xfbffff2a, 0x8f42e00f, 0x4217820c, 0x3820068f, 0x20088f42, 0x22318214, 0x42e89b05, 0x0b26068f,
0xfffff047, 0xfe8287f9, 0xe0ba0b22, 0x22298f42, 0x8300ffa2, 0xcb0821fb, 0x20fea518, 0xff34b326, 0x64500e00, 0x21088f42, 0x0210d4f7, 0x20b00190,
0x2e5452ab, 0xb6feff2a, 0xff069a99, 0x9919efff, 0x0dd54618, 0xafffff3e, 0x05db52f8, 0x02e7ffff, 0xff8ba433, 0x98992800, 0xfd1800ff, 0xff08a4cd,
0x7c54e900, 0x05210484, 0x201283a4, 0x211c8470, 0x2a83a48b, 0x1d829020, 0xce4c8927, 0xab76ffff, 0xaa3d1985, 0x4c7d240d, 0x82ffffcc, 0xff052404,
0x83197c00, 0x66292371, 0xac828b66, 0x2d824320, 0x4c430023, 0x276982cc, 0xff999976, 0x67668900, 0x83270a82, 0xffff7a54, 0x82cd4c83, 0xf84f232d,
0x06823b53, 0xcccc722a, 0xf80e058b, 0x1534f794, 0xdc23a882, 0x69ff66a6, 0xe32e0523, 0xffff9a59, 0x8b707de5, 0xdfffff08, 0xa982ec91, 0xc2b50028,
0xe8ffffab, 0x12837a14, 0x3e8af222, 0xf5212e82, 0x82248219, 0x220a8204, 0x820080f2, 0x66782329, 0x0c820766, 0x6683ee20, 0x18abf121, 0x270c2ac0,
0x5cb8ffff, 0xffff0628, 0x00213989, 0x0503600a, 0x5e823982, 0x00801822, 0xfe225e82, 0x0b8234b3, 0x66662022, 0x08ff6318, 0x00258883, 0xff707d15,
0x839c82ff, 0x08bb187a, 0x0ddb4609, 0xab22a582, 0xa58200ff, 0xa5828082, 0x6b834082, 0x87ffff21, 0xffff21a4, 0x4083a382, 0x3f45a482, 0x9aa4180c,
0x00ff240a, 0x829a9987, 0x0d0028c1, 0x00ff0080, 0x82f6e80a, 0x66e62604, 0x730d00ff, 0x23398233, 0xa4b01700, 0xff285c82, 0xff6bcd8c, 0x67662000,
0x0e4e6d18, 0x564f1c20, 0x22c28208, 0x6acc4c23, 0x00230572, 0x479a991d, 0xdf220897, 0x1b82eb91, 0xc3b50028, 0xe8ffff6b, 0x40827b14, 0x8cf2ff23,
0x235382cd, 0x950a17f5, 0x76821982, 0x00ff0825, 0x18d6a347, 0x21094049, 0x7e827b54, 0x46166e21, 0xa0820816, 0x11820620, 0x01229f83, 0x9f848ec2,
0x40823987, 0x5a82a182, 0xce8cff22, 0x820b4541, 0xa61c2125, 0x1423c582, 0x7eff0c97, 0x0685056d, 0x23056a7e, 0x8e82eaff, 0xe6238182, 0x8208d863,
0x91df2206, 0x22dc82ea, 0x41c4b500, 0x8c210a45, 0x050b41ce, 0xa582ff20, 0x73217a82, 0x82b78232, 0x44d820a4, 0x7e6c0cf8, 0x3aef2806, 0xffff08e0,
0x82295cb8, 0x92db83c1, 0x07454139, 0xffabcc26, 0x68662000, 0x27064541, 0xf5ffffff, 0x1500ffc2, 0xff23d882, 0x826766e2, 0xb3dc2f7e, 0xfb0e0833,
0xeb54f730, 0x3500ff15, 0xd282ae07, 0x52f82a24, 0x048200ff, 0x10820a82, 0x34f70822, 0x1a836582, 0xd5ffff24, 0x1984ae07, 0xcaffff24, 0x528252f8,
0x16850684, 0x4e821b83, 0x08211782, 0x193082fb, 0x230dbc39, 0x34f72cf7, 0x210e164e, 0x2d82cd4c, 0x9999f322, 0xd722c782, 0x61829a19, 0xabb6ff26,
0xc2ffff84, 0xff2d6182, 0xff16eec4, 0x85abb5ff, 0xb30400ff, 0x21208232, 0x0a83ebbd, 0x82442b21, 0x48612676, 0x6b3e00ff, 0x239a82c6, 0x08c33542,
0x2005e04e, 0x22068205, 0x4e67660c, 0x0a220686, 0xb24e33b3, 0x0eb94e05, 0xdf21708a, 0x257084d9, 0xff0a57a6, 0xec823f00, 0x0fb0ff26, 0x5800ff5c,
0xf3227a83, 0x378266e6, 0x34f3dc2a, 0xff066307, 0x5ccfedff, 0xf12ca582, 0xffff9a59, 0xffecd1f0, 0x48e10000, 0x9c221482, 0x0a820828, 0xffd7633a,
0x20c5f7ff, 0x5e0700ff, 0xf9ffffb9, 0x00ffcccc, 0x8b333308, 0x0634f708, 0x38210982, 0x279482d4, 0xff185907, 0x4c370600, 0xd6202d83, 0x36211482,
0x373883c8, 0x00ff0ad7, 0xffb85e12, 0x6866f1ff, 0x330f00ff, 0xedffff34, 0x088bcccc, 0x002e7082, 0x071ec521, 0xb35500ff, 0x0b00ff34, 0x5118e2ba,
0x99210764, 0x204c829a, 0x21998358, 0x56702800, 0x20ee8505, 0x8573824c, 0x34b331ee, 0xef0e088b, 0x197f01ff, 0xff157b9a, 0x66e6d8ff, 0x00237382,
0x86ff0506, 0x99142c51, 0x0200ff9a, 0x00fff2d2, 0x82486113, 0xf8933193, 0xb51100ff, 0x0900ffc2, 0xff086851, 0x70bdd4ff, 0xe8222982, 0x948205f6,
0xff0a5724, 0xf184fbff, 0xff262982, 0xff9478fd, 0x3d83efff, 0xf4080122, 0xbd312982, 0x00ff33f3, 0xffd82404, 0x6766c9ff, 0x803e00ff, 0x2f9a8200,
0x08343342, 0xb30300ff, 0xff5b0733, 0x33b32500, 0x002e7682, 0xffff0700, 0x05d763d9, 0xa6ffff8b, 0x67419959, 0x820c2007, 0x215726b1, 0xf3ffff49,
0x257783e6, 0x079ad9dd, 0x0082ff63, 0x144cfa20, 0x0e1b1908, 0x05e5420a, 0xf8ffff2c, 0x42f6ffff, 0x0800ff96, 0x0c829919, 0x4282cc20, 0x67e60723,
0x2371828b, 0x069a199f, 0xd6211682, 0x27838288, 0xff124306, 0xfc290700, 0x07220a82, 0x1c829eef, 0x28830120, 0xb9821220, 0x69f2ff21, 0xed2208b0,
0x37836666, 0x32b3f732, 0xe6faffff, 0xffff1566, 0xff34b360, 0x66e67c00, 0x0f31b282, 0x00ffb85e, 0xffa4f019, 0xf6280900, 0xf81d00ff, 0x224b8252,
0x82cc4c20, 0xfd27234b, 0x25510772, 0x2e881805, 0x141e5112, 0xff22d484, 0x5982d8ff, 0xffff8b25, 0x8248e1ea, 0xe6702670, 0x59ecffff, 0x31cd829a,
0xfffffcc9, 0x08ae87ee, 0x47e6ffff, 0x1400ffae, 0x7f82f628, 0xe83b0531, 0xae0b00ff, 0x0300ff14, 0x00ff4e42, 0x8372bd0c, 0xf5a82172, 0xff282582,
0x00ffbeff, 0x0599199b, 0x34361182, 0xffffec91, 0xffe27ad7, 0x0cd72d00, 0x73cbffff, 0x0100ff32, 0x25825c8f, 0x48a1c922, 0x9d2e0a82, 0xd3fffff2,
0xffffa470, 0x8bda6ed4, 0x7d820855, 0x00c0c92d, 0x45ffff05, 0x00ffcae0, 0x82761e91, 0x99fb220a, 0x21648299, 0x93822070, 0x7e82c720, 0x4aac0122,
0xd7220982, 0x43828b0a, 0x48e1f822, 0xf8293182, 0xffffd3ed, 0xff8ed7fc, 0x6b181aff, 0x27d13915, 0xe8f0ffff, 0x0a00fff6, 0xffff2170, 0x087ad4f7,
0x194f02ff, 0x30feff98, 0x1582ef82, 0x82008021, 0x08cc2615, 0x110f00ff, 0x269282ec, 0x00ff00e0, 0x82b81e08, 0xf0672118, 0x092c1482, 0x00ff3c1f,
0xffd28209, 0x9c19feff, 0x19262382, 0xf5ffff9a, 0x23829899, 0x08323326, 0xd201ff0e, 0x01273e82, 0x153e4a6c, 0x59db54fb, 0xff2405ef, 0x3c0a0200,
0xb3205282, 0xab21eb83, 0x5ead8286, 0xfa22056b, 0xad8233b3, 0xcdccf722, 0x54214a82, 0x83ad827a, 0xf7fd264a, 0x54fb08d0, 0x2b39823b, 0xff9919ee,
0x1c9af8ff, 0x4cf4ffff, 0xee222282, 0x2d820080, 0x0080ed2b, 0xfeff8b08, 0xffccccfe, 0x79371a00, 0x42312009, 0x332d0551, 0xff8b9a19, 0x66e6bc00,
0x338000ff, 0x220a8232, 0x82ceccff, 0x830020b1, 0x82122010, 0x05566796, 0x09831120, 0x3433ee2b, 0x630700ff, 0xffff08d8, 0x2f0f822d, 0xc23595fe,
0x0000ff15, 0x01fffe05, 0x059a197d, 0x01210a82, 0x820f8582, 0xff7e219c, 0x0222b382, 0x4b828b8b, 0x4b82af20, 0xd4b6ff23, 0x2a9f827a, 0xff68e0fb,
0xb8de4aff, 0x8293ffff, 0x9eff304c, 0xff4c9a99, 0x9a99e2ff, 0xeb2f0e08, 0x821534f8, 0xde4f187e, 0x076b232a, 0x355614f7, 0x824c200b, 0x540e22df,
0x050f577a, 0x11217782, 0x7a7518b3, 0x08355609, 0x3cfaef18, 0xfcf4f723, 0x17d77044, 0x75f4fb21, 0x00230cea, 0x82008015, 0x801a2fce, 0xa4f70800,
0x0654f807, 0x0e07a4fb, 0x3d836bcb, 0x0ee71e19, 0x1fc51023, 0x21ad828b, 0xb218e6a0, 0x0d220943, 0xac18146e, 0xff200bd9, 0xfa3a0082, 0xffff05ab,
0x066ce620, 0xff056b8b, 0x6666b701, 0x70da01ff, 0xffff15a4, 0x3c828cfa, 0xf0870427, 0xd7f8ffff, 0x057a42d0, 0xf0f8ff2e, 0xfeffffa2, 0xff0830c8,
0x66e650ff, 0xff273082, 0xff0a97f4, 0x82e7fdff, 0xb5f72d25, 0xf6ffffc2, 0xff8b6210, 0x6666f4ff, 0xbf2b2182, 0x00ffee11, 0x05840000, 0x4105a38b,
0xff200680, 0x2105c250, 0x07197a54, 0xdf23084a, 0x6c069a19, 0x51410d52, 0x253c8308, 0xe5ffff0d, 0xa182a430, 0x96c52408, 0xf5fffffd, 0xffff707d,
0xfff6e8ce, 0x52b8d6ff, 0xbcecffff, 0xc6ffff29, 0xff083433, 0x21d0fbff, 0x82f3ffff, 0x060022bc, 0x200e82cc, 0x220983f2, 0x82a4900c, 0xcdcc2118,
0x0222c682, 0xea82ae87, 0xff333326, 0x3d8a0200, 0x99210982, 0x2209829a, 0x828b1f85, 0x0c0a221a, 0x2b9c82cd, 0xffb85e09, 0x10580600, 0x590300ff,
0x0a221b82, 0x1a82e610, 0x15ae0c34, 0x172600ff, 0x1f00ff0a, 0x00ff1f05, 0xff34b31b, 0x49822500, 0xcc090024, 0xe68208cc, 0xcccce022, 0xda239982,
0x82791e45, 0xe1ba26a5, 0xccd9ffff, 0x201682ce, 0x25fd82d3, 0x0544fb8b, 0xdc8400ff, 0x00000026, 0x0544f706, 0x2c206482, 0xff237682, 0x82e2bae5,
0x82302054, 0x2bdb279a, 0x1200ff84, 0xaf828e02, 0xfaffff27, 0x332300ff, 0x21338234, 0x7f82193f, 0x84000022, 0xff273082, 0xfff468f4, 0x824c0800,
0x0ff63020, 0x0b00ff5c, 0xffff2c67, 0x08f6e8fd, 0x82af00ff, 0xe0ff2325, 0x308266e6, 0x20700122, 0xc026d182, 0x0100ff00, 0x0982e06f, 0x0983e020,
0x83086c21, 0x930522db, 0x227682f8, 0x82b67305, 0x22f0261b, 0x570400ff, 0x26e0820a, 0xff08be9f, 0x82780500, 0x8f0422eb, 0x210f82e0, 0xfa82f027,
0x827cbf21, 0x21072229, 0x281a8248, 0x07b2fd6f, 0xe80000ff, 0x21168272, 0x7182e23a, 0x8232b321, 0x21608209, 0xc082faff, 0x8f040027, 0xfeff085c,
0x230a82b8, 0x5c8fa5ff, 0x230c276c, 0xf6280700, 0x08234682, 0x18080ad7, 0x2208eedf, 0x83ff3333, 0x21c78216, 0x9383cdcc, 0x06820820, 0x4c2c4e82,
0xf8ffffcd, 0xff8b04d6, 0xfc29f7ff, 0x06832d82, 0xf9ffff24, 0x168433b3, 0x33271582, 0x0e088b33, 0x829c00ff, 0x3f002367, 0x67829a19, 0x9919e128,
0xcc1f00ff, 0x1d8205cc, 0xe4828020, 0x9a990734, 0x0c00ff88, 0x00ff6666, 0xff67e602, 0xce4c0b00, 0x67828e08, 0x8f66e622, 0x37830c82, 0x34b3052e,
0x4c0d00ff, 0xffff08cc, 0x06333396, 0x61213782, 0x25718248, 0xffb408f8, 0x20820400, 0xbbfbff23, 0x239d8264, 0xff080080, 0x23200a82, 0xf9820a84,
0xffbc1425, 0x82330900, 0x660422f4, 0x2d138225, 0xff086766, 0x17793400, 0x805800ff, 0x71820501, 0xffc3f522, 0x2c057f59, 0xff3e8a17, 0xcc4c0e00,
0x781900ff, 0x20dc8352, 0x21658352, 0x92830200, 0x9a190322, 0x66209782, 0x03219782, 0x858582b3, 0x98992113, 0x51204a82, 0x7823ac83, 0x82f720c5,
0x12042cde, 0x4800ff6e, 0xffffcccc, 0x824095f2, 0x820b201b, 0xfdff292b, 0xff946adc, 0xe8fbf6ff, 0x45824082, 0x5ef4ff23, 0x341a82b8, 0xff64660d,
0xf628b7ff, 0xff0efb87, 0x343387ff, 0x19aeffff, 0x27b8829a, 0xff0080fc, 0x9899fdff, 0x4c21c282, 0x200983ce, 0x064b7d9a, 0xd784fe20, 0x66e6ac23,
0x20f38207, 0x202583e6, 0x20f383f2, 0x230983e8, 0x7e9a19ea, 0xa7203b82, 0xcb280b83, 0xff059a99, 0x9999f8ff, 0x20834182, 0xcdccf627, 0xe6ffffff,
0x82138268, 0x0400231e, 0x29823233, 0x0a84f820, 0xa8824c20, 0x6666fb28, 0x00ff8b93, 0x7c829908, 0x336b0029, 0xffff0734, 0x8266e6f1, 0x3233243b,
0x83f3ffff, 0x83fb20bf, 0xb3f6230e, 0x37828833, 0x4c83f420, 0x6866fc22, 0xcc251a82, 0x0300ffcc, 0x20a78219, 0x362482f7, 0xce4c0800, 0xff078b08,
0x6666e300, 0xccd900ff, 0x00ff15cc, 0x829a1916, 0xe6112658, 0xa28b9c66, 0x20098208, 0x25e48315, 0xff9a19ee, 0x3b821200, 0xdf18ff20, 0x93741145,
0xccea2705, 0x748b08cc, 0x388200ff, 0x44857a20, 0x62faab18, 0x3600ff29, 0xfeff9a99, 0x189a99a6, 0x210816ca, 0xac7f0080, 0x0afd5f12, 0x1f83c020,
0x00210f83, 0x1363180c, 0xc0f92709, 0x0600ff00, 0xb3410040, 0x08002305, 0xf8823233, 0x34330822, 0x0682ff83, 0x0300ff23, 0x22208220, 0x85142e08,
0x06002625, 0xf708703d, 0x0f126004, 0x08e64218, 0x82121260, 0x6e401860, 0xaca62c0b, 0xa6ffffcd, 0xff0548a1, 0x834c5900, 0x9a99220a, 0x4daa1805,
0x18662063, 0x6107beab, 0xf38208d6, 0x8280f321, 0x0c641804, 0x1faa7f09, 0x7321b282, 0x22048232, 0x82059a59, 0x615082c3, 0xd66106e1, 0x0040210b,
0x0c514418, 0x410ad661, 0x7d620d24, 0x82062006, 0xf9ff222f, 0x223482c0, 0x189a1903, 0x2308846f, 0x8b08cdcc, 0x1b190c83, 0xce2509e0, 0xb3f9ffff,
0x21048234, 0x5d42cccc, 0x82862064, 0xc9fe25dd, 0xff156666, 0x2008bc41, 0x366518ff, 0x0629410a, 0x66a6a627, 0x4c5900ff, 0x060e41cd, 0x18a6ff21,
0x423842ab, 0x06210653, 0x068e4240, 0x13cd7a18, 0x07aa4618, 0xe0fcff22, 0x3d272583, 0xf9ffff70, 0x410800c0, 0x0c220649, 0xab82e27a, 0x659a7921,
0x5d42103d, 0x99862863, 0x09ffff9a, 0x42156666, 0xf920065d, 0x32041119, 0x0ea56618, 0x18ff8b21, 0x421036ae, 0xff2a184c, 0xb85e5900, 0x93a6ffff,
0x0a820534, 0x84486121, 0xf8aa1804, 0xf7af243b, 0x53a4f7f4, 0xe8181cc3, 0x6b3b1102, 0x0764fb06, 0x8bc006bb, 0xc08bb6b6, 0x0600ff08, 0xff079a19,
0x9a19f8ff, 0x47f9ffff, 0xff320835, 0xffceccf5, 0xccccf0ff, 0xf6ffff8b, 0x00ff9a99, 0xbe18330a, 0x002307e3, 0x82008008, 0x670f20f4, 0x00260788,
0x08666609, 0xc682c3c3, 0xff260882, 0xcd4c0900, 0x1c8200ff, 0x08222282, 0x3d82fe7f, 0x0833b324, 0x1d8253c3, 0x30820a20, 0x51824b83, 0xff205782,
0xcc266182, 0x80f7ffff, 0x05840800, 0x71840f83, 0x7184d020, 0x71859820, 0x9e828420, 0x05343322, 0x9e469982, 0x82a72005, 0xb8ff248a, 0x85ff6666,
0x290e8204, 0x34fb088b, 0xa7ffff06, 0x37829999, 0x00211983, 0x05bc4f47, 0xdb889482, 0x8752f821, 0xa1f622db, 0x20698848, 0x223182cd, 0x8806a1f6,
0xc4a518db, 0x22468414, 0x84420038, 0xb95e21df, 0x3320df88, 0x0920df82, 0xff210f82, 0x24df82f6, 0x213700ff, 0x20e38548, 0x83f18233, 0x86ff2080,
0x93cd20e3, 0x0c5541e3, 0xc651e38d, 0x06bb230d, 0x8a5b64f7, 0x834c2005, 0xb3f124ad, 0x7900ff33, 0x1183101f, 0x79065f48, 0x0a33064d, 0xff0666e6,
0x9a19e6ff, 0x331100ff, 0x00ff7a34, 0x8266661d, 0x822120af, 0x250682cc, 0xff1e0535, 0x1c832a00, 0xe2fa2a38, 0xe63500ff, 0xc0088b66, 0xffffb68b,
0x8b1e05d5, 0xfacaffff, 0x068208e2, 0x9a99de25, 0x82eeffff, 0xe2ff2425, 0x82729a99, 0xcccc240a, 0x8300ff08, 0xbb4b2159, 0x820c7142, 0x07aa637e,
0xe3195c82, 0xd8631543, 0xf1ff2109, 0x0f028e18, 0xff243f83, 0x34b3f1ff, 0xb32eac82, 0x0e088b34, 0xf874f72f, 0xffff1514, 0xf383ccd3, 0x6105d061,
0x5b22084f, 0xca18f707, 0x8b24edac, 0xd4fbab06, 0x211b7041, 0x3d4134b3, 0x4c0e2a06, 0xeeffffcc, 0x088bcc4c, 0x0e2b4d4b, 0x200f2b6a, 0x05ca6400,
0x2a057241, 0xcb088b33, 0xb4f70e06, 0x651554f7, 0x784d16b3, 0x0eed410b, 0x12108b18, 0x200e0f66, 0x24548433, 0x44fb08cd, 0x265f828b, 0x00804f00,
0x884000ff, 0x220e8204, 0x83ff088b, 0x858b2015, 0xbfff2316, 0x31820080, 0x0080b023, 0x61068508, 0x168206eb, 0x82ffff21, 0x842d8215, 0x18168506,
0x230ab79a, 0x153b24f7, 0x64059464, 0x0023058d, 0x82cccc23, 0x492c2053, 0x2c200523, 0x82071664, 0x18cd2016, 0x42099aa0, 0x33200a61, 0xd320a883,
0x2205d147, 0x83ccccd3, 0x3a731944, 0x94f7220c, 0x22bf82db, 0x7e9972ff, 0xfb29568a, 0x1554f794, 0x1995ffff, 0x22f7829a, 0x7866e6aa, 0x21320ce1,
0x195500ff, 0x00ff359a, 0x8b66e66a, 0xe18bf508, 0x36198be1, 0x2f221100, 0xc3410cf7, 0x19e12105, 0xe625a382, 0xffff14ee, 0x264783e6, 0x8beb11e1,
0x83ffff08, 0x82118206, 0xf6651816, 0x181e200d, 0x23125a74, 0xee1e00ff, 0x0023ed82, 0x84ec1119, 0x82928244, 0xf7082354, 0x15828b34, 0x5f85ff20,
0x5f863682, 0x5f83b282, 0xe161b984, 0x56661807, 0x185f8509, 0x20078966, 0x820e8200, 0x1806848d, 0x20105a76, 0x835e83bb, 0x8319851a, 0x838982a7,
0x900685f2, 0x84978530, 0x820486a2, 0x93ec849b, 0xfc0e258c, 0x15e3cb30, 0x4a88db96, 0x223b3741, 0xdd34f78b, 0x15bb215f, 0x821ac841, 0x190024b9,
0x85ffec11, 0xee1e2404, 0x8d088b15, 0x14ee21ec, 0x1122e583, 0xec9608ec, 0x17d25518, 0x820a5721, 0xa8dc2630, 0xd4fb08f6, 0x59098507, 0xe3200663,
0x09c1dc18, 0x5906d421, 0x00240b7d, 0x8bf6a81c, 0x57231082, 0x83f7080a, 0x23002133, 0xff232982, 0x82cc4ce3, 0xf6a82438, 0x54dcffff, 0x1626054e,
0xfeff9a99, 0x191966a9, 0xcd200f8a, 0x2305e64c, 0xcdccf7ff, 0x0684c282, 0xf7ffff2a, 0x00ffebd1, 0xfffa1e03, 0x2205874b, 0x6d004006, 0x42210eda,
0x0cd24b90, 0xe13a0629, 0x440600ff, 0x4d00ffdc, 0x19200520, 0x15718518, 0xb782e120, 0x2007dd4b, 0x26408208, 0xffff5278, 0x4a9478f3, 0xee30109e,
0xb3f6ffff, 0xffff1534, 0xff6666ff, 0xcccc0000, 0x80210982, 0x82048200, 0xfeff2357, 0xa8839a99, 0x5278f322, 0xf5263782, 0x00ffa470, 0x1b83c009,
0x82852b21, 0xa4b02151, 0xfd21a882, 0x20bd8251, 0x20fa8336, 0x21f382d0, 0x44822f00, 0x4cc9ff23, 0x21d182cc, 0x1e829a99, 0xaec7f222, 0xd82b5482,
0xf5ffff03, 0x00ff52f8, 0x82ab6f0b, 0x29dc260e, 0x380d00ff, 0x22958252, 0x8202dc00, 0x0040210a, 0x8c211982, 0x215c82f4, 0x0e825c8f, 0x82291c21,
0xec91217d, 0x4d201e82, 0xff362982, 0xff21f0fa, 0xa5704300, 0x8fbcffff, 0x0500ffdf, 0xffff9819, 0x5c8219b2, 0xde00002c, 0xf2ffffb8, 0xff8150b8,
0x7c82f4ff, 0xccf2ff23, 0x213982ce, 0x39823433, 0xcc865f20, 0xb321d783, 0x22cd8634, 0x829899ff, 0xccfe22c6, 0x21d384ce, 0x0c823433, 0x4661f527,
0x170a00ff, 0x2121820a, 0xd3823473, 0x82f6e821, 0x78fc21b4, 0x6a20aa82, 0xff224182, 0xc982cca5, 0x82335a21, 0x82952040, 0x05002360, 0x1e82cc4c,
0xcdccf222, 0x55832e82, 0x85abf522, 0x1921b982, 0x21d3829a, 0xb982cd8c, 0x00231e83, 0x825d8f00, 0x2333820a, 0xec510b00, 0x99215c82, 0x820e8298,
0xffff2123, 0x822a9984, 0xffff33b3, 0xfff087fa, 0x47836e00, 0x432b9122, 0x22068c51, 0x8233337e, 0x830120b8, 0x83f12076, 0x82f520c8, 0x05ea6d7b,
0x6b82f220, 0x4c000024, 0x441808cc, 0xfb2b6138, 0xfb15e3e4, 0xff8b0744, 0x824cf7ff, 0xb30426fa, 0x00ff8333, 0x23fb8207, 0xceccfbff, 0x07289e82,
0xffff0080, 0xff32b3fb, 0x20050f4b, 0x20e68300, 0x28b28207, 0x00800400, 0xe324f708, 0x822d8205, 0x040021eb, 0x04831384, 0x34b30726, 0x0800ff8b,
0x8205a249, 0x05655106, 0x16820020, 0xf8ffff24, 0xfc8266e6, 0xfb201a82, 0xff213983, 0x216782f8, 0x34820500, 0xb3f6ff28, 0xffffff33, 0x8351ce4c,
0x20708305, 0x830a8208, 0x82868219, 0xcd4c2241, 0x38a28583, 0x0e078b08, 0xf714f7af, 0xd4f715b4, 0x0754fb06, 0xf706d4fb, 0x14f80754, 0xa58a18eb,
0x073b2117, 0x2df38a18, 0x18073b21, 0x2630d48a, 0x00ff07db, 0x828f821a, 0x7d1522f5, 0x91601971, 0x05b7560b, 0xeaffff24, 0x16848f82, 0x7d248982,
0xdb088b71, 0x8b186282, 0x34221803, 0xbe48b4fb, 0x0fdd4807, 0x9348f182, 0x0ac1480b, 0x8354f721, 0x28c21952, 0xd4fb2113, 0x21174249, 0x591854fb,
0x8c2e70ba, 0xff155cfb, 0x33b3f2ff, 0xf5ffff8b, 0x0484cd4c, 0x10820a82, 0x17bccc19, 0x1844f721, 0x2d2ed059, 0x0e0644fb, 0x01ff30fb, 0xff9a9956,
0x90450901, 0xffce2c10, 0x66e6fcff, 0xe6f6ffff, 0x85088b66, 0xffff2406, 0x5252b8f8, 0xff250577, 0xff90c2f9, 0x05904500, 0x1e85b72b, 0x534900ff,
0xfeff0534, 0x05e76dbd, 0xb8ded327, 0x1cdcffff, 0x2a048229, 0xffff4821, 0x8bd7e3d3, 0x6004fb08, 0x2d680eaa, 0x0e00230f, 0xc4687b54, 0x11002605,
0x088b85ab, 0x203082f7, 0x05135600, 0x33330723, 0x0a8779ff, 0x4201ff29, 0xff0734b3, 0x829eb6ff, 0xb3b62266, 0x0d7d7532, 0x510d4c53, 0xfc750524,
0x0e025207, 0x07a98b18, 0x2818bd4f, 0x14fb14f7, 0x0d00ff05, 0x21c58261, 0x201973f3, 0x5622165c, 0xff829a99, 0x15666623, 0x202d84fb, 0x0b6150ff,
0x2207d646, 0x4167e6f6, 0x67260545, 0xf8ffff8b, 0x454151b8, 0x06e35307, 0x0ac58c18, 0x8233b152, 0x2fa1837e, 0x053493b6, 0xcc4201ff, 0xff8b07cc,
0x5ccf0800, 0xcc2b6982, 0x0700ffcd, 0xffffa430, 0x413333f7, 0x2c223783, 0x4f829a19, 0x66e62327, 0x1edcffff, 0x29bf82b8, 0x0848e1d3, 0x33bdfeff,
0x78820734, 0x84b85e21, 0x28d2507d, 0xffe2fa26, 0xead1ebff, 0x2009bc52, 0x06824808, 0x67165d18, 0x3570ff20, 0x334c2805, 0x00ff1533, 0x8368e60a,
0x82672004, 0xcc1127e0, 0xf5ffffcc, 0x0f839819, 0x83086621, 0x859a200a, 0xac2b191f, 0x8b332133, 0x99204083, 0x4b834584, 0x84eb1121, 0x2215820f,
0x823433ee, 0x15ee2156, 0xcb221a85, 0x7f84054b, 0x83827986, 0x0a208982, 0x13ac2b19, 0x14f82f24, 0xba4534f8, 0x06a44917, 0xff34b325, 0x184ce3ff,
0x210c804e, 0xa018d4fb, 0x00200ccf, 0x4909da63, 0x901806a4, 0xf7201260, 0xc5213383, 0x224782cc, 0x82cc4c94, 0x4cf02ca8, 0x0f00ffce, 0xffff9a99,
0x8232b3e6, 0x66f02cc2, 0xf0ffff68, 0xff086666, 0x8299eaff, 0x99ea22e3, 0x23c5829a, 0x4467e646, 0x15270682, 0x00ff6666, 0x82676615, 0xb30f220a,
0x25378232, 0xff8b33b3, 0x95831900, 0x37824787, 0x1a83f120, 0x66660e26, 0x29ffff05, 0x5b22b583, 0x688368e6, 0xffe1fa26, 0x32b3c4ff, 0xfe251582,
0xffff47a1, 0x211a82f9, 0x78830100, 0x8233fa21, 0xfd032d4a, 0x8f088771, 0x19fcffff, 0x0500ff9a, 0xff211b82, 0x2b6c83fe, 0xff008005, 0xce4c0100,
0x3c00ff08, 0x0f211983, 0x208e8319, 0x21368205, 0x1f840100, 0xff333325, 0x82e60200, 0x19042796, 0x0400ff99, 0x29829a19, 0x3433692b, 0x336900ff,
0xff440533, 0x82b98200, 0x83962071, 0x849720f0, 0xe6fb267c, 0xffff8666, 0x212d82fd, 0x3782faff, 0x83feff21, 0x66fa22e5, 0x07aa4268, 0x180e5441,
0x4b0a83a1, 0x632e4d2d, 0x8b15acfb, 0x4feeffff, 0xf1ffff5c, 0x5a19a4b0, 0x15820dd1, 0x16831b82, 0x280a396c, 0xb34200ff, 0xffff0733, 0x82fd8286,
0x82992004, 0x058e44d7, 0x18cecc21, 0x20235491, 0x0e5818c2, 0x6b792723, 0x7900ff86, 0x5b820060, 0x1833bd21, 0x6c0d83e6, 0x118311c3, 0x2807d545,
0x088ba4b0, 0xff0624f7, 0x40c41800, 0x8414820b, 0xfb083ae1, 0xaf0e0724, 0xe63802ff, 0x3001ff68, 0xff150080, 0x9a1969ff, 0x338a00ff, 0x31688234,
0xffcaccf2, 0xb0120c00, 0x33ebffff, 0xf6ffff34, 0xfb822030, 0xf232ed28, 0xb5ffff08, 0xf0820ad7, 0x33337131, 0x5efeffff, 0x8effffb8, 0xffffcdcc,
0x82ae87e3, 0x80792320, 0x06820800, 0x34b3c925, 0x832300ff, 0x33ca2720, 0x2600ff32, 0x208248e1, 0x0868e622, 0x23265182, 0xf7ffffd7, 0x92821038,
0xffae472b, 0xde040b00, 0x85fbffff, 0x21b0821f, 0x5a82d438, 0x14aed725, 0x828000ff, 0x45002923, 0x00ffcd4c, 0xf733331c, 0x00221082, 0x1b8266e6,
0xceccb523, 0x215b8207, 0x11822eed, 0x0ad71422, 0x3a249382, 0x0d00ffe2, 0x0c220e83, 0x5b827a14, 0x66e69622, 0x002ebd86, 0xffe47a09, 0x5ccf0700,
0x0f00ff8b, 0x2a829899, 0xff008026, 0x34b30800, 0x67214682, 0x200f8219, 0x21ee840f, 0x521854ee, 0xff341229, 0x66e6e0ff, 0xffd4fb07, 0x56000000,
0x3f01ff05, 0xab074419, 0x210e776f, 0x5882ec51, 0x14ae1122, 0x5819eb82, 0x33200776, 0x2308376e, 0x6b088bcd, 0x180c0244, 0x220a1947, 0x82c0feff,
0x18de4d5c, 0x00237386, 0x829a5923, 0xa61c2160, 0xe34dcf82, 0x00ff2209, 0x188a821f, 0x2108af4d, 0x8f5434b3, 0x058d5205, 0x21625b52, 0x4f188bb4,
0x01345dc5, 0xff9a1945, 0xcc4ccdff, 0x3700ff15, 0x00ff0080, 0x05ce4c90, 0x2c06075e, 0xffcc4c14, 0x66e6ecff, 0x331200ff, 0x20098234, 0x2d298299,
0x080080f8, 0xb36fffff, 0xc8ffff33, 0x895e0080, 0xfcff2206, 0x242982cc, 0xffcd4cf9, 0x200484ff, 0x570e83fc, 0x24820500, 0x29822e84, 0x44853a82,
0x58834e86, 0x00216283, 0x83538307, 0x82828478, 0x8308207d, 0x82032088, 0x06002473, 0x85ff32b3, 0x820e8404, 0x8b082118, 0x289f6518, 0x4ff6a821,
0x592031cc, 0x11d35818, 0xd9ffff22, 0x3729f983, 0x231533b3, 0x0090ffff, 0x27cb8201, 0xff6666fb, 0x9819fbff, 0xb324f082, 0xfdffff33, 0xfa83ab82,
0x82088b21, 0xcd4c2210, 0x2605828b, 0x00ff85ab, 0x82f0c702, 0xa4702a25, 0xe00400ff, 0xf7230800, 0x2c398204, 0x920080f9, 0x47feffff, 0x0a00ffef,
0x2c198230, 0xffe0cf03, 0x00c00800, 0x0300ff08, 0x220482cc, 0x8239b408, 0x2154820f, 0x04830500, 0x0080092d, 0x64f7088b, 0x0900ff06, 0x828bf087,
0xb4a82619, 0x58faffff, 0x265c8210, 0xfffff6e8, 0x82fa3ef7, 0xb3042233, 0x210a8232, 0x5782c335, 0xffce4c25, 0x82e6f5ff, 0x2067829c, 0x18c84584,
0x6c9a5921, 0xf650053b, 0x1429413b, 0x9a19dd2b, 0x66eefeff, 0xffff1566, 0x210a82fd, 0x8f83f7ff, 0xcc4cf722, 0x0483b382, 0xcd83f620, 0xcd82fb20,
0x78f6ff23, 0x2c828210, 0xff4b57f7, 0xf0a70500, 0x30fcffff, 0x22dc82a4, 0x870806c1, 0x3eca310a, 0xb80100ff, 0x0a00ff52, 0x00ff9819, 0x92717d06,
0x682ae882, 0x04f70000, 0x0900ff05, 0x88500020, 0x10002405, 0x828b5cef, 0x4821290a, 0x40f6ffff, 0xfbf30800, 0x06231e83, 0x82849082, 0x32b3263d,
0xe6f5ffff, 0x06176068, 0x3233f722, 0x20710f41, 0x27f583b8, 0x1566660e, 0x052304fb, 0x80218882, 0x2b048201, 0xffffcecc, 0xff9919fa, 0xccccfdff,
0x9a210983, 0x22f5838b, 0x828b00c0, 0x82c020fb, 0xa70022d8, 0x210982fc, 0xc282f0e7, 0x82045821, 0x4bf7251a, 0x0300ff43, 0x4c262b84, 0x0800ffcd,
0xf28334b3, 0x08008025, 0x830764f7, 0x82872009, 0xa7052129, 0x08220482, 0x1e82b4a8, 0x8206c121, 0x5ccf222d, 0x830a8208, 0x8303204d, 0x300a2f04,
0xfeffffa4, 0xff92e04f, 0x3088f9ff, 0x8d83f708, 0xd9040023, 0x2467829a, 0x00ff564e, 0x225c8302, 0x82cdccf8, 0x4cf92381, 0x068408cd, 0xd6429a82,
0x34b32105, 0x2a06ea42, 0x086666fb, 0xcb30fb0e, 0x181564f7, 0x190e456c, 0x200c6a03, 0x051b7334, 0x180e0021, 0x2408bfa7, 0x4a1c00ff, 0x2b95823e,
0xff299c1d, 0xd8e35300, 0x334f00ff, 0x3c2a2582, 0x00ff281c, 0x8b66e65e, 0x1c82a308, 0x200c5466, 0x19828284, 0x261a5d5c, 0xffff0673, 0x829a19c6,
0xb3cd2624, 0xdfffff33, 0x25c88299, 0xffcd4ce6, 0xa282d0ff, 0x7d00ff24, 0x508e66e6, 0x5c0d2758, 0xff24113a, 0x333370ff, 0xff2b5482, 0xffff67e6,
0xff6666fd, 0x82e6ffff, 0x4cfd2104, 0xff20d982, 0x08220582, 0x6c82077b, 0xd183fd20, 0x82190021, 0x4cfd276c, 0x0000ffce, 0x2c849919, 0x00ff0825,
0x9ccdcc8f, 0x18cc2071, 0x241089a9, 0x1982ffff, 0x2033829a, 0x82c08319, 0x00ff22b6, 0x83c08332, 0x390021ca, 0x8d131341, 0x205091c2, 0x22be8273,
0x829a19a1, 0xccb022a6, 0x05234acc, 0x63e2ff2e, 0x5300ffd7, 0xff0866e6, 0xc2b5e3ff, 0x180e994e, 0x4608146e, 0x994e06dd, 0x0ab54106, 0x67261022,
0xff2c3382, 0x00ff66e6, 0xff34b302, 0x33f3ffff, 0x99210982, 0x82308298, 0x9b08220f, 0x82088407, 0x0c002213, 0x241883cd, 0x0000ff9a, 0x37048219,
0x0833b302, 0xd9efffff, 0xfb0e0699, 0xff04f770, 0x66e6e000, 0x0604f715, 0x200c6f7e, 0x01321af0, 0x20b28208, 0x864b19ed, 0x82fb2012, 0xd2ff2e30,
0x8b079a99, 0xf8ffff6e, 0xffff9919, 0x832584e4, 0x33e62209, 0x2d618234, 0xffeb51ff, 0x66e6feff, 0xc700ff05, 0x8041e27a, 0x94fb252e, 0xf4ffff06,
0x2505d754, 0x00ff2f5d, 0xe1823306, 0xec51fa29, 0xffff0895, 0x44aa51fa, 0x003c0678, 0x00fff027, 0xffce4c0c, 0x56ee0500, 0xe60900ff, 0x00ff0866,
0xff8fc21d, 0x9a993100, 0x08217782, 0x27fe82f3, 0xff66e60e, 0xe1ba0400, 0x1922df82, 0x05828b9a, 0x25836620, 0x00802c24, 0x73417b07, 0x203a831c,
0x6f6f1854, 0x829b200c, 0x703f20c4, 0x462705d1, 0x00ff14ee, 0x82008039, 0x52782704, 0xe64600ff, 0x7a828b66, 0xcdcc0d22, 0x0d276082, 0xffff33b3,
0x82aec7fd, 0x29b5839a, 0x0848a1fb, 0xe4ffffdd, 0x918232f3, 0xcccc1022, 0x6827c082, 0xffff94f6, 0x8248e1ed, 0x2442820a, 0x0040efff, 0x240a8208,
0xffff6666, 0x05256eef, 0x8282ce21, 0xcc4c210a, 0x8020d782, 0xae261a83, 0x00ffcdcc, 0xd282191b, 0x82f9ff21, 0x02002d30, 0xffff142e, 0xff9a19f9,
0xb81e0100, 0x99200983, 0xff287d82, 0x8b6766dc, 0x33e3ffff, 0xe3227d82, 0x0a823433, 0xe983dc20, 0x4cc1ff2d, 0x2f0e07cc, 0x000000ff, 0x6a14f814,
0x8425056b, 0x540e00ff, 0x20048367, 0x0609717c, 0xda82db20, 0x00804f22, 0x21080d5b, 0x3f82ae87, 0x5278b023, 0x20068208, 0x205183c5, 0x248282dc,
0x0180cdff, 0x250482ff, 0xe9ffff00, 0xef829899, 0xb2833320, 0x82997f21, 0x06002397, 0xb2829a99, 0x839a9922, 0xc884d882, 0x82999921, 0x20808498,
0x221a83ef, 0x846866f9, 0x83932019, 0x207a8215, 0x251a8210, 0x8b00ff53, 0xe31966e6, 0xff2e7c50, 0xcccc0001, 0xcce5ffff, 0x00ff15cc, 0xd9828000,
0x68e6fe22, 0x04820982, 0x82feff21, 0x057c450e, 0x32b3fd22, 0x072aed82, 0xffff3433, 0xffce4cfa, 0x66550b00, 0x33132208, 0x21d08232, 0x1e82ce4c,
0x19820120, 0x80ffff2c, 0x00ff0500, 0xff981910, 0x1a82fbff, 0x83160021, 0x82f720fb, 0x10002138, 0xff230482, 0x820080f1, 0x660a2a29, 0xf7ffff66,
0x00ff66e6, 0x20098308, 0x284d82f5, 0x9a190500, 0x4cf2ffff, 0x861e82cc, 0x8cce240a, 0x82f1ffff, 0x82ff2043, 0xffff227d, 0x213983f0, 0x9783fbff,
0x0483e320, 0x82b3ef21, 0x83eb2078, 0xb3e82304, 0x5865ff34, 0xe9ff2105, 0x93565382, 0x4ee52005, 0x9a240532, 0x0400ff72, 0xff213984, 0x26b782cc,
0x059a1900, 0x82f6ffff, 0x01002135, 0xf4233583, 0x568fcecc, 0x0321064a, 0x21e28233, 0x3682f9ff, 0x83020021, 0x056742c8, 0xc7829920, 0x3983fa20,
0x9a190228, 0xfdffff08, 0x94820080, 0x2483fd20, 0x15820020, 0x4cfeff27, 0x0000ffcc, 0x253983b3, 0xff0080ef, 0xd8850600, 0x00ff6723, 0x820e8512,
0x84102009, 0x201983f2, 0x860a8200, 0x82082019, 0x220e84ed, 0x8299f9ff, 0x02002558, 0xff8a9a99, 0x98200582, 0x99830583, 0x66e6fe23, 0x24ba8208,
0xffffcccc, 0x262b83fe, 0x899a1905, 0x820500ff, 0x82ff2055, 0x201a827e, 0x207f8308, 0x212a82fc, 0x14830600, 0x2982fe20, 0x83030021, 0x84fe207e,
0x990f226f, 0x05e4489a, 0x190b0024, 0x3f448d98, 0x03002105, 0x0021c483, 0x82e38404, 0x280f8334, 0x990300ff, 0x08928c9a, 0x8222828c, 0xffff2317,
0x12843433, 0x6f59ff20, 0x84012005, 0x83ff20db, 0x860120e6, 0x00ff2296, 0x057c4601, 0xb082ce20, 0x08cc4c22, 0x20068843, 0x228f8305, 0x8232b3f4,
0x207a83b4, 0x244783ed, 0x08989906, 0x212f8288, 0xd6199a19, 0x0520072c, 0xea20a183, 0x07207b83, 0xff240482, 0x9832b3ef, 0xf6204082, 0xf6261088,
0xff95ce4c, 0x2582fbff, 0x660d0023, 0x201a8268, 0x214c82fa, 0xe1880d00, 0x98990e22, 0x7a827583, 0xcb840f20, 0x6666082c, 0x3a00ffc5, 0xff9f9a99,
0x96833100, 0x67e6f62c, 0xffff9108, 0xff33b3fe, 0xb6821500, 0x82fbff21, 0x08002c3b, 0xffff9a19, 0x086666fd, 0x831000ff, 0xccfa2525, 0x0900ffcd,
0x69616582, 0x83fa2005, 0x19ef22bb, 0x826f8399, 0xefff21c1, 0xee202e83, 0xf6200483, 0x0e847e82, 0x33050023, 0x201e8232, 0x215282fb, 0x52820100,
0x66eeff2a, 0xffff8f68, 0x8c6666fa, 0xf0201682, 0x00261182, 0xff34b302, 0x3f83f5ff, 0x0983fd20, 0xce4cf825, 0x83fcffff, 0x83ff2073, 0xfcff21c4,
0x73831984, 0x5483fc20, 0x0983ff20, 0x34b3fa22, 0xff283d82, 0xff859a19, 0xcccc0000, 0x3321a382, 0x2b098232, 0x088a6666, 0xfb0e068b, 0x9f00ff70,
0x00278582, 0x1533b3f9, 0x836600ff, 0x0c98237b, 0xba8205cd, 0x0026b082, 0xffc2b50e, 0x35821300, 0xf8030026, 0x0e00ff52, 0xff220982, 0x508233f6,
0x830e0021, 0x30f6257f, 0x0300ffa4, 0xec23ed83, 0x83ffd623, 0xffff2419, 0x823e4af1, 0x33a1276f, 0x72ffff33, 0x488266a6, 0x33333422, 0x460d9846,
0xd68213f7, 0xb283f220, 0xcc4cee29, 0x063b088b, 0x8fdb076b, 0x8bce2333, 0x1d82ffff, 0xc8600820, 0x1a3b2016, 0x200b8b09, 0x207c82b3, 0x23a083f1,
0x8b6766ed, 0xef228d82, 0x9a643333, 0x0a215806, 0x3b07cb23, 0x05846e06, 0xf0ffff24, 0xdd821fc5, 0x31100f48, 0xffe13a0f, 0x32330f00, 0xc51000ff,
0xdb088b1f, 0x338fab06, 0x66660d28, 0x1200ff8b, 0x97829a99, 0xcc100023, 0x852e82cd, 0x86332033, 0x00ff2433, 0x829a1935, 0x2ca12167, 0x8d282782,
0xff059a59, 0x6f32f6ff, 0xb52b6c82, 0x0300ffc2, 0x00ff17f9, 0x822adc13, 0xbcb4270e, 0xcf0900ff, 0x0a82085c, 0x3b82b320, 0xcccc0922, 0xde261982,
0xfcffffb8, 0x1982ae07, 0x59415982, 0x64003105, 0xffffe27a, 0x0533f367, 0xf730fb0e, 0x1534f884, 0x460d6261, 0xb0230b54, 0x19ff0080, 0x21080027,
0x0e82ffff, 0xfb088b28, 0x076b0604, 0x5d4134f7, 0x49f1200d, 0xfb211f5a, 0x41358234, 0x5e410979, 0x4cee2407, 0x4b088bcd, 0xcc200e09, 0x21054c49,
0x4018ab08, 0x5d620e67, 0x11244b0f, 0xb306ab21, 0x06e85933, 0x1884ab21, 0x2610f747, 0xdb0624f7, 0x821524fb, 0x182c208f, 0x27135f76, 0x34fb0604,
0x0604f707, 0x200e5962, 0x2f2f84cd, 0xff0e0833, 0x9a197700, 0xff1574f7, 0x67e63f00, 0x292d2582, 0x00ff9a19, 0x0590c2a7, 0x660400ff, 0x2b6d8266,
0x00ff0040, 0xffcdcc0c, 0x70fd0900, 0xb3230e82, 0x83088b33, 0x82342006, 0xcc0c3140, 0xf6ffffcc, 0x00ff9002, 0xff008003, 0x00c0f1ff, 0x40831a82,
0x3d58ff23, 0x22408270, 0x82cccc40, 0xb3382751, 0xaa00ff34, 0x1082b81e, 0x82990521, 0xc210215c, 0x12223082, 0x51823233, 0xffec1124, 0x1e821000,
0x68faff23, 0x203a82f4, 0x224f8310, 0x82f668fa, 0x02002119, 0x2b07d648, 0xfffffe7f, 0x08e23aef, 0x6affff59, 0x13224484, 0xd7419a99, 0x2db3180f,
0xffff231e, 0x338219d7, 0x4cc7ff22, 0x5526af82, 0xff0566e6, 0xb083fbff, 0x0484f220, 0xff343324, 0xf582f7ff, 0xb3f2ff22, 0x01239382, 0x82086666,
0xcecc24ca, 0x83ffffff, 0x82f32099, 0x09002193, 0xff210482, 0x230e82fb, 0xcecc0d00, 0xd6271e82, 0x00ff66e6, 0x82cccca7, 0x84d12048, 0x23108359,
0x343358ff, 0xfc201082, 0xff21e382, 0x20de82f2, 0x443a83ff, 0xcc26062d, 0x0000ffcd, 0x5984cc4c, 0xffffcd23, 0x202383fe, 0x217382f3, 0x49820800,
0x00238c84, 0x8200800d, 0x57c7271e, 0xaa00ff0a, 0x48829a19, 0x5c0fd722, 0x200a554a, 0x10b943c7, 0x11823320, 0x82395421, 0x824c2004, 0xab11285c,
0xff088b85, 0x83991300, 0x0bce27e7, 0x9500ff02, 0x448248e1, 0x3769fa31, 0xc51000ff, 0x0900ff1e, 0x00ff9e0f, 0x82b81e12, 0xd7c3260e, 0x970500ff,
0x222f820a, 0x831fc510, 0x850c200a, 0xf6ff2319, 0x198414ee, 0xefffff24, 0x1e82703d, 0x71bd3825, 0x8355ffff, 0x15003948, 0x154bcd4c, 0x330f00ff,
0xd2ffff34, 0xff056666, 0x66660b00, 0x992d00ff, 0xe529aa83, 0xff066666, 0x34b36b00, 0x272282cb, 0x0666e60e, 0x1c00ff84, 0xf820c484, 0xff25e482,
0x0566e6e3, 0x223d83eb, 0x87cc4c0c, 0x8648833d, 0x80e43b3d, 0xfb0e0600, 0xf894f730, 0x14fb1554, 0x0614f707, 0x14f714fb, 0x14fb6b05, 0x07828b15,
0x7444fb21, 0x5c7c0c17, 0x026a180a, 0x18b4201a, 0x25178783, 0xff07c4f7, 0xa28280ff, 0xedffff27, 0xff8b6766, 0x069268ff, 0x4007d043, 0xbb258888,
0xfb15b4fb, 0x017f1834, 0x0a345c0c, 0x00ff8b26, 0xffcccc08, 0x4b5c1182, 0x230e8305, 0xf7088bcd, 0x00233082, 0x8204d608, 0x2907271e, 0xf8fffffc,
0xe28288d6, 0x7829f723, 0x21068308, 0x11823433, 0x29050250, 0xf7ffffcc, 0x088b3433, 0x64e2cb8b, 0x15db9b22, 0xe0b67e96, 0x83cccc21, 0x85ce86e0,
0x0e08355a, 0x99ef00ff, 0x4a00ff9a, 0xff1566e6, 0xa4f00b00, 0x0c0d00ff, 0xff2ce682, 0x00ffb81e, 0xff904214, 0x94f8f2ff, 0xf5221882, 0x0a8208c2,
0xff33733a, 0x866b0c00, 0xcaebffff, 0xfeffff3e, 0xffff9819, 0xff3d8af4, 0xcc81f3ff, 0xdf2d1e82, 0xffffc896, 0x05f8b3db, 0x112e01ff, 0x09625fec,
0xff85ab26, 0x7a540e00, 0x46050b46, 0x156a0c12, 0xce4c3007, 0x07c2fb08, 0x99dfffff, 0x2300ff99, 0x8205d663, 0x3d0a2157, 0x8f826b82, 0xc0ebff24,
0x7b828c00, 0x7f71fd22, 0xf2223b82, 0x1b8252f8, 0x2121a184, 0x21878248, 0x9c82e2ba, 0x8256ee21, 0x34f32d1f, 0x5700ff08, 0xffff9a19, 0x05f6e89f,
0x1e213b82, 0x271582b9, 0x00ff70bd, 0x8ba4f016, 0x2f820f82, 0x420d0023, 0x27258290, 0xff25e658, 0xc2f56000, 0xd0332582, 0xffff6666, 0x159a19d5,
0x40cdffff, 0x00ff0600, 0x84486149, 0x241b8204, 0xfff02709, 0x2b048400, 0xffe8bb02, 0x06c10d00, 0x0cfbffff, 0x0b231e82, 0x890852f8, 0x268f820a,
0x00ffb648, 0x821ec507, 0x34332c6f, 0x14fb088b, 0xefffff06, 0x508b3233, 0x9f4809d6, 0x050d410d, 0x34b3f128, 0xab1100ff, 0x91828b86, 0x82c03221,
0x06cb5e7b, 0x82b89e21, 0x5da818fe, 0x44fd2209, 0x26578218, 0x00fffa3e, 0x82b8f304, 0xae07216b, 0x0a872f82, 0xb727fc82, 0xf8ffff4a, 0x8397e23a,
0x197f2246, 0x22c2829a, 0x82008013, 0x4c0e22ef, 0x10fc44cc, 0x3411326a, 0x992c00ff, 0xce00ff9a, 0xff1533b3, 0x9002b0ff, 0x19a000ff, 0x2c7f8299,
0xfff628f5, 0x5ecf1500, 0x70dcffff, 0x83bd82a4, 0xeaff240f, 0x8208a230, 0xac072625, 0xe65fffff, 0x36258267, 0xff1018f8, 0x0a17f0ff, 0x670600ff,
0xecfffff0, 0x00ff85ab, 0x825ccf0f, 0xcd0c2290, 0x200a8208, 0x27b082de, 0xfff713f8, 0x862b1300, 0x71262382, 0x0700ffec, 0x1882d6e3, 0x8283e021,
0x2707221e, 0x27a1826c, 0xff05d763, 0x146e5800, 0x1083b882, 0x9cf1ff23, 0x2c108229, 0xff8c2c06, 0xeb91f3ff, 0xcb1100ff, 0x2bf582c6, 0x00ff5c8f,
0xffc2f512, 0x53780900, 0x0f223a82, 0x4a83c4ca, 0x5482d720, 0x82666621, 0x1866205e, 0x2207fed4, 0x8266e60f, 0x338332a2, 0x2900ff32, 0xff1567e6,
0x34331000, 0xb32000ff, 0x27538232, 0xff523810, 0xb85edfff, 0xdf23b882, 0x82067a94, 0xeeff2fd5, 0xff0e1516, 0x9a999700, 0x0c9601ff, 0x728215cc,
0xff48e12b, 0x90420d00, 0x0fe9ffff, 0x2021825c, 0x22c283f3, 0x8270bdf2, 0xe6a82754, 0x9fffff66, 0x3e82f8e8, 0xba29f330, 0xf0f2ffff, 0x0000ffa2,
0xffff00e0, 0x6382b3eb, 0x31080d22, 0x1921a782, 0x229d829a, 0x421f050d, 0x227005a4, 0xe8002705, 0x0b00fff6, 0x588233f3, 0x82540321, 0x8220201e,
0x230027ad, 0xfb05506d, 0x628207c2, 0xac83ee20, 0x520e996b, 0x00230b0b, 0x4acc4c0e, 0xff280647, 0x34332d01, 0x2000ff07, 0xff23f482, 0x829a99dc,
0x750b22d4, 0x26b582c3, 0x00ff8e82, 0x4dc23514, 0x0d2706ac, 0x00ffcd8c, 0x82c06a0c, 0x070d226b, 0x827b83ae, 0x8200209f, 0x140023c9, 0x99821e45,
0x82aa1121, 0xce0c218a, 0x022ad383, 0x6000ffd2, 0xff05900d, 0x53822801, 0xf389fe23, 0x3d094334, 0x41705221, 0xff2405e2, 0x8bec11f3, 0x7f226082,
0x0c438e17, 0xffff2405, 0x43e2faff, 0x99210710, 0x1003109a, 0xaf2d9b01, 0x34f734f8, 0xa0ffff15, 0xff0666e6, 0x14915cff, 0x17848b20, 0x2206d645,
0x4486abf1, 0x5f2208c8, 0x43189a19, 0x44180c47, 0xe47b0a8d, 0x34b32108, 0xee283886, 0x088bcc4c, 0x94f714f7, 0x20206c82, 0xe6566c91, 0x0635450e,
0x8884ab21, 0x86df206c, 0x8228826c, 0x187c201c, 0x85142371, 0x827c206c, 0x256c83af, 0x14fc54fb, 0xd5ae6b15, 0xd188ab20, 0x870e207d, 0x99f222d1,
0x20d1929a, 0x20d19e60, 0x083e417b, 0xd1888520, 0x3e419f20, 0x847b2011, 0x08852165, 0x2a176471, 0x6666e0fe, 0x4c55ffff, 0x57ff15cc, 0xdc2205ea,
0x81479a99, 0xff32210b, 0x11e87218, 0x0ba46b18, 0x47059771, 0x54360d81, 0xffff057a, 0xff21b0f9, 0x0ce20600, 0x5ff7ffff, 0x0300ff3b, 0x09823c7f,
0x8b7b5429, 0xf8ffff08, 0x828bef47, 0xbe3f2605, 0x38fdffff, 0x262a8210, 0xffff29dc, 0x47f45dfa, 0x47213ea0, 0x06a047ff, 0x9a195728, 0x176000ff,
0x9248050a, 0xc4f42220, 0x2f23829c, 0xffff1cef, 0xffcccceb, 0x9819ffff, 0x0e087e7f, 0x216dc142, 0x5342fb4b, 0xf7cb22ce, 0x68914314, 0x77feff27,
0xffff9a99, 0x2b7d47f6, 0x473d2a21, 0x0721117d, 0x077d47ae, 0x19240631, 0x5efaffff, 0x0700fff8, 0xffffbfbf, 0x820c37fd, 0x52b82909, 0x00ff088b,
0x8b08ac08, 0xa02b0582, 0x0300ffc5, 0x00ff0481, 0x825c4f06, 0xd2e22104, 0x21089447, 0x94478c6c, 0x7a542128, 0x11234a82, 0x4a0834b3, 0x944705ed,
0x8297200a, 0xffff2d9d, 0x331400ff, 0xff988a34, 0x01000c00, 0x22098847, 0x4700ff32, 0x072d1588, 0x6000fff0, 0x0e057a14, 0x94f7d4f7, 0x06f06315,
0x820e0021, 0xf2ff23a0, 0x2e630a97, 0xcb082105, 0x19225682, 0x3c63059a, 0x116d630b, 0x0e64ff20, 0xffff2407, 0x835c4fee, 0x056023f6, 0xac82071e,
0xa4300b26, 0x27faffff, 0x0a2d6882, 0xffff0a57, 0xffc876f6, 0x5ccf0500, 0x210a8208, 0x0a821078, 0xfff0c726, 0xfa1ef4ff, 0x6821a182, 0x21138232,
0x2d82ec11, 0x08bedf2c, 0xefffff6b, 0xff05f668, 0x8c83f0ff, 0x00e0f731, 0xe1f9ffff, 0xecffff48, 0x00ff5caf, 0x84b81e08, 0x82082018, 0xc2b5213f,
0xff263f82, 0x0b00ff7e, 0x23829a19, 0xeb82b320, 0x206f0b20, 0x99d02305, 0x5918079a, 0x6e180be6, 0xd3290a19, 0x66c0ffff, 0xffff1566, 0xb71e19cf,
0x8fdb2116, 0x162a6682, 0xffff6626, 0xff72bde0, 0x0e821f00, 0xa1f2ff23, 0x32b58246, 0xff6851f8, 0xfafef7ff, 0xf5ffff05, 0xffffae47, 0x820ad7f4,
0x826120bb, 0x82ee209a, 0x0b00220e, 0x23e48227, 0x08ec51f5, 0x75219a82, 0x2dcb82a2, 0xff9282d5, 0x6666fdff, 0xe60600ff, 0x16828b68, 0x1058072b,
0x0700ff8b, 0x00ff4260, 0x23d68202, 0x52780500, 0xc0212b82, 0x2b1a8200, 0xff289c45, 0xae874800, 0xfd1300ff, 0x0c227582, 0x29822adc, 0xf4682a22,
0x00261a82, 0x00ff8e02, 0xe2827931, 0x9a99d827, 0x802600ff, 0x23bc8500, 0x04fb8b08, 0xf223c782, 0x828b1ec5, 0xe23a2490, 0x830a00ff, 0x0d00240a,
0x8208e23a, 0x8406823c, 0x82048611, 0x8382830e, 0x23118506, 0xe23af5ff, 0x3e823882, 0xff202d82, 0x44820682, 0x85343321, 0xf2ff2c49, 0x088bcccc,
0x00ff44fb, 0x82ce4c2f, 0x53f72263, 0x252a82f8, 0xff3b5ff7, 0x7e83fcff, 0xa4b0f932, 0x1ef9ffff, 0xffff08b8, 0xff299cdf, 0x7a94dcff, 0x3b440246,
0xffcd0cf4, 0x90020d00, 0xc0ebffff, 0x0000ff00, 0xffff66e6, 0xffe1faf2, 0x1a0ff4ff, 0x3171eb45, 0xff02abfb, 0x8aa10500, 0x33f8ffff, 0x0200ff33,
0x0982cecc, 0x8bcd4c23, 0x33031008, 0xff2a1a02, 0x70fd9ffe, 0xe6af00ff, 0xfe451566, 0x0080220d, 0x06fe45ff, 0x0848e122, 0x2305bc45, 0x866b2300,
0x2107fe45, 0x3256cc4c, 0xf1ff2305, 0xad5786ab, 0xc5102808, 0x00ff8b1f, 0x83e23a0f, 0x07fe451b, 0x07c2f725, 0x822100ff, 0xdcff242f, 0x45059a99,
0xff2a0afb, 0x9a19ffff, 0x0b00ff98, 0xff4567e6, 0x0a172227, 0x23824e05, 0x2583f620, 0xff3d2a27, 0x14eef2ff, 0x06824eff, 0xffcecc27, 0xae070d00,
0x316a827f, 0xffd72306, 0x6666faff, 0xc00700ff, 0xfdffff00, 0x00473233, 0x680e2006, 0x152306b9, 0x820774f7, 0xab1123c8, 0xdf82ff85, 0x38828520,
0xb3626e20, 0x05427a06, 0x8b7b5422, 0x1d831885, 0xef260a82, 0xff08e13a, 0x266820ff, 0x46481805, 0x91f22209, 0x06bd5eec, 0x8206cb21, 0x33b32608,
0x33feffff, 0x065a5534, 0x00800d22, 0x12286282, 0xf8080080, 0x1573f714, 0x2c08db71, 0x00ff1e85, 0xffe27a15, 0xe27ae5ff, 0x2255828b, 0x8200806d,
0xc516213c, 0x25251682, 0x00fff4e8, 0x23b2820b, 0x52f82a00, 0x0f223082, 0x2082d823, 0xe2faff32, 0x941700ff, 0xedffff7c, 0x00ff0080, 0x6c1e8518,
0xc0223783, 0x2282b8de, 0x20c52431, 0xd9b3ffff, 0xaeffff9a, 0xfffff528, 0x82cc8cbe, 0xb3ef2831, 0xff057e33, 0x8233f4ff, 0x80f62290, 0x21e48200,
0x218219f2, 0x67e6ff23, 0x2a4f847d, 0xffffff02, 0x00ff02fa, 0x84fe0500, 0x838b2004, 0xe6ff254f, 0x0534fb66, 0xf02aec82, 0x00ff66e6, 0xffee1c07,
0x5c82f1ff, 0x0c002108, 0xffff4516, 0x08a2f0f6, 0x232200ff, 0xe6ffffd7, 0xff05f668, 0xf6a81b00, 0x2eebffff, 0x2100ff16, 0x2005c75d, 0x211e82cc,
0x48829899, 0xb33a0023, 0x22d08234, 0x821e851a, 0x22e8839e, 0x83781500, 0x821a23cc, 0x11820890, 0x90a20322, 0x84207d82, 0x03227882, 0x09820c82,
0x57823c20, 0x30680322, 0x132d0582, 0x00fffa3e, 0x991e4506, 0xcc1100ff, 0x202a82ce, 0x05137415, 0xe4250931, 0x4dfdffff, 0x0800ff92, 0xffff4476,
0x82d88efb, 0x2045219e, 0x16273182, 0x00ff303d, 0x5cb81e04, 0x00230554, 0x82008013, 0x85172035, 0x800c2235, 0x2b2b8200, 0x00ff641b, 0xffae470b,
0x4a2cf8ff, 0x8a213f82, 0x2735823e, 0xff86eb18, 0x14ae0100, 0x2206bb5b, 0x829a9914, 0x82192035, 0xeb0e2835, 0xf59f01ff, 0x614b15c2, 0xff300c95,
0x8b16aef1, 0x38efffff, 0xffff0850, 0x0768e620, 0x2209fa4d, 0x42ffff7b, 0xab210e02, 0x714b8285, 0x542105c2, 0x210a827a, 0xa783c510, 0xc235de22,
0x20056e42, 0x078a4c86, 0xffea5123, 0x051f5aff, 0x4c730129, 0x2fffffcc, 0x82150bd7, 0xcecc21d5, 0xb882a482, 0x2205225e, 0x82cd4c0b, 0x20c88242,
0x22068208, 0x82527817, 0x48212184, 0x7326b582, 0xe9ffff34, 0xfa82e0ba, 0x82842b21, 0x700422cf, 0x263a82a4, 0x00ffc235, 0x8434b302, 0x958b213f,
0x152e3183, 0xff7dec51, 0x28dc1100, 0xc0ecffff, 0xa772ff00, 0x00002205, 0x210a82c0, 0x68828c02, 0x68830020, 0x90820322, 0x03225c82, 0x531846a1,
0xea2008a0, 0x15201683, 0xe5236d83, 0x828b0080, 0x4fc528f3, 0xffff065c, 0x82d863dd, 0x54de32f8, 0xf4ffff7a, 0xffffaec7, 0xff5c4fe4, 0x703debff,
0x211a8208, 0x164229dc, 0xf3ff2d06, 0xffff67e6, 0xffa4f0f6, 0x66e6f8ff, 0xba21ec82, 0x223482e2, 0x82ccccf1, 0x1b0026a6, 0x0534fb7f, 0x420f828b,
0xff210c7b, 0x830e82ff, 0x8211201e, 0x02f22209, 0x2ba78290, 0xffff7e0d, 0xffcc0cf2, 0x79c90b00, 0x94214d82, 0x3a1e827a, 0xffcd4c10, 0x52f8f2ff,
0x5100ff05, 0xfffff2e1, 0xff0c97bd, 0x3233dbff, 0x82b3ffff, 0x3f002368, 0xaa829a19, 0xf51e0023, 0x21cd82c2, 0x45828212, 0x1e851822, 0x17220a82,
0xd8830a97, 0x82260f21, 0x3df4318c, 0x2a00ff70, 0xffff52f8, 0xff723de9, 0x66e62500, 0x92225782, 0xac42cc8c, 0x192a081a, 0xffffd863, 0xff3433ec,
0x9a991400, 0x19e7ffff, 0x0100ff98, 0x0e0833b3, 0x00ff70fb, 0xff006009, 0x9a997600, 0x0c00ff15, 0x04838f82, 0x14227682, 0xc7820040, 0x82e0fa21,
0x717d260e, 0x82f3ffff, 0x20648290, 0x27298249, 0x9a99b6ff, 0x7201ff05, 0x22059772, 0x6ea4b011, 0x0e22060f, 0xcd4a5c4f, 0x6e278205, 0xff261411,
0x34338dfe, 0x9755ff07, 0x18a9730b, 0x2105077a, 0x4718f3ff, 0xfb20126a, 0x82059673, 0x1895821a, 0x29125646, 0x14f714fb, 0xf3ffff05, 0x4482b87e,
0x18ea9121, 0x83100168, 0x360121f2, 0x22092575, 0x82707df3, 0x49e3832d, 0x05210519, 0x84ed841e, 0xff0825f7, 0x66a6b6ff, 0x4c22b282, 0xbe8205ce,
0x6f050e75, 0x01222bbf, 0xf282b372, 0xa1b6ff23, 0x74498248, 0x1a1938da, 0xed820781, 0x830c0021, 0x76881804, 0x06d7740e, 0x54190c20, 0xe341182a,
0x99d62306, 0x4b9f159a, 0x821a7941, 0xcdac21c2, 0xa6210482, 0xa1aa1866, 0xec5b1812, 0x10e37011, 0x4c8dfe29, 0x00ff06cc, 0x82476149, 0xb89e2144,
0x0e126a18, 0x0ebe4818, 0x8f82f322, 0x21058741, 0x1983ebff, 0xe0faff22, 0x2405a541, 0x90820c00, 0x07e34108, 0x82ec7121, 0xae8721ae, 0x2711e341,
0x99f601ff, 0xa900ff9a, 0x4109c675, 0x702006e6, 0x2107004b, 0xe6412005, 0x7c702008, 0x56760e86, 0x7349220e, 0x21b48232, 0xac189a59, 0xd0551297,
0x2083820a, 0x22728312, 0x415c4f0e, 0x00290542, 0x8ba4b011, 0x7201ff08, 0x23f482cc, 0xb89eb6ff, 0x61214482, 0x06dc7648, 0x4316c176, 0xe141180f,
0x146e2107, 0x7822b582, 0xc5828b52, 0x82cccc21, 0x0280210a, 0x00290483, 0x70fb0e08, 0xf4f734f7, 0x0e821815, 0x4050180b, 0x08b3470a, 0x79008021,
0xe622068f, 0x9c826666, 0x80e5ff23, 0xddb01800, 0x82118211, 0x062a4417, 0x3283ea20, 0x26821a20, 0x00ff082c, 0xfb9a199b, 0xffff1543, 0xe382cfc2,
0x34f36122, 0xee2acc82, 0x00ffd763, 0xff66261c, 0x2883e1ff, 0x82e61021, 0xb3de2809, 0x72088b33, 0x83ffff06, 0x23188208, 0xffffcd8c, 0x27050863,
0xffff5c4f, 0x08cccce3, 0xd0264282, 0x9effff21, 0x42829a19, 0x00a0f628, 0x0400ff7c, 0xa1440d90, 0xf80e2706, 0xf6ffff24, 0x708232b3, 0xae070f22,
0xa0200a82, 0x1322b482, 0x238352b8, 0x00ff2035, 0xff0a5709, 0x84000f00, 0x2000ff08, 0x00ffb89e, 0x82a43034, 0x5cd32b44, 0x7cffff29, 0xb30552b8,
0xd8462b06, 0x19f1200d, 0x53084ab0, 0xff21059b, 0x0efb5300, 0x9b07eb22, 0x0a47339d, 0xab11360e, 0x07eb0886, 0x002800ff, 0xffff0601, 0xff713dd4,
0xcd4c8300, 0x268e8205, 0xffff47a1, 0x82afc7cb, 0xd407220a, 0x2bb8827a, 0x00ff5038, 0xff00800a, 0x34b3faff, 0x99220982, 0xb4828b9a, 0xf0c7052d,
0x0500ff8b, 0x00ff06e1, 0x82e08f01, 0xae472609, 0x4c0300ff, 0x221a8208, 0x83c2f50e, 0x824c20df, 0x9a9921e9, 0x3a05d547, 0x9a99f6ff, 0xfb0e089a,
0x3b01ff70, 0x45f79a19, 0xb9ffff15, 0x00ffa470, 0x829a1970, 0x42f422f5, 0x8226828f, 0xebff2b2b, 0x00ff33b3, 0xffcc4c0b, 0x727fe9ff, 0x66c32305,
0x0c820666, 0x8baec72b, 0xb0ebffff, 0xf4ffffa4, 0x218882c0, 0x048240f4, 0xf628ed23, 0x26468208, 0xfffff873, 0x410a178f, 0xff240581, 0x1e05f1ff,
0x902b7782, 0xecffff21, 0x00ff9042, 0x82d5f80e, 0x48a121c1, 0x0f219682, 0x22348200, 0x8200a0f6, 0x2243826a, 0x41900400, 0x1c270d85, 0x00ff48e1,
0x82142e2e, 0x18ff2148, 0x22233482, 0x480552b8, 0x81410c5a, 0xf78b2720, 0x069b0524, 0xb84124fb, 0x1284411b, 0xdd00ff3a, 0xff073433, 0x47e11c00,
0xccd1ffff, 0x00ff05cc, 0xffecd107, 0xcc4cf6ff, 0x26467741, 0xe664ffff, 0x4343f766, 0x69482956, 0x1c564306, 0x00801524, 0x5643ffff, 0xf70e3309,
0x2001ff94, 0xff1566e6, 0xe1facaff, 0xd5ffff8b, 0x048285eb, 0x821f0521, 0xe1cb230a, 0x06840847, 0x00ff4831, 0xff343329, 0x5238d3ff, 0xe63500ff,
0x85088b66, 0x29168506, 0xe2fa2a00, 0x3400ff8b, 0x2d82b81e, 0x3f820683, 0xff66e627, 0xaec72c00, 0x27298356, 0xffcc4cfd, 0x9a1944ff, 0xc02c6282,
0x00ffcecc, 0x0566e65b, 0x263f00ff, 0x5b222282, 0x0a829002, 0xfc540626, 0x200900ff, 0x21089782, 0xffa4c5fa, 0x729d0c00, 0x11f5ffff, 0x0100ffec,
0xfb08e0fa, 0x1300ff01, 0xff0534b3, 0xcc4cecff, 0x078201f7, 0x8206fe21, 0x0a210839, 0xffff14ee, 0xff9062f3, 0xe03a0500, 0xdef6ffff, 0xf9ffffb8,
0xff08fca9, 0xfafea4ff, 0xf4bfffff, 0x222982bc, 0x829a19a4, 0x6e272168, 0xf6270a82, 0x00ff00e0, 0x83fe5406, 0xff8f2a34, 0x66c6faff, 0x05feffff,
0x2068831f, 0x273482aa, 0xff5138ed, 0xc2f592ff, 0x05822982, 0xce206b83, 0xf5220a82, 0x2582b012, 0x82981921, 0x60c5212f, 0x4c203982, 0x4384bd82,
0xccccf723, 0x20598308, 0x216e826d, 0x29829a19, 0x99d9c022, 0xfd210a82, 0x220a8270, 0x8202abf9, 0x226e838f, 0x861d3a05, 0xed0a22a3, 0x244882d3,
0xf7081e05, 0x82c78401, 0xb31323f4, 0xcd82fb33, 0xf9010023, 0x22ed869a, 0x83709d0c, 0x711e2068, 0x00230568, 0x82045606, 0x045b2263, 0x27c28619,
0x90025b00, 0xd9c0ffff, 0x00236e82, 0x82842009, 0x80aa35ee, 0x9f0c00ff, 0x0500ff7c, 0x00ff1c3a, 0xff52f801, 0xd2ed0a00, 0x13253482, 0x01f734b3,
0x416b8205, 0x00230539, 0x8250f80a, 0x92ed211f, 0x33212982, 0x21338232, 0x3d8232b3, 0x8234b321, 0x9a192168, 0x0220fc82, 0xff320a82, 0x1566e6db,
0x4fb9ffff, 0xffff8b5c, 0xff0a97c7, 0x0a833900, 0xca450023, 0xf3ad183e, 0x25118208, 0x683800ff, 0x1583fff6, 0x85088b21, 0x24288406, 0xb3c6ffff,
0x22388232, 0x823433ba, 0xb9ff232d, 0x4482cc4c, 0x869a9921, 0x310e8204, 0xab0e088b, 0x8b1554f7, 0xcc7b00ff, 0x6400ffcc, 0x0482cd4c, 0x81823320,
0x00807b22, 0x0b224983, 0x1b82295c, 0x0a57122a, 0x54feffff, 0x0b00fffe, 0xff231b82, 0x8208ecfd, 0x9d092264, 0x351482b2, 0x00ff1639, 0xff4e2202,
0xa225f3ff, 0x87f7ffff, 0xfbffff6c, 0xbc82a430, 0x6005c931, 0xafe0ffff, 0xdeffff9e, 0xffff3333, 0x8266e6c5, 0xccc02287, 0x208783cd, 0x25668392,
0xffc3b563, 0xe282acff, 0x836c0021, 0xb31422d6, 0x3a548332, 0x00ff9e8f, 0xff14ce01, 0x10b80600, 0xdef4ffff, 0xf9fffffa, 0xffff7ad4, 0x82be5ff8,
0x4ad62c54, 0xccffff3e, 0xffff3473, 0x8266e6c0, 0x22ca835e, 0x820100bb, 0x84ff23a9, 0x6082cd4c, 0x16829b20, 0x66640022, 0x00236b82, 0x829a997b,
0x189b20dc, 0x20075757, 0x5fb81800, 0x63f4200f, 0xa42b180b, 0x0654fc07, 0xf707a4fb, 0x8258f714, 0x0600213e, 0x00246682, 0xff666605, 0x0e820485,
0xf7088b23, 0x067e183c, 0x228a820a, 0x829a99fa, 0x66f9257e, 0x07830866, 0xff200885, 0x82059669, 0x82c28218, 0xfb082191, 0xff203282, 0x1e822182,
0x4c831483, 0xe7828b20, 0x9326a682, 0xf7d4f707, 0x75821560, 0x7a05d255, 0x2b820908, 0x5c4fee24, 0xa6185b08, 0x302f094a, 0xf8ffff21, 0x00ffcccc,
0x8bdfcf08, 0x1874f808, 0x20177881, 0x233282bb, 0xa4b01100, 0xb3214b82, 0x058c4b34, 0x4ceeff30, 0x0e088bcc, 0xf4f7f4f7, 0xfcffff15, 0x2282a470,
0x42f0ff24, 0xe419ff90, 0xf2271d08, 0x00ff6766, 0x8234b30c, 0xbd0f26ac, 0x00ff0870, 0x08e41903, 0xffb62608, 0xe2fa2a00, 0x077744c0, 0x0c6b4c18,
0xc9feff27, 0xffffb85e, 0x225318f6, 0x0c002308, 0x75181e85, 0x7a210d81, 0x2e4d82e2, 0x4b53f83f, 0x0000ff05, 0xffff33b3, 0x826666ff, 0x99992109,
0x4c200982, 0x0022e282, 0x09839a99, 0x2582ce20, 0xcd4c0e25, 0x830700ff, 0x7b102014, 0xff2406df, 0x34331000, 0x70207983, 0x1905ef72, 0x834784e6,
0x800c25e7, 0xf3ffff00, 0x0a859e84, 0x49008021, 0x1a83095c, 0x08008023, 0x21b5824b, 0x2883feff, 0x9b83ff20, 0x32330022, 0x6621ab82, 0x84b08467,
0x2bb582c9, 0x7f9a1906, 0xe60300ff, 0xf2ffff66, 0x0020cb82, 0x4180e619, 0x6666e722, 0x2c06d470, 0xffcecce8, 0x9a19f6ff, 0x33ebffff, 0x206b8232,
0x2a0a8302, 0xff34b3fe, 0x98190200, 0x82feffff, 0x01002128, 0xfe242383, 0xcb089a19, 0x0020ac82, 0xa77fca98, 0x82022008, 0x6575184c, 0xfe7f2c0a,
0xc0ffff08, 0x05ca66e6, 0x83e7ffff, 0x33ea25e9, 0xe0ffff34, 0xff226382, 0x788299f1, 0x1383dd20, 0x9899fc22, 0xef297d82, 0x8b073433, 0xcc0800ff,
0x069e42cd, 0x33330722, 0x4c229e82, 0x42828bce, 0x9919f828, 0xf7ffff8b, 0x1b8367e6, 0x0a83cd20, 0x82333321, 0xcc102d16, 0xffff07cc, 0xff6666de,
0x68660300, 0x33235883, 0x820e00ff, 0x236c840e, 0xcccc1500, 0xc0232482, 0x824c14ee, 0x06d84d7e, 0xbd21a083, 0x83418271, 0x0c00210f, 0xf322a084,
0x77188f82, 0x9f8208f8, 0x7d0c0023, 0x820f8471, 0x07402795, 0xff05cbae, 0x95820100, 0xe6010022, 0x02226782, 0x0e829a19, 0x0020bb82, 0x4c200985,
0xf6276283, 0x00ff9919, 0x41cecc14, 0x00230558, 0x82323317, 0x991822c9, 0x0e2c539a, 0x2521c46a, 0x4c4000ff, 0x608206cd, 0x827b1421, 0x256a83c8,
0xff86eb03, 0xd2820d00, 0x19060024, 0xce82979a, 0xd742ff20, 0x42cd200a, 0x1f8307eb, 0x33b30022, 0xbf221e82, 0xb08252f8, 0xd298ff20, 0x18068b21,
0x7817cb49, 0x2b2d56d4, 0x8b15dcfb, 0x78f6ffff, 0xfaffff10, 0x2c048258, 0xff4c57f7, 0xfa3ef7ff, 0x30fcffff, 0x27b182a4, 0xfff6e8fc, 0x34b3feff,
0xcc230f82, 0x83ffffcc, 0xfcff24df, 0x828b34b3, 0x0ffa221a, 0x263a82e0, 0xffc420fa, 0x82380200, 0x78fb313a, 0x0400ff52, 0xfb08e02f, 0xff05f304,
0xd723fbff, 0x98200e82, 0xfd281882, 0x00ff3333, 0x8bcc4c06, 0xb3220582, 0x06850834, 0xc7213482, 0x211082f0, 0x25827a54, 0x8200e021, 0x5c8f2304,
0x3983f708, 0x07070022, 0x92821883, 0x300a002d, 0x0100ff62, 0x00ffe0af, 0x8252b808, 0x00402282, 0x210a8208, 0x0a8238b4, 0xff3a3424, 0x97830500,
0x5883f720, 0x80f6ff29, 0x64fb0800, 0x468b0e07, 0x8c1805ee, 0xc3822a4c, 0x2a1d4e18, 0x2b94f724, 0x9d19c015, 0xff2e3b9e, 0xcc4cfe01, 0x191a00ff,
0xffff159a, 0xe98267fa, 0x00c01026, 0x10eeffff, 0x093be982, 0xffff0a17, 0xff5c0fef, 0x4861faff, 0xecffff08, 0xffffb89e, 0x05e08ff9, 0x83d6ffff,
0xf8632234, 0x370a8252, 0xff6826fb, 0x480c0d00, 0x4cf4ffff, 0x0700ffce, 0xffff9a19, 0x8b66e6f2, 0x9e2f3082, 0xff065238, 0x9a99f5ff, 0x00ff05bb,
0x7f2a1c41, 0x6a5c0ca7, 0xb1ff2322, 0x40821e05, 0xcc8cfe30, 0xcc0600ff, 0xffff05cc, 0xff3333fc, 0x62831b00, 0x6666e728, 0x4c1100ff, 0x148271ce,
0x08cc4c27, 0xe6e4ffff, 0x820a8467, 0x99993bbc, 0xb3e7ffff, 0x0300ff34, 0xffffcdcc, 0x0834b3e5, 0xae1700ff, 0x73ffff14, 0x89829899, 0xb99e0122,
0x9921d782, 0x83b6829a, 0x83f3201f, 0x66102109, 0x0023b183, 0x8266668d, 0xdc2c27a4, 0x94ffff2a, 0x2b829a19, 0x3c0a0524, 0x2182ffff, 0xffff9723,
0x22f383f8, 0x8234b30c, 0x030024d9, 0x828b1058, 0xe06f265e, 0x880000ff, 0x29098204, 0x00ffc856, 0x08ec1f01, 0x34829bbb, 0xaec7103f, 0x8b0500ff,
0x0900ff44, 0x00ff0200, 0xff981912, 0x6466faff, 0xcc1000ff, 0xfeff08ce, 0x349a82a1, 0x66e6d5ff, 0xc2ffff15, 0xff8b713d, 0x8fc2cdff, 0x3d3200ff,
0x23528270, 0x0890c23d, 0x36250682, 0x00ff0040, 0x26468326, 0xffcd4c2d, 0x82473300, 0x400a2250, 0x38e68200, 0xff3e0af8, 0x33332f00, 0xb5ffff05,
0xff7dc2f5, 0xa4f0c7ff, 0x19bfffff, 0x2247829a, 0x8266e6b1, 0xa7ff263c, 0x00ff48a1, 0x28048247, 0xb85eb8ff, 0x5e5800ff, 0x20b283b9, 0x23e1824d,
0x804000ff, 0x362c5882, 0x00ff52f8, 0xff66e60e, 0xae074900, 0xce215382, 0x26f582e6, 0x3433f1ff, 0x82d1ffff, 0xd5ff2115, 0xde22a083, 0x99829a19,
0x08243482, 0x1504f8ab, 0x0d644918, 0x16646f18, 0xff707d23, 0x127d4cff, 0x0830af18, 0xe520a282, 0x00202382, 0x21057d4c, 0x29509082, 0x0e082605,
0x00ff70fb, 0x236e826f, 0x66e60001, 0x70226982, 0xbe7867e6, 0xff672a1c, 0x33b3f1ff, 0x99f2ffff, 0x07f85599, 0x198fff28, 0x076b0699, 0x3b9200ff,
0x7682ce20, 0x3233ef23, 0x0cfa7808, 0xe283f120, 0x27053456, 0xcdcc8eff, 0xfdffff06, 0x2305b84e, 0xf8ffffcc, 0xea215c83, 0x25fe8299, 0xff6666f4,
0xd672ecff, 0x81ff7805, 0xec910525, 0x820900ff, 0x03002da6, 0x00ffa4f0, 0xff9a190a, 0x142e0200, 0x80270982, 0xffff0800, 0x5771fdf1, 0x41460c6b,
0x069b2221, 0x113579ab, 0xff8bcd23, 0x378f1800, 0x5a332008, 0x4a8205b7, 0x2707df6e, 0x00ff069b, 0x079a991f, 0x35792582, 0xff3a08aa, 0xffff9919,
0x05cc4ce1, 0x00ffef0e, 0x6b9a1981, 0xfeffff15, 0xeb0666e6, 0x0674f707, 0x3395ffff, 0xbfffff33, 0xff0566e6, 0x3333ddff, 0xd8ffff77, 0xffff3433,
0xff9a19f4, 0x9a4cd6ff, 0xe6de2705, 0x15f4f766, 0x318274fb, 0x0100ff28, 0xff069a19, 0x19822900, 0x2700ff24, 0x2982cccc, 0xff52f82f, 0xcdcc2200,
0x1cebffff, 0x00ff082a, 0x300a836a, 0x0584ebbf, 0x158b8cfb, 0x331a00ff, 0x00ff8b33, 0x26648317, 0xff6666f3, 0x82990e00, 0x99ec2558, 0xb4f7089a,
0x45224782, 0x1d82cc4c, 0x82b34121, 0x4ce92571, 0x2c00ffcc, 0xc5227b83, 0x47829a19, 0x64660625, 0x83f7ffff, 0xf4ff2167, 0xf9221583, 0x0f849c99,
0xffff0823, 0x827783d3, 0xffff2225, 0x203482be, 0x263983ff, 0x34b3baff, 0x82fb088b, 0xf1ff2153, 0xff206682, 0xff226182, 0x8a83e8ff, 0x0e83f320,
0xcdcce529, 0x0683088b, 0x6f7b072b, 0xa2530ccb, 0x07bb220a, 0x191a8293, 0x23095d0e, 0x66e61100, 0x16209a82, 0xf7228b82, 0x09850744, 0x1100ff24,
0x0482d7e3, 0xc782e620, 0x95691620, 0x0af82405, 0x83bb063d, 0x02e6181e, 0x829b2013, 0x28558270, 0x66667401, 0xffff153b, 0x22a282fc, 0x82feffff,
0x2004833d, 0x2510848b, 0xa8ffff08, 0x4082cccc, 0x4afdff21, 0x892606b6, 0x4c0300ff, 0xc44e8bcc, 0x20778205, 0x202f820f, 0x82048200, 0xb313220a,
0x20168234, 0x202f8418, 0x250c8200, 0x19f0ffff, 0x1c83ff9a, 0xecffff22, 0xb2483383, 0x47a1210c, 0x08c21e19, 0x82b85e21, 0xa1dc220a, 0x87411848,
0xb89e2407, 0x821c00ff, 0xe3ff2d04, 0x00ff4861, 0x8b486123, 0x06d4f708, 0x19850985, 0x71821e83, 0x19821a82, 0x00279e82, 0xffb85e23, 0x8266e3ff,
0xa11c2df9, 0xdcffff48, 0x088b9a99, 0x15c4fb8b, 0x20066952, 0xd56d18ff, 0x94fb210e, 0x210e8f43, 0x4e827a54, 0x86ab1122, 0x6e3cc082, 0xff079a19,
0x00808a00, 0xbabaffff, 0x00ff05e2, 0xffcdcc06, 0x84abfcff, 0x4c0700ff, 0xfe220982, 0x0982cc4c, 0x20059446, 0x82068207, 0x8259200c, 0xb00122e6,
0x262a8220, 0x00ff52b8, 0x82e85b03, 0x878a2d46, 0x4500ffae, 0xff05c640, 0x66e691ff, 0x0682a383, 0xffff152a, 0xff333367, 0x7a94b3ff, 0x21076573,
0x6882c0fd, 0x21b0fa22, 0xfb28a982, 0x00ff8380, 0x08004002, 0x1c262582, 0x4c00ff29, 0x7e82866b, 0x8f820e20, 0xdc749c84, 0x69942012, 0x59180c83,
0xff220a7b, 0x7482f1ff, 0x00ff0e2c, 0xff6666f3, 0xba69bd01, 0x98829315, 0xff127328, 0x34330900, 0xcf82938b, 0x08ee8c30, 0xffff74f7, 0x053cff9f,
0xf9ffff99, 0xc78270fd, 0x7ccecc22, 0xe6211982, 0x233d8264, 0x88083433, 0x32480682, 0xff682f05, 0x3233f6ff, 0xe6efffff, 0xffffff66, 0xdb4e9a19,
0xb3f22205, 0x22178634, 0x82cc4cf5, 0xcecc262b, 0x24fc088b, 0xa9e51806, 0x8234200e, 0x4c0d25bb, 0x079308cc, 0xb5212282, 0x075c62c2, 0x82e3e521,
0xcecc218a, 0xf1276e82, 0x0e00ffde, 0x830866e6, 0x82f9200a, 0xcccc210a, 0x22088982, 0xff9abcd4, 0x04f60d00, 0x020600ff, 0x00ff0890, 0xff8f02e0,
0xc4006000, 0x0c00ff05, 0xffff9a99, 0x18469682, 0x211b3359, 0xee4e84ab, 0x82542007, 0x4cee23d1, 0x5e828bcc, 0x22110c69, 0x6c087c54, 0x7682059f,
0x86cd4c21, 0xb3112232, 0x242d8333, 0xfb9a197f, 0x306382b4, 0x06010028, 0xcb0754f7, 0x0754fb06, 0xe63000ff, 0x200d8866, 0x240985b3, 0xb33bffff,
0x201a8234, 0x22978300, 0x8232b3ff, 0x230982e1, 0x00800000, 0x98280983, 0xb3feffff, 0x6bbb0834, 0x0b26b982, 0xffff34b3, 0x218233f8, 0x82330521,
0x66f12c09, 0xfbffff68, 0xffff66e6, 0x820080f2, 0x220a879f, 0x82f3ffff, 0xf6ff2340, 0x9182cccc, 0x8266e621, 0x3ffe238c, 0xf3189a19, 0xf3250840,
0x00ffd98e, 0x23408309, 0xfffce9fb, 0x22061875, 0x84bae9fb, 0x00ff240a, 0x82e13a05, 0x98992ecd, 0xbc0b00ff, 0x0700ff29, 0xbb08cecc, 0x277c82ab,
0xffec9100, 0xcc4c0100, 0x97249482, 0xffffff0a, 0xff239e82, 0x82a4b0ff, 0xce4c270e, 0xc400ff08, 0xe385cc4c, 0xffef0e2f, 0x98196f02, 0x193701ff,
0xfeff159a, 0x233183e5, 0x05323365, 0x4526a582, 0x0400ff1e, 0x9582f6e8, 0x8bae0722, 0x20200f83, 0x172cbf82, 0xfeff080a, 0xff7c14e6, 0xcecc9aff,
0xf6222582, 0xac645463, 0xdf8f2207, 0x82c583ff, 0x99f5232a, 0x0685089a, 0x0600ff24, 0x16822170, 0x8200c021, 0xac9c21c4, 0x8f212a82, 0x277e825c,
0xff1f053c, 0x707deaff, 0xf4314082, 0xffff291c, 0xff3333f0, 0x47a1f7ff, 0xa3edffff, 0x2c6582d7, 0xffffc3b5, 0x08c235ec, 0x87f4ffff, 0x210f82ae,
0x1e826826, 0x2382f320, 0x9a99f422, 0xf2225882, 0x5f83cccc, 0x820cf621, 0xd004224a, 0x211b8262, 0xfb828876, 0xff422026, 0x4821faff, 0xe7243582,
0x29fb852b, 0xfe225c82, 0x7c82b85e, 0x828e4221, 0x8285201c, 0x19f72271, 0x2286829a, 0x828bd7e3, 0x383a2337, 0x0c830652, 0x838b1321, 0xffe4271c,
0x06e10800, 0x3083ffff, 0xc0090023, 0x20438542, 0x2d4382f7, 0x48210700, 0xde0500ff, 0x0400ffb8, 0x31825ccf, 0x82666621, 0x19092131, 0x0023e183,
0x823e4a0a, 0x75d32172, 0xbd263d82, 0xf8ffff70, 0x2a823974, 0x822adc21, 0x4004275e, 0x1100ff83, 0x19828fc2, 0xffc5a029, 0x5d0f1000, 0x830c00ff,
0x830d2004, 0xbe002ed6, 0xffff9a99, 0x051ec5bb, 0xba0d00ff, 0x26e182e2, 0x00ff0a17, 0x8252f80e, 0xba0d225a, 0x2c6a82e0, 0xff08f6e8, 0x34b31a01,
0x336500ff, 0x26258234, 0xff64a609, 0x82820300, 0x660622c9, 0x21858268, 0x2a823433, 0x14600a20, 0x24068205, 0x99f9ffff, 0x24168498, 0x80f5ffff,
0x302a8200, 0xff080080, 0x0200f0fe, 0x804effff, 0xffff1500, 0x227183f6, 0x82cc4cfc, 0x3233211f, 0x1920e882, 0xf5238082, 0x828b9a19, 0x14f523e9,
0x90668b7a, 0x01002305, 0x0982f4dd, 0x82a4b021, 0x20b02140, 0x6e301a82, 0x00ffcdcc, 0x05ecf133, 0x33f1ffff, 0x71ffff33, 0x2b828c82, 0x32b3d625,
0x835500ff, 0x82de2042, 0x6a002356, 0x478266e6, 0x82690021, 0x00ff294e, 0xff66e656, 0x66662100, 0x29229f82, 0x43821e45, 0x5238f127, 0xe68e00ff,
0x35438266, 0xff48e16d, 0xb007ccff, 0xf8ef0e05, 0x15b0f754, 0xff948b96, 0x3d82f7ff, 0xf4ffff29, 0x87089a19, 0x8e06c707, 0x808b2812, 0x8b808282,
0x82068908, 0x23f882b2, 0x0080fbff, 0xf7384782, 0xffff9819, 0xff6666e8, 0x6666f2ff, 0xeeffff74, 0xffffcecc, 0x083433ed, 0x22066f44, 0x850080ff,
0x00002309, 0x0985cc4c, 0x99feff23, 0x201e829a, 0x279d8212, 0x34b3f4ff, 0x0900ff05, 0xff292482, 0x8ecc4cfa, 0xb3f3ffff, 0xac471834, 0x82082009,
0x206a830a, 0x821f83f6, 0xff882219, 0x230a83ff, 0x32b30500, 0xed201a82, 0x00237a82, 0x82ce4c0b, 0x83fb2085, 0xb30222fb, 0x06d25932, 0x84830220,
0x9a99fc23, 0x2025828e, 0x203b83f5, 0x210483f8, 0xaa8299f4, 0x0080f923, 0x2125827f, 0x1a829899, 0x824cfc21, 0x66fe22ab, 0x20408268, 0x828c83f5,
0x24fd82d1, 0x00ff3433, 0x832a8304, 0x0a00230e, 0x29829a19, 0x19850a87, 0xcc0b0022, 0x1982ca82, 0x80210e82, 0x20ca8200, 0x227e8303, 0x829a9901,
0x660625ca, 0x0200ff66, 0x00214d82, 0x24488406, 0x00ff9a19, 0x820e8305, 0x20488293, 0x220a83f3, 0x8232330c, 0x83f82072, 0xcc07261a, 0x00ff8bce,
0x216e820c, 0x1a830700, 0x4f820f82, 0xff200582, 0x19820f85, 0x0f831f82, 0x2f82ff20, 0x0e201a82, 0xff236a82, 0x820080f1, 0x8300206a, 0x4c002235,
0x220a82cc, 0x8268660c, 0x27708345, 0xff98190a, 0x33330f00, 0xdd823f82, 0x99110023, 0x23758299, 0x0666e694, 0x1925d982, 0xffff8b9a, 0x206683f7,
0x280a8308, 0x66e60b00, 0xff968b08, 0x210d8200, 0x0d83ff94, 0xbf088b25, 0x8e078f06, 0x31338212, 0x059a19ff, 0xffffb4fb, 0x15cdccba, 0xd5ffff9e,
0xbf823333, 0x9a19d926, 0x1300ff06, 0x2a2b4e83, 0xfb05cdcc, 0x6900ff34, 0x82153333, 0x4ee118ae, 0x82942014, 0x4c23222c, 0xb6e118cc, 0x2033822c,
0xbe7518ff, 0x55511809, 0x9421080b, 0xfbd4f707, 0x94f71594, 0x0794f706, 0xfb0694fb, 0xffff0794, 0xffcd4c72, 0x9a19d000, 0xfcffff15, 0x220a82cc,
0x53323307, 0x0422060b, 0x098234b3, 0x20056343, 0x850682f8, 0xfbff2316, 0x2a85cc4c, 0xf8ff2508, 0xff08cecc, 0x1f05c0ff, 0xff0524fb, 0x1e85fbff,
0xccf6ffff, 0x0400ffcc, 0xffff3e8a, 0xffce4cf3, 0x9a190a00, 0x80221882, 0x0a820800, 0x840b1721, 0x00ff240a, 0x427bd40b, 0x04220612, 0x23840080,
0x08291e82, 0x05a066e6, 0x994900ff, 0x82f2829a, 0x8276200c, 0x231e830c, 0x66e6f5ff, 0x99823282, 0x66fbff23, 0x422d8468, 0x0a220740, 0x0a849919,
0x99260482, 0x0c00ff9a, 0x608632b3, 0x34330932, 0x24f74b08, 0x54f70e05, 0xff1514f8, 0x0080c500, 0x1a205482, 0xff236c82, 0x82707de5, 0x82ba24aa,
0x82cb0790, 0xc0522312, 0xaf190700, 0xff2339c7, 0x1834330d, 0x210e9757, 0xc24986ab, 0xfb082205, 0x26608214, 0x14fb07eb, 0x836b154b, 0x48612123,
0xf1271882, 0xffffb89e, 0x829a99f1, 0x66ee220a, 0x063f4a66, 0x4861ee25, 0x820e00ff, 0x83ff2004, 0x1100261e, 0x088bb89e, 0x229b82ab, 0x82b99e11,
0x8318839a, 0x820a821d, 0x063e4a19, 0xee821120, 0xa1f1ff23, 0x25378247, 0xffff6666, 0x32825eee, 0x4b34f828, 0x06f4fb15, 0xd082b4fb, 0x5d82ff20,
0x6d821b86, 0x8200ff21, 0x06934a2f, 0x19850983, 0x0aecf618, 0x8294f721, 0x84248333, 0x831e859c, 0x088b2642, 0x84fb54fb, 0x21ad8215, 0xb41820f7,
0xd6831106, 0x1542f720, 0xd2b41805, 0x83ab200d, 0x8608204d, 0x00ff2613, 0xff9a1907, 0x850e8200, 0xe00822d5, 0x20ca8200, 0x854f8607, 0x6b08215a,
0x077de419, 0xe62167ca, 0x82678366, 0xf8ff217b, 0xff200a83, 0x6782aa82, 0xfb14f723, 0x20d09c14, 0x239e8220, 0x00e0f8ff, 0x0a83b782, 0xaf820020,
0xd0850820, 0x18841386, 0xc782d082, 0x06ab0822, 0x13850885, 0xd0f03683, 0x30fb0e25, 0x18f8e4f7, 0x2218ace7, 0x180734fc, 0x221655d7, 0x82db062b,
0x1800201a, 0x6116fbf9, 0x3b221349, 0xef4d2b07, 0x8aa71817, 0x15002409, 0x82ff717d, 0x51702004, 0x082305e7, 0x1806b4f7, 0x200815b7, 0x17b81833,
0x97bc1811, 0xcc601910, 0x19b8180e, 0x826b2011, 0x28f72283, 0x22d582f6, 0x570ad7f8, 0x6b240b98, 0xbb04f707, 0x0cd86f18, 0xccf8ff22, 0x2007b557,
0x09895a6b, 0x83333321, 0xffcc2335, 0x1d820800, 0x8205c241, 0x097c7d08, 0x19838b20, 0xf441cc20, 0x05175806, 0x1d85cd20, 0x33f7ff2a, 0x6b088b33,
0x155bdb06, 0x0981bd18, 0x8206857d, 0x42cc204d, 0xcf7c06e1, 0x07002208, 0x82ce9333, 0x8307207a, 0x82f72084, 0x204d821d, 0x825682ff, 0x20ac8226,
0x23ce8dcc, 0x44f744fb, 0x0f66b918, 0x7885cc20, 0xcf8a0820, 0x87f62821, 0x0ad721cf, 0xf6828187, 0x8d084c7e, 0x836385cf, 0x066319cf, 0x41cf8c09,
0x4d932c1d, 0x3320cf83, 0xf820a682, 0x89053b41, 0x079e41b1, 0xce92ec8a, 0x2006077e, 0x255041ff, 0xcc208084, 0x3430ce88, 0x066b088b, 0x74f72f0e,
0xff15c4f7, 0x00c02700, 0x2024fc82, 0x00ff0040, 0x0a820482, 0x08201082, 0xff230685, 0x82ccdfff, 0x40202636, 0xd8ffff1a, 0x85368233, 0xffff2406,
0x8266e6de, 0xe6bf211b, 0xd822c082, 0x2d820040, 0x0682ff20, 0x2100ff24, 0x16823333, 0x4982c020, 0x33b32729, 0x00ff088b, 0x839a19bf, 0x15343a15,
0x1cf2ffff, 0x1100ff28, 0xffffd623, 0xff7cd4e6, 0xf6a80200, 0xcfeeffff, 0x2518825c, 0xff08221b, 0x3582ccff, 0x7ed6ff2c, 0xffff0578, 0xff0ad7d0,
0x1a83d9ff, 0x5c0fb723, 0x260f828b, 0x00ffcdcc, 0x83a43026, 0xb8de2625, 0x802900ff, 0x25258200, 0xff99d9ee, 0x87830d00, 0xaec7e627, 0x54fdffff,
0x214a827c, 0x5482b81e, 0x82b8de21, 0x82f22029, 0xeeff2179, 0x0222bd83, 0x7382d7a3, 0x11220983, 0x2382852b, 0x829a1921, 0x30333c98, 0xd6ffffa4,
0xff05ae87, 0xe1ba0b00, 0x81f6ffff, 0x0c00ff06, 0xffff67e6, 0x820456f8, 0x9a592657, 0x3df9ffff, 0x28488271, 0xff9919ff, 0x717d08ff, 0x46898205,
0xb9201084, 0x0f23e483, 0x82069a19, 0xb89e21da, 0x26128846, 0x06ab0704, 0x930704fb, 0x9eb8203b, 0x82ff203b, 0xfffa2300, 0xed83f700, 0x820d0021,
0x06002390, 0xa48389c1, 0x00ff6625, 0x82fca907, 0x52b825b8, 0x7d0900ff, 0x0028a482, 0xff343333, 0x52782900, 0x1322ce82, 0xbf827ed4, 0xff84eb2b,
0xcecc0100, 0x331900ff, 0x2e0f8234, 0x08343311, 0xf794f70e, 0xffff1574, 0x8248a1b0, 0x4590278e, 0x85ffff1e, 0x0a82cc4c, 0x0080b222, 0x1e2ee783,
0xddffffb8, 0x00ff9a19, 0xff71bd1a, 0x0983ebff, 0x3e0a2d22, 0x3022a483, 0xda82cdcc, 0xcc4c2022, 0x16834e82, 0x9a192722, 0x27221683, 0x16830080,
0xff666625, 0x82e6e6ff, 0x4c302294, 0x201683ce, 0x281d822c, 0xa31b00ff, 0x1400ffd6, 0x236a82e1, 0xb8de2200, 0x28295f83, 0x4d00fff6, 0xffff3473,
0x22488390, 0x82cccc7a, 0x8399208a, 0x6cff2348, 0xd782cdcc, 0x829a9921, 0xa1f5269c, 0x2200ff47, 0x2d8a829e, 0xffb8dedf, 0x00801600, 0xe1e2ffff,
0x40828447, 0xff2e0683, 0x04d6f0ff, 0x47deffff, 0x0a00ffae, 0xb082bf5f, 0x08666622, 0x5e200a82, 0xdd2a3082, 0x00ffce4c, 0xff482120, 0x3582e9ff,
0x1e1d0024, 0x1a8292b8, 0xff270683, 0x0b170f00, 0x832100ff, 0xb3f52272, 0x21608233, 0x1a829a99, 0x0a835420, 0xcccc1426, 0x1e00ff15, 0x08226c83,
0x29820020, 0x28253b83, 0xffff9af9, 0x234a82f4, 0x1e452c00, 0x0a877a82, 0x69826f82, 0xd41a002c, 0xe1ffff7c, 0xffff9002, 0x1e83c5f8, 0x4721e126,
0xe0f7ffff, 0xf020aa82, 0xff263d82, 0xff6606d7, 0x51820b00, 0xbad3ff23, 0x276782e2, 0xffd7e30b, 0x48a1d4ff, 0xff2f7784, 0xcd4ce3ff, 0x0800ffaa,
0xff083333, 0x82661901, 0x4c1d222a, 0x21f982ce, 0x2082e1e2, 0x98190624, 0xf983ffff, 0x66eaff26, 0xf5ffff68, 0xff233482, 0x824761dd, 0x830a8582,
0x1e0f217d, 0xde23ec82, 0x83ff8f42, 0x858420e2, 0xffff2de2, 0xab66e6f9, 0x991500ff, 0x0a00ff9a, 0x00238482, 0x82b89e22, 0x540a221a, 0x2675827a,
0xffff86ab, 0x6e0200f0, 0xe32306ee, 0x8292cccc, 0x82632050, 0xe2ff232a, 0xfd8332b3, 0xee821920, 0x0028bf83, 0xff1e8523, 0x00a01c00, 0x0022bf85,
0x44835e2b, 0x0a83ca83, 0x81204482, 0x2920a382, 0xff22a882, 0x238220e1, 0x821e0821, 0xe1ff221e, 0x20c382e6, 0x230f8208, 0xe27adcff, 0x6021de82,
0x053b4100, 0x6782f283, 0x5c83f420, 0x0f20fd84, 0xff219782, 0x210e82d6, 0x32821e00, 0xe6f7ff28, 0xff0e0866, 0x1582ea00, 0x4aba0123, 0x2087827e,
0x2916820d, 0xa8f80400, 0x330f00ff, 0xdd438b34, 0x07fb2e06, 0x54f70858, 0x6dbbffff, 0x00ff05d4, 0x20b58318, 0x202783f6, 0x27048211, 0x48e1e7ff,
0xe4ffff8b, 0xff254982, 0x34330dff, 0x220c8507, 0x82eeffff, 0xe7ff2165, 0x66232184, 0x82ffff66, 0xfb082130, 0x66284383, 0xffff0568, 0x869a19f2,
0xcc21cb82, 0x822d82cc, 0x8290200b, 0xf83f27a4, 0x4400ff52, 0x1d829899, 0xae87e628, 0x190900ff, 0x6c827a9a, 0x2505c942, 0xff089a19, 0x0155f200,
0x191b2305, 0x18829c9a, 0xffb81e25, 0x82781900, 0x82288233, 0x07c0211c, 0x44223382, 0xa0822c92, 0xce821520, 0xbac3ff2e, 0xffff15a0, 0xff0a5752,
0xe2fac1ff, 0xad231582, 0x834df6a8, 0x34b32206, 0x086282c9, 0xcc4c522a, 0x053e00ff, 0xffab051e, 0x48618ffe, 0xff34f715, 0x34333900, 0x0750f705,
0xffff34fb, 0x05ccccc6, 0x0e0750fb, 0xac00ffaf, 0x012ac782, 0x150ad797, 0x2400ffeb, 0x42826666, 0x82cc0c21, 0xd904263b, 0x0e00ff58, 0x8f481833,
0x26fb2908, 0xffeb08a8, 0x9a99dbff, 0x15212182, 0x224382b3, 0x8200c0f7, 0x22fb8321, 0x82f628eb, 0xbae822e7, 0x23e682e2, 0x07ebd18f, 0x23052f52,
0x9999ffff, 0xce210983, 0x200982ff, 0x2313859a, 0x66660000, 0x6027cc82, 0xffff0200, 0x8434b3da, 0xff30234a, 0x7183f7ff, 0x68660e27, 0x19ebffff,
0x214a839a, 0x4a82cccc, 0xcecc8823, 0x200c8207, 0x221c82e9, 0x83e6f2ff, 0x66e6211c, 0x99212182, 0x28308298, 0x2b089a19, 0xccd5ffff, 0x20eb82ce,
0x208d83f1, 0x221683f9, 0x829899ef, 0x230f8330, 0x68660600, 0x8e214282, 0x20a38280, 0x21ec8231, 0x0a83ffff, 0x33ceff22, 0x6a5a7382, 0x20308605,
0x2130849a, 0x3086ff33, 0xc2f59f27, 0x332a00ff, 0x25568232, 0xff85abeb, 0x72830800, 0xb8def225, 0x831400ff, 0x16002399, 0xbf823433, 0x32337722,
0x00289982, 0xff343317, 0xd7630e00, 0x26821c82, 0xc2150023, 0x84308290, 0xf35f2120, 0x25221982, 0xe082cc4c, 0xcc4c0122, 0x29080041, 0x0000ffcd,
0x00ff6666, 0x09844c01, 0x4a826720, 0x152e7022, 0x45214a84, 0x834a821e, 0xd714251b, 0x1500ff0a, 0x002bd282, 0x08004008, 0x00ff078b, 0x8232b376,
0x1e8522f1, 0x063e7315, 0xa4b00025, 0x83fdffff, 0xffff238e, 0x5c829a19, 0x825c4f21, 0x99b127ea, 0xe2ffff99, 0x72823e4a, 0x5e825020, 0xd9e0ff23,
0x200a829a, 0x23208252, 0x66261f00, 0xb127cf82, 0x00ff9899, 0x82c2b51d, 0x82652015, 0x5eff2eb8, 0xff153e0a, 0x9a995900, 0xadffff07, 0x21478299,
0x268366e0, 0xcdcca622, 0x52207382, 0x1f228a83, 0x37823333, 0xcdcc1227, 0xb3d7ffff, 0x207e8434, 0x21c18233, 0x7e8933b3, 0xff227382, 0x7e83cd4c,
0x82299c21, 0x21f1847e, 0x9f823051, 0x82e6e021, 0x5100224c, 0x21308233, 0x8982191f, 0x82b1ff21, 0x1d002362, 0x7e8234b3, 0x33225184, 0x7e829a99,
0x24226784, 0x15823233, 0x66e65f22, 0x68208989, 0x9b227882, 0x89820080, 0x3233a927, 0xb3ae00ff, 0x202c8232, 0x87b68351, 0xff342258, 0x83588700,
0x745883d7, 0x0020055d, 0xd6829f8b, 0xfd829f86, 0x84e2ff21, 0x83b9209f, 0x837a2046, 0x5a0023d0, 0x739332b3, 0xab834d20, 0x98192222, 0x02229582,
0xc44264e6, 0x01003505, 0x00ff68e6, 0x8bcccc02, 0x330300ff, 0x078b0834, 0xb400ff0e, 0xcc22df83, 0x9c8266e6, 0xcdcc0425, 0x83ebffff, 0x82e9205a,
0xefff3114, 0xffff32b3, 0xff67e6ed, 0x68660b00, 0xe7ffff08, 0x00219582, 0x28e8830f, 0x9919cdff, 0x91aeffff, 0x08e282ec, 0x85abf223, 0xaeeaffff,
0x0f00ff14, 0xffff8155, 0xff0a57e4, 0x61251900, 0x00ff088b, 0x061f0520, 0xa31100ff, 0x206f82d7, 0x2a17820e, 0x14aef1ff, 0xeeffff8b, 0x85082a5c,
0xffff2406, 0x82f6a8f1, 0x0a972104, 0x29201583, 0xff273382, 0x067a14e0, 0x83b4ffff, 0xd2ff3633, 0x00ff5c0f, 0xff0ad752, 0x7bd42700, 0xf53f00ff,
0x00ff08c4, 0x220a8332, 0x82836b51, 0xa3e7227a, 0x217582d7, 0x0a82cd4c, 0x82e3ed21, 0x660b2a0a, 0x0400ff66, 0x00ffb89e, 0x22fd831b, 0x82ecd114,
0xcccc210e, 0x5b213482, 0x26de826e, 0x05682615, 0x820800ff, 0x0100236c, 0x098298d9, 0xff30cf82, 0x8dceccfa, 0x4cf7ffff, 0xffa008cc, 0x0080a4ff,
0x66202182, 0xa422f283, 0x3282d823, 0x00402927, 0xdcbdffff, 0x21618228, 0x0a82c0e7, 0x86ebf022, 0xed200a82, 0xff239282, 0x82a4b0f4, 0x2d4c825d,
0xb75ee4ff, 0xd91400ff, 0xfbffff16, 0x6c83852b, 0xff238682, 0x829ad9ea, 0x9f08274a, 0xfeffff3c, 0x6c824801, 0xffa69b2b, 0xca610500, 0xfa0100ff,
0x210e82e0, 0x29827d9f, 0x3e0a1524, 0x9b8200ff, 0x04222982, 0x4482fcc9, 0x5ccf2008, 0x42e9ffff, 0x1000ffd0, 0xffff703d, 0xff48e1ed, 0xc2b5f4ff,
0xe7ffff08, 0xffffd6a3, 0x82ceccf0, 0xcdd63a7d, 0x4100ff52, 0xff05c2f5, 0x866bdaff, 0x233c00ff, 0xa8ffffd8, 0x00ff4761, 0x214e8200, 0x7d83daff,
0xb6e1c322, 0xf8223482, 0x3f829a99, 0x82a62d21, 0x83f62029, 0x26f122eb, 0x83b28266, 0x2bec2c14, 0x0e00ff84, 0xffffcdcc, 0x8216aef6, 0xeb0e2288,
0x260a8285, 0x00ff18a4, 0x829ad913, 0x16792223, 0x054e6eff, 0x10ed0e22, 0x07271e82, 0x00ff2771, 0x82d6e30b, 0xbf0c22a7, 0x35a7827d, 0x00ffd663,
0xffcc4c1d, 0x0040ffff, 0x330c00ff, 0xecffff34, 0x2982ba5e, 0x3233d632, 0xa821ffff, 0xffff15f6, 0xff9002ef, 0x90421b00, 0xa9207d83, 0x0e22dc82,
0x2582e2fa, 0x82a84621, 0x7a94215e, 0x2305556d, 0x66a6f6ff, 0xf121a782, 0x25f6820f, 0xff98aef6, 0xd082fbff, 0x2becff23, 0x237d8502, 0xec11f1ff,
0x10275382, 0xffff70fd, 0x829ad9e4, 0x590d217d, 0xea27d182, 0xffff14ae, 0x827eaaf0, 0xec512714, 0xd8e6ffff, 0x44828b12, 0x9002a034, 0x0000ff06,
0x00fffe05, 0x0570bd1c, 0x1500ff8b, 0x1d824861, 0x0a22f383, 0x3182c2b5, 0x0e82e120, 0x48e1f022, 0xbd272b82, 0xffff0a97, 0x82ec91bd, 0xc7f9329a,
0xf9ffff2b, 0xff8beac6, 0x20d0f5ff, 0x390600ff, 0x210f82f5, 0x7782aec7, 0x8c834220, 0xf6a8bd22, 0x0f227782, 0x4082b81e, 0xff66e62b, 0x7cd41900,
0xb60a00ff, 0x215f83ca, 0x4b82b25d, 0x82faff21, 0xae1c22ad, 0x22258214, 0x822adc5f, 0x654b2b82, 0xffffff44, 0xffb96efd, 0x31825200, 0x19d8ff3f,
0x3f00ff98, 0x0e0868e6, 0x9c2700ff, 0xfb00ff29, 0xff153333, 0xa4302300, 0x826400ff, 0x2c37828f, 0xff52780d, 0x90822600, 0x542400ff, 0x2662827b,
0x00ffaec7, 0x82cdcc28, 0xb50023d5, 0x52823433, 0xcccc2822, 0x24226f82, 0xcf82ce4c, 0x2b823820, 0x00800d27, 0x7dd9ffff, 0x27a48270, 0xff323323,
0x717d9bff, 0x17314682, 0xffff3433, 0xff6766f6, 0x66661000, 0x19e9ffff, 0x26d48299, 0x08cd4ce5, 0x180754fb, 0x8209bb50, 0xb3f12123, 0xee260482,
0x088bcc4c, 0x9818066b, 0xbb251699, 0x06d4fb07, 0x2336895b, 0xffff85ab, 0x54213685, 0x8236867b, 0x82138208, 0x0ad25f18, 0x6983f720, 0xb31a0023,
0x20838233, 0x21ea825c, 0x8d82e616, 0x0040173a, 0x990900ff, 0x078b0899, 0x7d4500ff, 0x0400ff71, 0xff15cdcc, 0xcccc2501, 0xe5277e82, 0x00ff66e6,
0x5c9a994a, 0x00370614, 0xffcccc0c, 0x68e6f3ff, 0x990800ff, 0xf2ffff9a, 0x088b6666, 0x844affff, 0x66f2222b, 0x20c88267, 0x213182f3, 0xe283f7ff,
0x0080fb22, 0x33212b82, 0x83208234, 0xb5ff2346, 0x46826666, 0x66e6f223, 0x9f5c184b, 0x0a8a7f0c, 0x2108f35a, 0xd0857b54, 0xab110023, 0x21608285,
0x99181100, 0xa1600807, 0x094e1811, 0x06d86108, 0x82d4f721, 0xa18f195f, 0x1831940a, 0x410c2762, 0x8d930b65, 0xf3824c20, 0x18b3f121, 0x24082676,
0xf8f4f7af, 0x0ce45b54, 0x7319ff20, 0xc4820b61, 0xd9ff2108, 0x00ff059a, 0xff9a9926, 0x0ad7fdff, 0xb32100ff, 0xe6ffff32, 0x00ffecd1, 0xff68e60c,
0xa430dbff, 0x21081b42, 0x2982ff7f, 0x82331721, 0x061b421f, 0xe9221f82, 0x44829a19, 0xcc4ce522, 0x20431b42, 0x0e5318b3, 0x5e6b200c, 0x4c280e5e,
0x00ff8bcc, 0x0834b311, 0x82071b42, 0x421020e5, 0x6622051b, 0x1b4200ff, 0x07104308, 0x82018021, 0xe60c21ad, 0x24221a82, 0xd7835ccf, 0x00ff3325,
0x85142e19, 0x020024eb, 0x8208f628, 0x2600254e, 0x07ab0566, 0x11230882, 0x18ff86ab, 0x2d0fb1d4, 0x058b14f7, 0x6665ffff, 0x1514fb66, 0x3242ffff,
0xff67211c, 0x42053242, 0xba25328a, 0x74fb9a99, 0xc34a1815, 0x18ea8312, 0x19092d64, 0x180c7dee, 0x420b6c76, 0x875d1405, 0xd4f7220c, 0x22bf82cb,
0x18cc4cee, 0x421a634d, 0x8d830d37, 0x7b823420, 0x25164d18, 0xff2f0e2b, 0xcccc9d01, 0xe60000ff, 0x28688266, 0xff343362, 0x9a19ffff, 0x226e8205,
0x839002e0, 0x4aee2606, 0xf1ffff3c, 0x219586cc, 0x5418eeff, 0x91260ced, 0x0e00ffeb, 0x6e82ec51, 0x84ab1123, 0x28068208, 0x0570fd1f, 0x1961ffff,
0x2151829a, 0x0a828802, 0x0080e322, 0xf03c4b82, 0x00ff5ccf, 0xff707d22, 0x00001300, 0xe81500ff, 0x00ff08f6, 0xffe2fa44, 0x0a974f00, 0xf0282582,
0xff067ad4, 0x0a97e6ff, 0xf2252b82, 0x00ff8f42, 0x2193831d, 0x20827a10, 0x7c541322, 0x3c272b82, 0x00fff668, 0x829ad946, 0x3ff5222b, 0x222b82ff,
0x8252b8ea, 0x83f4202b, 0x80162116, 0x0d225282, 0x8a820a97, 0x085ccf3b, 0xcc8600ff, 0x9200ffce, 0xff050080, 0x66660a00, 0x4c0b00ff, 0x1100ffcc,
0x83a583d1, 0xf4ff230f, 0x25830cb4, 0xff66e624, 0x25846dff, 0xb89e0d22, 0x3029e282, 0xf4ffffa4, 0xffff8a61, 0x354f82e9, 0x10b8eaff, 0xffff088b,
0x06e23af5, 0x593c00ff, 0xb9ffff9a, 0x5182d623, 0xc275102b, 0xa8ecffff, 0xf2fffff6, 0x222b8241, 0x825238e2, 0xa09a21b7, 0xf0222b83, 0x2b82cccc,
0xff23d583, 0x82f668b0, 0x0c13222b, 0x244d82cc, 0xffff26e8, 0x218782f0, 0x464edeff, 0x088b2a06, 0x54f82f0e, 0x5b1504f8, 0x20c28207, 0x27e982d3,
0x34b39bff, 0x33dcffff, 0x84220482, 0xc56fcc4c, 0x33b3220a, 0xe77718ff, 0x82bb200a, 0x2c00242f, 0x70ff142e, 0x2325059f, 0x00ffecd1, 0x053d527b,
0x34b37b23, 0x8216838b, 0xf0431970, 0xffff2209, 0x235283c9, 0x15cd4c79, 0x2306215a, 0x9f666607, 0x2105e75b, 0xff820e00, 0xb30b0023, 0x22e48233,
0xae9a199a, 0x00ff2f89, 0x0766e665, 0xee0e00ff, 0xf4ffff15, 0x5e82cd4c, 0xff0a1722, 0x3205155c, 0xff7bd414, 0x9a99f8ff, 0x2c00ff08, 0xff7b5dcf,
0x83d73b00, 0x20ca831a, 0x05b16440, 0x16820683, 0x0021f882, 0x303b8309, 0x9b68e62c, 0xff078b08, 0x66a6adfe, 0xff5fffff, 0x8cae82ff, 0xff34223a,
0x203a9300, 0x836182cc, 0x20dc883a, 0x20dc8e68, 0x20dc8232, 0x20dcb2aa, 0x20dc8b55, 0x32dc92ce, 0xfb0e0898, 0xf74cf730, 0xff8b1584, 0xf0670400,
0x82fcffff, 0x03002904, 0xffff1098, 0x8b1098fb, 0x06837782, 0xd1181685, 0x8b3f0a13, 0xf0fdffff, 0x0000ff21, 0xffff024c, 0xff83c0ea, 0x17d80800,
0x0fe5ffff, 0x00ff085c, 0x8281f501, 0x66a6210f, 0xe6205182, 0x17220482, 0x5c826766, 0x33331226, 0x64f7d308, 0x0bf95418, 0xff44fb26, 0x9a9959fe,
0xff287a82, 0xff1058f6, 0x52780a00, 0xaf2b5682, 0x0300ff9e, 0x00fff6e8, 0x82529805, 0xe3042f4c, 0x0600ffd7, 0x00ff00e0, 0xffaf8709, 0x51830d00,
0xcd4c0b22, 0x6621cb82, 0x269d8266, 0xffaec7f1, 0x8207f8ff, 0xf8f221b8, 0xf6283d82, 0xffffb4a8, 0x80e13af5, 0xfe2d1a82, 0xffff85ab, 0xff2a9cfe,
0x0040ffff, 0x29b18389, 0xf70866e6, 0x2601ff24, 0x55186666, 0xcf297271, 0xff154cfb, 0x90421800, 0x24bb828b, 0xffff70bd, 0x240a83ec, 0x70bde7ff,
0x279b8208, 0xff7a54e7, 0x5c0fedff, 0xab271682, 0xe7ffff86, 0x828b5ccf, 0x01fa22c2, 0x311b828a, 0xff1a2ffa, 0xfef30000, 0x97faffff, 0x0100ff0a,
0x1a8216da, 0xa4f0eb3a, 0xc20600ff, 0xedffff0c, 0x00ff14ae, 0xffb63309, 0x7bd4efff, 0x6e0b00ff, 0xe8221e83, 0x2e82b81e, 0xff18e42b, 0x856beaff,
0x96f9ffff, 0x262882ca, 0xffff6726, 0x82846bf8, 0x91f12c3d, 0xe5ffffeb, 0xffffa4b0, 0x82cdccf2, 0xf6282973, 0x42f7ffff, 0xf3ffff90, 0x0a828e82,
0xff285282, 0xffd883f5, 0x33b3f4ff, 0xcc213d82, 0x211982cc, 0x9283d723, 0xe1fae922, 0xee219282, 0x24698214, 0x8b66e611, 0x28bc82a1, 0x86eb0b00,
0xbd0300ff, 0x25868271, 0x00ff66e6, 0x9a827007, 0xa4b00727, 0x1000ff08, 0x26f3822e, 0xff1e8510, 0x82301500, 0x780e2614, 0x1900ff52, 0x222382a6,
0x825c0f0c, 0xc00b2a1e, 0x1600ff00, 0x00ff7ad4, 0x2c1e830a, 0xffc43517, 0xd7630800, 0x191700ff, 0x33a58298, 0xff85abef, 0x02002800, 0xccffffff,
0xff8badcd, 0x66660000, 0x16276f83, 0x00ffcc0c, 0x8333f311, 0x82342004, 0xcd0c2140, 0x00239982, 0x825c0f16, 0xf0112122, 0xee22d482, 0xa482cc0c,
0x34f3e922, 0x13522d82, 0xc5f82c05, 0xe0ffffe3, 0xffff9a59, 0x18fc49fe, 0x27077a47, 0xff77fefe, 0x1cbafcff, 0xf8211482, 0x20098293, 0x22e682c1,
0x82f8f3fe, 0x02cb2109, 0x07279d82, 0xffff7bd4, 0x823e8af1, 0xb8de25d6, 0x40f3ffff, 0x0b20ac82, 0xff23e582, 0x82f628f5, 0xae1d211e, 0x0521db82,
0x26b28200, 0xff323315, 0x824c0100, 0x4c032294, 0x21a582ce, 0x1e829a19, 0x6666042d, 0x78ffff06, 0xffff0080, 0x826666d5, 0xfa11252a, 0x0600ffe1,
0x00260f82, 0xff672612, 0xa8820400, 0xca100029, 0x0300ff3d, 0x820800c0, 0x7b94295e, 0x0f0c00ff, 0xf6ffff5c, 0x0d206883, 0xf8270983, 0x00ffb85e,
0x823e0a0d, 0x82f8201e, 0xecff286d, 0xffff66a6, 0x529919f8, 0xf82106ed, 0x22cf8219, 0x8266e6ef, 0x6688216d, 0x82059272, 0x19062667, 0x90908b9a,
0x626b828b, 0x072005ca, 0xff217282, 0x07f274fa, 0x66f9ff2c, 0x87088b66, 0xffffff06, 0x0482fca7, 0x0482f720, 0x8a83ef22, 0x10260982, 0xe7ffff08,
0xfd8247e1, 0x82fc3721, 0x450b2351, 0x9082841f, 0x6282d920, 0x5ccff92c, 0xb80e00ff, 0xfbffff52, 0x1a82ec11, 0x281c0222, 0x45242f82, 0x0200ff1e,
0xff205b83, 0x02205b83, 0x0e265683, 0x74f730fb, 0x5d43d4f7, 0x00ff2672, 0xfb008039, 0x38fe8204, 0x06b85e17, 0xb70700ff, 0x00ff8b8e, 0xff86b605,
0xecd1f8ff, 0x42feffff, 0x21098290, 0xe382e17a, 0x3e8ad524, 0xe682ffff, 0x15820520, 0x75cccc21, 0xfb2106d5, 0x20e78219, 0x230483fc, 0x8b0080fa,
0xe2232582, 0x820671bd, 0xf292221b, 0x26f5828b, 0x00fff93e, 0x8218a403, 0x0b972130, 0x3d2c5582, 0xffff08f4, 0xff9959e2, 0x5a046e00, 0xe2274682,
0xffffd763, 0x8266e692, 0xb5fd2c0a, 0xf9ffffc3, 0xffffcecc, 0x829919fc, 0x76662004, 0x3083064a, 0x0633b322, 0x69225182, 0x51828b79, 0x82e32521,
0xe8db2151, 0xc0215182, 0x21518200, 0x98842c72, 0x4cf73d22, 0xfe224382, 0xc0825c4f, 0x82b97e21, 0x5a4d8217, 0xb52106ae, 0x239582c3, 0xb95e1700,
0x0522dc82, 0xdc828796, 0x1dda0422, 0x24266082, 0x0100ff19, 0x58820040, 0x08d98e37, 0xa81700ff, 0x99fffff6, 0xff050e4d, 0xcdcc1b00, 0x196700ff,
0x200a829a, 0x27868201, 0xcc4c0500, 0xcc0400ff, 0x03201482, 0x83060c42, 0x9c1d2251, 0x21518329, 0x51830e6d, 0x8206c121, 0xe75b2151, 0x68205182,
0xfa224682, 0x51820dc2, 0xff234683, 0x820ce298, 0xb3172746, 0x6600ff33, 0x0a8233b3, 0x34330122, 0x66229e82, 0xc6828f67, 0xff66e624, 0xd94c0600,
0x80e62405, 0x4584f700, 0x11420be3, 0x19302b7b, 0x77ffff9a, 0xff159a99, 0xa382cfff, 0x66b0ff23, 0x27b98266, 0xff70fd30, 0xd863b0ff, 0x062f0a82,
0xffff2a9c, 0xff5c4ff5, 0xcc4cf8ff, 0x83f2ffff, 0x41f32004, 0xe52905fe, 0xff06ec91, 0x6871faff, 0x3c05828b, 0x00ffd5d8, 0xff0ce202, 0x7b14fdff,
0xbb0400ff, 0xffff08e8, 0xfff6a8e4, 0x0c622c00, 0x260a8205, 0xffffa4b0, 0x82b89ed3, 0x1cfd270a, 0xfbffff29, 0x3482ae47, 0x82cdcc21, 0x0a50422f,
0xff7fe528, 0xf3ffff06, 0x5182e17a, 0x7a54f822, 0x35051e66, 0x5d8f0600, 0xa80a00ff, 0x00ff08f6, 0xffae0731, 0x289c4f00, 0x06825a05, 0x829a9921,
0x66f9224d, 0x241c8266, 0x00ff33b3, 0x20048307, 0x2004830d, 0x2a9f840c, 0x156e1a00, 0x0500ff06, 0x828b988e, 0x2b272105, 0x1d216a82, 0x21a482f4,
0x7e8285eb, 0x821e4521, 0x571b224d, 0x2194820a, 0xe682ee9c, 0xe1821b20, 0x632c0023, 0x220a82d7, 0x82d7e302, 0xc3b521c0, 0x33203482, 0x075f7318,
0x51870520, 0x51821420, 0xec910c22, 0x073c5182, 0xffff34b3, 0xffcd4cf2, 0x0080f8ff, 0x4cf5ffff, 0xffff08cd, 0xff66e6ef, 0x66660801, 0x180fde41,
0x2784cf5c, 0x993700ff, 0x4bffff9a, 0x8305fa53, 0x83d2200a, 0x4cdc2504, 0xd9ffffcc, 0xd320c383, 0x5f22e583, 0xee5e6306, 0x5dff2007, 0xff280785,
0x3333f7ff, 0x067b088b, 0x29220882, 0xf2828bfc, 0xff04d624, 0x0a830700, 0xd6080024, 0x966d0804, 0x84098205, 0x82048614, 0x8b2a080e, 0x4700ff08,
0xff069082, 0x3dca2700, 0x2400ff8b, 0xffffcd4c, 0x8f0080e3, 0x66d8ffff, 0xffff0866, 0xff666688, 0x9a19dcff, 0x2382b715, 0xa4700f22, 0x0c242382,
0x00ff5c8f, 0x0a820482, 0x08201082, 0xff220685, 0x2982f3ff, 0xff2a1683, 0x9a99f0ff, 0x065f088b, 0x37430753, 0x14fb2679, 0x00ff152b, 0x19481811,
0x19ff2008, 0x21132d38, 0x1682ff33, 0x4dff8421, 0x4c200845, 0x0af58618, 0x0b648618, 0xff34b322, 0x11876b18, 0x9a19de2d, 0x8028ffff, 0xffff1500,
0x673233fd, 0xff220563, 0x148299fa, 0xccccfc22, 0x19260e82, 0xfb088b9a, 0x09830674, 0x828b9921, 0x7b942605, 0x3f0300ff, 0x272d827c, 0x00ffc235,
0x08f83305, 0x37210a82, 0x2a0a838d, 0x0000ff74, 0x00ffd34d, 0x82aa5106, 0x1e463323, 0xe60400ff, 0x00ff0868, 0xdb7b5435, 0x0200ff05, 0x1182c915,
0x90d26d22, 0x8a830a82, 0x34330623, 0x231d828b, 0x8b333306, 0x26211782, 0x20478267, 0x27428253, 0xffc2f502, 0x8c8cfbff, 0x0d271a82, 0xffffd763,
0x82cceceb, 0x592d273c, 0x4400ff9a, 0x0a82ae07, 0x33f30222, 0x78212f82, 0x22478752, 0x83666605, 0x82068347, 0x34f32117, 0x55244791, 0x14fb7b54,
0x03223982, 0x5a829042, 0x82002021, 0x824c20a7, 0x82f920db, 0x82f48285, 0xccfa2230, 0x27c682cc, 0xff66e6c1, 0x0080b701, 0x2d945343, 0x15eb14fb,
0x076b06cb, 0x07ab064b, 0x0a934b8b, 0x2000ff26, 0xffffcd4c, 0x0805734f, 0xa470d725, 0xe1ffff8b, 0x00ffcccc, 0xff347324, 0x15ee0700, 0xff2600ff,
0x00ff08fe, 0xffae871e, 0x68a67300, 0x8206cb05, 0xa4f0270c, 0x198bffff, 0x2282059a, 0xff8fc226, 0x3233d9ff, 0xcd283683, 0x99dcffff, 0xd7ffff9a,
0x29052b54, 0xff33b30f, 0x9a194f00, 0x60186b15, 0xff220c1b, 0x1a61ccf8, 0x08696207, 0xfffc2922, 0xff241683, 0x04d60800, 0x611ae761, 0x2a8305ee,
0x1661cd20, 0x8b332208, 0x79694308, 0xa8fb5b23, 0x2cc48215, 0xff0040f5, 0xb81ef3ff, 0xc5faffff, 0x219e821e, 0x9e824861, 0x08fa7e2e, 0x80dcffff,
0x2400ff00, 0x5f05e87b, 0x0cd4bc18, 0x210a687e, 0xd58207c3, 0x9a990625, 0x830500ff, 0x66052e36, 0x0600ff66, 0x088bb99e, 0x00ff06b7, 0x223e8423,
0x82050080, 0x2022834f, 0x21048307, 0x9148e60c, 0xffff3406, 0x08cc4cf5, 0xbb071cfb, 0x331000ff, 0xffff1534, 0x82e79bfb, 0xa4fb328e, 0x0100ff19,
0xffffc2d5, 0xff0ad7fc, 0x32880300, 0x21998208, 0x58821018, 0x04829820, 0x098c0027, 0x180a00ff, 0x210e8294, 0x7682f793, 0x0866e622, 0xe4200a82,
0x06213382, 0x27868224, 0xffcdcc03, 0x00800800, 0x09239682, 0x85083433, 0x214a8206, 0x1682f833, 0xff707d26, 0x641bf9ff, 0x30212f82, 0x215482a4,
0x3a826cf9, 0xf0e70526, 0x73ffffff, 0x0a201e82, 0x0e836383, 0x97060023, 0x2019830a, 0x200482ec, 0x27738306, 0xffc5200a, 0x00800000, 0x8a213882,
0x218c823d, 0x19820020, 0xdd840d27, 0xcff3ffff, 0x82dc829e, 0xeeff2373, 0xbc8234b3, 0x3f6eed20, 0x2e068205, 0x3bf8ffff, 0xeeffffe7, 0xffff86ab,
0x82bd74f2, 0x82d7202a, 0xfcff2854, 0xfffff6e8, 0x783e4afd, 0xff2305e7, 0x849a99fe, 0x088b2809, 0x3300ffeb, 0x8215cccc, 0x30d62543, 0xebffffa4,
0xff276d82, 0xff34b3d8, 0x82a8ddff, 0x02e82231, 0x27b0828e, 0xff1038fd, 0xe00ffeff, 0xcb213282, 0x21b58202, 0x09822010, 0x8bd0d722, 0xfa221a82,
0x3a82f8f3, 0x5a04fb27, 0x600200ff, 0x26168200, 0x00ffd7e3, 0x85107804, 0x20a3821a, 0x27bd8240, 0xff18c401, 0x52f80900, 0x05220e86, 0xc7825c0f,
0x89c11935, 0xf31100ff, 0x0f00ff76, 0x00ff6666, 0x8b00801d, 0x4c1f00ff, 0x068205e8, 0xf0ffff24, 0x1682b89e, 0x94827020, 0x713de622, 0xf5212a82,
0x215482c2, 0x4f82c0f8, 0xdf0f0522, 0x39218f82, 0x25548217, 0x00ffcff7, 0x4e820c05, 0x00400722, 0x0a850582, 0x82f04721, 0x68f12619, 0xc70100ff,
0x267382ef, 0xffffae47, 0x8231e8fa, 0x5922211e, 0xe825f682, 0x00ff100d, 0x20e78514, 0x26bc8232, 0x083433d6, 0x44e4f74b, 0x8b22948a, 0x027494fb,
0xff85210a, 0x25050774, 0x8b7b54ee, 0xa2552b08, 0x0801740e, 0x5355eb20, 0x7b542609, 0x540e00ff, 0x05d6467a, 0x06eb0822, 0x6a0edf46, 0x2b2d079a,
0x00ffeb07, 0x159a1963, 0xb399ffff, 0x273e8232, 0x146ef3ff, 0x2ef2ffff, 0xf8250482, 0xffff0a57, 0x360482f5, 0xf6a80600, 0xd8ffff08, 0x00ffe27a,
0x0520c518, 0x00ff07db, 0x821e8527, 0x34b33c0c, 0x0a00ff05, 0x00ff16ae, 0xff32b306, 0xcccc0d00, 0x4cf8ffff, 0xffff8bce, 0x446666f3, 0xff2f7a67,
0x9a19baff, 0x331effff, 0x00ff1534, 0x82dfcf07, 0x20302195, 0x4f219583, 0x200a83e0, 0x20048321, 0x4cd282a4, 0x022605b1, 0xfaffff8e, 0x487067e6,
0xe6fa2306, 0x1a828b66, 0x16820683, 0xffb9de34, 0x20f00100, 0x17fcffff, 0x0300ff0a, 0x5b08f0e7, 0x438505bb, 0xe0265882, 0x0c00ff8b, 0x638520b0,
0x5c220f82, 0x1d82bb08, 0x04857184, 0x73a80c22, 0x07222282, 0x32845ccf, 0x28830820, 0x32820a84, 0x83000025, 0x8ef3ffff, 0x28de2d90, 0xdefffff6,
0xff05f027, 0xcdcc2100, 0x33250a82, 0x2cf70534, 0x84c584bb, 0x82c58aba, 0x30f82594, 0x5b5b08a4, 0xc8b38f82, 0x7d82c59a, 0x820bd721, 0x94d82104,
0xde225b82, 0x0a82d723, 0x9b0ad721, 0x090141f6, 0x8200ff21, 0x00ff21f3, 0x0023dd83, 0x845dcf07, 0x21f78264, 0xbe82fa2f, 0xce0cd022, 0xcd274482,
0x01ff66e6, 0x43cccc31, 0xff280c76, 0x9a99d601, 0x991600ff, 0x0f8d9618, 0x18cccc21, 0x2108da41, 0x94180800, 0x41180c4a, 0x80200ae5, 0xf2221a83,
0x7c8234b3, 0x82666621, 0x80d52a62, 0xdeffff00, 0xffffce4c, 0x215582c9, 0x7182ebff, 0x41c3ff21, 0xc52305d7, 0x838b33b3, 0xff992a16, 0x9a191400,
0x9ed4ffff, 0x21dd82b8, 0x5b8332b3, 0x82299c21, 0x9a992160, 0xf3204082, 0x04844083, 0x4118eb20, 0x66840aab, 0x18d84018, 0x63267c82, 0x0d00ffd7,
0x4082cc4c, 0x5c4fde25, 0x832a00ff, 0xeeeb2b45, 0x3600ff14, 0xff8b6666, 0x9e503c00, 0x4c3a2205, 0x217c82cd, 0x1683ec11, 0x7c826720, 0xffa4b026,
0x48612b00, 0x00238186, 0x82d6630c, 0x21668b40, 0x5b829042, 0x09124218, 0x56820c20, 0x7d0c0022, 0x130bba18, 0x81820c20, 0x9cf3ff24, 0x51840528,
0x36215b86, 0x20658266, 0x826f8314, 0x088b2179, 0x8d828784, 0xff219382, 0x849d84ff, 0x82b182a7, 0x82bd821a, 0xd863216b, 0x668a4082, 0x82058463,
0xf3ff2376, 0x25829082, 0x0b864318, 0x4170bd21, 0x99210da0, 0x210f829a, 0x40822a9c, 0x32b32122, 0x21065f41, 0x14821914, 0x9999c929, 0xc5ffff8b,
0x820833b3, 0xe6c32206, 0x837c8266, 0x83c92004, 0x4cde2730, 0xd5ffffce, 0x5b830080, 0x19826620, 0x34b3f226, 0x5effff05, 0x00274082, 0x1566e646,
0x83f0ffff, 0x83f72041, 0x83ed201a, 0x83fb2034, 0xcceb220e, 0x21cd82ce, 0x5784edff, 0x82e6ed21, 0x830420e4, 0x19f02e1b, 0x0800ff99, 0xff089a99,
0x9a19c6ff, 0x25888251, 0xffcd4c1f, 0x6782e9ff, 0x84260021, 0x2325825c, 0x9a992800, 0x00253c82, 0x8b66662a, 0x211684ff, 0x53820d00, 0x821f0021,
0x16002388, 0x3c846666, 0x82c59821, 0xb38a283c, 0x6300ff34, 0x82156666, 0x22348227, 0x83f2ffff, 0x8448843e, 0x21318252, 0x6a835108, 0x2c829920,
0xab837682, 0x8a848082, 0x8b239482, 0x85ecffff, 0x82ec20f2, 0x84ff2048, 0x84c284b8, 0x21d682cc, 0x3c83c508, 0x3c829820, 0xff207682, 0x8a848085,
0x092ca819, 0x0000ff30, 0xff0766e6, 0x9a193fff, 0xff1554f7, 0xb483d7ff, 0x82d9ff21, 0xf1ff28d0, 0xffffc2f5, 0x8233b3e0, 0xd8a327df, 0x3900ff08,
0xf18366e6, 0x67e60f24, 0x8c8300ff, 0x19120022, 0x05278c82, 0x00ffcccc, 0x83676612, 0x331422f1, 0x20c98232, 0x22ec8212, 0x8233faff, 0x5d0f20da,
0x3c84068e, 0xf1826820, 0x32264e82, 0x5c1600ff, 0x6284ff28, 0x0a0e0023, 0x07b17c3e, 0x19ffff2e, 0xffff069a, 0xff66669e, 0xcecc09ff, 0xc5838a82,
0x42840020, 0x56824c84, 0x62825c82, 0x06820820, 0xff217082, 0x417a8500, 0xff200692, 0x67222a82, 0xa6835108, 0x83056721, 0x83d720b2, 0xff3221bc,
0xd082c685, 0xdc848b20, 0xff213c82, 0x85dd82d5, 0x8316827a, 0x8429208e, 0xc508212a, 0x68243c83, 0x6100ff05, 0x66222083, 0x84823233, 0x6666e622,
0xe9203882, 0xff201082, 0x0a820482, 0x43831082, 0x1182e420, 0x83160021, 0x82eb20ac, 0x19002104, 0x2005f241, 0x262d831b, 0x00801500, 0x821400ff,
0x19ff2011, 0x82163476, 0x8b27083c, 0x00ff0e08, 0xff33b3de, 0x9ad99f01, 0xffff9015, 0xffea11ef, 0x6766f6ff, 0x2eeeffff, 0xffff7a16, 0x08c2f5fa,
0x82b0ffff, 0xe8ff2f21, 0xffffd863, 0xff3333c6, 0x3273b6ff, 0x7e83358b, 0x9a199522, 0x23065976, 0xff66e6aa, 0x08209118, 0x8b201384, 0x08220f84,
0x3483e18b, 0x00ff3425, 0x83ce8c49, 0xff322c48, 0x289c1700, 0x00ff7a08, 0x833e0a05, 0x2937826a, 0x90ead111, 0xee1000ff, 0x15820816, 0x102c5283,
0x00ffa4f0, 0xffcecc11, 0xe2a50900, 0x5c821982, 0xf6faff23, 0x2a1e8246, 0xffcccc69, 0xae87e0ff, 0x824d00ff, 0x9eff2628, 0xfb8b52f8, 0x2b8a8308,
0xff34b371, 0x66668dff, 0x4c8effff, 0x72202282, 0xb882f782, 0x16850683, 0x20820020, 0x00ff8b22, 0x08221c82, 0x4882f78b, 0x67264d26, 0x076100ff,
0x69274882, 0x00ff00c0, 0x8252781f, 0xe6102114, 0x05221482, 0x7c83ba09, 0x9c82cd20, 0x831e5a21, 0x99200890, 0x0fefffff, 0x078b085c, 0xff01ff0e,
0x01ff9a99, 0x15d8239b, 0x60feff4b, 0xff0564e6, 0x0080feff, 0x44252982, 0xfaffff18, 0x2c098220, 0xff9683f7, 0xae67f7ff, 0x2bfbffff, 0x26818286,
0xfff027fb, 0x8247fdff, 0x92fa2704, 0xfefffff2, 0x28823c9f, 0x8b0a9722, 0xcf221a83, 0x26828be0, 0xff76de30, 0xbed00000, 0x07fcffff, 0x0100ff6c,
0x1a8216a8, 0xc8828520, 0x19330023, 0x275f829a, 0xffd723cd, 0xc2b5b3ff, 0xfc200a82, 0xf921f283, 0x20e88253, 0x237483f9, 0x840080fc, 0xf4224783,
0x47820080, 0x33b3f627, 0x4c0900ff, 0x22e482cc, 0x8200800b, 0x2e6023cc, 0x0c820714, 0x701d0731, 0x5f0200ff, 0x0600ff3b, 0x00ff3eea, 0x82b95e04,
0x2a9c21d3, 0xd9322082, 0x01ff0c42, 0x05486117, 0x4cdafeff, 0xf7feffcc, 0x648234b3, 0xd8639927, 0xcc2a00ff, 0x220a82cc, 0x827dbff4, 0x82b32030,
0x5ff8316f, 0x0a00ffdf, 0xffff9899, 0xff0040ff, 0x9a190d00, 0x0a87a482, 0x38215982, 0x211e8210, 0x0482b89e, 0x824c9721, 0xcc0c270e, 0xff54f808,
0xc083ff00, 0xb00a0023, 0x211282a4, 0x3682e81b, 0x82a43021, 0x20702140, 0x1e262682, 0xf9ffffb8, 0x8582080c, 0x0a860a20, 0x41299582, 0xf3ffffec,
0xffff78de, 0x2ee883fe, 0x082adcf3, 0xf894f70e, 0x00ff1554, 0x8266668d, 0x997224ca, 0x84ffff9a, 0x82ff200a, 0x1808200a, 0x2218f345, 0x8233b3c9,
0x80cd271b, 0xffff9c00, 0xaf8280d6, 0x66e61c22, 0xf127af82, 0xff960080, 0x8270fcff, 0x8213208e, 0x0a002860, 0x00fff628, 0x8300800e, 0x820f8384,
0x00ff270a, 0xff67e613, 0x34830300, 0xff210e83, 0x2d3983f5, 0x99191f00, 0x4ceaffff, 0x2500ffce, 0xa382cdcc, 0x62cc4c21, 0xf52106ff, 0x0d94188b,
0xffff2413, 0x829a19ca, 0xe6d02281, 0x26368266, 0xffff3e8a, 0x823333dd, 0x8e422104, 0x1e206a82, 0xe1264183, 0xff053433, 0x75820f00, 0x83f0ff21,
0x82f52024, 0xe6ff2151, 0xea230e83, 0x828b34b3, 0xe69125ab, 0xffff0666, 0x096ca718, 0x820a0021, 0x00ff2417, 0x82cc4c0d, 0x0f6e2342, 0x3e64075c,
0x19002806, 0x00ff9ad9, 0x82c2b50a, 0xb81e264d, 0xe1f0ffff, 0x22208248, 0x82900222, 0x70fd216e, 0x2e2c6382, 0x00ffec51, 0xcb3e4a2e, 0xb01c00ff,
0x4520f982, 0x28058a4f, 0x8b66e600, 0x14fb8b05, 0x82538415, 0x185f824c, 0x260d01ff, 0x0766e6a1, 0x834000ff, 0x41bf2093, 0x332105c7, 0x5f991832,
0xffce210e, 0x12439a18, 0x0c5f9918, 0x63d34321, 0x032c0735, 0xffff9a99, 0xff0080fd, 0x9a190600, 0x06246f82, 0xf3086666, 0xd282c583, 0xb321c082,
0x20048333, 0x308d8334, 0x8b088bcd, 0xf82f0e07, 0x8b158b54, 0x4feeffff, 0x06194c5c, 0xbe82f120, 0x54eeff23, 0x071e4c7a, 0x07a38518, 0x11114718,
0x2005174c, 0x3139820e, 0x86ab1100, 0x069b088b, 0xfb0724f7, 0x24fb0674, 0x274c9b07, 0xa4b0210e, 0x08206385, 0x85206a89, 0x6a856f82, 0x2012894c,
0x011e194f, 0x0609530e, 0x85206a85, 0xd4226a84, 0xbe4c7b07, 0x4c349f0e, 0x949f0fbc, 0xfb067b29, 0x74f70704, 0x8604f706, 0x290a416a, 0x86226a85,
0xb882ff8b, 0xe8847a20, 0x8620ff90, 0x7a22ff88, 0x6a82088b, 0x3441d420, 0x18b32005, 0x830950a7, 0xeeff2e0a, 0x0e08cc4c, 0xff54f82f, 0x66e68001,
0x22458215, 0x82166eed, 0x34b32139, 0x27084654, 0x6b088bcc, 0x07f4fb06, 0xee211b82, 0x206c8354, 0x835a83ab, 0x3aef2604, 0xff088be0, 0x820683ff,
0xbade2105, 0x85638d82, 0x07f42109, 0xeb2c35b2, 0xe6ffff07, 0xff0666e6, 0x146eacff, 0x35087082, 0xffb85eb5, 0x281c3d00, 0x19f8ffff, 0x5300ff99,
0xff08a530, 0x2adcf6ff, 0x665f00ff, 0x4a00ff67, 0x00ffaec7, 0xffcc4c50, 0xf6a85c00, 0x74f7088b, 0x1200ff06, 0x9a629a99, 0xf1ff2306, 0x438284ab,
0xe23aef26, 0xab8b0e08, 0x0021db82, 0x14f45411, 0xf6a83622, 0x0c253782, 0x00ff0a57, 0x254b831c, 0xff33331c, 0x2a831300, 0x65432020, 0x27068305,
0x4c1b00ff, 0xecffffcd, 0x0d202083, 0xff292082, 0x0834b3e3, 0xb3f600ff, 0x0a761833, 0x8234200f, 0x4cee2273, 0x407918cc, 0xffff2617, 0x06cd4c09,
0x05dd5dff, 0xff244482, 0x33b3e4ff, 0xff265885, 0x8b3333df, 0x0684ff08, 0xe3ffff24, 0x8685cdcc, 0xa8f3ff23, 0x829a84f6, 0x57c9221a, 0x0e95420a,
0x24087141, 0x54f7078b, 0x66e5878b, 0x12640f4a, 0x166e642d, 0xf734f72f, 0x00ff1584, 0x8bcccc20, 0x4c1b00ff, 0x82b583ce, 0x330d22a3, 0x27ad8232,
0xff0833b3, 0x34b33600, 0x210f0e41, 0x7b848b33, 0x22190e41, 0x82cc4cc9, 0xccf221d2, 0x0e414e82, 0x274e8206, 0xffcc4cec, 0x3433dfff, 0x20050e41,
0x22438234, 0x41cccce3, 0xb321070e, 0x070e4134, 0x3b840920, 0x2268ee20, 0x21a28213, 0x4718b311, 0xff2211c1, 0xa384f600, 0x60820c20, 0x4c1c0022,
0x1c21be82, 0x204e8233, 0x202a8313, 0x22d88220, 0x413bab08, 0x6c660543, 0x0e002106, 0xff202382, 0x08de4218, 0x8e0a2465, 0x839d18d8, 0x1624650f,
0x67f7eb21, 0x6d181070, 0x68650b9b, 0x06046907, 0x8bcc4c26, 0x29ffff08, 0x42102141, 0xcd831f30, 0xcc4c1c22, 0xa9223b82, 0x3042cd4c, 0x20a28218,
0xf14418ab, 0x00ff2811, 0x0633b356, 0x820c00ff, 0x1c0025f8, 0x00ff0040, 0x20051043, 0x430982c0, 0x20831210, 0x2c050142, 0xff0800c0, 0x34b3d600,
0x6bd4fb06, 0xf4431815, 0x19006917, 0x6d188a82, 0x5421235d, 0x06af447c, 0xaf444020, 0x19ca3005, 0xffff609a, 0x5666e6d5, 0xffff088b, 0x829a19e6,
0x80e82179, 0x0920ab82, 0x7376bf82, 0xb3102205, 0x241a8233, 0x5c67e6a1, 0x05ac5405, 0x19fcff22, 0x2405ed6e, 0xe6fcffff, 0x25308266, 0x089a19fb,
0x1c82878b, 0x8433b321, 0xffff2212, 0x234282ff, 0x3433fbff, 0x5e22d282, 0x38839919, 0x3433112a, 0xb31000ff, 0x1700ff32, 0x00211b82, 0x200e830a,
0x233d8219, 0xb68bc008, 0x47828084, 0x08208c82, 0x15002219, 0x72638b20, 0x83002006, 0x82032036, 0x0000227e, 0x22a48280, 0x8466e603, 0xba66239a,
0xac84ff05, 0x4cefff25, 0x83ffffce, 0xf5ff23c0, 0xd083cccc, 0xd7839920, 0x0832e018, 0xc08bb623, 0x274b8208, 0xff66e635, 0xe1fa2a00, 0x4b830482,
0x1f053522, 0x00232582, 0x8267e619, 0x849e831b, 0x8300203c, 0x845083b2, 0x839a20c4, 0x21d68362, 0x58830400, 0x0482ff20, 0x88820020, 0x848f8b21,
0x1e05214f, 0x21d0a018, 0xe600002c, 0xfeff0566, 0xfb9a199f, 0x69451534, 0x660d2607, 0x0d00ff67, 0x9e7d1866, 0xf2ff2b0e, 0x00ff9999, 0xff33330f,
0x1b82edff, 0xef28e382, 0xff8be13a, 0x1ec5f0ff, 0xcc210482, 0x220a82cd, 0x183333ef, 0x2407954c, 0xe23a0f00, 0x243282ff, 0x1000ff9a, 0x20c983c5,
0x21698201, 0x966854f7, 0xccf0210d, 0x0ecb4c18, 0x21057143, 0x358299f2, 0x34b31122, 0x46055c6b, 0x918f07dd, 0xd346ce20, 0x21918205, 0xcd43ff32,
0xff8b2505, 0x9a19bffe, 0x6b0cfc6a, 0x2f23505f, 0x18f814f8, 0x22696392, 0x19154b4b, 0x20168122, 0x06b3498b, 0x9a190022, 0x99210982, 0x06f25a9a,
0x9a99fd26, 0xaeffff08, 0xd3241483, 0xff05cc4c, 0x27056667, 0xffcd4c0c, 0x0080efff, 0x2405da5e, 0x33b3edff, 0x2225828b, 0x8266a6dc, 0x59e32745,
0xe3ffff99, 0x0a82cd4c, 0x33b3dc23, 0xd1221908, 0x67a62108, 0xcc251683, 0x592300ff, 0x212d829a, 0x22831200, 0x85100021, 0xff343544, 0x33b30b00,
0x330d00ff, 0x00ff0832, 0xff66e651, 0x6666d2ff, 0xff226e82, 0x8e8534b3, 0x83ffff21, 0x858e8214, 0x835789a8, 0x4ce32120, 0x4c215783, 0x185783cc,
0x18095642, 0x200a2242, 0x8276828b, 0x82978223, 0x831c2028, 0xb3dc2232, 0x232d8234, 0x9a99f0ff, 0xf1205082, 0xfa205b83, 0xff21f482, 0x220983f4,
0x8266e6f6, 0x82aa20ce, 0x2e002726, 0xff050080, 0x3b825500, 0x0b240a86, 0xffff9a19, 0xff222082, 0x09830e00, 0x00233483, 0x9066660f, 0x84332079,
0x82cd2072, 0x820020a7, 0x89fa8691, 0x078b3079, 0xb801ff0e, 0x01ffcccc, 0x158a01bb, 0x820100ff, 0x0300264c, 0x00ff0601, 0x27818202, 0x70fd0100,
0x330300ff, 0x0684a283, 0xff231685, 0x859002fe, 0xfcff242a, 0x8308fafe, 0xff982582, 0xf252daff, 0x2520a282, 0xff36ad82, 0x0546e1f1, 0xfeffff8e,
0xff8dbade, 0x4621fdff, 0xfcffff8b, 0x83823eca, 0x89200683, 0x88201284, 0xde821e84, 0xd382da20, 0xff243084, 0x68e6f1ff, 0x54224682, 0x1b82057c,
0x8266e621, 0x19fd2221, 0x222d829a, 0x82ccccfc, 0x83ff20d6, 0x223a8206, 0x848d9a19, 0x828e201e, 0x2330833b, 0x84ab2500, 0xd9223082, 0x87826666,
0x05ba1e23, 0x21998288, 0x22844621, 0xde21ad82, 0x22ff82ba, 0x82c23503, 0x8200207b, 0x24b58506, 0xbade0200, 0x8226848e, 0x992622bb, 0x8538859a,
0x250023c6, 0x4e820ead, 0x15826820, 0x9fa3ff26, 0x00ff15be, 0x271ab353, 0xff32b31c, 0x1e45e3ff, 0x1127f782, 0x00ff6866, 0x82666611, 0x33062c0a,
0x0600ff32, 0x00ffce4c, 0x8234330a, 0x230f837e, 0x32b3f9ff, 0x15836c82, 0xccf9ff2a, 0xffff8bce, 0xffccccf5, 0x04821583, 0x82cecc21, 0x83ee20cb,
0x99ee2271, 0x20408298, 0x054b421c, 0x6218ce20, 0xb6550ef4, 0x82f5200e, 0xf5ff2366, 0x25829a19, 0x68e60727, 0x0400ff75, 0x2051824c, 0x217283e8,
0xd449e7ff, 0x198d2705, 0xa2ffff9a, 0x048666e6, 0x8b200e82, 0x8d226982, 0x7f82b81e, 0x47e1a227, 0x195d00ff, 0x23a0829a, 0x0866e672, 0x11820685,
0x84b91e21, 0x00ff2416, 0x8248e172, 0x1800232d, 0x1b8233b3, 0xcdcc1729, 0xb3fbffff, 0x8283a134, 0x820a20c5, 0x0a002751, 0xff0514ee, 0xaa833dff,
0xb85e3923, 0x2a238215, 0xff666639, 0x01802f00, 0x822e00ff, 0x38002acb, 0x088b0080, 0x00ff0693, 0x23418409, 0xffcd4c06, 0x5d0ab17f, 0xf9220747,
0x168433b3, 0xf6ffff2d, 0x088bcd4c, 0xffff0683, 0x82ccccb5, 0x33c2259f, 0xc3ffff33, 0xff219f83, 0x209f82b4, 0x61401883, 0x0f082208, 0x06a95d5d,
0xa4f00722, 0x0922a183, 0x4d8271bd, 0x90420622, 0x93255f8b, 0x00ff0e07, 0x34ff82b1, 0x6666db00, 0x1e00ff15, 0xffffcccc, 0x059a99a4, 0x806000ff,
0x27958200, 0xffb89e1d, 0x48615b00, 0xb127c482, 0x00ffe2fa, 0x831e8538, 0x2e31820a, 0x0080c7ff, 0x00ffd905, 0x159a99e4, 0x8273ffff, 0xffff24c6,
0x506d668d, 0x00231208, 0x84939972, 0x052f5016, 0x06850820, 0x7100ff25, 0x82ff34b3, 0x829a201b, 0x808c2396, 0x06850800, 0x25052752, 0x66667400,
0x2082ffff, 0xa126b983, 0xfeff0080, 0x66831997, 0x9a99aa27, 0x4c0100ff, 0x27838208, 0xff9ad9e6, 0xf668aeff, 0xf0210a82, 0x26b5820c, 0xff68b1fb,
0x824cefff, 0x82fd2009, 0xeeff212f, 0x83056852, 0x37168206, 0x00ff5c4f, 0x7be48502, 0x560400ff, 0xffff0804, 0xffd7e3e6, 0x7e8a5100, 0xaa273c82,
0xffff9999, 0x82f8b3fe, 0xe1ed310a, 0x1b00ff47, 0xfffff6a8, 0xff52f8f4, 0x289c2000, 0x45261982, 0x2300ff1f, 0xb5823e0a, 0xaec74527, 0x2f3100ff,
0x202982e0, 0x3b6782e4, 0xcccc5000, 0x1500ff05, 0x00fff628, 0xffc2351a, 0x15ee1b00, 0x661400ff, 0x1f00ff68, 0x0c223e83, 0x3482e03a, 0x0a574427,
0xc2ccffff, 0x27298290, 0xff3e4a44, 0x52383300, 0x1f270a82, 0xffffe2fa, 0x821ec5f3, 0x84eb2634, 0x97ebffff, 0x2348850c, 0xcccce5ff, 0xe4219e82,
0x20db8259, 0x832984af, 0xceff2374, 0x748266e6, 0x51fe2b08, 0xdcffffea, 0xff8066e6, 0x6666dfff, 0xccedffff, 0xe4ffffce, 0x0e08ce4c, 0x190f01ff,
0x6315df9a, 0xffff8b07, 0xff0060f9, 0x04820500, 0xa0faff22, 0x06280982, 0x088b00a0, 0x00ff06b3, 0x18850883, 0x8b201d83, 0x08211084, 0x833182b3,
0x85ff2019, 0x8236842c, 0x088b2340, 0x12820663, 0x83323321, 0x1865834f, 0x2109a15d, 0x66e48beb, 0x00f72f23, 0x83838315, 0x839c858c, 0x20de85a1,
0x20e78b08, 0x2a1d8542, 0xbe9f0600, 0x00ff088b, 0x999a1927, 0x00ff24eb, 0x8266e600, 0x9a9930f8, 0x80fbffff, 0x0500ff00, 0xffff6666, 0x820080f8,
0x40ff2539, 0x54fb28dc, 0x002073a5, 0x5b417387, 0x226b8322, 0x8647a1fa, 0x5ef9226b, 0x236b82b8, 0xd8235b00, 0x2652ad41, 0xffff8b33, 0x82cdccf9,
0x4f5f189c, 0x58f72108, 0x21264741, 0xd3863c5f, 0x5eba0522, 0x22224741, 0x41cccc01, 0xeb211547, 0x2442418b, 0x86765e21, 0x9e06226e, 0x226e90fa,
0x42ff9062, 0xb6410ca2, 0xfb2b261a, 0x7cfb1554, 0x21f78206, 0xfd820060, 0x41a0fa21, 0x2742059a, 0x0cb34112, 0x3282f720, 0x421b1043, 0xfb221220,
0x1d42f754, 0x48612125, 0xb820da88, 0x0422da8f, 0xda8f9a79, 0x21184941, 0x8e42b4f7, 0x0ffa4257, 0xdc7cfe23, 0x1a8e4228, 0x2800ff24, 0x54430000,
0x05494419, 0x22144044, 0x184861f9, 0x20111be0, 0x2691428f, 0x430c6221, 0x83200865, 0x210cc144, 0x4341715d, 0x0695630d, 0x6543ff20, 0xa4013d0f,
0x00ffa4f0, 0x159a1999, 0xcc76ffff, 0x8900ffce, 0xffffc235, 0xff999920, 0x90020000, 0xc8211382, 0x27048272, 0xff08aec7, 0x6606f8ff, 0xea210483,
0x05a462ff, 0xc4c0f322, 0xfb376282, 0xf6ffffe7, 0xff08e07a, 0x852b2a00, 0x87bcffff, 0x00ff05af, 0x82192406, 0xf0273515, 0x540c00ff, 0xfbffff3a,
0x00ffc8f6, 0xff48e10a, 0x7d3f0400, 0x54272982, 0x00ff295c, 0x8270bd21, 0xed092729, 0x0300ff92, 0x3382eae6, 0x969a1922, 0x22066949, 0x82cecc09,
0xb2fa276e, 0x3500ff6f, 0x25821e45, 0x6726382c, 0x2b1300ff, 0x3d00ff86, 0xc9820040, 0x32333827, 0xd2ecffff, 0x272583f8, 0xfffff8b3, 0x0564bcca,
0xdc263b82, 0xf5ffff6a, 0x4b82f468, 0x82d22221, 0x5ccf2a09, 0xf60900ff, 0xfcffff86, 0x284f820c, 0x9a595400, 0x45deffff, 0x224f821f, 0x827ad40a,
0x225f8395, 0x82d8630c, 0x82242095, 0x1c06225e, 0x212e8228, 0x9f829bc6, 0x142e2a28, 0x7a4300ff, 0xdf8205e2, 0x82e2fa21, 0x82772015, 0x99fe2268,
0x2ece829c, 0xffffce4c, 0x93fefff7, 0x34f80e08, 0x821524f8, 0xde082c8b, 0xf8ffffb8, 0x00ff66e6, 0x82482107, 0x9a19251c, 0x064b088b, 0x18850885,
0xdef8ff24, 0x10828bb8, 0x08482129, 0x00ff075b, 0x823e0a60, 0xf5ff281e, 0xff05bbc2, 0x82e19ffe, 0xe68f3633, 0xffff1566, 0xffc275fd, 0x3433a2ff,
0x28c6ffff, 0xebfffff6, 0x29ae8299, 0xff0080fc, 0xcc4c7eff, 0x4c185f08, 0x1424182a, 0x1100ff06, 0x2005fc53, 0x22848266, 0x8266660e, 0x28108294,
0x07d4f708, 0xe19fffff, 0xd24c1847, 0x17f22508, 0xf1ffff0a, 0xff2e5183, 0xffffae87, 0x086666ee, 0x388001ff, 0x7c828b52, 0x1682ff20, 0xff224683,
0x4c58f2ff, 0x21208307, 0x4282088b, 0x0666e624, 0x7fb1d4fb, 0x7e82b720, 0x0022bf83, 0xd383b381, 0x0021d882, 0x21a18214, 0x0482fdff, 0xcc5d0023,
0x365a82cc, 0xff66e61f, 0x9a1980ff, 0xf706cb15, 0x064b0734, 0x5b0734fb, 0x411594f7, 0x9921053e, 0x103e418b, 0xffffff26, 0x055bc2f5, 0x20054341,
0x209282bb, 0x137d4100, 0x30fb0e2d, 0x34f8d4f7, 0x00ff8b15, 0x82b89e11, 0x230482f2, 0x48610e00, 0x6121f282, 0x20d18348, 0x850682ee, 0xf1ff2316,
0x6682b89e, 0x08271082, 0x06cb072b, 0x82bb07eb, 0x66e6298f, 0x06f4fb15, 0x20f7ffff, 0x07604c18, 0x0d2e4c18, 0xff241984, 0x00200700, 0xe029a082,
0x0800ff00, 0x088b00e0, 0x2931829b, 0x079a19df, 0x00ff3f8b, 0x1a828035, 0xe783be20, 0x09834a20, 0xceccf028, 0x9cffff08, 0x6282cccc, 0x6300ff27,
0xff070040, 0x23188300, 0x66260f00, 0x002c2c85, 0x8b9a9941, 0x00ff08d7, 0x0766e620, 0x52844982, 0x67836285, 0x6382c982, 0x07ab0829, 0xffff938b,
0x8266e6f8, 0x19f72b05, 0xfb088b9a, 0x7f00ff84, 0xe9949a19, 0xe9854720, 0x4e184720, 0xe98e08cb, 0x74f80e24, 0xe88534f8, 0x14be5618, 0x07e4fb22,
0x083b8818, 0x4b0ad721, 0xff230525, 0x83f628f7, 0xd44b1856, 0x0a854b09, 0x07c4f722, 0x200d9c7a, 0xf78d18ff, 0xb4fb2109, 0xdc214c83, 0x20ee82a6,
0x2304821c, 0x9a59e3ff, 0x2106344f, 0xab1814f8, 0xa6210efd, 0x25ed8266, 0x089a5923, 0x2e65f4f7, 0x18842005, 0x25107057, 0x14fc64fb, 0x85692b15,
0x110d4c0c, 0x0fa18918, 0x6782eb20, 0x2ca08918, 0x62b5eb20, 0x18cccc21, 0x41112289, 0xcc210848, 0x074841cc, 0x8b343326, 0x2b34f708, 0xe56d6385,
0x27458213, 0xff88d608, 0xfc290700, 0x78200483, 0xb8064c6a, 0xca4b18c6, 0x14294107, 0x62823420, 0x04823320, 0xbd820820, 0x62840820, 0x9b23c6aa,
0x841504f7, 0x863320e1, 0xccf825dc, 0xf7ffffcd, 0xfb21e183, 0x0fa54194, 0x44193320, 0x33201119, 0x2606b54d, 0xcdcc0800, 0x82f7088b, 0x41098232,
0x2b2f1245, 0xffef0e07, 0x9a193f01, 0xe66000ff, 0x18ff1566, 0x230a3953, 0x0a57e3ff, 0xdc238282, 0x850866a6, 0x00ff2506, 0xfff6a81c, 0xff221683,
0x1b822300, 0x06850820, 0x1b831685, 0x85066442, 0xffff2406, 0x853233e4, 0xdbff241b, 0x828bcecc, 0xe600242d, 0x8234f766, 0xc0b92263, 0x2a518200,
0xff9a59bc, 0x6666e6ff, 0x83cbffff, 0x91d12604, 0xffff08ec, 0x26e683f2, 0xff146ef3, 0x82b3feff, 0xcceb25fa, 0x0b00ffce, 0xf2220983, 0x418232b3,
0x1e830b20, 0x1483f220, 0xe1821420, 0x61822382, 0x09820d20, 0x34202382, 0x28251e82, 0x00ff67e6, 0x2ccc8324, 0xff999934, 0x66e61300, 0x993600ff,
0x837b839a, 0x00ff2c06, 0xff32b334, 0xb81eecff, 0x822800ff, 0xdbff2344, 0x358248e1, 0xa0510620, 0x99072308, 0x4b45ff98, 0x80072205, 0x22358300,
0x8210d808, 0xd00832cd, 0x0300ffe6, 0x00fff0a7, 0xff0a5706, 0x6c270700, 0x25958308, 0x0d00ff34, 0xa9823e4a, 0xffcccc24, 0xec821400, 0xb3f2ff22,
0x0b211382, 0x848a82b3, 0x2e0021d3, 0xbc20d883, 0x00280482, 0xff00801a, 0x34b3b9ff, 0x01225482, 0x25823336, 0x6666223a, 0xacffff15, 0x00ff9819,
0xff866b50, 0x68e691ff, 0x472c00ff, 0x8bffffae, 0x83054e51, 0x26168206, 0xffffd8e3, 0x8252b8d3, 0x6c272b2a, 0x94afffff, 0xffff087a, 0x4c8240f3,
0x82c0f321, 0x97ff2504, 0xebffff0a, 0x00230982, 0x83f6380c, 0x82012018, 0x380c2199, 0xf3202e82, 0x00210482, 0x27288314, 0xfff6a8ff, 0xaec70c00,
0x2e210482, 0x2f1e82b8, 0xff89f146, 0x99c94500, 0x4c5f00ff, 0x2500ffcd, 0x0021fd82, 0x05244163, 0xff280683, 0xfe7f5d00, 0x07daffff, 0x48203082,
0xff23cf82, 0x82ec11bb, 0x4c062635, 0xfaffffcc, 0x24358219, 0x8868e607, 0x25c78293, 0xf0670800, 0x0582ff8b, 0x00ff6c2a, 0xfff04703, 0xb0470600,
0x90210482, 0x222d8220, 0x82c0350c, 0x89c1296e, 0x99ffffff, 0x1500ff9c, 0xff216382, 0x3a4182f3, 0x66660b00, 0x30fb0e08, 0x54f8e4f7, 0x06b4fb15,
0x61e6ffff, 0xffff8b48, 0x84b89ee9, 0x820a8204, 0xfc082310, 0xd1620734, 0x00ff2405, 0x64486116, 0x192506c7, 0x088bb89e, 0x203382f7, 0x85098300,
0x821e8319, 0x21108283, 0x3383f808, 0x2e861a83, 0xe6293884, 0x088b6666, 0x64fba4fb, 0x05224315, 0xc144ff20, 0x82332007, 0xff5018b8, 0x31511811,
0xff332111, 0x20074272, 0x064272cd, 0x830da96e, 0x245a854f, 0x8b07ab08, 0x1866852b, 0x2111ca8e, 0x6f8506ab, 0xde6e7f85, 0x466b200a, 0xcc200910,
0xf8226182, 0x6697cccc, 0x094a5118, 0xfb34f723, 0x23688214, 0xf232f7ff, 0xcd219d82, 0x8204860e, 0x20eb820e, 0x0f1c4414, 0xa7843789, 0xf7209b91,
0x00233282, 0x820ecd08, 0x8607201e, 0x828b2051, 0xf2322284, 0x209c8208, 0x416897eb, 0x67a01006, 0x851b0341, 0x41332066, 0xff242d6d, 0xcdcc0800,
0x222bd141, 0x9d54fbeb, 0x827420ce, 0xccf822f8, 0x2253828c, 0x828bf232, 0x0ecd245e, 0x8507ab08, 0x21138208, 0x18847433, 0xcc211782, 0x0681708c,
0x98353541, 0xcccc2166, 0x20063346, 0x08384607, 0x45053541, 0x9c4112b9, 0x05354108, 0xa842cc20, 0x55531806, 0x0da34212, 0x20083541, 0x063a4134,
0xcccc0822, 0x9f46cd86, 0x3954180b, 0x069c410a, 0x116f9118, 0x4274fb21, 0xcb21176c, 0x176c4207, 0x89463282, 0x4b200815, 0xf7ef0e07, 0x4701ff4e,
0xa2150080, 0x1e2300ff, 0x2400ffb8, 0x00ff6666, 0xff3e8a19, 0x9a992a00, 0xa327b882, 0x00ff08d6, 0x6d343313, 0x4c2509f3, 0x0e00ffcc, 0x59258254,
0xff2310b6, 0x609aabf1, 0x08260567, 0xccecffff, 0x191907cc, 0x68263730, 0xb3f7ffff, 0x7e820532, 0xff64662b, 0x0080f6ff, 0x190200ff, 0x05635a9c,
0xccfaff28, 0xf4ffffcc, 0x63820080, 0x82e6fe21, 0x99ff211e, 0x002aa782, 0x00ff34b3, 0xff666600, 0x1e83ffff, 0x34b3fe22, 0x5a27b682, 0xffff3433,
0x82cc4cb9, 0x3ada1848, 0x30933886, 0x8cffffa4, 0x7105ac9c, 0xb395ffff, 0x00ff1533, 0x0733b304, 0x83f600ff, 0x193e2fa9, 0xfeff059a, 0x06cccce9,
0x66f3ffff, 0x05828b66, 0xff33b324, 0xd5830700, 0xc2b5fb25, 0x840b00ff, 0xd7fa22f4, 0x270a840a, 0x0f0200ff, 0x0d00ff5c, 0xdb7d1e82, 0x83092005,
0x252e821e, 0x0800ff67, 0xf482ce4c, 0x82331f21, 0x3323293e, 0x1100ff32, 0x00ffcd4c, 0x09ec1919, 0xf7078b2a, 0xe2feff34, 0x7a15cccc, 0xef236582,
0x19ff34b3, 0x200c9b19, 0x2b3082cc, 0xff8b3233, 0x9a191000, 0x0614f708, 0xe6292383, 0xf9ffff66, 0xffffcc4c, 0x9b1919ee, 0xff2f2318, 0x71828700,
0x4fae0123, 0x21d8825c, 0x87826605, 0x8ed70a22, 0x1921ab82, 0x2e5f8299, 0x00ff16d9, 0x8b9a190c, 0x7800ff08, 0x83066766, 0x8298200c, 0x190b2262,
0x2258829a, 0x53ffea26, 0xf522059f, 0x20827228, 0x34330729, 0xb0f1ffff, 0x60eb05a4, 0xab200e8f, 0x210b6d5f, 0xea627c54, 0x14fc2110, 0x210e2e5f,
0x44187c54, 0x1120097a, 0x83122e5f, 0x82072060, 0x002108b4, 0x055c4f0e, 0x990301ff, 0x3ffeff98, 0xff150a97, 0x6866feff, 0xcce5ffff, 0xebffffce,
0xffff9819, 0x21fb83ec, 0xbf8399e6, 0x330aff23, 0x23668234, 0x8b66a6e6, 0x05251c82, 0x1300ff1f, 0x32af82b3, 0xff856bfe, 0x32331a00, 0xe9ffff08,
0x01fff6e8, 0x829a1952, 0xe6802d51, 0xffff0666, 0xffccccea, 0x66e6adfe, 0x6341c418, 0x82c7ff21, 0xc7fe2ccf, 0xff156666, 0xa4f00e00, 0x82f0ffff,
0x13003404, 0xffff29dc, 0xff14aef7, 0x0a171500, 0x00ff088b, 0x82030800, 0xf7ff24be, 0x838b8bfd, 0x0f15230e, 0xc8828b5c, 0xff2adc26, 0xe04f0800,
0xe8263982, 0x0f00fff4, 0x29826811, 0x00600924, 0x048400ff, 0xae270f22, 0x18213882, 0x200e8210, 0x22588270, 0x83ecaff6, 0xf067261e, 0xa7f6ffff,
0x211982f0, 0x6d822010, 0x8262d021, 0xecaf210e, 0x8f3a0482, 0xff73085c, 0xaec7e7ff, 0x0ce0ffff, 0xf2ffffcc, 0xfffff6a8, 0x8b0100de, 0x6b828b08,
0x08208089, 0x07211582, 0x2d8d82ae, 0xff1f05e0, 0x0a570d00, 0x1800ff73, 0x16825238, 0x5c8fce2d, 0xe13100ff, 0x00ff8b48, 0x82b81e51, 0x2576820a,
0x66e63100, 0x2184a308, 0x1f00ff24, 0x3184e1fa, 0x2100ff24, 0xd69252f8, 0x6d822220, 0xf3212582, 0x207d8432, 0x838d84a3, 0x24e282b3, 0xde8ff6ff,
0x83af82ff, 0x6ad121b3, 0x9821ae82, 0x21048204, 0x768266a6, 0xe08ff622, 0xff23d285, 0x8216d9f0, 0xef2721d7, 0x9e200e82, 0x09227f82, 0x1e821e58,
0x0a17f130, 0x0f0f00ff, 0xecffff5b, 0x00ffd823, 0xec825108, 0xa3f0ea22, 0xea22d692, 0xd682f6e8, 0xd723ec2c, 0xb0f7ffff, 0xf1ffff22, 0x71825c0f,
0x8297ee21, 0x19e12744, 0xe0ffff9b, 0x1f8245ba, 0x3433cd27, 0xe61e00ff, 0x380f8266, 0x0e08cccc, 0xcce201ff, 0xa201ffcc, 0xff151ec5, 0x68e62600,
0x05d9ffff, 0x21268220, 0x3c82cfc0, 0x9819d923, 0x213d8264, 0x1682669a, 0x00809a28, 0x0900ff05, 0x9d826666, 0x72180a84, 0x002321b7, 0x70ebffff,
0x0a190dd1, 0x8b210eab, 0xf1e718ff, 0x82802021, 0x80f32345, 0x7b820800, 0xf6220a83, 0x86829a99, 0x0a826520, 0x91650025, 0x82b205ea, 0x58f928b4,
0x333f00ff, 0x82b28b32, 0xa8062fbb, 0x058b8b08, 0xa154feff, 0xd9feff48, 0xd48216ee, 0x86ab7827, 0xb37800ff, 0x2d368232, 0xffcc4c2d, 0x34b3d2ff,
0x87ffff05, 0x0483cd4c, 0x0a82cc20, 0x71fdfc29, 0xfeffff88, 0x82875c4f, 0xb3fb22f7, 0x37f18234, 0x0766e6db, 0x192400ff, 0x00ff069a, 0x8bcc4c04,
0x0100ff8f, 0x8e8e34b3, 0x78228582, 0x4e9b34b3, 0x827c7c21, 0x9a9924f4, 0x83f7ffff, 0xccea2304, 0x4e828bcd, 0x0a97d52d, 0xd8ffff06, 0xffff5c0f,
0x826666e5, 0x4ff32172, 0xf7270a82, 0xffff0280, 0x839919ef, 0xff302b5b, 0x8736f5ff, 0xcc0a00ff, 0x0a8308ce, 0x0a84c920, 0x53309582, 0x1000ffb6,
0x00ff66e6, 0xff047608, 0x32b30c00, 0x1a278282, 0x00ff00a0, 0x8268e627, 0x662a29d1, 0xff8b0766, 0x32331500, 0x6e202182, 0x2e05255a, 0x8b089a9a,
0xaf0e058b, 0x00ff74f7, 0x8234b3b8, 0x33002a14, 0x1d00ff33, 0x00ffffff, 0x2809830e, 0xa39a191c, 0xff1100ff, 0x204b82ff, 0x22ce83ec, 0x825298b1,
0x8212204b, 0x0d0028b1, 0x00ff40f5, 0x8264e619, 0xac9c217a, 0x19272482, 0xf0ffff9c, 0x83089022, 0xd6233506, 0x190300ff, 0xe6ffff98, 0xffff5238,
0xff6866f3, 0x5278ecff, 0x5e26af82, 0xffffcc4c, 0x4482f805, 0xccf0ff22, 0xe8270a82, 0xffff6666, 0x82ce4ce7, 0x00802b3a, 0xb3e4ffff, 0xfcffff32,
0x29829a19, 0x6e838c20, 0xcecc6733, 0xffffeb05, 0x15cc4c77, 0xc2ffff8b, 0xffff9a19, 0x85e282cd, 0x230e8204, 0x24fb088b, 0x180e5a45, 0x221007a0,
0x827b540e, 0x17a818cd, 0xcf04230a, 0xaf82065c, 0x8b48a12a, 0xf50b00ff, 0x1200ffc3, 0xfe215283, 0x22e98330, 0x82080080, 0x299c21fc, 0xcc20be82,
0xff229482, 0x0982cdcc, 0x8266e621, 0x5d032029, 0x3c20057a, 0x0021b082, 0x2130822f, 0xb5823100, 0x833b0021, 0x33023220, 0x00ff0832, 0xff991974,
0x9a9997ff, 0x0000ff05, 0x20a88219, 0x842983fe, 0x99fc2609, 0xffff8b9a, 0x305b82fd, 0x2f0e078b, 0x01fff4f7, 0x1566e650, 0x171600ff, 0x2258820a,
0x82f6e811, 0x83e1208d, 0x2010828d, 0x31118208, 0x630c1716, 0x0a3100ff, 0x088b8b3c, 0xff638b8b, 0x2883ceff, 0xe8e9ff23, 0x831d82f6, 0x822f8206,
0xeeff2381, 0x448270fd, 0x8b9a1926, 0x8b14fb08, 0xff264fcc, 0x9a199f00, 0x538204fb, 0x68820020, 0x193f0024, 0x9782059a, 0x04d60825, 0x82f8ffff,
0x07002904, 0xfffffc29, 0x8bfc29f7, 0x11b65d18, 0xea82cc20, 0x3433f727, 0x4b074b08, 0x05fc4906, 0x5d183598, 0x35a1121c, 0x0bf15e18, 0xff256b87,
0xae07c0ff, 0x09b25007, 0xffff9925, 0x829a59e3, 0xdd290888, 0xff08cc8c, 0xcc4cbbff, 0x0900ff07, 0xffff62d0, 0xffe4e5f9, 0x75930b00, 0xc5faffff,
0x0a00ffa2, 0x088b299c, 0xa31400ff, 0x2cde82d7, 0xfff66818, 0xe2ba1300, 0xa60700ff, 0x21048266, 0x1a829899, 0x00400622, 0x2107c36e, 0x24820a17,
0xff230f83, 0x83f0c7f9, 0x5dcf301a, 0x78f7ffff, 0x1900ff54, 0xffffcd4c, 0x823233ed, 0x9a992149, 0x06825084, 0x1800ff24, 0x50b83373, 0x5095cc20,
0xa1866282, 0xa1a46820, 0xa1885c20, 0x0a22508e, 0xcd82289c, 0x7c940b2c, 0x3a0500ff, 0x0900ff1c, 0xe7825ccf, 0x825e1a21, 0xab4423d7, 0x1b820786,
0x00802223, 0x05fe62ff, 0x09831d20, 0x2d05b951, 0x66e6e0ff, 0xcc69ffff, 0xffff15ce, 0x208240f2, 0x820cf521, 0xb8e72e58, 0xf0ffff52, 0xffff3e4a,
0x8bae07e6, 0x21068508, 0x1683ffff, 0xb30f0023, 0x232a8534, 0xc2f50a00, 0x35d01a82, 0xe1baf437, 0xf5ffff8b, 0x00ff142e, 0xfffa1e03, 0x0a17f6ff,
0x410400ff, 0x226b828a, 0x82b89ea8, 0xeeff26c9, 0x00ff5243, 0x3451180e, 0x14f8210d, 0x0c826d18, 0x6e181e82, 0x57230949, 0x85074861, 0xfbff2347,
0x5b8576be, 0xe1fcff30, 0xf4ffff06, 0x088be2ba, 0x0000ff71, 0xde82a2e5, 0x82cccc21, 0xcecc2156, 0x332ade82, 0xfb089634, 0x0601ff94, 0x87433233,
0xf6e8223e, 0x06d743ff, 0x8b0a1727, 0xbbcb0e08, 0x08f77e15, 0x60182820, 0xf8210cdf, 0x0e844a24, 0x1f06a418, 0x3082fc20, 0x1575e918, 0x4de4f721,
0x84200546, 0x25052541, 0x7c540e00, 0x521800ff, 0xab20075a, 0x07a28118, 0xf96cff20, 0x54ee2a05, 0xe4fb087c, 0x15dbcb07, 0x083583df, 0x33b30723,
0xcc0200ff, 0x0700ffcd, 0x00ff0080, 0xff991905, 0x33b30600, 0x4f00ff08, 0x00ff6766, 0x0566e659, 0x05254198, 0x82170021, 0xffff2d1b, 0x00ff32b3,
0xff34b30b, 0x68e6f0ff, 0x28292582, 0x055c9a19, 0xf5ffff94, 0x2e268219, 0xff666610, 0xce4cffff, 0xa0089595, 0x76ff05a0, 0x0d250594, 0x00ff9a19,
0x22368215, 0x8233ffff, 0x820c203b, 0xf1ff230e, 0x3b8266e6, 0xcccc4122, 0x33274f82, 0xff900534, 0x8333faff, 0x27578387, 0x8b9a99f8, 0x66f8ffff,
0xff232182, 0x18cdccbb, 0x2a173d54, 0x19dffeff, 0xffff069a, 0x183333ef, 0x36115ea6, 0xe60000ff, 0x0e058b67, 0xffc4f7af, 0x866baf01, 0x00ff8b15,
0x82660609, 0x237d82da, 0x148e0700, 0xe6220e82, 0x83828b66, 0x34b37b22, 0x64211b82, 0x2089824c, 0x260a839b, 0xcc4c84ff, 0x83828b08, 0x84682280,
0x31218282, 0x989920ff, 0xdf00ff06, 0xfb07866b, 0x00ffffa4, 0x4c837a94, 0x30827920, 0x835a0021, 0x5c642c4c, 0x7400ff2a, 0x00ff0100, 0x820a1710,
0x190a2c50, 0x0100ff99, 0x00ff9042, 0x82cdcc07, 0x48a12146, 0xf6349e82, 0xff0800c0, 0x289c11ff, 0x9c00ff07, 0xffff0080, 0x05008063, 0xef838d82,
0x4a82f920, 0x80ffff24, 0x2c828000, 0xfa210a83, 0x212b8380, 0x9182ccd8, 0x9a19e423, 0x26e1825b, 0xffff9a99, 0x833433cc, 0x807b228c, 0x204e8200,
0x23428294, 0x66666b00, 0x842ab982, 0xff089a99, 0x68660e02, 0xd382157b, 0x82303321, 0x66072212, 0x244a8268, 0xffff3433, 0x224483fe, 0x82ccccf6,
0x83f8207b, 0x19c8265a, 0xffff709a, 0x310a83ce, 0xffceccd8, 0xce4cdbff, 0xffff8508, 0xff3233fb, 0x6583f6ff, 0x0483ff20, 0x3a82fa20, 0x84050021,
0x82612035, 0x9e00232a, 0xab8234b3, 0x6866ee23, 0x99ce4206, 0x1601ff22, 0x0023ba82, 0x18666679, 0x4a0db1cf, 0xff220d94, 0x2583c6ff, 0xcf183920,
0x308f1ab1, 0xe17af327, 0x800c00ff, 0x08c04a00, 0x841f8521, 0xff08260f, 0x00007000, 0x773519f7, 0x00ff220b, 0x0a6a7a14, 0x82008021, 0x66392222,
0x25738266, 0xff0533b3, 0x0a826900, 0x83690021, 0x06e76679, 0x8d1e8521, 0xed7e1830, 0x14fb291d, 0x0e0514fb, 0xeb54f7af, 0xca28e082, 0xff8b9a19,
0x66e6d5ff, 0x210cf86b, 0xad6b9a19, 0x6c352006, 0xf7261980, 0xfb152b54, 0x01190654, 0xe1200af1, 0x08f1c818, 0x5500ff24, 0x0482c3f5, 0x6a2a4783,
0x088b3e0a, 0xf50654f7, 0xc918e18b, 0x35270d30, 0x088b2135, 0x85d4f78b, 0x4cb92245, 0x228882cd, 0x8333b3c6, 0x823420e5, 0x4cb9230a, 0x068508cc,
0x3900ff24, 0x1684cd4c, 0x4600ff24, 0x4d8433b3, 0x25820983, 0xcc201982, 0xcc211e83, 0x8210848b, 0x20218230, 0x242b8634, 0xffcc4c39, 0x284682ff,
0xaf0e088b, 0x14f814f8, 0xab829515, 0xfb8b26c4, 0x8bc015b4, 0x092c41b6, 0x00ff6029, 0x569a192a, 0x75ff088b, 0xd52206cd, 0xad6d66e6, 0x8220840d,
0xe6352226, 0x2b888266, 0x5b01ffef, 0x34f83433, 0x0a00ff15, 0xff371082, 0x32b30b00, 0x8ff9ffff, 0x0500ff5c, 0xffff9a99, 0x08f6a8f5, 0x836100ff,
0xae4b3244, 0x00ff0514, 0x8e34330c, 0x0200ff98, 0x00ff9a19, 0x0580580d, 0x87b34621, 0xc6ff21f9, 0xe3830a83, 0x83072a41, 0x85fe8511, 0x050041f9,
0x41091041, 0x28200927, 0x28086382, 0x66661200, 0xcc2200ff, 0x1c00ffce, 0x00ff34b3, 0x08ff7f17, 0x4ceaffff, 0x2800ffcc, 0xff059a19, 0xce4cabff,
0x7f70ffff, 0x250a82ff, 0xff9899fb, 0x2582f8ff, 0x33f8ff2b, 0xfbffff34, 0xffff0080, 0x219083f7, 0x1782065a, 0xff219e82, 0x265182c0, 0x3333caff,
0x83cfffff, 0x6bbe200e, 0xb92305d9, 0x828b5c4f, 0xa4b0217f, 0x2212a741, 0x824f3900, 0x833920f8, 0xb046236f, 0xf9828ba4, 0x34820a20, 0x0a00ff22,
0xfe235c83, 0x4b9533b3, 0xff23052b, 0x82991a00, 0x193522fe, 0x20878299, 0x236582e9, 0x34b31e00, 0xd4220a82, 0x7b82cd4c, 0x3283f220, 0x4cf5ff22,
0x237c2219, 0xff06c324, 0x62840700, 0x67660628, 0x4afcffff, 0xd651ff3e, 0x9cfa2205, 0x257d8228, 0xff66661b, 0xf983d9ff, 0x66950023, 0x235b8266,
0xcb6866dd, 0xe5206882, 0xf3220c84, 0xc9829a99, 0x2382f420, 0x180a0021, 0x210f93ef, 0xa1830b00, 0xff241682, 0x66660c00, 0x084ec983, 0xcc5c2505,
0x15d4fbcc, 0xd8253682, 0x00ff3433, 0x28048220, 0xccccdfff, 0xcc2700ff, 0x832483cc, 0x83168506, 0x848b201b, 0x85082017, 0x85ff2006, 0x82328428,
0x232d823c, 0x3433fcff, 0xfc274982, 0xffffcc4c, 0x8234b3ff, 0x210984be, 0xb9826666, 0x0a832020, 0xcc4cc42a, 0x0600ff05, 0xffffd04c, 0xff28a583,
0xff30b3fb, 0x6866f1ff, 0x13830e82, 0x32b3f923, 0x240a8208, 0xffff6466, 0x833e83f9, 0x04002119, 0x19823883, 0x2e5bff20, 0xdfff2105, 0x00231982,
0x8232b33b, 0x274384f5, 0x843433f3, 0x19efffff, 0xed20fa83, 0x8b246a82, 0xb4feff07, 0x1731c183, 0xff156666, 0xcd4c1800, 0x663000ff, 0xffff0566,
0x234982fe, 0x9a190000, 0x14820983, 0xfd220984, 0xb8836666, 0xd723d922, 0xde22b882, 0xd48429dc, 0x82050d41, 0x82ff20e6, 0x00ff24d7, 0x84d72321,
0x00ff2416, 0x8229dc26, 0x2300212d, 0x002be683, 0xff99991c, 0x66e61700, 0x830700ff, 0x19202a63, 0x064a089a, 0xe6eaffff, 0x253f8266, 0xffc2b5f3,
0x70831500, 0x71fd0825, 0x821200ff, 0x068b2b1c, 0x7fb500ff, 0x0800ffff, 0x98829a99, 0x8d837e83, 0xb7209882, 0x00239382, 0x82333365, 0x82cd200a,
0x9aff224a, 0x230a82b3, 0xff7f7b00, 0x21054960, 0x2e8214f7, 0x82993b21, 0x33ad23b7, 0xcd820534, 0x52227383, 0x2e82cccc, 0x00809329, 0xf7af0e06,
0x8254f8b4, 0x82862022, 0x00ff22cb, 0x22288359, 0x82ccccdc, 0x33d32584, 0x075b0834, 0x0e4ccf18, 0x20079e75, 0x056d484b, 0xffffcd25, 0x8334b3f1,
0xff332104, 0x22061870, 0x720534fb, 0x1a8706bd, 0xee251f82, 0x088bcc4c, 0x17a1486b, 0x18df5c18, 0xfb07ab23, 0xd2ad1854, 0x18368519, 0x2112a04b,
0x8c8207ab, 0x2114d574, 0xf68234f7, 0x820cf074, 0x1100253e, 0xcb0833b3, 0xe1769c82, 0x83bb2014, 0xcc2c2218, 0x051b41cc, 0x3323002f, 0x8600ff34,
0x088b6666, 0x94fb34fb, 0x16a87315, 0x0604f727, 0xfb0734f7, 0x2b701804, 0x08b94a0e, 0xf7072b25, 0x82156b44, 0x17e77425, 0x09b3a818, 0x5c18b320,
0x52820ca2, 0x5882fb20, 0x04fb3422, 0x5dd55a18, 0x718bb421, 0x4b225cdb, 0xaa18e4f7, 0xff2a0fb7, 0x8b0ad7f8, 0x28f7ffff, 0x068508f6, 0x0700ff25,
0x83ff3333, 0x5fff2016, 0x342106d2, 0x21098306, 0x19838bcc, 0x04823420, 0x0fc4dd18, 0xccf8ff23, 0x821684cc, 0x34332d46, 0xaf0e088b, 0x34f894f8,
0x0654fc15, 0x2009314f, 0x07314f9a, 0x18a6dc21, 0x62078e71, 0x3382144f, 0x59230023, 0x266b8298, 0xff68a61c, 0x62a61c00, 0xd421084f, 0x07ed5f07,
0x824ce321, 0x8219826e, 0x82b3205d, 0xfeff396e, 0xff9a99a8, 0x9a19fefe, 0x1200ff15, 0xffffa4b0, 0xffae47ed, 0x00801e00, 0x12223082, 0x148214ae,
0x5552b821, 0x2f210dcf, 0x271a825c, 0xff486109, 0x00a0f6ff, 0x0a861a83, 0xffffff28, 0xffffb8fe, 0x4482d0f0, 0x1e821982, 0x08b89e22, 0x54844f85,
0x70e7ff22, 0xa3271983, 0xe7ffffd8, 0x828bf668, 0x8206831a, 0x826e200c, 0x5b092265, 0x212a82e8, 0x6f833e4a, 0x1a829220, 0x7ad4ed22, 0x0a270a82,
0x00ff813e, 0x82323318, 0x99192370, 0x0685089a, 0x0900ff24, 0x16829a19, 0xff662626, 0x1f051300, 0x21212682, 0x20868248, 0x205d8225, 0x22048400,
0x82b8de3c, 0x63252129, 0xda226882, 0xbc865c8f, 0x8b20ac83, 0xa8879d91, 0x00221985, 0xd6830100, 0x82b89e21, 0x82602063, 0xedff23db, 0x5f825c4f,
0xff52b826, 0x0080e1ff, 0xed223e82, 0xd184ec51, 0xf622a182, 0xe28270fd, 0x86c2f527, 0xe6f3ffff, 0x201b8267, 0x05dd74f3, 0x3433f323, 0x82128390,
0x24a7829d, 0x54f70882, 0xb65a418b, 0x5a411e20, 0x2f0e269f, 0x34f854f7, 0x0b784a15, 0xb0c6ff2c, 0xffff8ba4, 0x085c4fb9, 0xbb4534fb, 0x33611817,
0x0a01760b, 0x3083f720, 0xde730020, 0x49cd2006, 0xff27057f, 0x8b33b3dc, 0x7d14fb08, 0x4c25070e, 0xf1ffffcc, 0xb26218ab, 0x16b7450c, 0x4f14f821,
0xf72617b7, 0xfc6b0634, 0xa07b1554, 0x20858b0b, 0x09d54594, 0x85824c20, 0x72820e20, 0x83110021, 0x79ff2085, 0x60660a49, 0x0774250b, 0xff0614f7,
0x8b20b883, 0x2975b485, 0xb4f7210a, 0x845d8589, 0x837c2005, 0x0e3b7746, 0x830b3d50, 0xb9ff2130, 0xb74a2b82, 0x34fb260f, 0xebaf0e06, 0x23b882f8,
0x00800b00, 0x09206a82, 0x019dca11, 0xf7220802, 0x1548fb44, 0x075f06b7, 0x00ff808b, 0x829a1908, 0xe60b00ff, 0x96088b66, 0x8b94948b, 0x07b70896,
0x0a8606b7, 0x19848b20, 0x25821f82, 0x088b8026, 0x07b7065f, 0x0c211283, 0x211283cc, 0x128234f3, 0xf4ffff2a, 0xff8b9a19, 0x66e6f7ff, 0x0c210482,
0x260a82cc, 0x0834f3f4, 0x185f075f, 0x830ce079, 0x221a831f, 0x8e089a19, 0x24fb2474, 0x8215b0fb, 0x801a2554, 0x1500ff00, 0x18190488, 0x75181b54,
0xff211676, 0x4e9318ff, 0x30831809, 0x14f8220a, 0x835f828b, 0xffff221b, 0x855f82ea, 0x02871804, 0x05971810, 0x248da611, 0xf88baf0e, 0x2261823c,
0x82400d00, 0xc00a21c1, 0x0e820487, 0xd3088b24, 0x7842ff06, 0xbe003225, 0xff0666e6, 0x66e699ff, 0xe8ffff07, 0x00ff9a19, 0x09421917, 0x4bcb2138,
0x22072d5b, 0x18cdccf5, 0x8208a2dd, 0x0a0026fa, 0xcb083333, 0x281d82cb, 0xff32330a, 0x00800800, 0x2d1e848b, 0xccf5ffff, 0x0900ffce, 0xff086666,
0x4219f7ff, 0x7420177b, 0xe6219882, 0x283c8266, 0x079a1966, 0xccb500ff, 0x22dc82cc, 0x82cc4c14, 0x33102243, 0x052b6634, 0x4cfaff23, 0x310982cc,
0x55080a97, 0xf53fffff, 0xffff05c2, 0xff9c19fc, 0x2083f2ff, 0x5b66f321, 0xff2a05c0, 0x32b3f1ff, 0xfeff088b, 0xcd19e6c2, 0x072486c7, 0x4cfc74f7,
0x225c2542, 0x428b54f7, 0x0e3b5ce5, 0x4cf401ff, 0xdc00ffcc, 0xff15cd4c, 0x9c990f00, 0x66f0ffff, 0xffff8b66, 0x839999e6, 0x8364200a, 0x08682604,
0x6cfb6cfb, 0x860a8405, 0x821e8214, 0x842a8224, 0xff082634, 0x1f0528ff, 0x212284f7, 0x12830060, 0xff8b9826, 0x67661900, 0xa0200a82, 0x9a260f84,
0xd700ff08, 0x0484e1fa, 0x15820520, 0x869a9921, 0x8224821a, 0x990f222a, 0x24588298, 0xf7080060, 0x244a846c, 0xf7af0e05, 0x6feb1854, 0x14f72119,
0x200e7256, 0x495118ab, 0x076b2207, 0x221a82bb, 0x8200801a, 0x80152554, 0xeaffff00, 0x08a18a18, 0x0714fb2c, 0x662c00ff, 0xf1ffff68, 0x83823333,
0x30331727, 0x4cf8ffff, 0x06b24ecd, 0x3433e228, 0xefffff79, 0xcc829899, 0xfeff9a27, 0x4ca3ffff, 0x2af282ce, 0xffceccef, 0x32b3f6ff, 0x83edffff,
0x33fa224e, 0x22248234, 0x828bcccc, 0x66ec2325, 0x60828b66, 0x00222082, 0x1682b307, 0xc482ed20, 0xb30c0025, 0x82750832, 0x202c83db, 0x238683e2,
0x67e6e9ff, 0x8021db82, 0x25318200, 0xffcdccee, 0x4283f4ff, 0x3333eb29, 0x66f7ffff, 0x5dffff66, 0xef22066f, 0x4c82cdcc, 0x00236383, 0x83cccc05,
0x22988263, 0x82686609, 0xfd9a2735, 0x5c00ff70, 0x8d829899, 0x8f02ee25, 0x821000ff, 0x060026c3, 0x00ff9a59, 0x2429821d, 0xd7231700, 0x218082ff,
0xdd820833, 0x82f66821, 0x33b32b7a, 0x0714f705, 0x1900ff8b, 0x1b452a9c, 0x63162506, 0x1a00ffd6, 0x08328e82, 0x00ff06bb, 0x079a191f, 0x45ffff6b,
0xff15cd4c, 0x43836b00, 0xffff2322, 0x2707e556, 0xffce4c04, 0x34330e00, 0x0d253f82, 0xffff9a19, 0x85d082fb, 0xdcff2325, 0x25820100, 0x33b35a33,
0x0694fb07, 0x4ca5ffff, 0x74f707cd, 0xb31affff, 0x22478233, 0x8266e61a, 0x821c2032, 0x0a0024f7, 0x82a1cccc, 0xce4c2187, 0x00239282, 0x828b9a19,
0xe60b2534, 0x0800ff66, 0x10201c83, 0xff2c5483, 0x00ffcc4c, 0xff34330b, 0x0080f6ff, 0x0e202582, 0xff210f82, 0x211982f4, 0x14841200, 0x12222d83,
0x7d829819, 0x4483cc20, 0x34331127, 0x0a00ff87, 0x262f82b3, 0x8732b3ee, 0x82eeffff, 0x28068416, 0xedffffcc, 0xffff64e6, 0x274083f5, 0x8f9c99ef,
0xe7ffff08, 0x05276683, 0xffffcecc, 0x8232b3eb, 0x7fe08236, 0x0827057d, 0x6e086666, 0x82f0ffff, 0xdfff211f, 0xf5240483, 0x8b6a34b3, 0xe0203182,
0xff22a482, 0x4382e3ff, 0x82090021, 0xecff247a, 0x82943433, 0x83fa2016, 0x99022590, 0xfaffff9a, 0x00214382, 0x207f8302, 0x213782fb, 0x48820200,
0x0a829b82, 0x87fdff21, 0xfdff211e, 0xff203e82, 0xff213283, 0x821e84fd, 0x85822044, 0xf6ff2154, 0xff204882, 0x54826483, 0x6b84de20, 0x6666e02d,
0x4c0a00ff, 0x00ff6ecc, 0x8200800f, 0x9ef22316, 0x805fffb8, 0xabeb2205, 0x20cf8285, 0x22eb8233, 0x82e17ae7, 0x3233217a, 0xee221e82, 0xef833dca,
0x4102cb21, 0xfb270606, 0x00ff3cfd, 0x82343311, 0xfdfb221a, 0x830a8322, 0x75b321e9, 0x4c210982, 0x260482ce, 0x088f4035, 0x821200ff, 0x04002277,
0x221a8233, 0x4cb81e12, 0x0e27064b, 0x00ff9a59, 0x8266e60b, 0x260b221e, 0x82148267, 0x100028c5, 0x00ffd723, 0x8334b300, 0xff672319, 0x9283f7ff,
0xba410020, 0x82162006, 0xf0ff2244, 0x214482b3, 0x1b82661c, 0x9982f520, 0xe61a0024, 0x40828b66, 0x00801b25, 0x8200ff8b, 0x20958205, 0x20568299,
0x844b8316, 0x0b0021cf, 0x00223582, 0xe582e607, 0xcccc0e22, 0x2207c764, 0x829a19f8, 0x82152035, 0xf0ff282a, 0x00ff0080, 0x8266661c, 0x830482ea,
0x088b2843, 0x2f0e068b, 0x837901ff, 0x336d2786, 0x00ff1534, 0x3f822625, 0xb8de5c26, 0x0400ff05, 0x0a220a83, 0x5b58ae87, 0x0b002105, 0xff233482,
0x82ceccf3, 0xc6ff3185, 0xff061e85, 0x48e10600, 0xcc0e00ff, 0x0300ffcd, 0x3324d184, 0x089c8b33, 0x04277882, 0xfffff41d, 0x82022aff, 0xa4f02117,
0x9e210982, 0x214c8270, 0x8782e405, 0xc2ea272f, 0xd10800ff, 0x1900ffea, 0x00ffcc4c, 0x824d820c, 0xcc4c2141, 0x10273583, 0xffff7c14, 0x820040e0,
0x32332610, 0x70cfffff, 0x2f2a82a4, 0xff08c2b5, 0x281cf4ff, 0xdc2b00ff, 0xedffff2a, 0x2d20e283, 0xff239782, 0x830080e4, 0x9ef52888, 0xffff8bb8,
0x4290c2f6, 0xf823061b, 0x8285703d, 0xc0f02231, 0x24368200, 0xffffb81e, 0x212782ea, 0x0f83ffff, 0xe10b0023, 0x231a8248, 0x91af47f8, 0xb5833182,
0xb5820420, 0x99f5ff23, 0x83488399, 0x265f824f, 0xffff3333, 0x820ad7d2, 0x9919263c, 0x2ed4ffff, 0x27318214, 0xff7b54cf, 0xce4cf7ff, 0x2b269d82,
0xf1ffff85, 0x7282aec7, 0x66e6ef22, 0xff23b482, 0x82f6a8f1, 0x5c4f25cb, 0x35f3ffff, 0x2722da82, 0x2a82f6e8, 0x82c43521, 0x9eff2135, 0xfc227d82,
0xff821e05, 0x87f62822, 0xfb203182, 0x7a253183, 0x780300ff, 0x066b4452, 0xae070622, 0x33214e82, 0x232d8233, 0x061f85c6, 0xae217482, 0x22288214,
0x828f42f8, 0x9a99240a, 0x830400ff, 0x80f5238e, 0x97410800, 0xa3ff2805, 0xff054821, 0x828fd5ff, 0x5ee0216e, 0xe4235e82, 0x82594821, 0x19c72230,
0x278b839a, 0xffccccec, 0x1f850f00, 0x23056e43, 0xd7231300, 0x012ad882, 0x06d6a37a, 0x331300ff, 0x1c828b34, 0x82062c42, 0x8210820a, 0x38002933,
0xffff66e6, 0xbd9a19e4, 0x71835682, 0x991f2c08, 0xffff089a, 0xffcc4c36, 0x32b373ff, 0x00ff5b15, 0x059a19bf, 0x9b056bcb, 0xff6b056b, 0x66e680ff,
0x5f00ff05, 0x158b9a19, 0x82e0ffff, 0x7f00213b, 0x9b241e82, 0xabcb05ab, 0xcf259882, 0xffff9a19, 0x20228440, 0x2f1b8230, 0x9a192501, 0xff768b15,
0xcccceeff, 0xeaffff7a, 0x23053a42, 0x0686abf3, 0x8a21ff82, 0x2fb8823e, 0xff842bf2, 0xd7630a00, 0xa8faffff, 0x0e00fff6, 0xfe227c84, 0xf982c275,
0xff291c24, 0x8682fcff, 0x82020021, 0xfbff2349, 0xcb829a99, 0x16850684, 0x83fdff21, 0x82fe206b, 0xfbff24cf, 0x820866e6, 0x22bd8240, 0x8266f1ff,
0x33f225cd, 0xf5ffff33, 0xef200e83, 0xf3233585, 0x820685ab, 0xe1ba217e, 0xee327182, 0x8b9ccdcc, 0x00ff08a0, 0x07008010, 0x4c1c00ff, 0x4083ffcd,
0x1f00ff23, 0x200982cc, 0x213582fd, 0x68432300, 0x82068305, 0x0ad72616, 0x620200ff, 0x212a820c, 0x96829042, 0x080c1722, 0x862cbc82, 0xef0e07e8,
0x805601ff, 0x1534f800, 0xb325b782, 0x00ff8b34, 0x258c830d, 0xff34f3f7, 0xb2830600, 0xea11f323, 0x831a8208, 0x0ce626a6, 0x00ff05ce, 0x239c822f,
0x90822700, 0x05220a82, 0x4b82cccc, 0x07210483, 0x272f8233, 0xffb89e02, 0x00800700, 0x0023e282, 0x47666614, 0x84200f68, 0x5421b783, 0x192c547c,
0xc2ffff24, 0x35823433, 0x98193727, 0xe69affff, 0x75445866, 0x9a99f02b, 0x991c00ff, 0xffff059a, 0x2dea82d8, 0xcdcce2ff, 0xe6e7ffff, 0xd1ffff66,
0xc2829a99, 0xcccccb23, 0x20068208, 0x261182f5, 0x9a190100, 0x82f4ffff, 0x02002125, 0xf5280983, 0xff0834b3, 0x9899b9ff, 0x1083c482, 0x4c0a002b,
0x0000ffcc, 0x00ff3433, 0x233b830b, 0x9a190a00, 0x00213b82, 0x21318258, 0x1b83b9ff, 0x82994721, 0xb3a62740, 0x2b088b33, 0xd14eab06, 0x3a0f2508,
0x0e00ffe1, 0x10381f83, 0x088b1fc5, 0x666600ff, 0x8b9c0667, 0x331000ff, 0xf9ffff33, 0x7f97cc4c, 0x2c221482, 0xdf656766, 0xffee2505, 0x34b35100,
0xef20af82, 0x00234d82, 0x82cc4c1e, 0x57c5200a, 0x3f2932f8, 0x058b6666, 0x806900ff, 0x05f95700, 0x82b3dc21, 0x181c20b8, 0x203d6a44, 0x46f783fd,
0xff2c05ea, 0xffff66e6, 0xff32b3fd, 0x34b3ffff, 0x1c21bf82, 0x210a8233, 0xf957cccb, 0xcce32741, 0x3400ffce, 0xf6823233, 0xccf62108, 0xf4ffffcc,
0xffff68e6, 0xff0080fa, 0xccccf1ff, 0xf0ffff8b, 0x8b080080, 0x3dffff07, 0x1573cdcc, 0xb3351e82, 0xc4ffff33, 0xff57cccc, 0x3433d3ff, 0x80c1ffff,
0xff088b00, 0x2dee59ff, 0x34823e20, 0x4085bf20, 0x4c0b0023, 0x825084cd, 0x80bd3144, 0xffff0600, 0xff9999f6, 0x00801700, 0x1000ff74, 0xe5228683,
0x46189a19, 0x9883102a, 0x34b3dc22, 0x192a4618, 0x66e61a24, 0x4085a28b, 0x66090023, 0x23508467, 0x4200ff08, 0x62286184, 0x15a33333, 0x1100ff8b,
0x51054356, 0xba572300, 0x2e721809, 0x165f510c, 0xd4f70e24, 0x618214f8, 0xa6dcff23, 0x068a4866, 0x9a59e324, 0xb282ffff, 0xb321ca84, 0x204f8233,
0x55f882e3, 0x3c550a3f, 0x1c002406, 0x83ff33b3, 0x00ff2416, 0x18cd4c23, 0x200d2346, 0x754482ff, 0x0823057f, 0x51152b6b, 0xff220b8d, 0x12414ce3,
0x525b2007, 0xfe3e1991, 0x80063433, 0x809cffff, 0xffff0500, 0xff3233fe, 0xccccefff, 0x4cf2ffff, 0xf3ffffce, 0x0e8234b3, 0x8232b321, 0xd9ff2171,
0x0c832782, 0xf220a583, 0x0c21a583, 0x2126824c, 0x988233fe, 0x34331027, 0x00ff8008, 0x21428663, 0x01410633, 0x19bb2016, 0x2017f12b, 0x2d3182cb,
0xff1f451f, 0xcc4c01ff, 0xfcffff15, 0xd26cebd1, 0x61fd2206, 0x26098248, 0xffff0080, 0x8229dcfd, 0x98992209, 0x211e8208, 0x0f82b85e, 0xff9a9925,
0x82050000, 0x33fb2633, 0x0300ff34, 0x2813859e, 0x0800ff08, 0xffff5ccf, 0x29c882fa, 0x7b540e00, 0x1300ff85, 0x0f829ad9, 0x82008021, 0x5e272c1a,
0x00ff81b8, 0xffcdcc37, 0x8219f8ff, 0x803e223f, 0x20da8200, 0x83068300, 0xffcc2116, 0x23052449, 0x95686627, 0x13212d82, 0x201082cc, 0x247c8205,
0x66660e00, 0x26588291, 0x00ffcecc, 0x82cecc05, 0x9903281a, 0x0200ff98, 0x458b6666, 0xff2305ac, 0x846866fc, 0x209d820f, 0x203583fd, 0x260f8201,
0x6666fdff, 0x820100ff, 0xfcff213f, 0x01203983, 0xf022bc84, 0x498232b3, 0xff21bc82, 0x261982e8, 0xce4c0600, 0x84e1ffff, 0x211e8458, 0x3382e6f2,
0x3d830220, 0x3d83f720, 0x23830c20, 0xf6826782, 0x74826e83, 0x08281184, 0xff9832b3, 0x9a99fdff, 0x20208a82, 0xff212282, 0x20cd83fa, 0x8336841c,
0x1915215f, 0xf5221e82, 0x1e826866, 0x1e840a20, 0x09201483, 0xff216582, 0x217982f9, 0x5a820700, 0xfe49ff20, 0x82072005, 0xf7ff210f, 0x062a7483,
0x8b806666, 0x80f2ffff, 0x06820800, 0x164aea20, 0xf1ff2307, 0x1582cc4c, 0xf7213183, 0x826f8219, 0x20b1820f, 0x200f83f6, 0x834684ec, 0x82e920c0,
0xf9ff23f3, 0xfe8266e6, 0x1483d320, 0x6f82f320, 0x83c3ff21, 0xb3f8286f, 0xbeffff34, 0x828b6666, 0x2006831a, 0x231682ff, 0x0700ffcd, 0xd3275483,
0x00ffb85e, 0x82ce4c0c, 0xdee9211a, 0x06200a82, 0xff23c482, 0x829a59ec, 0x253f831e, 0xff7b54f1, 0xe3830900, 0x57f2ff26, 0x0800ff0a, 0xff23a582,
0x473d8af0, 0x15220755, 0xa9826666, 0x820d0021, 0x060024e0, 0x82964260, 0x81952136, 0xa5832682, 0x7a070023, 0x06cc41e1, 0x82cc0921, 0x22dc826f,
0x830a00ff, 0x83052013, 0x1500236f, 0x0f82ae07, 0xff989926, 0x717d1c00, 0xc4823382, 0x75200026, 0x0500ffc3, 0xda41c482, 0x829a8205, 0xf7ff2159,
0x022d1a83, 0x087e6766, 0x800100ff, 0xffff7e00, 0x20bb83f8, 0x271b83f3, 0xff67e6f2, 0x9899fdff, 0xe12fc082, 0xffffcccc, 0xff6866fa, 0x5278e8ff,
0x83f9ffff, 0xb3f021c0, 0x3a05564e, 0x0e068b08, 0x6001ffaf, 0x00ff6666, 0x153333cc, 0x2bceffff, 0x9cffff86, 0x82050180, 0xb2fd2c29, 0xeeffff7f,
0x00ff5899, 0x82486100, 0x707d2143, 0x3e217982, 0x215382b8, 0xb9820cc7, 0xff5f7e22, 0xe1212582, 0x214a82f3, 0x308340b8, 0x67e69d22, 0x0c262a82,
0x00ff05cc, 0x7f8266b0, 0x83cc4921, 0xa80c2d0a, 0xf2fffff6, 0x00ff14ee, 0x8b32b314, 0xab264182, 0x0d00ff86, 0xb582ec11, 0x7783b020, 0x3433b622,
0x8f274682, 0xffff66e6, 0x82acfeff, 0x1ee9270a, 0x2c00ffb8, 0x46828734, 0xcecc8e27, 0xf0b400ff, 0x379882a5, 0xffd8a3c9, 0xe0fa2e00, 0xdcacffff,
0xf7ffff28, 0xff592085, 0xa470ccff, 0xec208d82, 0xeb22f683, 0x3b8284ab, 0x00230a83, 0x827c5414, 0x00ce270a, 0x3300ff01, 0x30825c8f, 0x00225b82,
0x3a827a08, 0x299cc927, 0x05d1ffff, 0x20348220, 0x211983c6, 0x4a825cce, 0x5278f925, 0x83aaffff, 0x572b2723, 0xc5ffff0a, 0x9a829a99, 0x00006926,
0x2300ff06, 0x5622b683, 0x8a820040, 0x0c820522, 0xe126bb82, 0x1200ff48, 0xe682ea26, 0xff703d24, 0x0e820500, 0x41f3ff23, 0x272f8248, 0xffc2353a,
0x9a997eff, 0x31232982, 0x82edec11, 0xe2052c06, 0x0b00ff4e, 0x00ff00c0, 0x8260e510, 0xe30527f7, 0xf4ffffd8, 0x2c820040, 0x86ab1b26, 0xc0c8ffff,
0x79215683, 0x08678380, 0x146e2b23, 0x6c3a00ff, 0xf9ffffcc, 0x00ff6466, 0xff9a1955, 0x9c99c6ff, 0xa33100ff, 0xfb0e08d8, 0xf704f830, 0xc1cc19a4,
0x33b12608, 0x4e00ff34, 0x202c82cc, 0x0560509e, 0xcdcc9e28, 0xb1ffff8b, 0x04833333, 0x0a823420, 0x08201782, 0xa9210682, 0x20a382bd, 0x2c4b833e,
0xff2a5cb8, 0x67e65100, 0xccf1ffff, 0x28fc82cc, 0x0734f3dc, 0xffff065b, 0x086a7cf7, 0x0aa2c618, 0x82076b21, 0x7c19823b, 0x1882056c, 0x00ff042a,
0x8b04d608, 0x5b06bb08, 0xab211a97, 0x20238306, 0x22e68287, 0x84792907, 0x820a8238, 0xbb082334, 0x1a84bb07, 0x1a848820, 0x1a8b7820, 0x4c82ab20,
0x88215882, 0x206282ff, 0x05d47c88, 0x78229082, 0x9982088b, 0x0c230024, 0xb28307cc, 0x00ff6623, 0x83ef830e, 0x470023c6, 0x46829a99, 0xcc4c562c,
0x2b44fb08, 0xcbffff15, 0xaa82ec11, 0x14eed425, 0x832b00ff, 0x3400230a, 0xf88214ee, 0xf0340023, 0x821184a4, 0x5c0f2204, 0x211583ff, 0x0682088b,
0x82a4f021, 0x822b203d, 0xd4ff2111, 0xff230a83, 0x825c0fcb, 0xcbff282d, 0xffff9a19, 0x8666e6d4, 0x260e8204, 0x2f0e088b, 0x82af01ff, 0xa0012317,
0x688266e6, 0x66668f29, 0xffff058b, 0x827a94ea, 0x45f5266f, 0xe6ffff20, 0x20998226, 0x2304820f, 0x48e1f0ff, 0x1d275c82, 0xffff289c, 0x82a470e2,
0x59c72125, 0xc7224f82, 0x0a823473, 0x52f8e136, 0xa81400ff, 0xdcfffff6, 0x00ff70fd, 0xff0a570a, 0x3e0addff, 0xff328d82, 0xff8f02d0, 0x84000000,
0x07d0ffff, 0xecffffae, 0x2482d88e, 0x4482dc20, 0x0cd92108, 0xffff08cc, 0xffd723c3, 0x727dbcff, 0x350200ff, 0x94ffffc3, 0x00ff8e82, 0xffe4653f,
0x68e6beff, 0x232a6e82, 0xffff518d, 0xff5078db, 0xeb822d00, 0x33eeff23, 0x4c098234, 0x2d220503, 0xe682b81e, 0x52382d2c, 0x2e1100ff, 0x2200ff14,
0x0482c275, 0x82b85e21, 0x1c3d2535, 0x3c00ff28, 0x06278983, 0x00fff6a8, 0x822a9c5e, 0x68a6267d, 0x804400ff, 0x211e8200, 0xd382a638, 0xce8c3825,
0x8900ff05, 0x040031ce, 0xffff86eb, 0x91f428fb, 0xccfdffff, 0x0500ffce, 0x0c226685, 0xbe57ce4c, 0x00ff2405, 0x829a9909, 0x660e220a, 0x23438266,
0x07cc4c71, 0x07200c82, 0xf82a9583, 0x00ffcccc, 0xff5c0f08, 0x2c82f6ff, 0x442dd482, 0xfeff6666, 0x153433ab, 0x40edffff, 0x26048200, 0xffff3e4a,
0x82b85ee7, 0xd6a32120, 0x61220982, 0x25828b48, 0x8b201082, 0x59820c84, 0x82e25a21, 0x703d2625, 0xb71200ff, 0x271a820a, 0xff0080da, 0x146e2500,
0x078eac19, 0x0f842520, 0x82537821, 0xc0122178, 0x12271a82, 0x00ffc3b5, 0x8248a118, 0x285c2139, 0x50820984, 0x30821083, 0x839e1821, 0x9ca42167,
0x2a824b82, 0x49edff23, 0x83358278, 0xdaff2140, 0x4e22bf82, 0x5c83ffff, 0x70430b83, 0x00ff2505, 0x1566e6e0, 0x37363782, 0xffffec51, 0xff146ee6,
0xae473100, 0x14d8ffff, 0x2000ff7c, 0x3c82cc4c, 0x827d1421, 0x82112098, 0x1000321e, 0x00ffc4b5, 0xff3cca15, 0x66e60a00, 0x191900ff, 0x221e829a,
0x82f0a704, 0x52b8300f, 0x71f8ffff, 0x0c00ffaa, 0xffff862b, 0x823273f4, 0xc9ff2991, 0xff06a4b0, 0x76befaff, 0xfb2be882, 0xffff7653, 0xff082cfd,
0x82f8fcff, 0xa3fb222b, 0x220a82d6, 0x82f5e8ee, 0x9e842c74, 0xf0ffff6f, 0xffff84ab, 0x833333e0, 0x26e02237, 0x2a318266, 0xffec11e4, 0xe23a1000,
0x83eeffff, 0x9418226d, 0x3131827a, 0xffe1fafc, 0x46760300, 0x4cfbffff, 0x0200ffcd, 0x6082f8d3, 0x23051f44, 0x06d7a3c9, 0x33207a83, 0xf8323b82,
0xffffa470, 0xff7ad4f3, 0xf6a80400, 0x47f5ffff, 0xa48208ae, 0xff67e630, 0x3ecae7ff, 0xcf0f00ff, 0xe9ffff5c, 0xcd825c4f, 0x82d76321, 0x16ae225f,
0x25f28308, 0xdfffff7b, 0x0641c2b5, 0xceff2305, 0x488232b3, 0x9a99c922, 0x241d6344, 0x073433eb, 0x0f63446b, 0x5a440420, 0x05164e05, 0x3433f722,
0x6009557c, 0xab22061c, 0x4d187b06, 0x0721088e, 0xd28c1833, 0x44d62011, 0x9b211263, 0x057e4407, 0x20196344, 0x08634404, 0x44fffc21, 0x99820563,
0x44130021, 0x0f240963, 0x00ffce0c, 0x2a0a6344, 0x08323357, 0xffff44fb, 0x449a199f, 0x2a222467, 0x6744f628, 0xc2f5211a, 0x26186744, 0x01ff74f8,
0x82f2ffbf, 0x998f2364, 0x0082ff9a, 0xff05fa2c, 0xb89eeaff, 0xf5ffff8b, 0x67443e4a, 0x0d5d1807, 0x8f1d2209, 0x0767445c, 0xd8e3e427, 0xe3e4ffff,
0x2a3082d6, 0xff1e05e5, 0x52ca1400, 0x82deffff, 0x0c002245, 0x2f4a82d9, 0x8bcc4cdb, 0xa7ffff08, 0xff8b48a1, 0xb85eb8ff, 0x0a820484, 0x8d831082,
0x2883b220, 0x82f83621, 0x80bf2c32, 0x4900ff00, 0xffffae07, 0x829a19f1, 0xc7ec2231, 0x11b841ae, 0x07bfcc18, 0xe0ffff24, 0x054666e6, 0x46c08518,
0xa6411840, 0xffab2a1a, 0x06000000, 0x0800ff05, 0x12c641d6, 0x1f00ff24, 0x2e469a19, 0x066b2717, 0x381300ff, 0xc4850752, 0xd40e0025, 0x8300ff7a,
0x400029d8, 0xff8b3e8a, 0x156e4d00, 0x003def82, 0xff48611c, 0x64fbf7ff, 0x451a00ff, 0xf3ffff1f, 0x00ffba09, 0x08b81e17, 0x731e00ff, 0x82048434,
0x095d417c, 0x110f0027, 0xf0ffffec, 0x271f82d7, 0xff66e619, 0x34b30a00, 0x15224b82, 0x10826666, 0x99747020, 0x055d7205, 0xffcccc26, 0xee290700,
0x333b5b82, 0xfb088b34, 0xd0feff74, 0xff150e00, 0xd7e3d3ff, 0xdcffff8b, 0x00ff291c, 0x82d8e323, 0x1c2c223b, 0x82878328, 0x20118306, 0x251684d7,
0x1c2c00ff, 0x52828b29, 0x22821582, 0x32832882, 0x38822820, 0xd8e3d322, 0xff212d82, 0x237b82d3, 0x9a19dcff, 0x04831682, 0x8b2c0e82, 0x01ff0e08,
0xff9a99f2, 0xecffbf01, 0xa1276782, 0xff0648a1, 0x820aeeff, 0xf7ff2dea, 0xffff8e02, 0xff3e4aea, 0x34b30c00, 0x4c21e382, 0x225a82cc, 0x82b81e15,
0xe2cc2714, 0xbcffff05, 0x048470fd, 0xe6270a82, 0x00ffc2b5, 0x4b52b810, 0x092006e2, 0xdf226783, 0x8b826666, 0x0683ff20, 0xcd231683, 0x83f6ffff,
0xb3e62574, 0xefffff33, 0xff214b83, 0x295682ef, 0xce4c1000, 0x0600ff05, 0x04839e0f, 0x0a83de20, 0x82004021, 0x7e3f210a, 0x0a25c182, 0xffffca21,
0x1db918f9, 0xf4ff2808, 0x00ff95a3, 0x829c440b, 0x26158571, 0xffff7e3f, 0x82b8def5, 0x820f83e1, 0x0882262a, 0x07faffff, 0x213582ad, 0x258214ee,
0x3333ef22, 0xcc209782, 0x15206183, 0x15220a83, 0x61823233, 0x77830c20, 0xf725d384, 0x00ffc400, 0x23bc8215, 0x080ceeff, 0xa129ad83, 0xff060a97,
0x7593f8ff, 0x200082ff, 0x264682ec, 0xffffe7fb, 0x82fcfbf9, 0x93f82961, 0xffff0874, 0x0748a1a1, 0xee220c82, 0x38833c0a, 0xffffc328, 0xff9002f7,
0xd4820c00, 0x34210482, 0x85148208, 0x82342067, 0xcc102167, 0xef20f482, 0xff237283, 0x82a3f0f9, 0xc2f52147, 0xa982b986, 0x45828420, 0x34def522,
0xef82ea82, 0x00200f82, 0x0b273b82, 0xffff5c4f, 0x41a4b0f4, 0x15820605, 0x00ff8425, 0x7348210a, 0x00230678, 0x827c3f06, 0x062b4125, 0x2582a020,
0xbf3f1027, 0xadefffff, 0x215682d2, 0x6c824cef, 0x8782e620, 0x19f6ff28, 0xe1ffff99, 0x6082cdcc, 0x6666df22, 0x281e9d43, 0x7b071ec5, 0x000000ff,
0x4942825c, 0xd5210bbf, 0x223e82c2, 0x823e2af7, 0x43f020f2, 0x9b2619a2, 0x20ffffff, 0x644505ec, 0xfc292105, 0x4310e349, 0x042005a2, 0x0720bf82,
0xc8491d86, 0x079b2206, 0x09a2439b, 0xff221f92, 0xa2430f00, 0x75042007, 0xb0831074, 0x8260e621, 0x3a1322fe, 0x1ea743e2, 0x99992035, 0x22f6ffff,
0x1e00ff0c, 0xffff0040, 0xffcc41ef, 0x824a1900, 0x430024d5, 0x83ff9002, 0x25468204, 0xff343315, 0x5e4ceaff, 0x30b33505, 0x38f3ffff, 0x1500ff52,
0x8b9434b3, 0x00ff089d, 0x07285c5e, 0x072bb582, 0xffff8c6c, 0xff9a19f9, 0x82040600, 0x80f92e92, 0xff088b00, 0x66660dff, 0x00b0feff, 0x1ca24314,
0xa2432920, 0x43d72008, 0x292615a2, 0xd3ffff8b, 0xa243d7e3, 0x10ef2018, 0x7001b10b, 0xeb44f822, 0x0819214d, 0xe2fad836, 0xdcffff8b, 0xffffea11,
0xff6626f3, 0x9ad9e2ff, 0x82eaffff, 0x00ff0890, 0xff486112, 0xcc4cecff, 0x8f0e00ff, 0xe8ffff5c, 0x00ff3eca, 0xff14ae09, 0x7c54e6ff, 0x10221e82,
0x198216ae, 0x09821720, 0x23831520, 0x7cd40827, 0x801700ff, 0x1c4f4c00, 0xffec1126, 0xa4f0d4ff, 0xee200482, 0xcb224782, 0x2d825c0f, 0x6ee8ff24,
0x73828b14, 0xfff6a82b, 0x76de0800, 0x47efffff, 0x275882ae, 0xff08a926, 0x926df6ff, 0x8c266e82, 0xf1ffffcd, 0x82823a9f, 0xfff6e826, 0x52b8edff,
0x4f219682, 0x3478825c, 0xffc4f514, 0x8e82f0ff, 0x331800ff, 0xf4ffff32, 0x00ff34b3, 0x2304821a, 0x66e6fbff, 0xdc223d82, 0xcb4d9a19, 0x12854753,
0x223fcb4d, 0x4900ff68, 0x98210667, 0x0acb4dff, 0xffef0e24, 0xcf824001, 0xb3f30026, 0x00ff1533, 0x2606854c, 0x00ff05cd, 0x482a9c1d, 0x002a06ec,
0xffd6230f, 0x5ccff0ff, 0x8e4700ff, 0xcccc2705, 0x1500ff8b, 0x724cce4c, 0xd6083909, 0xf8ffff88, 0x00fff2d2, 0xff124306, 0x6025f7ff, 0xffff088b,
0x06146e8f, 0x871eb84d, 0xc7ff2263, 0x30638263, 0x05146ec7, 0xcab8ffff, 0x3000ff3e, 0xffff72fd, 0x2d73829c, 0x50f8f6ff, 0x4cc3ffff, 0xbcffffcc,
0x9d4d68a6, 0x4d702009, 0x9020089d, 0x20089d4d, 0x36918264, 0xff33b344, 0x146eb9ff, 0x197100ff, 0xffffff9a, 0x00ff4861, 0x82008045, 0xd0572104,
0x3d271e82, 0x00ff500d, 0x82e0ef3c, 0x9a9924a9, 0x825e00ff, 0xd0ff2804, 0x00ff34b3, 0x82999944, 0xccb2215c, 0x58236782, 0x4c156766, 0x91270792,
0xc2ffffec, 0x828b70fd, 0x8282200f, 0x6e252268, 0x20258214, 0x820a86da, 0x82fd205e, 0xe63c2487, 0x4d00ff66, 0x0a850a0e, 0xff156e27, 0x90023d00,
0x211a828b, 0x3e82707d, 0x4ceb9121, 0x992109f3, 0x0bf34c8b, 0x7b01ff27, 0x01ff9899, 0x07ee4e53, 0x2e283441, 0xffd8e3d4, 0xae07d4ff, 0xf2ffff05,
0x82070a17, 0x1ce125a4, 0xe6ffff2a, 0xe62ac483, 0x8b6c66e6, 0xfdffff08, 0x17826866, 0x8266fd21, 0x820020a2, 0x057e5404, 0x1a820982, 0x5423fa27,
0x0600ff07, 0x220a82ec, 0x8275f3fb, 0x72a83009, 0x5bfbffff, 0x0500ffa6, 0xffff16ee, 0x88bc14fa, 0xeb9121b1, 0xc3224482, 0x16419a19, 0xae872107,
0x474e3482, 0xb9fd221a, 0x27308216, 0xff06c1fd, 0x027d0000, 0xba218582, 0x2109825e, 0x3582fc28, 0xe85bf636, 0x4fedffff, 0xf3ffff5c, 0xffff7e8a,
0xff3473ee, 0xc475f0ff, 0x78210482, 0x241e8252, 0xffe6f0f9, 0x210485ff, 0x8482aa91, 0x826c8721, 0x285c210e, 0xcc210982, 0x2c8e82cc, 0xff7a7414,
0xf617f8ff, 0x801500ff, 0x21ad8200, 0x098234b3, 0x829a9921, 0x4f0020e9, 0xf821267c, 0x077c4fff, 0x7c4f6420, 0xff682209, 0x117c4f00, 0x82e4e521,
0x6a1c2660, 0x050600ff, 0x26c282a0, 0x00ff62d0, 0x83f8e805, 0x4a0c226a, 0x20ce823c, 0x22858208, 0x4f68e60b, 0xa04a0d84, 0xa84f1807, 0x07003007,
0xfffff628, 0x8bcc4cf6, 0xf7ef0e08, 0x5115cb94, 0xfd4c0e61, 0x5e56200f, 0x612405dc, 0xffff3433, 0x27cc6d52, 0xff32f307, 0xccccf8ff, 0x2e05796e,
0x3433f7ff, 0xf73b088b, 0xffff1504, 0x52eb11cb, 0x1520254a, 0x521cfa45, 0xf823124a, 0x4da4f754, 0x062005de, 0x3c27d94d, 0xff3473e7, 0x3273e7ff,
0xe2ffff05, 0x00ffae07, 0xfff8a814, 0xf628ddff, 0x630a00ff, 0x210982d6, 0x8482ec11, 0xf0ff3308, 0xff8becd1, 0x8ec2f0ff, 0xc6fdffff, 0xf1ffff66,
0xffffe23a, 0x08d017fc, 0x8c0d00ff, 0xe9ffffcc, 0x00ff3233, 0xff204509, 0xa470e6ff, 0xe4ffff8f, 0x1a82a4b0, 0x88160631, 0x2f0100ff, 0x0600ff1a,
0x00ff962e, 0x83dc9900, 0x82162009, 0x18003450, 0xff8b7a94, 0x0a971800, 0xa4f6ffff, 0x1200ff9c, 0x51ffc4b5, 0x6e250727, 0xdaffff14, 0x22708391,
0x849819c3, 0x2204820a, 0x5108b087, 0xed2206c4, 0xb1823e4a, 0x51f66821, 0x6b2107c9, 0x23508284, 0x3473e8ff, 0xe820a182, 0x00235082, 0x82fed408,
0x289c262a, 0x2d1100ff, 0x22358292, 0x827a14f0, 0x2cd2820f, 0x72fdecff, 0xbdefffff, 0xeaffff70, 0x2264822e, 0x8200c0f3, 0x730b35a5, 0xfaffff34,
0x00ff1c1a, 0xff52b808, 0x1899f5ff, 0xcc0300ff, 0xf322d482, 0x1e82e07a, 0x64a61d2d, 0x25ecffff, 0x2200ffa2, 0x82813433, 0xcc4c2105, 0x00236f82,
0x823e0a2d, 0x520582c0, 0x6b2107fa, 0x07fa5284, 0x70fd3c22, 0x8207fa52, 0x067d436a, 0xfa520983, 0x8c182205, 0x52f982cc, 0x614f05fa, 0x04002308,
0x7d4394e3, 0xd4022b07, 0xcffdffff, 0x0500ff9e, 0x6a8364e6, 0xf0510c2a, 0x090000ff, 0x0b00ffba, 0x02539682, 0x121e4e0c, 0x42fffc21, 0x0e22056b,
0xee4f84f8, 0xabe73238, 0xe7ffff86, 0xff05f6a8, 0x5c0fdeff, 0xf02100ff, 0x210a82a4, 0xe282c0f9, 0x00400628, 0xdef5ffff, 0x0082ff34, 0x7f4d7c20,
0x82ff2005, 0xff082518, 0xb85ee9ff, 0xc54c0484, 0x8b002109, 0xb8202a83, 0x820cc54c, 0x8254844a, 0x0aed2425, 0x82ffff3e, 0x2c0a8204, 0xffc275bb,
0x524a2f00, 0x66a1ffff, 0x26558266, 0xffff3233, 0x82cd0cc3, 0x9a192104, 0xbb245a82, 0xffff1e45, 0x4f820482, 0xae879027, 0xba4400ff, 0x220f82e2,
0x8308ce4c, 0x84e1200a, 0x00ff251a, 0x8b52786f, 0xb3210f82, 0x821f8434, 0x0b87411a, 0x05457220, 0x09874107, 0x82f51221, 0x20048273, 0x86df8405,
0x06002294, 0x25d5843f, 0x0a00ff83, 0xe382cc21, 0x857dff21, 0x060023be, 0x53820040, 0x48a11624, 0x048200ff, 0x29833482, 0x8a4e2e82, 0x051e410a,
0x3441af82, 0x18002809, 0x00ff0a57, 0x4f7a5418, 0x0f210ef1, 0x0c62485c, 0x2013f14f, 0x073e4488, 0x416a2921, 0xff2a06d2, 0x66e623ff, 0x198cfeff,
0x164315a8, 0xec912707, 0x19c3ffff, 0x0f828b99, 0xffae8723, 0x06af4700, 0x54eb9121, 0x6e210dba, 0x220f8215, 0x82085378, 0x830a8405, 0xe63c2304,
0x0f828b66, 0x47527821, 0x662108ab, 0x200a8266, 0x05ab4799, 0x839a9921, 0x089a320b, 0xf730fb0e, 0x15b1f774, 0x06a3079e, 0x6b0400ff, 0x27338202,
0xfffe9403, 0xf8930300, 0x85210a83, 0x235482a2, 0x0766e610, 0x1d820c82, 0xfcffff31, 0x00ff026b, 0xff98ae02, 0xfe94fbff, 0x8273088b, 0x241e8335,
0xa11800ff, 0x210b8348, 0x2982f668, 0xc2350827, 0xd71300ff, 0x06e3600a, 0x9a990b23, 0x20c68208, 0x23c08207, 0x0552f83c, 0x34213a82, 0x256c827b,
0xffff02cb, 0xdb8339f8, 0xc335fb22, 0xfe201483, 0xc2222582, 0x2a84e2fa, 0xf4202582, 0x0483b083, 0x3708002e, 0xecffff8d, 0x00fff628, 0x8b2c6710,
0x18269182, 0xff0614ae, 0x9782f0ff, 0x89848082, 0x9e839985, 0x0a828b20, 0x08647b22, 0x68201e83, 0xff23b682, 0x82f893fb, 0x23d382ce, 0x6c52fdff,
0x0820e385, 0xff29ec82, 0x0734f3ec, 0x19abffff, 0x24298299, 0xffff4861, 0x226e83c0, 0x82289cb3, 0xcdcc2622, 0x82a5ffff, 0x22688290, 0x8273c804,
0x5c4f2e0a, 0x8e4d00ff, 0xb5ffff97, 0x00ff0a97, 0x05a45d5a, 0x0023d382, 0x82cc4c62, 0xcc0c2bb8, 0x335000ff, 0x4f00ff34, 0xfd82ce4c, 0xac616220,
0x4c562105, 0xc12f4582, 0x00ff66e6, 0xff999947, 0x9a19aeff, 0x820f00ff, 0xff6b2b1a, 0x66e6f3fe, 0xcbffff15, 0xab825c0f, 0xa4f0d425, 0x832b00ff,
0x3400240a, 0x82083e0a, 0x8406823f, 0x22048611, 0x83a4f034, 0xee3422f2, 0x201b8214, 0x06104c2b, 0xcb203882, 0x22060a54, 0x58ffc2f5, 0x49820672,
0x7258ff20, 0xffef2305, 0x9a826b02, 0x4ccb0023, 0x226882cd, 0x82f4a8ad, 0x299c22bf, 0x21e98205, 0x858248e1, 0x54b81e21, 0xff23050d, 0x823e4af5,
0x9eea3649, 0xffff08b8, 0x07c2f5d8, 0x1cdfffff, 0xffffff2c, 0xbb059a19, 0x05535807, 0x0c4b0020, 0x04d62105, 0x28065659, 0x8bde0ff8, 0xff066b08,
0xaa5718ff, 0x0aa77509, 0x42825b20, 0x34f3ec22, 0xf0221e82, 0x745914ee, 0xb8ff2305, 0x1055b85e, 0xaaff2305, 0xca829a99, 0xf39dff23, 0x14645a33,
0xcccc9e24, 0x811a00ff, 0x562210f2, 0xf8829042, 0xd6a34722, 0xc3594485, 0xe6512805, 0x00ff0866, 0x5acc0c13, 0x78200c47, 0x82062d50, 0x088b21b2,
0x22097e50, 0x5a964306, 0xff240b2c, 0x66e63000, 0x2122dd82, 0xea8500c0, 0x0c22fb82, 0x084107cc, 0x00ff2405, 0x5598d919, 0x00220530, 0xb8821e0f,
0x69820482, 0x82575221, 0x9c4d2804, 0x00ff052a, 0x82404a06, 0xc2352104, 0x0a279482, 0xffff3433, 0x8234b3f9, 0x3333250f, 0x64feff08, 0xff230a82,
0x4133b394, 0x4f5a0edc, 0x066f4408, 0x2105535a, 0xe041df0f, 0x2b2a2413, 0x5affff86, 0xff250953, 0x66e60000, 0x15575aff, 0x2251cb5b, 0x579a196c,
0xf7213031, 0x075c5b27, 0x9a190f22, 0x5b0cf856, 0xf4562b5c, 0x8ba22118, 0xf521fd82, 0x18f456c4, 0xf730fb2b, 0x1504f854, 0xd49effff, 0x222a827b,
0x5c852bb1, 0x9e270eb9, 0x00ff7cd4, 0x827bd44e, 0x842b2816, 0x2b6100ff, 0x83088b85, 0x8b842106, 0x1b841683, 0x0a827c20, 0x842b6122, 0x00206382,
0x2213a74a, 0x82a4fb8b, 0x0ccb225f, 0x275f82cd, 0xff33f3d4, 0xcc0c2b00, 0x34223182, 0x318334f3, 0x11853420, 0x1683cd20, 0x0e820482, 0x06835f83,
0xff201185, 0x38823282, 0xc3893e82, 0x2808da49, 0x8b66e6cb, 0x74f80e08, 0x069278f7, 0x143f5c18, 0x0714fb22, 0xa3184082, 0xb824109c, 0x54f8088b,
0x1899a318, 0x00233383, 0x189a9911, 0x2211cda9, 0x820cfb14, 0x427518ce, 0x10da7d0b, 0x240e1a72, 0x400d00ff, 0x83f18200, 0xf5ff2116, 0xff200a83,
0xce833e82, 0x086d0682, 0x28168206, 0xb3f2ffff, 0xcb088b34, 0x235edd8b, 0xfc150cf8, 0xff20f782, 0x214f2b41, 0x2b41b89e, 0x48612907, 0x66eeffff,
0xfb088b66, 0x2a232b41, 0x00ffcccc, 0xff00c00a, 0x82330d00, 0x820685fd, 0x21168211, 0x1182f5ff, 0xf2ffff22, 0x8205f867, 0x072b4106, 0x41343321,
0x5ebb292b, 0xf7ef0e25, 0x7754f774, 0x002a0cc1, 0x8b5c4f39, 0xb04600ff, 0x068508a4, 0xc6ffff25, 0x83ff34b3, 0x18ff2016, 0x18094041, 0x77099942,
0xf67708ef, 0x21288205, 0x3282cd4c, 0x82a4b021, 0x05357743, 0x34b3322d, 0xffff155b, 0x0699999a, 0x83a0ffff, 0xb2ff285d, 0xffffd763, 0x826666b2,
0x4ca02233, 0x1a9b6bce, 0x0634b327, 0x231300ff, 0x149b6bd6, 0x32b35f22, 0xff244584, 0x9a994d00, 0x4c2e5a82, 0xff088bce, 0xcc4c5501, 0x065b15f3,
0x338207bb, 0x34330d22, 0x23055241, 0xcccc0a00, 0x85065241, 0x09954206, 0xf2268382, 0x5b0800c0, 0x9e825b07, 0xccccf222, 0xf5200f82, 0x33213684,
0x220a8233, 0x83cdccf2, 0x4106829e, 0xff2305c4, 0x423333f5, 0xa26005ee, 0xb3f22207, 0x07cd4134, 0x41cc4c21, 0x411812e4, 0xd4520a19, 0x4c0d2105,
0x00216382, 0x2036840a, 0x226382b3, 0x834c0d00, 0x85068363, 0x201b8295, 0x29a58533, 0xffef0e08, 0x34b31201, 0x404124f7, 0xcdff2469, 0x42bbcc4c,
0x01285d12, 0xff68e661, 0x66e62000, 0x2f2d6682, 0x00ffb007, 0x05ae072f, 0x600900ff, 0x29048400, 0x0f00ff8b, 0xffff5c2f, 0x0f83a0f6, 0x08486122,
0xff200a89, 0x2205df7c, 0x82b8feff, 0x839e2013, 0x00a02104, 0xd1251e82, 0xffff8c02, 0x234483d0, 0x52f8d0ff, 0x3f864f86, 0x34835482, 0x308c8b20,
0x3b86f620, 0x0000ff24, 0x54854801, 0xff207e84, 0x08201882, 0x4f823f84, 0x0552f822, 0x04840584, 0x8f830a82, 0x8b0ac77c, 0x5f092230, 0x215f827c,
0xb98384a0, 0xffffe025, 0x82f2fdff, 0x486121c9, 0x8a200483, 0x00234f86, 0x822a1c2f, 0x83ef83e4, 0x9e0a82a4, 0x1a0e4134, 0x14eed022, 0xe334a482,
0xef0e05d6, 0x34f744f7, 0x2c00ff15, 0xff8b9a19, 0x66e62300, 0x0a820484, 0x08201082, 0xcf5b0685, 0x261b8405, 0x66e6d3ff, 0x84ff088b, 0x21168506,
0x3883dcff, 0x5f581083, 0x82288507, 0x22548516, 0x8204f808, 0x84fb2260, 0x05834c06, 0x2205934c, 0x18ccf8ff, 0x28075e4e, 0xfb0744fb, 0xa4f70674,
0x226c8207, 0x820ad708, 0x5204821f, 0xf7220504, 0x094af628, 0xba292206, 0x2118828b, 0x1d8446d6, 0x19820a82, 0x34fc0822, 0x21094a48, 0x8a18ba29,
0x462008b5, 0x21069849, 0x50820ad7, 0xf6280725, 0x180700ff, 0x23081fad, 0x94f807bb, 0x2007cf49, 0x211882ba, 0x5585bc29, 0xd6080023, 0x82368644,
0x21188508, 0x74830700, 0x46231982, 0x1984f708, 0x260f5553, 0xf4f72f0e, 0x191554f8, 0x210e4014, 0x278294fb, 0xe6d0ff2c, 0xdcffff66, 0xffffcccc,
0x098266d7, 0x9a19d222, 0xcc2b6482, 0x5db908ce, 0x86849205, 0x83f3ffff, 0x82f5201f, 0xff082b93, 0x3233d9ff, 0xf7ffff06, 0xd3830080, 0xffcecc2c,
0x66660300, 0xff089185, 0x3a82c9ff, 0x99360027, 0x14fb059a, 0x830d8506, 0xff052612, 0x52f8f9ff, 0x25318285, 0xffff29dc, 0x598299fc, 0x1e85f72f,
0xffff088b, 0x063d4ad8, 0x05f6ffff, 0x2548821f, 0xff0000fb, 0x76820c00, 0x0f07002b, 0xff08925c, 0x1f052e00, 0x223a82b9, 0x823d0ad2, 0x323321da,
0xd12e9d82, 0x2800ffeb, 0xff8b9a99, 0x9a192f00, 0xb783f708, 0x05350028, 0x2a00ff1e, 0x0483e1fa, 0x82ffe221, 0x8b1f210e, 0x06251982, 0x54fbb4fb,
0x31558215, 0xffcd4cee, 0x7b540e00, 0xb3f1ffff, 0x1100ff33, 0x1e8485ab, 0x0e4c4218, 0x5282cd20, 0x33b31124, 0x6318eb08, 0x94201800, 0x0c525218,
0x230ab97c, 0x34f7072b, 0xff246a82, 0x00801a00, 0x15214582, 0x05047b80, 0x10820a82, 0x06850820, 0xeaffff22, 0xe17a1686, 0x85082005, 0x19168506,
0x4122a396, 0x7420ecb6, 0x2017b641, 0xaec218db, 0x0e00220c, 0x0db5414c, 0x12be241a, 0xb4413b20, 0x5444180e, 0xf764230b, 0x7a181514, 0x2b2116ac,
0x08384207, 0x42cd4c21, 0xb3230738, 0x85088b33, 0xfa751881, 0x18819508, 0x250c8444, 0x44fb063b, 0xa11874fb, 0x94205dbc, 0x5fbca118, 0xf754f83a,
0xf4fb1514, 0x0714f706, 0xfb06f4f7, 0x54fc0714, 0x8b1524f7, 0x332c00ff, 0x2327ec82, 0x00ffecd1, 0x82cccc23, 0x152e260e, 0x14f8088b, 0x80f31806,
0xdcff2b0b, 0xff8b3433, 0xccccd3ff, 0x47187b08, 0x7a180f21, 0x4b2007d8, 0x23056f41, 0xf1ffffcc, 0x1805c441, 0x20070647, 0x8218837b, 0x83ff203a,
0x82048645, 0x088b220e, 0x186482fc, 0x2416b750, 0x9bdb0734, 0x0d854f15, 0x4509b445, 0x51180a7b, 0x50820e39, 0x0a795e18, 0x200a7c45, 0x833383f7,
0x10d5561a, 0x0e348482, 0xf7f4f7af, 0x94fb1514, 0x0714f706, 0xfb0694f7, 0xf4fb0714, 0x011b0110, 0xf7b43109, 0x54fb1514, 0x0714f706, 0xfb0654f7,
0xb4fb0714, 0x011b0110, 0xf7542e09, 0x062b1514, 0xeb0714f7, 0x0714fb06, 0x510310fb, 0xf8230901, 0x19f4f764, 0x440c1d1a, 0xdb447242, 0x24fc2419,
0x181584fb, 0x44177e55, 0xac443544, 0xfb0e3719, 0x3e01ff70, 0x00ff6666, 0x1500808f, 0x78fcffff, 0xf6ffff10, 0x3182f0a7, 0xff9e0f26, 0xf2d2f9ff,
0x053a0e82, 0x22088b1e, 0x2d00ff06, 0xffff6626, 0x05142ea1, 0x7e0900ff, 0xecfffffa, 0x27825c0f, 0xfff68826, 0xd823e8ff, 0x1a200e83, 0x7d222c82,
0x0a820870, 0x82cd0c21, 0x2523830a, 0xff4721e8, 0x55840800, 0xff008026, 0xecf11300, 0xd1381e82, 0x00ff176e, 0x05a4f061, 0xa7ffff40, 0xff0500c0,
0xe75bfbff, 0x87faffff, 0xf92d7782, 0xffff6045, 0xff1804fd, 0x0a17f9ff, 0x232c828b, 0x8b1038fd, 0x33261182, 0x0000fff8, 0x0982027c, 0x82084c21,
0x0efc2109, 0xf6261a82, 0x00ffc08a, 0x76826f03, 0x10b8f92d, 0x08968b94, 0x146f01ff, 0x828b077c, 0x2070249f, 0x820500ff, 0x0800234f, 0x80828e97,
0x82c99621, 0x48e12128, 0x08223982, 0x0a8248a1, 0xff98d930, 0x7b140a00, 0x7dfeffff, 0x0700ff72, 0x6e823d0a, 0x82aec721, 0x190f243f, 0x8284fb9a,
0x6e0822e0, 0x29128214, 0x00ffd663, 0xff34b301, 0xbc82f5ff, 0x2a05f47d, 0x089a99f6, 0xf7b0fb0e, 0x18156b94, 0x270ca185, 0xff0a97f2, 0x7b54eeff,
0xd922b283, 0x1b820a97, 0xd8e3dd2f, 0x591100ff, 0xe8ffff9a, 0x00ff1e85, 0x827e831a, 0xff1f2a0a, 0xb81ee5ff, 0xe3ddffff, 0x233082d7, 0xffff66a6,
0xcd822e83, 0xff293c83, 0x85abf1ff, 0x4f0e00ff, 0x19c4825c, 0x280a6438, 0x7b540e00, 0x350f00ff, 0x06604ac2, 0x2005a875, 0x06b875ff, 0x8252b821,
0x4723242d, 0x18eb08ae, 0x180eae6d, 0x760a7e47, 0x5c18087a, 0xab230d98, 0x8507eb06, 0xffff213c, 0x26051c76, 0xffff52b8, 0x8333b3dc, 0x209190c7,
0x05bc5011, 0xf24a0682, 0x88a88305, 0x68262291, 0x224982f6, 0x85291c22, 0x170023d6, 0xea84e27a, 0x82ff0821, 0xffe1270a, 0x48e11a00, 0x1e8300ff,
0x59110025, 0x8300ff9a, 0x181a822e, 0x210b039a, 0x8518a4b0, 0x861810fb, 0x98850cfb, 0xff23a885, 0x82ae47e3, 0xb8dc272d, 0x072b0852, 0x858506ab,
0xde189585, 0xab20133e, 0x6b22488c, 0xf5822b06, 0x3c82ff20, 0x83054241, 0x08fb764c, 0x09d7aa18, 0x6e18ff20, 0x0e2509ed, 0xf714f7af, 0x17c077b4,
0x10a34218, 0x770a074a, 0x342009c5, 0x26067e48, 0x8bcc4cee, 0x7614fb08, 0xeb2417c6, 0xfb34f707, 0x0d6b7f18, 0x0af84818, 0xcb07ab22, 0x200ea67b,
0x07e548b3, 0x0bf4f819, 0xcc206b93, 0xd1828a82, 0x1542ff20, 0x07ab3f0a, 0x94fb06ab, 0x99c800ff, 0xffff159a, 0x96b8deec, 0x21f3ffff, 0x1400ff48,
0xff8bc2b5, 0xef411700, 0x1bc11805, 0x821c8413, 0xb5142222, 0x823284c3, 0x2a3e8238, 0x5101ff08, 0x96063433, 0x841300ff, 0x32b32645, 0xde0c00ff,
0x212c82b8, 0x577834b3, 0x22968218, 0x825c4fe8, 0x98192645, 0x4aebffff, 0x2988823e, 0x088068e6, 0xcceefeff, 0x498207cc, 0x80981922, 0xe6214582,
0x211c8268, 0x2c83ce4c, 0x08cc4c22, 0xdc210682, 0xd31219b3, 0xffff2411, 0x82cc4ce8, 0x4ceb221b, 0x203283ce, 0x22388266, 0x829a1913, 0xccae244a,
0x838006cc, 0x82662058, 0x3d4a2145, 0x9a206c83, 0x4f212c82, 0x0be6795c, 0x41ff9a21, 0xdb820a68, 0x61821720, 0x1420be85, 0xd282c883, 0xe0829620,
0x34331122, 0x57229582, 0xd5826766, 0x15666626, 0x66faffff, 0xf6265482, 0xffffcc4c, 0x0982e6f7, 0xa983f720, 0xcd4cf622, 0xc5881884, 0x33b30922,
0xff231084, 0x82190800, 0x22248379, 0x82990500, 0x41388209, 0xff200635, 0x00211084, 0x22758309, 0x83981908, 0x84048229, 0x8729820e, 0x82ff2079,
0x82298530, 0x8568206e, 0x83828424, 0x25e98638, 0xffabef0e, 0xd3414801, 0xd1002148, 0x823ad341, 0x06d341e2, 0x08806625, 0x418effff, 0x9a2606d3,
0x0c00ff80, 0xd34166e6, 0x2eff213a, 0x2748d341, 0x34337100, 0x158bcb07, 0xac419e87, 0x41672006, 0x662008ac, 0x29067141, 0x08cd4cf6, 0x33d100ff,
0xac410634, 0x41332008, 0x00240582, 0xff9a1908, 0x2205bb41, 0x82999905, 0x20528324, 0x1eac41ff, 0x4042c284, 0x078b2c1e, 0x66d700ff, 0x97feff66,
0x42156666, 0x4c2108c2, 0x07c242ce, 0x7bcc4c21, 0xb3280fde, 0x00ff8b34, 0x08cc4c23, 0x2008c242, 0x42bf82e6, 0x192205c2, 0x9b82969a, 0x9a992827,
0xff06cb07, 0x825782ff, 0xb309225d, 0x089a4234, 0x42ff9821, 0x9a420555, 0x20ed8209, 0x20ed8432, 0x42de869c, 0x0020139a, 0x642ced9b, 0x990a00ff,
0xffff089a, 0x0668e6d1, 0x992e6982, 0x0e00ff9a, 0xffff0080, 0xffccccf6, 0x09830d00, 0x8219f421, 0xb30a2213, 0x229b8234, 0x82cc4c19, 0x99482c93,
0xff960698, 0x34331200, 0x821400ff, 0x0d00219f, 0x17202b83, 0x26104544, 0x8b6666e2, 0x72ddffff, 0xe72205c7, 0x45446766, 0xcd4c2107, 0x42074544,
0x45440871, 0x219f8233, 0x4544e60c, 0x2eff2d08, 0x0e06cecc, 0xf824f82f, 0xf4fb1534, 0xe522ca82, 0x7d82717d, 0x8f82ea23, 0x7b4818ff, 0x18f4200b,
0x2307f4c1, 0x717d1500, 0x24058251, 0x8f821a00, 0x29dc828b, 0x060080f5, 0xf81000ff, 0x05828b52, 0xffae472b, 0x76be0600, 0x020c00ff, 0x21048290,
0x20828a01, 0x82825a21, 0x2004820a, 0x21108205, 0x0482ac07, 0x823c0a21, 0x34b32124, 0x33232e82, 0x859c8b34, 0x825f8242, 0x86902050, 0x7d152f5a,
0xe5ffff70, 0x088b0080, 0x154be4fb, 0x9782d4f7, 0xbeffff2a, 0xff0574fb, 0x4200c0ff, 0xee220d82, 0xa5827a54, 0x86abf124, 0xb118ffff, 0x4b2c0913,
0x0674fb07, 0x0e07d4f7, 0x1574f78b, 0x7e052f42, 0x1c200602, 0x232b6d83, 0x088b9a59, 0x14fb06cb, 0x18568b07, 0x230c565a, 0x4b0614f7, 0xff207f82,
0x19137d45, 0x450c834b, 0xf7270c4c, 0x74f70774, 0x471514fb, 0x6b450bc1, 0x7e1e820a, 0xf721168a, 0x01501874, 0xe3ff210c, 0x44829782, 0x0866a624,
0x869a74fb, 0xffef0e2b, 0x68e62a02, 0x802501ff, 0x34748200, 0xff4861ee, 0x00402300, 0x80cdffff, 0x0000ff00, 0xffff4821, 0x270e83ee, 0x08b89edc,
0x51ffff34, 0x022bf283, 0x00ff66e6, 0x8b666608, 0x6ff0ffff, 0xd32505c0, 0x00ffb8de, 0x82278439, 0x46002631, 0x088b02c0, 0x200682ff, 0x22ac8200,
0x82985938, 0x48e12152, 0x2c3a0a82, 0xff08b81e, 0xe811ffff, 0x191000ff, 0x0200ff9a, 0xffffd04c, 0xff9a99f8, 0x6d83a9ff, 0xccccac22, 0x8c251e82,
0xffff3233, 0x2c8d835a, 0xc2f54700, 0xff0524f7, 0x842b4800, 0x2b0782fb, 0xbade6fff, 0x48ffff06, 0x157b66e6, 0x10214d82, 0x2174821e, 0xab826001,
0x82a1f821, 0x81a921a6, 0xac23ba82, 0x820800c0, 0x21c589b1, 0xc599ff7f, 0xc59d6720, 0x9ad94522, 0x0683c583, 0x3a00ff24, 0xd756d623, 0xffff270b,
0xf766e67f, 0x9b821534, 0x85343321, 0x28dc279b, 0x4700ff06, 0xb183a4f0, 0x826f0121, 0x15a43015, 0xe670ffff, 0x01ff0666, 0x0734b326, 0x831700ff,
0x4c0a25e3, 0x1100ffcc, 0x0026f282, 0xff343315, 0x0e830500, 0xf7831920, 0x99710024, 0x1a82069a, 0x8284ab21, 0x6e0d25da, 0x0e00ff14, 0x0f866c18,
0xabf1ff23, 0x24168484, 0x3aefffff, 0x219b82e2, 0x33837fff, 0x83f1ff21, 0x821320ee, 0xe9ff2d04, 0x00ffb81e, 0xffb89e0c, 0x48e1e5ff, 0x06832083,
0xe8ffff27, 0xffff723d, 0x202083f3, 0x246f82f2, 0xb89eecff, 0x84c08208, 0x4cee213b, 0x091c6119, 0xff267a83, 0x087c54ee, 0x0683ff8b, 0x4c226a82,
0x7485ffcd, 0xcdcc1022, 0xa3864e82, 0x00400525, 0x82e6ffff, 0x11002804, 0xffffb99e, 0x8500c0ea, 0xf5ff2adc, 0xff0800c0, 0x0040d9fe, 0x22f98207,
0x820614ee, 0x707d2186, 0xea204c82, 0xf743f982, 0x0515770a, 0x0700ff32, 0xffff3e2a, 0xff04d6f8, 0xc3d50800, 0x34f8088b, 0x0ca57818, 0x0af4a518,
0x0000ff27, 0x00ff9002, 0xc3e3181a, 0x83152008, 0x99e42809, 0x0e088b9a, 0x18f730fb, 0x861ad0b4, 0x06cd52c9, 0x8284ab21, 0x050646d8, 0x1e05f523,
0x341c8207, 0xff7c94d5, 0x9a19efff, 0x4cd7ffff, 0x086d6dcc, 0x33bcffff, 0x27048233, 0xff059a19, 0xcdcc4300, 0xa9260a85, 0x1000ff6d, 0x248466e6,
0x99233483, 0x5380089a, 0x90180f41, 0xfb211e02, 0x0c0055d4, 0x20216f4c, 0x239e8296, 0x66662a00, 0xdc297982, 0x2800ff29, 0xa9a934b3, 0x21938208,
0x04820ad7, 0x0566e622, 0x28219982, 0x210a85f6, 0xc382a96d, 0x84d72321, 0xff8b2b24, 0x846b2a00, 0x0a00ff08, 0x5a18e2fa, 0x4e420e50, 0x4c86200d,
0x00230502, 0x4c7a540e, 0x08210512, 0x20a283f7, 0x24e682a3, 0x66e68efe, 0x82f98415, 0xcecc215f, 0x19216a83, 0x270f8299, 0x79053233, 0xf5ffff79,
0xff2f2282, 0x8b0080e7, 0x99e6ffff, 0x0780089a, 0x840654f7, 0x821920ad, 0x2c1d84ad, 0x00801800, 0x8b089d79, 0x30fb0e07, 0xb04e188b, 0x1854200b,
0x830cf99f, 0xeab61870, 0x0a73450a, 0x01b60110, 0x6beb2414, 0x42ffff15, 0xe63a06b7, 0x00ff7c94, 0xff9a190a, 0x0080e7ff, 0xff08799d, 0x67e64300,
0x33bcffff, 0x0a830533, 0x04826620, 0x05cdcc24, 0x24859d9d, 0x80180027, 0x00ff8b00, 0x08184219, 0x0654fb26, 0x1514fc8b, 0x4117b841, 0x03102afb,
0x284f017f, 0xff9a191c, 0x9a1971ff, 0x31d14115, 0x10181c42, 0x4f01a301, 0x9a190f35, 0xff1514fb, 0x66e6a000, 0x0a00ff06, 0x00ff6666, 0x4c9a990f,
0x122406e7, 0x9e8b846b, 0x22067f45, 0x410654fb, 0x78200694, 0xff281d85, 0xff7c94ed, 0x00800900, 0x21063949, 0x468794fb, 0x82fcff21, 0x05002814,
0x9087cc4c, 0x83fbffff, 0x99042352, 0x8843089a, 0x83208515, 0x86872125, 0x993f0b82, 0xfaffff99, 0x8b0834b3, 0xf82f0e07, 0x15c4f754, 0x9987ffff,
0xff8b079a, 0x3233ceff, 0x82e6ffff, 0xd4ff269a, 0xffff9a19, 0x275682d9, 0x9a19e6ff, 0x0714fb08, 0x08052759, 0xcaffff20, 0x00ff5ccf, 0x0584ab26,
0x30e5ffff, 0x1300ffa4, 0xff7bb087, 0x00801f00, 0x2100ff8b, 0xc8829819, 0x34334522, 0x00214b82, 0x27b9830e, 0xff00a006, 0xcccc0d00, 0x7920f582,
0x0920f082, 0x1e272084, 0x00ff67e6, 0x82200518, 0x80d22242, 0x09525f00, 0x220dd659, 0x5f0800ff, 0xad180a50, 0x142009cf, 0x00233082, 0x721e851a,
0x0026055e, 0xffe27a15, 0x7e821a00, 0x19227982, 0x85824861, 0x7a941426, 0x3aecffff, 0x01271682, 0xffffc3b5, 0x823c0ae7, 0x8708341a, 0x0700ffae,
0x00ff7cd4, 0xffcd4c0b, 0x66e60400, 0x190c00ff, 0x240fd2b4, 0x1e85eaff, 0x28d7828b, 0xff08e27a, 0x1078faff, 0x20838207, 0x27b68299, 0xff04f60c,
0x32b30e00, 0x91240e82, 0x1000ffec, 0x22052b4d, 0x82527817, 0x7813276d, 0xefffff52, 0x53824821, 0xff842b26, 0xe0bae9ff, 0x07226d82, 0x0f823e4a,
0x82a47021, 0x00802c30, 0xb30200ff, 0x0900ff34, 0x828b9a19, 0x096a5e1a, 0x270a3c5e, 0xf774f80e, 0x64fb15d4, 0xff28da82, 0xff34f39e, 0xcc0cb1ff,
0x0e820486, 0xff293682, 0x06ae47da, 0x94caffff, 0x269f827b, 0xff52b8cd, 0x82cc1400, 0x83da2021, 0xc72526cb, 0xffff08b0, 0x28d1838e, 0x059a1971,
0x20f8ffff, 0x2beb8241, 0xffffead1, 0xff1018fc, 0xcc4c0a00, 0x2005d769, 0x26068208, 0xffcc4c15, 0x82261100, 0x831220fd, 0x4a162094, 0x0a2205b2,
0x1b82e13a, 0x713d0a22, 0x07223286, 0x46825ccf, 0x829e2f21, 0x823b20af, 0xc4ff296c, 0xff05ec51, 0x66661701, 0x17a05c18, 0x4a0d2454, 0xff270817,
0xaa120000, 0x820544fb, 0xf0062607, 0x33f7ffff, 0x21988233, 0x5b829919, 0xffcdcc24, 0x234a0800, 0x82068305, 0x1f452116, 0x260cd06a, 0x14eeffff,
0x180564f7, 0x480857bd, 0xf74a0d09, 0x540e2207, 0x0b7a4d7c, 0x0c226782, 0x3583fb64, 0x29f7ff23, 0x214f82fc, 0x3e6b6a1c, 0x8bca2108, 0x0822cd82,
0x5182cad6, 0x9e290722, 0x33201b82, 0x075d8118, 0x44f78b22, 0x84216785, 0x05dd48ff, 0x00235583, 0x8386ab11, 0xa04e1931, 0x0a386009, 0x984ad787,
0x4c172108, 0xc8206788, 0xc8206785, 0x28216783, 0x21678b7a, 0x3e4104f7, 0x9719820a, 0x08e25466, 0x94f80e2a, 0xff1594f7, 0x66e690ff, 0xff283982,
0xff34b3af, 0x6666bfff, 0xb02b0486, 0x088b9a99, 0xffff063b, 0x82e27ae5, 0x85ea2588, 0x1500ff1e, 0x00240a83, 0x088e821a, 0x09317e82, 0x00ffea26,
0xff6fb202, 0x3e750800, 0x710400ff, 0x2c8d8227, 0xff08b047, 0xd0c2e9ff, 0x050500ff, 0x05ca4a1e, 0x82120021, 0x00ff2449, 0x83008017, 0xb8102235,
0x2b308252, 0x00ff9e8f, 0xff14ae0e, 0x81f50c00, 0xb3213582, 0x23358234, 0x06e17a42, 0xe8213b82, 0x276d82f6, 0xff0a17ee, 0x66e61100, 0x16226682,
0x37830b17, 0x11820682, 0x82f6e821, 0x8e022d04, 0x171600ff, 0xff088b0a, 0x0080e500, 0x2e2c3382, 0x00ff0080, 0x05289c43, 0xeeeeffff, 0x052c5482,
0xffff6866, 0xff5c0ff5, 0x32b30f00, 0x11204282, 0x27055e6e, 0xff16f903, 0xc1980000, 0x0a2cab82, 0x0100ff80, 0x00ff1a41, 0x08fafe03, 0x5921ab82,
0x2157829a, 0x3082ec11, 0xffe1ba2e, 0x50f80a00, 0xfa1000ff, 0x8f088be2, 0x04273d82, 0xffff2d12, 0x823a64ff, 0xdd043236, 0xb8feffff, 0x01ff0832,
0xff343317, 0xaec7a8ff, 0x21478205, 0x1f82e69b, 0x51837520, 0x829a9921, 0xcecc2109, 0xf2821382, 0x06225782, 0x4082e0cf, 0xd84e0622, 0x60203b82,
0x0227a382, 0x00ff6626, 0x82e0da06, 0x7f00221a, 0x21268270, 0x91828896, 0x829e3c21, 0x649b2109, 0x01222982, 0xeb83fc94, 0x98ce0627, 0x9cfbffff,
0x312b82ac, 0xffff2250, 0xff7228f9, 0x46210200, 0xb7ffff08, 0xfb82c275, 0x8286ab21, 0x4a0e2276, 0x21b3823e, 0x0a829ad9, 0x82130921, 0x5a0b22af,
0x060b4560, 0x46a10625, 0x830e00ff, 0x06bb2181, 0x6321cc82, 0x265982d8, 0xff0a170a, 0x82a4fcff, 0x510822f1, 0x215282ea, 0x838258c4, 0xf6682627,
0x35e3ffff, 0x204282c4, 0x20cf8319, 0x322482ed, 0x7a540f00, 0xf0e2ffff, 0x0300ffa4, 0xffff1e05, 0x8214eee0, 0xbd002229, 0x213e8272, 0x9818e08f,
0x802207bb, 0x0f828b00, 0x0866662e, 0xff94f80e, 0x66e67600, 0x99ffff15, 0x21060a6d, 0xac42fc29, 0xf8ff2805, 0xffff04d6, 0x57fc29f7, 0x2e7f0633,
0x0a4a4d09, 0xff079b33, 0x84abaaff, 0xffff05cb, 0x06166e54, 0x87efffff, 0x225a82ae, 0x82ae07f1, 0xa4702ccc, 0x7affffff, 0x1000ffe1, 0x8208c275,
0x82ba200a, 0x4c24250a, 0x1d00ffce, 0x1d28a883, 0x00ffcccc, 0x8bd72323, 0x68229f82, 0xea8267e6, 0x1fc50d22, 0x0c21ea82, 0x2726823a, 0xff9ecf08,
0x285c0400, 0x11214582, 0x232082aa, 0xab86ab0a, 0x0734e682, 0x00ffb8de, 0xff52b814, 0x0080f0ff, 0x661500ff, 0xeaffff66, 0x2805b964, 0x0600804b,
0xd9dcffff, 0x247e829a, 0xffc7ebe2, 0x245f8400, 0xff092a01, 0x82738200, 0x86002242, 0x238984fd, 0xf70e00ff, 0x00239d86, 0x82ec910f, 0x0f01237e,
0x7e823433, 0x90421a22, 0x18267e82, 0xffff7a94, 0x67821ef3, 0x34f30e22, 0x68215d82, 0x203b82f6, 0x23ab8280, 0x66e646ff, 0x0a288282, 0xffff281c,
0x9020c5f1, 0x19218382, 0x306c8298, 0x089a99f0, 0x02ffaf0e, 0xff98991f, 0x66663f01, 0x31448215, 0xffbeff08, 0x90e2f9ff, 0x941700ff, 0xe6ffffbc,
0x66825c6f, 0xe6f1ff23, 0x2c2f8266, 0xff7c14f3, 0x10adf6ff, 0x19fcffff, 0x324a8298, 0xff0894c3, 0xd6a3ddff, 0xe682ffff, 0xffff0568, 0x826851fe,
0x0ad72b3b, 0x68faffff, 0xfbffff32, 0x0e82e2ba, 0x83709d21, 0x04f82240, 0x274082de, 0xff2cd2f9, 0x9c840600, 0x07236782, 0x8208ac9c, 0xfc002c06,
0x0000ff02, 0x00ff781a, 0x82aa0001, 0x60372109, 0x02210982, 0x27b8824e, 0xffc2b523, 0x9a99a600, 0x0027b882, 0x00fff685, 0x82287102, 0x2e41211f,
0x78210982, 0x22398210, 0x83747302, 0xe30d2240, 0x2b9382d8, 0x00ff144e, 0xff50f812, 0xb8fee9ff, 0x3521af84, 0x276e82c2, 0xff86abf2, 0x72bdf5ff,
0xc721af82, 0x21f482ae, 0xaf8252f8, 0x823ada21, 0xcc4f2295, 0x21af82cc, 0xaf8231fd, 0x66e6f226, 0x6df4ffff, 0xf6213b82, 0x224a82a3, 0x832a9cf2,
0xf5f22140, 0xf4204083, 0x00231182, 0x82fade08, 0x23d58240, 0x25a60c00, 0xcb274082, 0x00ffd7e3, 0x82ff7fd0, 0x38fc2940, 0x0d00fff3, 0xffff58e4,
0x00284583, 0xff8a330b, 0x9a19f1ff, 0xe5224083, 0x81823e4a, 0x14eefa27, 0x4ae6ffff, 0x220a823c, 0x82e2baf9, 0xfdff23af, 0xc682566e, 0xffab4f26,
0x9663fdff, 0xa6210982, 0x21098287, 0xf082dc64, 0xcd8c3227, 0xcc35ffff, 0x26f083ce, 0xffff8c3b, 0x82e511ff, 0x491c211f, 0x12210982, 0x224082f8,
0x838d17ff, 0xf2f93140, 0xfbfffff2, 0xffffc916, 0xffefc7fa, 0x6a9cf9ff, 0xfb226e83, 0x2282a01a, 0x79a9fb31, 0x270300ff, 0xfeffff6d, 0x00ff767e,
0x8272a804, 0x43d127af, 0x9000ffe4, 0xaf826649, 0x0080fb32, 0xcc0e00ff, 0xf3ffffcc, 0x00ff9a19, 0x7d7c1409, 0xf0223c83, 0x3c82eb51, 0x820cf021,
0x2bf3227f, 0x220a8284, 0x832adcec, 0xbafc226a, 0x2181821c, 0xfe828381, 0xffc8ab26, 0x69100100, 0xb7210982, 0x20ab82ce, 0x22d78345, 0x83cc4c28,
0x514a21ab, 0x1a21a182, 0x212982e8, 0x09823422, 0x82002121, 0x2bff2240, 0x22408302, 0x82a07afb, 0x5c0f2131, 0x9b260482, 0xfbffff22, 0x6e832dd2,
0x6f12fe22, 0xfe222282, 0x3282a105, 0x82ceb821, 0x405521ab, 0xaa215c82, 0x27ab8286, 0xff1d99c3, 0x26663c00, 0xf72cab82, 0x00fffca9, 0xff045608,
0xbcb4f4ff, 0x8821cb82, 0x210982b4, 0x4083ebd1, 0xa470e822, 0xf0274082, 0xffff707d, 0x825c4fec, 0x23ec220a, 0x226e83d8, 0x821ec5f5, 0xf0e730fe,
0xc2f5ffff, 0x0700ff90, 0xffff63d0, 0x82a430f8, 0x807a27af, 0x85ffff01, 0xaf820080, 0x828f1f21, 0x75e0318e, 0x2a00ffc2, 0xffff33b3, 0xffcc4cee,
0x99992c00, 0x00285782, 0x06e2fa32, 0x801700ff, 0x0032c182, 0xff66e654, 0xec910e00, 0x191800ff, 0x5800ff9a, 0x4682146e, 0xc4f54927, 0x330f01ff,
0x23468234, 0x8e28dc00, 0x6621bf82, 0x22718264, 0x838b9819, 0x089a2d05, 0x24f82f0e, 0xff1574f7, 0x1cdaf6ff, 0xf7279682, 0xffff2c87, 0x82914dfd,
0xe0ba2185, 0x8d21fe82, 0x27e282d3, 0xff3ecafb, 0x363e1600, 0x9920bb82, 0x10205882, 0xff216782, 0x827282e8, 0x9eee221a, 0x223582b8, 0x8286ebf0,
0x85ab2b40, 0x91f7ffff, 0xf2ffffea, 0x1a82f628, 0x72fdfa22, 0x45263582, 0xedffff1f, 0x83516666, 0x22358606, 0x8266a6f3, 0xdcf42235, 0x21618229,
0x3582f833, 0x82717d21, 0x44562170, 0x9423af82, 0x8207c475, 0x1716229a, 0x83e8820a, 0xe8112ac6, 0xeafffff6, 0x088bcccc, 0x20338274, 0x231282ee,
0x0a17eeff, 0xe9210a82, 0x296582e8, 0xcc4cbdfe, 0x00ff5307, 0xe182b34a, 0x26f8ff22, 0x0a2a6882, 0xffff0080, 0xffe1faf3, 0x09840500, 0x8b0ad723,
0x21418208, 0x3382aec7, 0x8240ed21, 0xf0ee221b, 0x230a82a4, 0x083e0ae9, 0xf7270682, 0x00ffdea4, 0x82a69b02, 0x74932184, 0x65213282, 0x218982a2,
0x8982cccc, 0x52385b30, 0x6686ffff, 0x00ff0566, 0xff349319, 0xf682ddff, 0xb3280035, 0xebffff33, 0x00ff34b3, 0x8b00802a, 0xff06eb08, 0x82664f00,
0x400024cc, 0x83ff9a99, 0x82bb8204, 0xeb082110, 0xf352c483, 0x83e5200e, 0x34fb2431, 0x831544fb, 0xf0272177, 0xd8216882, 0x22048610, 0x83f027f7,
0x850683a5, 0x07002111, 0xff241182, 0x10d80800, 0x08214b85, 0x548618cc, 0x211e8211, 0x7082cdcc, 0x82330721, 0xd8f82294, 0x24568510, 0xcb072b08,
0x8262ba8b, 0x198518db, 0x20628309, 0x206284cc, 0xeb978434, 0xf70e2b62, 0xa000ff94, 0xff159a99, 0xee4aff00, 0xff862507, 0xa4b0f1ff, 0x26051b4a,
0x5c4feeff, 0x84ff088b, 0x52168506, 0xff300a85, 0x33b327ff, 0x1a00ff07, 0xffff33b3, 0xa467e6ff, 0x4c2b2182, 0x0c00ffcc, 0xffffcd4c, 0x8234b3e7,
0xccaa2737, 0x2400ffcd, 0x5f823333, 0x9583022c, 0xc50000ff, 0x0200fffe, 0x09826d87, 0x82eb4021, 0xea862109, 0x7d210982, 0x2c298230, 0xff3d0aab,
0x424bc600, 0xfaffff05, 0x304483cc, 0xffffd823, 0xff4721f4, 0xae470700, 0xa1f3ffff, 0x2a878348, 0x8bae07eb, 0xedffff80, 0x828b70fd, 0x52f8226c,
0x22068208, 0x8202cbfb, 0xbcd52b44, 0xb9fbffff, 0x0100ff58, 0x09829cc3, 0x080ee237, 0xf85100ff, 0x40ffff52, 0xff0532b3, 0x233b3600, 0xb51000ff,
0x250a82c3, 0xff3333f5, 0x93831b00, 0x8520d68d, 0xee254b82, 0x4b087b54, 0x25088407, 0x0e00ff7a, 0x65825c4f, 0x1986ab21, 0x18124200, 0x200a7179,
0x222f82cb, 0x18b31100, 0x22111ca3, 0x8214fb2b, 0x760019f7, 0x20338a09, 0x213384eb, 0x6a4185ab, 0x417b2008, 0x6a410563, 0x5f93870f, 0x00220891,
0xca184c0e, 0xbb290caf, 0x19f6ffff, 0xffff159a, 0x2a1783f4, 0xff9a99f2, 0x68e6eeff, 0x83f7ffff, 0xccec230e, 0x51828bcc, 0x0a97e422, 0xe822d182,
0xc7823eca, 0x82ec5121, 0xd6e32630, 0x3a1800ff, 0x2c1a82e0, 0xffe5f0f8, 0x0a97eaff, 0x28efffff, 0x2b3a82b5, 0xffff142e, 0xffebd1e8, 0xbadef8ff,
0xd0221e82, 0xa1823d0a, 0x05703d2c, 0x70feffff, 0xffffff21, 0x0982f084, 0x14826a20, 0x2cc5ff22, 0x70210982, 0x225f83a4, 0x82cfb7f9, 0x1afa305f,
0x0300ff1d, 0xffff16b9, 0xffa370fd, 0x830f0600, 0x23ff275f, 0x0200fff8, 0x3a82ba09, 0x82729821, 0x641b2209, 0x2205828b, 0x82086a11, 0x83062006,
0x5c042290, 0x212b826b, 0x0482b85e, 0x8262f021, 0xd6232d1a, 0x2e00ff08, 0x00ff3373, 0x053e4a0e, 0x3320b082, 0x052c0a82, 0x00ff024b, 0xff5c8f0c,
0xe0af0f00, 0x11223982, 0x408366a6, 0xa430222c, 0x75dfffff, 0x0500ffc2, 0xb28248e1, 0x831f8521, 0x1cfc228d, 0x228d8229, 0x82c00afc, 0xc66d2673,
0x16fcffff, 0x24a98288, 0x230898cc, 0x2cc6826b, 0xff1fc5ed, 0xde64faff, 0xfaf5ffff, 0x21f582e1, 0x2c826065, 0x70fdef22, 0xff324f82, 0xffe8bbfb,
0xb8ae0000, 0xb8fbffff, 0x0100ffd4, 0x09822160, 0x82bedf21, 0x22122790, 0xc9ffff0f, 0x90828ea7, 0x1f85122f, 0x80c8ffff, 0x3300ff00, 0xffff71fd,
0x220983da, 0x8200803a, 0x4a002979, 0xff06cdcc, 0x3e8a5200, 0x4526a282, 0x00ff8e42, 0x9b823539, 0x68e61229, 0xca4c00ff, 0x5fff083e, 0xfc2d05d5,
0xff823433, 0xccccfdff, 0x66f6ffff, 0x23378266, 0xccccecff, 0xee208482, 0x08222783, 0xca4134b3, 0x00200805, 0x0866660d, 0x02ffef0e, 0xff98196a,
0x7c545e01, 0xf2ffff15, 0x00ffe0fa, 0xff006004, 0xec91f1ff, 0x78269a82, 0xf7ffff02, 0x3082e4ba, 0x8206ff21, 0x9e89215d, 0x6222b982, 0xe5824821,
0x9a998927, 0xcc9d00ff, 0x200a82cc, 0x22d483f7, 0x82b0070b, 0x42a02134, 0x87213e82, 0x214882ac, 0x3e8284eb, 0x829c9921, 0x84f22034, 0x70bd210a,
0x33204982, 0xf3207a82, 0xf2238a84, 0x6f083433, 0xee22056a, 0xa9185c4f, 0xff20094f, 0x6411244e, 0x112e0660, 0xf708a4b0, 0x00ff0734, 0xfff66856,
0x78838cff, 0x0f0c002f, 0xefffff5c, 0x00ff48e1, 0x8bec111b, 0x240f84ff, 0xb81e1000, 0x2a258208, 0x00ff6666, 0x05343373, 0x830734fb, 0x206485f9,
0x060c437c, 0x84ab1122, 0x2005894e, 0x22358284, 0x827c540e, 0x5c4f2180, 0x64840a82, 0x30829420, 0xcc0d0023, 0x21af85cc, 0xb4830c00, 0x64e6f222,
0x542fd882, 0xfeff087c, 0xff68e675, 0xf4a80100, 0x5854fb15, 0xc9630c4f, 0x69601911, 0x82cb200f, 0x4e20202f, 0xf4860578, 0x8f827b20, 0x1834b321,
0x58124a7c, 0xf482079c, 0xdf00ff25, 0x82072a1c, 0x6400203b, 0x1341097e, 0x83b5850a, 0x82332047, 0x824c20c5, 0x4cee23b5, 0xad188bcd, 0xff2307fb,
0x829a9972, 0x668d22fe, 0xf29d1866, 0x849a2015, 0x00ff2116, 0x8b212082, 0x21068508, 0x338200ff, 0x5a820484, 0x08201782, 0x28860685, 0x54841b83,
0x5d3b2d82, 0xfeffcccc, 0x153433a2, 0x980500ff, 0xf3ffff10, 0xffff52f8, 0xfff0d7fa, 0x82b8f1ff, 0x00f42209, 0x2b0e82a4, 0xff08b85e, 0x20b0fcff,
0x78feffff, 0xfc262382, 0xffffe08f, 0x238247ff, 0x5c8ffc25, 0x8282088b, 0x57f7229c, 0x2b40820a, 0xffff0020, 0xfff6e8fb, 0x5caf0800, 0xd9303182,
0x00ff3e8a, 0x05a43052, 0x28c4ffff, 0x074306f6, 0x2305a175, 0x40f5ffff, 0x04842882, 0x00c0f222, 0xff20b382, 0x2414a378, 0xfdcf00ff, 0x18338270,
0x2014c46a, 0x278182e3, 0xff05e0fe, 0x48212c00, 0x2327dc82, 0xffffb8de, 0x82b81edc, 0xe1d32261, 0x23ee8248, 0x14aee3ff, 0x212ac382, 0xe7ffff48,
0xffffe23a, 0x7282c0e9, 0xaec7f12d, 0x2200ff08, 0xffff84eb, 0x82b083b5, 0x33b22b96, 0xad00ff34, 0x4b15cccc, 0x9e414b06, 0xf6a82105, 0x0e204d82,
0x0482cd83, 0x11220a82, 0x4d82f6a8, 0x06820020, 0x8206e641, 0xffff2f16, 0x8bcc4cee, 0xf8ef0e08, 0xff158b94, 0x7d187ffe, 0xf1200a61, 0x8206df45,
0x33ef2287, 0x20398232, 0x2f0682ff, 0x4c0e00ff, 0xefffffcd, 0x00ff68e6, 0x8bcdcc10, 0x5005516e, 0x0e20055e, 0x241f1b19, 0x54f8db26, 0x06b4fc15,
0x22166471, 0x8207d4fb, 0x71e5206f, 0xea200890, 0x1a220983, 0x68820080, 0xc6713382, 0x83f72015, 0x711a8333, 0x7b3210c9, 0xfc15f4fb, 0xb4f70694,
0x0694f807, 0x0e07b4fb, 0x7b5aeb2f, 0x52c9820b, 0x6f18050e, 0x6918124a, 0xf7230a29, 0x46ab0614, 0x862005bc, 0x8705d242, 0x18342034, 0x480d6da6,
0x6b200a27, 0x195e6918, 0xfc075b25, 0x83bb0654, 0x821a254f, 0x1500ff90, 0x0d74e218, 0x6a82bb20, 0xfcf4f723, 0x2c6b1844, 0x0e3a6117, 0x0a556d18,
0x07a4f732, 0xfb0654f8, 0x8cfb07a4, 0x531554f7, 0xff065307, 0x0de93c19, 0x838bcc21, 0x19342010, 0x2217e93c, 0x825306c3, 0x2f328294, 0x0a00ff34,
0xffff33b3, 0xffcc4cf5, 0xcd4c0d00, 0x9619e483, 0xc32314ed, 0x8306c307, 0x0a397821, 0x848b3421, 0x82638210, 0x86cc2039, 0xb30a2243, 0x24798434,
0x0653088b, 0x876382c3, 0x83cd201a, 0x201a8468, 0x95638233, 0x2f0e28ac, 0x34f834f7, 0x41076b15, 0x96546f84, 0x24244208, 0xfb34fb24, 0x7e411534,
0x06be4205, 0x0f0b6f18, 0x241cb841, 0x4cfbccf7, 0x2d4a4115, 0x4144fb21, 0xf7222edf, 0x4c410644, 0x01ff2ce5, 0xff9a1930, 0x66e68fff, 0x1800ff15,
0x2633886f, 0xd0ffff5c, 0x820566e6, 0x23478205, 0x9a192f00, 0xf7310a82, 0x00ff0080, 0xffcc4c09, 0xccccf0ff, 0xf6ffff8b, 0x23628299, 0x0834b3f6,
0xb3210a82, 0x180f8433, 0x24079482, 0xffcd4c09, 0x212f82ff, 0x3b83ff08, 0x40824584, 0x5c205182, 0xf6200682, 0x09272c99, 0xffff6666, 0x18ceccf5,
0x200e5170, 0x2d478332, 0x00ff66e6, 0x0534332e, 0xd1ffffba, 0x7018cccc, 0x2c93097e, 0x3b82f29a, 0x3c82ba20, 0x9b824982, 0x1042e282, 0x424820e7,
0x2c233d10, 0x42a0ffff, 0x72184310, 0xb9410b38, 0x04f72a11, 0x0e0504f7, 0xf814f7af, 0x137b1834, 0x0b95580c, 0x9968ff33, 0x00ff079a, 0xff9a999c,
0x66665400, 0x00ff9b05, 0x330b8308, 0xff666613, 0x6666f4ff, 0xedffff8b, 0xff08cccc, 0xceccc0ff, 0xff24278b, 0xfeff0f00, 0x68202b88, 0xfe232b8c,
0x473433e8, 0xb5440774, 0x34fc210f, 0x460ca967, 0xf8210a6e, 0x17295a04, 0x0e06cb29, 0xd4f770fb, 0x8215c4f7, 0x80b0218d, 0x11142b19, 0xb0ffff24,
0x1b825278, 0xae87bf2b, 0x804000ff, 0x00ff8b00, 0x0599584f, 0x11844f20, 0x82527821, 0x82048316, 0x088b210e, 0x22821c84, 0xff212882, 0x823282ff,
0x233e8238, 0xdb14fb08, 0x00235f82, 0x5a0ad708, 0x0727066b, 0xfffff628, 0x823333f7, 0xcaff2331, 0x26829919, 0x66e6d522, 0x0e8a4f19, 0x3433f724,
0x288400ff, 0xccccf822, 0x82057e5c, 0x069e5a5f, 0x82333321, 0x08d67b1b, 0x2008d667, 0x671682b3, 0x0a4705d6, 0x212d8b05, 0x607cf628, 0x5b082a05,
0xff1534fc, 0x66e6a200, 0x05fd5d07, 0x69feff21, 0xff220694, 0x8582ffff, 0xe60a0023, 0x84978266, 0x05f44606, 0x84000021, 0x66662a20, 0xe60100ff,
0xffff0866, 0x05ba575d, 0xeb4eee20, 0x06594f05, 0x84eeff21, 0x4b068473, 0x73820952, 0x34b31129, 0x00ff0e08, 0x489a19df, 0x0f200acf, 0x0e22c183,
0x99497a54, 0x59ff2006, 0x0e2006f5, 0xcf485284, 0x00ff2808, 0x06666699, 0x840400ff, 0x820420ea, 0xfeff3986, 0x888e5c4f, 0x055bbb08, 0x330600ff,
0xf9ffff32, 0xff8b90c2, 0x7ad4f5ff, 0xcc210a82, 0x280484ce, 0x055b5b08, 0xffff8888, 0x21cd82fb, 0x5183feff, 0xccccfb29, 0xfeff088b, 0x1934b385,
0x5017d72d, 0xab260525, 0x0f00ff84, 0xa566e13a, 0x10003105, 0x088b1fc5, 0x058b34f7, 0xe60001ff, 0x15b4fb66, 0x2416e26f, 0xa186feff, 0x22588248,
0x8200c0fb, 0xeefb2d21, 0x0100ff15, 0x8e8834b3, 0x05bb5b08, 0xc1219082, 0x25aa8448, 0x0a00ff8b, 0x0a823433, 0x84b83e21, 0xbb08290f, 0x003000ff,
0x8e8e0501, 0x1126df82, 0x0200ffeb, 0x09829999, 0x82004021, 0x98002ea9, 0xab065278, 0x4000ff07, 0x6b0666e6, 0x942d1907, 0xccf0210f, 0x078db018,
0xbfffff32, 0xff079a19, 0x9a191fff, 0xff1554fb, 0x3333efff, 0x1f828282, 0x200bfc6f, 0x504886eb, 0x1d7908a5, 0xed30080a, 0x088b6666, 0x14f8af0e,
0xe6e3ffff, 0x54fb1566, 0xe63600ff, 0x01ff0566, 0x07204581, 0xffff54f7, 0x05d623c9, 0xb07efeff, 0xffab07a4, 0xe2ba8301, 0x7f2ddc82, 0x00ff9819,
0x050ad732, 0xcc0f00ff, 0x24cc82d0, 0x00ffcc4c, 0x23148211, 0xd863f4ff, 0xef297e82, 0xff081e05, 0x5238b1fe, 0x360c8207, 0x853433f6, 0x33f7ffff,
0xf6ffff32, 0xffff68e6, 0x08ce4cfc, 0x836fffff, 0x19c6222d, 0x2d68829a, 0x07146e82, 0x176ffeff, 0xf9ffff0a, 0x5e82703d, 0xf6e89027, 0xf53900ff,
0x227682c4, 0x82ea917d, 0x828020dc, 0xcdff2110, 0xff232c83, 0x82713df0, 0x34b33326, 0xd9eeffff, 0x0b00ff9a, 0x9c8b9899, 0x4e01ff08, 0x6b82cecc,
0xcc090022, 0x05218882, 0x381882f9, 0xffecd108, 0x711d0900, 0xa60300ff, 0x078b0866, 0xff01ff0e, 0x01ff9a19, 0x22e38280, 0x4ee0feff, 0xdc220548,
0xf58200c0, 0x04824020, 0x6626e424, 0x0e82ffff, 0xfb088b27, 0xffff0624, 0x282a8283, 0xec51a2ff, 0xf8ffff05, 0x2d1e8220, 0xff0240fa, 0x48c1f4ff,
0xb30500ff, 0x58828b44, 0x08eebf29, 0xfa5300ff, 0x822b07e2, 0x8537832d, 0x1c002347, 0x1e8200c0, 0x9a592222, 0x1f229382, 0x93839819, 0x5f822320,
0xff221783, 0xb1831b00, 0x874c0e82, 0x1e242206, 0x212b82b8, 0x7982e61b, 0x8240e321, 0xddff2136, 0x0e26a982, 0x54f894f7, 0x7a4eff15, 0xff6b285a,
0x66e640ff, 0x8214fb15, 0xedff229c, 0x4d7d8266, 0xcd18073b, 0xff241d80, 0x66e68000, 0x00233382, 0x4dcecc10, 0x00230558, 0x43cc4c0e, 0x102208be,
0xcd82cdcc, 0x99191027, 0xb3f1ffff, 0x06864d34, 0x8b14f722, 0xad72688d, 0x726f830c, 0x688f12aa, 0x68866382, 0x088bce22, 0xce206f83, 0x98206884,
0x3641688b, 0xfbeb2361, 0xd58215dc, 0xccccf226, 0x33f5ffff, 0x0484c782, 0x32420e82, 0x83f22006, 0x251982ff, 0x0a00ff33, 0xa182cccc, 0x34330d26,
0x0724f708, 0x14830985, 0x1984cd20, 0x0d00ff25, 0x828b3333, 0xd4891919, 0xc7461809, 0x24fb280d, 0xf72f0e07, 0x82e4f704, 0x3d00286e, 0x00ff28dc,
0x829a1932, 0xd8232404, 0x453d00ff, 0x06830599, 0xff231685, 0x8228dccd, 0x23c22695, 0x075b08d8, 0x247718cb, 0x0080210e, 0x2805de4b, 0x0764fb08,
0x6060568b, 0x21aa8256, 0x0e190694, 0x05270831, 0xc08bb61f, 0x8364f708, 0x801a22a2, 0x07dd4d00, 0x1a2d0983, 0x088b8f82, 0x07bb06cb, 0xf7155bbb,
0x05004e14, 0x9a592327, 0x4ce3ffff, 0x053c6ecc, 0x116d6c18, 0x6de3ff21, 0x5b2408b1, 0x152b7307, 0x82058e4d, 0x33b321f3, 0x8b200484, 0x6c4d1084,
0xffcd2505, 0xcd4cf5ff, 0xff221684, 0x8376f2ff, 0x85068305, 0x821b8316, 0x4d1082b9, 0x3f8505fe, 0xe34d1b85, 0x44f72305, 0x461815bb, 0x4c210d85,
0x203190cd, 0x20318834, 0x05154ecc, 0x2a344618, 0x00ffaf23, 0x23b782ab, 0x66e60001, 0x2208c882, 0x069999e8, 0x66aeffff, 0x9c00ff68, 0xff05ae07,
0x66e6f9ff, 0xc20b00ff, 0x0400ff90, 0x00ff9a99, 0x822e7d0e, 0x32b3270e, 0x1d0600ff, 0x0a820872, 0x83cecc21, 0x8270200a, 0x00802619, 0x6cfbffff,
0x260e828c, 0xffff9819, 0x82ac3cf4, 0x195d2b1e, 0x4dffff9a, 0xff057ad4, 0x31195500, 0xd9450f96, 0x23cf8209, 0xff6766ed, 0x2205aa45, 0x6b9999f2,
0xcc2008fa, 0x2f273e83, 0x83059a99, 0x83e3ffff, 0x4ce7285f, 0xffff77cc, 0x829a99e2, 0xe3fe23e6, 0xab829a19, 0xff7fe33e, 0xe6ffff8b, 0xff9f6666,
0x47e1f8ff, 0x801c00ff, 0xffff0800, 0xffb81ecc, 0x6666d000, 0xee20c282, 0x09aa8518, 0x67660d29, 0x1200ff8b, 0x82089999, 0xcc102206, 0x26b682cd,
0x00ff7b54, 0x5333330f, 0xa785085c, 0x0023b883, 0x82862bb2, 0x820620b8, 0x0b002384, 0xe28554c3, 0x93040023, 0x25f68374, 0xf9ffffcd, 0xe28290e2,
0x33b30b22, 0x8e230a83, 0x830400ff, 0x82f122b9, 0x200e82d2, 0x22cd82e6, 0x82703df4, 0x66ae2787, 0x63ffff66, 0x488252f8, 0x67661327, 0x8b1504fb,
0x211f8293, 0x058233b3, 0x4448f620, 0x19f82205, 0x28c08299, 0x8367e6f7, 0x2b08838b, 0x270b8207, 0xffce4cf6, 0x99190800, 0x32252883, 0xe60700ff,
0x18ee8267, 0x220b53b2, 0x82ce4c06, 0xb30928bf, 0x07eb0832, 0x8b158bdb, 0x889a2034, 0x85662034, 0x82322034, 0x33072429, 0x8b00ff34, 0x22848334,
0x84ccccf8, 0x82ce2084, 0xf8ff2327, 0x84849a19, 0x84836620, 0x9000ff25, 0x848b66e6, 0x202485a9, 0x050760f7, 0xff210683, 0x8d1282ff, 0x225d83a9,
0x82b3f9ff, 0xcc0822a9, 0x184c82cc, 0x8b0b1240, 0x61b94474, 0x183b8b21, 0x5c0c3492, 0xdc820a3a, 0xf6e8e922, 0x8305645c, 0xffff2216, 0x20e282e9,
0x85068508, 0x07546316, 0x23051163, 0xff9a1916, 0x04861183, 0xd9830e82, 0x9a99762b, 0xe678ffff, 0xffff1566, 0x2ef082c4, 0x9a19efff, 0xfcffff05,
0xffffce4c, 0x8266e6fe, 0x32332609, 0x80ffffff, 0x20098300, 0x21098234, 0x62823433, 0x14aec136, 0x1e00ff07, 0xffffd8a3, 0x05f6a8a8, 0x640400ff,
0xf3ffff18, 0xf9272583, 0xffffc86b, 0x825c4ff2, 0x7c7f260e, 0x99fbffff, 0x222f829a, 0x829859fd, 0xcc0c243a, 0x83fdffff, 0x83ff2058, 0x57fd2073,
0xf622059f, 0xc9821018, 0x4cb7f627, 0x300600ff, 0x26658220, 0x00ffcc8c, 0x823cdf09, 0x26e62735, 0x4600ff66, 0x8f8266a6, 0x2070fd2c, 0x000700ff,
0xf6ffff84, 0x2f821d1a, 0x156efd27, 0xfff8ffff, 0x2225867c, 0x8459b9ff, 0xed9121b5, 0x23202082, 0xf6269582, 0xffff33b3, 0x7082ccf9, 0x1b60f620,
0x5bfd2205, 0x253683e7, 0x00ff3a54, 0xcc827000, 0x09820f82, 0x8210e821, 0x23b68340, 0xf0670400, 0x6b263082, 0x0d00ff85, 0xcf821aaf, 0xffd76327,
0x00800c00, 0x26e58208, 0x00ff9ca4, 0x82b25d57, 0x4c3e23e5, 0xa18207ce, 0x82333321, 0x205b833a, 0x830984fc, 0x4cfc26f5, 0x0100ffcd, 0x20eb8319,
0x227a82c4, 0x83e61000, 0x83f320b5, 0xb3032215, 0x05677234, 0x830d0021, 0x8203202e, 0x0c0023fb, 0x5982cdcc, 0xce200a86, 0x66207382, 0x0722e982,
0x73826466, 0xfc222d83, 0x1e82ce4c, 0x82403b21, 0x0fef22a7, 0x2d78825c, 0xff852b1e, 0x8360f7ff, 0xfa1f00ff, 0x93828be1, 0xfff62826, 0x7d9f0800,
0x00232586, 0x18a4f010, 0x2207ba63, 0x82f0c703, 0xea51214f, 0x98827382, 0xa6030028, 0xf3ffff68, 0x2982be3f, 0xb89e0322, 0x49830a82, 0x9899f827,
0xccf2ffff, 0x210e82cd, 0xd082ce4c, 0x08cc4c28, 0x01ff2f0e, 0xa98233bd, 0x66e6d926, 0x8affff15, 0x00248682, 0x059a99ac, 0xff261d82, 0xfbffff7c,
0x09829478, 0x82245b21, 0x82e02109, 0x86210482, 0x220e82a8, 0x8208eaa6, 0x0496210a, 0xae200a82, 0xfb315082, 0xffff701d, 0xff06a1fd, 0x78defaff,
0x61feffff, 0x207482ca, 0x23d98274, 0x34b354ff, 0x03229e82, 0x2e821018, 0xfff87326, 0x74080500, 0x89212982, 0x220982fc, 0x828bce17, 0x20032225,
0x31d58200, 0xff3c1f03, 0xfee50000, 0xc00200ff, 0x0100ff00, 0x1a82e6df, 0x82550721, 0x24042214, 0x270f8258, 0x00ff68e6, 0x8668e609, 0x332afa82,
0xfeff0832, 0xf866e6d1, 0x0919151b, 0x0547082b, 0x82722005, 0x9c192348, 0x06850828, 0xebffff29, 0x00ffd763, 0x18d86316, 0x18147147, 0x2008897e,
0x191e828b, 0x27082b09, 0xfff668eb, 0x9a991900, 0xff319982, 0xfbf5e8d0, 0xffff1591, 0xff52f8e0, 0xcecc83ff, 0x2bc28205, 0xffff21b0, 0xff0ad7ee,
0xdf6f0a00, 0xa1260982, 0x1100ff48, 0x1882ae27, 0x0852b822, 0x9926bb82, 0xffffff9a, 0x0982f468, 0x82b99e21, 0x34b32109, 0x8f210982, 0x234c825c,
0x0b570e00, 0x0d229682, 0xc7823d0a, 0xfff8b324, 0x20820300, 0x860e0023, 0x273582ea, 0xff3e0a16, 0x142e5800, 0xca275f82, 0x00ff14ee, 0x820a1735,
0x66fe2d0a, 0x00ff0766, 0xff0a97d9, 0xce4c4f00, 0xb3278682, 0x00ff5238, 0x82666666, 0xfaed261b, 0x1800ffe1, 0x2a6c8219, 0xffcd4ce3, 0xcc4c0e00,
0x44e1ffff, 0xe7200501, 0x00228282, 0x2583e600, 0xf668db22, 0xdf3cdb82, 0xffff0a17, 0xff86abeb, 0x47a1efff, 0x45dfffff, 0xffff081e, 0xff31a8d1,
0xc275a2ff, 0xf8214b82, 0x21dd8218, 0xa98233f0, 0x82670621, 0xccec26c8, 0x0f00ffcc, 0x2be682d0, 0x089a19f8, 0x980400ff, 0xfdffff10, 0x0426b183,
0xffff00e0, 0x1383ecfe, 0x839ecf21, 0xc00b22d2, 0x31d28200, 0xffae470b, 0x10780600, 0xa10500ff, 0x0b00ff48, 0x21829438, 0x82612321, 0xc246220a,
0x235f8290, 0x07cc8cc7, 0xf7228682, 0xf4821884, 0x42826020, 0x30ddf728, 0xf9ffff91, 0x278270fd, 0x92835620, 0xb85ea922, 0xad222782, 0x1f5e0040,
0x00ff232e, 0x3383c052, 0x83110021, 0x58f921e2, 0x102c8282, 0xffffec11, 0xfff0e7f3, 0x0a170c00, 0xd231e782, 0x00ff9ab9, 0x055e2f2d, 0x7f5d00ff,
0x00ff07ff, 0x23988246, 0xb91ea2ff, 0x0a2b1082, 0xffff0a97, 0xffd8e3f1, 0x82071400, 0x21fd2cf8, 0x0e00ff46, 0x00fff628, 0x82f2920a, 0x230e229a,
0x260a82d6, 0x00ff0496, 0x8268e602, 0x9a192623, 0x66f5ffff, 0x37238266, 0x0e089a19, 0xaa00ffaf, 0x3cf7cdcc, 0x2a00ff15, 0xff066666, 0xcdcceaff,
0x4c210a82, 0x83c982cd, 0xd5ff2b0a, 0xff0533b3, 0x34335501, 0x8b188cf7, 0xff2f6952, 0xff34b312, 0x0080c2fe, 0xfcffff15, 0x4fff9899, 0xfc270543,
0xffffce4c, 0x823433ff, 0x05774513, 0x2130f737, 0xf7ffff8b, 0x00ff3188, 0xffe8db04, 0xaec7fbff, 0x690800ff, 0x06665436, 0xba120023, 0x2dc682e2,
0x069a99ad, 0xa2f6ffff, 0xedffff0c, 0x10821e45, 0x1018fa2c, 0x23f4ffff, 0xf1ffffd8, 0x35829498, 0x82f42821, 0xb81e270e, 0xf80500ff, 0x0a870852,
0x8220f021, 0xa3302619, 0x660e00ff, 0x2b1982ea, 0x00ffa4f0, 0x082adc0b, 0x0524f7d3, 0x20256382, 0x1000ff00, 0x23048240, 0x8b5caf1a, 0x212a0f82,
0xefffff48, 0xff0800c0, 0x36824700, 0x05222283, 0x4a828ef7, 0x82f62821, 0x22b1830e, 0x829a99f1, 0x9a19220e, 0x25228285, 0xffcc4c6d, 0xdc82fdff,
0x18065321, 0x180de7c8, 0x4b08a453, 0xcc200cb6, 0x2408b64b, 0xc3088b34, 0x99701806, 0x5c0f211a, 0x10265818, 0x24f78b28, 0x2b066b15, 0x3782ab07,
0x52781a22, 0x1524ab82, 0x00ffae87, 0x0a820482, 0x08201082, 0xff230685, 0x8280eaff, 0x2a1682cd, 0x80e5ffff, 0x0e088b00, 0x821c01ff, 0x0a0129b2,
0xff159a19, 0x52b8f5ff, 0x582fe482, 0xf0ffff10, 0xffffb8de, 0xfff087fe, 0x82a8f7ff, 0xb8f523db, 0x0a820810, 0xd0828c20, 0xbcb4f525, 0x820100ff,
0xf0ff2345, 0xb28267e6, 0x82cd4c21, 0x99992118, 0x0b26ef82, 0xffff5d4f, 0x5f82c0f6, 0x1e830620, 0x5c8ff228, 0xf1ffff8b, 0x7b82ecd1, 0xcff1ff22,
0xf920b382, 0x91261684, 0xf4ffffec, 0x2a84a4b0, 0x73835482, 0x98f7ff22, 0xfe207382, 0xe0215484, 0x21828242, 0x8c82ae67, 0x8200c021, 0xb8042154,
0xfa281982, 0x00ff2030, 0x88a8e606, 0xf0220582, 0x16828ba4, 0x10580522, 0x0522d182, 0x8b82f067, 0x0482c720, 0xa4700426, 0xa00300ff, 0x16203183,
0x1220f883, 0x0c270f83, 0x00fff6e8, 0x82c2f51a, 0xa61c2229, 0x20868267, 0x24068200, 0x15f3ffff, 0x241682c2, 0xffff0eed, 0x227182e9, 0x83801200,
0x833c2035, 0xcc4a230a, 0x788215cc, 0x82aec721, 0x12582b82, 0xe1f0ffff, 0xfeffff48, 0xe1822090, 0xbf828f20, 0x9183f520, 0x0a82ab85, 0x82070541,
0x0a002323, 0x23820040, 0x820a9721, 0x82212099, 0xe4ff330f, 0x00ff5238, 0xff146e13, 0x9a99d7ff, 0xd5ffff8b, 0x7e82ae47, 0xff220683, 0x4a83ecff,
0x82a1d721, 0x21de2159, 0xe4230482, 0x8408a430, 0x414082ec, 0xf0200f05, 0x20080541, 0x225f82c0, 0x821038fa, 0xb8de21ff, 0x210a0541, 0xdb820060,
0x00600522, 0x20070541, 0x22768278, 0x8230a803, 0x192d3486, 0x2400ff9a, 0x00ffc60b, 0xc1cccc19, 0x8b08c58b, 0x1affffc5, 0x220ee2bc, 0x82cccc25,
0x4c3d2729, 0x4900ffcc, 0xf98934f3, 0xf9871020, 0x80828720, 0xf984f720, 0x82eec721, 0x83f720a4, 0x20f9959f, 0x2a48820c, 0xff9eef37, 0x8a2cd2ff,
0x822000ff, 0xbcff237c, 0xf982ce4c, 0x32b3b822, 0x0682f983, 0xdfffff2e, 0xfffff6e8, 0xff6866bb, 0xae07c8ff, 0x33212a82, 0x37f9d334, 0xffbe1f43,
0x7e1f3600, 0x802600ff, 0x5100ff00, 0xff8b3233, 0x00805700, 0x06838682, 0xd9ffff22, 0x4f281683, 0xffff3473, 0xc266e6bc, 0x00328282, 0xffff67e6,
0x15cc8c72, 0xcc0900ff, 0xff968acd, 0xc0820600, 0xe6030023, 0x21108266, 0xda8266e6, 0x82c02121, 0x61542749, 0x00ff0548, 0x0a824004, 0xb8de0a25,
0x83fbffff, 0x820d2024, 0xf7ff280e, 0x00ff9919, 0x82723d05, 0x87bc2d4b, 0x2a00ffae, 0xff05842b, 0x5278f6ff, 0xfa311582, 0xf3ffffa0, 0xffff33b3,
0x83029bfe, 0x06f8ffff, 0x21258288, 0xff82c776, 0x00320483, 0xff8f0200, 0x989920ff, 0x358900ff, 0x76ffffc3, 0x6e82cecc, 0x65fb0722, 0x04262982,
0x0c00ff1a, 0x3982ee3c, 0x82e09a21, 0x22588388, 0x821cfa05, 0x7a43221e, 0x216382e2, 0x8d82a430, 0x82c60921, 0x1a0622a3, 0x209782a0, 0x2c978220,
0xffb25d0c, 0xb0b2fbff, 0xd40a00ff, 0x2767827a, 0xffa245de, 0xe04f5400, 0xfc228d82, 0x4482140e, 0xff88f625, 0x82cef5ff, 0x250621e8, 0xf5229782,
0x5d82f668, 0x822adc21, 0xc2ca2129, 0xfa228782, 0x29829eaf, 0x29dcec32, 0x243800ff, 0x00ff8bdc, 0xffce4c3d, 0x852b1300, 0x19210f82, 0x3279829a,
0xff713d35, 0x32b3faff, 0xf7ef0e05, 0x15f4f714, 0x7dffff8b, 0x592105b6, 0x05b34f99, 0xa6dcff24, 0x4e828b66, 0x11820683, 0xb37d5920, 0x1850820c,
0x8215f843, 0x05a34315, 0x54833284, 0x0866a625, 0x7e34fbab, 0xcd230546, 0x561c00ff, 0x3320056f, 0x144e7c18, 0x84cd4c21, 0x18332086, 0x2119c243,
0x7c18b3dc, 0x401809aa, 0xcb2208cb, 0xd467157b, 0x3f4d180b, 0x208b820a, 0x28001908, 0xffff2312, 0x478333f7, 0x1b86f820, 0x10827582, 0xf7207583,
0x12b27218, 0x24fb2b22, 0x50321e41, 0xf18207f6, 0xec823420, 0x8b9a5923, 0x20068508, 0x05bb44ff, 0x09217d18, 0x4e184b20, 0x49181832, 0x587416ea,
0x3433210d, 0xcc20e584, 0x002bbe82, 0xffcccc08, 0x0ad7f8ff, 0x820700ff, 0xf7ff28c8, 0x088bf628, 0x897b74f7, 0x209582be, 0x187982ff, 0x4114fa7d,
0x1b58084f, 0x4c232218, 0x231b82cc, 0xff34b31c, 0x9d824483, 0x34b3dc23, 0x41be8508, 0x24820b4f, 0x33f7ff23, 0x174f4134, 0x831bab41, 0xcdcc21be,
0x08be6518, 0x088b3326, 0x24f774fb, 0x21093d42, 0x424266a6, 0x41232006, 0x3d421250, 0x24cb4210, 0xf734f722, 0x42059e42, 0x7e1805e2, 0x2c4323ed,
0x244e4108, 0x8bd4f722, 0x201b8041, 0x204d8234, 0x214882e3, 0x80411c00, 0x208d850c, 0x053b5334, 0x4c230023, 0x234718cc, 0x34f72118, 0xe0415fdd,
0x1c021906, 0x0ad72109, 0xf722b282, 0xe041f628, 0x6b03190a, 0x18ff200c, 0x2015cc50, 0x5a17828b, 0x951805ce, 0x4b220cfd, 0xdf4144fb, 0x83b32009,
0x33b322f0, 0x44f093ff, 0x4c41231d, 0x061d4412, 0x44078f6b, 0x9083141d, 0xff333323, 0x0fa051ff, 0xf8ffff24, 0x1d44cdcc, 0x20ec8c10, 0x0b1d44cb,
0x92110f42, 0x095e4390, 0x0482ec84, 0x2012dd41, 0x20af824c, 0x0a5e43ff, 0x20097d41, 0x115e43cc, 0x7d41908c, 0xcccc211a, 0x10475218, 0x100d5e43,
0x70017e01, 0x00ff0e2e, 0xf79a19a0, 0xffff1514, 0x8b295cee, 0x07a6bc18, 0x8248a121, 0x45ef230a, 0x0685081e, 0x0e00ff24, 0x1b824861, 0xff48a128,
0xd7a31100, 0x0685088b, 0x00291685, 0x8bb85e0e, 0xba1000ff, 0x832d82e2, 0x21288206, 0x1b8214ae, 0x59b85e21, 0xb627089e, 0xffff5c8f, 0x829a99d6,
0x7df32566, 0x0c00ff70, 0xff230482, 0x8271bdeb, 0x18f3205e, 0x250847dc, 0x717df3ff, 0x0f82ffff, 0xeb221582, 0x258252b8, 0x828f8221, 0x9082210f,
0x3f286e82, 0xffffc3f5, 0x059002c0, 0x90201583, 0xff241584, 0x90421400, 0x0c207882, 0x00234082, 0x82ec7c0c, 0x820c2025, 0x82002030, 0x2215820f,
0x82ae4714, 0x83508225, 0x8208206b, 0x3d0a313b, 0xfd3f00ff, 0xffff05f4, 0xff295cc9, 0x6666a9ff, 0x9921f38e, 0x2277829a, 0x826666ee, 0x82ff20c5,
0x23dc8506, 0x9a99f1ff, 0x9e26f3a6, 0x1000ffb8, 0x4841842b, 0x278c8205, 0xff15aeff, 0xa4b07901, 0x91216682, 0x36448219, 0xff48611d, 0x33339bff,
0x17b3ffff, 0xf4ffff0a, 0xffff66e6, 0x8248a198, 0x33fd279b, 0xedffff32, 0x3f825c4f, 0x2382a120, 0xccccf028, 0xd71200ff, 0x44828b0a, 0x299c1022,
0x0c2ccc82, 0x00ffd7a3, 0xffec110d, 0x71fd0100, 0x7a212582, 0x371a82e1, 0xff1bef06, 0x51383900, 0x463200ff, 0x2c00ffa7, 0x00ff7c14, 0x88a4b03b,
0x47351a82, 0xffffc2b5, 0xfff067fc, 0xd8632d00, 0xc6b6ffff, 0xf1ffff24, 0x226f8266, 0x8286ebb9, 0x72f9276f, 0xe2fffff2, 0x14829a59, 0xffa8262c,
0xaec7e4ff, 0x05eaffff, 0x1a82751e, 0x862bef22, 0x512dc082, 0xffff05ea, 0x0700c0f2, 0xe0ffff8b, 0x31278299, 0xff3e4ae9, 0xead1e5ff, 0x21e2ffff,
0xfaffff47, 0x2b829a99, 0xe1faf02a, 0x3afdffff, 0xf3ffffe2, 0xf2262383, 0xff8b6866, 0xa54bf0ff, 0x38ec2605, 0x1100ff52, 0x2bcd83e1, 0x00ff0cd7,
0xff008013, 0xcc4c0300, 0x372c9b82, 0x00ff84eb, 0xff687109, 0xc4b52b00, 0xd629a082, 0x0600ff46, 0x00ff1e45, 0x329b8338, 0x2a1c2800, 0xae2800ff,
0x1600ff14, 0x00ffacc7, 0x82204535, 0x90c221f4, 0xf3211e82, 0x213d8232, 0x57827802, 0x70bd5025, 0x82cbffff, 0x4b0021cf, 0xff220482, 0x4c82e6b1,
0xa4b01422, 0xd0289282, 0xffffcc4c, 0x155c4f7e, 0x0f273e82, 0x00ff8b5c, 0x82a4f011, 0x240a83cf, 0xa4f0e9ff, 0x06556a08, 0x0f9a9019, 0x6218ff20,
0x5f180acb, 0x3f820aba, 0xae873025, 0x82d8ffff, 0x27002104, 0xff247982, 0x8b5278cf, 0x06836682, 0xff231685, 0x820080d8, 0x80cf2254, 0x215ba500,
0x545a33b3, 0x159a5609, 0xcc9d2108, 0xc400ffcc, 0xff1500e0, 0x0a17f0ff, 0x980700ff, 0xecffff10, 0xffff2adc, 0xfff43ff9, 0xd663f8ff, 0x10211882,
0x228582f2, 0x82f067f8, 0xae07260a, 0xc40600ff, 0x26238212, 0x00fff6e8, 0x82b6f20f, 0x66663623, 0x2f00ff08, 0xffff723d, 0xff0a77e9, 0x00801e00,
0x82ccffff, 0x21a88290, 0xdf42e6c6, 0x20846d05, 0x085f5a18, 0x2308af82, 0xff34b351, 0x3433d3ff, 0x1c4a00ff, 0xbaffff28, 0x00ff9899, 0x08a41021,
0x5cf7ef0e, 0xff1564f7, 0xa4f01000, 0x0f262682, 0xffff6626, 0x8f8247f5, 0xd7a30522, 0x0c369982, 0x00ff08cc, 0xff19e405, 0x0a57efff, 0x471200ff,
0xf7ffff6c, 0x2e822045, 0x8286ab21, 0xd6e32218, 0x200a8208, 0x27b482a8, 0xff18e405, 0xe2ba0800, 0x6e232383, 0x82faffff, 0x10002364, 0xe28284ab,
0x4821f522, 0xa124be82, 0xe7ffff49, 0x172c7483, 0xffff9919, 0xffce4ce2, 0x9a190a00, 0x4f283d82, 0x00ff14ae, 0x0590c216, 0xfa204882, 0x04263e82,
0x00ffe6db, 0x9e82d909, 0x76b31128, 0x23fbffff, 0x44829cd8, 0x9782fb20, 0xfa100026, 0xeeffffe0, 0x09233a83, 0x827a9ad9, 0x2a1c211b, 0x9c271a82,
0xffffcccc, 0x82d6a3e3, 0xd1502740, 0x4500ffec, 0x0a82ae47, 0x826b0d21, 0x800b2a9f, 0x0100ff00, 0x00ffcc8c, 0x27f98214, 0xbe7ff4ff, 0x6b0d00ff,
0xf4229483, 0xb979d082, 0xcceb2206, 0x252382ce, 0xffff2290, 0x998299f2, 0xe67bf422, 0x9b205382, 0xa9220a83, 0x4882f8e8, 0x7b541626, 0x633000ff,
0x07225e83, 0xa4821964, 0x6e820c20, 0xe5fff831, 0x021300ff, 0xefffff90, 0x00ff0cf3, 0x82f66807, 0xeeef2234, 0x260a8215, 0xff78e05a, 0x8210f9ff,
0x8af8224f, 0x211f823d, 0x1a82ccec, 0xe1faab39, 0xff0550fb, 0x7929f6ff, 0xfaffff75, 0xffff02eb, 0x8b9a19e8, 0x41e7ffff, 0xc42205cb, 0x648234b3,
0xff9a1937, 0x66e6cfff, 0x4c3b00ff, 0xff088bcd, 0x67e66300, 0x010000ff, 0x318582a4, 0xffb8de1f, 0xfc490200, 0x471d00ff, 0x1100ffaf, 0x04829e0f,
0xffe0fa26, 0x7ad41a00, 0x092c2982, 0x00fff8d3, 0xffa4b00e, 0x2010fcff, 0x2d829982, 0x53f1ff22, 0x09221382, 0x7e829ad9, 0xdc59f12a, 0xcd0900ff,
0xecffffb8, 0xfc206383, 0xf6260483, 0xffff3333, 0x9d834cf1, 0x0080f82a, 0xe6f4ffff, 0xf3ffff68, 0xf920f783, 0x82063372, 0xe9ff2982, 0xff8ba4f0,
0x5c0feeff, 0x0a836e82, 0x0f160027, 0xff8b085c, 0x14f74200, 0x994c0129, 0x1504f798, 0x839cffff, 0xfeff2260, 0x2cf182fa, 0xff4821e0, 0x04b6fdff,
0xb8e2ffff, 0x21498252, 0x048262f0, 0xff1e0526, 0x862be5ff, 0xf6219982, 0x2104822c, 0x5e824ff1, 0xe0ef0322, 0x2d829e82, 0xac0e0022, 0xf6221382,
0xd7826626, 0xf6a80e27, 0x30f6ffff, 0x26d28221, 0x00ffd6e3, 0x82efe703, 0x2adc21c7, 0xaf21eb82, 0x2f1e82e0, 0xff647007, 0xed1c0b00, 0x660c00ff,
0x0700ff66, 0x0023bd82, 0x8266660d, 0x44a783b8, 0xd082143a, 0xff24cf85, 0xffc2f5ee, 0x6d82df84, 0x5c0fef2b, 0xf0ffff8b, 0x00ff9ad9, 0x27a6830a,
0xff285cfa, 0x33f30f00, 0xfa221a82, 0xe242e81b, 0xedff3205, 0x00ff92b8, 0xffe1ba08, 0x7c54efff, 0x1cfaffff, 0x221e8229, 0x820a57ef, 0xe71b250a,
0x45f7ffff, 0xed27d582, 0x00ff94b8, 0x83d8e305, 0x827a2023, 0xd70a21a1, 0xe1261e82, 0x00ff2a5c, 0x14826318, 0xb8dee826, 0xba1d00ff, 0xf522e982,
0x3d8252f8, 0xec51b022, 0x3d228382, 0x2f820570, 0x3e820520, 0x1824fb22, 0x2621ef82, 0x26a28268, 0x00ff8c4c, 0x8328dc04, 0xd8042244, 0x231f8510,
0x4cb71100, 0x1e221f82, 0x1b829cb8, 0x82d8e321, 0x3363275f, 0x1c00ff34, 0x40820a57, 0x142eaf27, 0xb8baffff, 0x3b0a8252, 0xff7a94f2, 0x0080f4ff,
0x73feffff, 0xebffff34, 0x00ffcccc, 0xff42800b, 0x7c94f2ff, 0x0b213482, 0x826a8285, 0x00ff240a, 0x82c43514, 0xa4702123, 0x2206c859, 0x82d0820b,
0x6664261e, 0x5600ff66, 0x27538317, 0xff86abe9, 0x2a9ccfff, 0xf8225382, 0x8482e89b, 0x6e82f320, 0x1a000731, 0xfdecffff, 0x1000ff70, 0xfffff40c,
0x820a97f8, 0x83102034, 0xa4f831be, 0x1300ff1a, 0x00ffb007, 0xffe4ef06, 0x846b0700, 0x12212382, 0x2a1e8268, 0xf7200554, 0x00ff0550, 0x83c8d609,
0xff823175, 0x98190500, 0xe61700ff, 0x00ff8b66, 0x089a1918, 0x3b220682, 0x6c82cc4c, 0x4368e621, 0xc4320609, 0x088b30b3, 0xff54f70e, 0x66e68000,
0xf9ffff15, 0x3582cdcc, 0xff219b82, 0x230983f7, 0xff9a1903, 0xcc220982, 0x0685088b, 0xce250583, 0xe6fcffff, 0x462a8566, 0x762106e0, 0x82268299,
0x22c18204, 0x8257b9f9, 0x221f83ad, 0x8442e0fc, 0x848b202e, 0x227b823a, 0x82b3edff, 0xf50e27d8, 0xf3ffffc3, 0xb4823233, 0x82d72321, 0x08002357,
0x97822130, 0x27310827, 0x1f0300ff, 0x21d582be, 0x0482713d, 0x823c3f21, 0x828920d0, 0x82002088, 0x22d38204, 0x843b3f06, 0x25248315, 0x0800ffbf,
0x34836831, 0x82142e21, 0x08002d57, 0xffff142e, 0xff1bcffd, 0x3a540700, 0xb3219882, 0x82098233, 0xff9326ee, 0x9a194f00, 0x20288215, 0x065b4316,
0x1100ff24, 0xf246a4f0, 0x185e8205, 0x460b07f8, 0xff2892f9, 0x9a193701, 0xe6d000ff, 0x2605067e, 0xffff2230, 0x8342e0fc, 0x822620fb, 0xc4c027e4,
0x3d0600ff, 0x0a880870, 0xffff722a, 0xff98cef7, 0xca210300, 0xcf220982, 0x1a828b5c, 0x0682f720, 0x3a850c84, 0xc2f9ff23, 0x202f8390, 0x281a8282,
0xff6085d7, 0xe2bad5ff, 0x20108305, 0x22048684, 0x8240e0fc, 0xd8ce222e, 0x2034848b, 0x20068408, 0x215282e0, 0x16847c1f, 0x83058141, 0x87082045,
0x84c0210a, 0x68209083, 0x40205f83, 0x30210982, 0x05d241a4, 0x848ba421, 0x203a830c, 0x212a82c0, 0x04820040, 0x827c3f21, 0x61292435, 0x8200ff48,
0x82052004, 0x12432110, 0x02221a86, 0x2e843433, 0x092a3482, 0x2b087a14, 0x802dffff, 0x0d821500, 0xaec73922, 0x1729a482, 0x7700ff0a, 0xffffecd1,
0x2dd5857b, 0x8b666666, 0x66eaffff, 0x69ffff67, 0x0a823333, 0x6766f622, 0xee31ab83, 0x00ff14ae, 0xff71fd0e, 0x71bdf1ff, 0xc21100ff, 0x10194a90,
0x194aeb20, 0x08e22108, 0xb6357c82, 0x3700ff04, 0x00ffd863, 0xff1b4f2f, 0x5c0f2b00, 0x2e3900ff, 0x21358314, 0x58827350, 0xc01e0028, 0xb4ffff00,
0x6382a370, 0xc3f5d322, 0xc6206383, 0xff212382, 0x279683d9, 0xffceccd7, 0x9ad9f7ff, 0xd7270482, 0xffff0808, 0x84142eef, 0x3f114a04, 0xcc0cee22,
0xb821c582, 0x21c58252, 0xc5822adc, 0x835c4f21, 0xce04288f, 0x00ff8b14, 0x82ecb15f, 0x5720081b, 0x0a00ff0a, 0x00ff32b3, 0x082a5c62, 0x5e3d00ff,
0x3e00ffba, 0x00ffa430, 0xff008002, 0x66664800, 0x15282982, 0x0e08cccc, 0xcc4a01ff, 0xcd2d4c82, 0xff1533b3, 0xce4c94ff, 0x332100ff, 0x2c9f8233,
0xff3333f3, 0x67e60300, 0xb3f2ffff, 0x07ae4333, 0xc9821920, 0x6766f322, 0xfc2ac982, 0xffff9919, 0xffcc4cf3, 0x14830700, 0x9a99f226, 0x990c00ff,
0xfc221382, 0x6f829a19, 0x14832f20, 0x66e6ee22, 0x382e4882, 0xff0666e6, 0xd763f4ff, 0xf5ffff8b, 0x4a82295c, 0xfff02726, 0x5ccffdff, 0x9a221482,
0x0a8208a0, 0xffcd0c2d, 0xd6a3f0ff, 0xae0b00ff, 0x84ffff14, 0xcf0e214a, 0xf724d182, 0x00ff0614, 0x1445cf19, 0xfb204a82, 0xff247182, 0xff6666fc,
0x0e820485, 0x4b828b20, 0x6cab6020, 0x6c87d920, 0x8b98ce25, 0xb034f708, 0xab80206c, 0x20d9bf6c, 0x206caba0, 0x0c464115, 0xd9826420, 0xae474228,
0x3500ff8b, 0x048252b8, 0x82e2ba21, 0x4542290a, 0x00ff081e, 0x07ae0720, 0x36080c82, 0xffb85e35, 0x9a19ddff, 0x332f00ff, 0xcdffff34, 0x00ff32b3,
0x08991911, 0x4c7affff, 0x3e00ffce, 0xff15cdcc, 0x6afc0500, 0x250200ff, 0x0600ffe4, 0x00ff8255, 0x82805501, 0xf5a82209, 0x2246828b, 0x820c8205,
0x7b052745, 0xffffff65, 0x2a828430, 0xff8f8226, 0xe856feff, 0x10321a82, 0xffff291c, 0x056806fb, 0x02ebffff, 0x4200ff8f, 0x0a829443, 0x0080fc32,
0xf5ffff96, 0x00ff6766, 0xff5ccf07, 0x6666f4ff, 0xa6213082, 0x22718268, 0x82717df0, 0x6831350a, 0xb8f6ffff, 0xf0ffff51, 0x00ff28d1, 0xffc37504,
0x46e1f1ff, 0x0f214f82, 0x26dc826e, 0x059a59cf, 0x82aeb6f7, 0xbaf22209, 0x217382e2, 0x4c82fce6, 0x82ea5121, 0x0e302604, 0x170000ff, 0x21ff820a,
0x4c8200c0, 0x02ebfd22, 0xf521ce82, 0x277282c2, 0xff1e05c4, 0xccccbd00, 0xfc270a82, 0x00ff0681, 0x82ec110b, 0xe650212f, 0xca218182, 0x2181823e,
0x76825278, 0x8466a621, 0x88702081, 0x86148281, 0x83c42081, 0x82482081, 0x8f262181, 0x8528b082, 0xff0566e6, 0xfe540100, 0xc925dc82, 0xfdffff7a,
0x228282a9, 0x828881fb, 0xf6c8210e, 0xaa213d82, 0x224882c0, 0x8278c9fb, 0x04ab210a, 0x81251482, 0x0200ff8a, 0x27098256, 0xffc0aafe, 0x86360400,
0xd0201e82, 0x00238182, 0xc032b397, 0x5e2b2691, 0x76ffffb8, 0x82488233, 0x208c8291, 0x83918efb, 0xa177820e, 0x8ade2691, 0x6a00ff3e, 0x29da8266,
0xe07afcff, 0x270b00ff, 0x5b75fff0, 0xca072205, 0x07c9483e, 0x41f6a821, 0x482a1da5, 0x2200ff08, 0xffff6726, 0x4882e693, 0x49002308, 0xffff32b3,
0x05713de9, 0x2e3f00ff, 0xeaffff16, 0x00ff289c, 0xff66e62b, 0x0180c4ff, 0xbcffff8b, 0x4f8266e6, 0x17e42108, 0x00ff070a, 0xff1e4526, 0x862b1500,
0x021900ff, 0x2800ff90, 0x00ffea11, 0xff52b800, 0xc4752d00, 0x70295582, 0xff07c2b5, 0xccccffff, 0x059675ff, 0x80f42008, 0x0a00ff00, 0xffff9a99,
0x8bceccf2, 0xffef0e08, 0x33b39600, 0x3a6301ff, 0x00ff15e2, 0x82cd4c2c, 0x21228388, 0x0982cc38, 0x5b831a20, 0x33334423, 0x3748828b, 0x8bcccc50,
0xb34000ff, 0xdbffff34, 0x00fff628, 0xff98192f, 0x703dd4ff, 0x2e221a82, 0x0a82d0cc, 0x00235382, 0x82cc4c1f, 0x21a8826b, 0x71820e00, 0x66dbff23,
0x201e8267, 0x22148303, 0x829919f8, 0x33f721b8, 0xfc203e82, 0xf8224383, 0xc2829a19, 0x8299f221, 0x83df2044, 0x19e525ed, 0xd2ffff9c, 0xff277982,
0xff6466d8, 0x8266d7ff, 0x690021e1, 0xad232e83, 0x82059a99, 0x68662ab2, 0xccf7ffff, 0x0100ffce, 0xd39d19e6, 0xe36f277a, 0xa8ffffd7, 0x91828e57,
0x6766482b, 0x45c7ffff, 0x00ff151e, 0x22e1835a, 0x823333b9, 0x82042015, 0x080021b2, 0x002fc782, 0xff666602, 0x9a990900, 0x0b00ff8b, 0x82089919,
0x990a2f06, 0xfcffff9a, 0x00ff9a19, 0xffcccc0a, 0x2583fbff, 0xce4c0926, 0x0200ff08, 0x00230f82, 0x83cc4c00, 0x8cce2109, 0x8b270f84, 0xb68bc008,
0x82568b60, 0x053b5138, 0x9a19fd29, 0xffff857e, 0x823433f4, 0x82272030, 0xe1ff233b, 0x7182cccc, 0x50830b20, 0x68661422, 0x2206546e, 0x82666617,
0xcc19226a, 0x213882cc, 0x71834e00, 0x2b82bf20, 0x82410021, 0xb0ff338d, 0x088b0080, 0xb3daffff, 0xffff8b34, 0xff66e6dd, 0x0483f0ff, 0x2082e620,
0xb3e8ff22, 0xaa205783, 0xfe2e0a82, 0x159a19c0, 0x0cadfeff, 0x0901ffcc, 0x628234b3, 0x33f30727, 0x990d00ff, 0x26cf8299, 0x00ffe27a, 0x82ce4c0e,
0x8f0221d3, 0xcc310983, 0x6b01ff08, 0xb2fb2a1c, 0xefffff05, 0xffff9899, 0x218e82f7, 0x4682eeff, 0x83f8ff21, 0x82ed207c, 0xfaff2e2b, 0x8b086666,
0x98feff07, 0x00ff28dc, 0x235d83c9, 0xae47fdff, 0x2683b082, 0x8287ff21, 0x83072009, 0xcf0122fb, 0x2113825c, 0x528233b3, 0xb81e2828, 0x0018ffff,
0x154b0501, 0xe6ff2306, 0x6b718866, 0xfcff2305, 0xc48366e6, 0x371b821a, 0x068b2408, 0x54f82f0e, 0xfb1524f8, 0xffff07e4, 0xfff6e8c0, 0xc275e9ff,
0xc0ecffff, 0xf6ffff00, 0xffff3e8a, 0x830ad7da, 0x2ec12e60, 0xffff8b14, 0xab5238e8, 0x4cc1ffff, 0x241283cd, 0x8b6766eb, 0x2491827b, 0xffff6666,
0x200483f1, 0x24d882fb, 0x00ff07cb, 0x27ea820e, 0x9a990400, 0x0300ff9b, 0x14220a83, 0x2f829999, 0xba3e002f, 0x00ff8be1, 0x6baec717, 0xca3e00ff,
0x2212833e, 0x82666614, 0x330f2812, 0x00ff8e34, 0x8266e613, 0xcc4c25ef, 0x0764f708, 0x2706de4e, 0xff34b3f9, 0xccccf0ff, 0xeb22ec82, 0x86969a99,
0x3333cd22, 0xe7259982, 0xffff67e6, 0x2c8583eb, 0xff33b3d7, 0x66e6f7ff, 0xccfeff08, 0x01ab18b3, 0x18ab200a, 0x2223b3aa, 0x6e8001ff, 0xc52106a4,
0x06c66a1e, 0x7c540e27, 0xc51000ff, 0x847e821f, 0x210c8206, 0xf1824821, 0x8284ab21, 0x3aef2876, 0xffff08e2, 0x82a470f2, 0x4c2836f6, 0x0800ffcd,
0x00ffae07, 0xff991918, 0x48a11400, 0xcc3200ff, 0x22fa96cd, 0x82343325, 0x331334fa, 0x0900ff32, 0x00ffc275, 0xff9a193f, 0x3e8a1600, 0x82ef0e08,
0x19402f17, 0xffcb159a, 0xa8f5ffff, 0x1100ff05, 0x128200c0, 0x00400e22, 0x4a219182, 0x330a823e, 0x0870bd11, 0x9cdf00ff, 0x8b2b0744, 0x00ffff05,
0xbb076666, 0xcc224182, 0x808215cc, 0x07202c84, 0xff232c82, 0x82cae1f8, 0x20f723a2, 0x068308c6, 0xff0c4226, 0x00c0f8ff, 0x84250483, 0x40f7ffff,
0x84988200, 0x23168506, 0xae470700, 0x08225a82, 0x2d8232b3, 0xe6080025, 0x8300ff66, 0x07002144, 0x08209783, 0x08285482, 0xcc2c01ff, 0x0001ffcc,
0x32829a82, 0x821a0f21, 0x47f82654, 0xfdfffff0, 0x32048207, 0xffd823fa, 0x18a4faff, 0x9dffff08, 0xffffb89e, 0x822c07a6, 0xe6ff2799, 0xffffff67,
0x2a82cccc, 0x0a830582, 0x7583cd20, 0x6666ef31, 0x66f0ffff, 0x0000ff68, 0xffffcd4c, 0x829919e7, 0x333321d9, 0x80211382, 0x20d88200, 0x20a5830c,
0x2a8183f2, 0xff48a11a, 0xe27afbff, 0x821000ff, 0x0e002313, 0x1e82b8de, 0x842b0022, 0x26203882, 0x8a82a082, 0x0582b282, 0x19210f82, 0x281a829a,
0xff48e14f, 0x99194900, 0x054d4305, 0xde050024, 0xc461fffa, 0xa0ff2305, 0x0e82ff00, 0xf9269982, 0x91080681, 0x0682ffff, 0x80268f82, 0xf5ffff00,
0x0e8242e0, 0x85008022, 0xe520bb82, 0xff234082, 0x824821e8, 0x83912040, 0xe38922c6, 0x210a82d6, 0x2682e002, 0x0681fd25, 0x820200ff, 0xfdff2146,
0x00223582, 0x13836002, 0x82064121, 0x57c23075, 0xffff078e, 0xff1e05d7, 0xc2f52800, 0x83c8ffff, 0xeb16271f, 0xc6ffff86, 0xef837c14, 0x3253f722,
0x38336b82, 0xffff0552, 0xffceccf1, 0x9a9966ff, 0xffff6d15, 0x828f82e4, 0x40e22111, 0xe4224882, 0xf045d7e3, 0x02002105, 0xe5277683, 0x00ff3373,
0x836bdc1c, 0x82332091, 0x511d220a, 0x297b82aa, 0x00ff9a19, 0xffff7f2d, 0x13831d00, 0xcecc1a22, 0x51277b82, 0x00ffcdcc, 0x8266e64a, 0x66f92348,
0x72820666, 0x8b333322, 0x66268282, 0xe8ffff67, 0x968284eb, 0x82991921, 0x162e2204, 0x82818208, 0x20ff232b, 0xd1829a19, 0x74831220, 0x8ef6ff22,
0x5a200a82, 0xff23ad82, 0x82142eae, 0x831b200a, 0xa1e9220a, 0x82c78248, 0x0512611f, 0x09831620, 0xb25d1b22, 0x12276b82, 0xffffb81e, 0x8290c2f0,
0xe10f2a29, 0xf3ffff48, 0x00ff66e6, 0x29338217, 0x9a990100, 0x0f00ff98, 0x2582fade, 0x82611f21, 0x9926213f, 0x05276583, 0xffffbe5f, 0x828480fb,
0xc00d2730, 0x00ff8000, 0x1b822114, 0x7cff0125, 0x820b00ff, 0x8200204b, 0x22308214, 0x82ba8909, 0xaec7210f, 0x15872582, 0xfdffff23, 0x262e83ea,
0xffffae07, 0x821e45f2, 0x6626211e, 0x6a27c082, 0x00ff84c0, 0x82e45179, 0x66d12a29, 0xff15e466, 0x666620ff, 0x20ee8207, 0x207383ee, 0x29a9820e,
0xec91f1ff, 0xd91000ff, 0x58828b98, 0x68e64027, 0x0c0000ff, 0x2b2e82cc, 0x0766e6ff, 0xffffff2b, 0xbb0534b3, 0x3b823584, 0x0040f722, 0xf82e3a82,
0x00ff00c0, 0x8bfa3e07, 0xbe0800ff, 0x06830876, 0x1183e020, 0x00234c82, 0x43701d07, 0x4c820550, 0x57430820, 0xecd1210a, 0xf7223882, 0x2d829a19,
0x4cf7ff26, 0xf8ffffce, 0x5c074b5b, 0x0e270533, 0x99ed01ff, 0x82b1f79a, 0x83e72064, 0x9e1325e7, 0xebffffb8, 0x0f20a383, 0xff286d82, 0xff323389,
0xe23a5600, 0xef21d182, 0x2da28266, 0x6aa4300c, 0x351d00ff, 0xe8ffffc2, 0xb98232b3, 0x33ffff24, 0x0c830634, 0x6a8b3333, 0xcae2ffff, 0xefffff3e,
0xffffcd4c, 0x087ad4f3, 0x233e82ff, 0xa9ffff33, 0xeb274883, 0xffff6766, 0x436826f1, 0xff230542, 0x820080eb, 0x73f4211e, 0xf6291e82, 0xffffe0fa,
0x7d0040f9, 0x2420828b, 0xff083333, 0x18a282fe, 0x18096c40, 0x200d6d60, 0x236c82f8, 0x90821a00, 0x1521fb82, 0x82f1827d, 0x260a8204, 0x082a9c19,
0x740801ff, 0x0e210584, 0x297e82cc, 0x99cc4cf9, 0x4cf4ffff, 0x668294ce, 0x9a994122, 0x8021a682, 0x23e38200, 0x8066e6f1, 0x6626a182, 0xfaffff66,
0x09820080, 0x20055847, 0x820682ef, 0xa470260c, 0x7b0500ff, 0x268782e8, 0x00ff66e6, 0x826afc0a, 0x286f313c, 0x7000fff6, 0xff0548a1, 0x66662e00,
0x1500ff07, 0x21081083, 0xff0a9710, 0xeb511900, 0x111300ff, 0x6d00ffec, 0x00ff85eb, 0x080ad74f, 0x2e0300ff, 0x0200ff14, 0x0982f853, 0x3382b620,
0xe8db0227, 0x160400ff, 0x210e82c8, 0x1e827e2a, 0x1f850522, 0x34210f82, 0x265e82fe, 0x00ff67e6, 0x82527808, 0x33332104, 0x21217782, 0x201e8248,
0x23198208, 0x76defaff, 0xee261e82, 0xf7ffffda, 0x1982f087, 0xff507826, 0x90c2fbff, 0x04271e82, 0xffff0a17, 0x8280d5fc, 0x04b6264d, 0x23fdffff,
0x21098296, 0x09825859, 0x828c8c21, 0x236d271e, 0xb0ffffd8, 0x9a8272a8, 0xff34b326, 0xccccecff, 0xeb83ae82, 0x3433ef22, 0xd127ca82, 0xff0714ae,
0x82336fff, 0x518f2e1a, 0xf80e05ec, 0x1554f814, 0xff06b4fb, 0x072b63ff, 0xfd629920, 0x14fc220b, 0x05076307, 0x1c00ff24, 0x198467a6, 0x21050862,
0x3382f708, 0x59230024, 0xe45f8b9a, 0xa61c2206, 0x05586366, 0x83f80821, 0x731a8333, 0xfb24103f, 0x1514fb24, 0x35853f85, 0x4473ff20, 0x83668609,
0x63668511, 0xa82108c3, 0x221b82f6, 0x840a57e3, 0x85638632, 0x20118206, 0x0cf260b3, 0x94fbeb25, 0x8254fb15, 0x092263cc, 0x200d325f, 0x23f8822c,
0xcdcc2300, 0xcc2a8482, 0x2c00ffcc, 0x088b3333, 0x088206cb, 0x83142e21, 0xecd12452, 0x83dcffff, 0xd3ff240a, 0x1808ecd1, 0x27180ad7, 0x7b15d4f7,
0x9b072b06, 0x08213882, 0x129b5fcc, 0x7618cb20, 0x658309db, 0xfd7a0720, 0x8b342305, 0xff828b08, 0x3c1939a2, 0xf7210d36, 0x21398f33, 0xac8204d6,
0x91180720, 0x73850d02, 0x2412245f, 0x94f8af0e, 0xa0b618f8, 0xe4fb2269, 0x31e2412b, 0x8b66a622, 0x2005f441, 0x09464200, 0x1820e241, 0x4108bbc6,
0x731813e2, 0xe2410d5a, 0xcb742430, 0x1814fb15, 0x8d0cc178, 0xcc082264, 0x05e763cc, 0xff211683, 0x220e8200, 0x82f7088b, 0x85098430, 0xf8ff2119,
0x450fec60, 0x8b200f77, 0x33206493, 0x0823f782, 0x1808cdcc, 0x200958d5, 0x204f8334, 0x61649833, 0x33200ce2, 0x2108dc45, 0xdc45ffcd, 0x65649405,
0xc4850e75, 0x09024e18, 0xd573c9b0, 0x14fb3962, 0x2700ff15, 0xff8b1ec5, 0xe23a2000, 0xc2dfffff, 0xffff8b90, 0x08703dd8, 0x71200684, 0xcc211182,
0x210482cc, 0x15828fc2, 0x2205aa74, 0x82713dd8, 0x82df201b, 0x20002111, 0x00230a83, 0x828fc227, 0x2006822d, 0x21448290, 0x04823333, 0x82703d21,
0xcdcc2c54, 0xfb8b088b, 0xffff15d4, 0x82ec11cb, 0x07d02131, 0x2205b36c, 0x83ddffff, 0xc2222624, 0x00ff0890, 0x2d0a8310, 0xb35ccf29, 0xe61d00ff,
0x2f00ff66, 0x3a440080, 0x8a2f2905, 0xffb38b3e, 0xb81ee2ff, 0x28272482, 0xd6fffff6, 0x8308862b, 0x8232203a, 0xc2352704, 0xeaffff5b, 0x5a820080,
0x8b9a1924, 0xd7180e08, 0xe5200ba2, 0x13646718, 0x09592919, 0x67180020, 0xf7230e64, 0x46ff06b4, 0x1a2511f6, 0xf8089082, 0x38671834, 0xfb242218,
0x3c8d4334, 0x210cd565, 0x0269cc4c, 0x69342008, 0x70450602, 0xac9f1809, 0xbd561808, 0xff8b220a, 0x43704500, 0xd4f75b22, 0x10dfdc18, 0x0f96bb18,
0x33070031, 0x0700ff33, 0x00fff628, 0x8bcdcc08, 0x1806eb08, 0x650d2a51, 0x25820cf6, 0xccf8ff39, 0xf8ffffcd, 0xffff0ad7, 0x8b3333f7, 0xf8af0e08,
0x1534f8a4, 0x190674fc, 0x25164ad2, 0xd4f8077b, 0x68419b06, 0xa4fc2317, 0x481824fc, 0xb8410716, 0x82f8200f, 0x15b84153, 0x07c4f72d, 0xfb06d4fc,
0x04f807c4, 0x431584f7, 0xda431175, 0x11a1441e, 0x211e3c44, 0x64924b8b, 0x440e9165, 0x64910fa4, 0x881e3c44, 0x08a54664, 0x83f8ff21, 0xf7ff260a,
0x8b08fc29, 0x440683ff, 0xd62107a4, 0x06a44404, 0x42426485, 0x82082016, 0x06a14426, 0x45fc2921, 0xfb220606, 0x4948f754, 0x0a57210f, 0xdc235c82,
0x8508f6a8, 0x054f4606, 0x57e3ff23, 0x05da480a, 0x270e0d6c, 0xff8bf6a8, 0x0a572300, 0x06832d82, 0x2107d842, 0xd842f6a8, 0xfb4b2206, 0x052b4134,
0x1809684a, 0x83111267, 0x84cb82d8, 0x20bc82c6, 0x057a4808, 0x7c169746, 0x90301073, 0xfb0e088b, 0xff44f770, 0x9a197d00, 0xd200ff15, 0x2005ca4f,
0x05f44e08, 0x4e06d44b, 0xff2311f9, 0x8200c0f8, 0x40f722e2, 0x36d28200, 0x079a192d, 0x61edffff, 0xf9ffff47, 0xffff0060, 0xffb89ef2, 0x8360eeff,
0x1eeb2220, 0x20dc82b8, 0xae4b18ff, 0x727d1813, 0xee142119, 0x2207b757, 0x829a9911, 0x66662d58, 0x990600ff, 0xffeb089a, 0x66662c00, 0xa628a482,
0x8b070080, 0xde3d00ff, 0xcd2d6782, 0x00ff48e1, 0xff482132, 0x1e05c3ff, 0x838d828b, 0xffff2906, 0xff7c14cc, 0xb8decdff, 0xc222a482, 0x16824821,
0x33825920, 0xecffff23, 0x209f8240, 0x200483e7, 0x25e183f3, 0x8b0040e1, 0x23820869, 0x8280b021, 0x824020ea, 0xc0ff2104, 0x4f226d83, 0x44180080,
0x00230d57, 0x189a993f, 0x2a078544, 0xf3ffffad, 0x00ffcccc, 0x8266e61e, 0x34332450, 0x821800ff, 0x04fb2a9c, 0x8056ffff, 0xffff1500, 0x207584d3,
0x219282dc, 0x0a832300, 0x3a2b0023, 0x216382e2, 0x5e821900, 0x820c0021, 0x1700227b, 0x20b38261, 0x099d4f13, 0xce4cc022, 0x9c41cf83, 0x20258305,
0x18048315, 0x271b81b9, 0xb33fffff, 0x00ff0732, 0xff214483, 0x835383f1, 0xe8ff2158, 0xff22b782, 0xcb63e6ff, 0xccd42305, 0x9d18ffcc, 0xeb411019,
0x41a2200b, 0x5d2032eb, 0x01eb0110, 0x00002bb6, 0x7200ff0d, 0x8b0566e6, 0xdc4300ff, 0xa6f9231b, 0xdc43ff66, 0x19ff280c, 0x8dffff8d, 0x10059a19,
0xb301e103, 0x0d000027, 0xe13200ff, 0x35f54148, 0xb81ecd22, 0x01f50110, 0xffa425ab, 0x0080a900, 0x011e0710, 0xf78b233c, 0x7a4b1514, 0x086a7e16,
0xff717d27, 0x9082eaff, 0x757418ff, 0x821a2607, 0x00ff8b8f, 0x82168215, 0x82702004, 0x821a230a, 0x06850890, 0x10437418, 0xb4f70e23, 0x216082cb,
0x741854ee, 0x5b181233, 0x54210860, 0x605b187a, 0x18ab2007, 0x180e7e66, 0x820a2c5b, 0xb3112260, 0x82288234, 0x05447e04, 0xcc4cee26, 0x14f7088b,
0x60d9c184, 0xbf90cb20, 0x078e5b18, 0x7b21bf84, 0x82a383ff, 0x19ab2096, 0x1809606b, 0x82093e67, 0x837b201b, 0x85ab22b8, 0x18bf8408, 0x24111e5c,
0x14fb54fb, 0x20228415, 0x06044186, 0x7a540e24, 0xcf83ffff, 0x06850820, 0x55181685, 0x37410a49, 0x417b2009, 0x85200837, 0x0f2c5918, 0x16194c20,
0xab2107d2, 0x0f7f41eb, 0x7a20bf8c, 0x6d19bf88, 0xbf8c095f, 0x9c857a20, 0xcb24bf97, 0x00ff158b, 0xf08b308c, 0x8884ab21, 0x957c20d4, 0x848420d4,
0x827c20cd, 0xeeff225e, 0x1e40184c, 0xb3f12207, 0x25548233, 0x088b34b3, 0xbd8f2b6b, 0x30848620, 0x30847a20, 0xbdad5420, 0x29113d42, 0x4cfbffff,
0xe400ffcc, 0x6682a4b0, 0xa4b0f428, 0x4f0b00ff, 0x8266055c, 0x06002205, 0x22b3823f, 0x8234def5, 0xc0f92270, 0x20148400, 0x21058208, 0x0483765e,
0x25827820, 0x9ad9dc3b, 0x4a1a00ff, 0xd1ffff3c, 0x00ff0a57, 0xffb8de02, 0xc235daff, 0x9eebffff, 0x27298278, 0xfffc5eef, 0x1c9a1000, 0xd9202982,
0x2620d083, 0xff226a82, 0xda8273bb, 0xba9e042c, 0x54d6ffff, 0xcbffff7b, 0x2982842b, 0x820cf121, 0x0ced2c04, 0xf8ffffce, 0xffff17f9, 0x825ccfe7,
0xe6e72673, 0xfeff0866, 0x05bb58ba, 0x3433f726, 0x290700ff, 0x11351619, 0x137f8b18, 0x4c01ff2b, 0x8b079a19, 0xc71300ff, 0x208182ae, 0x209b8217,
0x20048310, 0x054f5d13, 0x21700922, 0x092a1b82, 0xffff8340, 0xff082cfc, 0xf7820600, 0x53f9ff23, 0x05bb70f8, 0xefffff24, 0xb282d663, 0x48a1eb22,
0x3d21cd82, 0x21d78272, 0xe182cdcc, 0x0022bc82, 0x09824c1a, 0x67e6dc22, 0xf927ad82, 0xffff6666, 0x82cd4cf9, 0xc0f92129, 0x04824982, 0xf522b382,
0x4f8235de, 0x827d3f21, 0x00c0211a, 0x0b284f82, 0xffff5c4f, 0x05a4b0f4, 0xff241589, 0xcb210a00, 0x080ba718, 0x25834020, 0x4b82a920, 0x04820020,
0x42212583, 0x212a8290, 0x2082703d, 0xd8230a22, 0xb3214682, 0x820f8232, 0xab0e2325, 0x608215cb, 0x14aee32c, 0x7d0c00ff, 0xe6ffff71, 0xe082cecc,
0xff908226, 0x146eeeff, 0xd7229082, 0xf2820a17, 0x5018ff20, 0xe71813cf, 0x52540dab, 0x00ff2d0a, 0x079a190f, 0xff0694f7, 0x66e6f0ff, 0xa6183e84,
0xff222bff, 0x35822800, 0x00238585, 0x73ec9111, 0x00230524, 0x82323319, 0x1c2608be, 0xff08ec51, 0x90022000, 0x0654fc07, 0x64f8076b, 0xfc1514f7,
0x00ff0624, 0x0700c0b2, 0xf8ffffff, 0x0a00ff52, 0x8282cccc, 0x82ae0721, 0x823820e2, 0x9907220e, 0x2117829a, 0x37829a59, 0xcdcc0d29, 0x38f2ffff,
0x82ff0552, 0xff3328d1, 0x5c0fe5ff, 0x830500ff, 0x19e62514, 0x0e00ff9a, 0xed270983, 0xff08cc4c, 0x82b3f9ff, 0xb3f9221e, 0x24528234, 0xffff67e6,
0x220982f5, 0x83330600, 0x82cc2013, 0x4100201e, 0x83201181, 0x210d8141, 0x6e827d3f, 0x66666924, 0x048200ff, 0x89820520, 0x837c3f21, 0x2e9b1804,
0x11204313, 0x70827e20, 0x200b2043, 0x22908282, 0x82cd4ced, 0xc2b522a0, 0x22b08271, 0x8270c4b5, 0xd62321c0, 0xf2201682, 0x00239382, 0x821ec50d,
0x82f120d1, 0x0e0023e7, 0xc05fd863, 0x08002905, 0xffff0040, 0x8b33b3eb, 0xd5282582, 0xff8b295c, 0x0a57ddff, 0x0a820484, 0xf668d522, 0x4d241682,
0x7b073433, 0x2106a65b, 0xb150f7ff, 0x0aec5508, 0xfc416b20, 0x0d254309, 0x0674f825, 0x570800ff, 0xab2013bb, 0x00203282, 0x5605fe7a, 0xbc550757,
0x2f0e2b05, 0x54f874f7, 0x84ffff15, 0x8282cd4c, 0x33b39b27, 0xb39bffff, 0x230a8234, 0x08cc4c84, 0xa3310682, 0x00ffaec7, 0xff1fc537, 0xecd1b0ff,
0xa14f00ff, 0x21ae8247, 0xa88232b3, 0x1f85fc26, 0xc01400ff, 0xfd22d082, 0x09825c4f, 0xff0ad72b, 0x082cffff, 0x8f1000ff, 0x361e825c, 0xff92adcf,
0x34731f00, 0xebdfffff, 0x3600ff85, 0xff8bce4c, 0x83cc3d00, 0x61002854, 0x00ffcc0c, 0x8333f34e, 0xff342104, 0xcd210e82, 0x8237828b, 0x21228215,
0x3282f34e, 0xcc0cb122, 0x9e227b82, 0x828334f3, 0xc235c222, 0x84284483, 0xb0c9ffff, 0xcfffffa4, 0xe0220483, 0x63820080, 0x7e2aff26, 0x80efffff,
0x4b2b8283, 0xebffff04, 0xffff4821, 0x828881fc, 0x82332009, 0x4f0028a1, 0x00ff02a0, 0x82ba5e22, 0x22f583c0, 0x8232334f, 0x335c215f, 0x00225483,
0x6682b37b, 0xff24e982, 0xcc4c6400, 0xcc26fe83, 0xfb8b088b, 0x698215cc, 0x82b81e21, 0xe1e0217b, 0xf7224b82, 0x0a820060, 0x00e0dc22, 0xde258683,
0x00ffb8de, 0x2a16830c, 0xff7cd4b8, 0x70bd0700, 0x83e3ffff, 0x05002286, 0x3136822e, 0xff32f3ec, 0xcd4c1300, 0x99fbffff, 0x1200ff9a, 0xd38366e6,
0x16820683, 0x11825920, 0x00600425, 0x820500ff, 0x130023a2, 0xee824801, 0x52b80725, 0x831c00ff, 0xe60c2904, 0x4700ff66, 0xac8b9a19, 0x00266782,
0xff323323, 0x1283e0ff, 0x48820820, 0x82dfff21, 0x8b082817, 0x00ff15ab, 0x8233f31e, 0x0c1924bf, 0x8200ffcd, 0x820a8204, 0x82308310, 0xffff2306,
0x628219e6, 0x46181682, 0xe1200870, 0x16848082, 0x6c8b722e, 0xa46c8b08, 0x088baa72, 0x15c324f7, 0x4f253782, 0xffffae87, 0x260482bf, 0x52784000,
0x74b0ffff, 0x55180536, 0xff200996, 0x0c3ca219, 0x842bd336, 0xeb1400ff, 0xd8ffff85, 0x00ff3473, 0xffb91e20, 0x7c94e5ff, 0x0434c182, 0x00ff64db,
0xff66a60c, 0xe4450900, 0x3a0d00ff, 0x1100ffe2, 0x00232882, 0x82f62809, 0x0200271e, 0x0000ff8f, 0x04825a0f, 0x82cc4c21, 0x57002076, 0xe9220534,
0x2682cc4c, 0xf120da83, 0x1b20b383, 0xdb821582, 0x8366e621, 0x053522ca, 0x31901820, 0xffe02608, 0x1f053500, 0x8248828b, 0x2d3e8215, 0xffe0fa2a,
0x2005d5ff, 0xcaffff8b, 0x2d82e0fa, 0x14e1ff2f, 0xf1ffff7b, 0xffff4821, 0xff3dcae4, 0x235883ff, 0x3473eeff, 0x00273182, 0xffff8221, 0x8280f9ff,
0x7e60217a, 0xfa210982, 0x21048202, 0x138480f7, 0x11271e82, 0xffff14ee, 0x820ad7f6, 0x904231b8, 0xc7f2ffff, 0x0400ffae, 0xffff28dc, 0x080a57f3,
0x2526e282, 0x1a00ff3a, 0xf682ea64, 0xdc82e620, 0x9a992722, 0x2c297e82, 0x0e08cccc, 0x34f854f8, 0xcabb1815, 0xa44f180d, 0xd4fb2108, 0x17567d18,
0x5c14fc21, 0x40180afd, 0xf7200c29, 0x00203383, 0x132c4018, 0x0614f825, 0x184bf4fb, 0x222e9d8e, 0x4806d4f7, 0xff21054c, 0x8e5f1800, 0xd4fb2625,
0x8b8b0e06, 0x22de8215, 0x6334b311, 0x4c2107df, 0x254482cc, 0x088b85ab, 0x4e8c54f8, 0x8518ff20, 0x551809d4, 0xfc2016b7, 0x0d846218, 0x5a858483,
0xf80e0828, 0x1514f844, 0x395d74fb, 0x849d180c, 0x077b220a, 0x05fb564b, 0x142e2c23, 0x063f5dff, 0x5decd121, 0xf720063f, 0x00233682, 0x8234332c,
0xcc23224b, 0x0b405dcc, 0x0774fb22, 0x8e188a82, 0x7b221386, 0x3e5dcb06, 0x83f72019, 0xc3011a36, 0x44fc2114, 0x2505a34a, 0xffcc4c23, 0x4f7f1c00,
0x5e342005, 0x08220550, 0x7f1894f7, 0x857c0e51, 0x94fb2108, 0x2017fa41, 0x5e3382fb, 0xfa4108f8, 0x0794250d, 0xf7154beb, 0x200d6241, 0xb7901800,
0x18444b09, 0x0ee76318, 0x8b33b327, 0x4ceeffff, 0x09564acd, 0x0d519318, 0xf82f0e23, 0x33b44214, 0x42d4fb21, 0xf73631b4, 0x85fb06d4, 0xe64fffff,
0x00ff1566, 0x5c9a192f, 0xd0ffff05, 0x5d1866e6, 0xf6200705, 0x32fe5c18, 0x00ffba26, 0x0534332e, 0x47834e82, 0x5c18d120, 0x45843dfe, 0x8841c71a,
0xeb34f735, 0x0654f715, 0xfb0754f7, 0x54fb0654, 0xf7b4f707, 0x5fbb1544, 0x8b2117f2, 0x06c047ff, 0xff88d62e, 0x34330700, 0x29f7ffff, 0x5b088b78,
0x22053643, 0x5e9a5923, 0x8f5809df, 0x067b2306, 0x358307bb, 0xff04d626, 0xccccf8ff, 0x2006544b, 0x058545f7, 0x590b5948, 0x5b22083c, 0x339c4b07,
0x0ac64218, 0xcd203398, 0x33226788, 0x4418088b, 0x338a0d4a, 0x0f627b20, 0x187b2017, 0x5e10cdad, 0x1b4c0fe4, 0x06bb220f, 0x5a33914b, 0x4f4c0cd8,
0x5a339411, 0x67910ea7, 0xaa627b20, 0x069b2217, 0x0993495b, 0x225f3320, 0x05265c06, 0x1818bc18, 0x3386cb20, 0x8312854b, 0x80ae1833, 0x2133b314,
0xbe44069b, 0x10456305, 0xbc189b20, 0x3542199b, 0x88d62108, 0x4207cd41, 0xcb20056b, 0x92623385, 0x189f4213, 0x4b07cb27, 0x8b1554fb, 0x06975bff,
0xd55a5282, 0x83f72005, 0x0e114652, 0x450ab04c, 0xcc2006a3, 0x11a26e18, 0x4374f721, 0x194b0c23, 0x74fb380a, 0x01ff0e07, 0xff9a99db, 0x66e63f00,
0xfaffff15, 0xffff9a19, 0x82ceccf5, 0x32332104, 0x4c240e82, 0x088b80cc, 0x83210782, 0x278f8212, 0xffb072fa, 0xf0670100, 0xe8260f82, 0x0200fff6,
0x1a8210f8, 0x0a83e620, 0xd8a30e2d, 0x0500ff05, 0xffff0661, 0x82c2b5eb, 0x6403310a, 0xf3ffff9c, 0xffffa430, 0xffda59f8, 0x0ad7f2ff, 0x2d240e82,
0xfcffff10, 0x2b05227f, 0xffff9eef, 0xff0070ff, 0x5ceffdff, 0xc0200982, 0xf7210983, 0x226a830a, 0x82b85ef5, 0x45f6266a, 0x0700ff20, 0x3d308218,
0xff6626fd, 0xfabe0a00, 0xeeffff08, 0x00ff9042, 0x0586eb42, 0x22c4ffff, 0x2200ff8e, 0x6a82acf7, 0x0e000027, 0x80b9ffff, 0x270a8200, 0xff486130,
0xb81ecfff, 0x09270a82, 0xffff8856, 0x82e08ff6, 0xeee7265c, 0xd1f0ffff, 0x210e8268, 0x04828a91, 0x8214ae21, 0x4efb2c4a, 0xfbffffaa, 0xffffec51,
0x8266e6f9, 0x34b32185, 0x80830984, 0x98cef922, 0xf9218082, 0x216b82cd, 0x97826002, 0x5e4ffb27, 0xc00400ff, 0x28358200, 0xffaec7f1, 0xb85e0e00,
0x22208205, 0x834881e2, 0x4fee2106, 0xf126bf82, 0xfffff6a8, 0xed82b0f1, 0x0d0d6f18, 0x00211682, 0x9a6a180e, 0x248a8208, 0x00fff3ff, 0x20aa831d,
0x234a83ff, 0x48a1f1ff, 0xf622cb82, 0xaa8691ad, 0xc1caf022, 0xf0212482, 0x240e8320, 0x0900ff5c, 0x22748350, 0x826891f6, 0x834f200a, 0x32e826c9,
0x300f00ff, 0x210e8220, 0x04826656, 0x08a47024, 0xf38300ff, 0xe1300022, 0xff274883, 0x00ff5f28, 0x82988946, 0x21c42753, 0xddffff48, 0x0a82ec11,
0x8f42ee27, 0x14bdffff, 0x260a827c, 0xffe926fd, 0x8240f5ff, 0x44f626d4, 0xf8ffff9c, 0x22b682e8, 0x83b85ef5, 0xf7fd22f5, 0x21d4820a, 0x7682effd,
0x20830020, 0x9deffd26, 0x900000ff, 0xf3268083, 0x00ff142e, 0x35826003, 0x9959f827, 0x270d00ff, 0x260e82ae, 0x00ffd763, 0x825ccf0c, 0x61052780,
0x1400ff06, 0x5f823e4a, 0xf5e8e627, 0x5cf1ffff, 0x210a8228, 0x5b82c8fb, 0xccfcfc2c, 0x73faffff, 0xfeffff33, 0x09829a99, 0x838f8221, 0xfdf4226a,
0x266a8270, 0xff1f45f5, 0x82b00500, 0x0cfa2ceb, 0x0a00ffcc, 0xff082831, 0x8211f7ff, 0x820f20eb, 0x0500287f, 0x00ffa225, 0x820a9713, 0xf6482cf0,
0xe80800ff, 0x00ff08f6, 0x82c3f519, 0x6626210f, 0xeb225f82, 0x3e8285ab, 0x820c8221, 0x30f3220a, 0x219082a4, 0xd0827a69, 0x00236a82, 0x8232330d,
0x5278210e, 0xcc219f82, 0x203482ce, 0x820a8603, 0x822320b9, 0x7f0722b4, 0x261982fe, 0xffff29dc, 0x829a99fc, 0xe841211e, 0xee2da882, 0xff059a19,
0x00803c00, 0x4c2300ff, 0x205382cc, 0x200a85c3, 0x270a82cd, 0xff0a17be, 0x9919eeff, 0xfd220a82, 0xb64295e3, 0xd1e22107, 0xb7260982, 0xfdfffffd,
0xd48385eb, 0x146ef522, 0xf627d482, 0x00ffcd4c, 0x82f00707, 0x291c2116, 0xb021d482, 0x22d48262, 0x826786fc, 0xe5d22171, 0x8c201982, 0x0d221e82,
0x0e829919, 0x825ccf21, 0x008021a4, 0x14228082, 0xc9837b54, 0x5f820d20, 0x3e0ae622, 0x3121df82, 0x210a8226, 0xc082b8f0, 0x82e70821, 0xd9fa2149,
0x13272f82, 0x00ff1098, 0x8215ee08, 0x8340201e, 0xe2082234, 0x260a828f, 0x00ffae47, 0x82719d13, 0xf628213e, 0x4f260e82, 0xf7ffff5c, 0x53825c0f,
0xb3831920, 0x2a5cf122, 0xfa274882, 0x00ffb89e, 0x823c4a14, 0x9cfc210a, 0x0c219382, 0x256382ca, 0xffa4b007, 0x34830d00, 0x82e60b21, 0x5e03229c,
0x065750b8, 0x2d410020, 0x34332405, 0x83f8ffff, 0x4c04275d, 0xf3ffffcc, 0x1e825238, 0x71bd1132, 0x14bdffff, 0x00ff057a, 0xffc3f53a, 0xaf07ddff,
0x1d825382, 0x4600ff24, 0x0a820180, 0x0d80d027, 0xeb3000ff, 0x280a8284, 0xff33b3f6, 0xa4700900, 0x2095828b, 0x226a8230, 0x82008009, 0x834f200f,
0x6609229a, 0x210a8266, 0x19829a59, 0xff333325, 0x82deffff, 0x6609279e, 0xf6ffff67, 0x65820a97, 0x52380e23, 0x061743ff, 0x7b14ff22, 0x82052d43,
0x83112045, 0x570e25b0, 0x0e00ff0a, 0x0020e582, 0x8b220e82, 0x0684ff08, 0x18056978, 0x290abe6d, 0x000000ff, 0xe2ffff0e, 0xa9820080, 0x00234e83,
0x82b85e0e, 0x4e09220a, 0x21788298, 0x7883f067, 0x2482f820, 0x92832020, 0x82c27521, 0x10a82178, 0x09224b82, 0x0a82986e, 0x8220b021, 0xce172619,
0xcff0ffff, 0x210e82e0, 0x04829aa9, 0x21059d4f, 0x5a44b89e, 0xd7002707, 0xb9ffffa0, 0x53826776, 0xbd833b20, 0x15ee2222, 0x11250a82, 0x00ff70bd,
0x32fd8342, 0x1e650300, 0xc70c00ff, 0x0d00ffb0, 0x00ff3e2a, 0x8250b807, 0xecd1260e, 0x87fcffff, 0x206982b0, 0x200a840c, 0x277e82a0, 0xff66a607,
0x50d8f2ff, 0x9c311982, 0xf3ffff28, 0xff08a430, 0xfa9efaff, 0xb5ebffff, 0x225382c4, 0x820a1719, 0xd8a321de, 0x0f2c0a82, 0x00ffae47, 0xffeee708,
0x48a11300, 0xd8212482, 0x200e8212, 0x223e82e6, 0x8200c0f0, 0xee0821bd, 0x0a82bd82, 0xda261982, 0xecffff5e, 0xc282f468, 0xff0ab726, 0x0c17f7ff,
0xe6225382, 0x0f823e0a, 0x8298d921, 0x54142248, 0x2124827a, 0x0a82f57d, 0x5ccf0c22, 0x87217982, 0x20a282f0, 0x2209828f, 0x821acff2, 0x1e85210e,
0x2706f041, 0xe21afdff, 0x4ff5ffff, 0xf6271982, 0xffff144e, 0x8252f8f8, 0x146e220e, 0x274f828b, 0x8b86ebfd, 0xe3fdffff, 0x00228482, 0x09830348,
0x2d445420, 0x36bd2c07, 0x1100ffcc, 0xff0527ef, 0x8266c4ff, 0xb3dc229f, 0x276a8233, 0xffc2753c, 0x52b8dcff, 0x41220a82, 0x208232f3, 0x82b8de21,
0xe30c2c0a, 0x0300ffd8, 0x00fff668, 0x829a190d, 0x00802161, 0x04820e82, 0x33f3ff23, 0x22d48234, 0x84167903, 0x2419828b, 0xffffec71, 0x22ae83f2,
0x822831f3, 0xae8721a4, 0xeb228482, 0xc98386ab, 0x4882f420, 0x82f51921, 0xd9f0225e, 0x220a829a, 0x828e420f, 0x161924f5, 0x830500ff, 0x83ec2053,
0x83f72083, 0x7af02009, 0xc120056b, 0x00245f82, 0x15cdcccd, 0xe6205082, 0xf0259f82, 0xffff6766, 0x272583ef, 0xffccccf3, 0xce4cecff, 0x7e836e82,
0x84eeff21, 0x32332493, 0x82ebffff, 0xfcff2233, 0x211982cc, 0xbc82b3eb, 0x49820120, 0xf0ffff22, 0x00210f82, 0x25198302, 0xff9899f1, 0x2d830600,
0x34b3f327, 0x4c0900ff, 0x289d82cc, 0xff3eca18, 0xcecc18ff, 0x21d78505, 0x2983f8ff, 0xebd1f525, 0x83fbffff, 0x63f52367, 0x25828bd7, 0xff290683,
0x7bd4f5ff, 0x330400ff, 0x262a8234, 0x00ff717d, 0x82008007, 0x80f8221a, 0x820a8442, 0xfcc82630, 0x330a00ff, 0x05f37432, 0x2307fa74, 0x04370400,
0x25821684, 0x84be7f21, 0xff08252a, 0x3d4ae700, 0x33340482, 0xffff0534, 0xff33b3f6, 0xcd4c0c00, 0xe6f9ffff, 0x0e00ff67, 0xfd20e883, 0x00238582,
0x8232330f, 0x33fe215f, 0x14201e82, 0x0021ee82, 0x21098403, 0x43826666, 0xffcdcc26, 0x66e61200, 0x07204882, 0xc7210a84, 0x834282ae, 0xa8102c1e,
0x0f00fff6, 0x00ff9999, 0x820a170d, 0xe643211e, 0x43252e82, 0x00ff32e8, 0x2c42835f, 0xffced70e, 0x9a993100, 0x5eceffff, 0x221e82b8, 0x82989931,
0x2c52820a, 0x9c19f1ff, 0xc0a0ffff, 0xbcffff00, 0x28138219, 0x080100bc, 0x00ff2f0e, 0x3b2b82dd, 0xcc4c2b01, 0x0300ff15, 0xffff9919, 0xff6866f3,
0x9a190000, 0xccf2ffff, 0xfdffffcc, 0xf322b683, 0xa782cc4c, 0x7e82fd20, 0x83f4ff21, 0x84fa2019, 0x34332614, 0xf5ffff83, 0x201a83cc, 0x52cd82f1,
0xed2005ce, 0xff218e82, 0x230e83f5, 0x869a19ea, 0x26243582, 0x8b079a19, 0x82832782, 0x33b3fc22, 0xcc210982, 0x098941ce, 0xf8202082, 0x04842c83,
0xff204b82, 0x23059441, 0x8b0080f4, 0xf6221a82, 0x3a83cd4c, 0x41ebd121, 0x70200894, 0x20099441, 0x240a8400, 0xe3faffff, 0x0b9441d7, 0xd900ff3b,
0xff0766e6, 0x29dcebff, 0x00ff788f, 0xff34330b, 0x0a57f2ff, 0x801000ff, 0x20528200, 0x822d85f7, 0x56fa2287, 0x831e82c9, 0x39fd27ae, 0x0c00ffdb,
0x1e82cdcc, 0xcc240a86, 0x300000ff, 0x0d206082, 0x00233d82, 0x826f2203, 0x34b32d1e, 0x1e00ff08, 0x00fffe34, 0x05985988, 0xd92a1f82, 0x0300ff9a,
0x00ff1eda, 0x29824002, 0xa8660322, 0x35210e82, 0x210e82c3, 0x2982084c, 0x33330322, 0x4a200a83, 0xf3201482, 0x01220982, 0x09821c08, 0xff85eb26,
0x5691ffff, 0xee211e83, 0x210a8215, 0x14828892, 0xffd7a326, 0x9020feff, 0x09832d82, 0x440bfd22, 0x02201e82, 0x862a0a85, 0x700100ff, 0xfcffffa4,
0x2d828a2c, 0x82e1fa21, 0x3e0a2b09, 0x0724fb08, 0x5e1100ff, 0x058206b8, 0xff0b1726, 0x0a179400, 0x66218f83, 0x204c8266, 0x22048246, 0x827b9401,
0x96032109, 0x80205182, 0x02229982, 0x5183e02f, 0x82676621, 0x9e2f210f, 0x99831982, 0x38350122, 0x66220e82, 0x1a828b67, 0x34330423, 0x2316858b,
0xc8cafeff, 0xff241684, 0x62d0fdff, 0x02201a82, 0x0a824082, 0xee822020, 0x8233b321, 0x6afc217d, 0x4c219182, 0x210982cd, 0x1e829ab9, 0x9a191127,
0xe86bffff, 0x267e82f6, 0x069a9910, 0x830724f7, 0x14ee2148, 0x4c214382, 0x215282cc, 0x2e8250cd, 0x8234b321, 0x76f3210e, 0x03202e82, 0xf3218e84,
0x21198274, 0x19829999, 0x7e5ae421, 0x00230556, 0x83ae7800, 0x82e6201e, 0x6d0022bc, 0x831482c6, 0xf4fe2757, 0x0400ff6e, 0x8b829919, 0x41d8ae21,
0xff230651, 0x82daaefd, 0x3433214d, 0x93208182, 0x00204782, 0xff233282, 0x828420fc, 0x191e211e, 0x77228b82, 0x8b8298d9, 0x6666e228, 0xb3bcfeff,
0x77421534, 0x05e84307, 0x201a7742, 0x067742ce, 0x6666f526, 0xffff088b, 0x05820683, 0x0c443082, 0x44b88306, 0x7742070c, 0x44548307, 0xf72d0a0c,
0xffff070c, 0x063433ef, 0x99f7ffff, 0x22798298, 0x829a99f7, 0x21fd82e3, 0xaf82f8ff, 0x33030029, 0xffff0832, 0x82cc4cf8, 0x824c20de, 0x82f8206f,
0x040025ba, 0x918532b3, 0xfa231682, 0x82919a19, 0x21178282, 0xc7830700, 0x1c83fb20, 0xcccc0722, 0xfd251a82, 0x00ff32b3, 0x268a8207, 0x6866feff,
0x820800ff, 0x820584a1, 0x83ff201a, 0xcc712225, 0x20f282ce, 0x200a8300, 0x20048324, 0x213f820b, 0x04832400, 0x39831420, 0x1e851e26, 0x1400ff08,
0x00268682, 0xffec911e, 0x80831d00, 0xf6a81725, 0x832200ff, 0xb60d246d, 0x828f0804, 0x20f021a6, 0x2d053845, 0xa0b80000, 0x330500ff, 0xffffff32,
0x3982d270, 0xbb820520, 0xe0290a82, 0xfeffff90, 0x00ff9e2d, 0x233f8204, 0xf212fdff, 0x04201a82, 0x0a834082, 0x9929d082, 0xfcffff98, 0x00ffde0f,
0x23a38202, 0x4861fbff, 0x02221e82, 0xd2820080, 0xffd6632b, 0x66660000, 0xdcfaffff, 0x8209822a, 0xfaff36a1, 0xfc08aec7, 0xf80e074c, 0x1554f774,
0x84ffff8b, 0xffff9a99, 0x842d839b, 0x200e8204, 0x22dc828b, 0x82f628cf, 0xabd12c1b, 0x0f00ff85, 0xffff7a94, 0x8252f8d8, 0xb04721bd, 0xf12c1a82,
0x00ff47e1, 0xff0a970a, 0x6626fdff, 0x1120dc82, 0x0a21d782, 0x221e8298, 0x8266260e, 0x23198378, 0xb81e0e00, 0x07211982, 0x209282ae, 0x271e82d1,
0xffa4300e, 0x5c6ff5ff, 0x1b211e82, 0x2a3882d7, 0xff0a17eb, 0xf6282100, 0x83f4ffff, 0xe1222257, 0x23738247, 0xc2155800, 0xfe20f782, 0x472e3982,
0x00ff34b3, 0x8b32b347, 0x195800ff, 0x0685089a, 0xb8ffff24, 0x16845c4f, 0xa7ffff24, 0x3182d8e3, 0x8adaff23, 0x35a5823e, 0xffb85edc, 0x9082f2ff,
0xcae3ffff, 0xe8ffff3d, 0xff089ad9, 0x81822d00, 0xdcd2ff3d, 0x00ff052a, 0xff8f0211, 0xe0faeeff, 0xf1f3ffff, 0xe2ffffec, 0xffff86eb, 0x83ebf1e7,
0x406e2340, 0x99820600, 0x89826820, 0x2083ff20, 0x826bf721, 0x990822f0, 0x0662469a, 0x9100ff25, 0x820728dc, 0x0a18220c, 0x83fe823e, 0x0a0c23e9,
0x4d829c3e, 0x8270fd21, 0x992f2763, 0xd0ffff9a, 0x6382b85e, 0xe13a282a, 0xe32200ff, 0x3300ffd8, 0x2305a979, 0x3600ff9a, 0x25824782, 0x66667b22,
0x64214182, 0xb2321a80, 0xff2f210d, 0xbfaefe18, 0xe697ff2f, 0x91ffff66, 0xff15a4b0, 0x66e68001, 0x19c75606, 0xfffeff31, 0xff069a19, 0xcd8cddff,
0xe2ffff8b, 0x18ff3373, 0x270a9553, 0xdb07d4f7, 0x74fb153b, 0x28080851, 0xff9a1908, 0xccccf8ff, 0x5a6418ff, 0x8b342609, 0x4c0600ff, 0x696d18cd,
0x07e64f0b, 0xffffcd24, 0x5082b3f9, 0x33330729, 0x4cf6ffff, 0x82088bcc, 0x05157e3c, 0xf8219e83, 0x07d151cc, 0x6000ff25, 0x8d8b0100, 0x8f992068,
0x82332068, 0x05af6d68, 0x73833320, 0xcccc0823, 0x82688a08, 0x8482834c, 0x8bcd2068, 0x18672068, 0x820bd152, 0x66e62168, 0x0720688c, 0x0de35519,
0x164a5218, 0xbd50688c, 0x3a531806, 0xff0e231c, 0xe382c101, 0x0a980129, 0xffff153e, 0x820080cf, 0x52782f04, 0xd9ffff05, 0x00ff9a19, 0xffcc4c23,
0x1f82ccff, 0x30150028, 0xc8ffffa4, 0xb1839a99, 0x80a13108, 0xffff8b00, 0xff0a17ad, 0xf6a8c3ff, 0xfde2ffff, 0xa6ffff71, 0xff08d623, 0xdf8ffaff,
0x30efffff, 0x0900ffa5, 0xffff293c, 0xff14eeed, 0x21d01000, 0x99221882, 0x0a82089a, 0x8252f821, 0x2364820a, 0xd7e31100, 0x4f262382, 0x0500ffdf,
0x1882a470, 0x822bc721, 0x6814261e, 0x3f00fff5, 0x20198263, 0x2023833a, 0x2004832a, 0x24738442, 0xc2f52500, 0x308f828b, 0xffff3e0a, 0xffecd1f1,
0x34331b00, 0x61e8ffff, 0x20738248, 0x259f82d2, 0xccccd3ff, 0x7a827b05, 0xff333335, 0x32b30b00, 0x66e3ffff, 0x1700ff67, 0xffff9a99, 0x826666ff,
0xe692305b, 0x00ff0666, 0xff68660a, 0xcd4c0000, 0x820800ff, 0x068a45da, 0x67660a22, 0xa5432082, 0xce0c2107, 0x5282d182, 0x0a0c0029, 0xffff7a3c,
0x1872fdee, 0x23074c7c, 0x15285c06, 0x0f216282, 0x20b4835c, 0x821a8220, 0xf6ff2309, 0xd28200c0, 0x827c9421, 0xd6382118, 0xeb202982, 0xc0257283,
0xffffa4b0, 0x21be82c5, 0x0483d5ff, 0x9346bd20, 0x0ada3105, 0xffff8b3e, 0xffc2f5dc, 0x142e0e00, 0xcce4ffff, 0x17228782, 0x7c82b89e, 0xb7832c20,
0x34332c26, 0x1000ff05, 0x10257b83, 0xffffcccc, 0x20a783f4, 0x204f831c, 0x22cc83e8, 0x829a9900, 0x0f6d285f, 0xffff065c, 0x82f6a8f5, 0x34b325d8,
0xaef7ffff, 0xae464982, 0x84f52005, 0x496e2020, 0xe72005ad, 0x1d2d6683, 0xffffec11, 0x9cc2f5f3, 0x021100ff, 0x20678290, 0x238e8230, 0xae873000,
0x26216782, 0x2acc82ee, 0xff72bddc, 0x9a193300, 0x82eaffff, 0x36002471, 0x828b0080, 0x735e3325, 0x00ff8b32, 0xff34f352, 0x0a573c00, 0x5900ffa8,
0x16822adc, 0x66660622, 0x27829e82, 0x82f6ff21, 0x12002179, 0xff30a882, 0xff3233ef, 0x00800400, 0xf72f0e08, 0x1554f8a4, 0x630b025a, 0x7c230f4b,
0x19f1ffff, 0x200dd725, 0x26ca827b, 0x07cc8cdd, 0x822500ff, 0xfaff2798, 0x00ff0040, 0xd5823322, 0x3433f024, 0x728274a7, 0x82b31521, 0x9915225e,
0x20af829a, 0x2021820c, 0x22048400, 0x82343314, 0x210a839e, 0x7982f3ff, 0x1584ff20, 0x8b230a83, 0x83ebffff, 0x8215829e, 0x211a83f6, 0xa483e7ff,
0xcecce722, 0x15204082, 0xdf225883, 0x2f82ff7f, 0xffcc4c26, 0x9919d9ff, 0xd6232f82, 0x82083433, 0x531b1906, 0x20228416, 0x234282a2, 0x9a195d00,
0x722d7382, 0x8b0866e6, 0x4c00fff3, 0x00ffec51, 0x224f8256, 0x82ae6300, 0x590f22f2, 0x23ab8298, 0x07347322, 0x9618d083, 0x002309c5, 0x827c540e,
0xab112235, 0x28638284, 0x86ab1100, 0x4c0e00ff, 0x050964cd, 0xb311002c, 0xeb088b33, 0xfb73058b, 0x24821554, 0x93830d20, 0x1d83f520, 0x18b30a21,
0x211e9978, 0x791814fb, 0xf7262e2e, 0xeb0e0714, 0xb81a156b, 0x205b0d0e, 0x207e820a, 0x22748311, 0x1833b3f1, 0x200b397d, 0x0ced594b, 0x210a2366,
0x808294f7, 0x8420cf82, 0x1004fa18, 0xff8d628f, 0xffff8422, 0x54286285, 0xeeffff7c, 0x088bcd4c, 0xca286283, 0xff8be1fa, 0x1f05d5ff, 0x0b327318,
0x6282fb20, 0x00ff5626, 0x60e1fa2a, 0x3f078a5d, 0xcccc9801, 0x80f100ff, 0xffff1500, 0xf766e66f, 0xffff051c, 0xff6606f9, 0xf8930600, 0xc6f5ffff,
0x012c0982, 0xffff08cc, 0xff3433f7, 0x1038fcff, 0x32210a83, 0x200a826e, 0x221e8233, 0x82024bfa, 0xb6532119, 0xf6226982, 0x1a82866b, 0x80e8ff2b,
0x14fb0543, 0x000000ff, 0x22488242, 0x825c4fee, 0xabf1221a, 0x20a28285, 0x9c8218ab, 0x0a572112, 0x27066165, 0x8b15ae11, 0xff14f708, 0xbe210082,
0x273d8205, 0xffff8017, 0x0566e6b8, 0xf6273d82, 0x00ff086c, 0x83feb405, 0xfff82568, 0x92cd0800, 0x34207c83, 0x0a851482, 0xff103828, 0x1c3a0a00,
0xa68300ff, 0xf8060023, 0x82ba8452, 0x1990221e, 0x23cd839a, 0x9c990900, 0x1c223682, 0x66438bac, 0x64663007, 0x190900ff, 0xff0e089a, 0x34b35801,
0x8dd100ff, 0x991921fc, 0x87214182, 0x21fc82ae, 0x558333b3, 0xfc88ce20, 0xe1825020, 0x3333f722, 0x26267f82, 0xfaffff68, 0x1982cd4c, 0x83666621,
0x66662ba3, 0xff074308, 0x85eb7fff, 0x8318ff06, 0xf5840792, 0x2108cb5b, 0x2782074b, 0xec51ee22, 0x2305dc41, 0x14aef1ff, 0x08928318, 0x9a198024,
0x1e834306, 0x9120ea90, 0x0a83ea89, 0x1d20ea85, 0x9121ea9a, 0x21da82ea, 0xea89560e, 0xea856820, 0x4700ff27, 0x00ffcc4c, 0x42e982ce, 0xd168057f,
0x0bc4660a, 0x677c5421, 0x84200851, 0xab219f82, 0x05af7686, 0x21092267, 0x9018f1ff, 0x225d082a, 0x68ee2005, 0x198207ff, 0x25678620, 0x66629006,
0xcb261ef6, 0x3500ff06, 0xb5821e05, 0xe2fa2a24, 0x048200ff, 0x10820a82, 0x12430820, 0x20098205, 0x33158460, 0x0e088b56, 0xe6d401ff, 0x9f01ff66,
0xff15d8e3, 0xb8de0d00, 0x0d302982, 0xffff5c4f, 0x8be03af5, 0xbaefffff, 0xffff08e2, 0x2706ac45, 0xfff668f5, 0x7e6af7ff, 0x6b210482, 0x22218285,
0x838bfc69, 0xcc4c221c, 0x21288206, 0x2e8252b8, 0x5238f522, 0x51214482, 0x224483eb, 0x820848e1, 0xa2063106, 0x0200ff4e, 0x00ff0476, 0xff18c406,
0xbe7f0500, 0x80210482, 0x06b64a00, 0x232d0033, 0xffff05d8, 0xffaec7e3, 0xd6231700, 0x5edcffff, 0x264082b8, 0xffff0080, 0x83cd8cda, 0xe8a7285d,
0xffff8bf6, 0x823d4ab8, 0x5c4f2104, 0xa7220a82, 0x5782d6e3, 0x0682ff20, 0x4700ff24, 0x168289ab, 0xff9c5926, 0x99195800, 0x00232d82, 0x82d62349,
0x4c102573, 0x2600ffce, 0x0023c482, 0x83f6a819, 0x7a122216, 0x271682e2, 0xff707d0d, 0xc2f5f0ff, 0xef224482, 0x44837c14, 0xc2f5dc25, 0x83aeffff,
0xa1dc27d5, 0xbeffff48, 0x2d820a97, 0x9984ff23, 0x2022829a, 0x2384829b, 0x00806400, 0x7b223882, 0x2d826666, 0x06820020, 0x6400ff23, 0x20aa8287,
0x82e68364, 0x212d820e, 0x2d833600, 0x99330032, 0xebffff9a, 0x00ff2a9c, 0xff323328, 0x4621ddff, 0x2406344b, 0x48a12f00, 0x86f28405, 0xcc062a04,
0x0200ffcc, 0x00ffc475, 0x2f398206, 0x01ff0e08, 0xff6666c3, 0x66e64e00, 0x1100ff15, 0x0d220a83, 0x4e509a19, 0x14002105, 0x17205b84, 0x27257e85,
0xffff00c0, 0x220482df, 0x82402000, 0x40d82209, 0x297e8200, 0x48e1f1ff, 0x0d00ff06, 0x3282846b, 0xffcdcc27, 0x34b30800, 0x22b2829c, 0x83991914,
0x832320b2, 0x82e32029, 0x1b002204, 0x21a082d9, 0x3384c0dc, 0x0020fa22, 0x03213382, 0x208882ac, 0x276b830a, 0xff343302, 0x32b30a00, 0x0c283782,
0x8b089a19, 0x56b660c0, 0xfa205b83, 0x86232e82, 0x82ffffff, 0xfbff233f, 0x09844821, 0x0927d682, 0xffff856b, 0x82e2faf1, 0x33b328d0, 0xffff8b7b,
0x821e85ef, 0xd3ff216c, 0xff219b82, 0x842c83dc, 0x220e8204, 0x187b088b, 0x200cab74, 0x747418ff, 0x22368209, 0x8201c0ec, 0x00c022af, 0x27bf827a,
0xffffb95e, 0x080040f4, 0xe1245882, 0xffff0647, 0x6e82dd82, 0x85991921, 0xdeff23f1, 0x3082cecc, 0xcc4cd822, 0xe8226783, 0xec82b89e, 0xeb256783,
0x00ff4861, 0x303b8311, 0x08b8def2, 0xa1ddffff, 0xfaffff47, 0xffffae87, 0x228b83e5, 0x820080e2, 0x83dc2035, 0x835182d2, 0x832020e4, 0xccdf2135,
0x2720f882, 0x0825db82, 0xff0604f8, 0x21098300, 0x198300ff, 0x60190483, 0x2322094a, 0x478266e6, 0x1d222b83, 0x5b820080, 0x829a9921, 0x828020f0,
0xfcfe21a2, 0x71230a83, 0x18159a19, 0x210b6745, 0x5182f1ff, 0xeeffff22, 0x7482c482, 0xca820682, 0x16828483, 0x8b201584, 0x15829f82, 0x11831b82,
0x330e0023, 0x206a8234, 0x05ec6511, 0xff210682, 0x05734700, 0x1122a583, 0x2d8233b3, 0x809f0029, 0x151ffb00, 0x82f4ffff, 0xe4ff276e, 0xff5b9a19,
0x9383e6ff, 0x66e6db22, 0xff231e82, 0x828f02db, 0x02d02a4c, 0x1900ff8f, 0xffffb81e, 0x23a582f5, 0x48e11b00, 0xfd226782, 0xab82e2fa, 0x82343321,
0x8305201a, 0xcc0522c0, 0x233182cd, 0xff7faf00, 0x052aef82, 0x8f8b34b3, 0x33faffff, 0x05828934, 0xff258082, 0x0080e0ff, 0x8b6882d6, 0x0040219e,
0xc0229e83, 0x06850800, 0x40219e82, 0x20048600, 0x20e88211, 0x82fa9f08, 0x85ff2076, 0x79e882fa, 0x142608d9, 0xe5ffff06, 0xa218707d, 0x942112d7,
0x13616e07, 0x088b9023, 0x793382f8, 0x338316b9, 0x676e1a83, 0xfeff2610, 0x4b9a19cf, 0x21a38215, 0xbf8214ae, 0xec510e23, 0x0a6745ff, 0xee276882,
0xffff7c54, 0x849999f2, 0xffff2516, 0x8b6766ed, 0x0e24ab18, 0x230f1248, 0x33330f00, 0x3782ff82, 0xcc100037, 0xf7088bcd, 0x28ffffa3, 0xff156666,
0x3233fdff, 0xccfaffff, 0x240482ce, 0xffff9a99, 0x014419fc, 0x06b42609, 0xfaf9ffff, 0x266f821d, 0xff357efa, 0x82610300, 0x45fd280f, 0x0500ff1f,
0x8208fa5e, 0x2b0a8438, 0x00fff45d, 0xffd78300, 0x68710600, 0x8c2a2382, 0x0400ff08, 0xd108b8de, 0x0d8205eb, 0x822b0721, 0x862b210d, 0x55820482,
0x66020023, 0x213b8266, 0xab829a19, 0x1c050023, 0x22d9826a, 0x8216ce04, 0x1b8f2147, 0x03262a82, 0xfbffff94, 0x3e82f3dd, 0x82591621, 0x57e12286,
0x2740820a, 0xff70bd3e, 0x281c5e00, 0x02220a82, 0x46827c14, 0x908c6c25, 0x6a0200ff, 0x32200515, 0x59214784, 0x21478316, 0x4782f4fd, 0x82f85321,
0x52f8211b, 0x8c214782, 0x24478208, 0xfb34b36a, 0x22398234, 0x823e4a03, 0x00202112, 0x4c21a782, 0x82d182cc, 0x20f4823d, 0x21ef8234, 0xc68232b3,
0x66e6d930, 0x9987ffff, 0xe4fb159a, 0xd8ffff06, 0xef82cd4c, 0x33b3df27, 0x4c2000ff, 0x265a82cc, 0x0834b327, 0x820784f7, 0x330d2109, 0xf5213382,
0x20478240, 0x20cd820a, 0x0e8618ff, 0xf5ff2310, 0x3b823433, 0xccccf224, 0x3083fb08, 0x82bdff21, 0x35002626, 0xffff7bd4, 0x263a82ca, 0x852b4200,
0x82f7088b, 0xec5b1864, 0x820d2018, 0xf5ff215c, 0x002ea482, 0xff00c00a, 0x34b3f2ff, 0xff0e088b, 0xb182a501, 0xb3e30027, 0xffff1533, 0x2e528216,
0x67e616ff, 0xdeffff05, 0x00ff9a19, 0x8366e621, 0x828020e1, 0x80032294, 0x22158200, 0x6566e6d1, 0x1f6c0c80, 0x192e280c, 0xffff079a, 0x828f82fc,
0x272d8404, 0xff1e45fb, 0x3233fbff, 0x87240f82, 0xfaffffae, 0xff33a682, 0xff291cfe, 0x9a99f9ff, 0xe9ffff08, 0xffff1f05, 0x82ccccb1, 0x284e2362,
0x0746a2f6, 0xe6012907, 0x0600ff66, 0x00ff33b3, 0xff247382, 0xcdcc0400, 0xb3220482, 0x8e840834, 0x88829884, 0x9a99f524, 0x0484ffff, 0x9919f325,
0x82f8ffff, 0xf1ff23d5, 0x6e8267e6, 0x8266e621, 0xab87275a, 0xdcffff85, 0x29829a99, 0x7b94f725, 0x82fdffff, 0xf6ff26c2, 0x00ffd7e3, 0x26298302,
0xff3dcaf9, 0x83190700, 0xcaf92784, 0x0500ff30, 0x2382ce4c, 0xff9fad26, 0x98190900, 0x7a262382, 0x0800ff5e, 0x72820080, 0xdd642327, 0x4c7800ff,
0x279c82ce, 0xfff62804, 0x9a190e00, 0xa1243982, 0x0c00ff48, 0x0a21a683, 0x21138268, 0x7282660a, 0x21e90022, 0x20081482, 0x05f628e9, 0xffff16f7,
0x053d0a7e, 0xa100ffd2, 0xa415cd8c, 0x02e7ffff, 0xffff8b90, 0x72a470d7, 0x2f9b8272, 0xff9899cf, 0x9999cfff, 0xff16fb05, 0xe1fa8100, 0x30345a82,
0x00ff6866, 0x05666630, 0x1800ffa4, 0x00ff7eff, 0x8b989928, 0x00213883, 0x20838282, 0x2f1d8227, 0xec91d8ff, 0x01ff0e05, 0xff34b36a, 0x14aeac01,
0x299b5682, 0xc62574ac, 0x0537ffff, 0x0dfe411f, 0x2aa25f41, 0xec01ff0e, 0x01ff34b3, 0x41004085, 0xcb241164, 0xffff66e6, 0x64410482, 0x52f82705,
0x3400ff05, 0x04829a19, 0x41281c21, 0xff231e64, 0x826603ff, 0xd9c72b3b, 0xffff159a, 0xff0080f7, 0x0f830900, 0x0bb78318, 0x089a992d, 0x1999ffff,
0x9affff99, 0x8505cccc, 0xf5ff3325, 0xffffcdcc, 0x8bcdccf0, 0xa1f6ffff, 0x0a00ff47, 0x25823333, 0x48a1f622, 0x0bc9f318, 0x5e090023, 0x255084b8,
0x6600ff08, 0x0482ec11, 0x82ae0721, 0x821c209a, 0x1c00224b, 0x251a821e, 0x8b9a992d, 0x0f8300ff, 0xe1e3ff29, 0x23f70848, 0x8370ffff, 0x43ff2ebd,
0xffff9a99, 0x05008043, 0xffff5b5b, 0x256b83c2, 0xffcc4cdf, 0x9b83bdff, 0x34b3f222, 0xe7236a82, 0x82868f02, 0x21f8278c, 0xfeffff48, 0x96826866,
0xff29dc30, 0xfe7f0200, 0x54faffff, 0x0600ff7b, 0x25820080, 0x7553fa2c, 0xcc0400ff, 0xfdffffce, 0x9a827989, 0xff98192b, 0xbd920100, 0xe60700ff,
0x23948268, 0xa4b1ff04, 0x0d269082, 0x00ffa450, 0x1b829942, 0x71bd202d, 0x333d00ff, 0x3000ff34, 0x82bb1f05, 0x8f9a2521, 0x9a00ff5c, 0x7d2c8882,
0x190d00ff, 0xfb0e059a, 0x1901ff70, 0x00249d82, 0x1534b337, 0x8f22af82, 0x868266e6, 0x8380f63c, 0xc2f5ffff, 0xefffff8e, 0xff8bd9ce, 0x0080f6ff,
0x3d0a00ff, 0xff230872, 0x36827000, 0xf9ffff24, 0x94821884, 0x82f4fd21, 0xd74321ad, 0x30251b82, 0x0300ff20, 0x227782d0, 0x8290c208, 0xcf032267,
0x219e829e, 0x04820cc2, 0xff96a326, 0x7aa90500, 0xa6220982, 0x1a828b66, 0xdde44828, 0x3f01ff06, 0x481aa2f0, 0xfe2c2f52, 0x079a19c0, 0x00ff06d3,
0x8b088c09, 0xa4264e82, 0xfaffff9c, 0x77820a57, 0xff5ccf27, 0x703df7ff, 0x210a8208, 0x0a82cccc, 0x82523821, 0xce4c2196, 0xcc20c282, 0xf9270482,
0x08840080, 0x5794f80e, 0xee210528, 0x2021824c, 0x056b4ff1, 0x07cdb818, 0x5a83ff20, 0x438b0623, 0x21ea8305, 0x5685f873, 0x5bf7ff23, 0x274b8264,
0xffff713d, 0x08a430fc, 0x3e210a82, 0x200a83fa, 0x30568220, 0x00ffd3cd, 0xff2abc01, 0x8f02f9ff, 0x7b0600ff, 0x241e82e8, 0xf366e68f, 0x201b8205,
0x221182c2, 0x82008009, 0x301025a1, 0x0a00ffa4, 0x00204082, 0x9c820f82, 0x9a197022, 0x00232182, 0x84f4fd06, 0x211b8233, 0x47822230, 0x82e6bb21,
0x823582cc, 0x82222066, 0xb8082225, 0x24668251, 0x00ff6e32, 0x22a58305, 0x82cc4cf7, 0x66f72295, 0x29f38266, 0x9a19b7ff, 0x3f01ff05, 0x996b66e6,
0x8233200f, 0x4cee2723, 0xff0e08cd, 0xe082f801, 0x66ae0026, 0xffff1566, 0x23209282, 0xf9229282, 0xb0410c02, 0xf5ff2805, 0xffffe0cf, 0x821a44fe,
0x703d26cc, 0xcf0300ff, 0x21b882de, 0x8f823df7, 0x19830320, 0x8656fa22, 0xa3218a82, 0x22bb8254, 0x8266a608, 0x0f00288b, 0x4800ff5e, 0x4105f0e7,
0xff210521, 0xe67a18ff, 0xff922107, 0x2206bc50, 0x829a9912, 0x82002098, 0x20118206, 0x22b48254, 0x6c00800c, 0xa885063f, 0x05d38b22, 0x09214e82,
0x224d828c, 0x41f6a805, 0x002305b6, 0x8390c208, 0x825c207d, 0xc1082114, 0x0327cb82, 0x00ff1acf, 0x852e320a, 0x0600239c, 0xb08270fd, 0x41d68321,
0xc2820533, 0x3d0a0028, 0xf6ffff6e, 0xe6829082, 0xccccef27, 0xb3f5ffff, 0x2f0f8234, 0x0e080080, 0x01ff70fb, 0xff9a191d, 0xcc4c2e01, 0xfc22f282,
0xdc83a430, 0x0482f420, 0xff285c26, 0x8856faff, 0x59290982, 0x43088b9a, 0x050000ff, 0x20c8851e, 0x24468207, 0xff5c4fee, 0x056d50ff, 0x3282b020,
0x2649d883, 0x09ea640e, 0xe63f012b, 0xffff0766, 0x8b9919b7, 0x21768205, 0x3f82f873, 0x645bf729, 0xa80500ff, 0x83ffff72, 0x08002372, 0x3e8214c3,
0x6230fc22, 0x2206f642, 0x8229bc01, 0x263121d1, 0x2f06e941, 0x0872fd06, 0x7000fff3, 0xff059819, 0x7d7f0900, 0x3d271b82, 0x1000ff72, 0x828b2731,
0x0080210f, 0xc221d182, 0x2321828e, 0x68e68fff, 0x072c2182, 0xffffea66, 0xff3c0af9, 0x32b30100, 0x2206c642, 0x82ce4cfb, 0x323327ca, 0xff2f0e08,
0xf182bf01, 0xe6800023, 0x20f18266, 0x829b8278, 0xbdf2228f, 0x070d6570, 0xfff62827, 0x66a6f3ff, 0x8290828b, 0xff06251c, 0x5c0ff3ff, 0xf4322182,
0x00ff7a54, 0xfff0c707, 0xce0cfbff, 0xf80b00ff, 0x0a820810, 0x82101821, 0x274d830a, 0xfff8b302, 0xb89e0e00, 0x23218f82, 0x270482d8, 0xff086626,
0x5c0f1e00, 0xf6820484, 0xbaa9b727, 0xb84400ff, 0x270a8254, 0xffec91b8, 0x5c8fb8ff, 0x2083a982, 0xf0e1ff23, 0x210a82a4, 0x5a822709, 0x82d8f621,
0xc102274f, 0xf2ffff06, 0x5e82fa3e, 0xffe90627, 0x3e0af4ff, 0x210a8208, 0x0a827308, 0x82ea1121, 0xcc4c2404, 0x82f9ffff, 0xf3ff2773, 0x088b9a19,
0x74181cfb, 0xf62d0838, 0x00ff6626, 0x8b70bd0a, 0x5c0c00ff, 0x237f822a, 0x079a1987, 0xf0210c83, 0x23ba85a4, 0x86ab0b00, 0xff24ba84, 0x32f30400,
0x03272082, 0x00ffec11, 0x823e8a02, 0x23f6820f, 0xcccc0000, 0x1e210982, 0x23fb82b8, 0xdf4f0800, 0x082c3a82, 0xffff2130, 0xff0cc2fc, 0x48210600,
0xe0217682, 0x86d68600, 0x704726b5, 0x4700ffa5, 0x83c08270, 0x210a82d1, 0xe1821263, 0x6d20d182, 0xcd830682, 0x0484ff20, 0xfd20cd84, 0xf422d283,
0x62823d0a, 0x0817f922, 0x0921c882, 0x260a82ba, 0xffffdfef, 0x820b34f8, 0x34b32196, 0x0d227082, 0xb889cccc, 0x90420d22, 0xc026d082, 0x0900ff00,
0xd4820ad7, 0xef825920, 0x8200ff21, 0x820620d5, 0xa4f0210c, 0x0b222e82, 0x3e8285ab, 0x82103821, 0x33f32148, 0x07275282, 0x00ff08f0, 0x824e7003,
0x14ee2cb4, 0xe6ffffff, 0xfbffff67, 0x828b9ad9, 0x1ec5220f, 0x22068208, 0x8222b0f7, 0x54c3260b, 0xcff7ffff, 0x82d084de, 0xbade2104, 0xe2288e82,
0xffffacdc, 0x05ac07e1, 0xa141d084, 0x6e472207, 0x850f8414, 0x07cd41d5, 0x0025d483, 0xfff02709, 0x22d483ff, 0x82c10d00, 0xf9042290, 0x21c48216,
0x8082c4f5, 0xe0ef0422, 0xf3210a82, 0x26048232, 0x00ffd8ae, 0x85cecc07, 0x82d985af, 0x82d8822b, 0x23d483bc, 0x0040f5ff, 0xf3229682, 0x6f4266a6,
0x83072005, 0x5c0f210c, 0xff23d485, 0x847b54f4, 0x21c482d4, 0x2082cd0c, 0x66e6f422, 0x32057442, 0x4861f1ff, 0xb30200ff, 0xf6fffff8, 0x00ff9ad9,
0x82d72309, 0xf0e1221e, 0x20a183a4, 0x0864425b, 0x8dec9121, 0x099042cd, 0x0485bd84, 0x0220bd84, 0x0b22c283, 0x5e82c2f5, 0x82ea0621, 0xb40d2aa7,
0xf9fffffe, 0x00ff8a41, 0x34738306, 0x8bcc4cf4, 0xfb0e087f, 0xf8e4f730, 0xffff1514, 0x06b81eca, 0x05fb71ff, 0x34332533, 0xccdcffff, 0x1a00ffcd,
0xffffcccc, 0x8bcd4cd6, 0x83068508, 0x20118216, 0x202083e5, 0x232082f2, 0xccccdaff, 0xca221a82, 0x90189919, 0x85210ec3, 0x24f5821e, 0x08e27ae5,
0xc4b018fb, 0x0080210a, 0x2506bd4d, 0x8b00801a, 0x9018f708, 0x7a220fc3, 0x71828be2, 0x081e8523, 0x233383f7, 0x1e851a00, 0x15252e86, 0xffffe27a,
0x223383e5, 0x198b24fb, 0x530fee51, 0xc2440e81, 0x84ab2106, 0x44059b45, 0xf3820ec2, 0x1100ff24, 0xfc5634b3, 0x56842005, 0x7c2008fc, 0x33281583,
0xfbdb088b, 0x34fb1534, 0x180f144c, 0x5b11e547, 0xd36c0699, 0x82f72005, 0x20098230, 0x5bbd82cc, 0x6e6d0612, 0x224c180c, 0xff0e3411, 0x9a19f701,
0x66ae00ff, 0x04fb1566, 0xffff0523, 0x461804f9, 0xd0310791, 0xfeffff62, 0xffffd843, 0xff0040f7, 0x20d00300, 0x470a8908, 0x00230588, 0x8214a308,
0x8c09276b, 0x07c308cc, 0xf75554fb, 0xc8ff2406, 0x4707cc01, 0x582108af, 0x21358210, 0xa447645b, 0x86a42008, 0xfcff2d45, 0xffff2030, 0xff5ccff5,
0xe8bb0100, 0x052a7382, 0x0600ff1f, 0xfb08e87b, 0x8782f304, 0x1038f627, 0x180900ff, 0x225e8210, 0x82fafe10, 0xf0c7210a, 0x19230482, 0x83f7089a,
0x0600231e, 0x2d84e8fb, 0x0a00ff24, 0x41829e2f, 0xff28bc2c, 0x00c00800, 0x2ffcffff, 0x288208e0, 0xb682a320, 0xb032fc26, 0xb30500ff, 0xf722f582,
0x2a49cc4c, 0x287b8205, 0x0766e6c8, 0x00c000ff, 0x05dd5601, 0xa982c320, 0x03470020, 0x82a72005, 0xa4082261, 0x2148829c, 0x034706c1, 0x83a4820e,
0xfeff2267, 0x221e8244, 0x82e2fa06, 0x188421ae, 0x23218a82, 0x286b8205, 0xffff1cc5, 0x8b4801f6, 0x21ce827a, 0x0b82ce4c, 0x0866e624, 0x7b82fb0e,
0xbd49f920, 0x04fb2108, 0xe721d283, 0x821c82f0, 0xefff23d7, 0x8f830601, 0x8466e621, 0x239482d7, 0xf766e698, 0xf9222283, 0xd6821984, 0xff23db82,
0x86d743fe, 0xd00322db, 0x82db8421, 0x240a87d6, 0xbb0700ff, 0x21db82a6, 0x408246a1, 0x8bcd8c2a, 0xf706c308, 0x06530754, 0x73215e82, 0x22598233,
0x48ac5cf7, 0xfc2206a3, 0x3c82df2f, 0x0832b326, 0x30fcffff, 0xcc264783, 0x0100ffce, 0x5b8222bc, 0x82981921, 0xee7b246a, 0x83f30892, 0x0900237a,
0x8d841118, 0x1000ff25, 0x828bfafe, 0x9919210a, 0x0821ad84, 0x28bc83f3, 0xe77b0600, 0x04f9ffff, 0x065d491a, 0x62d0f522, 0x5c825182, 0x40f7ff23,
0x265c8300, 0xffffb032, 0x82ec51f7, 0xcd4c2604, 0x4cfaffff, 0x293c82cc, 0x088b0080, 0x54fb0653, 0x1a4ac307, 0x1058260e, 0xcf0300ff, 0x212c825c,
0xd683fa3e, 0xff290a86, 0x3e4afeff, 0xddf5ffff, 0x286a8230, 0x08840080, 0x4b94f70e, 0x6f961815, 0x5088182e, 0x81ff282d, 0x00ff3333, 0x829a19f6,
0x80022866, 0x00ff9100, 0x82cdcc05, 0x66e6249c, 0x830600ff, 0x06cb22bf, 0x17cf59eb, 0xd582ab20, 0x22145257, 0x82cb072b, 0x7806231a, 0x4e828b10,
0xff4cd730, 0xe81bfcff, 0x780200ff, 0xfaffff52, 0xf0821804, 0xe87b0222, 0xf0820a84, 0x8200a021, 0xc01f26eb, 0x6cfbffff, 0x27048208, 0xfb08846b,
0x0504fb04, 0xc0211482, 0x7d048684, 0xc22106fe, 0x21928290, 0x1f827c3f, 0x1f83f720, 0xb468fb27, 0x9d0400ff, 0x21438270, 0x19829999, 0x82cecc21,
0x22c18262, 0x4b8b0e08, 0x7224054e, 0x00ff9a99, 0xff220483, 0xcd82668d, 0x33bb9718, 0x23154b41, 0x19f600ff, 0x7e245a82, 0x9115cccc, 0x23050250,
0x66e60300, 0x3322d082, 0xb2828b34, 0x08008025, 0x41eb074b, 0x365a0f1b, 0x076b2107, 0x6d582382, 0x062b2213, 0x271a834b, 0xfff087f9, 0xe71bfcff,
0x28214e82, 0x210482b4, 0x62821904, 0x08ae8722, 0x84350a87, 0xf9ffff18, 0x00ffbe1f, 0xff006001, 0x856bfbff, 0x930400ff, 0x071441f8, 0x83c0f92d,
0x3f0600ff, 0x00ff8b7c, 0x7dcc210a, 0x002905f0, 0x08703d06, 0x04f704f7, 0x212a8205, 0x0482719d, 0x824c9721, 0xcdcc2119, 0x66214382, 0x4cc18566,
0x00200884, 0x07039918, 0x19063a41, 0x2010e348, 0x822082ff, 0x201782c1, 0x41068508, 0xff2f2763, 0x66e609ff, 0x3381ffff, 0xff851534, 0x82800200,
0x19fc27bd, 0x0500ff9a, 0xad82cccc, 0x00800626, 0x2b07cb08, 0x2017545c, 0x058342ab, 0x0e223882, 0x7b5a7b54, 0x11002805, 0x088b85ab, 0x83cb06eb,
0x7806271a, 0x0300ff10, 0x6f4218e4, 0x05002205, 0x056f42fb, 0x0f820820, 0x7b200a84, 0x06340f82, 0xffff40e0, 0xfffe9ffe, 0x7c940400, 0x6cfbffff,
0x04f7080a, 0x2005db43, 0x220f823f, 0x7f83c0f9, 0xff28063c, 0xff84c0f9, 0x90c2f9ff, 0x22078a42, 0x829062fb, 0xb468212f, 0x33211482, 0x21438232,
0xc1859a99, 0x643e9a18, 0xcccc7e2f, 0xe609ffff, 0xffff1566, 0x850080fd, 0x05ee52ff, 0x9a19fc22, 0x80268d82, 0x4b088b00, 0x52422b06, 0x416b2017,
0xeb22174e, 0x1a824b07, 0x3e82f920, 0x33204e83, 0x8305ef43, 0x0891215e, 0x91256584, 0x660100ff, 0x06244267, 0x99990430, 0x990400ff, 0x04f7089a,
0xff6f00ff, 0x564205ff, 0x7e3f2707, 0x210a00ff, 0x0f828bca, 0x82723d21, 0x82c0218d, 0xff232283, 0x82010090, 0x94042722, 0xfbffff7a, 0x49836666,
0x1c826620, 0x84333321, 0x08852359, 0x4418f80e, 0x2b261a2d, 0x06b4fb07, 0x3e43b4f7, 0x82852006, 0x05ef415a, 0x82ec5121, 0xae11230a, 0x06850814,
0xf1ffff29, 0x00ff85ab, 0x48ec510e, 0x2b24065b, 0xffff058b, 0x14c65718, 0x07b4fb23, 0x211a828b, 0x6674f6a8, 0xe3ff2305, 0x57180a57, 0x4f1817c6,
0xf1440818, 0xe8441805, 0xf7f32512, 0x1cfb15d4, 0x8309b64c, 0x33f8227f, 0x27e882f8, 0xffff5c0f, 0x08080cf4, 0x07210a82, 0x3a0a82f0, 0x00ffae07,
0xff00c002, 0x0040f2ff, 0x280900ff, 0xf6ffff30, 0xff080ad7, 0x826c2900, 0xa1d62223, 0x24af8248, 0xff9a9936, 0x820482ff, 0x80f3210a, 0x04822a82,
0xeb20aa82, 0xb4603582, 0x25308208, 0xff343306, 0x1483f9ff, 0x33330829, 0xe6fcffff, 0x8200ff66, 0x828b2009, 0x8206831a, 0x152e250c, 0x200300ff,
0x06276682, 0x00ff703d, 0x82004006, 0x61c9281a, 0xc900ff48, 0x82053453, 0x230a8271, 0xb89ed6ff, 0x3108074d, 0x00ffe6db, 0xff58b90d, 0x0f4dfdff,
0x0400ff97, 0x3082e9e6, 0xa4f00b3b, 0x040500ff, 0x0700ff9c, 0x00ffcccc, 0x8b34b30b, 0xe60c00ff, 0x1cf70866, 0x23098207, 0xff90420d, 0x2106e355,
0xd58270bd, 0x08201e82, 0x7906c079, 0xff230e8f, 0x829a59e3, 0xa6dc23c6, 0xb0650866, 0x137b4106, 0xfc75d420, 0x087b410e, 0x2009787c, 0x828c18ff,
0x80ca2810, 0xdcfeff00, 0x82159a19, 0x86f92c5f, 0xfcffffea, 0xffff6a1c, 0x824a2cfa, 0x12032104, 0x8522cf82, 0x0a82081e, 0x82600521, 0x1884300a,
0x1ef9ffff, 0x0100ff78, 0xffff0661, 0x82846bfb, 0xf29232e8, 0xd2ffff08, 0x00ff00c0, 0x0500402d, 0x14bcffff, 0x2004837b, 0x0a80417c, 0xebffff33,
0x00ffaec7, 0xff3e0a00, 0x8f82f3ff, 0x800c00ff, 0x27348248, 0xffb85ee9, 0x48a11600, 0x78822983, 0x820c002e, 0xffffff86, 0x00ff66e6, 0xff343314,
0x53822482, 0x66660d28, 0x4300ff08, 0x048485eb, 0xd2272982, 0x00ffafc7, 0x8249612c, 0x66fb210a, 0x042c2a82, 0xffff9899, 0xff9a99fe, 0x68e60600,
0x22050245, 0x83e60500, 0x7a022734, 0x0500ff1d, 0x0482e6fb, 0xfffed426, 0x1ae40300, 0x78222382, 0x4f828b93, 0x65669e29, 0x0800ff06, 0x828bc2d5,
0xd8432612, 0xd6f8ffff, 0x22fe8246, 0x822010f8, 0xb9602396, 0xac82079a, 0x8b86eb28, 0xf7ab0e15, 0xd75015b4, 0x21118205, 0x31524014, 0x05002308,
0x814aeaa6, 0x08002405, 0x52ff0cc2, 0x00230531, 0x5206c108, 0x00290531, 0xff0e2d0a, 0xe8bb0100, 0x225f8292, 0x4a08e87b, 0x0a24055e, 0x00ff703d,
0x23092a52, 0x90c2f5ff, 0x9c4a0f84, 0x02f92206, 0x242d840c, 0xd2f5ffff, 0x203d836e, 0x216182a6, 0x5183723d, 0xb651e420, 0xfcff2806, 0xffff1c2f,
0x821659fa, 0x225b2119, 0xf622b182, 0x1a82c275, 0xc0ebff27, 0xfeb7ffff, 0x09b651fa, 0x825c4f21, 0xb0f1221c, 0xe48f18a4, 0x2211820b, 0x723433ef,
0xff2f0583, 0xff66e6ef, 0xa4b01100, 0x54f8088b, 0x511554fb, 0xff2007ef, 0x48221683, 0xc35166e6, 0x206b8207, 0x05c35117, 0x3df7ff28, 0x0300fff3,
0x6f825ccf, 0x5c4ff727, 0xe60200ff, 0x2ca98267, 0xffffcdcc, 0x84cd4cfe, 0x80f9ffff, 0x21c88200, 0x14820523, 0x498fc221, 0xff2305a7, 0x82cfefff,
0x3d0a2229, 0x4a0f8471, 0x062206da, 0x2d82f4fd, 0xff1a8426, 0x922d0a00, 0x43213d82, 0x216182d4, 0x5c8290c2, 0x0822d022, 0xc5210a82, 0x260a821e,
0x00ffc6cb, 0x829a9905, 0x34b3210e, 0x82053251, 0x1900231a, 0x0f53d39a, 0x85bc8209, 0x91a018cc, 0x24e88714, 0x8bcc4cee, 0x05366b08, 0x0d754818,
0xff2f3e83, 0x085c4fee, 0xcbffff8b, 0xffff5c0f, 0x86a4f0d4, 0x270e8204, 0x34fb088b, 0x05b38b06, 0x78257b83, 0xfaffff10, 0x277f826c, 0xff4c9708,
0x1759f7ff, 0xe1229f82, 0x0a820848, 0x827b5421, 0x23ba820a, 0x66e6f5ff, 0x8024c982, 0xf8ffff00, 0xf9260983, 0x3b089899, 0x36820543, 0xfa82fd20,
0x1783fb20, 0x291cfd22, 0x8021f582, 0x206d8200, 0x050165f9, 0xff240682, 0x19e40200, 0x85201682, 0x0529f282, 0xffff090c, 0x08a470fb, 0x233882db,
0x45760400, 0x91820d82, 0xcc050026, 0xfdffffcd, 0x09835582, 0x85828b20, 0xdf4f0322, 0x03279582, 0x00ff924d, 0x8200b000, 0x18242680, 0x5f0100ff,
0x221a82e0, 0x82dda408, 0x86d6210f, 0x21073b41, 0x3b419a99, 0x27c98206, 0xff0634f7, 0x52385800, 0x47241182, 0x00ffaec7, 0x0a820482, 0x08201082,
0x18098c64, 0x290c31cf, 0x14f7d4fb, 0x9f00ff15, 0x38829a19, 0x66e60024, 0xbb820563, 0xf087f622, 0x93215c82, 0x2bfc82f8, 0x00ffb468, 0xffeaa608,
0xb81efcff, 0x03277b82, 0xffff842b, 0x82d8a3fe, 0xce4c2680, 0x4cffffff, 0x21dd82cc, 0xb1836666, 0xe0cf0522, 0x05226382, 0x11820cc2, 0xb1822020,
0x83800421, 0xf0072504, 0x05d3db08, 0xee264d82, 0x0400ff14, 0x1c82448b, 0x2407204b, 0xb30700ff, 0x22978332, 0x8234b307, 0xe81b21fc, 0x94262582,
0xfaffff7a, 0x2a82f8f3, 0x085c8f23, 0x2138823b, 0x0d83f8ff, 0xe04f062c, 0xdbf5ffff, 0x0100ff64, 0x95822090, 0x822a5c21, 0x12382290, 0x200a8208,
0x253b825e, 0xff5e3afb, 0x6f82f9ff, 0x68f7ff23, 0x20bf8472, 0x84ab82ae, 0x34fb27cd, 0xa7ffff06, 0x1582aec7, 0x5238b827, 0x33b8ffff, 0x220a8234,
0x82cccca7, 0xeeff2378, 0x11495c4f, 0xf1ff2305, 0xe054a4b0, 0x05a31807, 0x83342018, 0x192b24b8, 0x8400ff9a, 0x34210804, 0x088b67e6, 0x01ffef0e,
0xf7ccccdc, 0xffff1534, 0x42ce4cf0, 0x4cc0ffff, 0xffff54cc, 0x8b9a99b2, 0x2b068508, 0x66bfffff, 0xffffc266, 0xd43333f1, 0x7c221282, 0x5b48cdcc,
0x0ccf4f0e, 0x8533b321, 0x055d5f91, 0x85ab1122, 0x00244682, 0x06333383, 0xcc241682, 0x4900ffcd, 0x40218483, 0x20848299, 0x20898336, 0x057b414d,
0xff270683, 0x34b33f00, 0x83c9ffff, 0xb30f2920, 0xb6ffff32, 0xff089a19, 0x34203b82, 0x18175756, 0x2416f141, 0xcc7cffff, 0x23a382cc, 0x5b343363,
0x0c19cc18, 0x19230021, 0x202337e6, 0x255682cc, 0xff3433dc, 0xe619dcff, 0xcc201237, 0x34301683, 0x332c00ff, 0x0e088b34, 0xff64f72f, 0x66e6d000,
0x56216582, 0x2aa683b3, 0xffcc4c0c, 0x67661b00, 0x821c00ff, 0x14002641, 0x00ff9999, 0x82748220, 0x2b4218c7, 0x4cdb220a, 0x236382cd, 0x0833b3d4,
0xd2200682, 0x6a82ef82, 0x04826f84, 0x2d84d320, 0x82dfff21, 0xffff235f, 0x4e82cce3, 0x82b31321, 0x82f32016, 0x1d002804, 0xff083233, 0x834ca9ff,
0x19db22dc, 0x2d3c829a, 0x969999df, 0x4ce5ffff, 0x1400ffcd, 0x1c859a19, 0xb44a0b1a, 0xdfffff29, 0xffff6666, 0x820080ec, 0x82e620f5, 0x83e32009,
0x80f33104, 0x00ff0800, 0xff9a9904, 0xce4ccfff, 0x192900ff, 0xd9200982, 0x00241982, 0x8b66e631, 0x26052243, 0xf714fb07, 0x5eff151c, 0x09290ba2,
0xff8b9ad9, 0x66260e00, 0x2d068208, 0xff2a5c0c, 0x0040f5ff, 0xa30b00ff, 0x045fffd6, 0x5cf42812, 0xffff8b2a, 0x82d6a3f3, 0xf1ff242d, 0x5eff9ad9,
0xf62205cb, 0x54856626, 0xfe231682, 0x8d9a199f, 0xb30a2162, 0x1058a218, 0x16826283, 0xf5216293, 0xeaa2184c, 0x00c02110, 0x26065449, 0x8b00400d,
0x42b4f708, 0xff210647, 0x205883f2, 0x243082ff, 0x66f4ffff, 0x21988366, 0x98849a99, 0xff82cc20, 0xf6225e84, 0x98823233, 0xff825182, 0x06820d20,
0xb326af82, 0x0900ff34, 0xed82cecc, 0x32330e22, 0x6621f484, 0x225e8666, 0x499a990b, 0xaf2707b3, 0x54f8a4f8, 0x5474fc15, 0x96180e25, 0xd4200941,
0x17e9a418, 0x0654f726, 0x43055b7b, 0xf2223882, 0x9382cdcc, 0x3333f522, 0x33205e82, 0x82073c60, 0xccf22211, 0x218782cc, 0x1684cdcc, 0x33219e82,
0x21d48233, 0x964106a4, 0x180a200c, 0x82087b8b, 0x053960a8, 0x41004021, 0xf220066d, 0x08251b82, 0xbb7b0643, 0x186b8205, 0x4a16a959, 0xae18051f,
0x7b2c136c, 0xfc15b4fb, 0x74f70654, 0x0654f807, 0x2a05707f, 0xf834b37a, 0xffff1534, 0x8299990a, 0xb37a2185, 0x6925b082, 0xff05cc4c, 0x24188200,
0xb39600ff, 0x230a8234, 0xfbcc4c85, 0x94252383, 0x00ff9a99, 0x241d828d, 0xffff07fb, 0x281a8472, 0x066666de, 0x666bfeff, 0x21188266, 0x47827c54,
0x99999422, 0xab211b82, 0x84368284, 0x8dff221b, 0x22bb8200, 0x827c548d, 0xe6883810, 0x57feff66, 0x8e151ec5, 0xb3fcffff, 0x0400ff32, 0xffffcd4c,
0x823433fe, 0x05df4409, 0x06820420, 0x402b0c82, 0x0100ffc6, 0x00fff8d3, 0x825a0403, 0xe83b3204, 0xf200ff08, 0x00ff14ee, 0x0520f0fa, 0xc302feff,
0x2eab82d6, 0xff5ceff2, 0x9a1905ff, 0x30fb0e05, 0x533901ff, 0x802b0e48, 0xf5ffff00, 0xffff20c5, 0x5d5ccfef, 0x3a270803, 0xf72308e0, 0x5dff0504,
0x44530600, 0xa2082222, 0x0b44530c, 0xf706d329, 0xff8b07a4, 0x82cf0800, 0xccf8307b, 0x0700ffcd, 0xffffa430, 0x8b3333f7, 0x4504fb08, 0x825a0eef,
0x08347c08, 0x487b5421, 0x112506e3, 0x088b85ab, 0x233082f7, 0x9a192c00, 0x23221e82, 0xa81866e6, 0xfb210b39, 0x102a5da4, 0x29280f53, 0xd2f730fb,
0x662e01ff, 0xbd4a1566, 0xf7ff2305, 0xa1820040, 0x55ac5c21, 0xff23058f, 0x5b3473f6, 0x0222054f, 0x67820590, 0xffff8b25, 0x82b8ded3, 0x291c217c,
0x21210482, 0x210e8248, 0xccb7d7e3, 0xb0180820, 0x9d62087e, 0xa4f7280a, 0x00ff4307, 0x5b66e600, 0xa7210e7d, 0x26a083f0, 0x0800ffa4, 0x890806c1,
0x00ff2e0a, 0xffe1ba01, 0x6a3c0900, 0x7d0600ff, 0x087b5471, 0xff7d7f26, 0xe23a0a00, 0x210d765b, 0x7b541ec5, 0x00802207, 0x076f5b84, 0x8268e621,
0x3433214d, 0x332af482, 0xaf0e0832, 0x94f7f4f7, 0x4718ab15, 0xcd200ffe, 0xdc26f882, 0xfb0833b3, 0x09840754, 0xe3202e82, 0x0de38418, 0x730eb44d,
0x33830b2e, 0x4c230023, 0x664818cd, 0x4f332008, 0x74220730, 0x4f82bb06, 0x874f0028, 0x4000ffae, 0x04820080, 0xff527823, 0xb65c1800, 0xbfff2310,
0x7682ae87, 0x5278b024, 0x2f825b08, 0x82eeff21, 0x5eff204b, 0x332106d7, 0x220e82ff, 0x85088bcc, 0x84ff2006, 0x0e002216, 0x21b0824c, 0xb0821100,
0x2c225f84, 0x6047142e, 0xd1232406, 0x47ffffec, 0x0683060c, 0xff211685, 0xa76618dc, 0x075b2708, 0xff30fb0e, 0x6183a800, 0xcccccc28, 0xcbffff15,
0x9782cccc, 0xf1823320, 0x66e68b2e, 0x999b00ff, 0x00ff8b9a, 0x08666657, 0x6a270682, 0x00ff3e0a, 0x83c3f555, 0xffc22204, 0x290e8200, 0x8bf5088b,
0xaaffffe1, 0xb0823e0a, 0xc2f59522, 0xff342582, 0xfb9a99a8, 0x64ffff09, 0xffff6666, 0xff33b3cc, 0xccccbfff, 0xf320af82, 0xf0270a83, 0xffff34b3,
0x823433e9, 0x290f832d, 0xcc4c0f00, 0xff068b08, 0x1c821700, 0x33f30027, 0x00ff1534, 0x20cc8423, 0x8210831c, 0x8b4d1904, 0xffcd2310, 0x44831c00,
0x33b3dc23, 0x8355828b, 0xffff2206, 0x22bf83e3, 0x82cc4ce3, 0xb3dc2256, 0x82848334, 0x82288317, 0x841b837d, 0x82082054, 0x54f722ea, 0x226282eb,
0x82ae0735, 0xf82a2457, 0x8200ff52, 0x820a8204, 0x3b082110, 0x232e2b59, 0x07ab06db, 0x60183390, 0x332611e0, 0x330700ff, 0x5f59ff34, 0x82db2005,
0xe62022ea, 0x18378566, 0x211cb360, 0x3782fc29, 0x082b0483, 0x088b04d6, 0xffffffdb, 0x85059a19, 0xffff24a9, 0x84ae07d5, 0xffff26b9, 0x8b52f8ca,
0x85068508, 0x201b8316, 0x2310848b, 0x0734fb08, 0x0fa8ca18, 0x34f72c22, 0x130d9c18, 0x9999f322, 0xd7214482, 0xf4041219, 0xfb264501, 0xf8c4f730,
0xcb181554, 0x6b180cf9, 0x74202719, 0x180ed651, 0x2223196b, 0x6b74fc04, 0xcd344f05, 0xc0f1ffff, 0xeeffff00, 0x088b3333, 0x34f804f7, 0x07d4fb15,
0xf726d082, 0x74f707d4, 0xe1820e06, 0xe183d420, 0x04499420, 0x8a661817, 0x0e2a5d0b, 0xad183382, 0xf82415ee, 0xff8b0734, 0x2a5d1a83, 0x33388307,
0x8b0080e5, 0xfeff3b08, 0x1566e640, 0xf6ffff8b, 0xffffce4c, 0x0e407019, 0xbfffff24, 0x88829a19, 0x9919f822, 0x76472182, 0x081b7805, 0x08215182,
0x684818cc, 0x18cb2011, 0x210ee265, 0x3a83cccc, 0x089a1928, 0x90f7af0e, 0x6a8284f7, 0xe60b0028, 0x0800ff66, 0x04869a19, 0x8b2b0e82, 0x96069b08,
0xffff948b, 0x8266e6f7, 0x82f4202e, 0x0747222e, 0x27128f8f, 0x8282808b, 0x5b088b80, 0x1b199182, 0x942308e2, 0x8208968b, 0x20529389, 0x2389828f,
0x07666630, 0x7083db82, 0x67e60128, 0x19f9ffff, 0x2e82939a, 0x33b30927, 0xf798f708, 0x96501824, 0x46942018, 0xfc21179c, 0x557d8254, 0x4e1807cd,
0x59820f9b, 0x14965018, 0xfc065425, 0x83d4fb14, 0x4c2327fa, 0xe3ffffcc, 0x69459959, 0x66a62a07, 0x074b088b, 0xf74b06cb, 0x11681854, 0x7a67200a,
0x4b290b23, 0xf8074b06, 0x1554fb54, 0x23c982cb, 0x8b34b3dc, 0x45844082, 0x20089345, 0x27771acb, 0x157b2621, 0x19c2ffff, 0x243b829a, 0xff66e6cd,
0x820482ff, 0x2010820a, 0x24068508, 0x193200ff, 0x1816849a, 0x8312dea1, 0x22d9821b, 0x8266e63d, 0x8200202d, 0x84288606, 0x4f438232, 0x0f2005a4,
0x00234082, 0x82008050, 0xccd42568, 0x3500ffcc, 0x08052668, 0xffdf4f30, 0xaec70a00, 0xfff0ffff, 0x0300ff7d, 0xffffe2ba, 0xff5238f3, 0xc876faff,
0x93ffff08, 0xffff0080, 0x05707dd1, 0x17f2ffff, 0xffff850a, 0x04826bf8, 0x5ccff022, 0x612b2a82, 0xf1ffff48, 0xff086666, 0x82401700, 0x339b2325,
0x15820532, 0x82014021, 0x78d32d15, 0x7a0c00ff, 0x00ff81e2, 0x8b33b30e, 0x6b222182, 0xa1826666, 0x34b3622a, 0x752500ff, 0x4e00ffc2, 0x3e228c83,
0x6282a430, 0x3c82a720, 0x8f450023, 0x2062835c, 0x27fa82a6, 0x7dd8e3f6, 0x99f7ffff, 0xf020ee82, 0xf82d7d83, 0xff08cccc, 0x32b36701, 0x669affff,
0x27bd8266, 0xff666660, 0x9a197d00, 0x41226d82, 0x4b82ae07, 0xff52f82f, 0x84ab2700, 0x876400ff, 0x02f78bae, 0x27698208, 0xfff6a80e, 0xf007f6ff,
0x8a218682, 0x2190823e, 0x9a83c0bf, 0x6e820020, 0xec519b22, 0x3c21b082, 0x216e82cc, 0xc6834ff1, 0x82f06721, 0xc2f521fb, 0x6125da82, 0xf9ffff88,
0x223882e8, 0x82d017f2, 0x7ad12729, 0x93ffffe2, 0x29820080, 0xe08ffa27, 0x38f3ffff, 0x21448250, 0x4e82c0aa, 0x4c2a1c21, 0xf7220675, 0xdd825238,
0xecd13527, 0xebd3ffff, 0x27298285, 0xffb2bdf3, 0xcddce7ff, 0xb1835382, 0x82e6e721, 0x4cee32d1, 0xeaffffce, 0xff08cecc, 0x289ca4fe, 0x491001ff,
0x222982fc, 0x829999fb, 0x2070254e, 0xc7faffff, 0x0122c582, 0x09824aac, 0x8b0ad722, 0xf8237982, 0x828b48e1, 0x14ee248f, 0x1afcffff, 0x250ff607,
0xffffdfcf, 0xb8828ff5, 0x68d10122, 0xae826482, 0x700a0034, 0xf7ffff21, 0xff087ad4, 0x98194f02, 0xe630feff, 0x9f820566, 0x82008021, 0x82cc2015,
0x110f219e, 0x0127f282, 0x00ff00e0, 0x82b81e08, 0xf0672118, 0x09311482, 0x00fff81e, 0xffd28209, 0x9c19feff, 0x190f00ff, 0x2157829a, 0x23829899,
0x08323322, 0x72706b18, 0x0f976818, 0x18080858, 0x1819e170, 0x210afe6e, 0x2c4933b3, 0x4900200d, 0x6b180643, 0x27086c70, 0x0800ff0e, 0x01ff5c4f,
0x159a1902, 0x00ff44f7, 0x059a1997, 0x680f00ff, 0x0d00fff6, 0x00ffcc4c, 0xffae4718, 0x8235f5ff, 0xeb3dd182, 0xff08bc54, 0x32f3afff, 0xa000ff07,
0xffff9a99, 0xff2a1cff, 0x66667f00, 0xccdfffff, 0x232082cc, 0x08cecc67, 0xc2250682, 0xffff5c8f, 0x2d4182d8, 0xd823c3ff, 0x40d4ffff, 0xe0ffff00,
0x3b823233, 0x57f22708, 0xf6ffff0a, 0xffffe00f, 0xffec91ec, 0x10780c00, 0x070500ff, 0x1000ffae, 0xff08c816, 0x0a572d00, 0xffff25f7, 0x7c8228bd,
0x82802621, 0xe6642735, 0x0200ff66, 0x3a82ce4c, 0x7c14a823, 0x205b8207, 0x239382eb, 0xa4b0e7ff, 0x2305dc50, 0xb89ef0ff, 0x4a23a782, 0x87fb083e,
0xf4ff28ba, 0x00ffdfef, 0x82265c0a, 0x82f8209e, 0x3311265e, 0x0b00ff34, 0x28098218, 0x08008009, 0xff84f80e, 0x069b4601, 0xcecc0126, 0x1945ffff,
0x7d24c782, 0x8b55cc4c, 0xcd206382, 0x4320c584, 0x00271282, 0x8b34b37e, 0x500201ff, 0x13200557, 0x0028cb82, 0xff33b30b, 0xe27a1100, 0xe8200482,
0x07229f82, 0xb182d663, 0x2b83bf20, 0x90025028, 0x0400ff05, 0xab82f0e7, 0x04820720, 0x58390827, 0xab0100ff, 0x21db8284, 0x57825c4f, 0x4705002e,
0x00ff8bef, 0xff8c4c08, 0x7c54feff, 0xe12e2a82, 0xfdffff48, 0xf70810f8, 0xafffff54, 0x3d8270fd, 0xa2b01227, 0xb8f7ffff, 0x26ab8252, 0xffff34b3,
0x820080ee, 0x83ed20ec, 0xf82f2ab1, 0xbf01ff14, 0xfb15faff, 0xa95118d4, 0xb9731817, 0xff66250c, 0x0040e4ff, 0x5a07c14c, 0xa6210f76, 0x26898266,
0x08347322, 0x820714f8, 0x59232209, 0xb97318a0, 0xff602308, 0xf582dcff, 0x34fb0827, 0x0020feff, 0x5da24806, 0x83eb3421, 0xd4f729cf, 0x06d4f707,
0x0e07d4fb, 0xf821e582, 0x20e28d54, 0x4399829a, 0xe28f0850, 0x9a59e322, 0x2322e29c, 0xe2889a59, 0x11dca718, 0xa0482b20, 0xffcc240f, 0x82ccf8ff,
0x33f72704, 0xff088b34, 0xa0489fff, 0xe6072b2b, 0xeb088b67, 0x0900ff06, 0x876532b3, 0x09a04809, 0x47f78b21, 0xb18305a4, 0x66a61c22, 0x0e61c71a,
0x4c20c582, 0x234d2b82, 0x09495c05, 0xff073b2b, 0x0080e5ff, 0xeaffff8b, 0x05ba6680, 0x10820a82, 0x17e66b18, 0x5a483b20, 0x07db2331, 0x631800ff,
0x6d830b55, 0x801a0023, 0x49628200, 0x822406d5, 0x1500ff8f, 0xe5317e83, 0x088b717d, 0xf70e07db, 0x1534f794, 0x874f00ff, 0x24e882ae, 0xff527840,
0x82048200, 0x8310820a, 0xcd5a1835, 0xe27a2116, 0xbf23bb82, 0x4fff1e85, 0x2e4f0a27, 0x05554f05, 0x554f1683, 0x195f2f08, 0xff156b9a, 0x66e640ff,
0xa7ffff06, 0x2882d7a3, 0x295cb827, 0x5eb8ffff, 0x220a82b8, 0x8248a1a7, 0xeeff2368, 0x6f577a54, 0xf1ff2d05, 0x00ff86ab, 0x8b1fc510, 0xc001ff08,
0x21058b6d, 0x918286ab, 0x146e0d22, 0x7a202183, 0x11220a82, 0x335586ab, 0x00ff2405, 0x82666658, 0x29048249, 0x9a994700, 0xb3a6ffff, 0x5a188b34,
0xa5206f49, 0x01945710, 0x00ff2628, 0xf79a19d7, 0x0c7f6044, 0xff5c4f23, 0x057f60ff, 0x60eb1121, 0xee21087f, 0x210a8314, 0x7f60ffcc, 0x34332a06,
0x260900ff, 0xf6ffff66, 0x07366de6, 0xf0e1ff29, 0xffff05a4, 0x82a4f0b1, 0x14ee2104, 0x23137f60, 0xffffb17f, 0x28057857, 0xffb89e16, 0x4861e9ff,
0x05e65e05, 0x02261582, 0x421400ff, 0x0f858b8f, 0x7f0c0029, 0x00ff08a8, 0x825d0f4e, 0xec112104, 0x220d776d, 0x6c002006, 0x00220506, 0xaa822f08,
0x0cc2fc28, 0x510800ff, 0x30828bec, 0x00200422, 0x04264182, 0x00ff6d27, 0x5182ca00, 0x93f80327, 0xa40100ff, 0x311a8212, 0xff52f80b, 0xf8f30400,
0xc70700ff, 0x0b00ffae, 0x2982c0aa, 0xa4f00c22, 0x87281a82, 0xff07e4f7, 0xe819ffff, 0x2d058e47, 0x3333f6ff, 0xb30a00ff, 0xf1ffff34, 0x5683cdcc,
0x66e65026, 0x1cf715ab, 0x2109c36c, 0x4682a4b0, 0x3a82cc20, 0x14ee0422, 0xf3214b82, 0x210a83f8, 0x0a8210f8, 0xff236582, 0x820040fd, 0x82c02049,
0xd7f627a5, 0x0900ffd0, 0xe96b6626, 0x825c2009, 0x0f4e22cb, 0x21d6875c, 0x2a82800c, 0x8b820482, 0x8e421429, 0x80f3ffff, 0x8200ff0e, 0x2730820f,
0xff4861e9, 0xba9e1600, 0x83064841, 0xffff2515, 0x8b70bdeb, 0x5b822583, 0x8280f321, 0x076e41d6, 0xed6c1620, 0x18243113, 0x49f2ffff, 0x0200ff38,
0xff7ff2b2, 0xd418fbff, 0xf4225682, 0x0a82ae07, 0xff0a0c2b, 0x5238f8ff, 0x55f4ffff, 0x05bf6c3e, 0x78241a82, 0xff0766e6, 0x6e200082, 0xcd21f882,
0x0602417f, 0xcd4cf522, 0x4c2ccc82, 0x0e088bcc, 0x00ff64f7, 0x159a99a6, 0x90878085, 0x90897120, 0x44828420, 0x6c0aff41, 0xf28206dc, 0xe0f9ff22,
0x0621e782, 0x2db68220, 0xffa4d0f7, 0xf43d0300, 0xaef7ffff, 0x30828b15, 0x00e0fb22, 0xfb224182, 0x798293d8, 0xfffe352b, 0x6d07fcff, 0x5bfeffff,
0x82ab89ee, 0x20ab8609, 0x23ab8d40, 0xe4020000, 0xd421ab82, 0x21ab82bc, 0xf558abbf, 0x34ac410c, 0xac41cf20, 0x707d2c23, 0x1400ff8b, 0xffff9042,
0x418380f3, 0x603108ac, 0x1600ff42, 0xff059a99, 0x9a191701, 0x661901ff, 0x17534366, 0xd363ec20, 0x9ad92121, 0x430cb36f, 0xbd211753, 0x083d4371,
0x30820020, 0x20115343, 0x43a88400, 0x80200853, 0x7c422583, 0x43eb2006, 0x09370d53, 0xfffff027, 0xffe8dbf6, 0xc8b60d00, 0x4dfdffff, 0x00ff970e,
0x822ae704, 0xda0c2256, 0x210a821e, 0xc363fef4, 0xcc0d220c, 0x06c363cc, 0x2905045b, 0x00ffcc4c, 0xff70bd0a, 0x8718f1ff, 0x39320748, 0x00ffd7e3,
0x15cccc32, 0xbcf9ffff, 0x0800ffed, 0x6182b29d, 0x82f43d21, 0xf292214b, 0x19330982, 0xff088b9a, 0x85abe8ff, 0xf7ffff8b, 0xffff9a59, 0x82ec51eb,
0xa6f4230a, 0x06820866, 0x5e7af927, 0xfc0100ff, 0x203c82ac, 0x2783826c, 0xffc52004, 0xec51faff, 0x2e230a82, 0x824b1f85, 0x430622bb, 0x273782d7,
0x00ff866b, 0xff00c009, 0x22051366, 0x82f6e809, 0x17002353, 0xf2823e4a, 0x15ae0822, 0xa821fd82, 0x220a82f6, 0x82b85e0b, 0x06002d53, 0xffffa285,
0xff1203fe, 0xf8930600, 0xdf263282, 0x0500ff7d, 0x858214ae, 0x287cd132, 0xfd3f00ff, 0x01ff0570, 0xffc435b6, 0x34332d00, 0x09fc7218, 0xfff66826,
0x0040dcff, 0xd3229482, 0x478200c0, 0x0682ff20, 0x2300ff24, 0x16840a97, 0x2c00ff24, 0x75834821, 0x46212c22, 0x23226a82, 0x1b82b0c7, 0x2d82c020,
0x402c0022, 0x06832d83, 0x30212882, 0x241684a4, 0xe6d3ffff, 0x282d8366, 0xff66e68f, 0xb89efc00, 0x22338215, 0x822a9c0d, 0xf4dd268d, 0xba0d00ff,
0x26d482e2, 0x00ffbc69, 0x8228dc0b, 0x5ee83197, 0x2000ffb8, 0xff050080, 0x5c8ff2ff, 0x801200ff, 0xeb22ea82, 0xf48284ab, 0xff142e26, 0x68a6ebff,
0xff234b82, 0x82281cf2, 0x19f2229c, 0x2645829c, 0xffff10b8, 0x82ac47f4, 0x247b2145, 0x35214082, 0x220a82c7, 0x8298196d, 0x66d23740, 0xdeffff68,
0xffff67e6, 0xff3233d6, 0x67e6d9ff, 0xd5ffff66, 0x25820080, 0xaec7e731, 0x1ee4ffff, 0xddffffb8, 0xffff3d0a, 0x82d8e3db, 0x82ae20a7, 0x5cdc2160,
0x00228582, 0xea825738, 0xe27ab228, 0x3500ff05, 0xc7823eca, 0xffd8632a, 0x285c2d00, 0xe81300ff, 0x1b22b482, 0xaf8234f3, 0x0852f831, 0xe13300ff,
0x00ffa148, 0xff866b31, 0x82de1b00, 0x992d22ba, 0x21bf8298, 0x1a82e23a, 0xcc4cca27, 0xb39200ff, 0x27448234, 0xffc4f511, 0x7a140e00, 0xcf82c582,
0x66140036, 0x00ff8b66, 0x08b89e14, 0xad01ff0e, 0x00ff9a99, 0x159a19af, 0x102b1282, 0x00ff9042, 0xff2a5c10, 0x828c0000, 0xa10d223c, 0x24ed8246,
0x56ee0200, 0x200082ff, 0x22488242, 0x83d8a310, 0x23448226, 0xaaf1fdff, 0x0f262b82, 0xfcffff5c, 0xd282d438, 0xa0faff27, 0x060200ff, 0x833b82e4,
0xe6012578, 0x088d8b66, 0x174cc318, 0x82fdff21, 0xffff241e, 0x823433fd, 0x00be2658, 0xccfeffff, 0x210982cc, 0xb78200f4, 0x73a80327, 0x7df0ffff,
0x214d8270, 0x0982f773, 0x8b842b2a, 0xccefffff, 0x858b08ce, 0xb7262282, 0xf9fffffd, 0x098252f8, 0xfa228483, 0x7a83ae07, 0xffcd5e27, 0x9aa7f7ff,
0x211a8284, 0x0a82a4b0, 0x8233b321, 0xf9ff23b7, 0x3982b4e8, 0x9e0ff627, 0xae0400ff, 0x228a8214, 0x833e4a0b, 0xbb012291, 0x25a482a6, 0x00ff04b7,
0x5b826b05, 0x89090023, 0x2016837a, 0x27fc820f, 0x6b9cfdff, 0xeb0e00ff, 0xfc224982, 0x0982fb29, 0x82908221, 0x2391225f, 0x268182dd, 0xffff285c,
0x829999a8, 0x727d2104, 0x94260e82, 0x90ffff7b, 0xb082ffff, 0x82700e21, 0x2efc2273, 0x202e8256, 0x270982f0, 0xff6d07fe, 0xec110f00, 0x00218282,
0x8206820a, 0x1f852166, 0xcf207082, 0x01228782, 0x16837bd4, 0xa03a0622, 0x0a278e82, 0xffffd142, 0x82cf57fb, 0xaaf422a4, 0x238282c0, 0xd7e3efff,
0xde215982, 0x26dd82b8, 0xffff0a57, 0x826666f2, 0xfcff232d, 0x3e823373, 0x05fc0922, 0xab211b82, 0x312d8285, 0xff7b14f0, 0xec710200, 0x66f0ffff,
0x0300ff66, 0xa482fba9, 0xa3f2ff27, 0xcafeffff, 0x263b827f, 0xffff01be, 0x823433fd, 0xe6fd2229, 0x19de6b66, 0xe6100222, 0x01228582, 0x5d82fafe,
0x82004221, 0x140e2151, 0x0d210982, 0x224c8200, 0x820c62fc, 0xcc7d21c3, 0x80204782, 0x0f221982, 0x2982cecc, 0x364e1020, 0xb0052205, 0x20268220,
0x22168240, 0x8228b105, 0xfc772109, 0xcb77e182, 0x48b23005, 0x890800ff, 0x0700ffba, 0x00ff3097, 0x826e1206, 0xf833210e, 0x0023c382, 0x829a1907,
0x83082041, 0x0ff922d5, 0x229982e0, 0x839a04f7, 0xa4fd2299, 0x26b0825a, 0xfffffc58, 0x825e7afc, 0x28f62216, 0x211683f6, 0x5e82c0f0, 0x84820220,
0x17f1ff23, 0x25e1820a, 0xffff76d3, 0x998280f1, 0xcc6e0027, 0x1000ffce, 0x276882a1, 0xff646657, 0x52785700, 0xa3830e82, 0xea826e20, 0x73212482,
0x212e8234, 0x4752dcd9, 0x02002305, 0x09821e05, 0x829ad921, 0xf5ff2382, 0x6082ae87, 0xe23afa22, 0x1a207082, 0xfe220482, 0x1683281c, 0xc443fd22,
0xfb251082, 0xf2ffffea, 0x225a824c, 0x82666602, 0x990d2ba8, 0xffff089a, 0xf7999940, 0x34821524, 0x5238e431, 0xb3b1ffff, 0xafffff33, 0xffff14ae,
0x8334b3e1, 0x63f72239, 0x221b8254, 0x821c9af8, 0x87f621ea, 0x09223582, 0xbc825a04, 0x00060023, 0x26838283, 0x00ffdd64, 0x827dbf05, 0xc4200804,
0x0200ffde, 0xff0871bd, 0xcd4c5000, 0x142600ff, 0xfbffff7a, 0x00fff6e8, 0xff866b38, 0x142e1700, 0x00234c82, 0x82978e0c, 0x219c8286, 0xcd820300,
0x99f4ff23, 0x225b8298, 0x82ce4cfb, 0x829f2035, 0x5eff2335, 0x8983cc4c, 0xf608fa2b, 0xa2fcffff, 0xfaffffd0, 0x27098248, 0xffa63bfa, 0x0040fdff,
0xb127ac82, 0xffff142e, 0x82146eda, 0x66e62b6b, 0x91c6ffff, 0xe8ffffec, 0x5b82e2fa, 0x6bf3ff23, 0x274c8286, 0xffea91fc, 0x3e8a0b00, 0x0434a882,
0x8b08707d, 0x4e00ffa7, 0x00ff3e4a, 0xff666651, 0x5ccf1d00, 0x00232982, 0x82f04709, 0xb306271e, 0xf8ffff34, 0x3482ce4c, 0x32b3f727, 0x00ff0e08,
0x08fb8294, 0xb314012d, 0xffff1534, 0xff8f82ab, 0x50785400, 0xe3ffff05, 0xffff299c, 0xff0cd7df, 0x707debff, 0xc7d8ffff, 0xf6ffffae, 0xffff9a99,
0x827a94d4, 0x830d20b7, 0x83fc20c8, 0xee0d21d2, 0xfd203882, 0x0e236783, 0x828bf6a8, 0x5726221a, 0x2267820a, 0x7f90c222, 0x1b200631, 0x00233582,
0x829a9916, 0xcc2d2b1a, 0xffffffcd, 0xff156666, 0x40833d00, 0x0080c228, 0xa900ff05, 0x04833433, 0x75823220, 0xccccd22a, 0xd42700ff, 0xc4ffff7c,
0x0026e882, 0xffb85e18, 0xdb46bfff, 0x99f82205, 0x22b3829a, 0x829999f8, 0x00822641, 0xe6f7ffff, 0x21098267, 0x56821261, 0xc1820420, 0xf6f0ff2c,
0x0200ff88, 0xffff3333, 0x298359f0, 0x7965ef20, 0xcfd02505, 0xeeffff5c, 0xd4227783, 0xd6823eca, 0xde222a83, 0xc2860080, 0xe67b0024, 0xc7541566,
0x60fd2c07, 0x0d00ff83, 0xffff14ee, 0x82fc49fc, 0x23258309, 0xb488d4ff, 0xd720f886, 0x0c419182, 0xbae02205, 0x214982e1, 0x44822a9c, 0x827a5421,
0x85ab220a, 0x25c6821e, 0xff0a9716, 0x04831b00, 0x9a190e27, 0xc22200ff, 0x26588290, 0x080a5726, 0x83dbffff, 0x806d253a, 0xffff1500, 0x85867b82,
0x99848f84, 0x8b20a382, 0xef222582, 0xe182cdcc, 0xc782bd82, 0x826a3c21, 0xc3f526c7, 0xcb0300ff, 0x271a8286, 0xffd861ff, 0xddc4f8ff, 0x8120f182,
0xf8220382, 0x29829999, 0x9a99f823, 0x23068208, 0xffec11bf, 0x20052941, 0x26bb82c4, 0x0ad72700, 0x82d2ffff, 0x00ff24fc, 0x82a430a9, 0x34332c04,
0xc2ffff05, 0x00ff0080, 0x8200803d, 0x999128a7, 0x6effff9a, 0x8b156666, 0x56ff2415, 0x82ffcdcc, 0x82ce2004, 0x4c2c2120, 0xd8260a82, 0xffc73233,
0x2b82e7ff, 0xe6400023, 0x239e8266, 0x20700700, 0x0726d082, 0x00ffe04f, 0x4d827e00, 0xae470722, 0x9e210982, 0x2c9e82ee, 0xff862bfc, 0x46160f00,
0xccfdffff, 0x210982cc, 0x29829899, 0x34331022, 0x00269e82, 0xff34332f, 0x04831100, 0x32332b26, 0x4c1c00ff, 0x21262082, 0xff080080, 0x2b822d00,
0x24060d42, 0xffe27a54, 0x054641ff, 0xd6631c3b, 0x282000ff, 0x1400fff6, 0x00ff9082, 0xff523827, 0x66660900, 0x6b2b00ff, 0x2f6a8286, 0xff2085f2,
0xaec70300, 0x19f2ffff, 0x0200ff9a, 0xff23a082, 0x82cc4cf1, 0xd9ff27a0, 0xff8b34b3, 0x6582ddff, 0xe6f1ff26, 0xe4ffff66, 0xff233582, 0x826666e9,
0x8354206a, 0xdefd22fe, 0x22f382b8, 0x82cecc56, 0x7cd421e8, 0x3d27e882, 0xffff1e85, 0x82e27ac2, 0x8221200a, 0x1c002380, 0x6682ea51, 0xaf853f82,
0x5682b982, 0xc7820020, 0x0f21cd82, 0x225182a6, 0x8296c3fd, 0x3e0a26dd, 0x34fcffff, 0x2c56827a, 0xff289c00, 0x243b0700, 0x800000ff, 0x21098200,
0x29826666, 0xc85e0720, 0x83402005, 0x99e72682, 0xffffc79a, 0x225283d8, 0x821e452c, 0x337028be, 0x86feff34, 0x82157cd4, 0x57f122a9, 0x21c0820a,
0xca827c9f, 0x82ec1121, 0x06b621d4, 0x80220982, 0x83820800, 0x86c27521, 0x352722f4, 0x060841c4, 0x4821202b, 0x631c00ff, 0xffff08d6, 0x21b782ab,
0xb7835400, 0x72e9ff23, 0x22e8822c, 0x85fff668, 0x82fc82f2, 0xb3d92258, 0x62f67034, 0xfb04fb23, 0x69f91864, 0x0e00210c, 0x111a4718, 0xffcd4c22,
0xff251683, 0x33b31100, 0x83d9828b, 0x82118206, 0x15481816, 0x33b32113, 0xc02cc782, 0xeeffff00, 0x088bcd4c, 0x1514f7eb, 0xa8273882, 0x00ff8bf6,
0x843e4a0e, 0x18dd821a, 0x210c4748, 0x1684c2b5, 0x57213182, 0x215f820b, 0x0682eeff, 0x9c211182, 0x18768428, 0x210fa847, 0x16843273, 0x99265482,
0x8b088b9a, 0xbfb234fb, 0x09fe7619, 0x8f00c021, 0x34b3218d, 0xcc31bf88, 0xff0e088b, 0x90024a00, 0x811584f7, 0xf7ffff06, 0x212d8320, 0xdc82e0f8,
0x38820482, 0x08221082, 0x0885077b, 0x0700ff26, 0xffff3c1f, 0x09821882, 0x8b5efa24, 0x31829b08, 0x82c0ff21, 0xded42c2b, 0xfaffffb8, 0xff6000c0,
0x8280f5ff, 0x21d6250f, 0x14f70848, 0x0d831d82, 0xe1290023, 0x221d8448, 0x83ffffb6, 0x2b002e2d, 0xff08b81e, 0x9a190f00, 0x0800ff06, 0x237082e0,
0x00200700, 0x7b835282, 0x1c821083, 0x3dca0125, 0x848b059b, 0x2070831e, 0x821d84c5, 0xa1052309, 0xa782088b, 0x82210021, 0x5a002452, 0x82054861,
0xecd12452, 0x830100ff, 0x4c002c04, 0x0200ffcc, 0x8c8b32b3, 0x82948b08, 0x9a99212c, 0x19213682, 0x48d5829a, 0xc72005c5, 0xab217182, 0x23b48207,
0x10d80800, 0x07225c82, 0x2082f027, 0x82f02721, 0x2010820a, 0x82068508, 0x66e62137, 0x37821684, 0x8b9a1924, 0xa5827b08, 0xd8000022, 0xd8218e85,
0x211f8210, 0x1f870ad7, 0x8bf62823, 0x82268208, 0x21168506, 0x5883f8ff, 0x27f7ff2c, 0x077b08f0, 0x01f0ffff, 0x1e8206b7, 0x8bef2722, 0x3a841e82,
0x11821e88, 0x47822582, 0x85672621, 0x0800221b, 0x226c82d9, 0x826b069b, 0x1ec72237, 0x213783b8, 0x25820080, 0xa470f827, 0x33f9ffff, 0x200a8234,
0x054a49f6, 0xea11fe2c, 0x5a0000ff, 0xfeffff03, 0x0982a410, 0x829bb521, 0x6e272609, 0x2100ff08, 0x3e3682e1, 0x056a9ca5, 0xe30901ff, 0xa2ffffd6,
0xff153433, 0x34b3fcff, 0xccadffff, 0x00ff05cc, 0x82cecc7e, 0xc0fc2721, 0x5200ff00, 0x10820040, 0x82801821, 0xc014210a, 0x072a0a83, 0x00fffe3f,
0xff9a1906, 0x04830400, 0x66e60828, 0x0900ff8b, 0x57820080, 0x00803a23, 0x250c8207, 0xff666603, 0x0482fdff, 0x2005cf44, 0x058348fb, 0x48a1e522,
0xa0205383, 0xfd22ac83, 0x21820060, 0x0a836020, 0x00a0fc24, 0xcb827108, 0x0040e725, 0x8207a506, 0x84eb23a6, 0x418e00ff, 0x156cfc20, 0x82ca2005,
0x9da68222, 0x867f9141, 0x9ee5223d, 0x227f83b8, 0x858b7c94, 0x82a1839c, 0x251d820a, 0xc5ffff08, 0xb9824861, 0xa0f6ff22, 0x0421e682, 0x209c8220,
0x280482f7, 0x48410700, 0xdef9ffff, 0x2bda82b8, 0xff1e8518, 0x3433ebff, 0x2c00ff05, 0xff24f682, 0x15ccccfd, 0xfd826a82, 0x21053b42, 0x0c410700,
0x412c8207, 0x11830513, 0xe6f8ff23, 0x28648266, 0x089a19f7, 0x066b076b, 0x20e882ab, 0x30288277, 0x666664ff, 0xe8ffff15, 0x00ff66e6, 0x059a990b,
0x207c829b, 0x42358200, 0x22830754, 0x8b293382, 0x0634fb08, 0x21f7ffff, 0x22438248, 0x84b8def8, 0x204e861e, 0x214a827b, 0x9f82e1e8, 0x4861f427,
0xfaffff05, 0x251d827e, 0xffec51fd, 0xc382fcff, 0x66faff2b, 0x08858b66, 0xe6e9ffff, 0x205a8266, 0x434b82ff, 0x72830719, 0x00e00826, 0x74f7088b,
0x22195643, 0x82b81e16, 0x05002336, 0x4f82e2fa, 0xff9a9924, 0x04820500, 0x80faff2c, 0x0200ff00, 0xf70832b3, 0xbd918b94, 0x86060b44, 0x20f72167,
0xfb216282, 0x192a4414, 0xbd8afd82, 0xff1e8523, 0x84bd85ff, 0x20bd8e68, 0x05f54320, 0x85065244, 0xb85420bd, 0xfb0e25bd, 0x8ba4f770, 0x18056d62,
0x210b1688, 0xe1570080, 0x78771809, 0xb4f72113, 0x17527418, 0x27168561, 0x00ff9cfb, 0x159a19a0, 0xcc2b5682, 0x00ffb85e, 0xffb81e16, 0x82c0e9ff,
0x832120cc, 0x40f52afa, 0xffff0800, 0x07ae87d4, 0x24cc83f7, 0x0700802b, 0x05b044ff, 0x82c00a21, 0x222d8323, 0x82401600, 0x33002494, 0x820848a1,
0x9e1e2163, 0x35823f82, 0x2400ff2a, 0xff7b9082, 0xb85e2300, 0x9b204082, 0xff292c82, 0x051ec59b, 0x6ffeffff, 0x2904865c, 0xfffef4fd, 0x4c37ffff,
0x0982ffff, 0x25828b20, 0xc9f6fd22, 0xfd278682, 0x00ff0af7, 0x8258c700, 0xe5702625, 0x8f0100ff, 0x261a8270, 0xff66a6f4, 0x84450b00, 0xa4702140,
0x45821583, 0x9338ff27, 0x0e0200ff, 0x82768256, 0x227d8305, 0x82201002, 0xaec8213b, 0x10201682, 0x90212583, 0x272a82aa, 0xff08a490, 0x67e66b00,
0x66200483, 0xeb3c8182, 0x00ff9438, 0xff6ac625, 0xcd4ce6ff, 0x4c2200ff, 0xe7ffffcc, 0x00ff9999, 0x08008014, 0x032e0682, 0x00ffb85e, 0xff9a990a,
0x48210c00, 0x57839a8b, 0x67191120, 0x4b26128a, 0xeeffff06, 0xb1826666, 0x3c82f120, 0x9ef1ff23, 0x250a82b8, 0x084861ee, 0x3e827c8b, 0xb99e2108,
0xe1f3ffff, 0xffff9948, 0x08b89efc, 0x21cbffff, 0xd3ffff47, 0xffff34b3, 0xff0040c4, 0xcc4c94ff, 0xb6322d82, 0x0e089a99, 0xf754f72f, 0x064b1574,
0x06cb074b, 0x0c8207cb, 0x221be15a, 0x1807d4fb, 0x22097e8f, 0x5affff66, 0x3b7623e1, 0xfb8b2219, 0x21788614, 0x8085074b, 0xcb200783, 0x4b200b84,
0x13838c82, 0xcb200783, 0xcb200b84, 0x0f85a084, 0xcb20ac85, 0x0783b486, 0x8354fb21, 0x2122874c, 0x458515cb, 0x8b06cb24, 0x3e85154b, 0x0e074b2f,
0x6f01ff2f, 0x158b9a19, 0xdee0feff, 0x7d4f18b8, 0x19802009, 0x2508d13a, 0x08d663e6, 0x008200ff, 0xf6ffff29, 0x00ffce4c, 0x5b852b07, 0x00270573,
0x8b7bd408, 0x19f4f708, 0x260f9d29, 0x00ff8bba, 0x8346d608, 0x3e0a2134, 0x32106764, 0x8b9a99e4, 0xb4f7bc08, 0x0634fb15, 0x00ff07bb, 0x82900210,
0x82112040, 0x00ff2415, 0x8248610e, 0x66662104, 0x10824082, 0xffff0827, 0xff8e02ff, 0x220a8200, 0x82f2ffff, 0x0e002390, 0xdf416666, 0x241a8205,
0x0671fdef, 0x223f829b, 0x868f0200, 0x99f12222, 0x253d849a, 0x80edffff, 0x22838b00, 0x8bcc4c29, 0xb3f0ffff, 0x82ffff34, 0x200a821b, 0x25ca83ee,
0x9002f0ff, 0x28427b07, 0x0b972109, 0x66211e88, 0x82b48366, 0xeeff2150, 0x00236982, 0x84cc4c0f, 0xcee6181a, 0x02102508, 0x075b068f, 0x8f82b882,
0x83e13a21, 0xf6a82450, 0x82f4ffff, 0xffff256d, 0x080080eb, 0xfc291182, 0x00ffcdcc, 0xff377900, 0x210985ff, 0x0982a8f6, 0x5783e620, 0xe405492d,
0x8029ffff, 0x01ff0500, 0x829a192b, 0x054925f3, 0xd600ff1e, 0x00271083, 0xff86eb00, 0x82190300, 0x830020bf, 0x330323e7, 0x0f828b33, 0x82333321,
0x14002151, 0x1b83f484, 0x9a990b3a, 0x0e088b7d, 0xff9e30fb, 0x0080af00, 0x2800ff15, 0x0579b89e, 0x280400ff, 0xbf6d8682, 0x52782205, 0x240f828a,
0x088b5278, 0x2242828f, 0x82420004, 0x1ac1218d, 0xc7264c82, 0x0100ff6d, 0xe082e288, 0x00c00c26, 0x200500ff, 0x00228882, 0x0a822009, 0x82a00321,
0xe0062104, 0x07220482, 0x8b59b87e, 0x09002305, 0x29824861, 0x33330927, 0x961e00ff, 0x20628203, 0x22d78301, 0x8267e606, 0x21a1835c, 0x1982b305,
0x99820620, 0x9920b582, 0x16202982, 0x19369f84, 0xffff059a, 0x07b89ecd, 0xedffff8b, 0xffff48e1, 0xff9a99f5, 0x2682efff, 0xccefff2d, 0xf7ffffcc,
0xff0866e6, 0x82d9c6ff, 0x4ce32214, 0x252b82ce, 0xffb8dee4, 0xe084f2ff, 0xe4222e83, 0x39826666, 0x9a99e122, 0xf1232582, 0x78070080, 0x47820624,
0x54f75423, 0x20cf8205, 0x2e668269, 0x862baaff, 0xe65600ff, 0x96ffff66, 0x828bad07, 0xf16b282a, 0xffff0613, 0x820060f9, 0x82fa203c, 0xfaff23cc,
0x0a82b89e, 0xc382f920, 0xfd210682, 0x20d98260, 0x84168300, 0x82012009, 0xfdff23f2, 0xb48200a0, 0x00400e2a, 0xa0e3ffff, 0x82820500, 0xfb208b82,
0xff20d782, 0xfd200484, 0xf9220983, 0x3c8248e1, 0xb89ef928, 0x76ffff08, 0xd283cdcc, 0xcd4cf325, 0x830700ff, 0x82f4201c, 0x0b002104, 0xff210482,
0x2dd282fa, 0x9000ffac, 0x96150080, 0x8b82948b, 0x96660880, 0x8b803d06, 0x968b9482, 0x94968b08, 0x088b9694, 0xd4fbb0f7, 0xdffeff15, 0xff069a19,
0xd763e6ff, 0xea265a82, 0xffff8f82, 0xb48380ea, 0x6666e623, 0x06736708, 0x19070021, 0x430d3509, 0x4620065e, 0x1983fc82, 0x5e431e83, 0x163c4606,
0x70fb0e2a, 0x196900ff, 0x1574f79a, 0xe6216982, 0x226f8266, 0x82b81ef7, 0xe1f8225d, 0x0b074847, 0xd1836b20, 0x3f05ad48, 0xffff0020, 0xff66c6f9,
0x00e00800, 0xff9b088b, 0x9a19ffff, 0xfaffff05, 0x8b070080, 0xfbffff5f, 0xd52f3883, 0xffff6666, 0xffb81eec, 0x9a19dcff, 0x8244f708, 0x19ec2656,
0x2300ff9a, 0x201782e6, 0x290482fb, 0x9a992a00, 0xff08b78b, 0x36820500, 0x00ff9b26, 0x05060000, 0x24127e4b, 0x089af907, 0x237a82ab, 0xc6cc0900,
0x2d10b548, 0xe1e6ffff, 0x00ff0648, 0xff856b1d, 0x71821200, 0xb3130028, 0x2000ff33, 0xec826666, 0x484f2520, 0x80392105, 0xd120ad82, 0x00210482,
0x2104822e, 0xe249c5ff, 0x26068305, 0x4cd3ffff, 0x82ffffcc, 0x20ed821b, 0x058e43c6, 0xccccda2b, 0xbd1300ff, 0xdfffff71, 0x27ad8299, 0xff295c1d,
0x9a99edff, 0xa628a682, 0x74fb66e6, 0x1fffff15, 0x47319241, 0x924105cf, 0x94f7292a, 0xff15e4f7, 0x48e11e00, 0x1924c782, 0x00ffb81e, 0x0a820482,
0x08201082, 0xf9820685, 0x8466e621, 0xffff2216, 0x05e951e1, 0xb7820683, 0x3483e620, 0x1ee1ff23, 0x832982b8, 0x82a52006, 0x48e1212a, 0xe6224c82,
0xc6828b66, 0x9a198f26, 0xfb15e4fb, 0xff209282, 0x10375518, 0x8206b945, 0x1bb9452d, 0xff22c792, 0xa483ffff, 0x00801a26, 0x66ebffff, 0x15209782,
0xe42c0983, 0x088b9a99, 0x00ff04f7, 0x159a99fa, 0x2208b682, 0xff912d05, 0xb27dfdff, 0x050500ff, 0xfbffffa1, 0x00ffba69, 0x085c0f03, 0x65e4ffff,
0x0f00ff60, 0x8205a4f0, 0xe650261f, 0xc90100ff, 0x260982fc, 0x00fffe14, 0x82bcd400, 0xe01a2109, 0xff24ba82, 0x8baec7ee, 0xd42b6982, 0xe5ffff7c,
0xffff48a1, 0x835078dd, 0xa6e22216, 0x21168266, 0xe38261ed, 0x48611922, 0x19226782, 0x53820040, 0x8216ff21, 0x51072310, 0x748285ec, 0xdf45f920,
0x40d92405, 0x82850600, 0x5efa272b, 0xffff87b8, 0xad82c0fe, 0x8320fa21, 0x3afb282b, 0xe9ffffe2, 0x75ff66c6, 0xf02505a0, 0xffff9a19, 0x05a34de8,
0x0040e922, 0xec203182, 0x0022cf82, 0x7482e10f, 0x0040fb27, 0x3d1600ff, 0x21618370, 0xca829999, 0xfa281483, 0xff8f0080, 0x67e6f9ff, 0x65838f83,
0xf7ffff26, 0x858b00c0, 0x6e526c83, 0x8ced2c06, 0xf2ffffce, 0xffff1f45, 0x827ad4df, 0x82cb82bb, 0x6bdd2142, 0xff282283, 0x00ffc3b5, 0x7ad6631a,
0xfd223e83, 0x70824c17, 0xa01afd22, 0x2a21ea82, 0x21fc82a8, 0xab827d5f, 0x823a3021, 0x5ee3292d, 0xff057bb8, 0x7e4afcff, 0x13211682, 0x054c4132,
0x82faff21, 0x83ff2076, 0x83082005, 0x22a88337, 0x82fa8e00, 0x229d831b, 0x82582901, 0x33b33309, 0x6600ff08, 0xffffe17a, 0x059a992c, 0x802f01ff,
0x10820600, 0xd32d2a83, 0xff056666, 0x32330100, 0x4c0200ff, 0x217282cd, 0x098234b3, 0xf3828020, 0x6602002d, 0xfb0e0867, 0xf804f830, 0x4b531534,
0x5b25175f, 0xbb065b07, 0x09184f07, 0x2307404b, 0x8b0020f7, 0x4f05b76f, 0x5b2613c0, 0xd0ffff07, 0x398bb81e, 0x3988c020, 0x39824020, 0xc7ffff24,
0x738e47e1, 0x8248e121, 0x1ef729df, 0x44fb08b8, 0x056bcb07, 0xcf220c82, 0xef7bb89e, 0x61d12c06, 0xf4ffff48, 0x084a0040, 0x831a01ff, 0x200c83dd,
0x231c85cc, 0x34332f00, 0x2f28a082, 0xcb08cccc, 0x44f705ab, 0xe120ad84, 0xf8262f82, 0x00ff66e6, 0x43821e07, 0x2605024d, 0x15b4fb24, 0x83cb064b,
0x8211201f, 0x065d4859, 0x00205982, 0x8b220e82, 0x0684ff08, 0x097ebf19, 0xee298082, 0x4b084861, 0xfb04f707, 0x66ab4514, 0xf7f3ef26, 0x065b15f4,
0x24058377, 0x40f5ffff, 0x76048200, 0x232108a7, 0x2b501807, 0xff852309, 0x5e18f1ff, 0xaa8308da, 0x25134863, 0x66e60000, 0x1d820523, 0x34b3f223,
0x051678ff, 0xcc4cf522, 0x2205d476, 0x8206bb08, 0xcd4c2208, 0x2118828b, 0x048333b3, 0x0a823420, 0xcc4c0d26, 0x07a4f708, 0x33210983, 0x217b8234,
0x1982cd4c, 0x82cccc21, 0x236c8290, 0xcbf4f708, 0xcc219d85, 0x205482cc, 0x212184f5, 0x0a820040, 0x00c0f22b, 0x073cfb08, 0xf70614fb, 0x843c843c,
0x203c84b8, 0x20c282c0, 0x843c83f2, 0x77cc20d6, 0x3888097e, 0x0724fc22, 0xcc21a288, 0x837483cd, 0x333322a2, 0x24a29a8b, 0x14f7073c, 0x85718206,
0x82db877b, 0x0d002175, 0x38855782, 0x18850882, 0xd183f983, 0x08004023, 0x836b83f8, 0x20668623, 0x289e850a, 0xf7088b34, 0x1554fb2c, 0x82f98af3,
0x850a2084, 0x851d82f9, 0x41f589bc, 0xfb210893, 0x82bc84a4, 0x065f4146, 0xf32683a1, 0x1100ff07, 0x918284ab, 0x7c540e22, 0x820bdb64, 0xb3112111,
0x11e38718, 0x00ff0e2b, 0xff852b10, 0x00806e00, 0x08ef8215, 0x1e05d32a, 0x900700ff, 0xd9ffffa4, 0x00ffa470, 0xff3d6a06, 0xd8a3e7ff, 0x0500ff08,
0xffffec11, 0xff9a19ed, 0x713d0f00, 0x4ce0ffff, 0x7c23c282, 0x828ba470, 0x9009221a, 0x2a5d82e5, 0xff25060a, 0x80780000, 0x830a00ff, 0xcc0032a6,
0xffff08e0, 0xff0b9744, 0xd46dbb00, 0xffffff05, 0x227d8233, 0x8232b3f5, 0xd7a32609, 0xe6f5ffff, 0x2a6f8266, 0x083433f6, 0xa1df01ff, 0x8237f746,
0x2c00377e, 0xffffe0fa, 0xff5c6ff8, 0xce8c2600, 0x95f9ffff, 0x1800ffc2, 0x4882b85e, 0xe04ffb22, 0x8a2ad882, 0xf2ffff3e, 0x00ff1659, 0xa282b00d,
0x8383ee20, 0x52b80422, 0xf5341e82, 0x00ff54b8, 0xff70bd02, 0x6666d5ff, 0xe80b00ff, 0xc8fffff6, 0x2205da46, 0x829e6ff6, 0xf9f52268, 0x21788258,
0x78828087, 0x8200c021, 0x20332109, 0xbb21b882, 0x200a8280, 0x05144b44, 0x820ad721, 0xfa5e25b8, 0x4c0000ff, 0x0a20d982, 0x26083b82, 0xcc0900ff,
0xfeff08cc, 0xff52f82a, 0x33b3b5ff, 0xec00ff15, 0xffffcd4c, 0x0533b313, 0x00ff22f7, 0xff9a1924, 0x82e63d00, 0x8372206e, 0x4c122632, 0x4600ffce,
0x2ecf82b3, 0x46a113ff, 0x21ed00ff, 0x22fb0548, 0x83dbffff, 0x2bc23a8b, 0x8dffff85, 0xffff8ec2, 0xff33b3ed, 0x6766b8ff, 0xe500ff08, 0xffffe13a,
0x825882a9, 0xdbf6229f, 0x21f982e8, 0xf482a886, 0xff182427, 0x5879f7ff, 0x22d6828b, 0x82f0e7fb, 0xe7fb311b, 0x0100ffef, 0xffff6290, 0xffc5e0fc,
0x00200300, 0xc0281a82, 0x00ff8f02, 0x056c1c3f, 0xe6211582, 0x24158267, 0xffff9819, 0x20fc83fe, 0x31bb8204, 0xff8b0890, 0x6c870800, 0xdd0600ff,
0x0700ff71, 0xcd829478, 0x828f2221, 0x04002353, 0x1b825218, 0x10180422, 0x70212e82, 0x21388220, 0x4282fa1e, 0x82c0df21, 0x02402490, 0x82054b90,
0x7a142611, 0xfcfbffff, 0x217482ee, 0x09829a99, 0x8266e621, 0xccfc2684, 0xbbbb08cc, 0x20aaa015, 0x20aa88f0, 0x20aa8ec4, 0x82aa896b, 0x21aa8655,
0xaa848b99, 0x19240922, 0x7921a582, 0x21af8217, 0xb982e7db, 0x85e98621, 0x841020aa, 0x831120aa, 0x822120aa, 0x3b1f214e, 0xbe20aa83, 0xff24aa85,
0x71fdbfff, 0x2e21ae83, 0x21a48214, 0x78827eff, 0x8b008021, 0xf75b22ae, 0x23af8204, 0x1a240900, 0x16205b83, 0xe6205b83, 0xea205b83, 0x10205b8b,
0x22205b83, 0x3c205b83, 0xbc205b83, 0x72205b89, 0x20205b83, 0xfc225182, 0x5b8200e0, 0x82209021, 0x058f415b, 0x08b4e837, 0xf6ffff8b, 0xfffff4dd,
0xff3288f8, 0x0c22f9ff, 0x77f7ffff, 0x0bb241ce, 0x3282ae20, 0x82df8f21, 0x06e12152, 0x20225c82, 0xae830842, 0x00ff7026, 0x058f0240, 0xe9261582,
0x0200ff7a, 0xb241c235, 0xfb0e280c, 0x00ffeb30, 0x8266e630, 0x0abc68b5, 0xec91f222, 0x12be4018, 0xabf1ff23, 0x26848286, 0x08e03aef, 0x47cb075b,
0x1122050d, 0xf06886ab, 0x0d002305, 0x338a146e, 0x390e0e44, 0x0820c510, 0x54fb079b, 0xeb077b06, 0x198f01ff, 0x8b211594, 0xa9ffff35, 0x5082ea51,
0x7b149522, 0xbe3cdc83, 0x00ff5138, 0xffecd120, 0xb047c6ff, 0xb33100ff, 0xddffff33, 0xff089819, 0x9a19da00, 0x3227d182, 0x00ff7c94, 0x826ee622,
0xcccc2c24, 0xb33900ff, 0x00ff8b34, 0x82cccc41, 0x6a00343b, 0xff3586eb, 0x0eae5600, 0x7e088b21, 0xe632ffff, 0x7b8f156c, 0x098209f2, 0xff66e627,
0x9a990400, 0x224d828b, 0x82ae8711, 0x350e2238, 0x82b884c3, 0xc510220a, 0x2243831f, 0x8222b004, 0x96e32128, 0x5f212882, 0x210982bc, 0x0982fd34,
0x820e0221, 0x070b3131, 0xfaffffae, 0x00ffe6fb, 0xff71bd07, 0xa0eff4ff, 0xf322b582, 0x35828e02, 0x54eeff32, 0xf1ffff7b, 0xffff3dca, 0xffeb91f2,
0x5278eeff, 0xff236382, 0x82e83bf2, 0x83f52022, 0xcc072875, 0x00ff86cd, 0x8299190b, 0xb32c2948, 0xff152933, 0xb81ef3ff, 0x05211d83, 0x2450821f,
0xffffe0cf, 0x235f82fb, 0x341e0b00, 0x03222182, 0x7a821dfa, 0x6a823020, 0xc8560422, 0xe1200982, 0x0422f882, 0xb790dea4, 0xb7847a20, 0xb7852020,
0x28822120, 0x8219e421, 0xbe5f21ad, 0x34210982, 0x2109827a, 0xb7890d02, 0xb788e720, 0xb7869f20, 0x0000ff24, 0xac826210, 0x82cc4c21, 0xcdcc26bb,
0x99f2ffff, 0x210e829a, 0x67836666, 0x01803f27, 0x193f00ff, 0x20a88a9a, 0x21418220, 0xa888dfcf, 0xa8843520, 0x6b821c20, 0x82e53021, 0xca56216b,
0xe1210982, 0x21098207, 0xa88adca4, 0x41343321, 0xe4211460, 0x08604118, 0x6041fe20, 0xc00a2108, 0xee215c82, 0x28668214, 0xffff32b3, 0x8b66e6f4,
0x20da827e, 0x05af7aff, 0x82cecc21, 0x33b321a5, 0x8030a082, 0x0e088b00, 0x15b4f78b, 0x00ffc08b, 0xb69a9972, 0x1108e618, 0x568b602d, 0xff568b08,
0x66668dff, 0x82ffff60, 0x84918223, 0x22128406, 0x82c08bb6, 0x19ff21bb, 0x7022ed82, 0xe18266e6, 0xcc4c9d3e, 0x9cffff8b, 0x00ff7b54, 0xff34b313,
0x1f45c7ff, 0x332900ff, 0xffff0833, 0x07333392, 0x67834982, 0x67916020, 0x6d234985, 0x8207cdcc, 0xcc4c2634, 0xccd6ffff, 0x204882cd, 0x20ab824c,
0x200e83ec, 0x23ab849b, 0xef01ffef, 0x00216c82, 0x226c8460, 0x82ecd1d3, 0x14dd276c, 0xdcffff7a, 0x0a82ae47, 0x5ccfd322, 0x1782e683, 0x2300ff24,
0x1682ecd1, 0xff0a1724, 0x1b822b00, 0x06850820, 0x00291685, 0x8bf6e823, 0x2e2c00ff, 0x22168214, 0x8264e600, 0x5c4f2a1b, 0x19ddffff, 0x2400ff9c,
0x22cb8299, 0x8366e6d2, 0x990327e6, 0x8600ff99, 0xd78234b3, 0x0ad7e122, 0xb7265f82, 0xffff8f42, 0x2182d9fb, 0x0180d125, 0x82daffff, 0xff75296e,
0x0080eeff, 0xc0edffff, 0xd9200482, 0xf1220483, 0xbd82b89e, 0x82004021, 0x613c2d5b, 0x1600ff48, 0xff05b81e, 0x7ebc0000, 0x45210482, 0x21048282,
0x048245b9, 0x820c2021, 0xe6b02104, 0x00236682, 0x827b5403, 0x9a02278d, 0xfdffffe1, 0x6682701d, 0x94d8fc23, 0x2c068208, 0xfff2b2fe, 0xb28effff,
0xa7feffff, 0x2104826c, 0x048208fb, 0x8280ca21, 0x53a12b05, 0x8fffff74, 0xff0514eb, 0x7283f8ff, 0xb483df20, 0x8240fc21, 0x82e82081, 0x088b22b9,
0x214f828b, 0xff82111b, 0x3433fe27, 0x612500ff, 0x31668348, 0x8ba4f041, 0x286100ff, 0x0500fff6, 0x00ffbe7f, 0xdd821927, 0x1a641e27, 0x00ffc708,
0x6245822f, 0x66230543, 0x828b9a59, 0xa9ff282d, 0x00ff0040, 0x8233336d, 0xf8ff2262, 0x26ab8252, 0xffff281c, 0x8266e6fa, 0xcd4c2609, 0x4cf7ffff,
0x2e2582cd, 0x64666c01, 0x64d800ff, 0xffff1582, 0x821423f9, 0x15f922b3, 0x21c5823c, 0x2b82d8ce, 0xfff82826, 0x1679fbff, 0x1f27ae82, 0xffff5438,
0x822a6d50, 0x1ee2224b, 0x219082b8, 0x0a8284ab, 0x84c0fc27, 0x180400ff, 0x26258210, 0x00ff225b, 0x82c8f601, 0x5a642109, 0xff235682, 0x82e81bfa,
0x29fa264b, 0xfcffff36, 0x221682cb, 0x82a430fd, 0xaaf12160, 0xea2b4b82, 0xffff1e05, 0x0564bbd0, 0x825600ff, 0x92ff23b4, 0x0a8266e6, 0x48e13227,
0xb80a00ff, 0x220a8252, 0x820ce207, 0x82a8204c, 0xd60427e5, 0x0600ff46, 0xf582d0e2, 0xfc290723, 0x2c068208, 0xff786903, 0x6ce7feff, 0x790300ff,
0x21a78258, 0x0982369e, 0x82080121, 0xd7e32756, 0x2300ff0a, 0x40820080, 0x3233e127, 0x33af00ff, 0x220a8234, 0x821c1a08, 0xde4f2141, 0x3f26a782,
0x0900ff7c, 0x44822270, 0x3c8a0922, 0x37083082, 0xff24f0ff, 0x34f31000, 0x4cf2ffff, 0x0e00ffcc, 0xffffc0ee, 0x8bccccec, 0xf88b0e08, 0x94f81554,
0x0794fc06, 0xf80694fc, 0xf80e0794, 0xa000ff34, 0xff1566e6, 0x70fd1b00, 0x19214082, 0x2dcd82b0, 0xfffabef6, 0x7c141500, 0xbef0ffff, 0x40820876,
0xffae0729, 0xecd11d00, 0x830700ff, 0x4f202209, 0x2229825c, 0x83cc4c20, 0x19672fb6, 0xb0ffff9a, 0x07f748a1, 0xde76ffff, 0x7e828bb8, 0x820fc421,
0xc3ff271f, 0xffff3e8a, 0x04824ae8, 0x66e6d227, 0xc2d2ffff, 0x251a828e, 0xff0a57c9, 0xbf83c9ff, 0x73feff23, 0x21e58233, 0xf482b087, 0xff52f824,
0xd982ffff, 0x8ffeff23, 0x2113825c, 0x73829a99, 0x82b3e621, 0x4c19221e, 0x27e982cc, 0xb5c2f514, 0x1e00ffb6, 0x00216982, 0x051b7132, 0xcc4c8237,
0xffff1522, 0xff666611, 0x9a99ee00, 0xf3ffff05, 0xffff3f0a, 0x21ee82e9, 0x4483f9ff, 0xcecce823, 0x510f828b, 0xe1310539, 0x00ff5278, 0xffc3b50b,
0x0a97e2ff, 0x941600ff, 0x221a827b, 0x43082a5c, 0xdb200651, 0xff286583, 0xffb89ea3, 0x14aeaeff, 0xf8214b82, 0x219582d2, 0x0f82bef9, 0xf45dfc28,
0x3cf7ffff, 0x05828b2a, 0x82c23521, 0xf7ff28ef, 0x00ff16f9, 0x82310803, 0xfef42b10, 0x210600ff, 0xf9ffffcb, 0x4b827cd4, 0xcd0c2226, 0xccddffff,
0x0622b183, 0x15821f25, 0xff0ad732, 0xd7030800, 0xf4fcffff, 0x0700ff7c, 0x088b71fd, 0xbf221082, 0x05828bbf, 0x8294b821, 0x24a62145, 0x3a214082,
0x211b82e1, 0x1a820436, 0xae075126, 0xd95c00ff, 0x0022cd82, 0xfd82f323, 0xc2f5db22, 0x1720fd82, 0xe82c9783, 0x00ffec51, 0xff3dca1e, 0x3273f4ff,
0xf5210982, 0x224b83c4, 0x82328804, 0xac042c4b, 0x0000ff48, 0x00ff8844, 0x82d88304, 0xf47d2c09, 0xf5ffff08, 0x00ffa470, 0x82289c12, 0x22098386,
0x82b04715, 0xeb162229, 0x221a8284, 0x826afcff, 0x66d82171, 0x19212a82, 0x2009829a, 0x21048299, 0x55823302, 0x66660822, 0x7c368582, 0x00ffcecc,
0x159a1948, 0x02cbffff, 0xff608b90, 0x66e6d5ff, 0xfb83568b, 0x82e6cb21, 0xfd2a2834, 0xd4ffff70, 0x83c02a1c, 0x19342281, 0x2557829a, 0xffd6e32b,
0x0a842a00, 0xd6e33522, 0x00244382, 0x00ff9002, 0x602c1b82, 0x088b56b6, 0xc800ff0e, 0xeaf7cd4c, 0xf13a5082, 0x00ff9919, 0xff90c219, 0xcdccebff,
0x571a00ff, 0xe4ffff0a, 0x00ff3333, 0x3682a318, 0x59aeff23, 0x2f6d829a, 0xffffc435, 0xff0040c8, 0x66a6aaff, 0x9dffff8b, 0x27055054, 0xff86abea,
0xe3e50200, 0x63203a82, 0x04276d82, 0xffff7fea, 0x82a430ec, 0xc62d266c, 0x8700ffa8, 0x219a82a6, 0x76828265, 0x34333925, 0x832d00ff, 0xe6122154,
0xb532cf83, 0xffff6766, 0x1566e650, 0x3d0100ff, 0x0900ff70, 0x09821639, 0xff8c2c26, 0x64db0c00, 0x0f22bc82, 0xdb82ec91, 0x193b0022, 0xef257b82,
0x00ffec11, 0x25098362, 0xff146ea1, 0x7a825500, 0xfaffff29, 0x00ff6a7c, 0x82445c00, 0x00802109, 0x7d210982, 0x21098256, 0xfe826666, 0x80e1ff25,
0x826e8b00, 0xb468210d, 0xe626c782, 0xf6ffff66, 0x9182243b, 0x7ad45d31, 0xd9a5ffff, 0x0800ff98, 0xffff20c5, 0x8267a693, 0x23968236, 0xcdccdeff,
0x0f2a1e82, 0xffff9899, 0xfff628f7, 0x50822700, 0xccecff2e, 0x3600ffcc, 0x08856866, 0x6672ffff, 0x2228c682, 0x8a159a99, 0xfdffff9d, 0x2b281883,
0xff75cccc, 0x9a193200, 0xd6221d82, 0x588234b3, 0x16828e20, 0xe6c3ff22, 0xde27d582, 0xffff1e45, 0x83ff7f62, 0xf6a83a53, 0x5ce0ffff, 0x1500ff28,
0xffff29dc, 0xffe2fae3, 0x33b31a00, 0x6ee9ffff, 0x2a1e8214, 0xff291c1f, 0x7c547e00, 0x825900ff, 0x3d002d72, 0x00ffcecc, 0xff9a991c, 0xcccc1000,
0x0790ee18, 0x146eec2c, 0x4a00ff15, 0xffff3eca, 0x1a8219ab, 0xc2b50e27, 0xffff8b30, 0x05495fc5, 0xcc8cf02c, 0xf5feffff, 0xf2ffff40, 0x0982d8e3,
0xffa2c526, 0x34f3f5ff, 0x00233c82, 0x82ffd48c, 0x05e02a00, 0x8a1d00ff, 0x00ff8b3e, 0x2d8b8220, 0x34530400, 0xf52200ff, 0x0b00ffc2, 0x25833caa,
0xffee282a, 0x2a970300, 0x660000ff, 0x0322e382, 0x29820080, 0x9a990323, 0x25068208, 0xff66e674, 0x8e83b1ff, 0x48616225, 0x8294ffff, 0x1e00230e,
0xf18266a6, 0x33b92608, 0xf7feff33, 0xff15ec91, 0xeb91f0ff, 0xe9f6ffff, 0xdbfffffc, 0xffff3e8a, 0xffbc74e7, 0xec91dfff, 0xc5d3ffff, 0x375f8220,
0xff0a571a, 0x86abebff, 0x2b4300ff, 0xd5ffff86, 0x00ff5c0f, 0x8b70fd5f, 0x20221a82, 0x64827cd4, 0xa2302431, 0x050500ff, 0x2700ff60, 0x00ff7c14,
0x8244ab0c, 0x14132b1a, 0x1c00ff7a, 0x00ff0a97, 0x1482540d, 0x00c0202c, 0x4c0600ff, 0x2300ffcc, 0x7e824821, 0x5ccfde22, 0x5e2e7382, 0xe0ffffb6,
0xffff0080, 0xff9a19fc, 0xfa41e3ff, 0x33b02205, 0x051c4134, 0xb3213f82, 0x827a8234, 0x0b0023a9, 0x3582cccc, 0x67669927, 0x3397ffff, 0x21b48234,
0x958217f1, 0x824ae621, 0x4af32aaf, 0xe1ffff3d, 0xffff4661, 0x316e82f8, 0x2a9cdbff, 0x2800ff08, 0xffffae87, 0xffead1e6, 0xf3822e00, 0x33f1ff2b,
0x3200ff34, 0x088b0080, 0x20b082d0, 0x2972823e, 0x146e1b00, 0x2c00ffb9, 0x5782d863, 0x7a94e627, 0xe5faffff, 0x2bfc821e, 0xffffc4b5, 0xffe06ffd,
0x7a54e9ff, 0xff2be282, 0xffe27a99, 0x4a0c0000, 0x82b6ffff, 0x2d002348, 0x255632b3, 0xcc162806, 0xf80e08ce, 0x18f4f754, 0x200f4c96, 0x26bd8284,
0x087c54ee, 0x820704fb, 0x82f72009, 0xf8ff23bd, 0x9d82cccc, 0xffcdcc24, 0x6545f7ff, 0x82068305, 0xb8de2411, 0x190700ff, 0x24089101, 0xeeffffff,
0x42ff1814, 0x05fc7409, 0x7c540e22, 0x8b851682, 0x0682ee20, 0x1684ff20, 0x66870482, 0xc0239d83, 0x830544fb, 0xfc29216b, 0xc7215482, 0x210482f0,
0x6b8204d6, 0x62b42821, 0xb4200518, 0xf8221b82, 0x6b8e18e4, 0x19d0f521, 0x84091600, 0x18002054, 0x82202598, 0xaa12236b, 0x001964fb, 0xff230b86,
0x8833b3f8, 0x183320db, 0x210a888a, 0x6f8267e6, 0x8b333328, 0xcc0800ff, 0xdb8208cd, 0x8c66e621, 0xff8521db, 0xdb846f82, 0x6b187b20, 0xdb8b0d35,
0x99e8fe2f, 0xffff079a, 0xffae47c4, 0x32b33b00, 0x21698205, 0x5782a430, 0xffcecc2b, 0x8fc2f5ff, 0xe60300ff, 0x21098266, 0x42831fc5, 0x14aeea22,
0xed27e882, 0xffffeb51, 0x82ccccee, 0x33e9220a, 0xa6f91834, 0x84622014, 0xff082a46, 0x9a197100, 0xe68effff, 0x36d08266, 0xffafc725, 0x142edaff,
0x4c3200ff, 0xebffffcc, 0x00ff3433, 0x82666635, 0x25002657, 0xff0634b3, 0x34931800, 0x4e002309, 0xd68234f3, 0x08231082, 0x820764f7, 0x439a1809,
0x94fb2513, 0xff15d4fb, 0x0a579418, 0x180ae841, 0x24160541, 0xcc0800ff, 0x221b82cd, 0x82333307, 0x88d621a0, 0xf722c182, 0xc1837829, 0x8d82f720,
0x0f674118, 0x9b6bcb21, 0x88d6225e, 0x837083ff, 0x82782004, 0x04d62157, 0x0820c883, 0x08b19418, 0x92f8ff21, 0x0c25795e, 0xdceb8b21, 0x21bdde5e,
0xbddc4bab, 0x1c41ab20, 0xef0e285d, 0xf4f774f8, 0x7a06eb15, 0x41180d3d, 0x491808bb, 0x2b2a1906, 0x07d4f706, 0x15d4fb6b, 0x098394fb, 0x0694f729,
0xfb07d4fb, 0x187cf744, 0x26136646, 0x0833b3f2, 0x82ffff8b, 0x00ff2806, 0xff34b30a, 0x754cf5ff, 0xff220770, 0x4d180d00, 0x0a230984, 0x838b33b3,
0xa9281910, 0x5beb2218, 0x8330ad15, 0x82342074, 0x4cf5227a, 0x187584cc, 0x201d01e3, 0x825e822b, 0x18308aa5, 0x8510784e, 0x85cc20bd, 0x424e1885,
0xd44e180d, 0x85758212, 0xb3f224f0, 0x91088b34, 0x054f18bd, 0x8e308d10, 0x2a8c9ebd, 0x7cf7c4fb, 0xfb06eb15, 0x182b07d4, 0x25180544, 0xff8b0754,
0x93182300, 0x0e331209, 0x3200ff2f, 0x01ffe1ba, 0x15527885, 0x210800ff, 0x7200ff48, 0x9e2c059c, 0x0a00ffb9, 0x00ff1e45, 0x8ba43012, 0x7229f182,
0xfb067b54, 0x64fb0714, 0x37318506, 0x52786500, 0xbd00ff05, 0xffff1f45, 0x15ae879a, 0xff0714f7, 0xcc4c7200, 0x12211e82, 0x27e08333, 0xff9a9910,
0xe2baf5ff, 0x33265582, 0xefffff32, 0x458270bd, 0x34b33222, 0x05202e84, 0xf7274782, 0x1594fb64, 0x19ffff8b, 0x20144613, 0x2dcb98d4, 0x54f80774,
0x0774fb06, 0x34f7af0e, 0x408224f8, 0x821a0028, 0x1500ff90, 0x04820080, 0xff707d2b, 0x00801a00, 0x06bb088b, 0x49f3823b, 0x072105ab, 0x22748233,
0x820ad7f8, 0xcccc2489, 0x82ab088b, 0x820820a2, 0x00ff2108, 0x00241883, 0x8bf62807, 0xd7251982, 0x07db080a, 0x831a82bb, 0x234e853e, 0x9082eaff,
0xe5239f82, 0x8208707d, 0x820983f9, 0x08507d63, 0x2205607d, 0x1834fb08, 0x830c1447, 0x05135f87, 0x14f70827, 0x84fb4b07, 0x82878515, 0x256e8282,
0xf8ffff33, 0x6d82cccc, 0x87cdcc21, 0x07904587, 0x0a234d18, 0xd1828791, 0x87a06e84, 0x5f717d21, 0x878d06d3, 0xd5829185, 0x85717d21, 0x1a002ada,
0x088b8f82, 0xd4f706bb, 0x20a08c8b, 0x41a08834, 0x47181228, 0xa0ba0865, 0xea22c984, 0x86840080, 0x88092841, 0x411986a0, 0x0e2608c5, 0xf4f764f8,
0xc6543b15, 0xc5501805, 0x0e7f4113, 0x2606cb60, 0x080080e5, 0x413b075b, 0x1a8a0c9a, 0x18b4fb21, 0x2117b451, 0x024234f8, 0x0b46410c, 0x48183383,
0xfb2514af, 0xf715bbb4, 0x05936334, 0xf707bb26, 0x159efb54, 0x21082c49, 0x2c4904d6, 0xfc292607, 0x0655088b, 0x22788355, 0x86fc29f7, 0x84f82015,
0x6210241f, 0x8257088b, 0x2af722ab, 0x2238823d, 0x49c3d5f8, 0x00290c49, 0x079a1935, 0x19c9ffff, 0x1822839a, 0x2013454c, 0x235482bf, 0x87d60800,
0x20089247, 0x08924779, 0xd0823b82, 0x66e63622, 0x88202285, 0x2a212282, 0x07b5473d, 0x8bc3d524, 0x1e82bf08, 0x2205b747, 0x48964306, 0x55260b16,
0x3700ff07, 0x1e88cccc, 0xb4850720, 0xda848720, 0x08792108, 0xfb0e0757, 0xcb00ff30, 0x01ff9a19, 0x1590a2bb, 0xd2f9ffff, 0x0500ffb0, 0xffffead1,
0xfff41df6, 0xc0200082, 0xd43b1382, 0xfaffff7b, 0xff08842e, 0x65a695ff, 0xdd9bffff, 0xb5ffff42, 0xffffe17a, 0x8266667e, 0x19b22349, 0x0682089a,
0x9a198223, 0x251782da, 0x05f766e6, 0x0382088b, 0x00ffda2b, 0x8bcc0c4a, 0xf37d00ff, 0x2c1f8234, 0x9a194e00, 0x8100ff40, 0xffff32b3, 0x23708296,
0xc4d56300, 0xf4275182, 0xfeff66e6, 0x82705d54, 0x80c7227b, 0x27468200, 0xff0080d8, 0x90c22500, 0x35223882, 0x3883e0fa, 0x52780c3c, 0x340400ff,
0x2a00fffe, 0x00ff9ad9, 0xffbaa94f, 0x14ae5700, 0x0600ff08, 0x04826250, 0xfff8f326, 0xd1a20b00, 0x06223082, 0xae825c4f, 0x82080c21, 0xab4f271a,
0xa8ffff85, 0x39822a5c, 0xff343326, 0x9a19d5ff, 0xf3225b82, 0x50820080, 0x19caff25, 0x83ffff98, 0xdaff2167, 0x77831b83, 0xaf0e0839, 0x4c2b02ff,
0x9300ffcc, 0xfb1566e6, 0xbb00ff17, 0xff05ce4c, 0x8299e9ff, 0xcc1f2a71, 0xdcffffcc, 0x679c0080, 0x22b1828b, 0x82b85ee9, 0x21e9224a, 0x236a8248,
0x7d770040, 0xec2f1282, 0xffffcd4c, 0x7d0040f2, 0xf8ffff78, 0x82763333, 0x83fd2012, 0x403b25e2, 0xceffff00, 0x2f204283, 0xc3220983, 0x4083ffff,
0x831ec221, 0xc7ce2740, 0xcdffffae, 0x4b8284eb, 0xe2fac222, 0xff213182, 0x235182ff, 0x059a191f, 0x1e241183, 0x3200ffb8, 0xff280482, 0xff48e1cd,
0x48e13d00, 0x06843882, 0x00231685, 0x82482132, 0xde3d22ef, 0x243883b8, 0x00ff521a, 0x82388295, 0x991927eb, 0x66f7ffff, 0x05828f66, 0xff008024,
0x04820500, 0x19f8ff27, 0x00ff089a, 0x26a38383, 0x059a9944, 0x821600ff, 0xe0ff21e7, 0x00250482, 0x7a008023, 0x225a83af, 0x8200c016, 0x2605824f,
0xc00600ff, 0x82999f00, 0xb3332a30, 0x2400ff34, 0x00ff6626, 0x0845820c, 0x4c470021, 0xdbffffce, 0x00ffcccc, 0x0832b333, 0xcc73feff, 0x2c00ffce,
0xff159a19, 0xd7e3a0ff, 0x1804f706, 0x4507094c, 0x338306c5, 0x00801a22, 0x8d455c83, 0x4511820b, 0x04300605, 0xffffff07, 0x158b291c, 0xb3c300ff,
0xd3ffff32, 0xbe204b84, 0x5d2d3783, 0xff0548a1, 0x0040f8ff, 0x00ff8896, 0x2211830d, 0x82006002, 0x48212109, 0x0a859782, 0x0f824020, 0x14830720,
0xb89e0b27, 0x0700ff96, 0x211a83a1, 0x93826c08, 0x3c0a0623, 0x06026795, 0xcc4c0a22, 0x10207f83, 0x00277483, 0x8348610f, 0x820900ff, 0xf2ff234d,
0x48820080, 0x0a834120, 0x0040a222, 0xad296a82, 0xffff1e85, 0x059a59c6, 0x906a180e, 0x34b326fa, 0x4c0e00ff, 0x200483cd, 0x085f72cc, 0x66e65a36,
0x3339ffff, 0xfb331534, 0xffff0504, 0xfff8f3fb, 0x10d8faff, 0x06310482, 0xfcffffe9, 0xffffd0b7, 0xff717df9, 0x4060ffff, 0x06937708, 0x12c30022,
0x2206105e, 0x849a19ff, 0x828b2009, 0x4cfa231a, 0x35828b08, 0xfff87326, 0xf0070200, 0xa1294982, 0x0300ff48, 0x530800c0, 0x315782bb, 0xffa4f0f5,
0x00a00800, 0xd7feffff, 0x0f00ff0a, 0x0e83ae27, 0x00ff4226, 0x085c0f0a, 0x9b210a82, 0x820a84e8, 0x37292619, 0x280100ff, 0x260e82f6, 0xffffec11,
0x82be5ff7, 0xfa24321e, 0xe0ffffe1, 0xff055c4f, 0x1f854800, 0x475c00ff, 0x220a82ae, 0x82213008, 0x82702025, 0x1c0f2258, 0x203482ab, 0x275382c7,
0xff68660a, 0x8dd7f7ff, 0x0a223482, 0x0a825679, 0x8240d521, 0xcecc2619, 0xe6f0ffff, 0x270e8267, 0xffffcccc, 0x089a99f5, 0x23af0742, 0x15dcfb84,
0x600bfb61, 0xbf600ab8, 0x09cf6005, 0x1806c461, 0x240ba058, 0x0040f5ff, 0x203e848b, 0x24068508, 0x4cf5ffff, 0x064562cd, 0x33b3f226, 0xeb8b088b,
0x59185ebc, 0x5e860f30, 0xff343323, 0x235e84ff, 0x157cf7eb, 0x2505d25c, 0x540e00ff, 0xde4fff7b, 0x0528510a, 0x85201183, 0xff211684, 0x1b7218ff,
0xcc4c2112, 0x1805614f, 0x2617586d, 0xd4fb04f7, 0x1814fb15, 0x200f2d54, 0x05644f34, 0x50183583, 0xf7201371, 0x8d193082, 0x948215d2, 0x4f066e4f,
0x64b60f0f, 0x2108ca4a, 0x0a83f8ff, 0x5d82ff20, 0x8c0ad34f, 0xaf0e2e64, 0x19cf01ff, 0x1554f79a, 0xc00800ff, 0x26c28200, 0xff9a5906, 0x83400700,
0x8210820a, 0x20178337, 0x052c71ff, 0xff241682, 0x6666f6ff, 0x094ec318, 0x18a6f921, 0x830c77b0, 0x004021ca, 0x2205474b, 0x83c0f8ff, 0x82e62009,
0x44fb222d, 0x215f82db, 0x54838030, 0x82992621, 0x8427205f, 0x2010820a, 0x82718208, 0xffff2406, 0x55cc4cda, 0xce220643, 0x5f839a99, 0x16850683,
0x0dead618, 0x8280cf21, 0x473f8255, 0x00210574, 0x232d852f, 0x3b66e630, 0xab83c29f, 0xff22d983, 0xde82f7ff, 0x06850820, 0xa684ff20, 0xb3f8ff23,
0x21bb8333, 0x9082cd4c, 0x4cf7ff24, 0x2885ffcd, 0x17411682, 0x272d8205, 0xfff6e8fb, 0x66e688ff, 0x00216682, 0x368382a1, 0xff827500, 0xb9fd2800,
0xcd1c00ff, 0x3a00ff0e, 0x00ffe27a, 0x823cca14, 0xfdff2a29, 0x95ffff70, 0xff05ce0c, 0x05596b00, 0xe6ffff27, 0xcc6a00ff, 0x221082cc, 0x51ec513a,
0x293c06eb, 0xffffa430, 0xff5c4fe3, 0x0a970000, 0x94ffffff, 0x00ff087a, 0xff806609, 0x9002faff, 0xb3260982, 0xfdffff32, 0x09829a19, 0x8b9c9922,
0x0e291a82, 0xff8be0fa, 0x00c00e00, 0x26128292, 0x00ff4861, 0x820a170d, 0x680f3716, 0x1500fff4, 0xff860a97, 0x52f81d00, 0x6eeaffff, 0x0f00ff18,
0x8782f668, 0x840bfe2c, 0x640100ff, 0xecffff18, 0x2f82e4da, 0xff62702b, 0x1c45e1ff, 0x051000ff, 0x2f1e8220, 0xffe07af7, 0xd6e3f2ff, 0x33f1ffff,
0xf7ffff34, 0xee200483, 0x2305dc41, 0x8b00c0e5, 0x2621a682, 0x835a8266, 0x1a00240a, 0x82080040, 0x8c03217d, 0x00270482, 0x00fffe76, 0x82697103,
0x90c021b8, 0x56210982, 0x264c8287, 0xff0c62d9, 0x82780c00, 0xccd32280, 0x24a082cc, 0xffff3333, 0x059b41d1, 0x48a1c422, 0xc92c4c82, 0xffff1e45,
0x5d71fdf0, 0x57eeffff, 0xff22b882, 0x2282b3ff, 0xeb11e622, 0x6621b282, 0x22048266, 0x82719a99, 0xf5ff23e6, 0x2d821e05, 0x85ebf523, 0x2692828f,
0x00ff29dc, 0x82cc4c06, 0xe3ed2a5f, 0xf5ffffd7, 0xffffcc8c, 0x281482f4, 0xe23af8ff, 0x8cfeffff, 0x210482cd, 0x1e82c2f5, 0xa470ea22, 0x972a5d82,
0xffff860a, 0xffae07e2, 0x52840f00, 0x08f66822, 0x63210a82, 0x215d82d7, 0x1f41166e, 0x19fb2206, 0x20d4829a, 0x2058829c, 0x2658830f, 0xa4300301,
0x181f00ff, 0x230a985e, 0xff9ad909, 0x2113c344, 0x16840040, 0xf3ffff24, 0xa88366a6, 0x00c0f229, 0xf6ffff8b, 0x45ff6626, 0xb320131f, 0x2106e966,
0x51410c00, 0xe6a02805, 0xff15eb66, 0x82400d00, 0x96002034, 0x33f62262, 0x0b264533, 0x9cffff21, 0xe6092262, 0x82798467, 0x33332154, 0x012f9082,
0xfb98193f, 0xfdff156c, 0x0668e6e0, 0x83f7ffff, 0x43ff2069, 0xff200e9f, 0x97220082, 0xa643057b, 0x43d38308, 0xd92105a6, 0x2442829a, 0x98191f02,
0x09084406, 0x08449820, 0x00ff250b, 0x9bd0e600, 0x00213a82, 0x23db8208, 0x9c99f9ff, 0x4c2a1d82, 0xf6ffffcc, 0x088b6466, 0x1f822f0e, 0xff8a1e2c,
0x66e6d1ff, 0xfeffff15, 0x188200e0, 0x82008021, 0xdf6f2b22, 0xa1f7ffff, 0x0900ff48, 0x6282c5a0, 0x0f200023, 0x2284825c, 0x8205beef, 0x00202267,
0x2721828b, 0x00ffc315, 0x8c40d505, 0xff220a82, 0x4782083a, 0xff07c024, 0x41820400, 0x1e010031, 0x0600ff71, 0x00ff864b, 0x9200a001, 0x82ccf708,
0x2309829c, 0x20f9ffff, 0x01225a82, 0x09826c47, 0x82a49021, 0x82a02031, 0x21fb226e, 0x203c8248, 0x23198201, 0x66e6f8ff, 0xb7213782, 0x211e820a,
0x6782f628, 0x7e822120, 0xb81e0022, 0x20221e82, 0x2e82c275, 0x82001021, 0xa009217d, 0x7e217d84, 0x212082b8, 0xb382be5f, 0x0982de20, 0xfa7e0927,
0xfbffff08, 0x205e8260, 0x210f8225, 0x8683eaff, 0xe23a5a26, 0xa6a2ffff, 0x4f225382, 0x1e829a99, 0xd882ee20, 0x82f3ff21, 0xecff25d3, 0xff7f1e85,
0x21050050, 0x7e83e1f4, 0x83400621, 0x213e8389, 0xe7824f05, 0x5238fb22, 0x2e83db82, 0x8241fb21, 0x80ff231e, 0xc2829f72, 0x24821520, 0x1e120022,
0x19316e82, 0x00ffaec7, 0xff908211, 0xb99e1f00, 0xc00f00ff, 0x25a38200, 0xff9a19ac, 0x34825500, 0x991f0028, 0x8500ff98, 0x4382ce4c, 0x0482cc20,
0x66e62f22, 0x794ae186, 0x93f82205, 0x27bb82f8, 0xffff4861, 0x8b8260f6, 0xdf229882, 0xdd8286ab, 0x05781426, 0xe0f7ffff, 0xff28dd82, 0xfff648f9,
0x022bfaff, 0xe120dd82, 0xf8222682, 0x25828400, 0xfa3fff26, 0x20fbffff, 0xfe27a882, 0xffff90e1, 0x827ab4f9, 0x8380201e, 0xc7fe241a, 0x84060e78,
0x00ff240c, 0x49420007, 0x0629063f, 0xffffa430, 0x900040ff, 0x21108208, 0x1a8247e1, 0x823cff21, 0x1f452136, 0xef219682, 0x836a82de, 0xe0ff215a,
0xff23ba82, 0x8270bddf, 0x02de212a, 0xf6218082, 0x21808360, 0x808288f8, 0x60a5f726, 0x210100ff, 0xf6228082, 0xc1820681, 0x7b830520, 0x0f82d520,
0x2a1a0032, 0x91ffff3e, 0x00ffea11, 0xff289c80, 0x34b3abff, 0x7f226382, 0x0a829082, 0xffa8c826, 0xebb1e5ff, 0x192b1e82, 0xfaffff98, 0xffffd2df,
0x829a19d5, 0xc7df353d, 0x1201ffdc, 0xff156866, 0x67e6e6ff, 0xcc0d00ff, 0xeaffffcd, 0x002d0482, 0xff9a990e, 0x9919eeff, 0x4c0f00ff, 0x232982cc,
0x06018080, 0x33261082, 0xf0ffff32, 0x248234b3, 0xf1201f83, 0xe6270e83, 0xffff66e6, 0x826766f2, 0x33832b24, 0x7b00ff34, 0xff1533b3, 0x9783faff,
0x82a1f521, 0xfef821a7, 0x21069a76, 0xdc83f7ff, 0x1e05f625, 0x8271fb08, 0xc0f72c4b, 0x0a00ff00, 0xffffbade, 0x8233f3f8, 0x8ec22109, 0x40203582,
0x5e281383, 0x01ff08b8, 0xffcc0c07, 0x2105a570, 0x6182f9fe, 0xe6c0fe28, 0x00ff1566, 0x2085e005, 0x22066167, 0x4290c20a, 0x0a210692, 0x243482de,
0x6666db00, 0x2b108206, 0xffff0060, 0xff4821f5, 0xe21a0700, 0x3d210982, 0x82388270, 0x82ff206d, 0xff082b8f, 0x0080fafe, 0xffaf0e06, 0xad832601,
0x3433aa22, 0x11305682, 0xff869a19, 0x1e851100, 0x9ef7ffff, 0x0e00ffb8, 0xf422a983, 0xd38290c2, 0x8280a121, 0xc0352371, 0x57850500, 0x83020021,
0x81042181, 0x09215c82, 0x21dd8201, 0x2e821efd, 0xb1830820, 0x99c3ff2e, 0xb500ff98, 0xff05842b, 0x8440fdff, 0x802b2e82, 0xf6ffff84, 0x00ff34de,
0x827c7f04, 0x20ab8258, 0x2a2e82ff, 0xc2ffff08, 0xffffb8de, 0x8248a1eb, 0x82212053, 0x9cff233f, 0x3482b89e, 0xfc82c320, 0xdeebff22, 0xde200a83,
0x00227f82, 0x20826163, 0x66c2ff23, 0x202b8267, 0x237f8280, 0x83a0f7ff, 0xdc825a83, 0xc580fb22, 0x7a825a83, 0x3bdf0222, 0xa9825a84, 0x7eff342b,
0x7360ffff, 0x01ff0534, 0x2cda8218, 0x66e6dfff, 0xfaffff15, 0x00fff067, 0x2cfd8310, 0xff8ceced, 0xf6280900, 0x30efffff, 0x211882a4, 0x8a82ec51,
0xde823520, 0x7dbcff23, 0x2d7f8270, 0xffaec7ee, 0x90021600, 0xa6e5ffff, 0x8975ff66, 0x07e22105, 0x00221382, 0x29825c8f, 0xe9d1a327, 0x751401ff,
0x372982c2, 0xff3333f7, 0x862b1a00, 0x99e7ffff, 0x1100ff9a, 0xffff7a94, 0x8b6666e4, 0xb7222582, 0x61189919, 0xff200c9b, 0x23053067, 0x087a54ee,
0x4a06304a, 0x2a670847, 0xf0482d08, 0x00ff06a4, 0xff52385c, 0xcc4cebfe, 0xe9235f82, 0x63ff3d8a, 0xf12205a2, 0x5a82cd4c, 0x8268e621, 0x4ce1223b,
0x2c4283cc, 0xffe2faca, 0xe1fa2a00, 0x05d5ffff, 0x708d181e, 0x34002107, 0x16827d82, 0x82a47021, 0x83b28404, 0x34270825, 0xff08862b, 0xcc4cca00,
0x704300ff, 0x00ff05a4, 0xffb0c710, 0x5c8f0500, 0x330800ff, 0x1200ff30, 0xffff3233, 0x82d04cfb, 0x34b32d18, 0xc1feff08, 0xffff9899, 0x1566e675,
0x820b936d, 0x187a20ae, 0x670af0b2, 0xff231eeb, 0x829a99f2, 0x85ee20ab, 0x437f18ab, 0xef0e2813, 0x14f784f7, 0x82d4f715, 0x661a21f2, 0x0021d882,
0x82768215, 0x27378204, 0x66661a00, 0x0754f708, 0x09826f82, 0xeaffff25, 0x83ff6866, 0xffff3519, 0x8b9899e5, 0x0604fb08, 0x5b0714fb, 0x6b5b05ab,
0x0714f705, 0x18830e82, 0x28823782, 0x2d836620, 0x7a826620, 0x9a99e523, 0x05625808, 0x3d860982, 0x6666ea23, 0x285b83ff, 0x04f8088b, 0x74fc154b,
0x069b7806, 0xff34333d, 0x3333e3ff, 0xcc1c00ff, 0xdcffffcc, 0x088bcdcc, 0x19dfffff, 0xffff0699, 0x82cd4cef, 0x99f1224c, 0x0b39779a, 0xee201182,
0x0e204a83, 0xff200482, 0x00231b83, 0x8233b310, 0x10002333, 0xce8266e6, 0x0ad70822, 0x0723b982, 0x18fff628, 0x240ab2aa, 0xe6b0feff, 0x20d18266,
0x203986ff, 0x24508467, 0x991100ff, 0x3239839a, 0xff85eb42, 0x3a000000, 0xfeffff05, 0xffff152e, 0x826019fa, 0x82e62009, 0x82fa20ce, 0x600f8220,
0xbf1805e6, 0x05222d3d, 0x834618a4, 0x54052206, 0x2c09823a, 0x00ff8736, 0x08ae0705, 0xe6c500ff, 0x22dc8265, 0x828836fe, 0x16f92159, 0xdb211a82,
0x210982e6, 0xd982c2aa, 0x285cfa24, 0x9c82ff08, 0x18ffee21, 0x2117abbf, 0xde829082, 0x82070a57, 0x9c19230a, 0x0682082a, 0xe1216d85, 0x85638248,
0x8788206d, 0x8242206d, 0x21528214, 0xee8205c6, 0x82f09d21, 0xa0e626e7, 0x660e00ff, 0x20048368, 0x22398266, 0x83008012, 0xb3102240, 0x21778234,
0x16849899, 0xeeffff3e, 0x088b6866, 0xf730fb0e, 0x1554f894, 0xf70714fb, 0x14fb0614, 0x6b0514f7, 0x8b1514fb, 0xfb220782, 0xa2820644, 0x47b4c418,
0x07c4f727, 0xe680ffff, 0x23538266, 0x8b6766ed, 0x18056668, 0x2c0a7191, 0x52ffffcb, 0xff15cc4c, 0x146edbff, 0x271e8207, 0xffba5ef8, 0x66e6f9ff,
0xf8200486, 0x2005f643, 0x29c282cd, 0x66e60000, 0xcdffff05, 0x2783c2b5, 0x727df722, 0x6722278d, 0x4482088b, 0x68836620, 0x6884f820, 0x4482f920,
0x1906002f, 0x00ff8b9a, 0x089a9907, 0x333300ff, 0x228b8232, 0x4533b3cd, 0xff2306f8, 0x826666f8, 0x22279071, 0x82989924, 0x20348361, 0x863f83ff,
0x82438204, 0x32002561, 0xff06cd4c, 0x22850583, 0x228d9920, 0x22839920, 0xeb912422, 0x07222282, 0x798248a1, 0xa6847f82, 0x95826782, 0x7e82a182,
0x3f820720, 0x833e4a21, 0x289c2122, 0x6625228f, 0xf72f0e08, 0x1c9841d4, 0xf9777020, 0x09e15808, 0x5b074422, 0x200c5f56, 0xa99718ff, 0x186b2009,
0x2117a7b2, 0x828214f7, 0xdf0f0622, 0x20088282, 0xff2b8705, 0xe08ffcff, 0xb80200ff, 0xfaffff52, 0xff081098, 0xa4b01100, 0xa4dcffff, 0x00ff05dc,
0x460a8231, 0x0028052f, 0xff217005, 0x5ccf0a00, 0xc0211f82, 0x263a8383, 0xffff146e, 0x82a430f5, 0x971b2730, 0xc8ffff0a, 0x3082ecd1, 0x9a194622,
0x42185c82, 0x421809c3, 0xbd820a75, 0xf027f723, 0x20a182ff, 0x220482cc, 0x60ff10d8, 0x3b2005f6, 0xf922bf82, 0x1d8220f0, 0xd678fa36, 0x700300ff,
0xfdffff20, 0x00ffae47, 0x08f06705, 0x4feeffff, 0x23267182, 0xff05245b, 0x0a82ceff, 0x2206d246, 0x823e4afd, 0x7a9421ad, 0x80210482, 0x21c18200,
0x6c419a99, 0x22308205, 0x8366e6f9, 0x9082214b, 0xe4274b91, 0x00fff668, 0x82f02737, 0xe6b9254b, 0x24fb0666, 0x21094f58, 0x224a717d, 0x1a002505,
0x088b9082, 0x198ac718, 0x830cd542, 0x1af12068, 0x2b0de679, 0xf8cbaf0e, 0x06ab1534, 0x6b0754fc, 0x0cb95918, 0x181c0021, 0x260ffc73, 0x00ff0a57,
0x8266a61c, 0x82a82004, 0x59232996, 0xcb088b9a, 0xd4f7158b, 0xfb293b83, 0x54f806d4, 0x8efbbb07, 0x22cb8215, 0x583e2af7, 0xff230523, 0x58c2d5f8,
0x97580c23, 0x07002308, 0x9c583d2a, 0x08002105, 0x180d1f58, 0x240e45cc, 0x00ff07c1, 0x05544536, 0x8208f65f, 0x8b3e213c, 0xd5225782, 0x935808c2,
0x86462006, 0x2907224b, 0x05ac60ba, 0x06550823, 0x058b58c1, 0x115e5d19, 0x180d0359, 0x220a0bc6, 0x42550755, 0xd6210e9b, 0x2ace8346, 0x5708ba29,
0xf7e4f707, 0x836b158e, 0x06ab26eb, 0x592300ff, 0x23818298, 0xff68a61c, 0x23142741, 0xcc4ce3ff, 0xff251984, 0x34b3dcff, 0x9a47188b, 0x04f72462,
0x5315fcfb, 0x564e081a, 0xc0f22208, 0x09564e00, 0x1682f520, 0x485e0020, 0x07db2609, 0x3b0614fb, 0x20348307, 0x06365fb3, 0x82f5ff21, 0x100219b7,
0x62348a11, 0x0d26052a, 0x00ff3433, 0x4075cc0a, 0x0d002306, 0x65823333, 0x6c180684, 0x57830969, 0x08cccc28, 0x14f7073b, 0x6582db06, 0x34841e82,
0x2283cc20, 0x43820482, 0x34213485, 0x4f11858b, 0xfb2a0a1f, 0xaf0e0764, 0xd4f794f7, 0x7b18cb15, 0x00220cb1, 0x9718540e, 0xeb76079d, 0x86ab2105,
0x63054964, 0x4b240af4, 0xeeffff06, 0x2105b447, 0x1d8433b3, 0xee248982, 0x4b087a54, 0x19828482, 0x0e227a82, 0x1882cd4c, 0x0022f482, 0xb982b311,
0xcba4f727, 0x0624fb15, 0x075d435b, 0x200f7c5d, 0x0ce05b2b, 0x80150023, 0x25b18200, 0x0800801a, 0x368207bb, 0x18168246, 0x430bd781, 0x8f240aac,
0x74f8088b, 0x1a20d382, 0x22054347, 0x18ff707d, 0x210a29be, 0xc918f4f7, 0xfb2317ce, 0x1834fb84, 0x250a2563, 0xe3ffff66, 0xd7820a57, 0x485ec818,
0x74fbeb25, 0x4254fb15, 0xea630cfe, 0x82ef820d, 0x0d385daa, 0x8c14f721, 0x0ac95ec9, 0x2d167e54, 0xf774f80e, 0x84fb15c4, 0x052b2b07, 0x564184fb,
0x5df72017, 0xa9590803, 0x05e7440f, 0x48008021, 0x6b5d067e, 0xfb2b230a, 0x1582150c, 0x66660425, 0x82fcffff, 0x03002e04, 0xffff9a99, 0x8b9a99fb,
0xc3065308, 0x201a9607, 0x8382825b, 0x83338523, 0x82b88238, 0x53082310, 0x1a975307, 0x4c825b20, 0xff205883, 0x6c846285, 0x8b247682, 0x5306c308,
0xa0211a84, 0x821a8200, 0xfcff2204, 0x22098260, 0x77006004, 0x088305ec, 0x00221885, 0xc183a003, 0x08261082, 0x06c307c3, 0x3e8300ff, 0x53834e85,
0x0828ab85, 0x14fc07bb, 0x84f7152b, 0x00285382, 0xff842b42, 0x7bd43500, 0x7c210483, 0x240e82ff, 0xf7088b85, 0x62398284, 0x3d4309df, 0x0806440a,
0x51cc4c21, 0x342308fa, 0x82fb088b, 0x18ff2030, 0x23099290, 0x34b3dfff, 0xd8222982, 0x1982cc4c, 0x21090544, 0x3e780040, 0x44ff2005, 0x0e241b3a,
0xcb04f9ef, 0x20081a55, 0x55338207, 0xab200add, 0xdf554c82, 0x05055205, 0xff271d82, 0x8b0040f7, 0x52f4fc08, 0x19830842, 0x84f8ff21, 0x82f72080,
0x0afa4780, 0xf8222d83, 0x3052cccc, 0x18082005, 0x820878b1, 0x0855553f, 0x359cb683, 0x6882f820, 0xa7067956, 0x065b2b9b, 0x06bb07cb, 0x154be4fb,
0x0a8234fb, 0x0634f727, 0x74f7074b, 0x310d8a8b, 0x04f7af0e, 0xff1534f8, 0xb81ec2ff, 0xcdffff8b, 0x048448e1, 0xc3260a82, 0xff081e05, 0xdd4b20ff,
0x201d8205, 0x05185dff, 0xaec7ce22, 0x8314185d, 0x3c002c3e, 0xff08e2fa, 0x9a19df00, 0x83ff8b07, 0x214b820c, 0x388666e6, 0x9a19c229, 0xfbbb088b,
0x5c2b1574, 0x002835b4, 0xffcccc8b, 0xcdcc1d00, 0xfc2bac82, 0x00ff0080, 0x85008003, 0x82ffffff, 0xfdff280a, 0xffffb81e, 0x820020fc, 0xc0d22bb0,
0xc1ffff00, 0x00ffff7f, 0x1482de04, 0x6866a82c, 0x423800ff, 0xc7ffff90, 0x9b8234b3, 0x82613821, 0x82c720e0, 0x57002723, 0xff86b89e, 0x3e823e00,
0x5e2d0026, 0xff8f08b8, 0x2205fb4f, 0x50c03f00, 0xff230587, 0x844080fc, 0x21548264, 0x6f82402d, 0xade7d229, 0xe500ff05, 0x829e34b3, 0x21428481,
0x7f823f38, 0x9a59a822, 0xe1206b82, 0xc1205682, 0xff2a4b82, 0x0870bdd2, 0xfdffff87, 0x1b820120, 0xa182a020, 0x9c82a783, 0x82b87e21, 0xe6d2277d,
0x2dffff66, 0x4782cd4c, 0x1582bd82, 0xf4503182, 0x60002105, 0x02216182, 0x210482e0, 0xc682e003, 0x6c2d0022, 0x3e2aec82, 0xffff5c8f, 0xff9c19fb,
0x28825700, 0x99c7ff23, 0x7ecb8298, 0xab250504, 0xf71594f7, 0x9a691804, 0x8186180f, 0xffcd2111, 0x29059b68, 0x8b3333f7, 0x0604fb08, 0x3591074b,
0xd744cc20, 0x17cc6805, 0x6b2135b8, 0x21588207, 0xc882ccdc, 0x82cc1c21, 0x33e32587, 0x2300ff34, 0xf7218783, 0x26b88254, 0x8b343323, 0x851c00ff,
0x8282821e, 0x0834261a, 0xfb07d4f7, 0x25a483d4, 0x1554f7dc, 0x577de4fb, 0x0040210e, 0x21050444, 0xc27b5b08, 0x82f72017, 0x0c1e6732, 0x08017418,
0xe57cbb20, 0x7c91820a, 0x0e250946, 0x8bab30fb, 0x25a9b615, 0xcb07d4fb, 0x3d8224f7, 0xc85a0020, 0x06bb2113, 0x08207584, 0x0024fd82, 0xff333307,
0x0e820485, 0x4c0fc064, 0x5b210a2f, 0xfcb61807, 0x0a985a0d, 0x4a4c6b20, 0xff742505, 0x0ecdf8ff, 0xcc2b0482, 0xf7ffff8c, 0x088bf232, 0x975b065b,
0x5b6b201a, 0xbb20177b, 0x2105b24c, 0x6c183333, 0xab251108, 0xf79cf707, 0x677e41c4, 0xffebef32, 0x34b38100, 0xfeffff15, 0xff079e4f, 0x63b00100,
0xff2cb382, 0x00ff566e, 0xffc89600, 0xa370ffff, 0x80210982, 0x20098300, 0x230982a4, 0xdb089a99, 0x4c2d2b82, 0x00ff15cc, 0x8b48212c, 0xde2300ff,
0x200482b8, 0x230a83e1, 0x0852382b, 0x06821182, 0xdcffff23, 0x2216851e, 0x82d3ffff, 0x8508201b, 0x23168506, 0x66e6ddff, 0xd322f782, 0x2d8266e6,
0x0682ff20, 0xe6213f82, 0x211b8266, 0x54829a19, 0x8b9a1922, 0x00216282, 0x21948401, 0x178266ff, 0x83840485, 0x66210484, 0x228d8267, 0x82086666,
0x33b322ad, 0x26058306, 0xb4f70734, 0x839e00ff, 0xadff3995, 0xff0666e6, 0xceccf4ff, 0x19e8ffff, 0xffff059a, 0xffccccf6, 0x33b3ecff, 0x4c200482,
0xf3200982, 0xea225283, 0x43823433, 0x08cdcc27, 0xc5eaffff, 0x278c821e, 0xff9042ec, 0x5c4f0c00, 0xab262e82, 0x1300ff86, 0x1a823e0a, 0x82ebf321,
0xa318220a, 0x224482d6, 0x484661de, 0xff230cc8, 0x82cad6f8, 0x0ff83d36, 0xffff089e, 0x0764e650, 0xffff74fb, 0x05c435fe, 0xfd0f01ff, 0xff8b0770,
0x82d50800, 0x2206414c, 0x4c184406, 0x6b200641, 0x4620438f, 0x10274383, 0xfeff0820, 0x4e900260, 0xab2017ab, 0x180cfe51, 0x250c3097, 0x079a192f,
0x558294f8, 0xc318d020, 0xf7213250, 0x01501984, 0xffdb2b0f, 0x70fd6f00, 0x8cffff15, 0x5482cccc, 0xb81ee727, 0x4f2500ff, 0x31ff825c, 0xff0eadfd,
0xe27a0300, 0xc8fcffff, 0x0200fff6, 0x0982a8a6, 0xff8a6127, 0x94d80100, 0x26f98208, 0x00fff8d3, 0x82029a00, 0x9eaf2609, 0xf2ffffff, 0x210982fe,
0x13827cbf, 0x82826621, 0xc6fd221e, 0x200a82a8, 0x221982bc, 0x8234b3fd, 0xf6082733, 0x99fdffff, 0x1a828b9a, 0x0060ff23, 0x2130828b, 0x04820060,
0x8780f921, 0x83f22009, 0x84f72035, 0x825c2014, 0x83f82054, 0xc3fa2209, 0x267382bc, 0xffff5c4f, 0x820e2df8, 0x47d52739, 0xa5ffffae, 0x9d82a430,
0x48e1ea27, 0x1e2b00ff, 0x350a82b8, 0xff16f9fb, 0x18390800, 0xa3f7ffff, 0x0500ff12, 0xffff8c37, 0x6a84d9f6, 0x52186b22, 0x02218582, 0x07645514,
0x8e020022, 0xcc214b82, 0x210482cd, 0x84827cd4, 0xf628f722, 0xf0235682, 0x83078e02, 0xfc292b0c, 0x290700ff, 0xf9ffffba, 0x09826cbc, 0x82e0ef21,
0x9819279b, 0x8500ff08, 0x0a829a19, 0x05acfd2c, 0x752400ff, 0xb5ffffc2, 0x0a823473, 0x0ad70522, 0xc4217282, 0x2b7c82e4, 0xffffcc4c, 0xffccccfa,
0x34330900, 0x0028e282, 0xff103809, 0xfe130000, 0x8f211a82, 0x2692829e, 0x00ff225c, 0x82a4f003, 0x8e57210e, 0x2d274f82, 0x00fff6e8, 0x821e8561,
0x67082744, 0xf3fffff0, 0x0a824861, 0xc8760422, 0x38204582, 0x0621b182, 0x226f8299, 0x820a17fb, 0x66e6252f, 0x14f7088b, 0x4b0cd866, 0x9b200a51,
0x0023b782, 0x827cd408, 0x227d83cf, 0x50842b07, 0x0e22065e, 0x6f6acbef, 0x717d270b, 0x7d1500ff, 0xe74fff70, 0xe7701806, 0x0a704b0d, 0x0764fb27,
0x2b0654f7, 0xcca51807, 0x34b3210d, 0x261d8355, 0x568b066b, 0x82566060, 0xcaff23f8, 0x2b829a19, 0x66e6d528, 0x08c08bb6, 0x188b14fb, 0x18899920,
0x0714f724, 0x4b4724f7, 0x0ae2420c, 0x4105ab60, 0x168305a6, 0x3322d183, 0x564c088b, 0x084e7110, 0xcd203084, 0x82052b50, 0x50332030, 0xf721062b,
0x71618f74, 0x3086077f, 0x46f8ff21, 0xff200727, 0x2105ad47, 0x54180654, 0x92910b39, 0x28070023, 0x216682f6, 0x61823433, 0x8b0ad723, 0x20618608,
0x6b4f82cc, 0x3320059d, 0x820e6861, 0xf6641961, 0x94fb210c, 0x930c0d44, 0xfc292161, 0xd62b6187, 0xbb088b04, 0xeb07bb06, 0x181534fc, 0x18162f7b,
0x2016d04a, 0x4e6918ff, 0xd4f7232c, 0x31ad15eb, 0xf2248daf, 0x64f734b3, 0xbd2c6382, 0xcb06cc4c, 0x4200ff07, 0x9c0634b3, 0x0f31bb82, 0xffff6666,
0xffcc4cf9, 0x66e60c00, 0x00ff087f, 0x080b824d, 0xb3b2ff22, 0x7f970534, 0xb30600ff, 0xefffff34, 0x7a8b33b3, 0xcdffff08, 0x4b07cd4c, 0x3200ff06,
0xff0733b3, 0x2c832283, 0x0e05cd29, 0xeb44f8ef, 0x4e14fc15, 0xcf4d0c03, 0x524b200a, 0x731809ea, 0xf8200dea, 0xdb4b3282, 0x14f72115, 0x00213382,
0x217c8308, 0x9a82ccf8, 0x93830720, 0x3433f72a, 0xfb6b088b, 0x44fb1504, 0xf729c182, 0x074b0644, 0x04f71cf7, 0x18f94d15, 0x21056453, 0xc44da0fb,
0x24f7212a, 0x210a5f4e, 0x174eff68, 0x99fb2605, 0xeb088b98, 0x2668868b, 0xffff8b98, 0x836866fc, 0x4e662004, 0x68cc0662, 0xb1ffff22, 0x0127ed82,
0x15b8de08, 0x82faffff, 0x0300230a, 0x728548e1, 0x2106002f, 0x00ff8b48, 0x08b8de06, 0x403e00ff, 0x21ab8400, 0x1c860060, 0xe8820320, 0xab84ff20,
0x210f1141, 0xa8830060, 0x0800a026, 0xc0c1ffff, 0x75243582, 0x400a00ff, 0xea283682, 0x00ff0080, 0x7fb85e12, 0x2a264e82, 0xffff142e, 0x1082c0e4,
0x34331926, 0x80d1ffff, 0xcd223383, 0x338233b3, 0xcdcce122, 0x200a284f, 0x256e8398, 0x0400ff66, 0x0d4f6866, 0x24088206, 0x990300ff, 0x20048398,
0x06f24e9a, 0x1e00ff24, 0x35823333, 0x80410026, 0xdfffff01, 0x3c2b1c83, 0xffffcccc, 0xff34b3c9, 0x825e2400, 0xbeff22c0, 0x2c828280, 0x15ae87c9,
0x1000ff73, 0xffff9a99, 0x257882f0, 0x00c01900, 0xde90a88b, 0xde866f82, 0x088b9a22, 0xbd22de9a, 0x7482b89e, 0x47d4ff26, 0x1800ffae, 0xda2c5383,
0x00ff9a19, 0xff32b323, 0x66e6e6ff, 0x16205682, 0xf0257483, 0x00ffcd4c, 0x216d820d, 0xe684e6ff, 0x0080e422, 0x8f82e690, 0x21090f50, 0xef8506bb,
0x2b26e699, 0xff766766, 0x6d822800, 0x82dcff21, 0x180028e7, 0x0e0832b3, 0x82f801ff, 0x78013010, 0x4b1552f8, 0xffff05cb, 0xff00a0f6, 0x82600900,
0xd0f028f6, 0xffff8ba4, 0x84b89ef6, 0x877c8214, 0x00ff240a, 0x19480100, 0x2211035a, 0x82a4f00f, 0x52f82114, 0xd9274482, 0xffff66e6, 0x82a4f0d9,
0xf8c8270a, 0x3700ff52, 0x5a9dae07, 0x7288f724, 0x0484ffff, 0x1298ff2c, 0xfff2ffff, 0x0600ff3c, 0x798274d3, 0x08289c25, 0x829500ff, 0x6aff24a2,
0x820567e6, 0x8c3726e2, 0xe3fcffff, 0x240982d7, 0xffffcecc, 0x241982fe, 0x66e60400, 0x2325828b, 0x8b182406, 0x23263682, 0x0200ff96, 0x20821058,
0x82a4b021, 0xe0af2104, 0xd0831a82, 0x1f82d583, 0x192f0f21, 0x220d295b, 0x8314eec8, 0x826c20a0, 0x8326205b, 0x0f26224c, 0x220a825c, 0x86ae070f,
0x040028cc, 0xffff86ab, 0x821e45fb, 0x3233265a, 0xb3fdffff, 0x21098234, 0x71849a19, 0x0c820682, 0x41822e20, 0x54267190, 0x0900ff7a, 0x71830661,
0xff211f82, 0x82ad82f5, 0x0848240f, 0x82d8feff, 0xacff2e41, 0xff1514ee, 0x5d8f3a00, 0x70c5ffff, 0x2d7182a4, 0xff004006, 0x00c0f9ff, 0xf5ffff8b,
0x0a84b8de, 0xc2220482, 0xee820890, 0x820ad721, 0x48e12104, 0xe6218682, 0x20f38266, 0x20048266, 0x20f384fb, 0x830683ff, 0xff672516, 0x9a990100,
0x20822582, 0x19030023, 0x21358299, 0x148266c5, 0x01803a28, 0xd6ffff05, 0x048333b3, 0x66823220, 0x828f3a21, 0x2071acfe, 0x2071a467, 0x2071849a,
0x21d28266, 0x7182ff7f, 0x82a6d821, 0xb3d822a3, 0x230a8233, 0x7f70fdf3, 0x4228c982, 0xefffff8f, 0x7a8b34b3, 0xa7282882, 0xff07ec51, 0xae07c7ff,
0x1a420484, 0x295c1906, 0xb0042216, 0x26e082a4, 0x00ff3c4a, 0x41d72306, 0x2323077e, 0x84088bd7, 0x848b2010, 0x11f04105, 0x52f83827, 0xf83800ff,
0x23f18210, 0x06a4b058, 0x139b4719, 0x00ff8f25, 0x828a010c, 0x99bb2746, 0xbb00ff99, 0x87829a99, 0x82e66a21, 0x199521c1, 0xc23e0a83, 0xfffff768,
0x053273c2, 0x00ffef0e, 0xff9a199f, 0x66e60001, 0xaeffff15, 0xff8b66e6, 0x3382bdff, 0x7dc5ff2d, 0xf3ffff71, 0xffff9a99, 0x82c1b5b3, 0x0a002c48,
0xfaffffcd, 0x00ff6866, 0x82f31f04, 0x008021b4, 0xff210982, 0x23aa827d, 0xcc4c2f01, 0x04228482, 0xb0827cff, 0x7eff0322, 0x1c821782, 0x40ffff23,
0x22098282, 0x820800c0, 0xae7c2646, 0x404c00ff, 0x275a8200, 0x00ff34b3, 0x3966663b, 0x002f3782, 0xff666698, 0x9a194fff, 0xd0feff15, 0x820670dd,
0x83002154, 0xfb217e82, 0x202882e0, 0x214282fb, 0x09840000, 0x42824020, 0x5f0c0023, 0x2089827d, 0x257482c0, 0xffd76342, 0x1e83c5ff, 0x53385022,
0x50224683, 0x78825238, 0x142e4325, 0x833a00ff, 0x830c2016, 0x4c4c22a4, 0x22b482cc, 0x82cccc01, 0x21738283, 0x0984fbff, 0x86008022, 0x33203183,
0x01237882, 0x8290422e, 0x7ffc2af1, 0x0300ff7c, 0xffff8280, 0x22b982f9, 0x82c0ffff, 0x41fd217b, 0xff2d8b83, 0xffff087e, 0xffe27ad2, 0x703dc1ff,
0x065f7090, 0x39823820, 0x80c7ff22, 0x382c9183, 0xffff1e85, 0xff707dc7, 0x14ae5700, 0x1e2bbb82, 0x3d00ffba, 0x00ff68e6, 0x828e822d, 0x0004227a,
0x07dc5184, 0x0021f882, 0x200e8206, 0x216c85ff, 0x58827c5f, 0x3d822d20, 0x47d3002e, 0x00ff05ae, 0xff0280e6, 0x48211300, 0xc7278d82, 0x00ffe07a,
0x828e8238, 0xec51216d, 0x2206e051, 0x829a19c2, 0x2a9c2187, 0xfb263482, 0xffff7cff, 0x04821ffd, 0x8520a782, 0x8425b783, 0xa0fcffff, 0x276e8284,
0xffce4cd3, 0x99992cff, 0x2508e451, 0x00ff7d7f, 0x19820106, 0x7e830020, 0xf8be0222, 0x00214e82, 0x270f8283, 0xff30b32c, 0xc3b53e00, 0x2107e451,
0xc68232b3, 0x82008021, 0x727d2677, 0x01ff0e08, 0x236f82e3, 0x66661d01, 0x02328e82, 0xffff33b3, 0x0534b302, 0x219cffff, 0x0000ff47, 0x0a820600,
0x8f02a727, 0xfaa6ffff, 0x2d0a82e2, 0xff41c0f6, 0x7e9ff6ff, 0xbff0ffff, 0x0a828bbe, 0xff48a126, 0x82600900, 0xf622ab82, 0x0a8242a0, 0x8b844027,
0x420f00ff, 0x210a820c, 0x0482be5f, 0x82b85e21, 0xfd582781, 0x5900ff71, 0xab821e05, 0x14000027, 0xe66400ff, 0x270a8266, 0xffcd0c31, 0xd7633100,
0x33210a82, 0x22f28299, 0x18f568cc, 0x2008b649, 0x273b82df, 0xffcf1704, 0x2270feff, 0x1722c782, 0x46828b8d, 0x06820420, 0x182a0c82, 0x0100ff52,
0x00ff2090, 0xf2821f03, 0x00200322, 0x06211a82, 0x2030823f, 0x267c8406, 0xffc4200a, 0x82c0f9ff, 0x4006218c, 0xff221a82, 0x8c8245cc, 0x04973322,
0x29215b82, 0x2187823d, 0x87838529, 0x5dcf3327, 0x30ccffff, 0x20718ea5, 0x207183ce, 0x21648221, 0x71858e17, 0xce828e20, 0x71850420, 0x03221682,
0x76827c1f, 0x8320718b, 0x0a221f82, 0x718dc520, 0xff462126, 0xc3f53300, 0x70227184, 0x718500ff, 0x1e053427, 0xfacbffff, 0x207189e2, 0x846783bc,
0x91e38471, 0x91168271, 0x84822071, 0x8cc62071, 0xe8cb2771, 0x3400fff6, 0x5b820817, 0x14ae3127, 0x053200ff, 0x280a8220, 0xffb85e24, 0x90822400,
0x836782c5, 0x8725360a, 0xe1ffffae, 0xff08b85e, 0x186e3100, 0x33d7ffff, 0xf8ffff34, 0x3e0482b3, 0xff5c4fbd, 0x3233dcff, 0x33ddffff, 0xff0e0832,
0x9a99f601, 0x991601ff, 0x34fb159a, 0x820534f7, 0xcccc306b, 0x460600ff, 0xf7ffff66, 0x00ffcecc, 0x83002003, 0x8bcc2209, 0x82068508, 0xecd12505,
0xe0fcffff, 0xf9251682, 0xffff90c2, 0x050644f9, 0x1a039218, 0x829af921, 0xe4052925, 0xf0feff05, 0xa3fb9a99, 0xd9216382, 0x843d8240, 0x9ef93104,
0xc0ffffb8, 0x00ff00c0, 0xff48c123, 0x0080d6ff, 0x142db282, 0xffffff7f, 0xff1c1ae8, 0x15ae1c00, 0x2105827f, 0x7e8271bd, 0x7200002a, 0x00ff0683,
0x8b48611a, 0xe5830582, 0x9a190930, 0x211400ff, 0x1500ff48, 0xff081e05, 0xe5821301, 0x99120129, 0x00ff059a, 0x82705d07, 0x0ca221f0, 0x06220a82,
0x7f822c35, 0xff3cbf24, 0xf6830800, 0x66e6fc22, 0x34200983, 0x08205183, 0x2105d04c, 0xe785142e, 0x92180020, 0x0c270a83, 0x00ffe07a, 0x8266860c,
0x3314276b, 0xf3ffff34, 0x0f820280, 0xfb2c9e82, 0xa9ffff54, 0xff156666, 0x999991ff, 0x95268f82, 0x00ffcd4c, 0x74831995, 0x48823720, 0xe1c8ff37,
0xffff0548, 0xff86eba1, 0x1e05a2ff, 0x5cf70e05, 0xfb1534f8, 0x0e795444, 0x8b904228, 0xbdf2ffff, 0x80540870, 0x00ff2305, 0xe36ac00a, 0x0d002a06,
0x088b0040, 0xd4fb0693, 0x05515207, 0x2300ff24, 0x4a5248e1, 0xb91e2107, 0x2c22b783, 0x9782b81e, 0x00221683, 0xa283e623, 0x9a192c27, 0x07d4f708,
0xd0511893, 0x08ac540e, 0x0d222d82, 0xf47b9042, 0xbd0a2206, 0x06ae6f70, 0x74fb5331, 0xf7064b15, 0x06cb0744, 0xf70744fb, 0x8674f7ec, 0xc28918a9,
0xa8f52009, 0x53de20a9, 0xdc24071d, 0x00ff4821, 0x0820a283, 0xc0850685, 0x8682c583, 0xa9891782, 0x1082cc20, 0x34b30a22, 0x180fc56b, 0x8d12ae93,
0xef0e2aa9, 0xff15638b, 0x34b33c01, 0x3a418207, 0xff98191a, 0x15ee0f00, 0x991700ff, 0x1800ff9a, 0x00ffcd4c, 0x0834b309, 0x830b01ff, 0x256b2693,
0x00ff05a2, 0x271a8307, 0xff0e0d03, 0x98990800, 0x0f833482, 0xf2fcff24, 0x258208f2, 0xff66e626, 0x5eda94ff, 0x18252582, 0xffffcc4c, 0x340482f6,
0x68e60f00, 0x66e8ffff, 0xffff8b66, 0x0868e6e5, 0x4cc3feff, 0x09fe59cc, 0xff212182, 0x05045ef5, 0x071a5218, 0x5e083241, 0xff240a06, 0x66e60801,
0x00223582, 0x4a5dcc10, 0x330f2b07, 0xeeffff33, 0x088bcc4c, 0x825d14fc, 0xccf0220d, 0x226c82cd, 0x823333ef, 0x19f7226c, 0x5a6c899a, 0x5b200d6b,
0x8a0c4942, 0x2cf7236c, 0xd7411573, 0xb6201905, 0x07db7c08, 0xf807c323, 0x05765b14, 0xc35ef220, 0x89e58205, 0xe4fb26be, 0x44f77306, 0x21228215,
0x9482074b, 0x8b07cb24, 0x0d8304f7, 0x0d833b20, 0x0e07db25, 0x823601ff, 0x5e0126ea, 0x831500c0, 0x057d58ff, 0x0080f625, 0x83fcffff, 0x83fc2098,
0xc0f73209, 0xffff0800, 0xff0180de, 0x00c0b1ff, 0xffff7505, 0x206783ff, 0x21eb87ee, 0xd9820875, 0x48e1e925, 0x821100ff, 0xeeff2a04, 0x00ffb81e,
0x8bb81e16, 0x85068508, 0x11002416, 0x828b66e6, 0x9a192110, 0x00212d82, 0x2257830a, 0x7500c0fb, 0xf92006e9, 0x00236b82, 0x82b81e07, 0x83212031,
0xa14e2314, 0x8b820548, 0xffcc8c26, 0x66260800, 0x19218b82, 0x2629829a, 0xffffce4c, 0x8466e6f7, 0x20298218, 0x08848289, 0x40210023, 0xffff1500,
0x061ec5c7, 0xbadfffff, 0x2700ffe2, 0xffff0a17, 0xff3433cf, 0xf6e81800, 0x4cc9ffff, 0x848782cc, 0x21168506, 0x2083e7ff, 0x33b3df28, 0xe8d8ffff,
0x3b8208f6, 0x06cdcc27, 0xc0dcffff, 0x20c48200, 0x208782e3, 0x820482ff, 0x2010820a, 0x05a44308, 0xff220982, 0x96821c00, 0xff291983, 0x00402300,
0x14f8088b, 0x85098506, 0x821e8319, 0x231a82dc, 0x07d4f708, 0xff200985, 0x8306ff60, 0xb3dc2838, 0xfb088b34, 0x8284fb54, 0x6bb922ab, 0x255e8285,
0xff7b94c6, 0x0a833900, 0x94460024, 0x3282087b, 0x7c944622, 0x04831184, 0x83ff8421, 0x82b88215, 0x827c2006, 0x6b39261b, 0xc6ffff84, 0x230a8294,
0x846bb9ff, 0x06822d82, 0x11828520, 0x829a9921, 0x29498204, 0x6666b9ff, 0xf70e088b, 0x6082eb64, 0xa457f720, 0x11a57208, 0x200f187d, 0xa74218ff,
0x11cf510a, 0x20076252, 0x06c45234, 0x156beb22, 0x7a059d52, 0xfc2008fd, 0x08229c82, 0x918204d6, 0xd6080023, 0x08806288, 0x3e567820, 0x85068506,
0x7d8c9416, 0xf7230c04, 0x83b4f754, 0x13307e60, 0x21054f5d, 0x4b820ad7, 0x82cccc21, 0xf628217e, 0x21062a54, 0x945274fc, 0x0a6b680c, 0x957e6b20,
0xfc292109, 0x3c823782, 0x0428a482, 0x069b088b, 0x7b07d4fb, 0xcf73368e, 0x18816508, 0xd818f820, 0xd6201e29, 0x2a116563, 0xd4f7067b, 0x3b069b07,
0x19150cfb, 0x25162c00, 0x6b061cfb, 0xfe5ef307, 0x0a815f0c, 0x3d507b20, 0x20138307, 0x250485ff, 0x8b9a99fb, 0x35822308, 0x4500ff24, 0x39827c54,
0x5c8f1938, 0x0f00ff8b, 0xffff703d, 0xff1e85e3, 0xecd1f1ff, 0xbaeaffff, 0x058208e2, 0x6b86ab2e, 0xfaffff05, 0xffff7a14, 0x81cc0cf7, 0xb3270a82,
0xf4ffff34, 0x828b6666, 0x05e7671d, 0xcd4cf522, 0xf6279b82, 0x00ff8f02, 0x82d45805, 0xec112621, 0xe70800ff, 0x213e842c, 0x3e82ab85, 0x99d9f127,
0x401500ff, 0x25648200, 0x00ff3433, 0x0982801c, 0x99991922, 0x00274282, 0x06cd4c45, 0x602307ab, 0xbe5f0c26, 0x829b200a, 0x040021bf, 0x83078960,
0x05e75f18, 0x82f30821, 0x22fa8235, 0x82fbffff, 0x09ac6047, 0x2d82c782, 0x36950820, 0x088b6724, 0x6db61cf7, 0x8897a320, 0x7a419b20, 0x41732017,
0xa2823695, 0x410bcb60, 0x0e370ccc, 0x4b00ffef, 0x01ffe23a, 0x159a999e, 0xc5f400ff, 0xe2ffff1e, 0x8205cc4c, 0xcccc260a, 0xb31d00ff, 0x2c0a8234,
0xff34b306, 0x0ad70000, 0x800600ff, 0x06f35d00, 0x9819032b, 0xf0f9ffff, 0x00ff08a4, 0x231e8229, 0xb89eacff, 0x08272982, 0xffff68e6, 0x729a19ee,
0xff260510, 0xffcc4cea, 0x1e83ecff, 0x0080fa31, 0x5cffff08, 0xffff32b3, 0x05cd4cd1, 0x83f2ffff, 0x83fc2024, 0x82f12004, 0x05002d49, 0xffffcdcc,
0xff9a99f8, 0xcc4c0d00, 0xac242982, 0x1ff79a99, 0x07822682, 0x0783fb20, 0x9999f825, 0x83f2ffff, 0x83f12049, 0x33fa2233, 0x260e8233, 0x00ff9919,
0x8266e603, 0xab5c272e, 0x2e00ff86, 0x318233b3, 0x71bdec25, 0x830500ff, 0x79f625a7, 0x1500ff17, 0x00263382, 0xfffef408, 0x29831100, 0x3325ac82,
0x615300ff, 0x22ac8248, 0x82ae0703, 0x5c0f21d1, 0x87200482, 0x03200982, 0x003a3382, 0xffe2ba06, 0xf628ffff, 0xff068b08, 0xb8def500, 0x66a1ffff,
0x00ff1566, 0xc982cc36, 0x9a99a422, 0x0e253682, 0xffff66e6, 0x218082e7, 0x5b821d00, 0x83f5ff21, 0x821b2085, 0x07002713, 0xff089a19, 0xc4837f00,
0x66662422, 0x59298a82, 0x8b079a19, 0xffff7c75, 0x263d83ec, 0xff9899ea, 0x8299faff, 0x33ff2423, 0x825868e6, 0x83f5201f, 0x66fd2116, 0xf5254e82,
0xff8b6866, 0x210f83ff, 0x21860200, 0x82be6621, 0x97ea2221, 0x83cc820a, 0x02f13021, 0x1300ff8f, 0xa18b3433, 0xa600ff08, 0x850766e6, 0xdbff2169,
0x7f839384, 0x21050973, 0xdf82b31d, 0x67e60a25, 0x830e00ff, 0xcc182204, 0x832f82cd, 0x5b0021bd, 0x002b9383, 0x06343302, 0xff94f70e, 0x82e6a001,
0x72ff23d7, 0x78829a99, 0x824c8e21, 0xe1a222dd, 0x230a8248, 0x08b81e8d, 0x2a080682, 0xff4861ce, 0x9a591500, 0xa3d2ffff, 0x2300ffd6, 0xffffb99e,
0x08b047dc, 0x80f3ffff, 0xcdffff00, 0xffff48a1, 0xffe13ad6, 0x8219d3ff, 0x83ff2023, 0x82048213, 0xc0fd211e, 0x04841e82, 0x8260ff21, 0x84fc2809,
0x0100ff18, 0x82880060, 0x3f013385, 0x00ff88be, 0xffa2c502, 0xe83bfeff, 0x400300ff, 0x16828b00, 0x06824220, 0x3000ff2e, 0x00ff9ad9, 0xff90c21f,
0x01801900, 0xa121e982, 0x201a8246, 0x20668320, 0x2d5182f3, 0xd6632400, 0xdcf8ffff, 0x2600ff28, 0x3a194861, 0x71260955, 0x00ff34b3, 0xb882215d,
0xf8710023, 0x83b88252, 0xffff2a06, 0xffd26d8d, 0x66e65e00, 0x82df84ff, 0x197f2495, 0x1884fb9a, 0x22139482, 0x839ad910, 0x2d068235, 0x400e00ff,
0x0f00ff00, 0x00ff6626, 0x9984c011, 0x01c01123, 0x1816858b, 0x2612226f, 0xff9999f2, 0x82a6f2ff, 0x66ed2263, 0x23918366, 0x8b66e680, 0x18836288,
0x3f825083, 0x15826295, 0x06833483, 0xb3216299, 0x22628632, 0x833433ee, 0x89c6822d, 0xc0f12162, 0xb382ae82, 0xc5886298, 0xc59b0020, 0xc58b9a20,
0xef0e2608, 0x074000ff, 0xd000ffae, 0x8b1566e6, 0x68ceffff, 0x1500fff6, 0xffff4861, 0xff707dd3, 0x0b972300, 0x66dbffff, 0x08064268, 0xff289c26,
0xa430d6ff, 0x17211e82, 0x06c9620c, 0x26060642, 0xffff21d0, 0x82f8b3fd, 0xef672d14, 0x98fcffff, 0x0100ff10, 0x0888f047, 0x4f250682, 0x00ff88df,
0x27208302, 0xfff833fe, 0xdf2f0300, 0x4222db83, 0xa6825c4f, 0xa4b03127, 0xcc1f00ff, 0x05f155cc, 0x9c130023, 0x2531822a, 0xff52b820, 0x1983f3ff,
0xcd4c2423, 0x05e742ff, 0x22060642, 0x82d86325, 0x63233d35, 0x0600ffd6, 0x00ffbaa9, 0xff1e0520, 0x6eb20b00, 0xaafeff08, 0x01ffc420, 0x053c0a0b,
0xe12a3b82, 0xe7ffff47, 0xffffcecc, 0x4a8238f9, 0x9999e522, 0x2008db82, 0x083333e5, 0xc53602ff, 0x157afb20, 0xe689ffff, 0x5c00ff68, 0xff050a97,
0x64662600, 0x822400ff, 0x83838290, 0x992f2214, 0x2362829a, 0x08666634, 0x72270682, 0xffff66e6, 0x8266668d, 0x3433262b, 0x8073ffff, 0x23bb8200,
0x9042bcff, 0xc2265082, 0xffffd6a3, 0x168273ea, 0x1b83d220, 0x7a14dd2d, 0x94ffff08, 0x00ff5ccf, 0x82c44054, 0x83f52085, 0x45083636, 0xf0ffff60,
0xffff33f3, 0xff28f1fd, 0x7bf4f7ff, 0xb6f5ffff, 0x222982c8, 0x8221d0f7, 0x828f200a, 0xd201222e, 0x272382b0, 0x00fff6e8, 0xffdf6f0a, 0x0de88818,
0xa0826820, 0x00800a22, 0x88181582, 0xde2109e8, 0x076474b8, 0x08f06727, 0x1c0900ff, 0x240482ac, 0xffff5a84, 0xe88818fe, 0xf8ef2412, 0x5a74f7e4,
0x3b23179f, 0x6a54fc07, 0x1a200515, 0xea226383, 0x5c688f82, 0xe5ff2305, 0xe883707d, 0xe3820683, 0x135a1682, 0x05cd710a, 0xf382f720, 0x18070021,
0x200dc9e0, 0x08665dcb, 0x96430622, 0x0dd64418, 0x67e60028, 0x54f8059b, 0x285e7b06, 0x49fc200a, 0x12490596, 0x6c3b8905, 0xf7210e7a, 0x18328254,
0x27148a45, 0x155b64fc, 0x14f8075b, 0x3105b462, 0xff48a126, 0xb0871b00, 0x512000ff, 0x2400ffeb, 0x81825078, 0x08156e27, 0x9e2100ff, 0x254283b8,
0xffa4b046, 0x0482c6ff, 0x4f390028, 0xb9ffff5c, 0xe2825c4f, 0x19fffe24, 0x0c85069a, 0x21831c85, 0x10848b20, 0x00283982, 0xffff66e6, 0x056666de,
0x80214f82, 0x82ae8200, 0x1b002104, 0xb5670482, 0x66d93006, 0xff0e0866, 0x34b34601, 0x4c2c00ff, 0x827515cc, 0x9a192a22, 0x19e8ffff, 0xfbffff98,
0x22098299, 0x823433e7, 0xe7ff2365, 0x54823333, 0x1b82e820, 0x66040024, 0x99827566, 0x0866e62c, 0xccfeffff, 0x0000ffcd, 0x04829a19, 0x85999921,
0xffff2109, 0x1e821386, 0x66e6e131, 0xe5ffff96, 0x00ff3333, 0xffcccc11, 0x824ceaff, 0x9916222e, 0x261a829a, 0xffd723dc, 0x82662500, 0xf5e92b9e,
0x3200ffc2, 0xff8b34b3, 0x54823700, 0x72250682, 0x00ff48e1, 0x2755835d, 0xffb81e5d, 0x66e67200, 0x06848282, 0xff201685, 0x200cfa45, 0x212882c8,
0x0483e9ff, 0xcc4ccd26, 0xdaffff68, 0x8a225f82, 0x9c828a8a, 0x8a66e623, 0x206a828a, 0x08c783ea, 0x34b3ea28, 0xefffff71, 0xff6e3233, 0x0080f5ff,
0x058b8b08, 0x33a5ffff, 0x2401ff32, 0xff159a99, 0x9a19f9ff, 0xfaffff07, 0x37826766, 0xf920aa83, 0xff2dc582, 0xffce4cfe, 0x66e6fbff, 0xccfdffff,
0x204982cc, 0x266583f1, 0x7e3433f9, 0x83f3ffff, 0x83fc20ba, 0xb3ed2229, 0x221a8234, 0x823433fe, 0xcccc2558, 0xf6ffff8c, 0x00212582, 0x22f48204,
0x8219f7ff, 0x820a86ea, 0x058e486a, 0x5982f920, 0x83060021, 0x82fb2093, 0x00ff2487, 0x4199990b, 0x00230575, 0x82cd4c0f, 0x2658826e, 0x33b30b00,
0x84fcffff, 0x8302201e, 0x66ff2348, 0x25820567, 0x1682fb20, 0x84090021, 0x23948279, 0x68e60500, 0xb3272f82, 0x00ff0833, 0x82008002, 0x343326b8,
0xe60000ff, 0x82098266, 0x00002653, 0xffffcc4c, 0x208284ff, 0x20338300, 0x234982ff, 0x9a990000, 0x53841e82, 0x87ce4c22, 0xff20b882, 0x3e844e84,
0x889a1925, 0x83faffff, 0x83fd200a, 0x05957254, 0x1f83fd20, 0xff22d283, 0xe282b3fe, 0x3233f325, 0x8285088d, 0x82f520e5, 0x030021ac, 0xf6204d83,
0x00223182, 0x86823303, 0x83fdff21, 0x820020db, 0x22098604, 0x828933b3, 0x204c8491, 0x822584f5, 0xf4ff2104, 0xff21c582, 0x833e82fa, 0xffff24e1,
0x82ff7ff5, 0x83fc2086, 0x20238419, 0x201e8305, 0x4e6b82f4, 0x7f8205e2, 0x0120df82, 0x8083b183, 0x47010021, 0xff2206bb, 0x23820100, 0x66ffff28,
0xff920866, 0xeb82fdff, 0x820d0021, 0xfbff2304, 0x124fcecc, 0x05b34106, 0x9a99f93c, 0xffff8b07, 0x9466e6f4, 0x0a00ff82, 0x088b3433, 0x94948b97,
0x0b00ff8b, 0x59829a19, 0x00800529, 0x0500ff07, 0x828ccc4c, 0x34332405, 0x820200ff, 0x040023f0, 0x6082cccc, 0x82343321, 0x830f2020, 0xb3063250,
0x0c00ff32, 0xff989899, 0xce4c0300, 0x001300ff, 0x201a8201, 0x20258301, 0x055b410a, 0x87953422, 0x52837782, 0x19fcff27, 0xffff949a, 0x223283f9,
0x82999906, 0x22318309, 0x82cdcc04, 0xe6f32ae6, 0x0800ff66, 0xffff67e6, 0x833b83ef, 0x84ff2066, 0x42032013, 0x29830545, 0x3233002b, 0xf2ffff05,
0x00ff33b3, 0x240f8204, 0x6666f6ff, 0x8244828e, 0x04002334, 0x44823233, 0x7182fd20, 0x82010021, 0xffff2296, 0x24248233, 0xff323301, 0x057543ff,
0x82008021, 0x210a851e, 0x14826866, 0x1e822884, 0x99000023, 0x21b9829a, 0xb4826666, 0x66660023, 0x21db828d, 0xca860080, 0xcd4c0622, 0xcc21f482,
0x201a82cc, 0x20258305, 0x20a28302, 0x83ff840a, 0x330c230e, 0x1a828a34, 0x4a820420, 0x82feff21, 0x0d002104, 0xff213982, 0x235e82fd, 0x66e60300,
0x0a201a83, 0xff272682, 0x969819fd, 0x830600ff, 0x83022016, 0xb30a213b, 0x0025a982, 0xff68e602, 0x211f8400, 0x1f8299f9, 0x82f5ff21, 0x820020cf,
0x20a5821f, 0x253582fb, 0x34330100, 0xdb828d81, 0x3420a785, 0x06236782, 0x4107cc4c, 0x8227059b, 0xf4ffff94, 0x828b66e6, 0x2106832b, 0xc5418282,
0x05d54405, 0xffff0739, 0xff9a1944, 0x9a190fff, 0x0f00ff15, 0xff06e1fa, 0x33731300, 0x82e6ffff, 0x18002615, 0xffffec91, 0x21f783ea, 0x1382331c,
0x82b3ef21, 0xb7ff2a59, 0x6b06cdcc, 0x0614f807, 0x223c82ab, 0x82ccccb7, 0x831b2031, 0x4c10258e, 0x1900ffcc, 0x0023d482, 0x82cecc15, 0x248b8345,
0x0866e619, 0x5b4b189b, 0x1353600c, 0x210fe06f, 0x487634fc, 0x0ae16f0c, 0x0246cb20, 0x15002107, 0x0dd44c18, 0x0e068b29, 0x01ffb4f7, 0x82cccc18,
0x191c22c6, 0x089a829a, 0x00c0e325, 0x612400ff, 0xedffff48, 0x00ffb81e, 0x84f6e82a, 0xe82d00ff, 0xffff08f4, 0xff7bd4fd, 0xa07e0d00, 0x83efffff,
0x6c0536e6, 0xf7ffffe6, 0xffffcd4c, 0x08c07ff5, 0xe7ffff75, 0xfffffa1e, 0x27cf82f0, 0xf4a8e2ff, 0xccf4ffff, 0xdf2d1a82, 0xff0848a1, 0x33332200,
0xc5d9ffff, 0x83498220, 0x99e52514, 0x3200ff98, 0xf53b0983, 0xf7080080, 0x6700ff04, 0xff15e23a, 0x00c0d3ff, 0xddffff8b, 0xffff6626, 0x82142edc,
0xbdd3220a, 0x083d8272, 0x5c000022, 0x8fc4ffff, 0xffff055b, 0xff9a9997, 0x42400600, 0x66a7ffff, 0x4000ff66, 0xff638135, 0x703d5b00, 0xf93b9d82,
0x00ff1f94, 0xff3e8a0c, 0xae47eeff, 0xab0000ff, 0xfaffff86, 0xffff0040, 0x82febff3, 0x5eef221e, 0x2b5582b8, 0xffffbade, 0xff47a1f6, 0x8ec2d8ff,
0xd6235f82, 0x82089a99, 0x3db92206, 0x28a38270, 0xffff291c, 0xbe2adcbd, 0x2072825a, 0x21fb820d, 0x3d82f3ff, 0x020d0023, 0x21e08290, 0x5b82e27a,
0x4c82c020, 0xb082f620, 0x70ffff22, 0xdc221e83, 0x9182ea11, 0x2482f520, 0x83fdff21, 0x84fb2004, 0xf6a8226c, 0x21628291, 0x4482b89e, 0x48611125,
0x82e5ffff, 0x2b00372a, 0xffff3d0a, 0xff0a57d2, 0xaec75c00, 0x40fcffff, 0xff930800, 0x5082ffff, 0xfd070028, 0x0200ff71, 0xd6820ce2, 0xff472124,
0x1a820500, 0x4100ff2f, 0x00ffe13a, 0x05b81e38, 0xd74c00ff, 0x2129820a, 0x0a82a4f1, 0x48615828, 0x4700ff8b, 0x0482b89e, 0x82707d21, 0x6858230a,
0xe98208f6, 0xff560026, 0x3233a000, 0x1f2d2182, 0x00ff9a19, 0x0572fd3f, 0xe390ffff, 0x22378282, 0x820500f4, 0xde9f28df, 0xffff15b8, 0x820040f7,
0xbdf8210b, 0x0722eb82, 0x3e824e42, 0x40c00822, 0x0028fd82, 0xff44e008, 0xd0420700, 0x2c270482, 0x0800ff8a, 0x828bc0bf, 0x82068355, 0xb03d2611,
0xddf8ffff, 0x2238822e, 0x824420f7, 0x02002216, 0x82498490, 0xcccc2115, 0xb3210482, 0x06c65132, 0xffaf0e2b, 0x34b32f02, 0xcc3700ff, 0x256c82cc,
0xff66e678, 0x887c9cff, 0x824c2005, 0xe8f22528, 0xeafffff8, 0xff219e82, 0x273783f8, 0x8b9a19e9, 0x06effb08, 0x40213c82, 0x225c8242, 0x8225a6f9,
0xfa3e216c, 0xbe219583, 0x22958376, 0x8270fd5f, 0x208d82ba, 0x2118827c, 0x04820040, 0x82a24521, 0x82d92004, 0x21638237, 0xdc82b95e, 0x82e8f921,
0x802e21f2, 0x25221b82, 0x0a8270bd, 0x5e821420, 0x83100021, 0x051b2804, 0x0a00ff1e, 0x83a66626, 0x199f27c9, 0x00ff069a, 0xfd828013, 0x5e0f0037,
0xeeffffb8, 0xffff48a1, 0x7700c0fc, 0xfdffff08, 0xffff0060, 0x225f82f0, 0x8241f1ff, 0x21f52315, 0x33827b48, 0xa8b2ff23, 0x209b8af6, 0x20e88224,
0x22a683c0, 0x822426f8, 0x82ff209b, 0x23948506, 0x42c0f8ff, 0x78219488, 0x27678399, 0xff34b377, 0x862b5800, 0x11208f82, 0x0028e982, 0xffa4300d,
0x90021900, 0x26257182, 0x0d00ffea, 0x2280831e, 0x8208e430, 0x50f8260a, 0x6becffff, 0x221982bc, 0x82723433, 0x34332996, 0xe6f2ffff, 0xaf0e0866,
0x25052b59, 0x0080c500, 0x7b829215, 0xe282a020, 0xbf820b20, 0x6b829220, 0x82006021, 0x836c203a, 0x337222e4, 0x20648234, 0x20ff831f, 0x2a558321,
0xff5238fe, 0xe0fa3600, 0x82dcffff, 0x1e0027e0, 0xff089a99, 0x1982e1ff, 0xc01a0022, 0xd221e482, 0x2cdf8221, 0xff6626fb, 0x9ad9e3ff, 0x60e2ffff,
0x321e8242, 0xff98d9f4, 0xfc69f4ff, 0xf5ffff05, 0x00ff32b3, 0x8248a10b, 0xe6e3370a, 0x1d00ff67, 0xff5d00a0, 0x58d90400, 0x66e0ffff, 0xe5ffff67,
0x3082fa3e, 0x9999dd22, 0x61255482, 0xffff8948, 0x3c6a82c8, 0x33b31f00, 0xe6deffff, 0x00ff0868, 0xffcecc6c, 0xcccc8dff, 0xffb9f705, 0x3433aaff,
0x29cd8215, 0x00ff48e1, 0xff5ccf11, 0x2c83e6ff, 0x78830320, 0xc435ee22, 0xcf211882, 0x274c821a, 0xffcc4c88, 0x7cd4a7ff, 0x872e7282, 0xff066666,
0x8440f7ff, 0xf9ffff8b, 0xe882e2a5, 0x8b004022, 0x704e0582, 0xbe082205, 0x241184fa, 0x5a0600ff, 0x087041a0, 0x00404e28, 0x0f00ff06, 0x28829a19,
0x66a60f2b, 0xde0a00ff, 0x0200ffb8, 0x2204829e, 0x8200c00f, 0x40032691, 0x1300ff00, 0x21ed8219, 0x8882a1f0, 0x1e451225, 0x4cecffff, 0x5f220583,
0x6f824821, 0x66e6e522, 0xe4326f82, 0xffffe2fa, 0xff00c0f6, 0xffffeaff, 0xffff087a, 0x0b8280d1, 0x9042da22, 0xc8209782, 0x00223883, 0x0a827a06,
0x8340f722, 0xe3249c84, 0xb9f8ffff, 0xff237382, 0x824841f7, 0xfdff282c, 0xa1ffff77, 0x6f05b0cb, 0x9d820555, 0x433b4021, 0x002a051d, 0x8b58d907,
0x5a01ff08, 0xa7829a19, 0xae071622, 0x1522a782, 0x2182d6e3, 0xffe02f2b, 0xb0c71100, 0x170d00ff, 0x26a782ce, 0xff981987, 0x82826300, 0x1300216f,
0x002e7a82, 0xff281c0d, 0xcccc0300, 0xf2ffffa4, 0x2a8268e6, 0x08cecc2d, 0x02ffaf0e, 0xff343338, 0x41b36f00, 0x08234459, 0x820870bd, 0x8208208f,
0x720020f6, 0x5941075e, 0x48e1211a, 0x82075941, 0x269c8237, 0xff9f0040, 0x82a1f0ff, 0x61112215, 0x31554148, 0xffb89e2d, 0xa6e60000, 0xf8ffff05,
0x828ba826, 0xbebf2605, 0xccf7ffff, 0x290a82ce, 0x08cc4cf7, 0x05a0ffff, 0x0c83071e, 0x82162e21, 0x42402194, 0x221f5041, 0x41ff2030, 0x14210650,
0x085041fe, 0x051e8523, 0x075041ff, 0x50412a20, 0xfeff2a10, 0xff9819df, 0xcc4ca100, 0x275d8215, 0x00ff6866, 0x819a1901, 0x99212682, 0x218a829a,
0x09823233, 0x82323321, 0x19fb2289, 0x211a829a, 0xab8234b3, 0x0080f32b, 0x4c0500ff, 0xf2ffffcc, 0x0680534c, 0x99fbff28, 0xf4ffff99, 0x29836666,
0xff330a86, 0x61850600, 0x66f1ffff, 0x0c00ff67, 0xffff1078, 0x825c8ffb, 0xa7042794, 0xfeffffae, 0x94821058, 0x6a7c082c, 0xf0fcffff, 0x0900ff62,
0x0982de64, 0x824cf721, 0x8e822609, 0xc8fdffff, 0x22488273, 0x8340b5f3, 0xc0f221fc, 0x0a266e82, 0xffffe2ba, 0x098240f5, 0x00400d23, 0x8346828b,
0x356d1806, 0x27108210, 0xff076666, 0x1e451900, 0xb925a182, 0x1100ff17, 0x22f2829c, 0x82832010, 0x523826c6, 0xde1700ff, 0x263b82b8, 0xff20b008,
0x820c3200, 0x6cd021c0, 0x0d200e82, 0xff282382, 0xff5478e6, 0x3e4a0700, 0xfa227782, 0xea827ab4, 0x827ad421, 0xb3e522ea, 0x21158234, 0xaa49c275,
0x82382007, 0xb3002724, 0x0400ff32, 0x3982281c, 0xf0270122, 0xc426e582, 0x0e00ff18, 0x6282dc24, 0xff444b26, 0xf6e81000, 0x5421c082, 0x271e82bc,
0xff20f004, 0xfc37ffff, 0x6e212382, 0x20f48298, 0x2109823b, 0xfe824708, 0x0020fd22, 0x0c211e82, 0x270a8287, 0xff10b8fb, 0x14ae0d00, 0x97212382,
0x265782d0, 0x00ff5c4f, 0x822c870c, 0x8504201e, 0xff2a250a, 0x8a61f9ff, 0xa9252382, 0xf3ffff7a, 0x222d8278, 0x82085704, 0x65f827a5, 0x0200ffe4,
0x1e8284a0, 0x8296ae21, 0x24bb269f, 0x19faffff, 0x2109829a, 0x3d82ec5c, 0x1c680b20, 0xfea51805, 0x36481813, 0x45f52407, 0x18ffff1e, 0x82098b4d,
0xe27a270b, 0xe6ffff07, 0x498293c2, 0xff3c4a31, 0xcd4ceeff, 0xfaefffff, 0xffff86e2, 0x83b81ee8, 0xcc4c2473, 0x82ceffff, 0x30002db6, 0xffffce4c,
0xffceccf1, 0x32331200, 0x99212e82, 0x22738298, 0x827c7f06, 0x00202ce5, 0x1f00ff05, 0xfffff6a8, 0x8222f0f6, 0x707d24ff, 0x82fdffff, 0xffff27d0,
0xffffa430, 0xfa8240fb, 0xdcfeff22, 0xf922fa82, 0x43820a37, 0xff66e626, 0x34b3fcff, 0xcc216d82, 0x05024bcc, 0xffaf0e2e, 0x9a191f01, 0xc01554f7,
0x2a00ff8b, 0x2a22d383, 0x0a824821, 0x52f8322d, 0xffb38b08, 0x48e1c6ff, 0x825000ff, 0xe5ff287c, 0x00ffb8de, 0x82cccc22, 0xa0f92b9b, 0x0800ff00,
0xffff0080, 0x2c8241f3, 0x9ef9ff27, 0xf7ffffb8, 0x216d8380, 0x6382a6e7, 0xcc0cde3d, 0xafffff51, 0x638b0040, 0xffff8b08, 0xb69a19cc, 0xe6d5ffff,
0x088bc066, 0x821901ff, 0xafff2164, 0x45cd5244, 0xdc200ca8, 0xf72df282, 0xff080641, 0x07000000, 0x1e9fffff, 0x2ba845b8, 0x2f325744, 0x00ffef0e,
0xf79a19d8, 0xff801568, 0x33b30d00, 0x22050972, 0x82330300, 0x83f22009, 0x19f42c04, 0xffff089a, 0xffa430f2, 0x82f0f4ff, 0xc2fd2c04, 0xebffff8f,
0x00ffb8de, 0x84cd0c0b, 0x2bac8218, 0xff29dc12, 0xa470e1ff, 0x0800ff05, 0xf42d2483, 0xffff28dc, 0x7b9919ff, 0xe6f5ffff, 0x20048367, 0x22448268,
0x82c335f4, 0xc2352144, 0x97266382, 0x0100ff0a, 0x19827c14, 0x0d220983, 0x1e82d603, 0x5ccfc127, 0xb15400ff, 0x2c4482ec, 0x07cccc98, 0x1600ff8b,
0xffff0a17, 0x290482ee, 0xf6e81100, 0xe8e9ffff, 0x27828bf6, 0x16850683, 0x8b201b83, 0x16821784, 0x834c3321, 0xf1ff3233, 0x00ffc275, 0xfff2f204,
0xd8e3f1ff, 0x140900ff, 0x2a7382bc, 0xff0866a6, 0x9a197800, 0x5868ffff, 0xf82605f4, 0xf8ffff52, 0x1f826666, 0xfb22e383, 0xb8829a99, 0x82cdcc21,
0x6000215d, 0x0a2b9618, 0x285c0e27, 0x590e00ff, 0x228a829a, 0x8284ab11, 0x82ff2063, 0x79002437, 0x82057c94, 0xca152211, 0x3043823e, 0x00ff0496,
0xffd62315, 0xde64f2ff, 0x021100ff, 0x30258290, 0xffb81ecd, 0xc2753e00, 0x7f01ff05, 0x40f766e6, 0x20a28315, 0x22a882f4, 0x840c17ee, 0x2eb388b8,
0x07343367, 0xccc1ffff, 0xabffffcc, 0x41051e45, 0xff2d050e, 0xffe2faf2, 0x7c94ecff, 0xeefeffff, 0x26bd8214, 0x00ff5238, 0x82f6c80b, 0xebf52b59,
0x0a00ff86, 0xffffec11, 0x9a821cff, 0x3e0a1022, 0xe621b782, 0x211e82ea, 0xe1824621, 0x82dc1221, 0x8f1e2314, 0x1082055c, 0xffcc0c2b, 0x5ccf0d00,
0xc3fdffff, 0x05d76214, 0x30f2ff23, 0x21188220, 0x48825c0f, 0xe23af222, 0x07260a82, 0xebffffae, 0x23827ad4, 0x8252b821, 0x23dc8267, 0x0040f2ff,
0xce221e82, 0x96829002, 0x82008021, 0x60f22791, 0xefffffc4, 0xeb82f608, 0xff9a9926, 0x66e6eaff, 0xea22bd82, 0x25823433, 0xfcf7ff25, 0x8486ffff,
0x21ff2225, 0x24d9829e, 0x00ff3233, 0x2904820f, 0x34b3f1ff, 0xb31100ff, 0x94828b34, 0x1e056029, 0x0900ff06, 0x828b88b6, 0xde2f3005, 0x690400ff,
0x0600fffc, 0x00ff5c0f, 0x82049607, 0x19782720, 0x9700ff98, 0xb582cc4c, 0x83050a21, 0xce4c21a1, 0xe6262482, 0x0e00ff68, 0x34829a19, 0x98990e22,
0xcc222582, 0x124234b3, 0x42318309, 0xe62f0512, 0x0e088b68, 0xff7cf8ef, 0x66e60001, 0x822cfb15, 0x0000276a, 0xccffff06, 0x4f82d723, 0xda3b0a84,
0xffff0b57, 0xff80ebe4, 0xf4a8ddff, 0x87daffff, 0xfcffffac, 0xff08e23a, 0x82e8d4ff, 0xaafb2cd6, 0xdbffffc0, 0x00ffd7a3, 0x82c6c021, 0x352a226e,
0x206e82c2, 0x346e8278, 0x7de7ffff, 0xf1ffff71, 0xff051e45, 0xbdb5d3ff, 0x54e5ffff, 0x274a827c, 0xffff0ad7, 0x8b9919d0, 0x33286582, 0xff3b0833,
0x34b3d1ff, 0xf0382182, 0xffff00c0, 0xffbe3ff7, 0xb89efaff, 0x5eecffff, 0x0800fffa, 0xffff48e1, 0x08261882, 0x75ffffdb, 0x92826666, 0x82e00821,
0x23118225, 0xa01300ff, 0xfa270982, 0x00fffebf, 0x8201400f, 0x02c0212a, 0x67277782, 0x00ff6666, 0x8200c03b, 0x99882229, 0x17f55f9a, 0x16030a19,
0x3000ff24, 0xb763ae07, 0x00402105, 0x0a23ca82, 0x18ff02c0, 0x250ad34e, 0x000000ff, 0xa982bb08, 0xb8f5ff2c, 0x4c0d00ff, 0xf5ffffcd, 0x5453cc4c,
0x41f22006, 0x932405ad, 0x00ff34b3, 0x2105e553, 0x1b820cb0, 0x9a998a22, 0xf7223082, 0xa5830020, 0xec21af82, 0x21098260, 0xc3864005, 0x40f7ff2d,
0xffff0800, 0xff9a9998, 0x8240c4ff, 0xc1ff2ab4, 0xff06146e, 0x6626daff, 0x2105828b, 0x618286eb, 0xffd66336, 0x7ad4dfff, 0xfaebffff, 0xffff08e2,
0xff1fc5f6, 0x4821faff, 0x80840482, 0x8bcccc23, 0x25168280, 0xffe6ffff, 0x6c8281ff, 0xe9213782, 0x619e82de, 0x278205db, 0x2108db61, 0xd2824821,
0x1b861120, 0x16310a82, 0xff08b81e, 0x66e65800, 0x064cf707, 0xee1e00ff, 0x22148216, 0x82ec1119, 0x14ee214a, 0xe1224682, 0x5882ec11, 0x0080e327,
0x00ffdb07, 0x279d832e, 0xe44c0f00, 0xf30700ff, 0x0521e282, 0x20048233, 0x053c4913, 0x0f2f0982, 0x0e08cc4c, 0x94f7a4f7, 0x0714fb15, 0x829206ab,
0xb3062b49, 0xfeffff34, 0xff910080, 0x1d82fdff, 0x7800ff2f, 0x00ff9819, 0x05343384, 0xb3e3ffff, 0x22718234, 0x49cc4c00, 0x00220560, 0x43823300,
0xce4c0522, 0x05233682, 0x82086666, 0xe63f2606, 0xe9ffff66, 0x2c2082cc, 0xff904239, 0x9a19ddff, 0x262600ff, 0x20b08266, 0x270a825b, 0x866bdfff,
0x662b00ff, 0xb6282382, 0x00ff84ab, 0x5866660e, 0x02201a82, 0xf6257283, 0xffff0080, 0x2f9984f7, 0x8b829a19, 0xff068508, 0x32b373ff, 0xb365ffff,
0x00267a82, 0xffce4c03, 0x2382f9ff, 0x83010021, 0x99f82262, 0x24ea8298, 0x083433f8, 0x4a41182b, 0xffff2417, 0x829a199f, 0x66e62244, 0x202a8266,
0x515982e9, 0xeb200a6c, 0x00213582, 0x20a78307, 0x23048302, 0xff686607, 0xcd266282, 0x800600ff, 0x78820800, 0xff52b826, 0xcc4c9a00, 0xf928f382,
0xff0652f8, 0x291cf6ff, 0xf8254482, 0x00ffa67b, 0x267f8208, 0xb0b20200, 0x830900ff, 0x0e00242b, 0x82be8175, 0x7b5431d4, 0x544900ff, 0x5b00ff7c,
0x00ff4821, 0x087a9420, 0x992ffe83, 0xd9d9ffff, 0xe9ffff9a, 0xffffcdcc, 0x8270bdc6, 0x19c02344, 0x0682089a, 0x9083fa20, 0xf6280025, 0x82faffff,
0x000023e5, 0x09835c4f, 0x35823420, 0x33b3e326, 0x7800ff06, 0xff2d4682, 0x05cccc7b, 0x0200ff91, 0x00ff34b3, 0x36428205, 0x00800100, 0xab088b92,
0x0714f706, 0x6691ffff, 0xffff0666, 0x8233b3ff, 0xcc4c241c, 0x83feffff, 0x0a8e4199, 0x10209682, 0x2c233483, 0x65ff70fd, 0x1f2305d1, 0x87087c94,
0x3c8a250a, 0x4c1f00ff, 0x1022f282, 0x0984d8e3, 0x1a828b20, 0x9a192123, 0x820c838b, 0x1cef224d, 0x822a8328, 0x75e02209, 0x283584c4, 0xe0ffffce,
0x00ff846b, 0x2567820f, 0x9002d3ff, 0xc887588b, 0xccffff22, 0xc8832782, 0x2105b464, 0xc883b3fa, 0x0080902d, 0xf7ef0e06, 0x6001ff14, 0x741566e6,
0x14200710, 0x22098941, 0x829a9919, 0x82002041, 0xffff2706, 0xff6666eb, 0x04821600, 0x4de5ff21, 0x068305fc, 0x220c9759, 0x826666e6, 0x82ff202d,
0x00ff2706, 0xff717d15, 0x4983e9ff, 0x2d841a20, 0x465c0120, 0x1a002305, 0xbf82fe7f, 0x9c991422, 0x18822282, 0x5b83ff20, 0xec226288, 0x6286cc4c,
0x6478e420, 0x509e1805, 0x84628b10, 0x8262848b, 0x088b249f, 0x835c00ff, 0xcc5c3d9c, 0xffff15ce, 0xff0080ed, 0x48215000, 0xfbffff05, 0xff9f0060,
0x4801f2ff, 0xe11000ff, 0x21059053, 0x21840893, 0xffff9323, 0x223283ec, 0x8200c0fe, 0xe2fa220f, 0x21168281, 0x228261e9, 0xb89ef223, 0x83d9827a,
0x82f7202d, 0xe7ff2348, 0x1a82b81e, 0x2683f420, 0xb81ede22, 0xf0275382, 0xffff66e6, 0x8200c0f5, 0x30fe280a, 0x6000ffa4, 0x1905cc0c, 0x21184007,
0x944fe660, 0x8b002405, 0x83f8ffff, 0x82048243, 0x40f7220a, 0x23f88200, 0x66e6a0ff, 0xef204582, 0x00226b82, 0x5083400a, 0x2282f420, 0xe1210022,
0xf733ba83, 0xffa400a0, 0xb8feeeff, 0xe9ffffa0, 0x00ff9042, 0x8248610d, 0xc0ee2c88, 0xffff9500, 0xffb89eeb, 0x83400100, 0x908222ba, 0x23168283,
0x83b81eed, 0x0020e882, 0xef221182, 0xf882b81e, 0x77486122, 0xa1251683, 0xafffff47, 0x2db683de, 0x770060fb, 0x600500ff, 0xeaffff27, 0x4e8200c0,
0xff919e2a, 0x0080f0ff, 0x4300ff08, 0xb4204883, 0x0021dc83, 0x213c830a, 0x30825ea3, 0xbd010023, 0x217f8270, 0x2a825ecf, 0xffcdcc2c, 0xccccf3ff,
0x331000ff, 0x30828b33, 0x8b257982, 0x0000ff8c, 0x82478220, 0x8209840b, 0x84112016, 0x82e02095, 0xa10c3214, 0x0f00ff48, 0xff89b8be, 0x48a11100,
0x00ff8108, 0x0530415c, 0x98008022, 0x2105a158, 0x69830c00, 0x8261f721, 0xe1092127, 0xd424d883, 0x05bc48a1, 0x43832e82, 0x48614622, 0x06220a82,
0xe98442e0, 0x828f0521, 0x8280207d, 0xde072555, 0x00ff80b8, 0xff2a5b83, 0x08b8def6, 0xdfffffbe, 0x28820080, 0x7d9f0425, 0x83fdffff, 0x7f07258c,
0xfeffff3b, 0x0027ce82, 0xff482105, 0x83a0ffff, 0x199f23de, 0xf982069a, 0x00211f83, 0x25468360, 0x00ffb87e, 0x0982c001, 0xa6830420, 0x00e00222,
0x00214a82, 0x204a8420, 0x207e830c, 0x212a8309, 0x9a82e107, 0x00e00a23, 0x8271848f, 0x830620dd, 0x841420d8, 0x27d38299, 0x9eb9ffff, 0xffff05b8,
0x5a20b682, 0xf7200682, 0xff215882, 0x223782f6, 0x8281faff, 0x82f32078, 0xfeff242b, 0x827e0080, 0xa3ff28fa, 0x89050040, 0x83eeffff, 0x820c20eb,
0xf0ff2376, 0xe882703d, 0xff22d182, 0xfa8221fe, 0x14020023, 0x22ab8238, 0x828c9ad9, 0x66e62405, 0x5f0000ff, 0x102305df, 0x828bb81e, 0xe2fa217c,
0x1e200482, 0x0221b282, 0x211b82a6, 0x31836110, 0xba1e0a27, 0xa15c00ff, 0x26fc8248, 0xff442144, 0x82de4b00, 0x0d00268b, 0x00ff9c99, 0x3d57820f,
0x64660500, 0x331500ff, 0xfbffff34, 0x089f6866, 0xc2d2fdff, 0x9cffff90, 0x5f153233, 0xae8202fb, 0x2482f920, 0x9eefff27, 0xffff93b8, 0x829683ed,
0xffff2455, 0x82b85ef9, 0x831020e6, 0x80f92fa1, 0x1200ff02, 0x00ffb85e, 0xfffe3f08, 0x2e820600, 0x84100021, 0x9e1b27ab, 0x4500ffb9, 0xd1824821,
0x82120021, 0xffff28d8, 0xff48e1d6, 0x825e2e00, 0x4f022c80, 0x02fba470, 0xd4ffff15, 0x83f768e6, 0xded62766, 0xd1ffffb8, 0x2c82b89e, 0xc0edff23,
0x21ad8200, 0x11829e1b, 0xad84ba20, 0x281c0428, 0x75f3ffff, 0xf54a97c4, 0xe60b2306, 0x7f828b64, 0x7cff0333, 0x00ff8f8b, 0xff00c000, 0x3cdf0300,
0x800100ff, 0x22168200, 0x82e43a11, 0x66a62287, 0x21978293, 0x6d469a99, 0x66102906, 0xaf0e0866, 0xf4f724f8, 0xff217482, 0x22168219, 0x820a57ff,
0x82fb20de, 0x00002421, 0x45ffa470, 0x382106be, 0x08098252, 0x8b9a9923, 0x0614fb08, 0x80efffff, 0xff7b8b00, 0x84ebfdff, 0xb3f0ffff, 0xfcffff33,
0xff087c14, 0x67e6ffff, 0x0680418d, 0xe2fa0129, 0x0200ff8b, 0x82081e05, 0x05352206, 0x07494e1e, 0xffe2fa3a, 0x66e63500, 0x8bc0088b, 0xd5ffffb6,
0xff8b1e05, 0xe2facaff, 0x156b7b08, 0x5682ac82, 0x7a823482, 0x66254a82, 0x4c0400ff, 0x214e82cc, 0xbc82cecc, 0xce4c0422, 0xb3210a82, 0x21148232,
0x09823233, 0x00212382, 0x82ae8404, 0x00ff22c0, 0x210f8311, 0xf0828014, 0x1e821a20, 0x820d0021, 0x1d003219, 0x088b3433, 0xffff06ab, 0xff3433ed,
0x66e6b4ff, 0x06da4505, 0x0f82f120, 0xcc0c0028, 0x00ff79ce, 0x6182cc08, 0x66e6eb22, 0x0d236182, 0x7b06cc4c, 0x33200ef2, 0xee229c82, 0x8347cd4c,
0x83ee2005, 0xb3f1218c, 0x04844a82, 0x8b220e82, 0x5d826b08, 0x66e6f625, 0x83f3ffff, 0x82f52004, 0x84ff2057, 0x820e8404, 0x18082018, 0x20082849,
0x833992ff, 0x84ff2042, 0x1b4f1818, 0x07ab260a, 0x6b0614fb, 0x82798407, 0xb3f1229b, 0x20228533, 0x858882ff, 0x91491870, 0x21368a09, 0x8e4707cb,
0x1a002105, 0xe8398483, 0xffb33333, 0x707dfbff, 0xcc2d00ff, 0xffff08cc, 0x06c235e3, 0x70daffff, 0x2b5782a4, 0xff5c8fe1, 0x66661e00, 0x2500ff8b,
0x8205a046, 0x21118206, 0x1684a470, 0x8f251582, 0x8f088b5c, 0x345e1806, 0xcc4c210d, 0xf2233a82, 0x840834b3, 0x08591806, 0x4cf52a07, 0xf2ffffcd,
0x088b00c0, 0x225f8287, 0x8233f3f4, 0x0cf7261d, 0xf7ffffcd, 0x385f82e6, 0x9a19f4ff, 0xff808b08, 0x33f30800, 0x0b00ff82, 0x088bcd0c, 0x331f00ff,
0x275b8233, 0xff9a190c, 0xcdcc3b00, 0x9924a182, 0x2f00ff99, 0x0022e782, 0x1382993a, 0x824c0f21, 0x0c0035b0, 0x00ff66e6, 0xff686603, 0x34b30c00,
0xcc0100ff, 0x0e00ffcc, 0x08265382, 0xb30614f7, 0x6a1804fb, 0x2f821cbd, 0x34820a20, 0x2005054b, 0x18b8820d, 0x4b1cff69, 0x0a20072e, 0xff208182,
0x8b26e082, 0xff2f0e08, 0xc4820600, 0xb3030023, 0x31688234, 0xffbe5ff6, 0x4821f5ff, 0x200200ff, 0xefffff00, 0x94820040, 0x82420021, 0xb8de21e3,
0x442c5982, 0xffff90c2, 0x054821e4, 0xe00900ff, 0xf9201582, 0x0d211f83, 0x28e28281, 0x9368a602, 0xd90700ff, 0x20258298, 0x2e25825b, 0x66e66500,
0xb0ffff05, 0x00ffffbf, 0x8252f857, 0xd98a340a, 0x0516fb9a, 0xc0b301ff, 0x8b158b00, 0xffb8fb8b, 0x82804401, 0x99fc2763, 0x0400ff9a, 0x38829a99,
0x82610f21, 0x82082078, 0x18002614, 0x00ffb8de, 0x23198308, 0x8b904225, 0x06831a82, 0x1684ff20, 0x83f6ff21, 0x282a8320, 0x6666f8ff, 0xfcffff08,
0x204582c0, 0x251482fa, 0x713dcbff, 0x2d838b50, 0x47214f27, 0x40a8ffff, 0x20a78200, 0x22cc8322, 0x829a1925, 0x821c200a, 0x1f002128, 0x04215983,
0x206882a1, 0x220e822e, 0x821eeaff, 0x46242068, 0x54260552, 0x4b00ff7a, 0xab827a54, 0x1a82fb20, 0x82070021, 0xfaff2cdc, 0xff91be5f, 0x4220f9ff,
0x830300ff, 0xd7ff21dc, 0x00261582, 0xffba9e1b, 0x0983a9ff, 0x46210228, 0xe2ffff5f, 0x88820040, 0xcd0cf922, 0x26308d82, 0xfaffff68, 0xff856666,
0x33b3fbff, 0xc0f8ffff, 0xd4271a83, 0xfffff568, 0x8252b8b6, 0x83fe205b, 0x83fd20a9, 0x5edc2a04, 0xc4ffffb8, 0x00ff6666, 0x238f8230, 0x9919caff,
0xf827e882, 0xfeff9a19, 0x82ccccec, 0x000830af, 0xf7ffff42, 0x00ff0020, 0xff06610d, 0x8260feff, 0x83092009, 0x830620be, 0x44002253, 0x22c482e1,
0x82b8de1b, 0xf50b2a29, 0x0700ffc2, 0x00ffe2fa, 0x363e8202, 0xcccc1000, 0x33f6ffff, 0x0a00ff32, 0x0e08cecc, 0x54f7d4f7, 0x43ffff15, 0xff210982,
0x0fe17ff1, 0x430e0021, 0xf34e07f1, 0x06eb2105, 0x2305b344, 0xff8b66e6, 0x9a219882, 0x07f07f08, 0x99ebfe27, 0x00ff069a, 0x22da8208, 0x82e60900,
0x990a22ba, 0x06b74299, 0x34b30a27, 0x330e00ff, 0x05d55d32, 0x66212382, 0x060b4668, 0x8a830920, 0x82330621, 0x9909221e, 0x221e829a, 0x446666e3,
0xdb430c7e, 0x5070180a, 0x822b2016, 0x19ca28ff, 0xb6608b9a, 0x8208c08b, 0xe6352423, 0x53ffb666, 0x0a8205b0, 0x53828b20, 0x82192a21, 0xeaff2197,
0x1e2afe83, 0xffff0080, 0xffcccceb, 0x32822400, 0x1d00ff24, 0x33846666, 0x2c219945, 0x2b2b4b8b, 0x2b088b8b, 0x14f7eb06, 0x0b204515, 0xab21a18e,
0x05a84484, 0x540e0023, 0x03b7187c, 0xe5611812, 0x824c200e, 0x0e5f4189, 0xd6feff22, 0xfe251582, 0x15343398, 0x05704bff, 0xaf82ff20, 0xcd200982,
0xce2c0e8d, 0xfbffff08, 0xff8633b3, 0x9919fcff, 0x32200a83, 0xcc200982, 0xfc222482, 0x1a820080, 0x8299ff21, 0x99ff2214, 0x8934829a, 0x33b32109,
0x9a200e83, 0xfa211e82, 0x2229824c, 0x8266e6f9, 0x00802133, 0xdc820484, 0x2b8b8b26, 0x08cb8beb, 0x30054441, 0xfa2a00ff, 0x00ffb6e1, 0x8b1f0535,
0xb68bc008, 0x07ee4160, 0xe2ffff22, 0xeb205683, 0xdb206b83, 0xea204183, 0xe1207f83, 0xf4257584, 0xffff3433, 0x20af83f0, 0x257583f5, 0xffce4cf2,
0x2d83f6ff, 0x9a19f522, 0x20056863, 0x291c82e8, 0xcccc6700, 0x1200ff15, 0x6a829a99, 0x67660d23, 0x0e4341ff, 0x4482b320, 0x3f82f220, 0x68057a42,
0xff2405a4, 0x8be13aef, 0xc5225b82, 0xa342ff1e, 0x3a0f2212, 0x231684e2, 0xc51000ff, 0x0e21ae82, 0x058c4ccb, 0x82064b21, 0x82842032, 0x64002193,
0x9b20ef83, 0x7b277b83, 0x088b33b3, 0x820714fb, 0x18ed2019, 0x2008168f, 0x21a382f1, 0x24501000, 0x82068305, 0x32332147, 0x66219682, 0x24a18266,
0x089a9911, 0x203083f7, 0x3d3b8200, 0xb39bffff, 0x6500ff33, 0xffff3333, 0x8bcd4c84, 0xff14f808, 0x9a193f00, 0xabffff15, 0x548200c0, 0x9ad9b622,
0x2006b55a, 0x31c282d9, 0x3433bbff, 0x1b00ff08, 0xffff01c0, 0xff48e1e1, 0x73821400, 0x3ddbff2d, 0x0a00ff70, 0xffff00c0, 0x824761d7, 0x8370201e,
0xb30b2898, 0x00ffe333, 0x8234335f, 0xe6732c72, 0x064b0866, 0x54f8eb0e, 0x1800ff15, 0x210bef98, 0x628286ab, 0x7a54ee27, 0xf7076b08, 0x0c2943f4,
0x47115942, 0xfb240f6c, 0xf4fb06f4, 0x18175247, 0x180d9859, 0x23085c64, 0x6b07f4f7, 0x0c755a18, 0x260eaa41, 0x00ff84ab, 0x837b540e, 0x827c2004,
0x85ab26a9, 0x06ab088b, 0x216482ab, 0x59181100, 0x0e2208cf, 0x1a867a54, 0xfbf4f723, 0x0c3c4334, 0x210aca41, 0x9a8a34fb, 0x210c5e48, 0xfd7394fb,
0x20818a0c, 0x213383f7, 0x67181100, 0xf73212c5, 0x8b0e0694, 0x8b1554f7, 0x668d00ff, 0x7200ff66, 0x04869a99, 0x101fce18, 0x11e9cc18, 0x2b691183,
0x07856b05, 0x87056c6c, 0x33548549, 0xa400ff08, 0xffff9a19, 0x150080ba, 0x33faffff, 0x0600ff33, 0xff228982, 0x6f82e6f5, 0x32b30027, 0x4cf9ffff,
0x211883cd, 0x0a880834, 0xff201482, 0xf5271483, 0x00ff68e6, 0x83cccc05, 0x82cc2018, 0x33162348, 0xf24eff34, 0x83262005, 0x82e42014, 0x36002657,
0x088b3433, 0x206b82c3, 0x214b8226, 0x55831b00, 0xce4c1622, 0x8505eb4e, 0x206f853c, 0x221483ff, 0x8498190a, 0x2018834b, 0x206f84ce, 0x822385cc,
0xff68228e, 0x822383ff, 0x269384a2, 0xff7908cc, 0x824cebff, 0x80e1257b, 0xeaffff00, 0xd3217a83, 0x296b82b3, 0x80d5ffff, 0xffff8b00, 0xc08266e1,
0x87831520, 0x8783ee20, 0x34b31428, 0xff068b08, 0x32820c00, 0x84950021, 0x097b49ec, 0x230f8b43, 0x0e00ffcd, 0xf122e083, 0x691833b3, 0x1122084f,
0xc5829a99, 0x55830e20, 0x0a821b82, 0x33b31122, 0x09e1c518, 0x839a9921, 0x278d8232, 0x8b6666ee, 0x7c00ff08, 0xff242782, 0x156666c6, 0x2006ce4a,
0x23a48217, 0x34332300, 0x24058843, 0x80e8ffff, 0x20258200, 0x2c8c8205, 0x67e6f8ff, 0xfeffff95, 0x00ff9999, 0x22a98307, 0x82cd4c05, 0x240a871a,
0x660100ff, 0x221f8266, 0x8432b3fa, 0x8208201f, 0x206c83d9, 0x21508228, 0x5083c3ff, 0x82e1ff21, 0xd7ff210f, 0xff205083, 0x9f6b2583, 0x20358205,
0x20308481, 0x201482ff, 0x83508633, 0x8395200a, 0x51672051, 0x70820585, 0x0e089927, 0xf7b4f7af, 0x0b721854, 0xffff2e17, 0x8b33b3dc, 0x4ce3ffff,
0x1c00ffcd, 0x22c083b3, 0x83cc4c23, 0x852320f8, 0x83332011, 0x82048216, 0x82f8830e, 0xbd45191c, 0x82cd2009, 0x223e8238, 0x4394f708, 0x1c4b1931,
0x0d2e4309, 0x4406d421, 0xaa44059a, 0x4c642206, 0x225782cc, 0x8334b37b, 0x2206827a, 0x836400ff, 0x2216827f, 0x827b00ff, 0x82e182a1, 0x83228215,
0x7b0b1911, 0x4cc1250d, 0xe6ffffcc, 0xc72a0483, 0xffff6866, 0xff0080d6, 0xc382d7ff, 0xa300ff2c, 0xfb063433, 0xc015cbd4, 0x7747b68b, 0xff602509,
0x9a192a00, 0x0dfc4718, 0xd5ffff22, 0x840a2948, 0x20268220, 0x30138235, 0xf9ef0e08, 0xbf01ff14, 0xff15ecff, 0x140070fe, 0x26cf8207, 0xff9a19c2,
0x82e6cdff, 0xe6cd2a6b, 0xc2ffff66, 0x088b9819, 0x2017824e, 0x217982ce, 0xb3543000, 0x00ff2a06, 0x0898993c, 0x6890feff, 0x2be282f6, 0xff05cecc,
0x33f3eeff, 0x66fbffff, 0xee233282, 0x8295f668, 0x235b270a, 0x191100ff, 0x0a82089a, 0x9ca05a27, 0x0f0a00ff, 0x2110825c, 0x04829a99, 0xffcd0c2a,
0x32b30400, 0x4001ff08, 0x00224082, 0x40824c57, 0x59210121, 0x23210593, 0x20218259, 0x2d67821c, 0x66a61c00, 0x4c2300ff, 0xf7088bcc, 0x0082ff74,
0xfb05ec28, 0xa0feff04, 0x806c1400, 0x18a58217, 0x182d4a5d, 0x29131572, 0x1c07feff, 0x9000ff28, 0x6682cd4c, 0x146efb22, 0x1921ae82, 0x21bd8299,
0x09824821, 0x82008021, 0xec112104, 0x9920bd82, 0x002cd882, 0xff295c2e, 0x66660c00, 0x1400ff05, 0xff23b182, 0x8234b3b2, 0x4c02250a, 0xf7ffffcd,
0x08212a83, 0x220982cc, 0x5cccccfb, 0x00290590, 0x08676601, 0xe61e00ff, 0x210f8267, 0x2982cd4c, 0x24830820, 0x824c0221, 0x8305201f, 0x202e8463,
0x204882fd, 0x20188200, 0x05214408, 0x844d0021, 0x662e2129, 0x69853482, 0x2a831120, 0x9a990422, 0xf7718e85, 0x200e8205, 0x275a827a, 0xff666629,
0x686665ff, 0x11825a82, 0xeeffff23, 0x200f82e6, 0x297f82f5, 0x0080eeff, 0xfbffff7a, 0x56826666, 0x4b826520, 0x99d6ff24, 0x2082059a, 0x84a4f021,
0x26098215, 0x00ffc275, 0x8234330a, 0x856b220e, 0x2e25829c, 0xff0a97d6, 0x99999a00, 0xf8ef0e05, 0x1834f834, 0x2e175aba, 0x00ff075b, 0x06cccc30,
0xcc1000ff, 0x7aff8bcc, 0xf8200589, 0x0a2dd783, 0x087e34b3, 0xe63900ff, 0xb8ffff64, 0x456d8219, 0xf820052b, 0x002a9382, 0x82343303, 0xf6ffff8b,
0x6982cccc, 0x46b3a521, 0xff291877, 0x6866feff, 0xffff8c06, 0x23c482fa, 0x98990000, 0xb3210982, 0x23398234, 0x080080fa, 0xd3200682, 0xff211682,
0x84b583dc, 0x200e8204, 0x1850828b, 0x1809bfc0, 0x200d81c8, 0x22968305, 0x6a9a9900, 0x2d820a61, 0xbd825c20, 0x9a206189, 0x33216195, 0x226685ff,
0x83cdccd3, 0x82e52061, 0xffff2706, 0xffcdcce8, 0x4f820c00, 0x66f1ff28, 0x1300ff66, 0x4e826666, 0xff210a83, 0x831483ec, 0xf3ff211e, 0xff201982,
0x1a822e83, 0xebd1d322, 0xdc23b382, 0x8aff142e, 0xc4f72397, 0x0f828b07, 0x12a3b318, 0x06f4f72d, 0xffff0bf7, 0x159a195d, 0x83feffff, 0x830120bb,
0xb3fd26ee, 0x0100ff34, 0x22a88219, 0x839899fd, 0x33cf3c8c, 0x074b0634, 0x196800ff, 0xffff0698, 0xff68e6ce, 0x9a193d00, 0xffff8405, 0x4766e612,
0xb7470ceb, 0x16ca4b0a, 0x222d884c, 0x82cbd4fb, 0x198a469a, 0x8a46cc20, 0x20b28208, 0x05e84411, 0x94094a49, 0x8333208d, 0x83cc2032, 0x8bcd2586,
0x4b14fb08, 0x0ca06d18, 0xab213193, 0x20318785, 0xad7d1854, 0x11484d10, 0x4a7b5421, 0x112706a4, 0x088b85ab, 0x18abef0e, 0x22081c8b, 0x56707de5,
0x240806ed, 0xfff668eb, 0x299c1900, 0x01ff088b, 0x069a191f, 0x911300ff, 0x00ff8bec, 0xff1ec510, 0x00c00b00, 0x780700ff, 0x080e8252, 0x085ccf29,
0xfd85feff, 0x2701ff70, 0x8b050cd7, 0xb3eafeff, 0x02ff0532, 0x45cccc56, 0xa6ffff15, 0x00ff3cca, 0x0586eb45, 0x820f00ff, 0xf4ff2323, 0x0a82e2fa,
0x50381522, 0x60838082, 0xa4301d22, 0xe321b882, 0x22588218, 0x82be8019, 0xe600236a, 0x0c830766, 0xff231c82, 0x8214eee2, 0xc2f5261c, 0xaeeaffff,
0x2c308214, 0xff08d863, 0x666692ff, 0x70b4ffff, 0x294682a4, 0xff060000, 0x00806bff, 0xa9826b05, 0x867a1421, 0xbc002111, 0x42828082, 0x90821a22,
0x04823882, 0x97140028, 0xe6ffff0a, 0xca82d663, 0xff00ff23, 0x213482fa, 0xdc82e8b4, 0x1ccf3b25, 0x18ffff05, 0x2b3652bb, 0xffff21d0, 0xff1a8ff5,
0x27d10100, 0x1852bb18, 0x18136972, 0x221452bb, 0x72ff1283, 0x30081469, 0x7cf770fb, 0xffff157b, 0x0671fdd7, 0x4c7500ff, 0x00ff07cc, 0xff8f8244,
0x48e10f00, 0x7d3100ff, 0x3f00ff70, 0xffffe0fa, 0xff6866f9, 0x723d4a00, 0x268a8208, 0x00ff281c, 0x829a19b2, 0x4cff27da, 0x0800ffcc, 0x1f820040,
0xff9a1924, 0x09830600, 0x66e6f723, 0x2925828b, 0x06156e20, 0xdef7ffff, 0x1c828bb8, 0x82b81e21, 0x82c02004, 0x84ff2026, 0x00c02221, 0x26468208,
0xffff4821, 0x8266e64d, 0x5ff92546, 0xb5ffffbe, 0x00281f82, 0xff8a8131, 0xce0cc0ff, 0x85228482, 0x25827b1f, 0x82cc8a21, 0xd7ff2791, 0xff06e1fa,
0x4c84e9ff, 0x4c83ee20, 0x3c7e0482, 0x82082005, 0xa0fb2b06, 0x0300ff00, 0xffff42a0, 0x098260fc, 0x42600422, 0x00238082, 0x820100d0, 0x850c83d1,
0x2521821c, 0x00ff8b00, 0x7c826004, 0x06000026, 0x1600ffa6, 0xff21b382, 0x230482ee, 0x66e61100, 0xb8855e82, 0x52b8652a, 0xff1534f8, 0x9a99a400,
0x07243f82, 0x053b7a14, 0x2e20a782, 0x0032cd82, 0xdbd72307, 0xffef0e05, 0x66e61c01, 0xff1514f7, 0x3c83c3ff, 0x0e000022, 0xb6182182, 0xa82f10c9,
0xff08ae87, 0x9919ffff, 0x66edffff, 0x4d00ff58, 0xff2a0eb8, 0xfeffbf01, 0x010000ff, 0x05820500, 0x82800321, 0xf9ff21c7, 0x0020a083, 0x38820b82,
0xb8def122, 0x00211782, 0x2b5a8256, 0xff16ee0b, 0xaafebf00, 0x5901ff05, 0x6a22a883, 0x7b8266e6, 0x82800621, 0x80c321eb, 0x30223e83, 0xcd8570bd,
0xe8210024, 0xe482bdf6, 0x00803923, 0x25068208, 0xffae874f, 0x0482bfff, 0x913f0029, 0xb1ffffec, 0x828bb85e, 0x5cba2259, 0x316c8229, 0xff0a57c6,
0x146eceff, 0xb3f2ffff, 0xbeffff33, 0x1a821e45, 0x5e8f7227, 0x176f00ff, 0x08b5424c, 0xffe06f2a, 0xaec7faff, 0xac0100ff, 0xfa221e82, 0x40830ad7,
0x48e1f822, 0xf8314082, 0xffff5cef, 0xff10d8fc, 0x3148fbff, 0xf8f9ffff, 0x0d1f7510, 0x42dfcf21, 0x6f2007b5, 0xf72d0982, 0xff087cd4, 0xd0025002,
0xfc2ffeff, 0x091f75ac, 0x00ff0a25, 0x825c0f0f, 0x82e0205f, 0x21082dcd, 0x0a00ff48, 0xff08ee67, 0xc0350800, 0x6c200a82, 0x1f755282, 0xf72f2913,
0xff158b44, 0xcd4cf7ff, 0xbf838883, 0x34b3f822, 0xf7280a82, 0x5b08cc4c, 0xbb06ab07, 0x0acd4e18, 0x00ffcd25, 0x82cc4c07, 0x3333242c, 0x84eb088b,
0x5a402036, 0xf721155a, 0x20838240, 0x22048207, 0x82c0f8ff, 0x78082009, 0x06830560, 0x1b864282, 0x6805b55a, 0xff2307c3, 0x85ccccf8, 0xf7ff2a1b,
0x088b3433, 0xa8f700fb, 0x26bc8215, 0xffff7b34, 0x824861e7, 0x37012ce6, 0xfcffff0a, 0x00ffe15a, 0x82f62805, 0x230f833c, 0x1fa50300, 0x2582e283,
0x9e180023, 0x822582b8, 0x21358205, 0x0a82f833, 0x60a50327, 0x380100ff, 0x222b8210, 0x83f02705, 0x84a0203b, 0x8408200f, 0x22258651, 0x82ccf7ff,
0x991829d6, 0xffff059a, 0xfff6c8fe, 0xe2265182, 0xd7faffff, 0x0f858b0a, 0x1e207182, 0xf7223082, 0x35823dca, 0x82666621, 0x66e72325, 0x3582ff66,
0x0a82cc20, 0xa05afc22, 0xc7212582, 0x222b82f0, 0x8310d8fa, 0x8460203b, 0x8292820f, 0x21258251, 0x878244cb, 0x9a19ac2c, 0x9970ffff, 0xffff159a,
0x3b82e6df, 0xe982e820, 0x83d9ff21, 0x99f22114, 0xd6201982, 0x83052c43, 0xffff2906, 0xffec11d9, 0x146e0d00, 0xee262a82, 0x1700ff14, 0x7c82f628,
0x82a6be21, 0x35e72f35, 0xd1ffffc2, 0xffff3373, 0x8b68e6c0, 0x73820841, 0x4882ec20, 0x850f002e, 0xf0ffff1f, 0x00ff0080, 0x8bd72313, 0x5d257982,
0xcb060a57, 0x21f48207, 0x1482c011, 0x87400e21, 0x240e8204, 0x14f7088b, 0x05ef7906, 0x23108579, 0x00ff074b, 0x47823a83, 0x82f62821, 0x830f203d,
0x82048252, 0x3313250a, 0xd58b0834, 0x2605a050, 0x98193f00, 0x82beffff, 0x180027b8, 0xff08cecc, 0xd282effe, 0x665b0024, 0xb7821566, 0x06008023,
0x201682ff, 0x154918cd, 0x99192407, 0x83d8ffff, 0x99412247, 0x839a839a, 0x00ff2706, 0xff323338, 0x16832700, 0x34b31822, 0x80220e82, 0x3b870800,
0x20142142, 0x0a8242eb, 0x0c505118, 0xf2ffff22, 0xff227183, 0x16824ce7, 0x50823820, 0xccc7ff23, 0x195a85ce, 0x220d24ce, 0x8567e6c7, 0xe7ff2388,
0x9c843333, 0x3b870820, 0xc142f720, 0x08f8420a, 0x71822b20, 0x82f7ff21, 0x05b4552a, 0xcdccf824, 0x9a8300ff, 0xe3b30824, 0x1f448b15, 0x82152006,
0x1100216f, 0x1a26fc83, 0x088b0080, 0xef7124f7, 0x0956450d, 0x54077321, 0x5b2206ec, 0x70545606, 0x07a33c05, 0x01ffef0e, 0xf734b312, 0xffff1524,
0x0699999a, 0x4fa0ffff, 0xffff8b5c, 0x82d763b2, 0x66662104, 0x20cfab19, 0x82d6a321, 0x3313226e, 0x12a84134, 0x5f00ff24, 0x458432b3, 0x4d00ff24,
0x5a829a99, 0x8bce4c2d, 0xcdffff08, 0x15bbcc4c, 0x834600ff, 0x390026e5, 0x00ffcc4c, 0x24738339, 0xa4b04600, 0x78468208, 0xb321051e, 0x24168434,
0x4cb9ffff, 0x223483cc, 0x82cd4cb9, 0xb3c6238b, 0x1878ff33, 0x051f780a, 0x4c202882, 0x0da1ac19, 0x83980121, 0x99792255, 0x32d5829a, 0x94084cf6,
0xcbf0ffff, 0xffffff04, 0xfffff873, 0x8270fdf6, 0xee472104, 0xa8328882, 0xffff34f3, 0x050140a2, 0x9cd9ffff, 0x2600ff28, 0x0a82d763, 0x37605018,
0x0553c330, 0x800400ff, 0xfbffff00, 0x00ff4c77, 0xf1821906, 0x0e82fd20, 0x50060021, 0x0023051a, 0x82060070, 0xf0872616, 0x200000ff, 0x26098200,
0x00ff6030, 0x8218c402, 0xa4702134, 0xc7250482, 0xf7f308f0, 0x21438204, 0x0e820009, 0x5eba0922, 0x6625b082, 0x0f00ff68, 0x2aa58233, 0x94cc4cf6,
0xf8ef0e08, 0x8274f784, 0x5eb022d3, 0x26fa82b8, 0xff48a1bf, 0x839ebfff, 0x61b0230a, 0x11820848, 0xff230682, 0x85614000, 0x00ff2216, 0x201b824f,
0x85068508, 0x201b8316, 0x8210848b, 0x241e832d, 0x99bfffff, 0x281b8598, 0x6866b0ff, 0xfbbb088b, 0x215f8234, 0xaa82c0c9, 0xa6faff23, 0x22538266,
0x829a99fb, 0x24c2829c, 0x4c0500ff, 0x234e82ce, 0x07cc4c46, 0x08244482, 0x00ff04d6, 0x1807227a, 0x2208d566, 0x8288d608, 0x2907231b, 0x6618ff78,
0x5b230a48, 0x8306ab07, 0x221a8e21, 0x826210f8, 0x82ff2086, 0x262c8206, 0xffffcccc, 0x823809f7, 0x34332704, 0xd4fb088b, 0x224214f7, 0xfbeb235c,
0xa8821504, 0xcc4c132c, 0x380300ff, 0x1200ff94, 0xe0822085, 0xff70bd24, 0x60601100, 0x62f02105, 0x99260f82, 0xedffff98, 0x238234b3, 0x82343321,
0x9a192309, 0x2743088b, 0xcc4c2113, 0x220a2743, 0x45ff66e6, 0x0127100b, 0x060a5768, 0x83d2ffff, 0x831f204a, 0x83e220ea, 0x99342278, 0x3a83829a,
0x089a993b, 0x01ffef0e, 0xff9a19a9, 0x6666ddff, 0xfdffff15, 0x00ff6eb2, 0x82004001, 0x24bb2109, 0x4f210982, 0x2109821a, 0x098254c3, 0x08fa5e26,
0x2ef8ffff, 0xfb2d9682, 0xff05ca81, 0x7cfff9ff, 0x7efcffff, 0x260982fa, 0xffff0a2c, 0x82ea26fe, 0x7a142109, 0xf522a683, 0x95823e4a, 0x7a94f527,
0x7d0400ff, 0x263582f4, 0x00fff628, 0x820c4208, 0x97ed2640, 0x1400ff0a, 0x27308217, 0xffb81ef2, 0x5c0f1800, 0x11261e82, 0x1900ffec, 0x1e8200c0,
0xe4a5fa25, 0x821200ff, 0x07002314, 0x0982eab1, 0x825ccf21, 0xac7c21d1, 0x5e223d82, 0x058208b8, 0x829c0421, 0x44ab2152, 0xff277e82, 0x00ff00ef,
0x82fa9e02, 0x230582c6, 0x110000ff, 0x9d210f83, 0x224482f4, 0x825258f8, 0x04762125, 0xf3202582, 0x0622f683, 0x6482f8f3, 0xff66e630, 0xfeb40c00,
0xc2ffffff, 0x0d00ff8e, 0x298252b8, 0x9683f127, 0xf40300ff, 0x057b57be, 0x4c020023, 0x440982cc, 0x9244052a, 0x216a4111, 0xd6a37a28, 0x0500ff06,
0x94821cba, 0x4a2c0527, 0xba0100ff, 0x2189821c, 0xa98290c2, 0x82047621, 0xbafd226f, 0x260f82a0, 0xffffe8fb, 0x823869fe, 0xe4502129, 0xc2212983,
0x26da8290, 0x07ea2609, 0x8336ffff, 0x99e222a5, 0x5c81429a, 0x8201ff29, 0xffff0080, 0x8234b38a, 0xa0022366, 0x84829900, 0x11830e20, 0x0060fd23,
0x258a8299, 0x9a00c019, 0xbd828e05, 0x8200a021, 0x82602004, 0x80032804, 0x00ff8a00, 0x82006003, 0x40f921c3, 0x15201082, 0xf4202e83, 0x00280482,
0x7c48a113, 0x401000ff, 0xfd211a83, 0x201a82c0, 0x21158202, 0x2483fcff, 0x00a00023, 0x84e98288, 0x82e6201a, 0xf1ff2c10, 0xff05b81e, 0xb81ef5ff,
0x830900ff, 0x82f3200f, 0x055e462a, 0x0983f220, 0x82c00421, 0x1d002444, 0x8207ffdf, 0x286c8290, 0x80fdffff, 0xffff8e00, 0x825683fc, 0x267c824c,
0x9000c0e9, 0x83e9ffff, 0xe0ff213c, 0xea20c382, 0xff221a82, 0x378220fb, 0xff212584, 0x21ad82ff, 0x7782fdff, 0x36828b20, 0x1683a020, 0xb81ee225,
0x83ffff07, 0x76ff205f, 0x698205dc, 0x83f8ff21, 0x23878336, 0x01c0f6ff, 0xe6275682, 0x00fff628, 0x8214ee0e, 0x20fd219d, 0x0120c382, 0xc3831f83,
0x8b845088, 0xff7c0824, 0x1a83efff, 0xff26f983, 0xffb85eec, 0x0483f9ff, 0x0080ea24, 0x70848a08, 0x0100ff24, 0x09820660, 0x00236482, 0x82fadf02,
0x826020fd, 0x19002484, 0x837c00c0, 0x0080225b, 0x2098827d, 0x821d84f1, 0xff08240b, 0x8240e6ff, 0x84882019, 0x84048227, 0x00802276, 0x244b848c,
0x0600ff08, 0xe65718a0, 0x810b2107, 0x2005a172, 0x2181829a, 0x1a82b89e, 0xe9840220, 0x03204983, 0xf8822483, 0x7c828e20, 0x6d84c020, 0x8248e121,
0x48e125cd, 0x0a00ff05, 0xe3820a82, 0x0c20d282, 0xf7842a82, 0x21057d7a, 0x1c4140fb, 0x05294107, 0x8200ff21, 0xff882450, 0x82400300, 0x824c8271,
0x61162c61, 0x00ff8648, 0xffb89e16, 0x82200000, 0x40152641, 0x0400ff02, 0x843782e0, 0x00002225, 0x05ed41a0, 0xad418e20, 0x24318205, 0x0748e11d,
0x215f84ff, 0xca820400, 0x73830020, 0x82070021, 0x21878451, 0x73830900, 0x82190021, 0x05094219, 0xe0020022, 0xfe206c82, 0x03201f83, 0x50860982,
0x02270e83, 0x9a080080, 0x831000ff, 0x420b200b, 0xff220665, 0x39820600, 0x82150021, 0x828c201a, 0x22fe83a7, 0x82f89ffe, 0x211f8209, 0x9583fdff,
0x82a00121, 0xe6ff2c05, 0x00ffc035, 0x057cf40e, 0x838dffff, 0xcce4281a, 0xffff15cc, 0x820040e5, 0x83ea20e8, 0xc0152150, 0x00240a82, 0x0800c01a,
0x0682b882, 0x8200ff21, 0x82048611, 0x828b200e, 0x850683c8, 0x82ff2011, 0x82388232, 0x832d823e, 0xffff2445, 0x82cc4cea, 0x34498204, 0x3433e5ff,
0xef0e088b, 0x19df00ff, 0x1554f79a, 0xb34600ff, 0x22538232, 0x48ce4c39, 0xba222458, 0x58483333, 0xcc452223, 0x239383cd, 0x5b9a9933, 0x44142a49,
0x1e322197, 0xff066666, 0x06c1feff, 0x870500ff, 0xfffffff0, 0x0982e6d0, 0xff6cc726, 0x94250100, 0xba210982, 0x28f382e2, 0xffae470e, 0xf6684700,
0x36158205, 0x00ff68f1, 0xff16b909, 0xa6bb0400, 0xd60800ff, 0x0700ff46, 0x82920601, 0xb82d2425, 0x8200ff52, 0xff052e04, 0xdcd7e0ff, 0xde1d00ff,
0xd5ffffb8, 0x272f82e6, 0xff666612, 0x0080d1ff, 0x6025ab83, 0xffff32b3, 0x0550468b, 0xff6a7c26, 0xee7cfdff, 0x49267f82, 0xfcffff7a, 0x7f8208cc,
0x82904d21, 0x12832109, 0xf1200a82, 0xff234f82, 0x820a97b8, 0xbdfe274f, 0xf9fffff4, 0x908204b6, 0xff0e8d2a, 0xf072faff, 0x4c0600ff, 0x01227382,
0x05820240, 0x866b4727, 0x4a0e00ff, 0x279f823e, 0xff647b03, 0xfeb20000, 0x28051c47, 0xf2b40100, 0x830200ff, 0x21048254, 0x29821884, 0xcc4c7d24,
0x048200ff, 0xb7275382, 0x00ff70fd, 0x82900248, 0xb582360a, 0x82ffff82, 0xff0556ae, 0x9a190201, 0xe6a400ff, 0xffff1567, 0x22ba83ea, 0x82291c15,
0xf0f12220, 0x296082a4, 0xffff5c0f, 0x8bc435e9, 0x0f83ffff, 0xa5820483, 0xe583d920, 0x2adcd922, 0x4c827b82, 0x82ffff21, 0x240a8256, 0xff482126,
0x82048200, 0xff0d220a, 0x283b82fc, 0xff8b281c, 0xcccc1600, 0x260b827d, 0x0e080100, 0x4274f7ef, 0x34200616, 0x6f4a1882, 0x32002354, 0x164234b3,
0x1e45210a, 0xb222b882, 0x414b146e, 0xcc003f57, 0x157b6666, 0x26b6ffff, 0x00ff0666, 0xff34f32d, 0xcc4cdaff, 0xcc1c00ff, 0xc7ffffcc, 0x7d829a99,
0xceccc023, 0x2a068208, 0xff3233f3, 0x3433fcff, 0x83f4ffff, 0x83f92004, 0xe6f52520, 0x1ef70866, 0x230c7d5d, 0x66660e00, 0x09767418, 0x0080573e,
0x66b8ffff, 0x4700ff68, 0xffff9a99, 0x8b32b3a6, 0xd0ffff08, 0x15cb66e6, 0xe63d00ff, 0x32232983, 0x18ff9a19, 0x24210cd0, 0xe3e6ffff, 0x2b8582d8,
0xffea11e9, 0xec71f7ff, 0x51edffff, 0xf2300482, 0xff08840b, 0x1e850b00, 0xe1e9ffff, 0x0700ff48, 0xe7229a83, 0x2982e23a, 0x6666e522, 0xdc22b683,
0xb182e07a, 0x2b821120, 0x4961df2c, 0x57ecffff, 0xe5ffff0a, 0x3582156e, 0x3e4a1427, 0x82ebffff, 0x38ec828f, 0xffff9819, 0xff3333f3, 0x34331f00,
0xff0e088b, 0x48a12d00, 0x407001ff, 0x3aa58200, 0xffb85e06, 0x0080feff, 0xc5ffff05, 0x84070080, 0xd9fbffff, 0xffff869a, 0x509a99f8, 0x06830652,
0xff00a024, 0x04820400, 0xfef8ff27, 0x0600ffb8, 0x2233827e, 0x8248a1fb, 0x61f026eb, 0xc1ffff48, 0x213e83c0, 0x095340fe, 0x82032007, 0x05635bab,
0x5f430520, 0xc0292505, 0x00ff0600, 0xff230c83, 0x82e00300, 0x2007214b, 0x22074945, 0x839af905, 0xff5f2446, 0x573f00ff, 0x802005bf, 0x04221f82,
0x70826666, 0x92b99e26, 0x0800ff8b, 0x002ae984, 0x8600c008, 0x5e0700ff, 0x198284b8, 0x7b822120, 0x9e340025, 0x82bf07b8, 0x29bc83d9, 0x42000000,
0xa1c3ffff, 0xae820548, 0x8982b920, 0x82390021, 0xc6ff2204, 0x204c82c0, 0x05ca5046, 0xff250683, 0x9a593800, 0x821b83ff, 0x2e108258, 0x0000ff08,
0x00ff24e6, 0x0548613c, 0x825200ff, 0x13002332, 0x0a82b8de, 0x0a831220, 0x00600422, 0x16202682, 0xed20f783, 0x04224883, 0xab820080, 0x9a99412b,
0x8e7e05b9, 0x61f2ffff, 0x236c8248, 0x8870fdf2, 0x66261583, 0xff055d66, 0xfa83edff, 0xb89efb22, 0xe9201882, 0x12264283, 0xffff4821, 0xae82a1fb,
0x9139012e, 0x16ffffec, 0xff1534f3, 0xcccc98ff, 0x30820484, 0xcdcc9827, 0x336700ff, 0x310a8234, 0xffeb11ba, 0x34b3e9ff, 0x21cdffff, 0xbfffff47,
0x45829819, 0x34b3b222, 0x21093750, 0x3750ae87, 0x7a01280c, 0xff0634b3, 0x82211300, 0x05c66987, 0x230afc4f, 0x4c4d00ff, 0xcd216582, 0x25ef8219,
0xff66e640, 0x0983baff, 0xce4c162b, 0xf8ef0e08, 0x1534f7e4, 0x233a827b, 0x07cd4c4b, 0x2936e282, 0xffff0bd7, 0xff50f8e1, 0x32332600, 0x5ed6ffff,
0x0400ffba, 0xd682e23a, 0xf628d022, 0xd4340a82, 0xd7ffff7a, 0xffff0080, 0x8b0080da, 0x19d1ffff, 0x073b089a, 0xff233f82, 0x829a99e5, 0x66ea210f,
0x0d3b7918, 0x53821420, 0xff261a83, 0x9a991500, 0x1e83ffff, 0x661a0027, 0xf7088b66, 0x18738254, 0x8315b279, 0x18248333, 0x2710b279, 0x1524fb2b,
0x61eeffff, 0xff26e382, 0xffb89ef1, 0x0a830e00, 0x9e110024, 0xb98208b8, 0x11840682, 0xa8180486, 0xa8821bb3, 0xff244582, 0x9899f1ff, 0x49820482,
0x66eeff2c, 0xab088b68, 0x4b1524f7, 0xb282db06, 0x4ca75383, 0xfb073b24, 0xf54aabc4, 0x3beb225c, 0x3bdf8215, 0xff08ac08, 0xeebc0100, 0x320800ff,
0x0200ffb0, 0x00ffa490, 0x087cd407, 0x4cf0ffff, 0x04271982, 0xffff32b3, 0x82cc4cef, 0x9a992619, 0xcceeffff, 0x37764dce, 0x34b32d37, 0xf5ffff06,
0x00ffa2f0, 0xff66660d, 0x34b3f9ff, 0x801000ff, 0x25838200, 0x089a1912, 0x005114f7, 0x05ac4241, 0x51d62321, 0xf8258b00, 0xfb15c31c, 0x23f98224,
0x8bccccf2, 0x3321ff82, 0x20048334, 0x230a8233, 0x08cdccf2, 0xff200685, 0x2605c263, 0xff3333f5, 0x52400d00, 0x94180738, 0x0e272b20, 0x1594f7cb,
0x821b00ff, 0x00ff273c, 0xff008018, 0x04830b00, 0x04831120, 0x0040122a, 0xbc559a08, 0x40d8ffff, 0x3a201782, 0x08228682, 0xab4400ff, 0x05b24414,
0xd444ff20, 0x82392005, 0xbaff2a2d, 0x088b6626, 0x9ecdffff, 0x31a982b8, 0xff00c0d4, 0xb89ee2ff, 0x21ebffff, 0xd5ffff48, 0x1a8248a1, 0xcd8cee2f,
0xe3ffffa3, 0x00ff66e6, 0x6b00c00f, 0x27d2838b, 0xff48a1de, 0xb91e1100, 0x00282d85, 0xff90021a, 0x00c0eeff, 0xe5212d82, 0x220082ff, 0x8234b3ee,
0x82de200f, 0xb3e22c47, 0xffff8b32, 0x089a99de, 0x82eb24f7, 0x195f24bf, 0x65ff069a, 0x0e2006ce, 0x82062d68, 0x4cee2620, 0x34fb08cc, 0x06ec5b06,
0x11678b18, 0xcccc812c, 0x192dffff, 0xffff159a, 0x5b8233ae, 0x66e69223, 0x250a8305, 0x6d00ff33, 0x0a829a19, 0xf628af25, 0x83f1ffff, 0xa3c22750,
0xb9ffffd7, 0x55826666, 0x68e6aa22, 0xec22ac83, 0x245028dc, 0x54782107, 0x20073055, 0x05b94e01, 0xd8231322, 0x0f227482, 0x21831e85, 0x0a821e20,
0x66261335, 0x0000ff08, 0x00ff3e0a, 0xff981955, 0x9a99c2ff, 0x824600ff, 0xafff2e04, 0x00ff3233, 0x0834b30e, 0x02ffef0e, 0x236a826e, 0x66e6b000,
0x8c279082, 0x00ff66e6, 0x828f022d, 0xe0fb2b85, 0x0100ff00, 0xffff06a1, 0xfd6a81f7, 0x5ef63207, 0xfcffffb8, 0xff08fa3e, 0x9ad98cff, 0xfdd2ffff,
0x20298271, 0x2ac583f5, 0x8466e6fb, 0x19f6ffff, 0x83818b9a, 0x669021a7, 0x44254882, 0xffff00c0, 0x28ee82b2, 0x66264000, 0xe6e6ffff, 0x218e8268,
0x1482a009, 0x8240fc21, 0x6008215c, 0x02210482, 0x20048220, 0x220e8304, 0x8200a001, 0x4033221e, 0x20d68202, 0x25a88219, 0xff989951, 0xfc834500,
0x667d002a, 0x958b0866, 0x0900ff84, 0xff219f82, 0x22af83f5, 0x829a1904, 0xb3813285, 0x40ffff34, 0xff1534b3, 0x3233bd00, 0x5f00ff07, 0x225d8280,
0x82b89eda, 0x66fa2f96, 0xa8ffff68, 0xffffb0c7, 0xff30b3c8, 0x8782cfff, 0x83ddff21, 0x99ef2913, 0xa4fb089a, 0x66ce00ff, 0x4d54f282, 0x6000265b,
0xffff9a99, 0x279e83c9, 0xcc4cf1ff, 0xf0ffff8f, 0xa750af82, 0x39125206, 0x2d05ed41, 0x8b9c2403, 0xd20200ff, 0x0100fff2, 0x09820601, 0xffdce43a,
0xf6c80000, 0xcbffff08, 0x00fffe89, 0xff386928, 0x6666d2ff, 0x804500ff, 0x2705ea68, 0xef0e08e5, 0x195f00ff, 0xe2209382, 0x8b229382, 0x4d42ffff,
0x34b32116, 0x05224f82, 0x5f8200a0, 0xe01a0522, 0xa6205f82, 0x04224582, 0x6482a4b0, 0x0806613c, 0x05fdfeff, 0xcb00ff1e, 0xff0518a4, 0x6766a2ff,
0x99fdffff, 0xb3ffff98, 0x0482cccc, 0x829a9921, 0xcca12656, 0x02ff08ce, 0x27eb8317, 0x15323308, 0xe6eafeff, 0xd9264082, 0xff0566e6, 0x46833600,
0x5c8f0e22, 0x7d26a082, 0x3100ff70, 0x6582d863, 0x00403b22, 0xfe25b682, 0x00ff5438, 0x2e1f8246, 0x9a99c7ff, 0x4f3900ff, 0xb8ffff5c, 0x828b6666,
0x19bb221a, 0x20578299, 0x25c883c7, 0xffec11c8, 0x2082feff, 0x87baff23, 0x201a82ae, 0x230a8266, 0xcc4c7800, 0xfb278c82, 0x00ff8f82, 0x5a926d03,
0x230894a6, 0x5f01ffef, 0x00ffcccc, 0x1534b350, 0x192c00ff, 0xffff079a, 0xff34b3e8, 0xfe7f0c00, 0xe6e5ffff, 0x0600ff66, 0xff210e82, 0x0cc052e4,
0x300a114c, 0xff8b9a59, 0x0040a0ff, 0x0000ff08, 0xffff2100, 0x213283ec, 0x3c82840f, 0x490a3b59, 0x0b280603, 0xff8b28dc, 0xc4f50900, 0x56215482,
0x058c5d46, 0x1709003f, 0xffff08ce, 0xff9a59c2, 0xec913d00, 0xedffff05, 0x00ff84eb, 0xff9a1912, 0x9819f6ff, 0x223082a3, 0x829a9919, 0x33802121,
0x6f229582, 0xcf47cc4c, 0x01ff375c, 0xff989996, 0x343393ff, 0xa5ffff15, 0x05e534b3, 0xffff977f, 0x7a82b3ef, 0xcccc0624, 0x87828b7a, 0x1ec5b028,
0xeeffff06, 0xf7820040, 0x90c2f126, 0xc0f1ffff, 0x10820a83, 0x00ff082d, 0xffc40300, 0xccccb0ff, 0x827a8b05, 0xa2a521de, 0xd9203b82, 0x0c23d882,
0x827fc400, 0x4f5a221d, 0x2a55825c, 0xff05e2ba, 0x00800c00, 0x82f3ffff, 0x14002304, 0xe382703d, 0x14830f83, 0x5c272582, 0x00ff707d, 0x8300805c,
0x849d2125, 0x85212a82, 0x2220821e, 0x86ce4c14, 0x2a2a8230, 0x49ffff08, 0x00ff3433, 0x1866e614, 0x210e168f, 0x2b82b89e, 0x48610d23, 0x21068308,
0x43180040, 0xff20090f, 0x82051547, 0x48612106, 0x0a221b82, 0x4118b89e, 0xcb820be9, 0x82c0f221, 0x83f52091, 0x82f52065, 0xf2ff2c37, 0x088b32b3,
0xf4f72f0e, 0x8215d4f7, 0x4cb9271d, 0xc6ffffcd, 0x048334b3, 0xc5583320, 0x39002312, 0x5682cd4c, 0x33b34622, 0x8307f358, 0x052e4311, 0x15820020,
0xd8828b20, 0x58092159, 0xff290af3, 0x9a1971ff, 0xcc18ffff, 0x2cc982cc, 0xff66e6de, 0x34333700, 0xff06eb05, 0x270c83ff, 0xccccc8ff, 0x2100ff05,
0x84229683, 0x0a829a19, 0x82802721, 0x82a120d4, 0x00ff2822, 0x7f32334d, 0x833b00ff, 0x33bd223e, 0x22a48232, 0x826866af, 0xefff277d, 0xffff9819,
0xab8233f2, 0x0e820484, 0xfe237d82, 0x82866b7d, 0x07ef2254, 0x202882ae, 0x23e182f2, 0xcccc0d00, 0x1021b182, 0x233383e6, 0x98995000, 0x17264a82,
0x4200ff0a, 0x5a82cecc, 0x97c33523, 0x06f15a08, 0x82865e20, 0x00ffcd32, 0x0566e67b, 0x94f8ef0e, 0xff15b4f7, 0x142e2c00, 0x23243f82, 0x00ffecd1,
0x0a820482, 0x7e821082, 0x22641783, 0x21168305, 0x8964ffff, 0xecd12107, 0xdc227882, 0x1b82142e, 0xff233883, 0x82ecd1d3, 0x8206832d, 0xcccc213f,
0x54821684, 0x8b343326, 0x8b14fc08, 0x33205fa1, 0x5f837684, 0xde82cd20, 0x51644782, 0x82ff2007, 0x8c6a8264, 0x83a4825f, 0x215f8216, 0x2d82152e,
0xe6bf0025, 0x8234fb66, 0x68392263, 0x27b882f6, 0xffa4b02d, 0x5c8f2e00, 0x39220a82, 0x9582a470, 0x06820020, 0xd1ffff24, 0x1684c275, 0xc7ffff24,
0x3582a470, 0x97c6ff23, 0x2258820a, 0x825c4fd2, 0x2a11821b, 0x8fc6ffff, 0xffff085c, 0x829a19ff, 0x9a99210a, 0x04822c82, 0x66d1ff28, 0x3900ff66,
0x31826666, 0x19300025, 0x82153b9a, 0x83102056, 0x65033161, 0x0f00ffe4, 0x00ff1ec5, 0xff923805, 0x66e60e00, 0xfd2c3c82, 0x00ff56ae, 0xffd82300,
0x68e6fdff, 0x80210982, 0x4f098200, 0x9c2805a2, 0xff063433, 0x0080b1ff, 0xc0207482, 0xff235482, 0x82cc4cc4, 0x41b6200a, 0xf12a05e5, 0x00ff3233,
0xff33b30c, 0x7f82f4ff, 0xb30f0023, 0x26708233, 0x9a190a01, 0x4cff6a06, 0x4b8206a3, 0x19280023, 0x2a7f829a, 0x0800802d, 0xe647ffff, 0x834cf766,
0x7205228e, 0x256a82f2, 0x00ff7ffb, 0x7e832e05, 0x8268a021, 0xae472109, 0xf5222282, 0x0a824d17, 0x8270fd21, 0x8202201a, 0xf3ff2156, 0x16827282,
0x152ec228, 0xcfffff06, 0x7f82295c, 0x828fd821, 0x33d622ff, 0x230a8233, 0x080180cc, 0xf5210682, 0x2c8a82b3, 0xff12e307, 0x9a99f7ff, 0xbb0900ff,
0x238a82a6, 0x0080c700, 0xeb273382, 0x00ff7b94, 0x4fcccc17, 0x1e2206dc, 0x8e820180, 0x33b3212f, 0x7001ff08, 0x15a30200, 0x28c2ffff, 0x222782f6,
0x823433f3, 0xebf33249, 0xfcffff84, 0xffff87f6, 0xff1e05f5, 0x08ccfaff, 0x21a88208, 0x0a829899, 0x8c71bd22, 0xe6210582, 0x05c77c66, 0xea227683,
0x1182ae87, 0xff006030, 0x0a17ecff, 0xf9f6ffff, 0xeeffff9a, 0x31823e0a, 0xce0c1527, 0xf00b00ff, 0x257982a4, 0x00ff66e6, 0x04826607, 0x3a821920,
0x2a221a82, 0x8082e07a, 0x40ca2531, 0x42edffff, 0x1a00ff90, 0xffff7854, 0x8270bde2, 0xc103231a, 0xbd820688, 0x8278be21, 0xe6072620, 0x0800ff68,
0x236d8266, 0xce4c0a00, 0x00266d82, 0xffff7f33, 0x8a82d8ff, 0xcc290028, 0xcfffffcd, 0xe483d04c, 0x30334227, 0x4c51ffff, 0x08c782cc, 0x98f9fa2b,
0x021000ff, 0xf7ffff90, 0x00ff5c6f, 0xff289c0e, 0x0cd7f4ff, 0x170c00ff, 0xffff080a, 0xff7453fe, 0x6adc0100, 0x35fdffff, 0x20d48200, 0x22b28277,
0x829cc4fd, 0x82b22018, 0xecff237c, 0x2e827cd4, 0x0514ee22, 0xe7263e82, 0x0600ff6c, 0xd28212e3, 0xff2cb225, 0x82640500, 0xf3f52624, 0x0300ff34,
0x23dc838a, 0x07f41d17, 0x0222a182, 0x3b829683, 0xff942326, 0x643b0200, 0x94215482, 0x2054837c, 0x2169828e, 0xf88270ef, 0x16b90327, 0x0fefffff,
0x2bb4825c, 0xfffff0e7, 0xff142ef0, 0xfa5efcff, 0xfe221e82, 0x38825278, 0x82deaf21, 0x34332104, 0xb3223882, 0x0a828b34, 0x82666621, 0xc2e9251a,
0xffff0790, 0xff236b83, 0x828876fc, 0xa2b0267f, 0x9afaffff, 0x269382e0, 0xfffff6e8, 0x82ac1cf9, 0xbdec2724, 0x0b00ff70, 0xa982ec11, 0xce82fd20,
0x4d010023, 0x21458292, 0x6982fe34, 0x82ee8821, 0x2a3c2149, 0x23210482, 0x2729829c, 0xff7ad4f4, 0x66e6f3ff, 0x92823e82, 0x63f1ff29, 0xfbffffd8,
0x827bec11, 0x41ff221a, 0x25348282, 0x00ffee7c, 0x39820501, 0x1e65fd22, 0x2421c782, 0x29398206, 0xff0880ca, 0x862b1300, 0x3e82ffff, 0xfe226382,
0x92821824, 0x827a9421, 0x35f522a4, 0x212f82c4, 0x0f82e8db, 0x08ec9125, 0x83ecffff, 0x2125855f, 0x2582c4fd, 0x7ecafe22, 0x11218482, 0x265982ec,
0x00ff9c64, 0x8476be00, 0x264f8263, 0xff98ee04, 0x82fdefff, 0x8e0821b8, 0xf1228482, 0xc282727d, 0xf3226383, 0x1e825ccf, 0x3d840120, 0x82122321,
0x82b32083, 0x88ff2233, 0x210982f6, 0x6c82e03a, 0x82924d21, 0x4213221e, 0x27f18690, 0x10180800, 0x1cf9ffff, 0x0931b782, 0xffff564e, 0xff649bfa,
0xce0c0a00, 0x75fcffff, 0x064041c2, 0xfd22a882, 0x3b826a7c, 0x821ec521, 0x82c4207e, 0x6b022288, 0x21978202, 0x4a82f688, 0xf6a81022, 0x46252b82,
0x1000ffea, 0x200e82d7, 0x284e8200, 0xecd10f00, 0xa10300ff, 0x220f8206, 0x82846b02, 0xfe7621b7, 0xdc213d82, 0x2183826c, 0xe941703b, 0x231a8205,
0x07703d16, 0xcc206b83, 0x9f832b82, 0x5c4f0931, 0x650500ff, 0x0800ffa2, 0x00ff0c17, 0x8254e306, 0x2b132224, 0x06454284, 0x24020028, 0xfeffff18,
0x45826eb2, 0x8250e221, 0x82772054, 0xac0122dd, 0x20598388, 0x202982e6, 0x2329820b, 0x9a190c00, 0x8f203e82, 0x0e214882, 0x22098299, 0x82200505,
0x8e022197, 0x00221e82, 0x38827cbe, 0x82128321, 0x82fa2042, 0x82022033, 0xfdff23e7, 0x3d82e8c3, 0x82823521, 0xd4ec21e7, 0x0b231e82, 0x8205862b,
0xf8f32110, 0x6b219682, 0x22a88286, 0x82cccc0a, 0x820c202f, 0x6b0a223e, 0x208d8686, 0x21258500, 0xa3824102, 0x56590023, 0x2155828c, 0x25829899,
0x82646621, 0x00802109, 0x95284b82, 0xffff68e6, 0x1534b3be, 0x0b7ff618, 0x540e0023, 0x8e8b187a, 0xff7a2110, 0xff251683, 0x86ab1100, 0x225e828b,
0x8288ab11, 0x540e2522, 0xf1ffff78, 0x3e841182, 0x876e0820, 0xef0e2c16, 0xc500ffe0, 0x34150080, 0x8251ffff, 0x020021a6, 0x20057b6c, 0x222f82ce,
0x826666f0, 0x1aff3386, 0xd3ffff7f, 0x00ff66e6, 0xff1b3f39, 0x9a19dcff, 0x945300ff, 0x4039250c, 0x2300ff00, 0x0b5d7a18, 0xb81e1022, 0x6025ff82,
0xf8ffff00, 0x27f982a1, 0xff4881a9, 0x7cbfac00, 0xee2b4c82, 0x00ff856b, 0xff991924, 0x8280cdff, 0x33002235, 0x839d8233, 0x99dc2204, 0x251e829a,
0xffc2f5e2, 0x8d825aff, 0x00ff2308, 0xffe2fa47, 0x9a198f00, 0x4800ff05, 0xffff6626, 0x0566e670, 0xde6fffff, 0x01ff06b8, 0xffa6f0f2, 0x26832501,
0x61eeff22, 0x23205b82, 0xff288182, 0xff3c8acd, 0xb81e0000, 0x0e835082, 0x48a1dc23, 0x20d38708, 0x22568201, 0x874c0800, 0x21da82d3, 0x3682e1d3,
0xff23b883, 0x831e05dd, 0x8b0221cf, 0x200ab84f, 0x27cf8298, 0xff8bb8de, 0xe23a2b00, 0xff259582, 0x00ff50f8, 0x22f78310, 0x82d04c02, 0x9a9924d3,
0x83a9ffff, 0x79b419be, 0x0a482210, 0x21b4883e, 0xb4887c14, 0x0646e126, 0x1534fbc3, 0x2f080f84, 0x2601ff06, 0xff0734b3, 0x7ad41400, 0x1d0900ff,
0x0f00fff4, 0x00ffd8e3, 0xff20d011, 0x5c0f0700, 0xd71500ff, 0x00ff080a, 0xffce4c7e, 0x2a1c2a00, 0x1021ff82, 0x221a82c5, 0x82109805, 0x271f832e,
0xff402012, 0x6466faff, 0xc2219382, 0x229e8290, 0x82086cfa, 0xe2ba260a, 0xf5edffff, 0x26238240, 0xffff4821, 0x82d623ef, 0xb85e2123, 0x8e2b1e82,
0xffff32b3, 0x05703dda, 0x83f2ffff, 0x7d17273e, 0xe6ffff70, 0x778266a6, 0xff86eb26, 0xc2b5e2ff, 0x26052648, 0xffff8bec, 0x487a14dd, 0xfd2c0e86,
0x00fffc09, 0xff078f00, 0xa430fdff, 0x50210982, 0x21098200, 0x57827c1f, 0xc92d8427, 0x02d7ffff, 0x2257820c, 0x823333ef, 0x6866256d, 0xf3f6ffff,
0xed210982, 0x225c82e6, 0x820a9705, 0xcc4c2186, 0x04259b82, 0xffff1178, 0x2d0f82f2, 0x237b0c00, 0x87f7ffff, 0x0d00ffae, 0x7682f668, 0x58030029,
0x00ff8b10, 0x828c6c03, 0xc284215a, 0x5c260982, 0x0100ffac, 0x35821c20, 0x84ab872b, 0x3c2d00ff, 0x00ff056a, 0x225a8304, 0x82ceccfc, 0x265a821f,
0x3233fdff, 0x840500ff, 0xcecc2709, 0xa9feff08, 0x3f64cc4c, 0xff342405, 0x18330700, 0x240c6065, 0x19df00ff, 0x0c946198, 0x29070023, 0x237282fc,
0x089eef07, 0x1b250682, 0xffff6666, 0x225e82eb, 0x82801500, 0x99e42bd9, 0x0e088b9a, 0x2a02ffef, 0x164368e6, 0x42ff2005, 0x5e210661, 0x05b242b8,
0xe1ffff23, 0x07614248, 0x0800c026, 0x9ea9ffff, 0x53221982, 0xb682cc4c, 0x820a5721, 0xce4c227f, 0x21f7828b, 0x1a8266e6, 0x281cff22, 0x20063943,
0x43b1823a, 0xb3210639, 0x09f24a34, 0x64663822, 0x820f3943, 0x02002185, 0xff267c82, 0xff32b3f7, 0x0982a8ff, 0x33ae0023, 0x224c8234, 0x43feff8c,
0x4822071a, 0x65426626, 0xfa472207, 0x091a43e0, 0xe882ba20, 0x9a19482a, 0xff1574f7, 0xf4680d00, 0x0c2cde82, 0x00ffe47a, 0xff947808, 0x50780400,
0xb4341483, 0x0500ff08, 0x00ff1098, 0xff90c210, 0xe0eff6ff, 0x211200ff, 0xef22d082, 0x1882303d, 0x82089721, 0xe6852168, 0x28235d82, 0x41059a19,
0x002305ed, 0x8284e002, 0x828f2009, 0xcf02225b, 0x2253825c, 0x4a04f602, 0x302109cd, 0x066d4aa4, 0x4642d420, 0x82e22005, 0xffff3306, 0xffd8a3e6,
0x7a14f0ff, 0x11f2ffff, 0xe8ffffeb, 0x57829082, 0x33b38e31, 0xc22500ff, 0xffff0590, 0xfffb60ed, 0x82810600, 0x82ed2077, 0xf6ff2d6c, 0xffff00e0,
0xffa470fa, 0x1243efff, 0xfa222982, 0x0a82f668, 0xff703d26, 0xcd0c0900, 0xe1212d82, 0x20af8248, 0x220982cc, 0x436666fa, 0xff230619, 0x82d8e3d5,
0x0f072fa0, 0xeaffff9e, 0x00fff428, 0xff96e30f, 0x8e83eeff, 0x82d41421, 0xe1f63877, 0xfeff0848, 0x07cc4cd9, 0x0570ffff, 0xffff061e, 0x8b707de5,
0x83ebffff, 0x82ea225a, 0x240a8290, 0x08d663e6, 0x05e46aff, 0x9242f628, 0x330700ff, 0xa518ff33, 0xff240a40, 0x9a19df00, 0x135f5e18, 0x9eef0738,
0x5701ff08, 0xff079a99, 0x020b0500, 0x340200ff, 0x0400fffc, 0x098288b6, 0x820cc221, 0x1a6f2609, 0x260300ff, 0x27a98268, 0xff34b387, 0x20c5d2ff,
0x0527a982, 0xffff281c, 0x823ceafe, 0x8280201a, 0x82ff20ed, 0x03002b04, 0x088bcc4c, 0x04fb94fb, 0xc0828b15, 0xffb89e35, 0x9a190100, 0xa1f7ffff,
0xa9ffffcc, 0x00ffaec7, 0x827c3fae, 0x05e244a2, 0xffb85e26, 0x3d8acdff, 0x8042b182, 0x11e64427, 0x9ad94523, 0x2296828b, 0x8299d945, 0x0a3b2370,
0x0682ae3e, 0x9a192c2d, 0xf714fb08, 0x00ff1534, 0x423e0a48, 0xe121084c, 0x22fb8247, 0x427b1448, 0x0e240568, 0x14f8e4f7, 0x9e222182, 0x16820080,
0x00801129, 0x64fc05cb, 0x18ffff06, 0x180b23cc, 0x2109ec8d, 0x66730734, 0x187d2008, 0x2009af8c, 0x227a838f, 0x82cd4c67, 0xb3082640, 0xf7052b33,
0x29098294, 0xcb707d11, 0x9effff05, 0x4d829082, 0x3433f722, 0x976a3882, 0x997b1805, 0x0700220f, 0x06dd4333, 0xcc080023, 0x224a83cc, 0x899a196a,
0x68842240, 0x2240b0f6, 0x89666684, 0x1c6a2240, 0x2c40ae2a, 0x14fba4fb, 0x0714f715, 0xe14500ff, 0x24488248, 0xfbb89e0b, 0x29cb8214, 0x060080ae,
0x54fbf4f7, 0xe082fb15, 0x9edcff23, 0x24d382b8, 0xff4861e3, 0x820482ff, 0x2110820a, 0x0082ff08, 0x056bf922, 0xee200d82, 0x00211882, 0x5904820e,
0x1126051d, 0x088bb99e, 0x4d82d4f7, 0x37831120, 0x32591984, 0x00ff250a, 0xab140000, 0xff276382, 0x00fff2ff, 0x82666623, 0x2d048254, 0x9a991c00,
0x99dcffff, 0xfb088b9a, 0x6f592b14, 0x355a824f, 0xffb89ef1, 0x6666eeff, 0xaf0e088b, 0x4c9000ff, 0x9f01ffcd, 0x6882c2f5, 0x9999da22, 0xc02a9382,
0xd4ffff00, 0xffffcdcc, 0x2c82d9f5, 0x82e6d221, 0x26ec2296, 0x31e58266, 0xff7b94f4, 0x58f9faff, 0xd1f8ffff, 0xf4ffffeb, 0xf282245b, 0x1e85f32a,
0xfeff8b08, 0x0566669a, 0xf4310d82, 0x00ff3473, 0x8371fd0b, 0x750a00ff, 0x0400ffc3, 0x05e243e6, 0x00ffcd29, 0xffd8233b, 0x82805d00, 0xdcb92c5c,
0xffff8f28, 0x0870fdfc, 0x830200ff, 0xccfd2563, 0x0300ffce, 0xff21fa82, 0x216d82fe, 0xa85c0300, 0x820c2005, 0x211682a1, 0x51829a99, 0x8b486122,
0x24068275, 0xe0fa7f01, 0x270c8207, 0xfff83305, 0x1078fdff, 0xe0271682, 0xfbffff84, 0x828e00c0, 0x14fe34a2, 0x0100ffbc, 0xffff4661, 0xff6766d1,
0xe23a2000, 0x83b7ffff, 0x4f012d41, 0x01ff085c, 0xff9c199d, 0x00c0e2ff, 0xd221eb82, 0x228e82e3, 0x823eca13, 0x46a12feb, 0xd10900ff, 0xdaffffec,
0xffffaec7, 0xb282a6ff, 0x8fb7ff32, 0xfeffff5c, 0xffff20b0, 0xff0a57d2, 0x12c3dfff, 0x33216d82, 0x21138234, 0x678248a1, 0x32b3fb22, 0x7220c183,
0xd1831482, 0x4621fb2e, 0xfaffff8b, 0xff083eca, 0x66e680fe, 0xff239f82, 0x4472bdfa, 0xf420061c, 0x0021d882, 0x22d3850c, 0x82e87b03, 0x740322bb,
0x21a58238, 0xfe820020, 0x82d0d721, 0xf8332204, 0x212b8208, 0x0482ccec, 0xff9c0425, 0x82835d00, 0x24462c9a, 0x7e00ff5a, 0xffff285c, 0x820ad7c4,
0x750a221e, 0x2be582c4, 0x00ffa01a, 0xff70fd0b, 0x42000800, 0x0b224882, 0x1a82848b, 0x08000028, 0x996501ff, 0xbc82059a, 0x20821120, 0xb6730c22,
0x2606335a, 0xfff6a80b, 0x8299f4ff, 0x05053053, 0xaf0e081e, 0xe6a000ff, 0x8401ff66, 0x821570fd, 0x67662517, 0x680600ff, 0xf1202182, 0xff22a182,
0xe782d7fb, 0x9a99f922, 0x5e211882, 0x27e282b8, 0xffcc4cf5, 0x3ecaecff, 0x1e83d782, 0x3433ea25, 0x8208758b, 0xf8ec37e5, 0x0400ff52, 0xfffff007,
0xff0a97ed, 0xf2f20700, 0xd1eeffff, 0x148208ec, 0x36820c20, 0x1639f722, 0xae219d82, 0x273682d9, 0x00ffd6d8, 0x8bec1109, 0x03221a82, 0xae820060,
0x826c0321, 0xb700220a, 0x26e782fd, 0x00ffc540, 0x82138001, 0x110c270f, 0x0500ffeb, 0x0482ef87, 0xff343326, 0x99190f00, 0x00297185, 0x0834330b,
0x0a00ff86, 0x228782cc, 0x820080fd, 0x9a9921f8, 0x0c224482, 0x86829a19, 0xee0d0023, 0x20468214, 0x2240828c, 0x8290c20d, 0xf8b325c7, 0x1e0c00ff,
0x0023b882, 0x82337306, 0x828c202b, 0xccfb2735, 0x0e00ffcd, 0xd282ba9e, 0xeb82c282, 0xa082f420, 0xc3b59d2d, 0xa53800ff, 0xffff15a2, 0x825c8fef,
0xdaae2139, 0x6827ca82, 0xf8fffff6, 0x65ff0601, 0xef2c0594, 0xff08f0a7, 0xd518f2ff, 0xa8ddffff, 0xf3261983, 0xdbfffff8, 0xfe8284ab, 0x0a97db22,
0xff237e82, 0x82ceccd9, 0x27f083fb, 0xff9999db, 0x2be70d00, 0xb3212a82, 0x228e8233, 0x53ae0705, 0x0b2206c1, 0x548271fd, 0x0c21b983, 0x051e49a8,
0x82e1fa21, 0x140426c0, 0x0000ff7b, 0x27a482b3, 0xff85eb03, 0x9a990100, 0x10253582, 0x00ffd763, 0x27148306, 0xfff6e807, 0x9a991200, 0x5c268a82,
0x1000ff28, 0x8a826666, 0x8233f521, 0xb31a2c2e, 0xfaffff34, 0x00ffae87, 0x8232331c, 0x411d2048, 0x1d210509, 0x22c5820f, 0x82117805, 0x703d2b16,
0xcd0a00ff, 0x1a00ff0f, 0x5482a4b0, 0x82a30621, 0x5e102254, 0x218582b8, 0x54820a17, 0x82eaa621, 0x299c21f3, 0xa02d6882, 0x01ff0800, 0xffd863ec,
0xd057eeff, 0x216a8215, 0x6a821864, 0xfff66826, 0x0861edff, 0xe621d882, 0x21298266, 0x1882ec91, 0x9d825920, 0x9cefff23, 0x210a8228, 0x48830060,
0x23820c20, 0x82505821, 0xd6a32143, 0xa1212382, 0x262e8248, 0xffead10a, 0x834fe5ff, 0x30ed8286, 0x00c0e3ff, 0xe2ffff8b, 0x8b0834f3, 0xf0e2ffff,
0x21b483a4, 0x1683fff0, 0xf5ffff29, 0xfffff232, 0x82c235e6, 0x83f920d3, 0x82ee2098, 0x070021d3, 0xed226e83, 0x82826666, 0x82686621, 0xcd4c2168,
0x03255482, 0xffff64e6, 0x291483fe, 0xff9c1904, 0xcd4cffff, 0x16828b8f, 0xf4a80c22, 0x0b22fa82, 0xa582e4fa, 0xffdf8f2b, 0xac070500, 0x700c00ff,
0x201a8221, 0x220a830d, 0x82cd4c22, 0x68e62619, 0x662400ff, 0x22298267, 0x82323326, 0x24002186, 0xf822db83, 0x16829819, 0xff7c5424, 0x2083f2ff,
0x0a572222, 0x792d8682, 0xffff3433, 0x153ccad9, 0xf8f3ffff, 0x21ab8252, 0x04822270, 0xeb82c020, 0x82c0f122, 0x8f215f82, 0x8218845c, 0x0505225f,
0x24c0821e, 0x00ff862b, 0x23e68302, 0x8b6666f4, 0xe6211a82, 0x285f8266, 0x5e0ff2ff, 0x73fcffff, 0x205a82f8, 0x213a8240, 0x59824cf9, 0x46e1f322,
0xf9210582, 0x20148293, 0x227e82f4, 0x82330400, 0x82f12009, 0x0b0023f5, 0xe6821098, 0x829a9921, 0xb0032c54, 0xfdffff20, 0x00ff10f8, 0x82e8fb03,
0xf00721e6, 0xf0210982, 0x22ea8320, 0x82207008, 0x330827c0, 0x0400ffb8, 0x04825278, 0x83466121, 0x826620da, 0xa50a2735, 0x1300ff20, 0x9f829042,
0xff9a9928, 0xcccc1500, 0x8682a18b, 0x07130026, 0xfbffffae, 0x122c4d83, 0xffff6866, 0xff0e0df8, 0xa4301100, 0xfa268682, 0x00ffe27a, 0x0982170c,
0x3183f120, 0xa4300527, 0x19f4ffff, 0x21ea829a, 0x14825278, 0x98998922, 0xc72f2e82, 0xffff15ae, 0xff34b3d6, 0x86ab0800, 0x83dbffff, 0xa6e021e6,
0xd822e683, 0x5f824821, 0x83e8ff21, 0xf30c27bd, 0xebffff33, 0x81820a97, 0x82cd0c21, 0x86eb3145, 0xd7feff08, 0x8b079a19, 0x54eeffff, 0x0e00ff7a,
0xff230482, 0x4e84abf1, 0x86200ac2, 0x1683c982, 0x2f0af04e, 0xeb2801ff, 0x00ff0786, 0xff004017, 0x3e8a0d00, 0x2b203782, 0x1b223282, 0x8982846b,
0xff2a9c25, 0x83381e00, 0x83fa2099, 0x02172572, 0xecffff90, 0x1220b883, 0xff350482, 0xffcccce8, 0x28dc0400, 0xffef0e08, 0x48215d00, 0x4cbe00ff,
0x22ba82cc, 0x82b81eea, 0x25218382, 0xff00c0ed, 0x0983d9ff, 0x48a1f122, 0x662cd382, 0x00ff0866, 0xa1b85e3c, 0x0500ff05, 0x00201b82, 0x2d05fa5b,
0xffffb9de, 0xff4220f9, 0x4701fcff, 0xd868ffff, 0x60a12105, 0x8f223a82, 0xbe1824e6, 0xe02007da, 0xfc204583, 0xff27a482, 0x8b66e6e7, 0x828b088b,
0x83ce20ca, 0x61f22913, 0x00ffc748, 0x0870bd2f, 0xde240683, 0x1000ffb8, 0x00236b82, 0x82e23a66, 0xffff2a25, 0xff1e45a9, 0xaf476d00, 0x21308205,
0x308298ff, 0x9907002b, 0xc4ffff99, 0xffffad07, 0x3e8f83cf, 0xec111c02, 0x5cf500ff, 0xffff152a, 0xfff428f5, 0xf6e80d00, 0xeeebffff, 0x0200ff18,
0x827d3c8a, 0x8c2c2c14, 0x1effff08, 0xffffcc4c, 0x82666650, 0x02dd278f, 0x2c00ff90, 0x0a825c0f, 0x64e6fa2c, 0x5b0600ff, 0xffff8124, 0x2082ccfe,
0x8280fc21, 0x99f822b5, 0x2030829a, 0x200f83e6, 0x213083ca, 0xea825600, 0xcc92ff23, 0x20f582ce, 0x380a823a, 0x00800c00, 0x00ff9305, 0xff00a001,
0x48610300, 0x7e0900ff, 0xfaffffb8, 0x22bb82fe, 0x82486106, 0xcfde273b, 0x2900ff5c, 0x30823eca, 0x3433e127, 0x33af00ff, 0x220a8232, 0x823cea0d,
0x14ee212a, 0x2305f942, 0x2a1c1400, 0x3b089c82, 0x00ff9c19, 0x0814ee0d, 0xf7ebaf0e, 0x14f815f4, 0x07b4fb06, 0xccf706cb, 0xffa18b07, 0x9819edff,
0xeaffff9d, 0x088b68e6, 0xff0644fc, 0x9919e9ff, 0xeeffff8b, 0x8b7966e6, 0xccfb0875, 0xb4282883, 0xfb64f807, 0x24fb15d4, 0x18062475, 0x21127e73,
0x3a8234fb, 0x140e7418, 0xfb075b23, 0x211b8364, 0x5682fc29, 0x04d6f826, 0xccf8ffff, 0x07d78d18, 0x3e4e6b20, 0x606a1809, 0xb4f8210d, 0x2008014c,
0x4e198207, 0x0824063b, 0xab0804d6, 0x00233282, 0x84cccc08, 0x00ff2246, 0x2cfa8207, 0x3433f7ff, 0xef0e088b, 0x54f8e4f8, 0xe2841815, 0xc0e9220f,
0x39778200, 0x08b89ee4, 0xa1d1ffff, 0x00ff0748, 0x8b856b17, 0xae1500ff, 0xf9ffff15, 0xfb821038, 0x94f8f433, 0x3100ff08, 0xff075ccf, 0xfeff5f01,
0x07b4fb06, 0x20e9994b, 0x21cc8e2b, 0x5f8288d6, 0x7829f72a, 0xff075b08, 0x3433a0ff, 0x1635b882, 0xffffec11, 0xff1e85ef, 0x52781100, 0xfae9ffff,
0x0b00ffe2, 0x22098238, 0x820080e6, 0xe6fd2269, 0x22248264, 0x83408a1a, 0x00802486, 0x821600ff, 0x00ff2abf, 0x0866661b, 0xc53c01ff, 0x25e1831e,
0xff48611b, 0x1c84eaff, 0xff004032, 0x0080e5ff, 0x44fc088b, 0xff15d4fb, 0x1f053500, 0x2a273882, 0x00ffe1fa, 0x82e2fa2a, 0x0535230a, 0x0684081e,
0xffff2025, 0x831f05d5, 0xffe02716, 0xe1facaff, 0x0682088b, 0x82991921, 0xe6d5229f, 0x6a401866, 0x8b672c17, 0x156bab08, 0xffff064b, 0x825c4fb9,
0xb0c6232a, 0x0e5affa4, 0x0929440a, 0xffff7b25, 0x8286abf1, 0x85ab25d3, 0x94f7088b, 0x0f289618, 0x220a1d53, 0x5a34b346, 0x0023059b, 0x5acc4c39,
0x0e27069b, 0xf8ecf7ef, 0x82ab1524, 0x09036236, 0x0ada5c18, 0xf05a6782, 0x5a318206, 0x342306f0, 0x826b088b, 0x99d12697, 0x00ff079a, 0x2e548370,
0x056666bc, 0x800e00ff, 0xf7ffff00, 0x42ffcd4c, 0xf0220508, 0x3d826666, 0x9a19ef31, 0xfbfeff08, 0x2b073433, 0x8b07eb06, 0x832300ff, 0x82e3207b,
0x1c002104, 0xdc213a83, 0x214e82b3, 0x0683ffff, 0x83ffff21, 0x82048316, 0x21108237, 0x33822b08, 0x0401ff24, 0x3783cccc, 0x66e61022, 0x5d825883,
0x9a990f22, 0x00246c85, 0x0833b308, 0x33258283, 0x994300ff, 0x2382829a, 0x0766662e, 0xf2229b83, 0x438233b3, 0x8b83f520, 0x00c00a22, 0x0d237582,
0x5b080040, 0xb32008ea, 0x16822f82, 0x0d00ff29, 0x088bcd4c, 0x83a306ab, 0x2221825f, 0x820a00ff, 0x86002092, 0x8bcc211a, 0x0c7b4c18, 0x3e0a1441,
0xfeff0773, 0xffb8dec0, 0x34b3e5fe, 0x6700ff15, 0x00ff4821, 0x0532b338, 0x9911ffff, 0x4e3b079a, 0x55180c08, 0xff220ad8, 0x1e825b00, 0x11278582,
0x00ff0080, 0x53ae8709, 0x0f220645, 0xd9820a57, 0xa0828020, 0x02ff0723, 0x244c8237, 0xcc4c4aff, 0x21468215, 0xce82ee00, 0x19265f82, 0xc7ffff98,
0xdf82ce4c, 0x68660f25, 0x84f7ffff, 0x2304823e, 0x66e6efff, 0xee20e682, 0xff223a82, 0x2b82a4ff, 0x2106674e, 0x1c83eaff, 0xe52c0484, 0x088b0080,
0xf80e078b, 0x1504f894, 0xed251e82, 0xffff70fd, 0x31e582f1, 0xf668efff, 0xe6e7ffff, 0xf2ffff66, 0xff089a99, 0x0a83e2ff, 0xff225082, 0x1e83d4ff,
0x9a99f425, 0x83ceffff, 0x84fc2079, 0x82fc201e, 0x01002979, 0xffff32b3, 0xff3233fc, 0x34200982, 0x34200983, 0x77067e49, 0x10200565, 0xcb227683,
0xdc829999, 0x57826620, 0xcdccc723, 0x2d58828b, 0x8b33b3f7, 0xe6f7ffff, 0xffffff67, 0x0983cccc, 0xff201b82, 0xfe205484, 0x00247382, 0x059a9900,
0x67218983, 0x05ac65ff, 0x33b3f12d, 0x971000ff, 0x00ff8b0a, 0x51900212, 0x002b075b, 0xff9a1955, 0xecd12300, 0x826a00ff, 0xf50824f5, 0x5bffe18b,
0x07230bc1, 0x83a0feff, 0xe6ae27b7, 0x00ff1566, 0x4382330a, 0x0f820020, 0x660a0022, 0x00205782, 0x00218e82, 0x2487820a, 0x3e00ff08, 0x218e8233,
0x20823700, 0x83f3ff21, 0x82232020, 0xecff2357, 0x1a8266e6, 0x9e831820, 0xc482f220, 0x820e0021, 0xefff2119, 0xff232983, 0x8233b3ed, 0xfcff2183,
0xff22aa82, 0xbf824cff, 0x8233fb21, 0x99fe22fa, 0x20ff839a, 0x20df8233, 0x245c82fb, 0xcdccf2ff, 0x210482ff, 0xc758ffce, 0x83ee2005, 0xb3f52449,
0x848b0834, 0x20258200, 0x23b482ff, 0xccffffff, 0x0a822182, 0x4f840982, 0x8b227682, 0x0d82058b, 0xff206f83, 0xff223483, 0x0e8232b3, 0x8968e621,
0x82082013, 0x83ec200b, 0x84c8206e, 0x206d83b3, 0x829982c1, 0x66c42b53, 0xffff8b66, 0xfff6a8ca, 0x99830b00, 0xaec7dc27, 0xcc1100ff, 0x2b1a82ce,
0x8c4821fe, 0x2efeffff, 0x0100ff14, 0xfe275683, 0x00ff703d, 0x829a1900, 0xe3e7221a, 0x076941d7, 0xff52b828, 0x9a991000, 0xe1829d8b, 0x82220021,
0x350030c2, 0x00ff156e, 0xff33b31d, 0xec914a00, 0x820a00ff, 0x210582a0, 0x46820080, 0x0f838282, 0x33210982, 0x20708334, 0x215082cd, 0xe18232b3,
0x00ff0523, 0x229a83e7, 0x820080e6, 0x4c1c253c, 0x0400ffce, 0x2406495b, 0x00ffa192, 0x21758309, 0xa0821000, 0x82060021, 0x0f0026fe, 0x00ff9a19,
0x06d34d08, 0x4c215c82, 0x239482cc, 0x079a99dc, 0xec20cb82, 0xff217982, 0x216e82ef, 0x5183eeff, 0x5eb3e421, 0x2082059c, 0x3f82f120, 0x99f8ff26,
0xeeffff99, 0xf9290983, 0xff77cdcc, 0x3333fbff, 0x83858208, 0x82012050, 0x82e08339, 0xcdcc229e, 0x8305848b, 0xe6152bd4, 0xf5ffff66, 0xff9d6666,
0x5682f2ff, 0x800d0033, 0x078b0800, 0x19f8ffff, 0x6affff9a, 0x8b159a99, 0x070f4379, 0x0f439182, 0x33fe220b, 0x06a54132, 0xef82fe20, 0x0487ff20,
0x8b828a20, 0x82b3dc21, 0x83ee201a, 0x83ca201f, 0x83f420a0, 0x66c42304, 0x1a828b66, 0x3333c122, 0xc826c682, 0x00ff5238, 0x6282990c, 0x82f8dc21,
0x66132209, 0x0e774166, 0x77416620, 0x00ff2507, 0x07666623, 0x73212c82, 0x82a78220, 0x0f002648, 0xffff852b, 0x283b82f7, 0x5c4f1000, 0x33f9ffff,
0x25e28232, 0xff908227, 0xc083efff, 0x295c3425, 0x83f6ffff, 0x8238201e, 0x831a826a, 0x00ff2706, 0xff676634, 0xc2820900, 0x2005d87a, 0x27e68210,
0xcc0700ff, 0x0300ffcc, 0x0021bd82, 0x203a8307, 0x24b68203, 0x9a190700, 0x2035828f, 0x26ff8206, 0x68660300, 0x830500ff, 0x83032015, 0x66052229,
0x201a8368, 0x202b8301, 0x201f8301, 0x204f8301, 0x20e78201, 0x22098500, 0x82089a19, 0x99dc30dc, 0xffab059a, 0x66e63900, 0x1200ff15, 0x82909a19,
0x20288305, 0x20378304, 0x2099830f, 0x417d8406, 0xcd2106f1, 0x07f141ff, 0x0c20a182, 0x0a202383, 0x230bf141, 0x860080f5, 0x1782f982, 0x82f6ff21,
0x20048373, 0x82ea8208, 0xefff2194, 0xe3250483, 0xffffce4c, 0x215582f2, 0x0e83dbff, 0xce4cf722, 0x2009f141, 0x07fb4132, 0x8bcecc27, 0xcc0100ff,
0x821a82cc, 0xfb072796, 0x56ffff74, 0x9e829a19, 0x421a1c41, 0xd32a2590, 0xff35cccc, 0x3433dcff, 0x96828b21, 0xc2f59528, 0xaaffff8b, 0x4418510a,
0xc2410b8e, 0xf70e273f, 0x1554f894, 0x4b18ffff, 0x4b1809ae, 0x002011dc, 0xff201c82, 0xff211683, 0x0a4c1800, 0x821b8310, 0x201782fe, 0x86068508,
0x82328428, 0x24b88304, 0xfb52b850, 0x27638294, 0x06f5e8fe, 0xecf6ffff, 0xff332982, 0xff91adf8, 0xd1020800, 0xd70000ff, 0x0900ff0b, 0x82083954,
0x3e4a300f, 0xa85c00ff, 0x4a00fff6, 0x00ffd723, 0x82a4f049, 0xcdcc240e, 0x82940893, 0xaec72c26, 0xb30700ff, 0xf8ffff33, 0x828bae87, 0xf6a82146,
0xf7274783, 0xffff66a6, 0x82f6c8f9, 0xec113104, 0xf1f7ffff, 0xffffffeb, 0xff083e4a, 0x52f8b2ff, 0x2e251482, 0xc2ffff14, 0x22238266, 0x829a99c2,
0xcd0c210e, 0x0f581882, 0x00402105, 0xcc212e82, 0x063350cc, 0x1e83f920, 0x33f3f722, 0x0028af82, 0xffae47af, 0x66e6a0ff, 0xca22b282, 0x6b82e1fa,
0x1f05d523, 0x22dd82b6, 0x829a1934, 0x82002072, 0x00ff2906, 0xffe1fa2a, 0x66e62b00, 0x82057a49, 0x053522bb, 0x30228220, 0x60e0fa2a, 0x8b08568b,
0xffff6056, 0x5666e6d5, 0x2230838b, 0x829a197f, 0x7645184a, 0xcdcc210b, 0xee225582, 0x1d823333, 0x33eeff23, 0x76451834, 0x208d8207, 0x76451800,
0x82342008, 0x4c0e224e, 0x211b82cc, 0xcf7e0040, 0x222d8205, 0x82c01100, 0xb3f121b6, 0xc0833283, 0xcc4cee2d, 0xef0e088b, 0xe60b02ff, 0x8401ff68,
0x320029b3, 0xff069819, 0x68661d00, 0x182d3582, 0xffff30b3, 0x932a1ceb, 0x82e3ffff, 0x20a6828e, 0x08278203, 0x61f1ff27, 0x732b0548, 0x8b074305,
0xc4ffff33, 0xff4066e6, 0xce4cafff, 0x4ce9ffff, 0xffb508ce, 0x66e699ff, 0xffff9005, 0x248e82f3, 0x3233faff, 0x820a827d, 0xfaff2470, 0x840866e6,
0x7d862515, 0xcc0500ff, 0x11822f82, 0x0c00ff24, 0x1682cc4c, 0x6866d12d, 0xff0506f7, 0x66e6feff, 0x62ff8a8b, 0x0b83056d, 0xd7221a82, 0x8f829a19,
0x9a192727, 0x19a1ffff, 0x2259b39a, 0x827100ff, 0xffff2f38, 0x0666e67a, 0x68b5ffff, 0xc6fffff6, 0x6d829a99, 0x71fdf127, 0x4cf5ffff, 0x25e382cc,
0x00fff6e8, 0x63829902, 0x5e3af524, 0x15820899, 0x99583922, 0x9e241182, 0x1400fffa, 0x00277a82, 0xffcb010e, 0x82cc0a00, 0x630133ab, 0x01ff9082,
0x05666611, 0x331d00ff, 0xff8b0734, 0x38823000, 0x66270024, 0x0485ff66, 0x8b260e82, 0x1b00ff08, 0x1b82cc4c, 0x68661822, 0x8a2bf582, 0x1000ff3e,
0xffff3433, 0x82c275ec, 0xe6002c1a, 0xffff0766, 0x3b9819bc, 0x4a00ff15, 0x002309bb, 0x19cecc09, 0x210a650e, 0x9d852a5c, 0xa30b0026, 0xf2ffffd6,
0x83056c4a, 0x21168506, 0x0f19f4ff, 0xcc210c5a, 0x05024ace, 0x33f6ff23, 0x2b548532, 0xf8af0e08, 0x15ccf7d4, 0xe9ffff8b, 0xff20df82, 0x072f6418,
0xf4200e83, 0xff23a182, 0x8284c0ff, 0xcaff261b, 0x0000fffc, 0x22a68220, 0x8280c0ff, 0x00012109, 0xcd32ff82, 0xfeffe27a, 0x059a19ea, 0x39fdffff,
0xf0ffff1e, 0x828298de, 0xffcccc26, 0x66e6f4ff, 0x80210e82, 0x24408200, 0x6866b5fe, 0x210c8206, 0x46823d8a, 0x70bdf227, 0x0f0b00ff, 0x2530825c,
0x00ff713d, 0xe882350f, 0x7dcdff28, 0x1501ff70, 0x46827cd4, 0x00c0ff22, 0x3d206c84, 0x21079946, 0x428299d9, 0x16829983, 0x0a17ee27, 0xe81100ff,
0x23fd82f6, 0x080a1716, 0xc67b0685, 0x24168206, 0x301500ff, 0x842d82a4, 0x82168506, 0x850a20cd, 0x820820d8, 0xf7220806, 0xffff8400, 0xff9f7afc,
0xa41bf8ff, 0xfbfaffff, 0xf9ffffe7, 0xff08ec51, 0x48a15900, 0x4cb8ffff, 0x928205cd, 0xfff6e835, 0x1f45f3ff, 0x971700ff, 0x0500ff0a, 0x00ff9d2f,
0x82291c09, 0x59392c4f, 0x3900ff08, 0x00ff9999, 0x82323373, 0xb2f421ab, 0x0724cb82, 0x9783ce0c, 0x0e218982, 0x21908a57, 0xa784cccc, 0x1600ff24,
0x90839a19, 0x9c200683, 0x0b856518, 0xf1218c82, 0x286782a8, 0x7f7809f8, 0xa9f4ffff, 0x219282bc, 0x5e84a4f0, 0xffff9a25, 0x82cccc8c, 0x1c092788,
0xedffff6a, 0x8882aec7, 0x82589921, 0xecd121ad, 0xe6269c82, 0x0c00ff66, 0xb28652b8, 0xb3470022, 0xfb278883, 0x00ff28dc, 0x8216ae06, 0x008026dc,
0xcc0800ff, 0x209082cc, 0x49a21908, 0x8268200c, 0x223b8390, 0x85981916, 0x82982090, 0xe6112222, 0x82948268, 0xffff2fa2, 0x0866e6e9, 0x01ffef0e,
0xf79a19bf, 0x1b821574, 0x5c8f0c27, 0x38fbffff, 0x3b6e8210, 0xffffec91, 0xff566ef6, 0x48a10900, 0x51ffff08, 0x00ff9a19, 0x0564e6ae, 0x40f7ffff,
0x09266e82, 0xffffd48d, 0x988266f3, 0x38c90427, 0x99f2ffff, 0x2261829a, 0x824cf4ff, 0xf3ff2184, 0xff238f82, 0x82c836fb, 0xcd4c2140, 0x6f210482,
0x2140839e, 0x45826726, 0x82662621, 0x6ef62240, 0x211582d9, 0x6a82ce4c, 0x82453721, 0x00802345, 0x3a83ff8b, 0x06820820, 0xa470f327, 0xc80400ff,
0x211682f6, 0x7c82d763, 0x82a49021, 0xb95e212a, 0xae20fa82, 0x8683c982, 0x15820520, 0x8200a021, 0x20702115, 0x1f83a682, 0x4636fb22, 0x8f210982,
0x2081825c, 0x83c18200, 0xec9121c7, 0x72204583, 0x9e212a82, 0x210482b8, 0x40862891, 0x8182c282, 0x8d09002b, 0x0800ff16, 0x00ffcccc, 0x21558203,
0x81830c00, 0x990c002a, 0xfeff089a, 0x7366e6a0, 0x21085469, 0xe08226f6, 0x2205694d, 0x829a590c, 0x8200209f, 0x4dff2006, 0x16820549, 0x59207582,
0x1583f783, 0x0b217582, 0x82e282a6, 0x0d9870b9, 0x4cf5ff33, 0xf5ffffcd, 0xffff3333, 0x8b33b3f2, 0xfb14f708, 0x8360b614, 0x06af4d72, 0x66a6f322,
0xff208e82, 0xff220682, 0x5b83f6ff, 0x8206c44e, 0xf78b2160, 0x0b225fb7, 0x4d8266a6, 0x9dffff21, 0xa55fb9c0, 0x532041bf, 0xffff3222, 0x3209e54f,
0x19ef00ff, 0xff15c398, 0xcc4c89ff, 0x00ff058b, 0x82026b04, 0xe1ba261e, 0x2f0200ff, 0x2209829e, 0x848b1f05, 0x82082005, 0x4ceb3106, 0xf8ffffcd,
0xffff9022, 0xffec51eb, 0x283cf0ff, 0x3d270482, 0xffff0870, 0x84cccc77, 0x51052004, 0x002807e9, 0xffff78d3, 0xffa470e5, 0x2f056460, 0xff0080ea,
0x00801a00, 0x00ff088b, 0x069819df, 0x098c6318, 0x21849820, 0x2907d96c, 0x66e6e000, 0x0000ff07, 0x218468e6, 0x200da760, 0x253d8298, 0x020090ff,
0x32424cfb, 0x4182204b, 0xf12f060d, 0x088b66e6, 0x14f82f0e, 0xfb1534f8, 0x5cff06d4, 0xfb2215c6, 0xd05c07d4, 0x00ff2e05, 0xffb89e1c, 0x4861e3ff,
0x612300ff, 0x06c25c48, 0x19850983, 0xd5821e83, 0x08211082, 0x833383f7, 0x212e8224, 0x1e856666, 0xba5cff20, 0xfb942205, 0x22cb82f4, 0x824761ee,
0x222b7654, 0x088bb922, 0x16dfde18, 0x5c092b76, 0x8b220cbb, 0x5f8354f7, 0x82666621, 0x99f1221f, 0x38581899, 0x229c820b, 0x829a9911, 0x20c18311,
0x2197830e, 0x5fb09e11, 0x8a2beb21, 0x834c835e, 0x82002069, 0x93082057, 0xafb8205e, 0x775e85be, 0x1d414b49, 0x105fd813, 0x2f014d02, 0xfb54f723,
0x5cca5f54, 0x41060e43, 0x3422c8f0, 0x7f4394fb, 0xd0c0425c, 0x0d45eb20, 0xdd8b205c, 0x611e435e, 0x1d43bf84, 0x051e4158, 0xac425ed8, 0x42342071,
0x5b475c4d, 0xcf8d41bd, 0x2d607c43, 0x24f82f0e, 0xfb1574f7, 0xffff06f4, 0x26194fee, 0xb0280993, 0xffff8ba4, 0x08c235ef, 0xff2c0685, 0x5c4f0e00,
0xcaf0ffff, 0x1100ff3e, 0x08211b82, 0x843082f7, 0x83198509, 0x848b201e, 0x8330821a, 0x05fa5617, 0x680d0023, 0x2c5782f6, 0x088bcc4c, 0x15db44fb,
0x781a00ff, 0x24268252, 0xffae8715, 0x82048200, 0x8310820a, 0x24068231, 0x78eaffff, 0x26168452, 0x87e5ffff, 0x85088bae, 0x83168506, 0x8289821b,
0x832d8217, 0x2128821e, 0x1b850080, 0x2305e14b, 0x1574fb8b, 0x7682319f, 0x6e826485, 0x8d9e5f82, 0xa4835f82, 0x2f068b5d, 0xc4f8af0e, 0x063b158b,
0x408d01ff, 0xa78b0700, 0x2007ac5d, 0x07ac5dc0, 0x06b4fb22, 0x0c2ba418, 0x0040e92b, 0xff086f8b, 0x00c072fe, 0x18368207, 0x210cadfa, 0xcc8266e6,
0x9a19f723, 0x050f5f08, 0xff9a1925, 0x82200700, 0xe6f82948, 0x0800ff66, 0x088b00e0, 0x82050f5f, 0x83198509, 0x848b201e, 0x060f5f1a, 0xff232882,
0x8268e6f8, 0x293c821d, 0x9819f7ff, 0x44fb088b, 0xc74834f7, 0x0502415c, 0xff065b27, 0x00804e01, 0x218e8207, 0xb382401b, 0x350eb35e, 0xffff04fb,
0x0570fdff, 0x02c0ffff, 0x06eb0790, 0xf70714fc, 0xba840604, 0xe5833182, 0x0728cb86, 0xff089af9, 0x9a191f00, 0x0a234983, 0x8fff32b3, 0xff2708cf,
0xcc4ce8fe, 0xfebe01ff, 0x54fb1536, 0x40ceffff, 0xffff0500, 0xffcdccf0, 0x3a3ffcff, 0xe6f6ffff, 0xf2ffff66, 0x828b00c0, 0x48e12814, 0x92feff08,
0x820748e1, 0x0c68419c, 0x1e83e020, 0x6606f826, 0xe0ffff08, 0x2205fc67, 0x41ce4cf5, 0xf727106c, 0x01ff06c4, 0x83b8dede, 0x80152189, 0xec20d382,
0x002d0482, 0xff7edf0f, 0xccccebff, 0xc0faffff, 0x27408200, 0xff34b3cf, 0xca01e1fe, 0x220def79, 0x82b85e0e, 0xba1023d7, 0x068208e2, 0xb89e1122,
0x22069a50, 0x79e27a0d, 0xea1809ef, 0xff23084c, 0x196666f3, 0x500d36a0, 0xf122059a, 0x9a509a99, 0xff0e2a06, 0x6666e301, 0xcccb00ff, 0x206782cd,
0x2a87827c, 0x9919d5ff, 0x6100ff05, 0x820670bd, 0x422026f4, 0x61f5ffff, 0x215b8248, 0x0482be9f, 0xffb8be26, 0x9002ceff, 0x01250482, 0xffff0848,
0x233a826c, 0x48e1ceff, 0x62212f82, 0x202f833d, 0x271b83b5, 0xff48e1b6, 0xd66388ff, 0x20052262, 0x245a82ff, 0x851000ff, 0x282f821e, 0xff29dcbd,
0x9002beff, 0x21598205, 0x048341a0, 0xffff4025, 0x8225c6f0, 0x83f620a3, 0x5f0922ca, 0x872582c0, 0x00ff2d0a, 0xff890100, 0xda390f00, 0x5f0900ff,
0x09217e82, 0x21748261, 0xa4820301, 0x33030128, 0x00ff0534, 0x15823f06, 0xee850620, 0x9a821e20, 0x42c0f922, 0x40211482, 0x85448200, 0x231f820a,
0x06e1f5ff, 0xf9245f82, 0xffff00c0, 0x1a821482, 0xfd834d20, 0xcecc4d22, 0xf9278582, 0x00ff162e, 0x82de7a3b, 0x7bd42b60, 0x665900ff, 0x3c00ff67,
0x0482717d, 0x08676627, 0xbd5500ff, 0x21048270, 0x6a8214ae, 0x9f835a20, 0x63200484, 0xff263382, 0xff66a6fd, 0x89823e00, 0x82c1ff23, 0x25298290,
0xfff4a832, 0x0f82cdff, 0x190b002d, 0xb5ffff9c, 0xffffd6a3, 0x82fe7fd2, 0x01803809, 0xf8af0e08, 0xff15aba4, 0x14eedfff, 0xa5ffff06, 0x00ff14ae,
0x820a5760, 0x998c2754, 0x4f00ff98, 0x0a82ae07, 0x48611234, 0x400a00ff, 0x0b00ff00, 0x00ffb85e, 0x8bb85e13, 0xbf6108a0, 0xf4ff2106, 0x13201783,
0xff215d82, 0x820983ed, 0xff082326, 0xbc61d7ff, 0x6ec52108, 0x13245182, 0x8b8b142e, 0xf9341682, 0x00ffc635, 0xffd82325, 0x32b3dfff, 0x301c00ff,
0xd8ffffa4, 0x83052d56, 0x21168206, 0x8167ae87, 0x82f92006, 0xdaff234c, 0x358200c0, 0x51385d25, 0x82f0ffff, 0x80ff2751, 0xffffd3cc, 0xde82e676,
0x0e830020, 0x9a195922, 0x002cde82, 0xffff0020, 0xff9a19dd, 0x41011d00, 0x1e833d82, 0xb9de2226, 0xc4f7088b, 0x22136b43, 0x8300e008, 0x8b5c18bb,
0x7d152209, 0x8b5c1870, 0x66cb2208, 0x21338266, 0xb382ee17, 0x48612022, 0x1820fa82, 0x00268682, 0xff482124, 0x0482f2ff, 0x1e34002c, 0xd3ffffb8,
0x00ff70fd, 0x9a834012, 0x3533e836, 0x050a00ff, 0xe4ffff1e, 0xffff3333, 0xff34b3fa, 0x6666ebff, 0x6621ae82, 0x21b98266, 0x0f8233df, 0x0080e727,
0xf8ffff05, 0x21a582e0, 0x0482a0fa, 0x4801f626, 0x600100ff, 0xfa210982, 0x214882bd, 0x48832007, 0x00201983, 0x19850a82, 0xfe090023, 0x059943b8,
0x42050023, 0x27e38290, 0xff00c022, 0xb81e1a00, 0x24219182, 0x211a82de, 0x04829e1b, 0x00803328, 0x2400ff8b, 0x7d82e2ba, 0x82486121, 0xe10a2125,
0xf72ea782, 0xffae00e0, 0x0020e1ff, 0xc9ffff86, 0x1682b8de, 0x82867621, 0x01822190, 0x5a22ce83, 0x13414661, 0x00ff2417, 0x51200500, 0xea2106f3,
0x00511880, 0x80e52907, 0xfb088b00, 0x15c4f74c, 0x8308d761, 0x830a208a, 0xe9801804, 0x13d16210, 0xe7824020, 0x2005eb52, 0x444982c0, 0x118307a5,
0x0a749b18, 0xf8ab0e23, 0x27608314, 0xff9a5923, 0x67a61c00, 0x66220483, 0x0e8200ff, 0xf7088b23, 0x22b18234, 0x18cc4c23, 0x2c080065, 0xff8b9a59,
0x66a6dcff, 0x0754fb08, 0x211b8293, 0x10829930, 0x66270022, 0xd820e482, 0xff230a83, 0x466666cf, 0xf221054c, 0xe86e18b3, 0x00ff2828, 0x0766e69a,
0x82e4ffff, 0x06002746, 0xffff3433, 0x8b8299eb, 0x83191921, 0xcc1d2b5b, 0x07cb08cc, 0xff05ab6b, 0x1a82f7ff, 0xd7080023, 0x228d820a, 0x55ec510e,
0x0f8206b5, 0x0a890820, 0x0e00ff24, 0x1f826866, 0xcccc0822, 0x28212f82, 0x211a82f6, 0x0a824c4d, 0x34b3b222, 0x0ab1aa18, 0x8bcccc2a, 0xffff087a,
0x07008022, 0xd820ce82, 0xff215682, 0x843083df, 0x200e8204, 0x831c828b, 0x84ff2006, 0x20002316, 0x52823433, 0x88822720, 0x2f82ab20, 0x0a895d18,
0x34831220, 0x66e6e930, 0x0683088b, 0x196fffff, 0x00ff079a, 0x2c83b311, 0x0e6e4518, 0x21168a77, 0x3682b4fb, 0x7b54ee22, 0xf1221e82, 0xbb8285ab,
0x08df6918, 0x089c4518, 0x847b5421, 0x06fc6416, 0x0714f826, 0x1504fbcb, 0xf7202f82, 0xc072b482, 0x14f7220f, 0xeb9a1806, 0x19eb2016, 0x2d0a168a,
0x0700ffcd, 0xfffff628, 0x8b3333f7, 0x3282fb08, 0xff240984, 0xcdccf8ff, 0xd7210482, 0x085c830a, 0x08f62833, 0xaf0e072b, 0x193e02ff, 0xa700ff98,
0xff159a99, 0xb89ed2ff, 0xccb500ff, 0xffff05ce, 0xff0020fa, 0x46a11700, 0x41f0ffff, 0x1400ff48, 0xffffba5e, 0x231e83ea, 0x0800c00b, 0x82069048,
0xffff280a, 0xff6666e7, 0x82610200, 0xd9e72228, 0x215d829a, 0x1e82ba3e, 0x00c0f022, 0xe0214282, 0x21488200, 0x0a82a0f7, 0x8240fd21, 0x81fb2604,
0xf6ffff48, 0x206282de, 0x25048202, 0x48a1f7ff, 0x5e829008, 0x05b8de22, 0x30834082, 0x00222a83, 0x25822109, 0x827efb21, 0x5e082125, 0x02200482,
0x00226e83, 0x0a821e0d, 0x82600421, 0x0a00224f, 0x208e82e1, 0x24548203, 0xb81e0c00, 0x0537458b, 0xa0faff22, 0x00219482, 0x4365830a, 0x098305e9,
0x82e0f621, 0x820220c2, 0xf4ff212e, 0x26214484, 0x22598261, 0x829a1966, 0x82e92094, 0x06002115, 0xff211f82, 0x206483e4, 0x244e8205, 0xb89ee0ff,
0x20ba828b, 0x2d5583dd, 0xaec7d9ff, 0xd6ffff84, 0xffff3433, 0x5b8240ec, 0xd4b6ff39, 0xffff067c, 0xff9a19d7, 0xf4c81300, 0xe6d8ffff, 0xffff9266,
0x839a19dd, 0x283a8333, 0x61e4ffff, 0xfaffff47, 0x21e98260, 0x0982e1e9, 0x8220f921, 0x83002037, 0x99002374, 0xe38366e6, 0x00216f82, 0x2499820b,
0xb93e0700, 0x21e884ff, 0x93820a00, 0x5e050024, 0xc88208b8, 0xffd82329, 0x7c540500, 0x820c00ff, 0x260f8255, 0xffff66e6, 0x824861fc, 0x22fe831a,
0x83a0fbff, 0x830820fe, 0x83fd205f, 0x20092144, 0x0421de82, 0x21048280, 0x0482c002, 0x29820820, 0x00ff9025, 0x8346210f, 0x82d4206a, 0x5d082546,
0xfbffff72, 0x09222083, 0x7065b81e, 0x412a8206, 0x0022069e, 0x4f822005, 0xdee8ff26, 0x0700ffb8, 0xff214082, 0x228a82e6, 0x82a0fdff, 0x9eea25be,
0xf4ffffb8, 0xea21f684, 0x82c982a1, 0xffff220a, 0x217382f0, 0x1983ebff, 0x4d83fa20, 0x6e82e820, 0xd2ffff33, 0xffffada7, 0x0552384a, 0xc0feffff,
0xffff8607, 0x289e83ff, 0x8bccccfa, 0xb3faffff, 0x236a8234, 0x0700c0b9, 0xc2320c82, 0x00ffcc0c, 0xff41a133, 0x9a19ccff, 0xab3f00ff, 0xd7828b85,
0x48212531, 0x3c00ff06, 0xff8b0040, 0x67263200, 0x8400ffb9, 0x663b22cf, 0x211c8266, 0xd582e002, 0x48a12622, 0x2322ce82, 0x278200c0, 0xff231083,
0x82b85ed9, 0x78042510, 0xc5ffff50, 0x3220da83, 0xff214e82, 0x230482d1, 0x34333c00, 0x3f225389, 0x5382ba9e, 0x78943323, 0x210682be, 0x4f83e63e,
0x3433462d, 0x0000ff07, 0x00ffec11, 0x82cc4c05, 0x686621aa, 0x39820982, 0xb3feff23, 0x30098430, 0x8dfeff08, 0xffffce4c, 0x1532b3a6, 0xffff7189,
0x27ed83e9, 0xff00c0eb, 0x4861e5ff, 0xff295b82, 0x06cdccda, 0xcce3ffff, 0x234782cd, 0xff749ad9, 0x22061667, 0x8200801b, 0x802522af, 0x215f8200,
0xc5821e12, 0x99830620, 0x90421924, 0x098400ff, 0x703d1d22, 0x00233d82, 0x8248e117, 0x5e17268c, 0xfbffffb8, 0x26db82a0, 0xff48a116, 0x8260f7ff,
0x0597653b, 0x66e6d635, 0x3401ff05, 0x00ff9a99, 0x159a9903, 0xe4ffff8b, 0x86740080, 0x45e32086, 0xda2205de, 0x8182b8de, 0x17858e83, 0x4014002a,
0x08a58900, 0xe0fcffff, 0x29265182, 0xff054821, 0xb6821600, 0x83080021, 0x82172161, 0x04218282, 0x25198260, 0x8bb8de17, 0x7e82a808, 0x82611921,
0x83f92074, 0x1e12219f, 0x09828882, 0xda203c82, 0x2508ba84, 0x8b480100, 0xff2f0e15, 0xae472200, 0x197400ff, 0x00ff159a, 0xff190405, 0x5278f3ff,
0x030c00ff, 0xf8ffff96, 0x0982f668, 0x22058266, 0x82f8f303, 0x0404274f, 0x0000ff19, 0xb382fcb7, 0xff37e92e, 0xf48f0100, 0xffd4f708, 0x9a197f00,
0x0c228982, 0x42822a1c, 0x932ebd27, 0xcc0b00ff, 0x202d82cc, 0x05b05c0d, 0x4b820682, 0x82f00721, 0x00c02116, 0xdb305f82, 0x0400ffe8, 0xfb08b8de,
0x0514f7d4, 0x87efffff, 0x062d7f82, 0xffff1098, 0x83856bed, 0x70f9ffff, 0x211482a4, 0xa982e690, 0xa370f922, 0x23059270, 0xe1fa0700, 0xcd821f82,
0x82100021, 0x2b238294, 0x00ff08a2, 0xff33b3f5, 0x52b89dff, 0x0a224482, 0x0a82cd4c, 0x82c4b521, 0x97ef220a, 0x2144820a, 0x73826666, 0x821f0521,
0x23098234, 0x5c8f0600, 0x992f4882, 0x01ff089a, 0xff52b87d, 0x66e6abff, 0x4514fc15, 0xff2a0cab, 0x8ba4b0f1, 0x51eeffff, 0x068508ec, 0x0e00ff25,
0x6eff7b54, 0x852307d2, 0x82f8088b, 0x11002230, 0x09d56eab, 0x4eec5121, 0x0e221399, 0x4682cc4c, 0x26066161, 0x9a197f00, 0x7d1534f8, 0xff2405ee,
0x34330f00, 0x7a265683, 0xcc1000ff, 0x8d828bcd, 0x66e68022, 0x0cde5218, 0x210eed7d, 0xee4e7c54, 0x21858405, 0x5483eeff, 0x0634fb25, 0x82ab074b,
0x66582234, 0x25568266, 0xff9a9947, 0x0a83b8ff, 0x82a7ff21, 0x074b21df, 0x24169946, 0x190fffff, 0x38f0829a, 0x8bccccf6, 0x80f6ffff, 0x0400ff00,
0xff8534b3, 0x98190800, 0xa8ffff08, 0x2d9882b3, 0x05343373, 0x1770ffff, 0x3900ff0a, 0x0a8266e6, 0xc375f62c, 0xcc0300ff, 0xf8ffffcd, 0x2a82b8de,
0xff333327, 0x8f82fdff, 0x27308295, 0xffa4f0e8, 0x52385c00, 0xfd262582, 0x00ff9a79, 0x0482190a, 0x8fa20727, 0xc70900ff, 0x7c0e82ae, 0x1a22051b,
0xa982299c, 0x52f80a22, 0x0931a982, 0xffff717d, 0xff9042fb, 0x3e0a0600, 0xf0f7ffff, 0x054643a4, 0xccffff2a, 0xf705cccc, 0x07cb0664, 0xff21db82,
0x05c268ff, 0xccccf025, 0x180e00ff, 0x2d0833c2, 0x01ff078b, 0xfb66e600, 0x14f715b4, 0xb718ab06, 0x6b340f50, 0x0714fb06, 0x99f600ff, 0x69ffff98,
0xff156666, 0x9c19fcff, 0x9a260483, 0xff737305, 0xed82dfff, 0x80f2ff2c, 0x088b6900, 0xe6e6feff, 0x64890666, 0xa347cd20, 0x820f2013, 0x0e0023e7,
0xa541cc4c, 0x19192408, 0x829c069a, 0x831020c2, 0xb3062413, 0x82979734, 0xe6032bba, 0x0300ff68, 0xff0566e6, 0x60820c00, 0x14220485, 0x27823033,
0x07014818, 0x0a872582, 0x4dff8b21, 0xf32005f1, 0xff202a82, 0x082f0482, 0x0e058b8b, 0xee01ffef, 0x01ff66e6, 0x8270fd5f, 0x38d922b3, 0x2c258252,
0xff5c8fdb, 0xf6e8f0ff, 0x9ee4ffff, 0x270482b8, 0xff080a97, 0x34b3b7ff, 0xb5220482, 0x058205c3, 0xb382cc20, 0xcd4c4822, 0xe4260a82, 0x00ff0a97,
0x2a82681b, 0xec91db2c, 0x170f00ff, 0xd9ffff0a, 0xe582713d, 0xe8afff2d, 0xfffffff5, 0xffff70fd, 0x82d7e3be, 0xf6e82304, 0x47823b8b, 0x0040e223,
0x27638207, 0xff52f8af, 0x291c4100, 0xee251882, 0x4f00ff14, 0x233383fd, 0xaec72600, 0x2422bb82, 0x4a85a470, 0x611b0023, 0x235e8448, 0x4800ff08,
0x4822f883, 0xeb826826, 0xe23a4822, 0xc0218482, 0x840a8200, 0x2284847a, 0x85146e24, 0x260023b4, 0x7f8290c2, 0x11500022, 0x00229082, 0x6682cc0c,
0x83981921, 0x8b9a2204, 0x214782db, 0x7f83c01d, 0x82500021, 0xbeff2318, 0x188268e6, 0xaf22b383, 0x3382feff, 0x99dbfe29, 0x17ffff9a, 0x8215c4b5,
0xa4b0214a, 0xeb2c0486, 0xffffb89e, 0xff5c8ff7, 0x5c4feaff, 0xff252582, 0xffae47d3, 0x28598300, 0x9999dbff, 0x662400ff, 0x22b48266, 0x8934b32c,
0xb82c215d, 0x2422dd82, 0x1c82f668, 0x2c220483, 0x3782e1ba, 0xb0150023, 0x212882a4, 0x4e845e14, 0xe282de20, 0x83ec5121, 0x82222062, 0x3a482237,
0x23d286e1, 0x00c0b7ff, 0xb82f0a82, 0x01ff0552, 0xff008075, 0x66663900, 0x84ff8b15, 0xdbff2474, 0x82ff0c97, 0x820a2004, 0x1c45210e, 0x91845282,
0xebffff29, 0x00ff48a1, 0x82207008, 0x14ae214d, 0x4f225782, 0x428208e0, 0xff1ec526, 0x00404800, 0x86063041, 0x4f0f220a, 0x8220835c, 0x61142104,
0xa4213484, 0x829784ff, 0xbd2c2283, 0x20d68270, 0x22db8207, 0x82686624, 0x9a992166, 0x4c217683, 0x334b82cc, 0x073433e2, 0x94f7af0e, 0xe62a00ff,
0xffff1566, 0x079a19cd, 0x2dfac518, 0x2800ff2d, 0xff0734b3, 0x33b3faff, 0x82ffffff, 0x210986d7, 0x1382cccc, 0x2205dd61, 0x826666ef, 0xe6ef2753,
0x0200ff67, 0xcb829a19, 0x00222a82, 0x7f83cc04, 0x6fb2d120, 0x6f844120, 0x299cc631, 0x332100ff, 0xd9ffff32, 0x8bc9d763, 0x464700ff, 0x6a270511,
0x00ff66e6, 0x82c3f555, 0x2a6b8204, 0x3e0a6a00, 0x00ff088b, 0x82cd4c24, 0x82212022, 0xf5ff2da1, 0x00ff84eb, 0xff68e61c, 0xe27aeeff, 0x1f201a82,
0xed224383, 0x4d82f628, 0xee22bd83, 0xf941a470, 0x231a8205, 0x0634b337, 0x0ba16318, 0xb3c6ff23, 0x21c98234, 0xc3184cb9, 0xf920071c, 0xff216c82,
0x203683fb, 0x210983f8, 0xf4824cf9, 0x68e6fd27, 0xf9ffff08, 0x20608266, 0x221483fd, 0x8234b3f8, 0x008027f7, 0x0500ff87, 0x1a8232b3, 0x32b3aa28,
0xe67900ff, 0x53490568, 0x05344105, 0xff214484, 0x223f82cc, 0x826666fb, 0xc8ff24b1, 0x4106cc4c, 0xde2007ab, 0x662d9884, 0xe0ffff66, 0xffffcecc,
0x083433ed, 0x83628280, 0x83f4206d, 0x83fa20bd, 0x99f3221a, 0x2950829a, 0xf7089a99, 0x9d00ff54, 0x06669a19, 0xb30a290d, 0x00ff8b33, 0x08cd4c0d,
0xff220685, 0x3e82f5ff, 0x7c180020, 0xff210929, 0x0a0666ff, 0xcd4cf522, 0x1db6e618, 0x2f0e2208, 0x1c3400ff, 0xe200ff29, 0xf715cd4c, 0x7fffffd4,
0xff05ffff, 0xd8e30300, 0x66feffff, 0xffff8f68, 0x215e83ff, 0xe6621903, 0x34b32105, 0x0c387582, 0x00ff1e05, 0xff109807, 0x90020500, 0x860c00ff,
0x00ff08a8, 0xffe08f06, 0x2c057747, 0xff1804f8, 0xb89e1200, 0x97efffff, 0x2b18838e, 0xffff085c, 0xff31330b, 0x3e4a6200, 0xf5225b82, 0x0a8233b3,
0x82ae4721, 0x6810220a, 0x202083f6, 0x204e82de, 0x273e82fa, 0xffc6a012, 0xa470f9ff, 0x66214882, 0x87348266, 0xffff290a, 0xff166eed, 0xce0c0800,
0x25052c6c, 0x5278f9ff, 0xac83fb08, 0x0566e626, 0xdef3ffff, 0xfb2c6b82, 0xffff281c, 0xffae07f8, 0xce4cf4ff, 0x7e77f383, 0x66e62106, 0xf8215c82,
0x20168352, 0x2aab82cd, 0xffffd723, 0x089a19fb, 0x836b01ff, 0xb33d22e2, 0x16e34733, 0x210c7d56, 0x78827b54, 0x00222f82, 0xe347ab11, 0x5c4f2113,
0x2214e347, 0x47ff5c4f, 0x0e25058e, 0x158b8baf, 0x059246db, 0xea180820, 0x872016f4, 0x07224282, 0xc3827929, 0x2208e173, 0xd1eb076b, 0xb4641833,
0x240a820a, 0x7829f7ff, 0x9467a008, 0x06db3633, 0xd4fc07eb, 0xf8072b06, 0x2d01ffd4, 0xff159a19, 0x66e62200, 0x51c68207, 0x802605e8, 0x1500ff00,
0x9556707d, 0xfc082205, 0x0c3d7274, 0x18eaff21, 0x2a084640, 0x0fddffff, 0x00ff075c, 0x419a9912, 0x0d2e06fc, 0xffff6666, 0x8b6666ee, 0x19ebffff,
0x0685089a, 0x2c6dff20, 0x49168205, 0xff2905ae, 0x086666f9, 0x19adffff, 0x2380829a, 0x5200ff06, 0x19837b82, 0x00ff6823, 0x27498306, 0xff9899f2,
0x9a991100, 0x14228f82, 0x448266e6, 0x06820020, 0x0d00ff23, 0x82208266, 0x826f8316, 0x272a8220, 0xff14fc08, 0x66e6a2ff, 0x21055f4f, 0x124fff33,
0xcdcc2606, 0x33f7ffff, 0x05127433, 0x21096976, 0x13820700, 0x0800ff25, 0x4f08cdcc, 0xcc22055e, 0x1383ffcc, 0x34200483, 0x8b221784, 0x904fab08,
0x0a7f760c, 0xf7072b24, 0x678a8b14, 0x6c86cc20, 0x3433f722, 0x41186787, 0x33200a19, 0x678fba82, 0x07216282, 0x20678433, 0x206787cc, 0x832682cc,
0x0867f413, 0xffef0e31, 0x9a197f01, 0xffff157b, 0xff66e6d8, 0x06000000, 0x2100ff05, 0xff071ec5, 0x9a991400, 0xd20200ff, 0x1300fff2, 0x00ffd663,
0xfff89306, 0x82b31100, 0x510928bc, 0xffff0868, 0x8270bdd4, 0xf6e83929, 0xf1ffff05, 0xffff0a57, 0xff9a59fb, 0x4861f0ff, 0x78fdffff, 0xefffff94,
0x01223d83, 0x2982f408, 0x33f3bd31, 0x240400ff, 0xc9ffffd8, 0x00ff6766, 0x8200803e, 0x33422ff2, 0x00ff0834, 0x07e9c603, 0x2500ff5b, 0x35137d9f,
0x081601ac, 0xff687136, 0x9a59ecff, 0xc9f6ffff, 0xeeffff7a, 0xff08ae87, 0x1e45e6ff, 0x281400ff, 0x00ff05f6, 0xffe83b05, 0x14ae0b00, 0x420300ff,
0x0c00ff4e, 0xff8b72bd, 0xf5a80d00, 0xc6232582, 0x82ff14ee, 0x05d92700, 0x8cddffff, 0x2c82a6cc, 0xfce90222, 0x0e202782, 0x04202c82, 0x013b0483,
0x00ffaaf1, 0x8b0e8d04, 0x4f00ff08, 0xff069a19, 0x021a1f00, 0xafffff07, 0x828bbe13, 0x29f72934, 0xffff8bfc, 0xff6abcf9, 0x0d8a4718, 0x9eef0722,
0xff241184, 0x62100800, 0xef210982, 0x8240869e, 0xaaff216c, 0x20226682, 0x4582bce6, 0x4e42b020, 0xa4622005, 0x05b47949, 0xdb3c4983, 0x000000ff,
0xc18b0512, 0x70d3ffff, 0x2b00ffa4, 0xffffec91, 0xff48a1c9, 0x4861feff, 0xcc22d582, 0x21827a54, 0xfff43b29, 0x9a99d6ff, 0x84d2ffff, 0x73cb22a4,
0x27c38234, 0xff270000, 0x20c5cdff, 0x47277182, 0x00ff9bb5, 0x18761e91, 0x21391a73, 0x7318dfcf, 0x6820081a, 0x1906f54a, 0x20116d2e, 0x64701868,
0x2c7f8209, 0xffec110f, 0x00e00100, 0x1e0800ff, 0x6d2e19b8, 0x1883200d, 0x35161a73, 0x3000ffaf, 0x01fff6a8, 0x15b8de70, 0xbd4f00ff, 0xeaffff70,
0x0982e23a, 0xffcdcc26, 0x5c4f1400, 0x57220987, 0x1582080a, 0x842b1622, 0x2e270583, 0xffffe216, 0x821e85df, 0xe6102172, 0xf9229c82, 0x6d82a4b0,
0xff981933, 0xec11efff, 0xedffff8b, 0xff08c2f5, 0xf628cafe, 0x260c8207, 0xff9a19e8, 0x8266e6ff, 0x33f03726, 0xe8ffff32, 0x00ff64e6, 0x08ce4c06,
0x4cb0ffff, 0x1500ffce, 0x0982cccc, 0xeb221983, 0x098334b3, 0xeb220482, 0x1e8232b3, 0x3883a820, 0xcecce926, 0xffa8ffff, 0xe9200082, 0xa9212883,
0x22d782de, 0x82008020, 0x17ef221e, 0x2348840a, 0xf0f5ffff, 0x102c7e82, 0xff8b66e6, 0x9a191200, 0x3501ff08, 0x08051779, 0xf6e81724, 0x9c1900ff,
0x0f00ff29, 0x00ff8ec2, 0xffcd0c17, 0x34b3f9ff, 0x058b8b08, 0x70ee00ff, 0xeffeffa4, 0xf5824821, 0x9a192d22, 0x23233a82, 0x82b6cccc, 0xe6352e06,
0xc08b0866, 0x33dcffff, 0xffffb634, 0x825582d2, 0xb3d4226b, 0x26c98233, 0x60cd4cdb, 0x8208568b, 0x82ca2009, 0x2400319a, 0xff6033b3, 0xcd4c2b00,
0x74fb088b, 0x06cb154b, 0x23213d82, 0x25cd824c, 0xff0040e4, 0xcd831c00, 0x00c0db29, 0x074b088b, 0x8201ff8b, 0x4b15279e, 0x2400ff07, 0x26820040,
0x82c01b21, 0xcc1b2221, 0x2d0a82ce, 0x08323324, 0x01ff064b, 0xfb66e6c0, 0xee791534, 0x66e2210c, 0xff21d282, 0x2bb182dc, 0x00ff06cb, 0x0766e640,
0x1564f74b, 0xdb227e82, 0x6086cecc, 0x3233e424, 0x748200ff, 0xcb088b2a, 0x0e064b07, 0xfb00ffaf, 0xf02b9a83, 0x8b1566e6, 0x96949496, 0x829b088b,
0x820b203a, 0x82942ac5, 0x4708808b, 0x96068f07, 0x820a848b, 0x19f42a46, 0xffff829a, 0x8066e6f7, 0x2be3828b, 0x069a19cf, 0xff828b80, 0x9a190800,
0x33829782, 0x42860820, 0x42828f20, 0x00802f23, 0x2c2b8207, 0x00ffcccc, 0xff67e601, 0x3433f8ff, 0x22258293, 0x8299990a, 0x8f35273a, 0x7f00ff5c,
0x414252f8, 0x704e28ed, 0xaffeffa4, 0x41154821, 0xcb2818f7, 0x00ff4b06, 0x1566e6c0, 0x200ef741, 0x293182cd, 0x08333324, 0x074b064b, 0x208201ff,
0x7fffff24, 0x25829a19, 0x66e64023, 0x18024207, 0x01ff8b23, 0x214b8200, 0x0142064b, 0xffff2d18, 0x5b9a191f, 0x608b5615, 0x084e8b58, 0xc1322682,
0xffb63433, 0x66e6cdff, 0xff088bc0, 0x66e63500, 0x6418b68b, 0x3e3407a5, 0x8b08cccc, 0xffbe60c8, 0x9a19caff, 0xaf0e088b, 0x14f894f8, 0xb5598282,
0x07942115, 0x7c05787c, 0xa6850988, 0x54fc0823, 0x21098206, 0x1e8266a6, 0x9a59e322, 0x0b187f18, 0x3383f720, 0x1d5a0020, 0x5a662006, 0xf8260b1d,
0x24fc0654, 0xb31834fb, 0xcd180f8e, 0x00220e71, 0x4a493307, 0x08002306, 0x535acdcc, 0xcc082106, 0x4907ac48, 0xe5480a46, 0xffff2205, 0x074949f8,
0x33f7ff30, 0xfb088b34, 0xfb8b0634, 0xf4f71514, 0x4182ff06, 0x3420378a, 0xfe823084, 0x977f1784, 0x82fb2010, 0x0cdb5830, 0x5908fd7f, 0x9c22173f,
0x891854f7, 0x6e820fba, 0xb3f2ff25, 0x4f5b0834, 0x33230543, 0x180a00ff, 0x200d7af4, 0x0c577edb, 0x944d1d82, 0x82bb2007, 0x0d002331, 0x964dcc4c,
0xff342108, 0x8b234983, 0x41063b08, 0xfb236ea4, 0x8214fb84, 0x18f720d7, 0x22086c4b, 0x41ccf8ff, 0x9e8211a4, 0xff281682, 0xcccc0800, 0x74f7088b,
0x4a0f6c41, 0xa4410783, 0x41742017, 0x379005a4, 0x821fa441, 0x8cff2030, 0xa2411899, 0x09a44107, 0xcc209984, 0xff279986, 0x9a1994ff, 0x821534f7,
0x190b2a87, 0x7f94829a, 0xffff088b, 0x05da41f5, 0x82000022, 0xf42a3582, 0x850866e6, 0xfaffff07, 0xaa186666, 0xcc20082a, 0x4c200982, 0x0e2aaa18,
0xff5c0f25, 0x8233f9ff, 0x02f3255c, 0xf3ffff8f, 0xfc272d83, 0xffff0ad7, 0x8233b3ed, 0x3afe2252, 0x355783e1, 0x0000ffcd, 0xffffa4f0, 0xff9a19f6,
0x713d0400, 0x19f7ffff, 0x0a820899, 0x82672621, 0x3333260a, 0x870600ff, 0x204782ae, 0x272882cc, 0xff48a106, 0x0180fbff, 0x0b2c1e82, 0xffffec91,
0xff9819f8, 0xcd4c0f00, 0x66281482, 0x0b00ff68, 0xffff33b3, 0x0c32aa18, 0x99056622, 0xb3251b82, 0x0900ff32, 0x214e8266, 0x2582e6fc, 0x82e60521,
0xb3fb22b5, 0x22448232, 0x18008002, 0x820832aa, 0x99fe261e, 0x0000ff9a, 0x22ca824c, 0x829819ff, 0x8300201e, 0x82ff2033, 0x000022c0, 0x20478299,
0x240982fe, 0xcd4cffff, 0x20bc8287, 0x844e84ff, 0x9919253e, 0xfaffff88, 0xfd200a83, 0xff225483, 0x4a82e6f9, 0xec83fd20, 0x8319f621, 0x34b32135,
0x3321fb82, 0x32aa1833, 0x21868216, 0xdb83fdff, 0xcecc0023, 0x220986ff, 0x828932b3, 0x34b32187, 0xf5256782, 0x00ff3d8a, 0x225c8303, 0x8285abf4,
0x279c8366, 0xff8f82fc, 0x0080f5ff, 0x0a871e82, 0x0500ff22, 0xf4201e83, 0x00236b82, 0x82e27a0a, 0x66662148, 0x0122c082, 0xdf82c335, 0x01201483,
0xff204283, 0x00260482, 0xff52b801, 0x1e84ffff, 0x71fd0622, 0x0836aa18, 0xffffcd23, 0x218182fb, 0xc8840900, 0x82cccc21, 0x36aa185c, 0x00ff2609,
0x82000009, 0x3aaa18ff, 0xffcd2b35, 0x32b30600, 0x990c00ff, 0xcb82989a, 0x9ecd4c22, 0x0936aa18, 0x8a826820, 0x95343323, 0x21608287, 0x72829819,
0x9919fc28, 0xf9ffff94, 0x594e33b3, 0x4cf92106, 0x04223d82, 0x1a82cdcc, 0x67e6f325, 0x820800ff, 0xefff2604, 0x00ffcccc, 0x20048204, 0x221384ff,
0x8234b303, 0x83fe201e, 0x33002329, 0xaa180533, 0xcd220836, 0xaa18ffff, 0x66200736, 0x33212f82, 0x21258233, 0x0a8266fd, 0x82cc0121, 0x33ff211a,
0x01206382, 0xff210482, 0x230e82ff, 0x00800000, 0x0a851e82, 0xff212382, 0x822884ff, 0x0000231e, 0xb5829a99, 0x18676621, 0x820f36aa, 0x83062098,
0xcc022273, 0x201a82cc, 0x20258305, 0x229d8202, 0x82cc0a00, 0x9901229d, 0x18f08299, 0x820c36aa, 0x800d24bd, 0x84ffff00, 0xe6032382, 0x35828a66,
0x35820a20, 0x19fdff24, 0xee82969a, 0x02207083, 0x0a218a83, 0x22a982b3, 0x82e60200, 0x211f84a9, 0x1f8299f9, 0x88f5ff21, 0xfbff216b, 0xaa185c83,
0x57820836, 0x08210b82, 0x3442828b, 0x0e05cc4c, 0xf744f82f, 0xff8b1504, 0x5c4feeff, 0xb0f1ffff, 0x210482a4, 0x0e8414ae, 0xe1828b20, 0xcdcc2b31,
0xbeffff06, 0xffff99d9, 0x0590429e, 0x83f9ffff, 0xa6f7250a, 0xf5ffff66, 0xff237c82, 0x829a19fa, 0x85ab2109, 0xf9222b83, 0x4782efe7, 0x10d8f926,
0xc00100ff, 0xfa28b982, 0x00ffae87, 0x0800a003, 0x47205282, 0x09260a82, 0xffffe0cf, 0x098207fc, 0x16d9132c, 0xd00900ff, 0x0e00ffa4, 0xd78252b8,
0x717d2927, 0x3a3e00ff, 0x225f82e2, 0x688f22c1, 0x00210c70, 0x0fa5590e, 0x820e0021, 0x05de57a9, 0xa4b01122, 0x002a7882, 0x06008069, 0x193f00ff,
0x4082eb9a, 0x66665722, 0xa2204095, 0x3182f383, 0x40857482, 0x00ffce22, 0xd4224086, 0x40823433, 0x142e4128, 0xc56100ff, 0x9b82051e, 0x82f0c721,
0x82b02026, 0xd61322a0, 0x21c482c8, 0x0e8252f8, 0xf622d383, 0xaf820a37, 0xff24b582, 0x2230f6ff, 0xff231985, 0x82ea26ec, 0x5c2f210e, 0xac2ae783,
0xd6ffff08, 0xffff707d, 0xce82bac1, 0xe23e0023, 0x83598290, 0x5a768566, 0xea2008a5, 0x4107a55a, 0xab210673, 0x08734186, 0xc1849620, 0x66e6c023,
0x2189822b, 0x9a83b3a8, 0x34b31127, 0x050000ff, 0x1844821e, 0x220d3666, 0x4994f80e, 0x8b220508, 0x6f44ffff, 0x9a192605, 0x19ffffff, 0x440f829a,
0x80240694, 0xdbffff00, 0xde250483, 0xffffcccc, 0x821f83e8, 0x828b200e, 0x199e22a7, 0x0e99689a, 0x37839920, 0x0080e522, 0xfc229c83, 0x73829a99,
0xff666626, 0x32b3fcff, 0x0e820982, 0xccfcff23, 0x25fe82ce, 0xff343302, 0x4d82f5ff, 0x4c040027, 0x00ff82cc, 0x28248304, 0x08ce4cf5, 0xf2ffff91,
0x202b8233, 0x22648306, 0x82ce4cf2, 0x85f12084, 0x19e0254c, 0xeaffff98, 0xe3202783, 0xe0203c83, 0xfe230483, 0x820834b3, 0x219a835c, 0x6683e6ff,
0x09851e83, 0x83008021, 0x099d7e9f, 0x83116f7e, 0xa88a1811, 0x28b78222, 0xfc0766e6, 0xff158b34, 0x09d761ff, 0xccf0ff22, 0xef229b83, 0xe8833233,
0x7782ed20, 0x540e0023, 0x82bc827b, 0x054754e3, 0x1800ff21, 0x280a0183, 0x8b66660d, 0x991200ff, 0x2b2d829a, 0xcecc1000, 0xb3f1ffff, 0x0f00ff33,
0xff28ea82, 0x8bcd4cee, 0x15cbab08, 0x8c8230ad, 0x47853782, 0x4c218c93, 0x278c87cd, 0x088b33b3, 0x14f714f7, 0x280d4a7e, 0x8b1ec5f0, 0x3aefffff,
0x8dbf89e2, 0x208e8332, 0x24b48234, 0xffcc4c0e, 0x21bf8d00, 0x935c1ec5, 0x0f002305, 0x0455e23a, 0x05d57706, 0x8e0a2963, 0x20f28532, 0x22f28834,
0x18088bcc, 0x410c8284, 0x7782124e, 0x99f2ff23, 0x2a87859a, 0xf72f0e08, 0x1554f754, 0x5dbb07cb, 0xde820e2d, 0xcd204983, 0xee20c783, 0xf122c283,
0x164134b3, 0x4cee2106, 0x5b216682, 0x20388206, 0x183d4b74, 0x8305fd76, 0x83e32032, 0x26048470, 0x8b34b3dc, 0x4bd4fb08, 0x3383183d, 0x26143d4b,
0x5b06d4f7, 0x4e1554fb, 0x602905aa, 0x192a00ff, 0x088b569a, 0x23488243, 0x8b66e6e9, 0x1921a682, 0x0b9c7b9a, 0x184cfb21, 0x4217d5de, 0x0e200c0b,
0x20084264, 0x2bfd82ab, 0xb6b68bc0, 0x0e08c08b, 0x04f88baf, 0x1a276983, 0x00ff9082, 0x18717d15, 0x23086ad2, 0xeb088b8f, 0x0d557d18, 0x25098e55,
0x54f7077b, 0xc6559b06, 0x15002107, 0x6c07c655, 0x369805e7, 0x9e182b20, 0xdf181712, 0x9b25185d, 0x0654fb07, 0x2c36837b, 0xffcc4cfe, 0x66e6ffff,
0x4cfeffff, 0x210982ce, 0x0482cdcc, 0x08cc4c26, 0x4c5000ff, 0x94230a82, 0x8f059a19, 0x00802777, 0xe5ffff8b, 0x9e180080, 0x7798198a, 0x7282eb20,
0xb3010029, 0x0000ff34, 0x82ff9a19, 0x82322009, 0x33332109, 0x99290982, 0xffff089a, 0xf633b3af, 0x183c8405, 0x180879e6, 0x3e0aea48, 0xfb0e07eb,
0x0d00ff30, 0x01ff52f8, 0x15d2cdbd, 0x850800ff, 0x0300ff1f, 0x00ff80ea, 0x828f020a, 0xf6992bc1, 0x1e0700ff, 0xf9ffffb8, 0xc1828ce6, 0x48612832,
0x63ddffff, 0x00ff0554, 0xff676628, 0xac9c2200, 0x09270a82, 0x00ff0000, 0x823ab407, 0x34332849, 0xffff948b, 0x83c64bf8, 0x6666212c, 0x66202c89,
0x94202c85, 0x278228a7, 0x0623cf83, 0x82957419, 0x0a6621cb, 0x80279a82, 0xfcffff00, 0x88088015, 0xff40230a, 0x14830500, 0xa67bf72c, 0xf6ffff8b,
0xfc0848a1, 0x09830764, 0x4a9a9921, 0xf720062e, 0x38841e84, 0x089a1922, 0x24052264, 0x9819fcff, 0x20538381, 0x20a88268, 0x229782e6, 0x82981906,
0x82d7201a, 0x22002634, 0xff059a99, 0x250a83ff, 0x6666ddff, 0x21828205, 0xffcc4c28, 0xccccf2ff, 0x9182828b, 0xa234b321, 0x21658228, 0x2c890000,
0xf8829920, 0x9e225585, 0x5584ffb8, 0xe1255482, 0xf9ffff48, 0x278082e6, 0xff71fdf5, 0x9899feff, 0x7a263482, 0x0300ffe1, 0x618268e6, 0x6a7cf722,
0x66200a83, 0x8b21c482, 0x27ed8444, 0x0900ff8b, 0xf8086666, 0x0023de83, 0x82b85e09, 0xbc7421f8, 0x84211982, 0x2104829c, 0x2d829683, 0x087eea2f,
0x00ff078b, 0xffae0752, 0x2e3272ff, 0x62d41815, 0x0a4b570b, 0x2108904c, 0x6b4ef628, 0xd7082606, 0xf7088b0a, 0x0f2a4d54, 0x251ff24c, 0xfb8b0654,
0x37b31574, 0x8b2299ad, 0xcb8f14f7, 0x210cf64d, 0x0968ff34, 0xccf82405, 0xa300ffcc, 0x4fcd20cb, 0x5435119b, 0xffef0e06, 0x00600900, 0x99d600ff,
0x8585159a, 0xa0fcffff, 0x22a78200, 0x828b66e6, 0x00802505, 0x0714fb08, 0xff220985, 0x26820300, 0xe1f7ff28, 0x08859148, 0x72828591, 0x28822020,
0xb89efc22, 0x2705a641, 0xf706ab08, 0x066b0754, 0x31833584, 0x8248e121, 0x9a992b4b, 0xfef9ffff, 0xff0885b8, 0x5782c601, 0x66890028, 0x04fb1566,
0x5382cb06, 0x82110021, 0x7cff203a, 0xff220737, 0x8765eeff, 0x20068305, 0x831684ff, 0x05197c04, 0x074b0822, 0xff243482, 0xcdccd3ff, 0xdc271082,
0xffff3333, 0x823433dc, 0xccd3250a, 0xa4fb08cc, 0x200ad47c, 0x26d47cb9, 0x00233383, 0x8234332c, 0xcc4c2648, 0xcc2300ff, 0x365d82cc, 0x088b34b3,
0xd4fb64fb, 0xab064b15, 0x6b06cb07, 0x0cf76b07, 0x45ffff15, 0x002409cf, 0x8b66e611, 0x0820c618, 0x9a191623, 0x861183ff, 0x210e8204, 0x1c84088b,
0x28822282, 0x820bfd45, 0x464582aa, 0x54850914, 0x14f70824, 0x6c880cfb, 0x8f8beb21, 0x48e12177, 0xee223782, 0x6082b81e, 0x00240a83, 0x08b81e16,
0x06825b82, 0x11227286, 0x708548e1, 0xff3677ae, 0x9899d600, 0x993e00ff, 0x9185159a, 0xe6f7ffff, 0x0300ff68, 0x09826666, 0x8b00802a, 0xfb066b08,
0x06ab0754, 0x8205d641, 0x27808305, 0x91006003, 0x91910891, 0x61202782, 0x08227382, 0x88820020, 0x00800822, 0x0720c282, 0xff220985, 0x5383fcff,
0x9a19082a, 0x0e089185, 0xe6b100ff, 0xd1284f82, 0xff1566e6, 0xcd4cedff, 0xce250483, 0x99e1ffff, 0x33d2829a, 0xffcc4ced, 0x32b31200, 0xa3ffff08,
0x00ff0ad7, 0x0534335c, 0x41212082, 0x8215842d, 0x661e214e, 0x12229082, 0x0f84d3be, 0x00ff0825, 0x8200c032, 0xcecc2804, 0x3000ff05, 0x825b8f02,
0x33062c06, 0xf9ffff34, 0x00ff32b3, 0x8234330a, 0x33062331, 0xce56ff33, 0x20058205, 0x210a82cd, 0x15823233, 0xef4d1b82, 0x83332007, 0x02d0236d,
0x3c82bb8f, 0xd763292e, 0x662900ff, 0xffbb0567, 0x0100d0ff, 0x33204e84, 0x33224eae, 0x4a845b08, 0x88666621, 0xffcf224a, 0x824a89ff, 0x8299878e,
0x4c0622a4, 0x22c682cd, 0x83ce4c06, 0x89332099, 0x851a8399, 0x01002199, 0x67204e85, 0x63214e82, 0x219984d8, 0x4e849002, 0x998e3220, 0xce204e84,
0xe88a4e89, 0x5b234e86, 0x843000ff, 0xcc32213c, 0x32227082, 0x478200c0, 0x82b31221, 0xbe12271c, 0x1e00ffda, 0x80826866, 0xff230f83, 0x822641ed,
0x335c2747, 0xa3ffff34, 0x25860ad7, 0x4cedff29, 0xffff8bce, 0x419899e1, 0x0f8206b4, 0xfeff0825, 0x84ccccc3, 0x0e052604, 0xf8157b8b, 0x09574834,
0x20268e48, 0x05bd745b, 0x2af8c718, 0x4b06db22, 0x01453391, 0xff33210c, 0x940f9d54, 0x11925233, 0x0c386018, 0x3b06db22, 0xff20cd82, 0x6d13926d,
0xdb22168f, 0x338ccb07, 0x540de152, 0x33b515e5, 0xdd49bb20, 0x212e490e, 0x34fc2708, 0xe7ffff06, 0xff8b6626, 0x568eebff, 0xe61200ff, 0xfdffff66,
0x00ffad8a, 0x08343318, 0xd6ffffff, 0x0100ff0b, 0x09829a99, 0x838cea21, 0x8b982109, 0xb3280582, 0xef0e0834, 0x15a4f78b, 0xb0190c82, 0x8f22106f,
0xef88088b, 0x41117241, 0x68540e23, 0xb8ef8a07, 0x0cd35433, 0x970e3d56, 0x1833db67, 0x180b96db, 0x210aafba, 0x334b34fb, 0xb4fc2117, 0x4a0c2c61,
0xf7280a7f, 0xfb0e0734, 0x24f88bb0, 0x2017d74b, 0x7a0619f7, 0x0a67610d, 0x439b4943, 0x7d4312b1, 0x415b2020, 0xfb21173d, 0x173d4134, 0x0734f829,
0xd4f7ef0e, 0x4215d4f7, 0xec490b15, 0x077b220a, 0x0cd6499b, 0x8311074a, 0x050f4911, 0xb561ff20, 0x8b342115, 0x08215b84, 0x3a8b1aab, 0x0cb5610a,
0x9c00ff29, 0x00ffcccc, 0x82a4f01d, 0x997d2d85, 0xe4ffff9c, 0xa105c2f5, 0x33faffff, 0x0f332782, 0xffff9899, 0x8b9a99ec, 0x80e9ffff, 0xfeff0800,
0x97ccccdc, 0x192642e8, 0x2301ff24, 0x36823433, 0x16002d08, 0x00ff0080, 0xff48a10f, 0x66661300, 0xf51500ff, 0x0500ffc3, 0xff08cccc, 0x299c7d00,
0x0a1b00ff, 0x00ff053e, 0xff01008b, 0x9eaf5c00, 0x09210a82, 0x272582e6, 0xff3c2a07, 0x66e60e00, 0x0a20c982, 0xff2eaa82, 0x08c4d5f8, 0xffff1ff7,
0x056250a3, 0x5982ffff, 0x62feff27, 0xf7155c0f, 0xf8561814, 0x34fb2332, 0x9e4ad4f7, 0x454b2017, 0x6c4b094f, 0x0d50630d, 0x33070022, 0x20076441,
0x056441cb, 0xffffcd25, 0x45cdccf8, 0xf72006d5, 0x2205b463, 0x733b24f8, 0x6a450a31, 0x5a4e850c, 0x4e8b1252, 0x4106d663, 0x485913e5, 0x074b240a,
0x8f5b24fc, 0x07ba42cf, 0x1764cfb8, 0x20e88306, 0x248082ff, 0x6b088b33, 0x18cfba06, 0x2011bc5a, 0x0365186b, 0x0ae5420c, 0xfb074b25, 0x82ccf744,
0x66cf28d0, 0xffff8b66, 0x849a99d8, 0x820a8204, 0x85082010, 0x75ff2006, 0xff2608f9, 0x9a993000, 0x0685088b, 0x1b831685, 0x10848b20, 0x1e832d82,
0x1b853f84, 0x4382ff20, 0x0e088b29, 0x00ff14f7, 0x826666a9, 0xe68a2d64, 0x8bffff66, 0xff059a19, 0x0080f1ff, 0x61210482, 0x25628248, 0xff7a54e8,
0x0f840e00, 0x82008021, 0xc034215c, 0xcb231a82, 0x87050040, 0xfe7f2615, 0xab1700ff, 0x22668285, 0x83b99e0e, 0x82022014, 0xf5742725, 0x7500ffc2,
0x25823e0a, 0xb81e1d24, 0x048200ff, 0x2f272082, 0xffff4821, 0x8248e1e2, 0x6626220f, 0x290a8908, 0xd1d0ffff, 0xffffffec, 0x138234f3, 0xe2218583,
0x2c1e82e6, 0x9a193f01, 0x991601ff, 0x14fb159a, 0x2a48822b, 0x4d66e600, 0xffff3805, 0x8266e6ac, 0xcc06270d, 0xfbffffcd, 0xc27134b3, 0xfbff2d05,
0x00ffcc4c, 0xff33b305, 0x9a19faff, 0x05218082, 0x26a682e0, 0xff0040fa, 0x71be0400, 0x09820546, 0xff904226, 0x0040f9ff, 0x52231e82, 0x82de5238,
0xfd3d2a44, 0x00ff0670, 0xf79a195f, 0x30f58214, 0xcbf6e8c0, 0xf7ef0e05, 0x2001ff54, 0xab1566e6, 0x2421828b, 0x079a197f, 0x1808826b, 0x08118b49,
0x1e85dd24, 0xffff8b08, 0xff2085dd, 0x9a991c00, 0x7ae2ffff, 0x2300ffe0, 0x088b6666, 0x94fb54fb, 0xffff8b15, 0xea82a1dc, 0x829e1c21, 0x5ce3227f,
0x291b8228, 0x088b4861, 0x0000ffab, 0x5987a402, 0x00210c82, 0x207a8220, 0x2e2482dc, 0x32e60000, 0x61e3ffff, 0xe2ffff48, 0x828b0080, 0x8280205a,
0x510127aa, 0x14f70080, 0x0f826815, 0x82c0d621, 0xe1f221d3, 0xe3211f82, 0x30e88273, 0x081e05ee, 0x4ce7ffff, 0xedffffcd, 0xffffcecc, 0x270983ec,
0xffcc4cf1, 0x33b3c3ff, 0x14258482, 0x3900ff07, 0x22328280, 0x821e05f0, 0x401a216f, 0xf8200a82, 0x00214282, 0x2604821a, 0xb81efaff, 0x831b00ff,
0x1efe266c, 0x00ff08b8, 0x2dab8220, 0x00a0fdff, 0x0100ffac, 0x00ffcaa1, 0x1f82de1f, 0x82e00621, 0x00200881, 0xff1e856d, 0x0ec21600, 0x192700ff,
0xff8bbf9a, 0x9a192e00, 0xffcb8b08, 0x66e6abff, 0xa5ffffab, 0x2b057542, 0xff66e699, 0x16d91701, 0xe0ffff15, 0x3b825b83, 0x16586a20, 0x83df2006,
0x825b8266, 0x99e426ae, 0xfeffff9a, 0x208a8220, 0x20a983e5, 0x260984fa, 0xffff34b3, 0x8284c0f8, 0x80c6291e, 0xff057b00, 0x66e680ff, 0x7774bc82,
0x83132005, 0x82f020ad, 0x18002241, 0x21db82cc, 0xf58285f0, 0x831c0021, 0x21ed25d7, 0x2900ff48, 0xf321d683, 0x23a182c5, 0x8bcc0c23, 0x5a22c882,
0x6182d04c, 0xff34332a, 0x98195400, 0x08cb8bab, 0x2c21b082, 0x34758259, 0xbf68e6d8, 0x7f92ffff, 0x1700fffe, 0x0e087c7f, 0x15bb34f8, 0x17cd454b,
0xbb065b22, 0x4305cd44, 0xff2211ae, 0xc55df7ff, 0x075f440b, 0x4b075b22, 0xcd20338c, 0x089f5e18, 0x96823320, 0x2215045f, 0x575b075b, 0x5b480c8e,
0x83cb200a, 0x6600227e, 0x27bd8266, 0xffce4c00, 0x90020000, 0x66270482, 0xffff0866, 0x825278c5, 0x821920f7, 0x85da27d2, 0x3f00ff1f, 0x24829819,
0x34b34622, 0x7b21e983, 0x27f882b3, 0xff9a9972, 0xcc4c6400, 0x12c65518, 0x0dc49e18, 0x2382b920, 0x80daff2b, 0xc0ffff00, 0xffff68e6, 0x233782c4,
0x66e6d6ff, 0xff214882, 0x290b82ff, 0x66e60000, 0xb3ffffff, 0x05828b32, 0x089a992b, 0x94fb078b, 0xff1564f7, 0xbd9f18ff, 0xe3ff2309, 0x1d82cd4c,
0x34831082, 0x7d83dc20, 0x33b31c22, 0x2105da60, 0x1b822300, 0x84ff0821, 0x00ff2106, 0x9f181683, 0x3f8311eb, 0x54841b85, 0x54f70824, 0xfb5514fb,
0x8232940c, 0x186584d9, 0x9113d65d, 0x8834208e, 0x8bcc268e, 0xf7eb0e08, 0x098a4624, 0x48cd4c21, 0x0021053e, 0x05337508, 0x00807529, 0x05eb2b06,
0x82eaffff, 0x2f961808, 0x8233200e, 0x4cf729e7, 0x074b08cd, 0xc4f734f7, 0x5c4a5718, 0x54fc8b22, 0x96225f82, 0x72829a19, 0x66e6a92e, 0x215600ff,
0x00ff8b48, 0x08b8de69, 0x29300682, 0x00ff4861, 0xff00400d, 0xb85e2600, 0x801600ff, 0x1f2d0982, 0xff089a59, 0x66660b01, 0x99f4feff, 0x25c0829a,
0xff66a6e0, 0x1a82e9ff, 0x99d9ff2b, 0xf2ffff9a, 0xffffcccc, 0x05a943d6, 0x34332d23, 0x3d5f82f7, 0xcccc5200, 0xff076b06, 0xa430cdff, 0xe0ffff06,
0x05ab9002, 0x196f00ff, 0x90ffff98, 0x7f8266e6, 0x68e6d026, 0x192f00ff, 0x00214d82, 0x242a8222, 0xc00800ff, 0x207e8200, 0xd9961807, 0x07cb210d,
0x08211382, 0x078d4db3, 0xcd4c0722, 0x30052043, 0x7dffff08, 0xff063433, 0x32b383ff, 0x407c00ff, 0x225c8200, 0x8667661f, 0x822620af, 0x24c38526,
0x8b666629, 0x21db8208, 0x478266e6, 0x82195621, 0x82f182ab, 0x82fd82f7, 0x051868ec, 0xc784bd84, 0xe02dd184, 0xff0832b3, 0xce4ca4ff, 0x19ef00ff,
0x20a9829a, 0x2d4382f0, 0x0b00ff7e, 0xffff3433, 0xffcc4cfd, 0x21840e00, 0x0f82ff20, 0x5a030021, 0x148205c5, 0x00800227, 0x33fcffff, 0x256e8234,
0x00c0efff, 0x65828606, 0x8260fc21, 0x82fb2013, 0x00002218, 0x210983a0, 0x8b820020, 0x66a6042a, 0x13e1ffff, 0x1a00ff34, 0xe8203c83, 0x20205183,
0x2805736f, 0x8b32b30f, 0xf4ffff98, 0x201c82b3, 0x23048202, 0x6666f1ff, 0x00223182, 0x5a82cccc, 0xff666624, 0x83840300, 0x03225083, 0x6982cccc,
0x2b100025, 0x82900686, 0xb50325da, 0x0400ff40, 0xff231882, 0x820040ff, 0x82e02009, 0xfbff2769, 0x00ff3a5f, 0x3c82ec1e, 0x1982e520, 0x83170021,
0xccdf2951, 0x0e088bce, 0xef01ffaf, 0xe0221283, 0xe082cdcc, 0x9a19fc28, 0x80ffffff, 0x05828700, 0xff33b324, 0x5b83fbff, 0xbf827120, 0xcecce825,
0x820b00ff, 0xf0ff2a78, 0x00ff9819, 0x089a9911, 0x820a82ff, 0x83ee202d, 0x211e8314, 0xc483f4ff, 0x7d67e520, 0x22068305, 0x82e8ffff, 0x203587ae,
0x2035929a, 0x85ff82e6, 0xcdcc2335, 0x6785088b, 0x6788cd20, 0x9922318a, 0x6786ffff, 0x86ffcd21, 0x29dc2167, 0xff23f582, 0x82a4f0fb, 0xe8fb269d,
0x0000fff5, 0x221b824c, 0x82ae07fc, 0x83802009, 0xaec825f3, 0x0700ff14, 0xe5269d83, 0x00ff33d3, 0x04823341, 0xc3951d36, 0xcc2e00ff, 0x00ff08ce,
0xff7b5439, 0x84ab5a00, 0x0500ff05, 0x002df582, 0xffa82608, 0x291c0900, 0xfa0400ff, 0x210982a0, 0x5f82e1ba, 0xcc640124, 0x0c8206cc, 0x8b34b322,
0x26820582, 0x05fbff23, 0x253083a2, 0xf7ffff98, 0x468316d9, 0xffcc4c26, 0x7c54a5ff, 0x1d264682, 0xffff34b3, 0x1a8219d1, 0x0983e520, 0x67e6be2e,
0x80c8ffff, 0xf8ffff00, 0x8b089a99, 0x04214682, 0x23208233, 0x15cd4ce0, 0x23054153, 0x00800000, 0xe6216d82, 0x29b18266, 0x8c8fcccc, 0x3cffff08,
0xb5659a99, 0x05775a17, 0x82f6a821, 0x57e322ee, 0x0bb5650a, 0xc300ff25, 0x82076666, 0xb9de2253, 0x2405828a, 0xffff71fd, 0x216982ff, 0xcc820400,
0x80ffff24, 0x5f820800, 0x8bb81e22, 0x0522a182, 0x1b829042, 0x0023b182, 0x82e27a05, 0x9a992109, 0x8721cb82, 0x28e882ae, 0xa4700c00, 0x00ff978b,
0x228d8301, 0x8233330b, 0x21388347, 0x90827aff, 0x82d4f721, 0x4c8522bb, 0x206282cd, 0x2657820b, 0x9999fcff, 0x820b00ff, 0xfeff2228, 0x22408219,
0x83cc4c0c, 0x99052340, 0x4d828b9a, 0xcd836620, 0x05220483, 0x7782ce4c, 0x2805ba69, 0xff8bef0e, 0xcccc2401, 0x20218215, 0x25178307, 0xff2b2702,
0x3d830700, 0xf6080427, 0x190600ff, 0x27a48298, 0xffdf8f4b, 0x7c547100, 0x082ba882, 0x00ff67e6, 0xff58590d, 0x82f30e00, 0x0508278b, 0x1000ff60,
0x67829a19, 0x998c0123, 0x228e8298, 0x829c1910, 0xe60e314b, 0xf7ffff64, 0x00ffa0fa, 0xff68e608, 0xa8a6f2ff, 0x992b4683, 0x8effff98, 0x8f0584ab,
0x82f9ffff, 0x02002116, 0xf829b483, 0xff8b66e6, 0x32b3f8ff, 0x27068208, 0xff34b3eb, 0x0080efff, 0x0e820486, 0xfd295982, 0x06d8a3c9, 0xa8ebffff,
0x222182f6, 0x821480ef, 0x00802171, 0x14246482, 0xff08cc4c, 0xec330082, 0xffffcb06, 0x153433bb, 0x34fb06cb, 0x0654f707, 0x820734f7, 0x4784200a,
0xfb2017da, 0x2005fc70, 0x184d8270, 0x51070ad1, 0x08260530, 0xf80784f7, 0x47838b54, 0x94799420, 0x4cee2219, 0x203982cc, 0x18a982f1, 0x260af5a0,
0x0e0794f7, 0x7af4f78b, 0x84210535, 0xf7a918ff, 0x05877a0f, 0x5d34b321, 0xff23069e, 0x8284abf1, 0x54ee2243, 0x82f4837c, 0xffff2150, 0x8206045d,
0x180e82fe, 0x1807d5dd, 0x22139540, 0x8434fbcb, 0x33b32165, 0x4c216587, 0x994018cd, 0x1c6a5d08, 0x65aacc20, 0xfbf4f723, 0x0f8a7354, 0xc782ee8a,
0x34b31122, 0xcc208088, 0xef188098, 0x0e301e12, 0x19bc00ff, 0xed00ff9a, 0xff153333, 0x00c0d2ff, 0x01250483, 0x2d00ff05, 0x200a8440, 0x830a8600,
0x8505200f, 0x2d002320, 0x1582ff3f, 0x36837120, 0x87b31621, 0x21208736, 0x2584ffbf, 0x0120418f, 0x41825184, 0x827fa521, 0x33782320, 0x628e1534,
0xd1222088, 0x1a8266e6, 0x82cc4c21, 0x99d3222b, 0x214c8299, 0x4c8334b3, 0xffcd4c26, 0x66e63301, 0x7b27a482, 0xff8b0080, 0x828094ff, 0x8204829f,
0x2010820a, 0x22068508, 0x866b00ff, 0x00ff2216, 0x20268284, 0x85068508, 0x201b8316, 0x8210848b, 0x851e832d, 0x82328544, 0x828b2043, 0x99ba262d,
0xe8feff9a, 0x21668366, 0x6082c0f4, 0x87820482, 0x82e0fc21, 0x2104840a, 0x7b83e0fa, 0xb8defc32, 0x200300ff, 0xffff0800, 0xff7ad4e3, 0x00401c00,
0x2a061b41, 0x00c0d2ff, 0xffffad05, 0x82b81ede, 0xe11024b4, 0x8200ff48, 0x820a8204, 0x2432842d, 0x200500ff, 0x24858242, 0xff062103, 0x825282ff,
0x400b2173, 0x53836887, 0xcd821584, 0x0a846982, 0xde270482, 0xffff08b8, 0x84b81eef, 0x20568504, 0x8352867a, 0x952c9242, 0xbedf21bb, 0xfc222a82,
0x8884fade, 0x9c225285, 0x4a827a05, 0x6c864583, 0x4a83e090, 0xa2820020, 0x83060641, 0x22be82a2, 0x84002005, 0x2b048245, 0x9c084821, 0xff69059c,
0x48e12100, 0x220b0541, 0x831c00ff, 0xc0e322d8, 0x41abb300, 0xc0201067, 0x67417082, 0xa8e32705, 0xe3fffff7, 0x984190c2, 0x85b7a31d, 0x0abe41a2,
0x2306c442, 0x69b81ede, 0x41056741, 0x03200772, 0x6b41ef82, 0x22bf8f2c, 0x42f728ef, 0xff23060a, 0x8666e6ef, 0x40774156, 0x7a215285, 0x1b9c419c,
0x0b00ff24, 0x04840040, 0x270e8642, 0x00ff8b00, 0xff482103, 0x23068642, 0x7a9a1910, 0x21232182, 0x82ad48e1, 0xb8d2274e, 0x2d00ff51, 0x0a82703d,
0x00c0e324, 0x0482ffff, 0x211e6f41, 0x6486cdcc, 0x2742d584, 0x0c6f4114, 0x0f845182, 0x6942bbc3, 0x832d200a, 0x210482ec, 0xc6836905, 0xb81eef22,
0x2542df42, 0xe11000ff, 0xa8829c48, 0x0b844e82, 0x4620b399, 0x4306d043, 0x00200532, 0x410bf643, 0xe1240f6f, 0x9c057a48, 0x249b5582, 0x22211b44,
0x427a08ba, 0xad21054d, 0x0daa4569, 0x52b8e327, 0x351c00ff, 0x20ab99c2, 0x41aba848, 0x0a830a5f, 0xbd053143, 0x08b823b7, 0x5942ffff, 0x096e4609,
0x05adad23, 0x1e63417a, 0x9c20b7a7, 0x84051841, 0x4687454d, 0x20066b41, 0x497f459c, 0xb6416920, 0xd2ff2407, 0x430500c0, 0x5f410b21, 0x0ac1414c,
0x82140321, 0xdcfc2bc5, 0xffff8b2a, 0xff66e6fa, 0x0486fcff, 0x38fb0827, 0x992700ff, 0x0f99479a, 0x47ff0021, 0xeb460cfc, 0xff0e2a0d, 0x9a99f601,
0x660901ff, 0x063f4866, 0xfa2a2c86, 0x00ffcc0c, 0xff34f305, 0x5f82f7ff, 0x240a175f, 0x33cdffff, 0x05a75134, 0x1364ae18, 0x2119fb20, 0x1f5a0dfa,
0x075b210a, 0x40213a82, 0x0a1a6100, 0xbc824720, 0x8500a029, 0xffff0885, 0x82b8bed2, 0x66c62204, 0x097b6105, 0x61cdcc21, 0x1d820571, 0xcd4c9d26,
0x0614f707, 0x83058358, 0x1907228e, 0x06654b9a, 0x66e60822, 0x8206397a, 0x20138508, 0x05114bff, 0x9a19f724, 0x36ba6b08, 0x6200ff24, 0xd65f33b3,
0x2471820a, 0x85333308, 0x288f8291, 0xff666659, 0x9a993600, 0x2aed8215, 0x34f707bb, 0xbb075b06, 0x831584fb, 0x002025af, 0xe0f8ffff, 0xf7220487,
0x097b0020, 0x85088206, 0x7c521818, 0x14fb220c, 0xb4521806, 0x82b68308, 0x20de8222, 0x86ba82ff, 0x9a192136, 0xcf825482, 0x8b22d984, 0xee8200ff,
0x07ab0822, 0xfb213682, 0x209a8204, 0x877b18ff, 0x8bb82410, 0x1854f808, 0x2117877b, 0x398304f7, 0x0e076b2a, 0xff14f9ef, 0x34331d01, 0xf936b183,
0xffff3e15, 0xfffcb4fd, 0x7a09f9ff, 0x47fbffff, 0xfafffff0, 0xe582142e, 0x3c0ace28, 0x5ec2ffff, 0x1a8205b8, 0x8214ae21, 0x3934269a, 0xb3f6ffff,
0x21248234, 0x09822df2, 0x8b289c22, 0xf8222582, 0xa28370fd, 0xffa4f026, 0x12430200, 0x19263b82, 0x0400ff9c, 0x1a8232a8, 0xb8f3c52c, 0xc22d00ff,
0xfeff05d1, 0xf6594cfb, 0x707d2605, 0x82eaffff, 0x24048690, 0x8b707de5, 0x054d4c08, 0x82008021, 0x80ea2345, 0xc153ff00, 0x01ff2f0a, 0x0734b304,
0x19c5ffff, 0xd2ffff99, 0x88823333, 0x33f3fa22, 0x66217e82, 0x258d8267, 0xffffa3f0, 0x198299fe, 0x71fdf822, 0xf6228883, 0x4282ac9c, 0xb0b2f622,
0x0e217e82, 0x23b38598, 0x02cb0700, 0xc025c984, 0xc03c00ff, 0x27408200, 0xffae47fb, 0xcccc0500, 0xb529f382, 0xff8b922c, 0x68e60600, 0x22068208,
0x82104309, 0x6b1c2b37, 0x2d0900ff, 0x0700ff94, 0x1a8225e6, 0x08703d33, 0x00ff1bf7, 0x059a996a, 0xca0c00ff, 0x0a00ff51, 0x223e8207, 0x8266e60f,
0x23ca8243, 0x67660f00, 0x00247a82, 0x06008022, 0xb3213382, 0x25a68233, 0x00ffd8a3, 0x09823327, 0x285cdd25, 0x4a2f00ff, 0x068305c5, 0x3a241682,
0x2200ffe2, 0x072d2083, 0x00fff6a8, 0x08285c2d, 0x992100ff, 0x223b829a, 0x829a5910, 0xde0f2784, 0xfaffffb8, 0x6c829082, 0xff1ec526, 0x84ebf5ff,
0x86272082, 0xfffffeff, 0x82686695, 0xeb072282, 0x82d78288, 0x0400221a, 0x22e18219, 0x83ccccf6, 0xcecc28f1, 0x70fb0e08, 0x82cf00ff, 0x60012496,
0x5d159002, 0x142707a0, 0x00ff9a99, 0x82707d15, 0x801a2259, 0x82e58300, 0xffff2306, 0xbe8266eb, 0x00801524, 0xc518ffff, 0xe9230c26, 0x5dff34b3,
0x2d84075f, 0xff241e83, 0xcc4c1600, 0x61181682, 0xff2d09fb, 0xffc3b579, 0x3c4adefe, 0xfcffff15, 0x214482c0, 0x0482e0f7, 0x8340fb26, 0xa0f8ffff,
0xf9220982, 0xc3827dbf, 0x0890022d, 0x02ceffff, 0xcdffff8f, 0x820548e1, 0x42c021b4, 0xc1210482, 0x20338206, 0x220982e0, 0x8238c9f7, 0xc7f722b9,
0x27df82ae, 0xffb10000, 0xd6e3e6ff, 0xee216a82, 0x20248228, 0x23b48219, 0x8b5c0f09, 0x08221a82, 0xbb829e2f, 0x1b2f0822, 0x2406ac4a, 0xff004006,
0x82048200, 0x5c3b281a, 0x3b00ff29, 0x8205e27a, 0x00202c10, 0x0400ff91, 0x00ffb9be, 0x63b85e07, 0x1e21079b, 0x202582b8, 0x22b7830d, 0x8270bd21,
0xc8220881, 0x00ffd7a3, 0xffe23a3c, 0xb89e1000, 0x82edffff, 0xf7ffff8e, 0x08970040, 0x61ebffff, 0xccffff48, 0x4b829a79, 0x8263f621, 0xcc6f2325,
0x778215ce, 0x1ec50b22, 0x9b248e82, 0x0b00ffa6, 0xf4272083, 0x00ff6ed2, 0x820b9705, 0xc2e82230, 0x84148290, 0x35f627d8, 0x1d00ffc2, 0x61824761,
0xb072fa22, 0xcc265c82, 0xe4ffffce, 0x9c821283, 0x29821720, 0xd823ba22, 0xff23c882, 0x82856bdc, 0x23ec31ef, 0xf5ffffd7, 0xffffb0c7, 0xff29dcda,
0xc2f5f0ff, 0x07b61919, 0xb782f720, 0x83eeff21, 0x82ef2065, 0xf5ff24b1, 0x82760080, 0x83f9201a, 0x66f22210, 0x2c5b8266, 0xffc2b5fd, 0x6666fbff,
0xe8feffff, 0x210982f6, 0x4f829a19, 0x3333fb23, 0x31068208, 0xff00c0ee, 0xaec70d00, 0x47f1ffff, 0x1100ffaf, 0x72829ad9, 0x990b0022, 0x00282282,
0xff152e0b, 0x7b740600, 0x0a20b983, 0x2c22b382, 0x0f8208cd, 0x827dbf21, 0xb89e2130, 0x0323ef82, 0x82920080, 0x2010831b, 0x28798205, 0x83400700,
0xe10200ff, 0x27258248, 0xff46b61a, 0x09d70a00, 0xf0217d82, 0x227882e6, 0x82cd4cc3, 0xb3fe230a, 0x7746ff33, 0x83ff2005, 0xb3fa228d, 0x05874634,
0xf0228883, 0x4b82c235, 0x82d1e221, 0x274b83da, 0xfffce90a, 0xce0cf4ff, 0x3b204b82, 0xbe22ef83, 0x7182707d, 0x00400726, 0x20f8ffff, 0x0527b282,
0xffffb81e, 0x82b87ef6, 0x21f48470, 0x298290c2, 0x825e1221, 0x9cb62214, 0x22298228, 0x82e79b03, 0xcc8c21d2, 0x1421ab82, 0x822982bd, 0x0e002338,
0xdc839959, 0x5c4f132d, 0x0c00ff8b, 0x00ff34b3, 0x82482110, 0xeb0f220a, 0x28818284, 0xf0870200, 0xb1ffffff, 0x215282d8, 0x0982e490, 0x829e5c21,
0x168e2609, 0xe9ffff08, 0x227182c0, 0x82900259, 0x60fd21c2, 0x0a220a82, 0xc7824861, 0xed82e020, 0x82a10921, 0xe0f82709, 0x0700ffc5, 0x298200c0,
0x8f82d226, 0xc23100ff, 0x00212982, 0x23a18211, 0x48a14400, 0x05278c82, 0xffff7d7f, 0x830080ef, 0x223f820a, 0x82deefff, 0x830b20b7, 0x83f22009,
0xfd0e2759, 0xf8ffff71, 0xc182b85e, 0x823d1721, 0x40f4210a, 0x04312983, 0xffff028b, 0xffc2b5fd, 0xf8d30400, 0xeafeffff, 0x2109823e, 0xc1834ec2,
0xba791022, 0xee259f82, 0x0f00ffda, 0x22c58233, 0x6fcc4c0d, 0x0e25062e, 0x34f854f8, 0x82511815, 0x0cec500d, 0x121f4b18, 0x0604fc22, 0x202d5469,
0x203082f8, 0x13b81800, 0x267e820c, 0x34b3dcff, 0x5374fb08, 0xfc2117a6, 0x311e6e14, 0x0614f825, 0x8cc4fb6b, 0x110451cd, 0x0a52ff20, 0x051f6f07,
0x820d266f, 0x848b201b, 0x85082017, 0x09cd7106, 0x26052241, 0x94f80e08, 0x821554f7, 0x9972271c, 0x8dffff9a, 0x04866666, 0x0f3f3b19, 0x0f71ff20,
0x53ff2239, 0x265582e6, 0x1534b38a, 0x82efffff, 0x1100210a, 0xff260482, 0xff68e6e3, 0x6f831300, 0xcc4cd823, 0x22b5828b, 0x82cd4cd8, 0x83e32086,
0x83ec201b, 0xe6ef228b, 0x21b98267, 0x1a829a19, 0x9919fa25, 0x82f9ffff, 0x00002b2b, 0xffff0080, 0xffccccf6, 0x23830600, 0x3433f923, 0x820a8308,
0x19fa281e, 0x0900ff9a, 0x84ff3433, 0x06002123, 0x98202385, 0x0b231e82, 0x829834b3, 0x2258826a, 0x82b30d00, 0x581b201f, 0x1d230585, 0x858b6666,
0xf2ff2216, 0x2350824c, 0x7e34b30b, 0x05202d82, 0x6b822782, 0x0a209c82, 0x8506f356, 0x8200206b, 0x826b8418, 0x835c844b, 0x2070848a, 0x827a84ff,
0x8b08308f, 0x5cffff06, 0x00ff0080, 0x15cc4c65, 0x821100ff, 0x00ff2268, 0x6fb7830e, 0x73820992, 0x22820120, 0x82ffff21, 0x850020de, 0xcdcc2609,
0x660100ff, 0x205d8266, 0x05c6570a, 0xff056725, 0x82660800, 0x82fe20fe, 0x090021f8, 0x03200483, 0x0220b983, 0x08222983, 0x2982cc4c, 0x3e830120,
0xfc202384, 0x2383bc83, 0x86f7ff21, 0x2b082f23, 0x002000ff, 0xffff0501, 0xff9999f7, 0x54830200, 0xd683f620, 0x8a82fb20, 0x33fdff23, 0x23188233,
0xff0834b3, 0x23830a86, 0x9a990425, 0x84f6ffff, 0xcd4c2153, 0x63821884, 0x6e821e20, 0xccf5ff23, 0x204882cd, 0x843483fa, 0x80fc2404, 0x828b8300,
0x063c4540, 0x0e207c83, 0xf1203283, 0x11207c83, 0x2005c55a, 0x2ae082b6, 0xcdcc3600, 0x1e00ff15, 0x83953433, 0x842783cd, 0x84c884be, 0x19fe22ae,
0x84e6849a, 0x82322088, 0x8223820a, 0xff662283, 0x208d8400, 0x229283f7, 0x823433fd, 0xdfff23cd, 0x8482ffff, 0xb385df83, 0xae84c884, 0xe682dc84,
0x0222ae82, 0xd884cecc, 0x0900ff22, 0xff215982, 0x214e82fc, 0xf1820800, 0xe6010023, 0x201e8267, 0x234f820b, 0x66e60300, 0xff254882, 0xffffcccc,
0x058541fe, 0x09826620, 0x82676621, 0x66fe22d1, 0x0a244366, 0xd1864a82, 0x828b3221, 0x17ca413c, 0x82e60821, 0x4cfc223f, 0x83bd82ce, 0x33fa2173,
0x0528c782, 0x8b08cdcc, 0x74f80e06, 0x20318844, 0x5f501854, 0x1800200c, 0x220acc4e, 0x181100ff, 0x2612cfbf, 0xfc0654f8, 0x82152b54, 0xb4fb2106,
0x2f775618, 0xf7061423, 0x154f1814, 0xffff210f, 0x08190419, 0xd5ffff25, 0x848b66e6, 0xfb082510, 0x14fb0714, 0x56189a8e, 0xf7311fa6, 0x2f0e07b4,
0x01ff84f7, 0x1500c05e, 0x4cf8ffff, 0x260482cd, 0x707e3473, 0x83fdffff, 0xccd3280b, 0x00ff08cc, 0x8248e12e, 0x51fd2357, 0x486dffea, 0x00f32305,
0x2782a601, 0xff333325, 0x838c0700, 0x665e2620, 0xb1ffff66, 0x3b428340, 0xff00c0fa, 0x00401f00, 0xa1ebffff, 0x1900ff48, 0xffff48e1, 0xffb85ee4,
0x00400d00, 0x07214a82, 0x2e2982a6, 0x901e05ed, 0x99e7ffff, 0x0100ff9a, 0x82700080, 0x19272516, 0x6b8b069a, 0xd8228182, 0x6a82b8de, 0x1582fe20,
0x21828620, 0x82b89e21, 0x48612266, 0x20218278, 0x2838821b, 0xae470d00, 0x4c1400ff, 0x265782ce, 0x00ffcdcc, 0x82cc4c05, 0xcd4c246b, 0x828b4408,
0x82d1203a, 0x00ff2343, 0xc282cc02, 0x33b3d328, 0xe5ffff98, 0xb04a0100, 0x80f82106, 0x1a827b84, 0x8007002b, 0x0c00ff00, 0x00ffffff, 0x2004831a,
0x20848302, 0x2242822c, 0x83bfffff, 0x66662219, 0x274a8266, 0xff6766e4, 0x34b3f2ff, 0x9929c482, 0xe6ffff99, 0xffff9a19, 0x210e83fa, 0xee83cce0,
0x48212723, 0x26ba8206, 0x90a6eb91, 0x821800ff, 0x070024fb, 0x829e9999, 0x83f920a4, 0x99192528, 0xb4f7159a, 0x17544918, 0x82c4fb21, 0x477418df,
0xffff2108, 0x09baca18, 0x82d4fb21, 0xcaff2233, 0x431c19fa, 0xd4f72111, 0x1a497d18, 0x52b80b36, 0x64f9ffff, 0x0900ff9c, 0xffffcccc, 0xff649bf6,
0x7c940500, 0x51238d82, 0x85072a5c, 0x08002815, 0x00ff70bd, 0x82343306, 0x989932fa, 0x0e00ff8b, 0xfb083433, 0x15a4f764, 0xc04600ff, 0x25108200,
0xff004039, 0x0a83c6ff, 0x40b9ff26, 0xff8b0800, 0x11840683, 0x15820486, 0x84088b21, 0x821b8215, 0x00ff2128, 0x38823282, 0x2d823e82, 0x11824583,
0x84cd4c21, 0x28548216, 0x088b33b3, 0x14fc24f7, 0x39591815, 0x18542010, 0x20112391, 0x1890827b, 0x3509e2c2, 0x074b06b4, 0xe646ffff, 0xa900ff66,
0xff159a99, 0x6766f8ff, 0x6841869e, 0xfeff2405, 0x82a60080, 0xccd82386, 0xe68206cd, 0xf0824c20, 0x33b3e02b, 0x661400ff, 0xe6ffff67, 0x32098233,
0xff99991b, 0x34b3f2ff, 0x30fb0e08, 0x00ffb4f7, 0x8234b359, 0xfa0d36e4, 0x0800ffe2, 0x00ff8816, 0xffcc8c03, 0xb6f31500, 0x590b00ff, 0x2004849a,
0x830a8908, 0x82322019, 0xae872123, 0x17262d82, 0x0d00ff0c, 0x1e8270fd, 0x3d830720, 0x3eca0d22, 0x2f218a82, 0x2c6c8290, 0x00ff00c0, 0xff0a3504,
0x00c00f00, 0x05894d08, 0x3f0f002a, 0x1000fffe, 0x8b996666, 0x80220682, 0x06850800, 0xeeffff23, 0x277982ba, 0xff20050e, 0x14eefbff, 0x35213182,
0x22be82c0, 0x8402cbfb, 0x00ff243c, 0x85aad107, 0xf8ff2350, 0x6f82e405, 0x823eca21, 0xe9f7221e, 0x820a82fc, 0xeaff2374, 0x8e82560e, 0xff3c8a26,
0x66a6f4ff, 0x9c20a783, 0x08f95619, 0xff985926, 0xc275fcff, 0x3420b283, 0x6182f182, 0x17080023, 0x211e820a, 0x148235f2, 0xa0fa0727, 0x40ebffff,
0x23b28300, 0xf0ffff48, 0x00230982, 0x82183604, 0xa5f1331e, 0x0400ff1e, 0xff7d3413, 0x1e451100, 0x80efffff, 0x16828b00, 0x7d200683, 0xff23ae85,
0x84cdccf0, 0x211682ae, 0x475e33f0, 0x214c8205, 0xae82cd4c, 0xff5ccf26, 0x142ef2ff, 0x07215682, 0x211e82ae, 0x418205f2, 0xf6e8f722, 0xff238a85,
0x85ce0cea, 0xf4ff23a9, 0x1e82f4a8, 0x82a8f421, 0xa6f42719, 0xeaffff68, 0x23863d0a, 0x37822d84, 0xf8221e82, 0x4d821f05, 0x07229a83, 0x6182ecd1,
0xc8823320, 0x82cafb21, 0x4cf02228, 0x221e82cc, 0x8285ebfb, 0x82b320b9, 0xbbee2414, 0x848b7d16, 0x850820aa, 0x82bb8306, 0xfaf1223b, 0x20cb82e1,
0x233b8211, 0x083ecaf0, 0x34210a82, 0x823182fe, 0xf8ff2350, 0x5082912d, 0x82014021, 0xdbf921b2, 0x35216482, 0x221e82c2, 0x82241908, 0x2db2820a,
0xa4f01500, 0x80fcffff, 0x0b00ff00, 0xb2820a57, 0x429a9921, 0x67410605, 0x8a032205, 0x82b2823e, 0x0d0028cc, 0xffff71fd, 0x8266e6f7, 0x0500421e,
0xff600526, 0x70bd1400, 0xd2215782, 0x05c34120, 0xcafbff23, 0x2b1e820a, 0xff90420f, 0x0ef8fbff, 0xeeffff99, 0x0024b382, 0x8b008010, 0x06831682,
0x0e00ff22, 0x0023e982, 0x821e4511, 0x52382131, 0x1a82b284, 0x8fc20f22, 0x28210a82, 0x825082f6, 0xf8ff2130, 0x0032fe82, 0x93cccc0d, 0xff44fb08,
0xcc4ca600, 0x00ff8b15, 0x6582452c, 0x5ccf2327, 0xba2300ff, 0x210e82e0, 0x5483a430, 0x06822c20, 0x16821182, 0x45dcff2a, 0xffff8b20, 0x08e0bad3,
0xd4250683, 0xdcffff7b, 0x22db8230, 0x82852bdc, 0x5ccf2115, 0xff212d82, 0x850682d3, 0x23002316, 0x5483cdcc, 0x0833332c, 0xb891ffff, 0x0effff10,
0xe34ecccc, 0x82cf2008, 0x78012160, 0xf62c1482, 0x00ff3eb5, 0xfff0a705, 0xe23af9ff, 0x0a85a882, 0xff00402b, 0xbfdf0800, 0xdafcffff, 0x2a09821c,
0x00ff0a97, 0x0800c001, 0x822d00ff, 0x09002870, 0xff05f608, 0x826e1500, 0xbad5224d, 0x270a82e2, 0xff422004, 0x40d5f7ff, 0x23272a82, 0x00ff86d7,
0x829a1909, 0x0000238c, 0x81820458, 0xff510027, 0x020000ff, 0x210482fe, 0x04820a58, 0x47830420, 0x82800921, 0x60002161, 0x08220482, 0x80826726,
0x1e82b420, 0x66830320, 0xcc082c08, 0x00ff084a, 0xff7b9421, 0x7a145200, 0xcaffff05, 0x00ff3d4a, 0xff96a304, 0xc2b5cfff, 0x7b1700ff, 0xdbffff22,
0x00ffcdcc, 0x827cd423, 0x64df2dd9, 0xadffff18, 0xff05d8dc, 0x8ae15b01, 0x19213482, 0x2796829a, 0xff9ad9db, 0x862bdcff, 0xb3263482, 0xe8ffff34,
0x48821e85, 0xffff3f24, 0xa350fbff, 0x235e8205, 0x86ebadff, 0x0322ba82, 0xba821098, 0xfff8332a, 0x60250800, 0x4cfaffff, 0x9c837d82, 0x9effff23,
0x220a82b8, 0x82486100, 0xf6e821b2, 0xb1823a82, 0x19ffff28, 0x0100ff9a, 0xdd833233, 0x10180922, 0x0822dd82, 0x9e82d222, 0x8216f921, 0xb81e2104,
0x2a214482, 0x273582c2, 0xff146e15, 0xae472a00, 0x2d275f82, 0xffffa430, 0x820af7f6, 0x8308200a, 0x40fe216a, 0xe026f383, 0x0300ff42, 0xf882e425,
0xff66a626, 0x00c00600, 0x23067941, 0x18c40600, 0x78266082, 0x0900ff10, 0x9050444b, 0x08002305, 0xe883a430, 0x82c45521, 0xf21d2cdd, 0xf8af0e05,
0x8b15cbd4, 0x7adcffff, 0xff2612f3, 0xcc4ccdfe, 0x1d827a06, 0x33b3ef22, 0xb3235982, 0x82977f34, 0x5f692e3c, 0x9600ff3b, 0xff0532b3, 0xbefff9ff,
0x21588291, 0xac8206a1, 0x839a1921, 0x05c144c1, 0xdf820820, 0x83030021, 0x19082427, 0x8291919a, 0xa0962290, 0x2d3482c5, 0x970566a6, 0x020c00ff,
0x1000ff90, 0x5282cd4c, 0x9c70bd22, 0x0122fe82, 0x6018b332, 0x94221986, 0x3a82fb07, 0x66e6af2d, 0x2f00ff15, 0xffff9a19, 0x829a19d0, 0xe6d0237a,
0x06825c66, 0xb783f620, 0x8299f621, 0xf0ff237b, 0xe982cccc, 0xffcc4c24, 0x8582f7ff, 0x66290a82, 0xf5ffff66, 0x00ffcecc, 0x05446c0f, 0x0a229483,
0x8d823233, 0x66e62f2f, 0x332e00ff, 0xffba0534, 0xccccd1ff, 0x822c9c05, 0x07e87432, 0x52864882, 0x66660923, 0x203b8408, 0x823c82ba, 0x219b8249,
0x0a8266e6, 0x95822c9a, 0xa9829f86, 0xffff8b22, 0x0482b582, 0x0834b323, 0x83d3825c, 0x84d9833c, 0x98d782e3, 0x8432842c, 0x8d42823c, 0x078b27f2,
0xf4f7ef0e, 0xe35234f8, 0x82152008, 0x0a1570f1, 0xff078731, 0x68667600, 0x0a00ff06, 0x00ff6466, 0x825c4f15, 0x68e62e04, 0xb00e00ff, 0x1900ffa4,
0x088bcc4c, 0x0cf84eff, 0x62185920, 0x2042070b, 0xe6ff2317, 0x1b8234b3, 0x9819ea22, 0xb3264482, 0xf5ffff34, 0x53829c99, 0x08cc4c27, 0x19bdffff,
0x2c698298, 0xff66e63a, 0x6666d8ff, 0x002800ff, 0x062b4902, 0x2e820520, 0x19b4ff23, 0x226d829a, 0x72008004, 0x3c6917be, 0x684b2018, 0x9a721cd4,
0xdc1a1905, 0x00ff240d, 0x82cc4c03, 0x19fa2635, 0xffffce9a, 0x238d83d5, 0x50666638, 0xb326f382, 0xffff0834, 0x15824cf7, 0xcc4cf325, 0x82f1ffff,
0xf7ff2a37, 0xffff9a99, 0x8b6666ef, 0x83698308, 0x21188508, 0x38820800, 0xcd232c82, 0x820c00ff, 0xff502337, 0x3383e6ff, 0x6766d525, 0x83c7ffff,
0x19fa2333, 0xd3824899, 0xcd4c0322, 0x847cd3b5, 0x07cb2113, 0x24166e73, 0x870400ff, 0x2f6782ae, 0xffae0705, 0x66e64b00, 0x0a2800ff, 0x4000ff3e,
0x0021c182, 0x220e833a, 0x829a9927, 0x19bd2ddb, 0xffff0699, 0xff9999f5, 0x34b3eaff, 0x19200482, 0xf120dc82, 0xe627b783, 0x088b33b3, 0x18dcffff,
0x8213114a, 0x0e4a1873, 0x00ff2413, 0x82cd4c19, 0x8215201b, 0xf1ff265f, 0x00ff5c4f, 0x22fc830a, 0x82a4b0ea, 0x667624f6, 0x7e8f0667, 0xcb33174b,
0x15235306, 0x07bb06bb, 0x075b065b, 0x84fb64fb, 0x85075b15, 0x64f8230e, 0x1685155b, 0x0e06bb2e, 0x804e01ff, 0xff154b00, 0xb81e1700, 0x42296783,
0x0c00ff90, 0x00ffb89e, 0x2204830b, 0x82900214, 0x82102067, 0x1c0023bc, 0x0f50842b, 0x66202206, 0x23298268, 0x08cccc22, 0x24220682, 0xec824821,
0xffd8e324, 0x30822100, 0x82eeff21, 0x1c002304, 0x358248e1, 0x00802b28, 0x5e2b00ff, 0x368205b8, 0xff426026, 0x00a0f6ff, 0x06260a82, 0xffff0040,
0x1a82c0f9, 0x48210a22, 0x43553f82, 0x480b220a, 0x207682b2, 0x20258760, 0x821a8200, 0x86268220, 0x3d062730, 0xffff0870, 0x9c825ecb, 0x82c03421,
0x84468525, 0xdef52150, 0x0f84bc82, 0x25820483, 0x5e8ff428, 0xa1f4ffff, 0x3b850548, 0x8b201583, 0xde20a782, 0x30843b82, 0x83c2f921, 0x660922d8,
0x20978266, 0x21a2829e, 0xb882d8ff, 0x30820483, 0xb883f420, 0x82610b21, 0xfdf222d7, 0x82bc8270, 0xf1ff2834, 0x00ff48e1, 0x82004008, 0x010021d7,
0x9a254482, 0x9b059a19, 0x16416906, 0x0000ff2a, 0x00ffd800, 0x051ec51f, 0x0820c082, 0xf82d3f83, 0x00ff66e6, 0xffd82307, 0x9a19f7ff, 0x27a0828b,
0xff9a191f, 0x54d5ffff, 0xf7226f82, 0x9b820040, 0x8fc2f827, 0xe3f8ffff, 0x220a82d6, 0x83b81ef7, 0xd7e32567, 0x28e0ffff, 0xff234383, 0x820020f7,
0x4220213e, 0xe0202182, 0x08260982, 0x088bbfdf, 0x2a82069b, 0x87826620, 0xc6ffff31, 0xffff47a1, 0xffccccde, 0xb85ed9ff, 0x82c2ffff, 0x08442162,
0xdd211d82, 0x252c8240, 0xff834009, 0xd383dfff, 0x7d3f1026, 0xdee3ffff, 0x0b215c83, 0x25de82a1, 0xffe2faeb, 0x23821500, 0x66f3ff22, 0x172a9e82,
0x088bb91e, 0xff0671f7, 0x2d8349ff, 0x9a99fc39, 0x1700ff15, 0x00ff52f8, 0x05b8de0d, 0x80b500ff, 0x00ff0700, 0x82ae0760, 0xae4721df, 0x00271082,
0xffff4e04, 0x8233334a, 0x2326830a, 0x4721f2ff, 0x182b0a82, 0xffff94b6, 0xffba9ef1, 0x824c1300, 0xb3ea2591, 0x0c00ff32, 0xff2a5082, 0x089a19e7,
0x02fffeff, 0x10820690, 0xff717d25, 0x82e61800, 0x4c132275, 0x218482cd, 0x0e82ce4c, 0xff33b331, 0x66660e00, 0x30fb0e08, 0x54f874f7, 0x4304f715,
0x56180ed5, 0xfb2708d5, 0x14fc0764, 0x7864f706, 0x9b2817f0, 0x054bab06, 0xab05cbab, 0xf7250786, 0x15b4fb34, 0x174a546b, 0x4b064b22, 0xcd201a8a,
0x6c055d6c, 0x1a6d05be, 0x0ab96c0b, 0x4b07cb22, 0x30177d54, 0x14f807ab, 0xfb54fb06, 0x00ff1544, 0x8bcdcc08, 0xbf5618ff, 0x594d1808, 0x23516e10,
0x79ff8b21, 0x0e251403, 0xf874f72f, 0x22628254, 0x82cccc7c, 0x33632257, 0x83a98234, 0xd3ff260a, 0xfb083433, 0x17ee66e4, 0x18986b20, 0x0967cf82,
0x07ab2314, 0x155c54fb, 0x241e8205, 0xb3f1ffff, 0x06766633, 0xcd4cee22, 0x1805155c, 0x21146c67, 0x451807ab, 0x65550bad, 0x83f7200a, 0x2c002b9b,
0x00ffcccc, 0xffa43063, 0xba822300, 0xcf7c002a, 0xfb088b5c, 0x1594fb34, 0x21085655, 0x67857b54, 0x18110021, 0x2109a18c, 0xeb8234b3, 0x22530e20,
0x23f68305, 0x0834b311, 0x82057451, 0x832e8609, 0x82ff201e, 0x204f82aa, 0x0c625194, 0x3e82ba82, 0x08261a83, 0x9b0714fb, 0xc81824fb, 0xf7225cf1,
0x67568bb4, 0xf8af2b5d, 0x4900ffb4, 0x8b159a99, 0xf95aff85, 0x9efa2d05, 0xfaffffb8, 0xffff00c0, 0x089042fd, 0x80200582, 0xfe210a82, 0x200482a0,
0x201483c5, 0x230983e1, 0x8b0040b7, 0xf9231a82, 0x828b42e0, 0xbe1f252b, 0x200000ff, 0xfa202082, 0x09832a82, 0x5c5a0820, 0x82e92006, 0x05002430,
0x827bb81e, 0x8240201f, 0x1eff221f, 0x211a82b8, 0x0a82e001, 0x0f83fa20, 0x2f82fe20, 0x20056e45, 0x232982fb, 0x48e1fbff, 0xfb205482, 0x0f841e83,
0x82bef921, 0x23238489, 0xff9042fa, 0x3c057b4c, 0x765efeff, 0x760000ff, 0xe0fffffe, 0x00ffe6b0, 0xfff8310a, 0xa4b0dbff, 0x661700ff, 0x273d8266,
0x07a430d5, 0xfeffffff, 0xf2273982, 0xffff52b8, 0x86cc4cf5, 0x18f22004, 0x200f7e83, 0x32801800, 0x00ff2409, 0x825ccf2a, 0x23488337, 0x9a99e8ff,
0xa4205c83, 0xcf213782, 0x204a825c, 0x224b825e, 0x82ae87ff, 0x46b4855c, 0x0120087a, 0xb482be83, 0x0400ff24, 0x1e820040, 0x0a83b483, 0x19823382,
0x21060023, 0x82b48248, 0x050023cd, 0xf78270bd, 0xb83e0022, 0xba350f82, 0x0500ffe2, 0x00ff9a19, 0xff323310, 0x66660b00, 0x191600ff, 0x223d829a,
0x82be7ffa, 0x232e82b8, 0x8a21faff, 0xf9230986, 0x828bb8de, 0x40b7271a, 0xffff8b00, 0x2b82a6c6, 0x48611e25, 0x82fcffff, 0x010023a1, 0x1a82b85e,
0x00c0fa27, 0xb30200ff, 0x05bc4134, 0x66050027, 0x08918b66, 0x8262828b, 0x03002148, 0x0022aa82, 0x86828105, 0x09830520, 0x86840220, 0x82a00121,
0x83002031, 0xc11e211e, 0x10211982, 0x20048201, 0x22e3822c, 0x83de0800, 0x83bf2050, 0x824b2050, 0xecff21ba, 0x56223383, 0x8b8286ab, 0x8fb81e22,
0xfe226b82, 0x588247e1, 0x82e03a21, 0x20df83c5, 0x21858305, 0x3e82e103, 0x66e60322, 0x0324df82, 0x8f8eb81e, 0x21057f7c, 0xb1820400, 0x01211282,
0x20b88220, 0x85058200, 0x210986cf, 0x1a8200c0, 0x77820420, 0x2cffff37, 0x5100ffcc, 0xffff52b8, 0xffce4ced, 0x66e64a00, 0xccc3ffff, 0x2e1e83cc,
0x8b076666, 0xe67600ff, 0x00ffc766, 0x8268e65e, 0x00802ae4, 0xff8e088f, 0xcc8c0400, 0x830d8290, 0x4f0520a6, 0x06830571, 0xffff902a, 0x8e0040fd,
0x60fbffff, 0x02205d83, 0xff2fa082, 0xc7b8fefb, 0x14a1ffff, 0xffff8b7c, 0x82323389, 0x99fb2bc1, 0x00ff079a, 0xff9a1949, 0xdd833c00, 0xfe7f5325,
0x831200ff, 0x8303204a, 0x84002062, 0x4c012799, 0x0000ffcc, 0xca820040, 0x829c1921, 0x232d8309, 0x8b981901, 0xd6829583, 0xffff8f24, 0x1c8260fe,
0x48210323, 0x20128288, 0x223d8203, 0x8220fcff, 0xa0012510, 0xfaffff00, 0xff221a82, 0x0983e0fe, 0xff384c83, 0x870020ff, 0x41ecffff, 0xa9ffff48,
0xffffb85e, 0xff70bdbf, 0x7ad4b4ff, 0x2c213982, 0x20148261, 0x203983f7, 0x2243831e, 0x82b8feef, 0x829e2071, 0x21ff2223, 0x201e8248, 0x28868205,
0x3453fdff, 0x330300ff, 0x82588234, 0x05c576eb, 0xff2f0e25, 0x8299b600, 0x66c926c2, 0xffff1566, 0x84ea83f3, 0xcceb2104, 0x07d78318, 0x800c0023,
0x24ee8200, 0xdb52f8af, 0x22218205, 0x83ff8f82, 0xff8b2311, 0x4a821400, 0x7d0c0023, 0x820f8471, 0xef641864, 0x8f42210a, 0x0c221f82, 0x51845278,
0x382b1a82, 0xffff0180, 0x0532b3c6, 0x828a00ff, 0x8900238a, 0x0a827c54, 0x7d213085, 0x834a8470, 0x217d8430, 0x65189082, 0xe5830e20, 0x04829384,
0x82fb0821, 0x076026be, 0xfb8b05ae, 0x24af9d74, 0xf7d5f87f, 0x21b08314, 0xb08d0681, 0x88fa7e21, 0x7d7f21b0, 0x7f820a84, 0x7f84b085, 0x0021ed83,
0x20bb8368, 0x20b08496, 0x22b083ea, 0x88ce4ce9, 0x832582b0, 0x84b088fb, 0x20cb8330, 0x18a082ff, 0x2b10d165, 0x94fb94fb, 0xf7af0e05, 0x5b157bb4,
0x7d288982, 0xff07cc4c, 0xcccca800, 0xb3210482, 0x20538234, 0x824e830f, 0xff802304, 0x0a821a00, 0x19eaff33, 0xff088b9a, 0xe23a91fe, 0xeaffff06,
0x808bfa1e, 0x056660ff, 0xff222382, 0x6c84f0ff, 0x33b3a827, 0x4c57ffff, 0x28de82cc, 0x0734b382, 0x0cd0ffff, 0x0e58468b, 0x8286ab21, 0x54ee2389,
0x0682087a, 0xfc29f725, 0x820700ff, 0xf8ff2304, 0x098204d6, 0x829eef21, 0xbf002161, 0x1505a118, 0x04d6082a, 0x0200ff08, 0x00ff32b3, 0x2913c146,
0x64f824f7, 0xc1ffff15, 0x5882b85e, 0xe23acb31, 0xc0d7ffff, 0xecffff00, 0xffffcc4c, 0x820040c8, 0x8034233a, 0x42600600, 0x1c002105, 0x0026d082,
0xff48a11e, 0x09831300, 0x34822320, 0xe13b2083, 0x00ff8b48, 0x6052382a, 0x8b08568b, 0xd4ffff56, 0xff6048e1, 0x1e05ccff, 0x827d088b, 0x82f22055,
0x03002250, 0x21558240, 0x3a82e1f3, 0x82600521, 0xdcff2155, 0x04831482, 0x00ff0523, 0x20158215, 0x2a2484ff, 0xffb85e19, 0xb8def7ff, 0x851b00ff,
0x804f225a, 0x255a8200, 0xff9a993f, 0x0a844000, 0x08201082, 0x06821182, 0xc0ffff23, 0x254d8261, 0xff488140, 0x1b82b0ff, 0xf70e0830, 0x2e01ffac,
0xff1534b3, 0xcc4c2100, 0xb4829b07, 0xcc4c0d22, 0x0a232c82, 0x18ff34b3, 0x820a3871, 0xde551811, 0xffff2a13, 0x069a19af, 0x99f3ffff, 0x26b38299,
0xffcd4cf5, 0x8240f5ff, 0x18ff207d, 0x820aa785, 0x82332045, 0x82732021, 0x630c204f, 0x10220507, 0x338266e6, 0x14aede37, 0x8fffff07, 0xffff9999,
0xff2005f4, 0x6666a8ff, 0xe6a0ffff, 0x26488266, 0x0866668c, 0x820654f8, 0x82732074, 0x231984c5, 0x9a195f00, 0x9a2c2d83, 0x64f70897, 0x4c01ffff,
0x64fc15cc, 0xf2214582, 0x826e83c0, 0x83798274, 0x208a82b8, 0x23ec829a, 0xceccf1ff, 0xc021bf82, 0x27168400, 0x590c00ff, 0xf8088b9a, 0x00213082,
0x219f830d, 0x19820a00, 0x270cae46, 0xff66e600, 0x32330e00, 0x10c15618, 0x01ff0e2b, 0xff0080ee, 0x3333c100, 0x2fa98215, 0x00ff48a1, 0x05e17a47,
0xe5fbffff, 0x1900ffe4, 0xff263682, 0xffdecff3, 0x09831700, 0x727ded32, 0x851200ff, 0xffff0820, 0xff84abcc, 0x7a543300, 0xed222982, 0x1584e27a,
0xe8ffff24, 0x8b825238, 0xff142e2b, 0x9819e6ff, 0x190400ff, 0x2029829a, 0x23d982b8, 0x0a570b00, 0xe6222982, 0x1582cd4c, 0x42281c21, 0xff2305ed,
0x82aec7fb, 0xcdcc2133, 0x28217782, 0x272982f6, 0xff3333bf, 0x34f3deff, 0xe8212982, 0x271a8287, 0xff862bf4, 0x4721edff, 0x02210482, 0x2024828e,
0x2229820c, 0x8266a6e8, 0x19df2729, 0xbfffff99, 0x29820080, 0xf628f422, 0x8f214482, 0x26b1825d, 0xffff8fc2, 0x846766e5, 0x2b828478, 0x0b00ff08,
0xffffb85e, 0x051e85b8, 0xdb201583, 0x9a201583, 0x3021a282, 0x20338263, 0x21eb8221, 0x33828212, 0x285ced22, 0x33222982, 0xd6847b54, 0x12222982,
0x73821f85, 0x29829920, 0xa2831720, 0x3ecaf322, 0x22060a41, 0x82d6e3fb, 0xd7472229, 0x218d820a, 0x298248a1, 0xafc71922, 0x22062a41, 0x82707d1a,
0x24382662, 0x331700ff, 0x21778232, 0x29822cd5, 0xcccc4027, 0x0c2100ff, 0x222982cc, 0x82ec5117, 0x24398215, 0xe0fa1200, 0x200482ff, 0x210e82e2,
0x2e82c4f5, 0x82ea5121, 0xcf202729, 0x4000ff5c, 0x2982ec91, 0x72fd0b22, 0x70211582, 0x214e82a8, 0x31443433, 0xe6fb2206, 0x3d828266, 0xff08ffff,
0x0080c1fe, 0xb38fffff, 0xffff1533, 0x8b4861ee, 0x85f2ffff, 0x0e00ff1e, 0x7818b85e, 0x11820e33, 0x0d00ff23, 0x2366827a, 0x8be2ba10, 0x06836282,
0xff232884, 0x83a1f1ff, 0x45ef2238, 0x2016821e, 0x755a8200, 0xf120057d, 0xff21f182, 0x2a5e83f2, 0x8b6666ee, 0x00ffab08, 0x9a9a199f, 0x82508266,
0x4861214f, 0x00235485, 0x1852b810, 0x83091685, 0x82668a78, 0x826d82a6, 0x825d83ab, 0x83bb827d, 0x34f72662, 0xe680ffff, 0x22639a66, 0x86b89e11,
0x23cabb5e, 0xee01ff0e, 0x0021dc82, 0x21cf84c0, 0x53825ebe, 0xffd10038, 0x07cbffff, 0x3500ffae, 0xff8bd851, 0x8fc24100, 0xbeffff08, 0xaa829042,
0xd6a3ca27, 0xf83400ff, 0x21218252, 0x1a82ce4c, 0x8248a121, 0x57e63b1a, 0x0300ff0a, 0xfffff4dd, 0xff29dce5, 0xfce5fbff, 0x07e9ffff, 0xf4ffffaf,
0x1e82242a, 0x1d45bf2d, 0x0fdfffff, 0xffff055c, 0x8266a6e8, 0xce0c2615, 0x02edffff, 0x12bc428f, 0x42a43021, 0x0c2108bc, 0x07bc42cd, 0x82aec721,
0x1f852158, 0x2206bc42, 0x42e0fae5, 0x1a200ebc, 0xe6275e82, 0x00ff9a19, 0x8221300c, 0x42098333, 0x7a2005a6, 0x33212983, 0x2792825c, 0x052a9ccc,
0x871200ff, 0xed2c4982, 0x00ff166e, 0xff33b317, 0x66e6f3ff, 0x2107bc42, 0xbc4266e6, 0x67e6210e, 0xe626c782, 0x1a00ff24, 0x7882b85e, 0x82dc3721,
0xec512633, 0xd50b00ff, 0x22298234, 0x425ccf40, 0xfd2112bc, 0x07bc4270, 0x427cd421, 0xee2108bc, 0x08bc4214, 0x823cca21, 0x820f2015, 0x33042239,
0x24588234, 0xffffce4c, 0x2dac83fc, 0x08008019, 0x66c1feff, 0x90ffff66, 0x7c18cccc, 0xbc420e54, 0x0e55420b, 0x1257be18, 0x4208bc42, 0xf1200755,
0x08f99d18, 0x2013b842, 0x064242f1, 0xc1091f43, 0x0fb84262, 0x0e2b63d3, 0x15cb14f7, 0x4b0674f7, 0x1974fb07, 0x210ee633, 0xcc8234b3, 0xcc4c2326,
0x0794f708, 0x4a3ce018, 0x0b7e5218, 0x48f1ff21, 0xfb27085e, 0x94f707f4, 0x821594f7, 0x07cb2186, 0xff209082, 0x23153b56, 0xab0794fb, 0x4e0f3976,
0x5f4f07fa, 0x0f9f7606, 0xe24f6b20, 0x4f34200c, 0x541808e2, 0xc74f0e26, 0x07f4300b, 0xd4f8ef0e, 0xfc1514f8, 0xffff0694, 0x82cdccdc, 0x33e3265a,
0xe3ffff33, 0x236c8333, 0x08ccccdc, 0x14828882, 0xff240982, 0xcdcc1c00, 0xb2821984, 0x8b333324, 0x3382f808, 0x83230021, 0x20198228, 0x211e83cc,
0x1a838bcc, 0xf7083424, 0x09850794, 0x1c222e86, 0xda50cccc, 0xfc082505, 0x157cfb94, 0x04271b82, 0x00ff6666, 0x8248a103, 0x9a992904, 0x5e0400ff,
0x9b088bb9, 0x0422ef82, 0x1d824861, 0xb99e0323, 0x3c0f19ff, 0x2081820c, 0x232782fb, 0x4761fcff, 0xff271884, 0xb89efbff, 0x827b088b, 0xa1fb22b4,
0x221d8247, 0x84b85efc, 0x275a854a, 0xf7079b08, 0xfb1533a4, 0xff20a082, 0x0c986818, 0x0e815018, 0x82070021, 0x260482eb, 0x0700ff34, 0x828b67e6,
0x228282b7, 0x820ecd08, 0x32072545, 0xf8fffff2, 0xff230a83, 0x45f232f7, 0xf72207d9, 0x15823433, 0x8e19cd83, 0xfb240987, 0x9b15d364, 0xd385ef83,
0x0021a682, 0x21d38403, 0xd3866666, 0x088ca718, 0x6621d395, 0xdd111966, 0x21d3840b, 0xd3839a99, 0x4a831882, 0xcb21d386, 0xcb66408b, 0x158beb22,
0x4108d441, 0x64412600, 0x4a002335, 0x6a83cd4c, 0xcdccf525, 0x83f8ffff, 0xe6f72f6a, 0xf6ffff66, 0x088b0080, 0x2b02ffff, 0x0c820686, 0x82ae8721,
0x82f8208c, 0x0800301c, 0xff8b9a19, 0x33330a00, 0x5b00ff08, 0x84076766, 0xff32290c, 0x9a990700, 0x190800ff, 0x09220482, 0x39825278, 0xe6fd0029,
0x00ff0666, 0x82146e09, 0x82072021, 0xf7ff231c, 0x448266e6, 0xceccf539, 0xa4ffff08, 0xf7079999, 0x6dffff64, 0xfb1533b3, 0xffff0634, 0x82f232f7,
0xcdf8221c, 0x2149820e, 0x32827433, 0x8ccc0823, 0x84068308, 0xf2322111, 0x04831682, 0x0ecd0822, 0x07086218, 0x8210cd21, 0x3207221e, 0x0b8542f0,
0x18064854, 0x230f6149, 0x54f78b0e, 0x5c39e418, 0xfb94f723, 0x00421834, 0xffcc261c, 0xcc4ce3ff, 0xd79f18ff, 0x8233200e, 0x4ce321af, 0x5b058b55,
0x4218050b, 0xff27188f, 0xff33b364, 0x83b30401, 0x82242066, 0xdbff250a, 0xff05cc4c, 0x3d820582, 0xcd4cdb22, 0xf9270a82, 0xffff71bd, 0x82cdccf9,
0xccf52148, 0x06226a82, 0x0f848f42, 0x00ff0825, 0x82343306, 0x2235820a, 0x82330a00, 0x230f8473, 0xcd4c0600, 0x4b831a82, 0x04820020, 0x83ff0521,
0x18508405, 0x20144a50, 0x84458233, 0x82368230, 0x2046840a, 0x2356880a, 0x08333306, 0x45843b84, 0x50824b86, 0x0a823420, 0x51183086, 0xad821315,
0x4c234b82, 0x82ffffce, 0x83b782b1, 0xf9ff230f, 0x4b8632b3, 0xce20dd82, 0x4b82e386, 0x0a823220, 0xd884f920, 0xe8833085, 0x30860f83, 0xce20fe86,
0xce20fe8e, 0xc024e382, 0x158b0100, 0x32209983, 0x3641a383, 0x41738205, 0xb3200636, 0x36411582, 0x825d830b, 0x2137820f, 0x1a833306, 0x21053641,
0xa9828b34, 0x36410f82, 0x89342008, 0x413420ea, 0x30980936, 0x16815118, 0x20053641, 0x204b89ce, 0x410a8332, 0x15820536, 0x77828182, 0x82066741,
0x240f821a, 0xf9ffff08, 0x411a83cc, 0xcd820b36, 0x20073641, 0x418c83cc, 0xcc200536, 0x0520f384, 0x3682309c, 0x36411f84, 0x27fe8508, 0xf70e08ce,
0x15f4f7f4, 0x2706347e, 0x66e6fcff, 0x66f2ffff, 0xfa200482, 0xf3272083, 0xff0832b3, 0x82cc3400, 0xcca4216c, 0xe8206c83, 0x3306fa5b, 0x99e1ffff,
0xedffff9a, 0xffff3333, 0xff34b3dd, 0x0080f6ff, 0xcc23b182, 0x82e46666, 0x19ff2687, 0xffff069a, 0x283683bc, 0x0500808a, 0x801500ff, 0x297d8200,
0x00ff3433, 0xff67e616, 0x4582fcff, 0xb3170024, 0x5c828b33, 0x34b34622, 0x3f25fa82, 0x00ff9819, 0x23488220, 0x9a192900, 0x33267182, 0xff960832,
0x2c820c00, 0x83140021, 0x19032536, 0x0d00ff99, 0xf4225083, 0x35829a19, 0xcecc0d25, 0x82f4ffff, 0x020026ac, 0xffff3233, 0x840982eb, 0xf2ff270e,
0xff083433, 0xbc83cbff, 0x3433be26, 0xd5ffff39, 0xa5223483, 0x6b8266e6, 0x99dcff28, 0xff698b9a, 0xdf830600, 0x33b3e026, 0xb30b00ff, 0xc7272d83,
0xffff9959, 0x8232339e, 0x82fb20b9, 0xf7ff2399, 0xad8268e6, 0x821f0521, 0x27298304, 0xff299cf7, 0xccccfbff, 0xc8275782, 0xffff7b94, 0x83ce4ce4,
0x3d0a2129, 0x27069556, 0xff291cfa, 0xcc4c0000, 0x47262482, 0x0200ff2b, 0x298266e6, 0x7348fb22, 0x23820a84, 0xff062125, 0x83330500, 0x800522e5,
0x20bb8200, 0x05545437, 0x5b820820, 0x3a020026, 0x0800ff5e, 0x0027ad82, 0xff643b04, 0x82660700, 0x3c00283b, 0x00ffae07, 0x829a9967, 0x2bf32265,
0x83a58285, 0x2ef4255b, 0x0c00ff14, 0xff282982, 0xff0a57f5, 0xcc4c0d00, 0xf4226582, 0x164133f3, 0x02002805, 0x00ffc335, 0x829a1914, 0x3eca210e,
0x25413282, 0x3dca2105, 0xe6210a82, 0x26198266, 0xffffd723, 0x8267e6fc, 0x5d0f270e, 0x19f3ffff, 0x94820899, 0x8385ab26, 0x140600ff, 0xf922d382,
0x0982cd4c, 0x82527821, 0x33b321f2, 0x45211a82, 0x224e8275, 0x8266e677, 0x83fa2082, 0x2078841a, 0x204983fc, 0x05b76c0d, 0x8b247e82, 0x053500ff,
0x2019f318, 0x058b8b24, 0x3d586b2b, 0x78ed181b, 0x8bcd2216, 0x069f59ff, 0x6c0ca16f, 0x74201452, 0xfe23f782, 0x829a19f6, 0x66212166, 0x0c26ed82,
0xffa9cccc, 0xae831100, 0x30831a20, 0x34331622, 0x2b2bd382, 0xffff34b3, 0x050080b4, 0x820400ff, 0xf8ff2715, 0x00ff9a99, 0x14823302, 0x32b3f722,
0xf7296d82, 0xff089a99, 0x9a99c8ff, 0x250c8207, 0xff0080fa, 0x5782fdff, 0xccfaff26, 0xfbffffcc, 0x0e823083, 0xfb222082, 0x1987ce4c, 0xff981927,
0x34b3ffff, 0x21468286, 0x3b850080, 0x1b00ff27, 0xff0532b3, 0x824c82ff, 0x205c8366, 0x6e4482f9, 0xfb270590, 0x00ff3233, 0x82981908, 0xccd63029,
0x4500ffce, 0x0e05cecc, 0x19af01ff, 0x82daf79a, 0x054627ba, 0x2d00ff1e, 0x9f82f6e8, 0x0c170b2a, 0x450700ff, 0x0300ffe4, 0x002d6382, 0xfff2dd0e,
0x4cb7f8ff, 0x1c0b00ff, 0x223d822a, 0x82f0c7f8, 0xec11260a, 0x21f1ffff, 0x26238206, 0xfffff628, 0x82b8def4, 0xaab12123, 0x95201e82, 0xff23d882,
0x821e45ba, 0x30ce2286, 0x2a7282a4, 0xffff78c9, 0xff48a1d0, 0x82e10000, 0xc7f023cb, 0x25828bae, 0x7cffff23, 0x2111828b, 0xed820801, 0x12820b83,
0x767edb22, 0xfa24d082, 0x24ffff1c, 0xfb22fe83, 0x1b826666, 0xcd4c9422, 0x5f231a82, 0x820765e6, 0xbae1220c, 0x83e182e2, 0x97e4251c, 0x2b00ff0a,
0xeb286983, 0xff087ad4, 0x66e66500, 0x00222082, 0xc482450d, 0x22052852, 0x18ff90c2, 0x210848c2, 0x6b820040, 0x9ad90927, 0x3df5ffff, 0x22478270,
0x82e2baf2, 0x19893154, 0x00ff079a, 0xffcdcc22, 0x9cd9f6ff, 0x192600ff, 0xfa282082, 0xffb39a19, 0xcc4cfeff, 0x67225482, 0x54999a99, 0x83000022,
0xff224982, 0x5a82fafe, 0x2f820b83, 0x8c09a752, 0x66982267, 0x27678266, 0xff14ee28, 0x02ab0100, 0x05206782, 0x052ba482, 0x00ff6ef2, 0xff682620,
0x821a0900, 0x7600218c, 0xd783c0a1, 0x9a20588c, 0x2c31c084, 0x00ff707d, 0xff862b14, 0x2a9c1a00, 0x681b00ff, 0x229182f4, 0x8220451e, 0x21a02290,
0x27798247, 0xffcccc01, 0x67662b00, 0x1a326b82, 0xff5e0080, 0x66661000, 0xff44fb08, 0x008069ff, 0x00848b15, 0xffff0825, 0x829a198d, 0x83a320cf,
0xf81c222b, 0x23428252, 0x08856b23, 0xff240685, 0xb81e5d00, 0xae205982, 0x7123c182, 0x828be2fa, 0x22fd9259, 0x82008011, 0xf810272e, 0xffffff52,
0x65823e49, 0xff703d26, 0x76bffeff, 0x21085b82, 0xff71fdc0, 0x42e0d7ff, 0xf4ffff05, 0xfffff6e8, 0xff1dbaf8, 0x66e6fcff, 0x22f1ffff, 0x0700ff0c,
0x1882b448, 0x82d7e321, 0x9b042257, 0x211e8223, 0x1482cd0c, 0x8233b321, 0x33332123, 0xcc210982, 0x207283cd, 0x315f8404, 0xffe08f04, 0xd7430100,
0x0e0400ff, 0x0200ffd8, 0x358273a8, 0x824c6d21, 0xab4728e1, 0x00ff0584, 0x821ec533, 0x9c592b4b, 0xba2100ff, 0xedffffe2, 0xd5821c45, 0xc4b5ea22,
0xff298582, 0xffff162e, 0xffb693dc, 0x36e583ff, 0x9a19e3ff, 0x338cffff, 0x0e088b34, 0xf8b4f7af, 0x33fb1534, 0x6c15fb8b, 0xfb220b0f, 0x3c820754,
0x0040b923, 0x231685f7, 0x088b33f7, 0x0d820382, 0x200a066c, 0x232483f7, 0x00c04600, 0x16833b82, 0x08264582, 0x61ffff38, 0x34829a99, 0x0080fb2d,
0x61efffff, 0xffff8148, 0x82b81ef2, 0x00402204, 0x21898281, 0xd68273b3, 0x82660d21, 0xcccb21ff, 0x1a29ea82, 0xff8b34b3, 0xcccc1e00, 0x82068308,
0x32002127, 0x1a2c0483, 0x00ff9042, 0xff48e149, 0x52b80c00, 0x1921e582, 0x2241829e, 0x8200c0d3, 0x820920e5, 0xefff2715, 0x00ff00c0, 0xc5829902,
0x3233ec23, 0x05ba75ff, 0xceccec29, 0xffffde08, 0x826666ce, 0xe1ea227d, 0x26bf8248, 0xff70bdeb, 0x83190000, 0x238d8226, 0x66a60200, 0x2507dc6b,
0xff66261a, 0x19821800, 0x83130021, 0xcc1c2304, 0x1a828bcc, 0x16820683, 0xff7c142c, 0x48e1ecff, 0xe5ffff93, 0xb382b8de, 0x1e85ec26, 0x40feffff,
0xeb2ecf82, 0xff8a34b3, 0x66e6eaff, 0xf7cb088b, 0x62821524, 0x8982dc20, 0x83e3ff21, 0x8204841b, 0x1948820e, 0x200acf21, 0x28538500, 0x08343323,
0x00ff0798, 0x21f98214, 0xc2820100, 0x84150021, 0x22ec8309, 0x82343316, 0x83002033, 0x00ff2406, 0x82146e15, 0x82e0206b, 0x5e1421de, 0xfe24f382,
0x7e080020, 0x2e273782, 0xffff66e6, 0x829a1979, 0x82f220da, 0x0900216c, 0xff2b2182, 0xffb8def5, 0x48010e00, 0x83fbffff, 0x9e1021de, 0xfa20ac83,
0x00271982, 0xff482113, 0x82a00200, 0x83132045, 0x202d8223, 0x0645419c, 0x802c0029, 0x00ff0500, 0x48f6484a, 0x0023056e, 0x82343332, 0x34b321e7,
0xe123cb82, 0x8308cccc, 0x9a192506, 0x99cbffff, 0xe5200482, 0xff23a382, 0x82cc4cb3, 0x9a99262a, 0x01ff0e08, 0x2b1a82d3, 0x66e6ce00, 0xff08fb15,
0x9a19d1ff, 0x5e2c4982, 0xff060a57, 0xfc49f8ff, 0x26f1ffff, 0xf722a482, 0x0982c66b, 0xffec9126, 0x866bf6ff, 0x45253882, 0xffff081e, 0x239f827b,
0x9002cbff, 0x55272f82, 0xff0666a6, 0x82a8c4ff, 0x4acb2a7f, 0xabffff3e, 0xffff703d, 0x20eb83e4, 0x22728287, 0x83851b00, 0x82bb202f, 0x82ff20b5,
0x82052004, 0xb89e2145, 0xf0270486, 0x00ffecd1, 0x85880100, 0x0900240e, 0x8208c05f, 0x2ae4830a, 0x8b006009, 0x2f0f00ff, 0x8200ff5c, 0x2104820a,
0xee824861, 0x6566fd27, 0x66fd00ff, 0x26748266, 0xff94d804, 0x82460600, 0xccff219e, 0x08211982, 0x277882ea, 0xff763efa, 0x8fc20500, 0xf9224482,
0x1e8200c0, 0xffff3f23, 0x060264ff, 0xff90c226, 0x01c0f9ff, 0x57211a82, 0x22348266, 0x82676657, 0x57d53c89, 0x3301ffd0, 0x01ff9042, 0xff0a5756,
0xcae13100, 0x00ff04f7, 0x088e0808, 0x821200ff, 0x010027b0, 0x00ffa05a, 0x5b828a0f, 0xbc74f02c, 0xa3feffff, 0xedffffd6, 0x4582d823, 0x02c0fc27,
0x9ad2ffff, 0x296082c6, 0xffffcccc, 0xffe2baac, 0xee82e0ff, 0xb3b0ff32, 0xfb0e0832, 0xf894f730, 0x14fb1554, 0x0614f707, 0x7a5e4919, 0xc334fb29,
0x00ff8b15, 0x51b85e04, 0xa1210719, 0x240e8348, 0xdb088bb9, 0x50088206, 0x5e2a0a45, 0xffff8bb8, 0x0848a1fb, 0x0883077b, 0xffb89e26, 0x6666fcff,
0x61210482, 0x24178248, 0x088b9a99, 0x0e19513b, 0x31829e20, 0x61040028, 0x079b0848, 0x80514b8b, 0x83668f17, 0xfbff2371, 0x66869a99, 0x879a9921,
0x826b8366, 0x82669117, 0x82a9847a, 0x84f72966, 0xff158cfb, 0x00e00800, 0x0725d482, 0xffff0020, 0x240a83f8, 0x0020f7ff, 0x08d57e08, 0xb482e620,
0x51651682, 0xc0d02208, 0x20b88200, 0x22ad83ef, 0x8221f1ff, 0x840920fe, 0x27e08238, 0x48c10e00, 0xfdffff08, 0x00220f82, 0x4d82e005, 0x0482fa20,
0xa0000022, 0xfd230982, 0x838b48e1, 0x2806821a, 0xdefaffff, 0xffffffb8, 0x20168360, 0x22048240, 0x820080fa, 0x83f8201a, 0x9ef0230a, 0x408205b8,
0xc5825920, 0x8286fa21, 0x80f92177, 0xfc201f82, 0xfa20d483, 0x2505264b, 0x0666e6fe, 0x1683ffff, 0x80000022, 0xcc823b85, 0x89004026, 0x400600ff,
0xef274683, 0x00ff9a19, 0x82666632, 0x66f52746, 0xe0ffff66, 0x0a829a19, 0x1582fa20, 0x2005f257, 0x203583ef, 0x220e83f4, 0x834761ed, 0x9ef32292,
0x225182b8, 0x824721f7, 0x82f820f0, 0x07002398, 0x717f9a19, 0x168a1906, 0x82e58308, 0x00ff2416, 0x82b9de08, 0x0c002433, 0x82064861, 0x00e02176,
0x04202182, 0x0021b782, 0x22f28303, 0x82b97e01, 0x21cc8314, 0x14831200, 0x48a13626, 0x0300ff05, 0x09250a83, 0x00ff52d8, 0x076d4909, 0x660a0023,
0x83468366, 0x23168506, 0x0060f9ff, 0xff222a85, 0xc68220f6, 0xe10d0028, 0xd6ffff48, 0x4082b85e, 0x82c01321, 0x8310201a, 0x61222145, 0x07e28618,
0xa8820b20, 0x21e8ff2a, 0x878d0848, 0xfdffff8f, 0x0023d382, 0x83b81e04, 0x402f2353, 0x95820600, 0x0c002008, 0xfb0e15cc, 0xf714f830, 0x14fb15d4,
0x0714f706, 0x14fb14f7, 0x6b14fb05, 0x0614f715, 0x8207c4fb, 0x7fe520ed, 0x5b181395, 0xf82018b3, 0x18f55e18, 0x0644f72b, 0x010000ff, 0x0514fb00,
0x210082ff, 0x4619ff00, 0x8a2914bf, 0x64151bfb, 0xe6d8ffff, 0x21d38266, 0x3c491966, 0x21d58205, 0x0482f5ff, 0x820a0021, 0xf2ff23e4, 0xc28200c0,
0xff200684, 0xff231684, 0x823333f5, 0xccf229a8, 0xffff08cd, 0x0766e699, 0x19263f82, 0x2700ff9a, 0x6a829a19, 0x3333fc31, 0xb30400ff, 0xf9ffff34,
0x00ff66e6, 0x82cc4c02, 0xcdcc2109, 0x4c4f4283, 0xebf92505, 0xfdffff85, 0xfb272083, 0xffff5c4f, 0x45cc4cfb, 0xff23060e, 0x8200a0f6, 0xd0f02657,
0x0900ffa4, 0x25b08260, 0x08b89ef6, 0x98823bdb, 0xa0270d85, 0x0f00ff00, 0x828b5c2f, 0x4861211d, 0x08222284, 0x1d86dbdb, 0x4a453083, 0x84468306,
0x08654522, 0xff282d82, 0xff14cef0, 0x84ebffff, 0x260a066d, 0x54f7af0e, 0x82151cf7, 0x330d2736, 0x0a00ff34, 0x0483cdcc, 0x00ffcc23, 0x24df820d,
0x063cf708, 0x12a876f7, 0x09108618, 0x0514f724, 0x5c1844fb, 0xfa6c0c0d, 0x18fc200a, 0x27087f5d, 0x717d1500, 0x80eaffff, 0x1a24bc82, 0x088b8f82,
0x1a6f4b19, 0x3c206e82, 0xf2205082, 0x2105aa51, 0x8e823333, 0x5e34b321, 0x08230513, 0x45ccf7cb, 0xff2a0b68, 0x98193801, 0x3b15bbfb, 0x4b4605db,
0xffff2509, 0x8ba4d0f0, 0x24056646, 0x00a0f6ff, 0x240a8908, 0x010000ff, 0x411f8448, 0xff290a5b, 0xa6f02700, 0xf0d8ffff, 0x2b4482a4, 0x0666e691,
0x00ff075b, 0x069a196e, 0xf8211382, 0x82048452, 0x3afb2718, 0xfbffffe0, 0xb4417a54, 0xe6f92206, 0x20628268, 0x057247f9, 0xff2d0682, 0x10580200,
0xebf9ffff, 0x0400ff86, 0x222a83af, 0x87085c4f, 0x18b24164, 0x82385421, 0xb85e2122, 0xe26edc82, 0x82cc2006, 0x6666250f, 0x14f80e08, 0x211b5146,
0x7b820080, 0x656eea20, 0x84fb210d, 0xae20b582, 0x0023b588, 0x41ae0727, 0x5f470a13, 0x076a4712, 0x0f00ff29, 0xffff5c2f, 0x82b8feff, 0x4861267b,
0xa0f6ffff, 0x0d6f4200, 0x83068d42, 0x241d8218, 0x3b08b89e, 0x855a863b, 0x096e4112, 0x54820020, 0xffff082a, 0xffe03afb, 0x86ab0400, 0x23052b41,
0x98190600, 0x06237f82, 0x85083433, 0x052b4106, 0x14060023, 0x052b417a, 0xb0040029, 0x00ff08a4, 0x82aa1127, 0x25b68404, 0x0666e651, 0xc01814fb,
0xea8409fb, 0x08ef4118, 0x241a3b42, 0xffff07c4, 0x243c8280, 0x66edffff, 0xd14f1866, 0xdcfb2411, 0x181534fb, 0x220bae91, 0x184cf5ff, 0x61078876,
0x0a200707, 0x0d6d2f19, 0xbb06f325, 0x47062307, 0xab3212e4, 0xfb1594fb, 0x074b0654, 0xcb0654f7, 0x14f74b07, 0x0b438b15, 0x20cf8b51, 0x21cf8467,
0x7f59ff33, 0xcff2470a, 0xc4fb9423, 0x26e58215, 0xff00a0fb, 0x8760fcff, 0x480e8204, 0xd6580629, 0x05d55713, 0x00212c82, 0x85368203, 0x60042204,
0x06f44800, 0xff200882, 0x4f831384, 0x08285a85, 0xf78b077b, 0x072b155c, 0x20084548, 0x1b4718e0, 0x74fb210c, 0x20177347, 0x263282eb, 0x66e60800,
0x470700ff, 0xf7200d75, 0x18833282, 0x19828b20, 0xff9a1922, 0x0aed4718, 0x238de746, 0x15d354fb, 0x2706f049, 0x48a10300, 0x61fcffff, 0x2115224a,
0xf0490300, 0x05544a0b, 0x66fcff22, 0x2006735b, 0x12bb49ff, 0x4afcff21, 0x93220a54, 0x0b4a1543, 0x0a865a0d, 0x8205af41, 0x214f864a, 0x724a9a99,
0x13ea5a14, 0x3b82b386, 0x2d05f05b, 0x807d00ff, 0x63ffff00, 0xff153433, 0x4882f9ff, 0x9901002f, 0xffff0598, 0x923333e9, 0x800000ff, 0x21b88200,
0x09829a19, 0xffcdcc22, 0x08248183, 0x600100ff, 0x07271482, 0x00ffe0cf, 0x820a370f, 0x30e8250e, 0xae0d00ff, 0xfd373e82, 0xff08f0e7, 0x10980500,
0x27ffffff, 0x0600fffc, 0xffffd122, 0x822408fe, 0x29dc2613, 0xf7fdffff, 0x2c1e82d0, 0xffd7630a, 0xf067fcff, 0x700b00ff, 0x201982a4, 0x273d8288,
0xffb89e03, 0xea660a00, 0x03211e82, 0x205c82a0, 0x2319820a, 0xe77bfaff, 0xa8822382, 0x8ff5ff23, 0x267b829e, 0xff0848a1, 0x82c7f8ff, 0x7b022638,
0xfaffffe8, 0x201e821b, 0x216b8301, 0x9a828cfa, 0xeb310122, 0x06243d82, 0x8b07d1a2, 0x07253582, 0xf7ffffae, 0x2810820c, 0xff52f808, 0xf8f3f4ff,
0x833b828b, 0x24168506, 0xf007f7ff, 0x2117828b, 0x168210f8, 0x0c02fa23, 0x2cef8207, 0xffff7b94, 0xff2831fb, 0x3333f0ff, 0x06644b7d, 0x9819eb22,
0xf8202082, 0xd5276483, 0x00fff628, 0x82949828, 0x0a172635, 0x541100ff, 0x2282827b, 0x8208f6e8, 0xdfcf21c1, 0x4f26e582, 0x00ff05e0, 0x7783471d,
0x8200a021, 0x1f8526ff, 0x2ffdffff, 0x2109825c, 0x2986b81e, 0x83feff21, 0x30f82219, 0x21638220, 0x3382f6c8, 0xffe00f24, 0x3282f2ff, 0x20020023,
0x2c678200, 0xffdf0ff9, 0xf0070100, 0x20f7ffff, 0x83f082c5, 0x26f82728, 0x0200ff66, 0x1e82e0cf, 0x8287fb21, 0xa00128fa, 0xffff0500, 0x820a97f5,
0x2096831f, 0x20b683f4, 0x210983fa, 0x6c824ffc, 0x8e97f522, 0xfc222982, 0x2386f853, 0x82730521, 0x91f42709, 0x0a00ffec, 0xd482436b, 0x085c4f27,
0x440400ff, 0x207c8219, 0x23488280, 0x0cc20700, 0x3626a682, 0x0800ff04, 0x09823c9f, 0x82f23221, 0x14ae2109, 0x13211e82, 0x294882f8, 0x072e3df9,
0xf4ffff8b, 0x168252f8, 0x4a82f320, 0xae07f728, 0x0c0b00ff, 0x46828b08, 0x16850683, 0xf8080024, 0x17828b10, 0x82f00721, 0x41062816, 0x00ff0706,
0x82295c16, 0x02cb2b68, 0xd90f00ff, 0x0d00ff9a, 0xb082acbc, 0xffb89e26, 0x66e61400, 0x072c2482, 0x00ff7473, 0xffe6502b, 0x0180d6ff, 0x37052756,
0x33b3e9ff, 0x4c0600ff, 0xfb0e08ce, 0xf744f730, 0x065b1564, 0x06bb076b, 0x4c186282, 0xbb4b0802, 0xf8ff2311, 0x304466e6, 0x19f72706, 0xdb088b9a,
0x454e84f7, 0x00ff2681, 0xff008044, 0x200482ff, 0x26db8215, 0xffff4861, 0x7300c0f4, 0x8b290ab3, 0xdef5ffff, 0xf9ffffb8, 0x302582c0, 0x0890c2f9,
0x1ee2ffff, 0xa9056db8, 0xf8e1ffff, 0x82289d52, 0x214e8249, 0x9073b89e, 0x224d820a, 0x858b00c0, 0x06002d4e, 0x6d080040, 0x191e00ff, 0x6d6d059a,
0x08a14918, 0xf5276883, 0xffffddc4, 0x88e8fbff, 0x821a2028, 0xbaf42277, 0x21a282e1, 0x2984ca50, 0x74ff0021, 0x0a830a2b, 0x3d270f82, 0x00ff0870,
0x829a191d, 0x831e2052, 0xb3c52774, 0x3b00ff33, 0x30829042, 0x3333ed27, 0x0000ff06, 0x23558201, 0x0570fdcf, 0x24160a46, 0xfeefffff, 0x20268201,
0x21328302, 0xa88320f7, 0x82e0f821, 0x83072069, 0x0800260a, 0xf70800e0, 0x17134634, 0x5f82db20, 0x09b7ab18, 0x61e3ff23, 0x23648248, 0x08b89edc,
0xe7200682, 0xf222d383, 0xf37d4861, 0x1eec2706, 0xf5ffffb8, 0xad82b81e, 0x00802128, 0x7adeffff, 0xb88205e2, 0x8448e121, 0x220a8204, 0x82523806,
0x230483ce, 0x8b32330a, 0x20080a82, 0xffff3433, 0x08ccccf9, 0x01ffaf0e, 0xff34b324, 0x34b36900, 0xff888815, 0xcc4cfeff, 0xe6fbffff, 0x2e648266,
0x0832b3fb, 0xb3c1ffff, 0x00ff0734, 0x820a573e, 0x4304228e, 0x2d3c8296, 0xff041604, 0xf8b30100, 0x0300ff8e, 0x73822406, 0x64e69c28, 0xff0532f7,
0x8682bcff, 0xe1430023, 0x3d0a8248, 0xff74fd61, 0xd01763ff, 0x1301ff05, 0x00ffcccc, 0x1566e6ae, 0x19e0ffff, 0x1f00ff98, 0x208266e6, 0x0020f62b,
0xefffff95, 0x818b00e0, 0x20658281, 0x82d083e4, 0x82ab8204, 0x824a8440, 0x401b240a, 0x8200ff00, 0x270a8204, 0xff20050a, 0xe2fa0900, 0x10237f82,
0x82819a19, 0x66e6250b, 0xc7feff08, 0x0023ee82, 0x426666a7, 0x8b220bf7, 0x6b8254fc, 0x14eeef2b, 0x490000ff, 0xf1ffff02, 0x2cdf8273, 0xffe61209,
0x70bdf8ff, 0x850e00ff, 0x3ac74f60, 0xffff4222, 0x2207c74f, 0x4fffff58, 0x732261c7, 0xad828b33, 0xcd8cf322, 0x4f175348, 0x662119c7, 0x09c74f67,
0xff1d3a22, 0x2106c74f, 0xc74f7d7f, 0x00ff2970, 0xffb8de01, 0x9859fcff, 0xb3268482, 0xfdffff33, 0x09829a99, 0xffcdcc2d, 0x34b3ffff, 0x4400ff08,
0x830766e6, 0xe48521c7, 0x662b1682, 0x0800ffea, 0x00ff502d, 0x828a0c06, 0x8e022104, 0x762d2082, 0x00ff8c8c, 0x053eca75, 0x802e00ff, 0xf7441800,
0x5a4e4e11, 0x6d839b20, 0x2112be4b, 0xb04bfb6b, 0x00ff2d73, 0xff9a1940, 0x66e627ff, 0xfcffff15, 0x088f9018, 0x68e6f922, 0x23052b4d, 0xccccf9ff,
0x22052350, 0x4eff8bcc, 0x0238054d, 0xffff1058, 0xff5c4ffb, 0xe0af0400, 0xd8ffff08, 0x00ff52f8, 0x05aa1127, 0x4c057550, 0x925006b6, 0x00402106,
0x8205dd4c, 0x09ac6c27, 0x29067b6c, 0x0800400d, 0x196600ff, 0xd84e079a, 0xa0f6210c, 0x04843382, 0x2710c74d, 0xffb89ef6, 0x00600900, 0x5505364f,
0x74500ea1, 0x50ff200c, 0x404e0a92, 0x7a54260a, 0x97f6ffff, 0x06327d0a, 0xccf5ff37, 0xf7ffffce, 0x0e080080, 0x01ff3cf7, 0x15904265, 0x193500ff,
0x2704829a, 0xff057a14, 0x99191c00, 0x1e270482, 0x2d00fffa, 0x828b9999, 0x231a820a, 0x06e1e3ff, 0x9727b582, 0xffff6666, 0x835c8f68, 0x34332625,
0xe6e3ffff, 0x22548267, 0x826766d2, 0xcccc210a, 0xe6210482, 0x2cf28266, 0xff9a9941, 0x008041ff, 0xdaffff05, 0x28d58280, 0xfffe7fda, 0x3433c3ff,
0x230f858b, 0x02802500, 0x8a252582, 0x00ffad87, 0x22258575, 0x82ffcb81, 0x82002015, 0x823c206c, 0x25002346, 0x0f84357e, 0x5c237182, 0x82e8ec11,
0xabae2747, 0x5000ff85, 0x88715278, 0x9042210e, 0x2206be78, 0x827c7f0c, 0x0557712c, 0xb9827e20, 0x0940b019, 0x81f3ff22, 0x5127b983, 0xffffb95e,
0x82cca1ae, 0xe1a32d40, 0x49ffff47, 0xff150a57, 0x5ccffbff, 0x72820482, 0x35fdff29, 0xffff86c2, 0x82b89efe, 0x00802b0f, 0x3f01ff08, 0xff06162e,
0xf0822a00, 0x66290023, 0x29f08267, 0xff9a1903, 0x33330300, 0x7a5a908b, 0x820b8305, 0x826820c6, 0x970023ec, 0x5882d763, 0x4882fc20, 0x1e030024,
0xe88286b8, 0xff230b83, 0x8248e1fc, 0x00cb2721, 0xcaffff01, 0x4382f6e8, 0xcd4c3127, 0x99ceffff, 0x0652719a, 0x72143771, 0x3b821c8c, 0x3100ff24,
0xc687ce4c, 0x66e6a330, 0xffaf0e05, 0xb85e2900, 0xa0b601ff, 0xd77115c4, 0x410c2006, 0xef411e04, 0x078b2ec3, 0x07b000ff, 0x22ffffae, 0xff15a2c5,
0x131a41ff, 0x2216e141, 0x419a99fa, 0x2a220de1, 0xe141cd4c, 0x8b8b2185, 0xe6318782, 0xffff9a99, 0x159a9926, 0x1900ff8b, 0x00ff3433, 0x26108220,
0x66663600, 0x831200ff, 0x191d2109, 0x0026be82, 0xff981906, 0x14830900, 0x68660d22, 0x0f832982, 0x83f6ff21, 0x242582d9, 0xe2ffff9c, 0x2e2f82e6,
0xff989920, 0x9a99c9ff, 0xe6ffff8b, 0x1808cccc, 0x2218c940, 0x8234b3dc, 0x07fb651b, 0x2906476b, 0xff0e068b, 0x9a190001, 0xb5185ef7, 0xee710c91,
0x00ff280a, 0xff002001, 0x82c0b7ff, 0xc0f62c04, 0xbaffff42, 0xffff9a59, 0x82be5fec, 0x66663a09, 0xfcffff08, 0xffff3373, 0xffce4cf5, 0x67e60400,
0x4cebffff, 0x1400ffcc, 0x05d956e6, 0x82008021, 0x9e092d67, 0x0600ffb8, 0xff8e00e0, 0x00a00a00, 0x07975318, 0x82de2f21, 0x83102015, 0x874d25eb,
0xffffffae, 0x6320e583, 0xff28f583, 0xffe2faff, 0x34330d00, 0x2407b371, 0xffffcccc, 0x82bc82f2, 0x19ff276b, 0x5100ff99, 0xac8234b3, 0x6c82c120,
0x33000026, 0xd6ffff32, 0xff271482, 0xffcdccd0, 0x82e60000, 0xe6c92280, 0x20638267, 0x21af8300, 0xf25b21d0, 0xff5b2405, 0x8261f6ff, 0x5ed1220a,
0x214482b8, 0xca8240fd, 0x66e6f325, 0x830800ff, 0x7af221c5, 0x0c246e82, 0xfffffafe, 0x39821882, 0x82190c21, 0x60fd22df, 0x21838200, 0x23821e85,
0x00212d82, 0x224d8202, 0x82fe0c00, 0x0a00223d, 0x21b7825e, 0x04821e32, 0x14830420, 0x3d823320, 0x83ffff21, 0x80322123, 0xff2ddb82, 0xff299cff,
0x32f31a00, 0x661300ff, 0x05c47067, 0x82230021, 0xffff23db, 0x5c82cdcc, 0x3d821f20, 0x80ffff22, 0x19205c82, 0xff21ff82, 0x22a082e7, 0x82610000,
0xdee1229a, 0x211e82b9, 0x8682df00, 0x9a82d020, 0x60fcff27, 0xceffff06, 0x208a82d9, 0x222382f8, 0x83c0d0ff, 0xe0fd215c, 0xdf25b988, 0xf2ffffbe,
0x21b982ba, 0x32821e0d, 0x1e83fd20, 0x83130021, 0x83fc2052, 0xe1062595, 0x1200ff48, 0x00226b82, 0x6b82c000, 0x5c82a982, 0xbe3f0825, 0x823100ff,
0x03002bdd, 0xffbffade, 0x4821ffff, 0x068208bd, 0xff7c142b, 0x98d93800, 0xffffb95c, 0x230e82c6, 0xcecc0000, 0x91201682, 0x1331be83, 0xff15cccc,
0x9999f5ff, 0x660800ff, 0xffff7c66, 0x21ba82fe, 0x0483f7ff, 0x34b3f522, 0xe6252582, 0xffffcd8c, 0x260f83e0, 0xff4721f2, 0x8219d8ff, 0x9e002129,
0xd7224982, 0x72826766, 0x829f0021, 0x83da209c, 0x00fd26df, 0xdaffff06, 0x2cbf8240, 0xff4160f9, 0x1e45dbff, 0xfdffff08, 0x20cf88a0, 0x2c90829f,
0xff9a99f2, 0x42000d00, 0xa1fdffff, 0x213d8248, 0x48821e14, 0x0080fc23, 0x23cb8592, 0xe1faffff, 0x25079149, 0xffbf1f07, 0xef822700, 0x60030026,
0x2800ff42, 0xff21e582, 0x22df83ff, 0x82aec728, 0x82002039, 0x1d003391, 0x00ffcdcc, 0xa79a9909, 0xe61100ff, 0x1700ff67, 0x1a820100, 0xcc4c0927,
0x660a00ff, 0x20cb8466, 0x21dc829a, 0xdc8434b3, 0x6c201a82, 0x3e223583, 0xf282285c, 0x0a83f120, 0xba5e0025, 0x82f0ffff, 0x05d35e09, 0xdc82f120,
0x61fcff23, 0x22b88246, 0x824821f3, 0x68e629a4, 0xff8e7e83, 0xe03af2ff, 0x03213c82, 0x82cb8320, 0x0b002217, 0x245682f9, 0x98b81ef8, 0x2b16828e,
0xff51f80b, 0xc4750200, 0x4c0b00ff, 0x01208e82, 0x0b277d83, 0xffff33b3, 0x8266e6ff, 0x5e4b221e, 0x2a8882b8, 0x00ff00e0, 0xffe23a3e, 0x82a0c3ff,
0x21238309, 0x1e84b6ff, 0xff21c783, 0x215482da, 0x5e83feff, 0x1ec5da2c, 0xc0fbffff, 0xd9ffff42, 0x86820080, 0x9b83fe20, 0x48e1f222, 0x7f28e682,
0xf5ffffbe, 0x00ff1e05, 0x21050f42, 0x5c829a99, 0x82c01021, 0xe6fe2592, 0x0800ff66, 0x00240982, 0x8c52f80c, 0x40202982, 0x00213982, 0x20688304,
0x23158327, 0xb3beff01, 0x60208d82, 0x27227882, 0x548332f3, 0xff164e29, 0x18ae6200, 0x82acffff, 0x5100275e, 0xff25f4a8, 0x6f820100, 0xff91f727,
0x3e8a86ff, 0x06da5b15, 0x82190c21, 0x5df322e6, 0x23528270, 0xffff6626, 0xff238683, 0x824821fd, 0x82f32041, 0xfdff2172, 0xf621b083, 0x20d482fa,
0x220982f3, 0x82de0200, 0x83f320e8, 0x0400211e, 0x9f587682, 0x20002305, 0xf17a7b00, 0xe7ff2205, 0x213983e1, 0xfb75e0ff, 0x00ff2405, 0x82fa9f0a,
0x22f982d0, 0x82400d00, 0xdeff22c5, 0x24d082b8, 0x8bb81e0d, 0x241b8296, 0x00ffb89e, 0x821b8600, 0x21002716, 0x1600ff46, 0x14823d0a, 0xa1343323,
0x059568ff, 0x33331c29, 0x00ff6208, 0x8234b35a, 0x82cf20b0, 0x45002243, 0x2c82825e, 0xff9a59b0, 0x7a542a00, 0x19abffff, 0x27d78299, 0xff083433,
0x8f42baff, 0xe0203b82, 0xbf2b6782, 0xffff3e8a, 0x5bf648e6, 0x84cfffff, 0xa1d13791, 0xd1ffff48, 0xffff46a1, 0xffae07e7, 0xba5ec2ff, 0xbeffff8c,
0x35826666, 0x3083ff20, 0x0080ea23, 0x263b8205, 0xfffff97f, 0x82f6a8f2, 0x0760239b, 0xb386ff80, 0x839a9921, 0x21be849c, 0x248266e6, 0x8b004022,
0x65440585, 0x220c8205, 0x821f850b, 0x23978332, 0x98e17aff, 0x00271682, 0x00ff0020, 0x83b89e17, 0x82252053, 0x8234261b, 0x1300ff90, 0x21ef82de,
0x42826631, 0x67262527, 0x192500ff, 0x2629829a, 0xffb9de26, 0x82c02600, 0x8034212e, 0x14200482, 0x38272383, 0xffff7b54, 0x820040ff, 0x20ec841e,
0x207683ff, 0x2cec8341, 0xffe27adc, 0x68e62700, 0x3fc7ffff, 0x221e82fe, 0x41be9f07, 0x0e25065e, 0xffff42e0, 0x218282fd, 0x42830a00, 0x83a00721,
0x820a203d, 0x070026eb, 0x00ffceac, 0x205c8303, 0x064d4a0e, 0xe627ab82, 0xaf0e0866, 0x82b400ff, 0x32012416, 0x82150080, 0x33332655, 0x3400ffac,
0x209982e6, 0x2115821c, 0xd55c3f00, 0x83068305, 0xff662316, 0x1683e3ff, 0x3433272e, 0x6ab2086a, 0xcc1b00ff, 0xd9ffffcc, 0x0e22cd83, 0x1c829c19,
0x82cdcc21, 0x8304208f, 0xccf63814, 0xff808bcd, 0x3433fbff, 0xccf6ffff, 0xffff08cc, 0xff64e6f1, 0x82b3e4ff, 0x83e4200f, 0x80d82414, 0x826a6400,
0xccd82816, 0xffff6acc, 0x859a19cb, 0xc0ff245b, 0x828b9a99, 0x83068316, 0xff992216, 0x24898300, 0xcdccd8ff, 0x231682ac, 0xffcdccef, 0x24059969,
0xff33b3f1, 0x20cc8400, 0x221383f3, 0x829a990e, 0x51a6221e, 0x2a3482eb, 0xff0532b3, 0x717df3ff, 0x83f8ffff, 0x26f0286e, 0xffff8d66, 0x82c9b6f5,
0x323321f2, 0xf5222582, 0x0a8373b6, 0xfd258982, 0x00ffe2d7, 0x26af820f, 0x9e2f0700, 0x830c00ff, 0x2d002844, 0x00ffb4c8, 0x829a1950, 0x37d22244,
0x220a874c, 0x8462d0f8, 0x00ff2420, 0x861e2802, 0x490a2234, 0x8248848d, 0x490a22f4, 0x825e8437, 0x9ad92119, 0x0c221582, 0x7e848f82, 0x59221a82,
0x948615ae, 0x330c0022, 0x9921b483, 0x20b9829a, 0x83c8824c, 0x100021be, 0x0d301383, 0x8b08cccc, 0x00ff058b, 0xff0080eb, 0x0080adff, 0xee203282,
0x085d6918, 0xec82ff20, 0xffff8b26, 0x08cd4cee, 0x163b5718, 0x0cf18618, 0x0ce15518, 0x33b31123, 0x183f82ff, 0x83076fc5, 0x0e082654, 0x74f74cf7,
0x204a8215, 0x201c83f2, 0x208a82f5, 0x820484ff, 0x088b230e, 0x0683ffff, 0x1184ff20, 0x0a3f9018, 0x00ff8b23, 0x8328820d, 0x82e88211, 0x820e8337,
0x8506842d, 0x85328311, 0xf7082354, 0x5f8a8b54, 0x4d85cc20, 0x2207f947, 0x8234b3f2, 0x4cf52226, 0x183684cc, 0x820d349e, 0x20aa825f, 0x205f850a,
0x7a5f85cc, 0x5f8b07ec, 0x186b1c21, 0x285c2958, 0x24fbd4fb, 0x0614f715, 0xfc7c18ff, 0x20b38215, 0x7ad11808, 0x82fb2012, 0xdd721830, 0x8b441815,
0xf36b2716, 0x2700ff15, 0x4f82cdcc, 0x33332023, 0xdaab18ff, 0x2011820a, 0x22618327, 0x84cdccdf, 0xffff2616, 0x8b3333d8, 0x21068508, 0x1683ffff,
0xcc200482, 0xd8235782, 0x85083433, 0x20288306, 0x201b8333, 0x255485cc, 0xf754f708, 0x32831524, 0x20823420, 0x4e85df20, 0x34203291, 0xcc203288,
0x8e826082, 0x89832282, 0x5b828e95, 0x82332021, 0x21768232, 0x0271088b, 0x00ff2560, 0x9b6666b0, 0x0fc05818, 0x1419cd20, 0xff221e1d, 0xd06b4cee,
0x75b32009, 0xcd200cbf, 0x2f057a43, 0x33b3f1ff, 0xb31100ff, 0xf7088b33, 0xff15cb34, 0xce223182, 0x1582ff8b, 0x04833220, 0xce203191, 0x31841683,
0x188b3221, 0xa00f8357, 0x80b3278d, 0x3effff00, 0xc6829a99, 0x66e61c22, 0x1b31bb82, 0xffff6866, 0xff3233fa, 0x66661800, 0xb3f5ffff, 0x22538234,
0x82cc4c0c, 0xcccc2914, 0xcc0d00ff, 0x0900ffce, 0xb3202384, 0x0c262382, 0xff083233, 0x2982efff, 0x33260026, 0xd8ffff34, 0x1b201e83, 0xff232882,
0x82cc4cd2, 0xd2ff238d, 0xbb826766, 0xcdccd826, 0x4ce4ffff, 0xef20a982, 0xd9214983, 0x213583b3, 0x3082b3fa, 0xceccf326, 0xf6ffff98, 0x0d214b83,
0x21c48233, 0x6f833305, 0x00217a83, 0x262a820a, 0xcd4c1b00, 0x820500ff, 0x83002029, 0x8b082b9e, 0xf80e058b, 0x8601ff8a, 0xb182b85e, 0x21831520,
0x00401529, 0x2400ff7c, 0x826d4861, 0x43fe296f, 0xff06866b, 0xb2fde1ff, 0x22087582, 0xffbefff0, 0xb89edbff, 0x401500ff, 0xeaffff83, 0xf70800c0,
0x056afb6a, 0xa14fffff, 0xffff0748, 0x605423cf, 0xeb2208e6, 0x2182f568, 0x08894818, 0x2411f17f, 0x8b04d608, 0x05155c08, 0xff210982, 0xf2d41800,
0xc19f180e, 0x90822108, 0x7d266e82, 0xe5ffff70, 0x9082707d, 0xe6d0ff2f, 0x00ff0666, 0x076666b0, 0x19d500ff, 0x2104829a, 0x818252f8, 0x0a829f20,
0xa1f9ff2a, 0xffff1548, 0x4b70fdbf, 0x55221182, 0x8d825ccf, 0x0000c02a, 0x01ff05cb, 0x0634332a, 0x62735c18, 0xb1fe2508, 0x00ffcccc, 0x155ccfc0,
0xeeffff95, 0xff05ec91, 0x33b30200, 0x28fbffff, 0x0100fff6, 0xffff0080, 0x8bae87fa, 0x6e280582, 0xffff0814, 0x079a99d6, 0xfc200c82, 0x0028ba82,
0xff9a9901, 0x3233fcff, 0xfd283086, 0xff08ce4c, 0xcd4c0600, 0x08408318, 0x40853320, 0x80050024, 0x1a829100, 0x99990d23, 0x2b5d829c, 0xff34b304,
0x66e60500, 0x330800ff, 0xcc212183, 0x203582ce, 0x223582cc, 0x829a99fc, 0x820f2025, 0xf8ff2350, 0x29826666, 0x68660327, 0x4cfeffff, 0x826082cc,
0xffff212e, 0x04237483, 0x828b32b3, 0x80062325, 0x36828b00, 0x6ace4c21, 0x00210572, 0x838b8204, 0x201a8204, 0x202b8203, 0x82048200, 0x84022040,
0x20df830a, 0x20c88304, 0x820e84ff, 0xfeff2229, 0x206a8319, 0x215a821d, 0x6a84f1ff, 0x94820720, 0xd584ff20, 0x24820420, 0x19f8ff23, 0x23e5829a,
0x086666f7, 0xf5200682, 0xf8203b83, 0xf6201683, 0xef52ab82, 0x80fd3105, 0xffff0800, 0xff9899dc, 0x9819f7ff, 0xf8ffff05, 0x33215684, 0x83098234,
0x71002094, 0xe482053a, 0x68660228, 0x00ff6b08, 0x2583990a, 0x9999fd25, 0x820100ff, 0xfcff21c7, 0x002b5482, 0xff9a9900, 0x9a99fcff, 0x8284088b,
0x4cf82267, 0x062f54cd, 0x3d83fb20, 0x20056471, 0x222283d8, 0x820080e2, 0x84f52062, 0x66662499, 0x83faffff, 0x33f42241, 0x20348234, 0x20a382f3,
0x1753616f, 0x0dff7d18, 0xd718ff20, 0x5b2009d0, 0x072c4a18, 0x830e0021, 0x0b2e196a, 0x830a200b, 0x090021fa, 0x042c9e83, 0xff9134b3, 0x98190800,
0x1900ff08, 0x00248782, 0x059a1922, 0x4c251082, 0x00ff97cc, 0x20218304, 0x24bb820c, 0xcc0d00ff, 0x05664acc, 0x00215582, 0x21a58203, 0x2d830200,
0x6866032c, 0xcc0300ff, 0x0000ffcc, 0x208266e6, 0xce4c0522, 0x4c21fc82, 0x234282cc, 0x8e66e60b, 0xcb824882, 0xb30a0022, 0x0026c682, 0x08cc4c0c,
0xfe82938b, 0x1c423320, 0x90862505, 0xdeffff08, 0x21226283, 0xfb820180, 0x2a83fb20, 0x99990426, 0x0500ff8b, 0x0021fc82, 0x21608404, 0x568333b3,
0x8232b321, 0x33b32114, 0x8d254f84, 0xb30700ff, 0x21478234, 0x1a826766, 0x2a820e20, 0x4cfbff23, 0x827182cd, 0xffff2260, 0x208c83fc, 0x824a840d,
0x05002224, 0x229082cc, 0x8299990b, 0x80032329, 0x3a839200, 0x03204a82, 0x06204a83, 0xff231a82, 0x820080fe, 0x4c1c271a, 0xfaffffcc, 0x85820080,
0x3583e620, 0x04825720, 0x83b0ff21, 0x82402044, 0xa0ff2104, 0x28053278, 0x8bcd4ce4, 0xcce4ffff, 0x822b82cd, 0xe8ff219b, 0xff234582, 0x44c235f6,
0x601805ae, 0xfe336039, 0xffc2b539, 0x66e63f00, 0x0900ff15, 0xffff295c, 0x8234b3ee, 0x4a082ff5, 0xf1ffff3e, 0x00ff0080, 0xff48a10d, 0xca82f5ff,
0x1c100022, 0xfb221e82, 0xda826766, 0x01003925, 0x83efffff, 0x120026da, 0xffff9919, 0x210482fb, 0xc3830b00, 0xce4cf022, 0xee31ce82, 0xff089819,
0x9a19d8ff, 0xff808b07, 0x33330600, 0x225d8281, 0x8287cdcc, 0x8309203a, 0x33fa2225, 0x24168534, 0x6408808b, 0x32308207, 0xff6666f0, 0x66e60e00,
0xccf4ffff, 0x00ff9acc, 0x82ce4c04, 0x8310202b, 0x99042126, 0x0c200f82, 0x0d221f83, 0x198232b3, 0x0e821920, 0x66660f22, 0x02261e82, 0x00ffcccc,
0xaf83330b, 0x29830420, 0x66e61023, 0x83458296, 0x830f20b5, 0xb3082225, 0x22258234, 0x82981908, 0x9a992635, 0x00ff9a05, 0x201b8308, 0x282b8309,
0x8b66e60f, 0x4c1100ff, 0x212183cc, 0x83823433, 0x820c0021, 0xfaff214e, 0x00258382, 0x8234330c, 0x20c08294, 0x2b2983fc, 0x05cccc03, 0xffff9482,
0x9132b3f3, 0xdf820582, 0x065f0838, 0xccf5ffff, 0x8d808bcc, 0x4cf6ffff, 0x0500ffcd, 0xff080080, 0x5d83ddff, 0xcdcc1336, 0xfbffff05, 0x00ff33b3,
0xff676602, 0x34b3fcff, 0xfeffff8f, 0x20051643, 0x20258233, 0x236682fc, 0x99990900, 0x3a839482, 0x67660a23, 0x230a8294, 0x91089999, 0xe6253182,
0x00ff0566, 0x25f18306, 0xffce4c03, 0x26830700, 0x0e830020, 0x8a820620, 0x99fdff23, 0x27ae8298, 0xff991918, 0xce4cf8ff, 0x08202982, 0xff23e682,
0x82cc4cfd, 0xffff24d9, 0x820300ff, 0x0400230e, 0x3882cecc, 0x829a1921, 0xb3042229, 0x820a8432, 0x207f831b, 0x21288209, 0x4d84faff, 0xf220af84,
0x002e9f82, 0x05343310, 0x00ff9781, 0xff991900, 0x26831100, 0x6a820a20, 0xcc0b0023, 0x204082cc, 0x2240830f, 0x83486112, 0x2f56836a, 0xff1e450a,
0x66660100, 0xb00e00ff, 0xf9ffffa4, 0x00235082, 0x8272bd0b, 0x83fd20d5, 0x28042256, 0x20fb84f4, 0x244e8234, 0xffff862b, 0x252983fd, 0xff0a1700,
0xec42fcff, 0x19a32605, 0xffff8b9a, 0x213682b1, 0xab82c3ff, 0x4fe5ff26, 0xacffff5c, 0x8b306a82, 0x01ff058b, 0xffd8e37b, 0x9a992500, 0xe6ffff15,
0x82063f48, 0x83f0204e, 0x82f9202d, 0x05517688, 0x6883ee20, 0x13830520, 0x66e6ef22, 0x1027a282, 0xffff66e6, 0x82cd4ccd, 0x820320a2, 0x060852bd,
0xf8200983, 0x00216182, 0x202e820a, 0x056146ff, 0xd7821d20, 0xccf8ff23, 0x2e2982cc, 0x94323301, 0x990000ff, 0x0900ff9a, 0x828b3433, 0xcc4c2205,
0x25068208, 0xffcdcc24, 0x7b82f6ff, 0x99220026, 0xefffff99, 0x00253182, 0x089a191e, 0x6450478b, 0x14ae3332, 0xe6d8ffff, 0x00ff1566, 0xffe2ba1f,
0x9a99f9ff, 0x0725ab82, 0xffff29dc, 0x259383fe, 0xffd82308, 0xda820200, 0xb0050028, 0x0500ffa4, 0xff8234b3, 0x67660f27, 0x660f00ff, 0x20298266,
0x201a830b, 0x2d29830c, 0x879a9913, 0x4c0700ff, 0xf1ffffcc, 0x2582ce4c, 0x824c0921, 0x80ed22d8, 0x22258200, 0x8667e603, 0xb30a27e3, 0xfaffff33,
0xae4ccccc, 0x20258205, 0x05a87a0f, 0x002a2082, 0xff34b30d, 0x9999fbff, 0x814e00ff, 0x19fa2605, 0x1300ff9a, 0x216682e6, 0x4b82fbff, 0xff227183,
0x1f830b00, 0x75830f20, 0x9a191023, 0x2240828b, 0x18cd4c02, 0x2008ed49, 0x2088830d, 0x21628206, 0x09830700, 0x9a190b22, 0x0a202082, 0x00235682,
0x82991910, 0x99052187, 0x08205182, 0xff23bd82, 0x8232b3ff, 0x9919214b, 0x21061d6b, 0xd7823308, 0xe6efff26, 0x1500ff68, 0xff21b183, 0x231f83f5,
0x9232b30d, 0xcc248182, 0x1000ffce, 0x04294483, 0x9c083233, 0x190500ff, 0x264b829a, 0x8c008007, 0x830600ff, 0x4c0521a3, 0x02222182, 0xfe8266e6,
0x2c822182, 0xffcc4c27, 0xf6e82800, 0x066f6a05, 0xec910725, 0x83e8ffff, 0x1e043046, 0xe6ffffb8, 0x088b66e6, 0xff8b06fb, 0x82ffa1ff, 0x82a22000,
0xffff220e, 0x82ab828d, 0x83f22011, 0x280225a1, 0xf2fffff6, 0x023e4f83, 0xffff856b, 0x086666f3, 0xff058b8b, 0x52b88e01, 0xb3faffff, 0xffff1534,
0xff3433f0, 0xaa84fbff, 0x6d82f920, 0x33feff24, 0xcd61ff32, 0x82022005, 0xfcff21a9, 0x05279183, 0x8908cccc, 0x820300ff, 0xff8528ae, 0x66660900,
0x83f5ffff, 0x8206205e, 0xf4ff2104, 0x2005e65b, 0x207c84f4, 0x203383f4, 0x232083f9, 0xffccccfa, 0x21054a57, 0x8082f9ff, 0x84f6ff21, 0x83fe2062,
0x82fd2031, 0xfeff21c0, 0x0482ef82, 0x6cff9821, 0xff290539, 0xff089a99, 0x66e6daff, 0x20eb8276, 0x473b83ee, 0x2f8305f8, 0x5482e920, 0x83070021,
0x82ed2009, 0x00ff22db, 0x265f8306, 0x059a99f3, 0x830800ff, 0x82ec2015, 0x1600212e, 0xf6204f83, 0x12202983, 0x00216e82, 0x82ea8207, 0x232982b1,
0xcccc0100, 0x0a202982, 0x00211f82, 0x201a8302, 0x22e1830b, 0x826866fe, 0x22ad843d, 0x490832b3, 0xff2305b2, 0x8266e6fe, 0x33252a29, 0x1d00ff34,
0x00ff0080, 0x212e831a, 0x2982e629, 0xcc4c0a34, 0x193000ff, 0xff880898, 0xce4c0000, 0xffffff88, 0x0583cccc, 0x08343327, 0xfeff068b, 0x254983d9,
0x1566e6bc, 0x958483ab, 0xd6829920, 0x08219583, 0x05da4bb3, 0x0200ff22, 0xae827f83, 0x02216b82, 0x84148233, 0xccfa22b9, 0x238583cd, 0xf7ffff32,
0x2382a983, 0x936b0823, 0x200d8305, 0x82318267, 0xf7ff2387, 0xe642cd4c, 0xfdff2105, 0x26838c82, 0x5a830820, 0x31841482, 0x4a820520, 0xce202382,
0x82060941, 0x8b082523, 0x5000ff07, 0x27234d83, 0x9e156666, 0x8536872b, 0xff3223aa, 0x73820500, 0x9321aa89, 0x20cc82ab, 0x86128302, 0x8fcc20ad,
0x21aa9ead, 0x40826b83, 0x40835520, 0xce4ccf30, 0x056b7b15, 0xf8ffff87, 0x00ff9819, 0xf3823303, 0xce4cf625, 0x830700ff, 0x19fc23d6, 0x0a83089a,
0xff876825, 0x82b30900, 0x491f8387, 0x1f820554, 0xab9b0824, 0x1e848f05, 0xfcffff23, 0x833382cc, 0x20478222, 0x2247829a, 0x840866e6, 0xff8f2252,
0x844e83ff, 0x82ff201f, 0x2314834e, 0x078b089a, 0x3f610c4f, 0xcc4c8f01, 0xffff1523, 0x0634b3c8, 0x06930763, 0xcc1700ff, 0x00ff8bcc, 0xff34b313,
0xcc4c1100, 0x22060d4a, 0x8234b316, 0xb3d025a9, 0x8315c334, 0xff252782, 0xcc4c3700, 0x20cf8206, 0x82258233, 0xffff221b, 0x832a83ec, 0xe8ff2b2f,
0x088b3433, 0xb3156373, 0x29824b07, 0x8b06cb23, 0x270a8853, 0x15eb24fb, 0x06cb0763, 0x16821a83, 0x7b210a87, 0x2021829b, 0x234e8283, 0x8b3333e8,
0xcd234a83, 0x82eeffff, 0xfcff297f, 0xffff3333, 0x08cc4ce9, 0xcd206f83, 0xaa834985, 0xa6823320, 0x82cc0321, 0x831b8225, 0x832582aa, 0x22ba822f,
0x83088bcd, 0x660824c3, 0x1874f766, 0x180de199, 0x4f0e2b6a, 0x681811b4, 0x824f0ed1, 0x34f7221e, 0x3242504b, 0x41291050, 0x003662f9, 0xffffcc4c,
0x153433b4, 0x99d0ffff, 0xffff8b9a, 0xff3433d3, 0x5c180600, 0x220808b0, 0x089a190c, 0xb3f3ffff, 0x0300ff33, 0xff7fcccc, 0xcc4cf5ff, 0xf4ffff90,
0xff083433, 0x67e61800, 0x82c4ffff, 0x3a00222b, 0x2546824c, 0xff9a99d6, 0xd65b4300, 0xe6433105, 0x00ff8b68, 0xff32333a, 0x66662900, 0x3b00ffa4,
0x90234882, 0x830b00ff, 0x0a002344, 0x548334b3, 0xfc200482, 0xff214883, 0x203e83d8, 0x284882f3, 0xce4cd3ff, 0x19f9ffff, 0x278e839a, 0x8b088b98,
0xb0ffff06, 0x00230d82, 0x10cccc9b, 0xc201ca01, 0x34b3af25, 0x41cb00ff, 0xe3220fca, 0x915ecc4c, 0x05985e05, 0x00ff3328, 0xffcd4c0e, 0x0482e3ff,
0x20054a53, 0x850684ff, 0x1c002916, 0xff8b33b3, 0xcd4c2300, 0x06822d82, 0xffffcc24, 0x3282b3f1, 0x5a821c20, 0x4ceeff29, 0xf7088bcd, 0x7f14fb34,
0x32930daa, 0x32868882, 0x9d18cc20, 0x8e930e77, 0x8e866582, 0x9d543420, 0x43012063, 0xe237a296, 0x00ff3433, 0x15323364, 0x4c0300ff, 0x0100ffcd,
0x00ff9a19, 0x82333302, 0x9a19220e, 0x2205828b, 0x82086666, 0xe6112506, 0xf9ffff66, 0x2b05ca41, 0xf6ffff34, 0x00ff9919, 0x0832330d, 0x33250a82,
0xffff9834, 0x211f82f1, 0x4b820a00, 0x4cf0ff21, 0x068305a3, 0xff231685, 0x84ccccf5, 0x837e2026, 0x2338822d, 0xceccf2ff, 0xff204c85, 0x2005c458,
0x05284aee, 0x8699fc21, 0xfcff217a, 0x8e834d83, 0xe6feff24, 0x84820866, 0x0a828f82, 0x09826720, 0x01202383, 0x00214482, 0x29048402, 0x8b08cdcc,
0x00ff058b, 0xc6823300, 0xcd4c0022, 0xbc820a84, 0x31830020, 0xaf83ff20, 0xd5821482, 0x00220e82, 0x4b826600, 0xccffff22, 0x0020e582, 0x01200483,
0x00209782, 0x0120ef84, 0x01203d83, 0x184c1e83, 0xe6022105, 0x80216a83, 0x206f8200, 0x204c82b3, 0x223d8304, 0x82999904, 0x83082089, 0x83062038,
0x830a201e, 0x8306207f, 0x20138219, 0x221a858b, 0x8300ff8b, 0xf9ff2116, 0x16822583, 0x1920e582, 0x04203583, 0xff222682, 0x548666fb, 0x83fcff21,
0x82022097, 0xfdff215e, 0x7e831e84, 0x99feff22, 0x0020fd82, 0xe882f882, 0xd0826620, 0xff237882, 0x823333ff, 0x21c18358, 0x1e84ffff, 0xff204783,
0xef821982, 0xffff3322, 0x1e83ca82, 0xff20bc82, 0x05221482, 0xfd828b8b, 0x96820220, 0x33fdff22, 0x0320b582, 0x34413182, 0x200e8306, 0x256a8201,
0x00ff078b, 0x67821997, 0xcdcc0223, 0x05094a15, 0x98212b87, 0x222b87ff, 0x8300ff34, 0x21fb822b, 0x0f42cc4c, 0x20148208, 0x120f4203, 0x11252082,
0xffff34b3, 0x425483f6, 0x9a21350f, 0x070f42ff, 0x42ffcc21, 0x5e82140f, 0x82060f42, 0x070f4220, 0xfe221482, 0xa38267e6, 0x84989921, 0x20cc85ae,
0x42d78200, 0x3221120f, 0x062f41ff, 0x82ce4c21, 0xcd4c2109, 0x33203182, 0x0f421383, 0x42148306, 0x3d822e0f, 0x82070f42, 0x060f423d, 0x00ff9a22,
0x20060f42, 0x050f42cc, 0xff8bcc25, 0x82190a00, 0x060f42e0, 0x0f42ce20, 0xff322109, 0x21300f42, 0x0f42ff34, 0x82cc2008, 0x050f420a, 0x0f421483,
0x42322005, 0x0e31130f, 0xd4f764f8, 0xe5ffff15, 0xff8b0080, 0x0080eaff, 0x2a9282a0, 0x0870fd19, 0x00ff908b, 0x82cccc01, 0x204526b1, 0xcc0200ff,
0x270982ce, 0xff08b8de, 0xcc4c0000, 0xb3210482, 0x21048234, 0x0482ce4c, 0x82c2b521, 0x66662104, 0xb8210482, 0x211e8252, 0x0a82e608, 0xe03a1425,
0x831100ff, 0xa6182380, 0xac54ff68, 0x930c2205, 0x271e82f6, 0xff323303, 0x00600400, 0x66204d82, 0x00231982, 0x4bff4200, 0xfb2c0561, 0x980800a0,
0xa1eeffff, 0x1c00ff8a, 0xff233982, 0x8248a1d7, 0x02ec2391, 0x0682088e, 0x5c4fea30, 0x19f1ffff, 0xedffff9a, 0xffff68e6, 0xcc82b3eb, 0x0080fa26,
0xfbffff08, 0xfe200f83, 0xff217482, 0x201483fb, 0x358982ff, 0x9a99fbff, 0x8b8b088b, 0xff64fb05, 0xecff7f00, 0x3300ff15, 0xd7826666, 0x26832f20,
0xaed9f025, 0x832800ff, 0xebe5224a, 0x07386184, 0xf6e8fc2c, 0x80feffff, 0xfcffff00, 0x0982d8e3, 0xff23de82, 0x8266e6fc, 0x83fc201e, 0xf5f72255,
0x221982c2, 0x82803433, 0x8ff4228a, 0x2591835c, 0xff2a9cd3, 0xa8832400, 0x7282dd20, 0x5e2b0021, 0x092005e9, 0xef827982, 0x0120e483, 0x00214382,
0x23208208, 0x98190300, 0x0d25f982, 0xffffce4c, 0x507782e1, 0xdd22052f, 0x4c8267e6, 0x3333dc22, 0x74184c83, 0xff2442b1, 0x07ecffff, 0x23059d41,
0x4833b4fe, 0x109ae749, 0xde035006, 0x5fd55018, 0x344bff20, 0x00c72ba3, 0xca00ff01, 0xff1532b3, 0x4018eeff, 0xed2a0893, 0xffff33b3, 0xff0080f5,
0x1382fbff, 0x32211882, 0x2e0a8208, 0xffff34b3, 0x0568e6ef, 0x0400ff7a, 0x8205cc4c, 0x9919210c, 0xcc230a82, 0x85ffffcc, 0x68662130, 0x3d212582,
0x84498370, 0x260a8430, 0x00ffcd4c, 0x851f850a, 0x11002323, 0x2382cdcc, 0x08343327, 0x194100ff, 0x2129829a, 0xdb539999, 0x2e748208, 0x34b30800,
0x0200ff90, 0x00ffcc4c, 0x829a9908, 0x82112025, 0x41002385, 0xee5d66e6, 0xe6102207, 0x239a8566, 0xce4c1200, 0xb3843f82, 0x08cccc27, 0x00ff068b,
0x236b829a, 0x6666e8ff, 0xfb26cb82, 0x00ff3233, 0x2182cc11, 0xb682ed20, 0x820a0021, 0xeeff2245, 0x22c08233, 0x82cc4cfb, 0x82ee20cb, 0x82db821e,
0x21e5840f, 0x2d82b3ed, 0xdf840420, 0x74871920, 0x19beff23, 0x8374829a, 0x0548548a, 0x86209a82, 0x9f839584, 0xc084cd20, 0x63829820, 0x82676621,
0x22698325, 0x82cc0400, 0x216983b5, 0x88831200, 0x1e826982, 0x8233b321, 0x82fb206e, 0x828d8779, 0x990a2269, 0x82b98398, 0x8218827d, 0x48ef201e,
0x34210514, 0x05644105, 0x19100024, 0x11100598, 0x08050169, 0x34338520, 0x19b900ff, 0xffff1598, 0xff9919f8, 0xce4c0400, 0x66f6ffff, 0xfaffff66,
0xff8b3233, 0x6e4df7ff, 0x83fd2005, 0x5a002026, 0x023008fa, 0xffff34b3, 0x08ceccfd, 0xd4ffffaf, 0x6705cccc, 0xcd210683, 0x21138205, 0xbc55cc4c,
0xe6ff2106, 0xfd224382, 0x4382cc4c, 0x08203c82, 0xff244a85, 0x9a990900, 0xff245a84, 0x67e60700, 0x08236e84, 0x825900ff, 0x2f00272b, 0xff0566e6,
0x59820a00, 0xb3050027, 0x00ff8b33, 0x2085830f, 0x835082f5, 0xff08230f, 0x7e82a6ff, 0x01262585, 0xff008006, 0x276ff5ff, 0x82082005, 0x22b1843c,
0x82cc0500, 0x82f820bb, 0xfbff2325, 0x308632b3, 0x19d0ff23, 0x8397829a, 0xfaff2346, 0x8682cd4c, 0x8182f020, 0x0f836684, 0x25857c86, 0xb3829282,
0xa6853b82, 0x1c764f83, 0x26bd8205, 0xcccc0200, 0x8400ff8a, 0x33fe22f8, 0x22098234, 0x82083333, 0x332b29c0, 0xffaf0533, 0x34332b00, 0x0122bc82,
0x1883cccc, 0x848c3221, 0x823b8228, 0x8b082634, 0x01ff0e07, 0x271982aa, 0xecd1b101, 0x1300ff15, 0x13253d83, 0x00ffda39, 0x22c5831f, 0x825899ff,
0x23938213, 0x5c6fecff, 0x13318e82, 0xfffffe7f, 0xff166eec, 0x68660000, 0x8ae0ffff, 0x820e823c, 0xecff283d, 0xff0820c5, 0x824cf8ff, 0x28f92fe3,
0xf2fffff6, 0xffffcc4c, 0xff146efa, 0xf284f0ff, 0x82a4b021, 0x83ef201e, 0x83fb2048, 0x83ee2004, 0xe6fc221e, 0x06745366, 0x3233fe22, 0xfe211e82,
0x220f8266, 0x7634b3ff, 0xff210541, 0x205783ff, 0x218584ff, 0x1e82cecc, 0x0a84f920, 0xfc204d83, 0x6e430482, 0x82002005, 0x05002342, 0x9a829a99,
0x57820120, 0x350b0025, 0x6eff8ec2, 0x04200544, 0x00234d82, 0x4c686611, 0x01200709, 0xb5827282, 0x00ff6625, 0x4cae4701, 0x09820613, 0x04201e82,
0x0f251983, 0x00ffa4f0, 0x217c8204, 0x48830e00, 0x32b3072e, 0xd70600ff, 0x8b8b080a, 0xd3ffff05, 0xed23ec83, 0x5b159002, 0xff230578, 0x82c235fb,
0x22228209, 0x8226fbff, 0xccfe21b3, 0xfb22f682, 0xa4823e4a, 0x3233fb27, 0x0fedffff, 0x0555575c, 0x68ecff23, 0x822882f6, 0xf4ff235f, 0x1e828e42,
0xff22b983, 0x6a8230e5, 0xb9821620, 0x83e9ff21, 0x831a20c8, 0xe6032274, 0x20898266, 0x2114820b, 0x0f830100, 0x8f4b1320, 0x829a2005, 0x201383cc,
0x841e8404, 0x8201209e, 0x82002061, 0x21c7820f, 0xb283ce4c, 0x0122a882, 0x3d820080, 0xa5833720, 0x66669e26, 0x81ffff7d, 0xff234382, 0x5dccccac,
0x0584054c, 0x14830482, 0xf2291984, 0xffff9819, 0xffcd4c9e, 0x59338200, 0x504106a9, 0x66012205, 0x82538266, 0x01002338, 0x09823333, 0x8234b321,
0xcc04261e, 0x00ff9ecd, 0x20108303, 0x841f8314, 0x840a20a1, 0x22b78292, 0x831a00ff, 0x19e924ff, 0x8400ff99, 0x4ae522d5, 0x21fe823d, 0xef829a19,
0x7b14f422, 0xec22ff86, 0x1482856b, 0xff26cb82, 0xffeb11ed, 0x1e84fbff, 0x8282fb20, 0x3d41ff20, 0x822b2005, 0xb3fe221e, 0x21198232, 0x32825238,
0xff36d083, 0xfff5a8c8, 0x9a996100, 0xf10d00ff, 0x7e00ffec, 0x00ffcc4c, 0x0e823953, 0x52385322, 0x05829682, 0x3b210f82, 0x821983a6, 0xef0d22ca,
0x832d82e0, 0xa3c829e3, 0x078b08d8, 0x332200ff, 0x56234f82, 0x8215b7de, 0x34332e55, 0xe60b00ff, 0x858a7b67, 0xb3f4ffff, 0x259b8233, 0xff0080ec,
0x8183dbff, 0x2783e520, 0x0e83db20, 0x0486de20, 0x20063362, 0x240f84ff, 0xff0180db, 0x832385ff, 0x8237822d, 0x2243821e, 0x837b8a85, 0x84662053,
0x268f825d, 0xff67663b, 0x82cce7ff, 0x824620a4, 0x286d8246, 0x3000ff68, 0x08bb9a19, 0x200783bb, 0x202b8598, 0x851b8300, 0x082f8225, 0x068b0820,
0x07befeff, 0xa9ffffae, 0xff15cdcc, 0xec113800, 0xe6faffff, 0x00ff0566, 0xff9a1905, 0x0a84c7ff, 0x33330025, 0x83fdffff, 0x830120c1, 0x83fd2080,
0xe601235d, 0x73828966, 0x82660621, 0x99f92c7e, 0x0a00ff9a, 0x00ffcdcc, 0x8232b302, 0x470e8304, 0x1d27053e, 0x00ff33b3, 0x82008061, 0x8302204f,
0x800c2715, 0xff958100, 0x3583f4ff, 0x6766fc22, 0x9e2dc782, 0xffffcd8c, 0x056766e2, 0x68f7ffff, 0x836682f5, 0x83fd201a, 0x33f52166, 0x06244b82,
0xffff0a57, 0x6a825f82, 0x52f80123, 0x265c8289, 0xffff0b97, 0x82ceccfe, 0x1fc53209, 0xccffffff, 0x078b08cc, 0x458d00ff, 0xff15ee1e, 0x845382ff,
0x8195235d, 0x6b8200ff, 0x3a828b84, 0xff228182, 0x48621d00, 0x22868305, 0x86989902, 0x820a20ab, 0x215f8349, 0xc98200ff, 0x5f820820, 0x8482d782,
0x4c21e184, 0x22f586ce, 0x82323300, 0xe6c723a9, 0xde5dff66, 0xfaff2105, 0x38220a83, 0xb482ec11, 0x4a828082, 0x871ec521, 0x0a972194, 0xf8214483,
0x82308252, 0x835682b6, 0x21ca83c0, 0x4f84fdff, 0xf722de83, 0x1e82f668, 0xff24f482, 0xcc8c9eff, 0x47364482, 0xffff7bd4, 0x15666623, 0x7a1200ff,
0x00ff90e2, 0xff3e4a14, 0x30820300, 0x190c0027, 0x0100ff9a, 0x218082b3, 0xba830500, 0x7a830020, 0xcdcc0422, 0x1982eb82, 0x19ffff28, 0xf9ffff99,
0x4f820080, 0x3358fe20, 0xb3fc2b08, 0xebffff33, 0xff86cecc, 0x1a84edff, 0x85abfb22, 0xfa216082, 0x20168273, 0x272583f2, 0xfff628f9, 0xce4cf8ff,
0xec203582, 0xec26ba83, 0xffffcccc, 0x73828ae0, 0x6866002c, 0x6eecffff, 0x1300ff14, 0x1e83fe7f, 0x455c6f21, 0xff220680, 0x94455899, 0x13002305,
0x1382db39, 0x08343322, 0xd72cdd82, 0x0700ff0a, 0x00ff32b3, 0xff7b940e, 0x2105bf44, 0xc682ee0f, 0xcc4c0425, 0x67078b08, 0xff2962f5, 0xff666697,
0x0080b4ff, 0x314c5915, 0x2f63e259, 0xffff068b, 0xff676601, 0x66e6ce00, 0xefffff15, 0xdd29ad83, 0xff05ce4c, 0xd7e3d9ff, 0x2c068286, 0xffa4f0fc,
0x9899ffff, 0x73fdffff, 0x21048233, 0x0e8268e6, 0x883d0a23, 0x21068208, 0x1082cd0c, 0xff981930, 0xecd10000, 0xccfcffff, 0x0200ffce, 0x1382e23a,
0x0866e633, 0xe11b00ff, 0xe5ffff48, 0x84050080, 0x33daffff, 0x224b8233, 0x829999fe, 0x82e62026, 0x1902236d, 0x6619889a, 0x3320087c, 0x022b2c82,
0xffff0080, 0xff9919fe, 0x824c0300, 0x43ff2055, 0xd86805ad, 0x201e8205, 0x27348320, 0x05cd4c12, 0xb32200ff, 0xed218682, 0x214f82b3, 0x0a830200,
0x3982fe20, 0x00223484, 0x2f823300, 0x00234883, 0x8667e601, 0x01002153, 0x01234983, 0x638e3333, 0x032806d4, 0x84089919, 0xcc2500ff, 0x1b254b83,
0x00ff66e6, 0x05ff431a, 0x2208865e, 0x82cccc00, 0x32332185, 0x19213082, 0x23a4829a, 0x8a0868e6, 0xb4563d82, 0x21ed8205, 0x2083fdff, 0x68660029,
0xd9ffff08, 0x829067e6, 0x66ef21d8, 0x22224782, 0x0a8232b3, 0x9382fe20, 0xcc020022, 0x24079b43, 0x87cccc01, 0x8228828b, 0x054c4933, 0x6982e582,
0x2683ff20, 0x33fdff34, 0x078b0832, 0xffbf00ff, 0xff158bff, 0x6866efff, 0x7c41ffff, 0x66e62206, 0x204c8286, 0x419f82fc, 0xe582067c, 0xe6fdff25,
0x82888a68, 0x82ff204c, 0xfdff2197, 0x00208a82, 0x7841ab83, 0x20558306, 0x057841fd, 0x78413583, 0x419a200e, 0xcc202378, 0x7841f282, 0xff342205,
0x05344700, 0xcccc2124, 0x784100ff, 0x200a8305, 0x077841ff, 0xc7823420, 0x82057841, 0x1b78411f, 0x78413420, 0x41662057, 0x68220578, 0x784100ff,
0xff322107, 0x830d7841, 0x8b6622f2, 0x45068508, 0xff21052b, 0x057c41fe, 0x0e833220, 0x8b08323d, 0xffef0e06, 0x98992402, 0x994c00ff, 0xffff159a,
0xffceccd5, 0x9a99acff, 0x82a9ffff, 0xc6ff21dd, 0xff27fd82, 0x8b34339b, 0x858b2808, 0x39002112, 0xd5204083, 0x002a1782, 0x08666653, 0x780400ff,
0x05828e52, 0xffe13a27, 0x66660300, 0x2005828f, 0x281683e6, 0x949a1908, 0x190500ff, 0x068e4a9a, 0xcd4c0324, 0x148200ff, 0x03203182, 0x00225e82,
0xad83b308, 0x8267e621, 0x34b3211e, 0x1e83b782, 0x9a190922, 0x04201e82, 0x12221e83, 0x55823233, 0x0a831320, 0x04830120, 0x6b820a20, 0x1a2f5b82,
0xffff0180, 0xffcc4ce9, 0x33b31600, 0x83e5ffff, 0x33fc22a3, 0x2be28233, 0x8aa330f9, 0x97f6ffff, 0xfeffff0a, 0xff243082, 0x89f5a8f5, 0x122f4c82,
0x00ff5278, 0xff33337b, 0x3e4a6a00, 0x825e00ff, 0x7f002430, 0x828b0080, 0x4c81231a, 0x16828bcc, 0xf0824c20, 0x1683a120, 0x04821220, 0xcc84ff23,
0x234c82cd, 0x8d9899f5, 0x992c4c82, 0x0100ff9c, 0xffff6666, 0x8c3033f9, 0x6e831682, 0x5f030021, 0x358205c2, 0xcd4ce923, 0x2183828f, 0x4c82ff7f,
0xc4820020, 0x99f5ff27, 0xffff8e9a, 0x213182ec, 0x4c830500, 0xcecced22, 0x02211a82, 0x222b824c, 0x8266e6f6, 0x64e621e4, 0xbd835582, 0x5a820320,
0x4cf7ff22, 0x03201e83, 0x2208c06b, 0x82981905, 0x243d831e, 0x829c1908, 0x4a5b8208, 0x332405c8, 0xfcffff30, 0x0031d382, 0x88008004, 0xff078b08,
0xceccb2ff, 0xe62700ff, 0x9a534566, 0x34334227, 0xb36600ff, 0x2b7c5933, 0x824c0121, 0x117c59d6, 0x1833fa21, 0x5907db6e, 0xef201a7c, 0x23052e75,
0x8b6666f1, 0x221c8c5b, 0x596766f8, 0x0323137c, 0x5bff9919, 0x0729ae8c, 0x088b67e6, 0xb30900ff, 0x0e8c5b33, 0x2a717c59, 0xe6a800ff, 0xfdffff66,
0x10153333, 0xc4014c1b, 0x2b1e305d, 0xfeff078b, 0xff9a99a7, 0x0080e9ff, 0x3107ee66, 0xff0080ea, 0x14aef7ff, 0x4ccfffff, 0xf1ffffce, 0x048299d9,
0x0866e628, 0x0fffffff, 0x05828a5c, 0x821f0521, 0x82192004, 0xfdfe2234, 0x21098270, 0x1a823233, 0xe17aed3b, 0x66f0ffff, 0xe4ffff66, 0x00ffae07,
0xff343301, 0x8f42eeff, 0xcc1100ff, 0x251e83cc, 0x00ffba49, 0x1482b312, 0xf49dff25, 0x821e00ff, 0x1200233d, 0x13820060, 0x1e824c20, 0xa3080026,
0x0800ffd7, 0x00211e82, 0x217c8215, 0x04830600, 0x295c1425, 0x840500ff, 0xf80c221e, 0x27528252, 0x00ff67e6, 0x8d90820c, 0x68212982, 0x220f82f6,
0x82083333, 0x22258320, 0x70cdcc00, 0xff21055c, 0x293982fb, 0xcc4cfeff, 0x99faffff, 0xdd820899, 0x66c70124, 0xd9823466, 0x9082ff20, 0x99000022,
0x6626b483, 0x0000ff64, 0x048234b3, 0x829c1921, 0x83b32004, 0xccff22be, 0x820a82cc, 0x86ff2023, 0x82322009, 0x211384d8, 0xbe82ce4c, 0xd0ccf125,
0x820e00ff, 0xf7ff27b4, 0x00ff30b3, 0x1e82b330, 0xa56afc20, 0x841e8206, 0x6605215c, 0x04209f82, 0x00207f82, 0x05200484, 0xff216682, 0x20a382ff,
0x0689488c, 0x6d820120, 0xe6ffff23, 0x20b98366, 0x82138434, 0x330828be, 0xfeffff30, 0x8296cdcc, 0x33332205, 0x05be54ff, 0x6666fe22, 0x15201a82,
0xfa208d83, 0x21071341, 0x5983f9ff, 0x6c460820, 0x82cc2005, 0x8312201e, 0x82ed205f, 0xffff211e, 0xe1201483, 0xff215882, 0x82f883ed, 0x20928204,
0x201e83ed, 0x204283ee, 0x82a782e4, 0xffcc2362, 0x4283edff, 0x9a990f34, 0x058b8b08, 0xf894f70e, 0x00ff1554, 0x8b66668d, 0xec5b00ff, 0xff8b2207,
0x200a82ff, 0x20068208, 0x20ec838f, 0x2c5483b6, 0xff3233a0, 0x9a999aff, 0xe6ddffff, 0x20788268, 0x26548209, 0xcccc0e00, 0x820500ff, 0x1100216e,
0x12204084, 0xff285582, 0x66e62e00, 0x1800ff07, 0x30821684, 0x4c13002b, 0x00ffa3ce, 0xa7cccc0b, 0x65324c08, 0x34b30b25, 0x83e4ffff, 0x821220a0,
0xe8ff2104, 0x0021ba82, 0x29c48318, 0x086666ee, 0xb3d0ffff, 0xdb820734, 0x6666ed22, 0xcd23bc83, 0x6eeeffff, 0x33250506, 0x33f1ffff, 0x38208234,
0xffeb919a, 0x98192200, 0xeeb6ffff, 0x5f00ff14, 0xff8bcecc, 0x66e67000, 0x20068208, 0x2035838d, 0x22308372, 0x41869972, 0x16830538, 0x1400002a,
0xb0ffff05, 0x84fb6666, 0x77329067, 0xaf268bd3, 0xe4fb9a99, 0xab18ff15, 0x00210afe, 0xd16e181c, 0x00ff2b08, 0x0766662d, 0x0e00ff8b, 0xde5034b3,
0xe60b2206, 0x230e8466, 0x068d088b, 0x4c211282, 0x2e1d82cc, 0xffcdcc09, 0x9a19f8ff, 0x800200ff, 0x82088000, 0x21108306, 0x298266f3, 0x8a611120,
0x32b32205, 0x06947cff, 0x96282182, 0xcc0900ff, 0x0700ffce, 0x0b204a83, 0x4a844182, 0x4a826282, 0xff215e83, 0x293483f4, 0xcc4cf1ff, 0xd2ffff08,
0x7f189a99, 0xcc240a98, 0x4ce3ffff, 0xdc200482, 0x0822a282, 0x0210078b, 0x284e01cf, 0xffcdcc76, 0x34336bff, 0x2d585715, 0x58579920, 0xff332108,
0x20075857, 0x095857cd, 0x58576720, 0xff67210f, 0x20055f74, 0x08275705, 0x58055857, 0x8b243403, 0xa900ff07, 0xe223b783, 0x85153233, 0xfaff2858,
0xff8bce4c, 0x8299f0ff, 0xb30a2398, 0x6a57ff34, 0x8299200d, 0xe607268e, 0xfbffff66, 0x2dae82b3, 0xff9a9909, 0xcdcc0500, 0x0800ff8b, 0x6a5767e6,
0x8242833d, 0x66f62257, 0x58528366, 0xdf20180d, 0xfe231f82, 0x439a99b2, 0xcc24b974, 0x8b1584f7, 0x7e08467f, 0x8b2523e6, 0xb3f2ffff, 0x069e4133,
0xcd4cf523, 0x1c427fff, 0x76ffff2c, 0xfeff0080, 0x153433dd, 0x9d45ffff, 0x459a2027, 0xdd46069d, 0xffa322e1, 0x11d946ff, 0x33330622, 0x3f0fd946,
0xff058b8b, 0x9a192b00, 0xff159af7, 0x99190700, 0x4c0500ff, 0x0100ffcd, 0xff956766, 0x33b3faff, 0x9a251483, 0xe1ffff08, 0x281a8299, 0xff008028,
0x3433c3ff, 0x230f858b, 0x0080d7ff, 0x25831a82, 0x2305d972, 0x81156e01, 0x11213082, 0x203a84ec, 0x843b8408, 0x8495200a, 0x825b8651, 0x201a8265,
0x20508311, 0x21508217, 0x50832300, 0x0f830020, 0x83e8ff21, 0x19818450, 0x2716c852, 0xff666676, 0xcdccdcff, 0x9a18ac82, 0x7d6b0907, 0x29701812,
0x444a1812, 0x6bff2007, 0x1c23114a, 0x6bff34b3, 0x548305d9, 0xff7b0827, 0x66667dff, 0x1c574615, 0x71970c47, 0x086c6499, 0x890029a1, 0x00ffce4c,
0x15ffff5e, 0x20058442, 0x06d54200, 0xff956624, 0x0079faff, 0xff082706, 0x9a99e1ff, 0xd54200ff, 0xff9a210c, 0x7508d542, 0x012307af, 0x42816666,
0xd54209ca, 0x83cc2014, 0x8299201f, 0x8311201a, 0x0cd54250, 0xd5425082, 0xffcc2107, 0x2215d542, 0x82cc26ff, 0xccfc221a, 0x5c264acd, 0xf72f0e26,
0x159cf714, 0x09cdc418, 0xffff9924, 0x9e8219ee, 0x66e6e927, 0x065b088b, 0xe80719ff, 0x2813820c, 0x191600ff, 0x07bb089a, 0x2408848b, 0xe81100ff,
0x210482f6, 0x0e8266e6, 0x8b0a1725, 0x8406bb08, 0x221d8217, 0x1867e611, 0x240b2fc5, 0xfb8b075b, 0x2067e454, 0x056346ab, 0x9886a682, 0x9d841120,
0x8d9a1921, 0x8e66209d, 0x82e9829d, 0x41fc8527, 0xcb180e01, 0x002008fd, 0xf8854a82, 0x07bb0826, 0x84fb14f7, 0x9a20d08a, 0x95103841, 0x08384136,
0x4f836d82, 0x41052f41, 0x9a8e0c38, 0x25d0d040, 0xe370fb0e, 0x284215eb, 0x088a4119, 0x22408c42, 0x8a8b54f7, 0x0e574167, 0x4109f442, 0xfb2340bb,
0x4315ab84, 0x01414b2a, 0x84f72317, 0xd04014f7, 0x0a172185, 0x2107fb43, 0xfb43f6e8, 0x0a172216, 0x24c7828b, 0x5b08f6e8, 0x185f4407, 0x3694d092,
0x842ba141, 0x66e6219a, 0x16209f86, 0x2a05f843, 0xf894f70e, 0xffff1534, 0x8266e670, 0xa993258c, 0x88ffffba, 0xff2a2382, 0xffdf6ffb, 0x9a1977ff,
0xa4832308, 0x34b3f222, 0x10908318, 0x0c00ff25, 0x828b9a59, 0xcd8c2105, 0xb3201b82, 0x07516618, 0x2f82f320, 0x83720021, 0x575d2e2f, 0x5d00ff0a,
0x00ff9819, 0x8bf6a872, 0x84068208, 0x4c5d2724, 0xa2ffffcc, 0x6e8268e6, 0xcc4c8d22, 0x34825f8b, 0x2105c74c, 0x49184c0d, 0x00210edf, 0x2f5f880a,
0xe66800ff, 0xffff0766, 0xf76666fb, 0x93ffff1c, 0x00203482, 0xc185a782, 0xfb2b082c, 0x8b7b1594, 0xdcffff05, 0x6082f6a8, 0x8282e320, 0x2707c248,
0xff08ec91, 0x0040c0ff, 0xff299f82, 0xff7c94dc, 0x33b31c00, 0x271c83ff, 0x4c2300ff, 0x9b088bcd, 0x00213682, 0x21368311, 0x36820e00, 0xdd820483,
0xc2b51122, 0x7f20b982, 0x0c837282, 0xff02c022, 0x2005ab74, 0x74c4830e, 0x642105ab, 0x2271858b, 0x820a57ee, 0xa8f12271, 0x212282f6, 0x0a8214ae,
0xae47ee22, 0x80227182, 0x71839a19, 0x3082ee20, 0xff245784, 0xff68a6f1, 0x08276784, 0xffffff9b, 0x820570fd, 0x213a837f, 0x3a821c00, 0x21072a50,
0x7582146e, 0x83c03f21, 0x230023ac, 0xa786846b, 0xec821c20, 0xb3dcff28, 0x0e088b34, 0x0d1900ff, 0x11220800, 0x728252b8, 0x0e243c83, 0xffffec51,
0x77828783, 0x66e6f022, 0xf5215e82, 0x0e0b41c2, 0xdc22a484, 0x21827a94, 0xc235d022, 0xdc229983, 0x0b41ee91, 0x85062011, 0x84ff20a2, 0x0e0023b2,
0xfd83285c, 0x5c34b321, 0x00230669, 0x82a4f06f, 0xe64021b6, 0x42059e79, 0xae21063b, 0x073b42d9, 0x42147021, 0x8082053b, 0x63adfa26, 0xffff8b05,
0x202a4042, 0x2e4042b3, 0x8224fb21, 0xe9ff2330, 0xfa82f6e8, 0x860a1721, 0x200e8204, 0x28ac828b, 0x06cc4c91, 0xb3f7ffff, 0x24c88234, 0xffffcc4c,
0x200983f0, 0x05677609, 0x2083cc20, 0xcdcce122, 0xe8222082, 0xa3823dca, 0xc3b5ea30, 0x4ff0ffff, 0xfbffff5c, 0xffff48a1, 0xee8333e9, 0xeb11fa30,
0x4ae1ffff, 0x1700ff3c, 0xffff6666, 0x757633e5, 0x2d3b8205, 0x66e62000, 0x1100ff06, 0xff8b52b8, 0x36820f00, 0xb6090026, 0x0800ff04, 0x0e2e0983,
0xff08fc49, 0xf6a86e00, 0x3000ff06, 0x20829a99, 0x3d822720, 0x04820020, 0x10820a82, 0x24f70822, 0x2305c242, 0xe68800ff, 0xc5425682, 0x04f7240e,
0x421504fc, 0x2f221816, 0xf1821ec5, 0x66230023, 0x08164267, 0x42ff3321, 0x7b220516, 0x0042058b, 0x05104205, 0xa8f1ff23, 0x23d882f6, 0x08cc4cee,
0x90230682, 0x8205d823, 0x33ee2206, 0x60a51832, 0x069b2a10, 0x00ffaf0e, 0xf79a198f, 0x22778214, 0x8333b347, 0x5c0f2060, 0x992005a0, 0xcd232d83,
0x830c00ff, 0x1909310e, 0x01ff0899, 0xff9a1911, 0xb633c900, 0x0700ff05, 0x0522d783, 0xf8827c74, 0x02281483, 0x00ff68f1, 0x8b9a190a, 0x0b22fe82,
0xed826666, 0xdf830a20, 0x0476fb22, 0xff232085, 0x8244ebf7, 0xcc36271a, 0xc9ffffce, 0x4082703d, 0x98190823, 0x241582ff, 0x0300ff86, 0x22098299,
0x823e0af5, 0x94f422a3, 0x23b1837a, 0x890ad7f6, 0x41831c82, 0x0080fa22, 0xb3240982, 0xffff0834, 0xfe233c83, 0x8266e6ee, 0x67f620ea, 0xf0200810,
0xf8225183, 0xf882cccc, 0x2605f75a, 0x066666b7, 0x83e7ffff, 0x99e62236, 0x202b829a, 0x840a83f3, 0x198c1804, 0x33cd2710, 0x3200ff33, 0x2586cccc,
0x800c0023, 0x22b98200, 0x18343314, 0x820902f1, 0x801826b4, 0x1900ff01, 0x2d778266, 0xcc4c5a01, 0x14dc00ff, 0xffff157c, 0x2582b3e2, 0x7a541d26,
0x28ffff05, 0x61228d83, 0xd5820a97, 0x9a195525, 0x83aaffff, 0x9f0021a3, 0xd6342b83, 0xff05162e, 0x48a12dfe, 0x9e91feff, 0x00ff15b8, 0xcaae073f,
0x46252782, 0xffffd7a3, 0x235382b9, 0xe1ffff6c, 0xfb208084, 0xfa21a683, 0x203e8299, 0x204e83f9, 0x2b0e83fd, 0x8b9999f9, 0xbbffff08, 0xff06cd4c,
0x0a316d18, 0x230c1545, 0x0734b304, 0x072cb482, 0x00ff3233, 0xffae8702, 0xce4c0500, 0x2a05cd57, 0x00800400, 0x0e078b08, 0x829e01ff, 0x0e01268a,
0x8c156666, 0x051443ff, 0xcecc0524, 0x6782ffff, 0x5e829320, 0x21100027, 0x00ff0648, 0x20fb8409, 0x24768207, 0x00a00800, 0x2f10828a, 0xff0848c1,
0xea91fcff, 0x1e2700ff, 0xedffffb8, 0x002d3382, 0xff486123, 0x6666e4ff, 0x9e1600ff, 0x251e82b8, 0xffb89eee, 0x1e830e00, 0x3983f420, 0xe8821620,
0xe1fcff29, 0x1900ff48, 0x8208b85e, 0x41082144, 0xf9202f82, 0x00247e82, 0x83002006, 0xff226d82, 0x6d82e1ef, 0x83f6ff21, 0xf8ff216d, 0xf7254d83,
0x00ff0060, 0x21428301, 0x52823ef6, 0x82040021, 0xd8ff210f, 0x12214383, 0x213c8201, 0x61829edc, 0x00c01b25, 0x82e9ffff, 0x00ff2c52, 0xff3e4a11,
0xf6e8f1ff, 0x820b00ff, 0xe9ff2186, 0x03208b83, 0xff276082, 0x089a99e6, 0x408b00fb, 0xd42b84e3, 0xffff067b, 0x8b5378f6, 0x82f8ffff, 0x85ff20a0,
0x9a1921e3, 0xe3851482, 0xe3821483, 0xffff9d22, 0xcc21df85, 0x22df82cc, 0x82084861, 0xce4c21df, 0xe621df82, 0x2cdf9466, 0xb3ad00ff, 0xb1ffff34,
0xfb159a99, 0x20628274, 0x29528291, 0x34335300, 0x00ff7f05, 0x43824c08, 0x5882f320, 0x80040030, 0xf2ffff00, 0x088b9919, 0x66d5ffff, 0x64840666,
0xe3278a82, 0xffff4861, 0x826666e3, 0x99dc260a, 0x74fb089a, 0x22098307, 0x19ffb89e, 0x240f2b0f, 0xff0614f8, 0x73631800, 0x2b0f1909, 0x8234200b,
0x11002233, 0x20c98299, 0x210482f1, 0x6f820e00, 0x82eeff21, 0xfb082452, 0x184cfbf4, 0x82144982, 0x827b2086, 0x9efb2282, 0x306d82b8, 0xff4761fc,
0x9a990300, 0x0400ff8b, 0xf7086666, 0x824e8304, 0x21148209, 0x1984b99e, 0x61241882, 0x9b088b48, 0x04228182, 0x27826766, 0xff222d82, 0xb584fcff,
0xb583fb20, 0x18070421, 0x8b32b282, 0x83b78368, 0x18818354, 0x201a1884, 0x186888fb, 0x1812456b, 0x86181c84, 0x00602168, 0x3782cc82, 0x83030021,
0x60042204, 0x18688600, 0xeb13466b, 0xf4fb2468, 0x4115ccf7, 0x8b2016db, 0xff241784, 0x4761e3ff, 0x24061142, 0x8bb89edc, 0x093d4208, 0x1b834720,
0x0a7d6518, 0x3a421e82, 0xf80e2410, 0x7d54f874, 0xff200cc3, 0x09728718, 0xffff8b2a, 0xff7c54ee, 0x34b3f1ff, 0xab210482, 0x260e8284, 0x088bcc4c,
0x180714fc, 0x180d13ad, 0x200da051, 0x473087cc, 0xfb2808bf, 0x07cb0644, 0x074b062b, 0x43820882, 0x187b5421, 0x8d2b9ffe, 0x7c542130, 0x1123f682,
0x840884ab, 0xff862506, 0x7b540e00, 0x0b96a518, 0x0654f82b, 0x152b04fc, 0x33f7ffff, 0x24658233, 0xffcdccf8, 0xd44d18ff, 0x076b2109, 0x16c65318,
0x0d064e18, 0xcc180020, 0xab200906, 0x00223182, 0xcb18cc08, 0xf7231336, 0x9c155b04, 0x06cc184e, 0xf3251912, 0x066b2118, 0xf722b298, 0xcf84bb24,
0xcf843420, 0x59828984, 0x3421e082, 0x20cf8b08, 0x20e88434, 0x18ac83ff, 0x960fbfef, 0xffcc21cf, 0x77831883, 0x088b3428, 0xa4fb066b, 0xd08524fb,
0x18833320, 0x0c63e718, 0x21101f41, 0x69838b33, 0xce18cd20, 0xcd18078b, 0xd08e1326, 0xbe82cd20, 0x3333f722, 0xd087b382, 0x890aa041, 0x9625851c,
0x0a514180, 0xcd188093, 0xa0410e58, 0x18cf8408, 0x850c86d1, 0x414eadcf, 0x65410528, 0xf8ff2205, 0x26b289cc, 0xff155b2b, 0x8233d3ff, 0xff2d0891,
0xffcd4cda, 0xcc4ce1ff, 0x99f4ffff, 0xd6ffff9a, 0xff080080, 0x9999fdff, 0x19f3ffff, 0xffff969a, 0xff9a19f5, 0xcd4c0d00, 0x24f7088b, 0x31098306,
0xff968bcc, 0x66e60a00, 0xb3fcffff, 0x0c00ff34, 0x308266e6, 0x0080f525, 0x822900ff, 0x824f8204, 0x821e20d3, 0x2b5f8219, 0x0e088b34, 0xbc01ffef,
0x01ff6666, 0x15233182, 0x821600ff, 0xf0ff210a, 0x00227282, 0xde82330d, 0x9a99e627, 0xe4ffff8b, 0x23428366, 0x07cdcce1, 0xfb200c82, 0x21073c45,
0x2b82fcff, 0x20054145, 0x237882bb, 0x8b686604, 0x4505c949, 0xff240add, 0x33331e00, 0x002a3582, 0x7600402b, 0x402800ff, 0xee46ff01, 0x99182205,
0x25958298, 0xffae47e8, 0x8b831000, 0xc583f020, 0xb89e1922, 0x1d254282, 0xff084821, 0x1cac1900, 0x4566200d, 0xff20054b, 0x83537c82, 0x82088305,
0x188182e0, 0x240a8d70, 0x9ebdffff, 0x216d82b8, 0x5783d4ff, 0xed841820, 0x23265783, 0xffff66e6, 0xc483e6e6, 0xbd820620, 0x194eff2c, 0xffff159a,
0xff9919ba, 0x1a83f4ff, 0x82a6be21, 0x4ce72c1f, 0xc4ffffce, 0xffff0040, 0x82ccccda, 0x9e532c80, 0xcbffffb9, 0x00ffcccc, 0x5f7b9460, 0x62230613,
0x828bcdcc, 0x8058391a, 0xffff0600, 0xffcd4c8f, 0x00808300, 0xf1ffff05, 0x00ff3333, 0xffcc4c11, 0x21058c48, 0x4a82cc07, 0x6983e920, 0x8266fc21,
0x66012174, 0x01271982, 0x1548e10f, 0x82faffff, 0x0300230a, 0xbb83b8de, 0x00ff6825, 0x82482106, 0xde0622f1, 0x82f190b8, 0xa003211c, 0xfb228c82,
0xf19c9899, 0x00c0c122, 0xe920f183, 0x00225282, 0x57821e0a, 0x48a1ea28, 0x801200ff, 0x52827f00, 0x142e2a22, 0xc034b982, 0x1900ff00, 0xffff3433,
0x8b0080d1, 0xb3cdffff, 0xffff0833, 0x200dcd41, 0x258f8398, 0x0400ff66, 0x13546866, 0x1dcd4105, 0x9999412b, 0x99dfffff, 0x3c00ff98, 0x205782b3,
0x230482c9, 0x48612400, 0x3f205682, 0xfe23f582, 0x82b81ef7, 0x9edd21ea, 0xff218d82, 0x20c382e0, 0x209282cb, 0x200984ff, 0x828182fe, 0xe6753097,
0x76ffff66, 0xff059a99, 0xce0c0c00, 0x83f1ffff, 0xcc1125a2, 0xf7ffffcc, 0x00241982, 0x8b34b312, 0x582b2582, 0xff064661, 0x9a198aff, 0x838900ff,
0xf3ff232b, 0xbf4cecd1, 0x33ee2206, 0x06554c34, 0xcc4ced22, 0xff2b2b83, 0x158b9a19, 0xff064cfb, 0x82197500, 0x667623cc, 0x06820566, 0x9883f120,
0xd0cc1122, 0x30205788, 0x11222b83, 0x27826866, 0x09a88118, 0x0ad46718, 0x1805bb47, 0x76139b62, 0x1f206264, 0xff29fb82, 0x1534b3d3, 0xccf2ffff,
0x05604dce, 0xb3eeff26, 0x0400ff32, 0xee201983, 0x4905dd4c, 0xfc220507, 0xfa6fcdcc, 0x82ff2005, 0x260982f9, 0x8a086666, 0x6afbffff, 0x992b0523,
0x4cfcffff, 0x0300ffcc, 0x83ff3433, 0x8b08291f, 0x00ff058b, 0x8a333300, 0x80210683, 0x21148200, 0x0a8334b3, 0x20054474, 0x830a8332, 0x84ff204f,
0x3333213e, 0x39821f82, 0x66010023, 0x283e8567, 0xcc0200ff, 0xfeffffcc, 0x208a8233, 0x21788403, 0xa949ce4c, 0x054f7f05, 0x14840020, 0xa482fc20,
0x83030021, 0x82fd2052, 0x02002104, 0xfb266783, 0xff0834b3, 0x57820100, 0x83fdff21, 0x82012091, 0x219b8223, 0xb2828bce, 0x08cccc22, 0x59820685,
0x829a1921, 0x21738210, 0x3a82feff, 0x82fcff21, 0x20dd86cd, 0x853a83fc, 0x06df6a04, 0xe622db82, 0xaf420866, 0x827e8305, 0x21b18309, 0x656d4cfd,
0x82a68306, 0x99fe221e, 0x82bc8499, 0x83da845c, 0x84ff205c, 0x9a9921da, 0xff201e82, 0x9922db84, 0x24820598, 0xf083b320, 0x83cecc21, 0x242a840a,
0x8b0566e6, 0x200d828b, 0x207183fd, 0x05f164fe, 0x21090277, 0xb6849a19, 0x088b5718, 0xec84d784, 0x0080ff22, 0x840d6941, 0x21f1826e, 0xc66e0000,
0xffce2305, 0x72410000, 0x82082006, 0x4b72410a, 0xa682fc20, 0x20057241, 0x418582fc, 0xfe221672, 0xbb8332b3, 0x9282fc20, 0x41feff21, 0xa2827172,
0xb3ffff23, 0x09714132, 0xcc210982, 0x220482cd, 0x850866e6, 0x0000250a, 0x8b05cccc, 0x19250b82, 0xffff059a, 0x057442fc, 0xffff3425, 0x826766fe,
0xcc4c220e, 0x8405828c, 0x830020de, 0x24e982c2, 0x330300ff, 0x201f8333, 0x21098266, 0xdd439a99, 0x8b663005, 0x4c1100ff, 0x00ff8fce, 0xff32330d,
0x82660700, 0x0600215e, 0x00217d82, 0x05591803, 0x80042d08, 0x0400ff00, 0x00ffce4c, 0x08343305, 0x29830a82, 0x98190522, 0x19264682, 0x0600ff9a,
0x4482ce4c, 0xcccc0725, 0x82918b08, 0x836d8273, 0xffff2312, 0x3183ccfb, 0x82981921, 0x82fb20af, 0x223c83c9, 0x83faffff, 0x66052531, 0xf9ffff66,
0x00230482, 0x82cecc02, 0x83fd201e, 0x9901255b, 0xfdffff98, 0x01225583, 0x47836866, 0x00ff6825, 0x82323302, 0x8303206f, 0x84002014, 0x82e6202e,
0x211e8314, 0x51830200, 0x1e823282, 0x8b2baded, 0xffff058b, 0xff008090, 0x104c7c00, 0x2001a94b, 0x04a50510, 0x99c2267d, 0x4400ff9a, 0xb84d10b3,
0xff3dd703, 0xcccccd01, 0x667100ff, 0xffff1566, 0xffce4cf2, 0xcecc2100, 0x66dbffff, 0x1400ff66, 0x059b5080, 0xf5ffff2d, 0xff089899, 0x68e6d7ff,
0x83f4ffff, 0x33ea391e, 0xd6ffff32, 0x64959a19, 0x1600ff08, 0xffff66e6, 0x0532b3a6, 0xf8ffff8d, 0x03253783, 0xffff9a99, 0x204b83f9, 0x222c8304,
0x829a99fa, 0x66e1273c, 0xffff7e66, 0xfb534cde, 0xffff2505, 0x8b9a99dc, 0xf2181682, 0x8b20425f, 0x2205185b, 0x8219fbff, 0x83e32076, 0x83f6208c,
0xb3e52204, 0x205f8232, 0x210a82f4, 0x90830500, 0x9a99f326, 0xf3ffff8c, 0xfe208083, 0x2d06374d, 0x34335aff, 0x990200ff, 0xff8b159a, 0x29820600,
0x4bfcff21, 0x3a4f3278, 0x6ad04d5b, 0x4da3434f, 0xff2121d0, 0x484c4fff, 0x2a06424f, 0x0000ff05, 0xffff9999, 0x509899ff, 0x434f4fb6, 0x50fd2024,
0x72417db6, 0x3f0f102b, 0xff2b3201, 0x9a19ffff, 0x88ffff07, 0x6ae76666, 0xff295c65, 0x3433d900, 0x330300ff, 0xa3796b33, 0xcc2d0028, 0x77ffffcc,
0xac820180, 0x9a19142b, 0xb30500ff, 0x00ff0532, 0x20c28316, 0x2e048306, 0xff66e616, 0x3233f2ff, 0xe8ffff91, 0x8208cecc, 0x22108320, 0x8232b3e8,
0x203a8315, 0x263482e8, 0xcecce9ff, 0x82f9ffff, 0x8236201e, 0x82332025, 0xf7ff2240, 0x25368266, 0xff9a99fd, 0x5584f7ff, 0xff210482, 0x273482fd,
0x32b30800, 0xe9ffff08, 0x00240f82, 0x05ce4c59, 0x25066351, 0xffcc4c17, 0x6f830d00, 0x5e821720, 0x32227e82, 0x7e8200ff, 0x16226e82, 0x0a84ce4c,
0xcc209382, 0x8982a982, 0x3d828282, 0x06238d86, 0x1876cc4c, 0x3661264c, 0x44fb94f7, 0x4c00ff15, 0xff8b9a19, 0x9a194000, 0x00ff9ebd, 0x8266e643,
0x8303209e, 0xb30d25ae, 0xf4ffff34, 0x0c20dd83, 0xf130f683, 0x088bcecc, 0xccecfeff, 0xffff06cc, 0x8bccccf1, 0xb8301c82, 0xf3ffff52, 0x00ff9a99,
0xff0bd703, 0xcc4cf2ff, 0x13253b82, 0xffff3e0a, 0x82cb82bc, 0x59992152, 0x08295e85, 0xffff078b, 0xf76666b0, 0x575d10a4, 0x91411d01, 0x80e2286e,
0xd800ff00, 0x10156666, 0x2c01555b, 0x00ff6625, 0x4399190a, 0x082006be, 0x8305615b, 0x25168506, 0xccccf9ff, 0x0f8200ff, 0xf9ffff27, 0xff089a19,
0x555b1000, 0x6625e001, 0x190a00ff, 0x080f429a, 0x11555b18, 0x00ffcc25, 0x42cecc08, 0x5b18090f, 0x55186755, 0xad445f04, 0x8085276e, 0x3d01ff00,
0x5218cc4c, 0xd77a6430, 0x8b322629, 0x660f00ff, 0x16d77a68, 0x38305218, 0x2105c57a, 0x5218ff98, 0xce2a0730, 0x5900ff08, 0xffff66e6, 0xc57a19d0,
0x5e072059, 0x33426035, 0x6173486e, 0xadc58b19, 0x02ffef30, 0x8b34331d, 0x0000ff15, 0x8d8664e6, 0xe719ffff, 0xff24101f, 0xff0080ea, 0xe5320485,
0x088b6866, 0x80e5ffff, 0xffff8b00, 0xff9a99ea, 0x0a831500, 0x801a0028, 0xff8b0800, 0x11830500, 0x82190121, 0x66052216, 0x2b508366, 0xfb089066,
0x00ff0659, 0x86cccc01, 0x19820582, 0x4c825e9d, 0xd9185e89, 0x5e910d6b, 0x90205482, 0xbd292d82, 0x058b9a19, 0x66eeffff, 0x25938266, 0xff9999f1,
0x0a830e00, 0x99110027, 0xe4f7089a, 0x25378207, 0xff0ad708, 0x0482f8ff, 0x2807002c, 0xf7fffff6, 0x088bf628, 0x3289067b, 0x3289af82, 0x39822f82,
0x04864484, 0x3b660e82, 0x33232205, 0x241d8233, 0xffcdcc1c, 0xd1ae18ff, 0x07d4230a, 0xe28274f8, 0x98991122, 0x0e221c82, 0xc46d6866, 0x205d8405,
0x82918208, 0x20118397, 0x83168498, 0x8b682715, 0xbdffff08, 0xb4833433, 0xcccc9228, 0xff1554f8, 0xf8821a00, 0x1500ff22, 0xdc18f182, 0xfb270a8f,
0x54fb07a4, 0x83a4f706, 0x51c518c2, 0x06eb3113, 0xeb152b2b, 0x2b07bb06, 0x3b075b06, 0x6b1574fb, 0xf720d397, 0x2008f06a, 0x8de88200, 0x74fb28d6,
0xf7d4f707, 0x83fb1554, 0x93ff2023, 0x066b25ad, 0xab0774f7, 0x2308e297, 0x01ffaf0e, 0xff343311, 0x66e68800, 0xdfffff15, 0x00ff66e6, 0x41343327,
0x4c6100ff, 0x00ff8bcc, 0x089a9936, 0x42220682, 0x0b831e45, 0x00ff9931, 0xffe2ba35, 0x67664100, 0x00ff088b, 0x82323343, 0xb3352d1b, 0xcaffff34,
0xff8b1e45, 0xe2babdff, 0xff262d82, 0xff6666c9, 0x4a82b6ff, 0x839eff21, 0x2f54831b, 0xccccd8ff, 0xf8ffff08, 0xffffce4c, 0xff0080f5, 0x8306704c,
0x0a00360f, 0x8b080080, 0x8e00ff07, 0xffffcccc, 0x159a1940, 0x992e01ff, 0x2010829a, 0x21288203, 0x47820600, 0x83030021, 0x820620a2, 0x0200211f,
0x06220e83, 0x831868e6, 0x012a0783, 0x00ff3233, 0xff008000, 0x23830100, 0x4c200985, 0x00316b82, 0xfffeff73, 0x66662e00, 0x0f00ff05, 0x00ffd0cc,
0x317b8206, 0x98191100, 0x66f4ffff, 0x087a8b66, 0x33f1feff, 0xb5820734, 0x3233f626, 0xf7ffff85, 0xff263e82, 0xff68e6f6, 0x3e83fcff, 0x836fff21,
0x19c63429, 0xfeff059a, 0xff0a176f, 0x34b33b01, 0x7a00ff15, 0x82bc9082, 0x4d022050, 0xcc210540, 0x051963ff, 0x9483f120, 0x84820520, 0xccf2ff23,
0x259982ce, 0xff67e602, 0x4082f9ff, 0x20051d60, 0x215a82f9, 0x1e830300, 0x9a19f926, 0x04ffff08, 0x2508dd83, 0xf6e880ff, 0x19cdffff, 0xffff0598,
0xff713df0, 0x9a99faff, 0xd9eeffff, 0x0a00ff9a, 0x9c8b34b3, 0x0e01ff08, 0x9f82cccc, 0xcc090027, 0x0500ffcd, 0x2a1882f9, 0xff33b309, 0x711d0900,
0x820200ff, 0x068b2d67, 0xe87001ff, 0x15d1fbf6, 0x193fffff, 0x36211e82, 0x26ec83e6, 0x076666c2, 0x831500ff, 0xb3e022a1, 0x82098234, 0xe3ff263e,
0x00ff32b3, 0x2ca6820d, 0x0080efff, 0x1400ff08, 0xffff0180, 0x249282e5, 0x98992600, 0x05db558b, 0x841a0021, 0xe60d251a, 0x1000ff68, 0x15211a83,
0x22e082cc, 0x86ce4c1c, 0x711f201e, 0x062c05cb, 0x0e0534b3, 0xf72cf8af, 0xff8b15dc, 0x4233eb41, 0x25420966, 0x126a4205, 0xe8833520, 0xe2ba3528,
0x4c4200ff, 0xaf828bcd, 0xcc4c4222, 0x22116a42, 0x776b0cfb, 0x0b7a0c79, 0x272c820a, 0xff0a1716, 0x9a19eeff, 0x23057476, 0x66e6e9ff, 0x06844882,
0x42191685, 0x1e820df6, 0xe6212882, 0x231b8566, 0x9a191600, 0x00282d82, 0xff9a9989, 0x3433e4ff, 0x59426682, 0x616d4205, 0x2424fb42, 0xccccecfe,
0x4294828b, 0xf6426568, 0x068b2b25, 0x66b100ff, 0x68ffff66, 0x9a8232b3, 0x291c4642, 0xb306ffff, 0x54fb0734, 0xb34200ff, 0x8014240b, 0x42ffff00,
0x290832b3, 0x0e058b8b, 0x19e001ff, 0x1f01ff9a, 0xff1566e6, 0x32335cff, 0x665affff, 0xffff0566, 0xff01007e, 0x01008200, 0x7300ff05, 0x0482cdcc,
0x0533b328, 0x0d00ff7d, 0x1c820a17, 0x7082f720, 0x5e090025, 0x18ffffb8, 0x250b4fcc, 0xff0848a1, 0x4d82a9ff, 0xcfaaff23, 0x2325865c, 0xceccf5ff,
0x0023258b, 0x8232330a, 0xb3f63125, 0x0800ff33, 0xff8b0080, 0x34330f00, 0x4c0900ff, 0x09266282, 0xff086666, 0x40825600, 0x07560023, 0x0c8f18ae,
0xf41d2108, 0x0d0c8f18, 0x820ce221, 0x820d2025, 0xf2ff2525, 0x9a05f6e8, 0x2c844182, 0x66e62333, 0xe12300ff, 0x3a00ff06, 0xae8b3433, 0x1edcffff,
0x202882fa, 0x087f8324, 0xb81edc21, 0xc5ffff8b, 0xffff5ccf, 0x683233db, 0xff078b08, 0x666605ff, 0x9903ffff, 0x5b5b159a, 0x82c2ffff, 0xdfff26e2,
0xffffcc4c, 0x221683bd, 0x8234b3f2, 0x02e723a4, 0xc682868f, 0x4821f83b, 0x66feffff, 0xf7ffff68, 0x00ff29dc, 0xfffe7f02, 0x7b54faff, 0x800600ff,
0x25258200, 0xff7553fa, 0x65830400, 0x7989fd22, 0x192bd482, 0x0100ff98, 0x00ffbd92, 0x8268e607, 0xff04237f, 0xca82a4b1, 0xa4500d26, 0x994200ff,
0x20251b82, 0x00ff71bd, 0x23f4833d, 0xbb1f0530, 0x40272182, 0x00fff628, 0x82333340, 0x00822725, 0x7effff01, 0x75820100, 0x82ccbf21, 0x2804828c,
0x00ff0e05, 0xff33b3df, 0x28328201, 0xb5ffff15, 0x00ff6766, 0x20f0827b, 0x24748289, 0xffff2cd2, 0x232782fa, 0xf2f20200, 0x66220982, 0x8f828b67,
0xe1ba8728, 0xf3ffff06, 0xf182cd0c, 0x856bf827, 0x6bf1ffff, 0x208c8286, 0x223c826e, 0x826666f5, 0x4c6f276f, 0x61ffffcd, 0x6f829a19, 0x85ab1d32,
0xae1b00ff, 0x2500ff14, 0x00ffcdcc, 0xb59a1913, 0x0021d686, 0x22258320, 0x82cccce2, 0xc09e2236, 0x244b8200, 0xff0040b1, 0x820482ff, 0x2010820a,
0x22068508, 0x824e00ff, 0x24168338, 0x336100ff, 0x827f8233, 0x8b342106, 0xcc201683, 0x38830482, 0x40610023, 0x832d8200, 0x203f8206, 0x2216854c,
0x6a9effff, 0x5c21052a, 0x22558280, 0x8234b362, 0x1eda2366, 0x938266b8, 0x82e00821, 0xc0cb2211, 0x210a8200, 0x0a82a001, 0x83c0f621, 0x82202004,
0x83f82004, 0x9ef72c09, 0x0400ffb8, 0xff080080, 0x821ed1ff, 0x9e18230a, 0x0a8205b8, 0xff721d26, 0x146ee7ff, 0xf7200a82, 0xfb203483, 0xf6205683,
0x00213482, 0x21b68207, 0x34830100, 0x87820920, 0x8300ff21, 0x3400225e, 0x205e8240, 0x207082ff, 0x223082b0, 0x829022f9, 0x66a625f4, 0xe60300ff,
0x0b260482, 0x00ff9a99, 0x09826609, 0x6666012c, 0x3400ff08, 0x00ff4861, 0x3082a007, 0x6b17002a, 0x2f00ff85, 0x8d059a79, 0x57838282, 0x61830420,
0x04830220, 0xfc830982, 0x01200425, 0x8200ff8b, 0xffff2a0c, 0x8d33d3fd, 0xccfbffff, 0x204382cd, 0x218e8317, 0x438380d0, 0xff224e83, 0x0a8360f8,
0x1e850925, 0x82feffff, 0x030026ae, 0xffffcccc, 0x287382f4, 0x9a19f9ff, 0x4cf9ffff, 0x203482ce, 0x4d888292, 0x882906e6, 0xff069a99, 0x0661faff,
0x2105828b, 0x5c8280ca, 0x820e0d21, 0x281c2104, 0x2d2e6082, 0xffff08d4, 0xff703db6, 0x66e685ff, 0x3d82b505, 0x00266c82, 0xff48e125, 0x0482ecff,
0x9e1d0028, 0xe4ffffb8, 0x5182703d, 0xce4c6f25, 0x829e00ff, 0x21d08225, 0xe582e07a, 0x5c20c521, 0x0e29066a, 0xffff7a94, 0x8b3433f2, 0x4d591808,
0xb0fe2462, 0x10db6666, 0x1e01ff14, 0x04fb5422, 0x7217b872, 0x86181667, 0xfa2535df, 0x00ff3333, 0x05f954ca, 0xff9a9929, 0xceccfaff, 0x820200ff,
0xf9ff2314, 0x698232b3, 0x9a19f923, 0x22068208, 0x18cd4cee, 0x2208f2ca, 0x82ffff33, 0x088b210e, 0x0bf80f19, 0x4c0e0022, 0x0ab57518, 0x66e60622,
0x3b4a4485, 0x82032005, 0x05002358, 0x31823233, 0x33b3e926, 0xf0ffff81, 0x850af14b, 0x18dc205f, 0x202c5ff9, 0x845f821a, 0x053b4c44, 0x952b5482,
0xa500ff08, 0xffffcdcc, 0x189a9985, 0x260f3a47, 0x00ff8b34, 0x82cc4c23, 0x900020c6, 0x83342038, 0x99032238, 0x21f88898, 0xf894ff34, 0xf1211682,
0x18f884b3, 0x940eb772, 0x4b3420f8, 0x58830634, 0x3420f888, 0x5f82f89b, 0xcc4ce322, 0x8b27a784, 0x30fb0e08, 0x82b400ff, 0xbb01236e, 0xcd826250,
0x33330622, 0x3f255082, 0x0a00ff7e, 0x83cc8333, 0xf9ff230f, 0xf38282c0, 0x82ff4f21, 0xfeaf2400, 0x6cff05fa, 0xfd310543, 0x00ff707d, 0xff9a9901,
0x52b8fcff, 0x800000ff, 0x21098200, 0x2982c475, 0x34332838, 0x05befeff, 0xfeff051e, 0x06aec7ef, 0x3d2800ff, 0x4101ff71, 0x3a82e2fa, 0x82730021,
0x8a032260, 0x233a853c, 0xae470300, 0x35068f7a, 0x08908202, 0x5000ffdb, 0xff050601, 0xcd4ce3ff, 0xaff4feff, 0x8a18159e, 0xa4180b53, 0xb3200e3c,
0x0a20fa82, 0x4018b982, 0xcd230713, 0x82db088b, 0x4c0d236b, 0xbd828bcd, 0x00201882, 0x09154018, 0x09e2c418, 0x1b83cd20, 0x56853420, 0x063b0826,
0x44fb5cf7, 0x760e8676, 0xd4202055, 0x0c89c618, 0x0a1ea418, 0x7605047f, 0x4c36071b, 0x1100ffcc, 0x088b85ab, 0x0e06d4f7, 0x80f501ff, 0x8301ff00,
0x6d834821, 0x82004021, 0xb81e241a, 0x83fbffff, 0x211d2509, 0xeaffff48, 0x0a2d0983, 0xff0848e1, 0x48e1f3ff, 0xf1ffff91, 0x251f829e, 0xff00c0fe,
0x2983f5ff, 0x00e0f722, 0x34381a82, 0xffffe23a, 0x05d60368, 0x669700ff, 0xffee0666, 0xe23a6200, 0xfaffff05, 0xff295c82, 0x151ec57d, 0xff0674fc,
0x399d18ff, 0xc3ab1809, 0x05b3750a, 0x79822020, 0x04820720, 0xff361883, 0x00e00800, 0x00ff088b, 0xff9a190f, 0x9a19ffff, 0xff3a8b05, 0x88823200,
0xe6baff27, 0x4600ff66, 0x231682d9, 0x0834b3e3, 0x14839282, 0xb81eef26, 0xecffff82, 0xfc20ad83, 0xea229783, 0x1a82b81e, 0x8299ff21, 0x82f62025,
0x07002914, 0xffff6666, 0x9566e6f6, 0xdf2d5383, 0x95060180, 0x0700ff8b, 0x00ff9082, 0x20718309, 0x21d082fe, 0xc6840900, 0x00283e83, 0x8248e115,
0xde1300ff, 0xf320e682, 0x00215e82, 0x34fc8310, 0x50f84600, 0x451c00ff, 0x3100ff1e, 0x00ffce4c, 0x8b9a1945, 0x20a282dc, 0x21908310, 0xb447e600,
0x82578306, 0x82002052, 0x820a82c9, 0xab0829c5, 0xff938b07, 0x66e6f8ff, 0xf7200582, 0x08253382, 0x14f88b0e, 0x181c8215, 0x2113e0d3, 0x3819b4f7,
0xd018170d, 0x50180b93, 0xfb200cfa, 0xd4183282, 0xcb251544, 0xfb34f707, 0x276a83b4, 0xff34b311, 0xcd4c0e00, 0xcc290483, 0xb31100ff, 0x9b088b33,
0x21838207, 0x1882332c, 0x82cc2321, 0xcc232118, 0x2c211882, 0x21188233, 0x838224f7, 0x1e823182, 0x824c0e21, 0x09d44414, 0x7a00ff28, 0xff073e8a,
0x16822500, 0xd1f2ff26, 0x1a00ffea, 0xff365882, 0x8ba470dc, 0x33d6ffff, 0x076b0834, 0x6060568b, 0xfb088b56, 0x1c760624, 0x45cc200e, 0x082105b0,
0x1729797b, 0x1814fb21, 0x20178cd0, 0x184b824b, 0x4209fd8a, 0x3d080ad5, 0x0e0714f7, 0x8100ff2f, 0x84f79a99, 0x0500ff15, 0xffff0040, 0xff00c0e0,
0xb85e1400, 0x1ee6ffff, 0x1b00ffb8, 0xffff48a1, 0x0800c0f2, 0x73f8ffff, 0x1200ff33, 0xff86e2fa, 0x66661800, 0xde18ffff, 0x8b210a91, 0x223e82ab,
0x82482127, 0x800124f8, 0x8290a600, 0x48612721, 0x9e0700ff, 0x38829eb8, 0x3882e420, 0xb8f2ff26, 0xebffff52, 0x1354e018, 0x4c835e20, 0x34339122,
0x07224282, 0x3582cdcc, 0x9800802a, 0xff1a00ff, 0x0200ffff, 0x00232f82, 0x82cd4c2c, 0x19d12244, 0x205d829a, 0xe4e01802, 0x19292719, 0xb500ff9a,
0x46833233, 0x7832b323, 0x67e11890, 0x289c830e, 0x86abfaff, 0x331f00ff, 0x25898234, 0x00ff32b3, 0xc682e619, 0xce4ce42b, 0x4c0d00ff, 0x00ff08cc,
0x260f8276, 0x9a996900, 0x18d4fb15, 0x230a98c2, 0xe3ffff9a, 0x0848d818, 0x0714fc2b, 0xdcffff8b, 0x00ff66a6, 0x8304821c, 0x00ff2219, 0x211e8223,
0x3382f708, 0x1583c118, 0x3383f820, 0x48821a83, 0x00237b82, 0x82cccc1c, 0xcccc2642, 0xfc5b088b, 0x05c67d34, 0xcd4cf722, 0xf8225682, 0xfe8233b3,
0x8b343328, 0xcc0800ff, 0x068508cc, 0x4c211182, 0x821684cd, 0x33b32515, 0x74f7088b, 0x0c29d518, 0xc0f8ff23, 0xceaf1900, 0x40f72509, 0xf8ffff00,
0xe74a6083, 0x284c8205, 0xeb04fb08, 0xb9ffff15, 0x25268340, 0xff00c0c6, 0x0a833900, 0xe0180020, 0x36820cc0, 0xff201683, 0x8b211583, 0x1ce11808,
0x835f831f, 0xb9ff2149, 0xff245f83, 0x9a192900, 0x992a0482, 0x00ff159a, 0xffb89e1b, 0x4e830d00, 0x48611426, 0xe11900ff, 0x05200482, 0x1f340e83,
0xff080040, 0xb8ded8ff, 0xfeffff06, 0xffff7a94, 0x861e05e5, 0x2605a441, 0xce4cf8ff, 0x18ff0878, 0x330a88e2, 0x48e12e00, 0xfdffff06, 0x00ff5138,
0xff34332c, 0x9a19f3ff, 0x0c79e318, 0xcd203282, 0x7320e882, 0xf2231a82, 0x827066e6, 0x6766332a, 0xccd3ffff, 0xff0e08cc, 0x00807501, 0xe3a401ff,
0x958215d8, 0x98391131, 0xb31500ff, 0x0900ff34, 0x00ff90e2, 0x83cccc16, 0x992b34de, 0x00ff8b9a, 0xff666623, 0xd8a3dcff, 0xd4ffff8b, 0x82084661,
0x2ee92506, 0xf6ffff16, 0xff38cd82, 0xffcc4cea, 0xcccceeff, 0xffff087c, 0xffcecc30, 0x00804bff, 0xaaffff05, 0x00273282, 0x0533b354, 0x83b500ff,
0x30cf220a, 0x2c1582a5, 0xff9a9989, 0xf468c5fe, 0xecffff15, 0x243782cc, 0x059a99ac, 0x2a3e8287, 0xff7e66e6, 0x6866f2ff, 0x83efffff, 0x4cfb2253,
0x274d82cc, 0xff9a594e, 0x3433ceff, 0x5f204282, 0x00230a82, 0x8266665f, 0x8202200a, 0xffff21a2, 0x00267482, 0xff33b302, 0x5182ffff, 0xe6020023,
0x19ac8367, 0x180a7819, 0x480ec691, 0x00200650, 0x09944618, 0x200b4e49, 0x327f18ff, 0x82fd200c, 0x00002681, 0xffff4861, 0x206583fd, 0x226f8300,
0x82ce4cfd, 0xa4a02790, 0xa0ffffdd, 0x858232b3, 0xfabe3125, 0x83b200ff, 0x040039e9, 0xff9b71bd, 0x0b970d00, 0x1100ff98, 0x088f9a19, 0x665300ff,
0x1300ff67, 0x5439b984, 0xffffcdcc, 0x053233ab, 0x7001ff0e, 0x01ff6666, 0x15f6a8ad, 0xe61500ff, 0x26048266, 0x00ffb2dd, 0x18686623, 0x220768d9,
0x824e22ea, 0x822e203c, 0xd1ff237f, 0x6582a4f0, 0xcccc152d, 0x21eaffff, 0xffff8b48, 0x82ea91dc, 0x8233200a, 0x19ea22c8, 0x328b829a, 0xff3233c8,
0xcd4cc8ff, 0x82ffff05, 0x00ffcecc, 0x82713d7d, 0xb3373f30, 0x3700ff32, 0xbc0552b8, 0x5732ffff, 0xff5d150a, 0x34b366ff, 0xffff8505, 0xff9819ec,
0x2982f0ff, 0x83f0ff21, 0x82ec2044, 0xf9ff2eda, 0xff086666, 0x84abf7fe, 0x66a7ffff, 0x25498266, 0xfff6a8f4, 0x1f83fcff, 0x707df322, 0x2506cd76,
0xff856bf7, 0xff830800, 0x8f990028, 0x9900ff5c, 0x68829a99, 0xcd4c0627, 0xffff9288, 0x244682fe, 0x00800600, 0x22b7828b, 0x8266661b, 0x571420c8,
0x1a2510af, 0xffff0080, 0x19fa82eb, 0x220aa571, 0x83e6ffff, 0xe9ff212d, 0x8c562d82, 0x20e7820a, 0x2a1182f8, 0x99990200, 0xffff8e84, 0x8232b3f9,
0x686621e9, 0x66229482, 0x9f826866, 0xf2b2f722, 0x99208b82, 0xfd25c982, 0x00ffa826, 0x2859820c, 0x14ce0300, 0x660b00ff, 0x27818268, 0xff00a058,
0xcc4c0801, 0x052a9f82, 0x00ffc3b5, 0xff34b313, 0x04831000, 0x32330f22, 0xe6220e82, 0x25829166, 0x67669823, 0x202182b9, 0x21ba8282, 0xcc827eff,
0x01ff0e23, 0x2a2382ec, 0x00409501, 0xffffa415, 0x829002e7, 0x70d72486, 0x827272a4, 0x83c7207c, 0x2704826c, 0xff06fb05, 0xe2fa7100, 0x38343882,
0x00ff6866, 0x05666638, 0x1800ffa4, 0x00ff7eff, 0x8b989928, 0x00213883, 0x205d8282, 0x341d8217, 0xec91e8ff, 0x40feff05, 0xfeffa430, 0x15cc8cc9,
0xcffe00ff, 0x2904825d, 0xf7052adc, 0x8effff06, 0xcb823d0a, 0x99190127, 0x3301ffff, 0x220a8233, 0x82cd4cf9, 0xce4c2aec, 0xb3f7ffff, 0xfbffff33,
0x21e08219, 0x1382ccf6, 0x25057642, 0xff70fd97, 0xd683e2ff, 0x9ef7ff32, 0xfdffffb8, 0xffff9a99, 0xffe1faf6, 0x66660200, 0xd7233882, 0x8208920a,
0x3fd62406, 0x830500ff, 0xa9fd2344, 0x1b8294c1, 0xffea6426, 0x66660800, 0x1d239382, 0x82f3ceb9, 0x9c022cb8, 0x0900ff29, 0x00ff3233, 0x8267e604,
0x222b821b, 0x82ba0600, 0xb3062246, 0x2c258232, 0xff8f82cc, 0xceccf900, 0xfb26fb15, 0x27958226, 0xff9999a8, 0x00805700, 0xed270a82, 0x00ff4841,
0x1932b312, 0x20098e13, 0x210f82b8, 0x358270bd, 0x5c0f4e24, 0x048200ff, 0x12225f82, 0x158271bd, 0x1a82be20, 0x66661e22, 0x12202a82, 0x3a82cc83,
0x13202582, 0xec22cd83, 0x4678703d, 0xc4b52108, 0x2305ba43, 0xa4b0ffff, 0x29830982, 0x84abff28, 0xffff4b08, 0x2583fdbf, 0x1183f920, 0xc1188c82,
0xcd200904, 0xcc21e282, 0x214b82ce, 0x354c3306, 0x4bff2005, 0x00280a9f, 0x08ce4c06, 0x3f00ffcb, 0x00283c83, 0xffcd4c00, 0xec510000, 0x80215882,
0x25098200, 0x00ff0a57, 0xcd821901, 0x9a59002d, 0x2d00ff08, 0xffff3333, 0x8266e6d2, 0x4ccc28b2, 0x33ffffce, 0x82159a99, 0x32b3212a, 0xcc210482,
0x689787cc, 0x34200541, 0x08221884, 0xb9824b4b, 0x2183f920, 0xa765938c, 0x00ff2406, 0x82323306, 0x881f829e, 0x82322093, 0x20938314, 0x206582cb,
0x21658200, 0x22830100, 0x8f82ff20, 0x0483ff20, 0x9a208f82, 0x21829982, 0x1300ff22, 0xec227483, 0x29823233, 0x34b31227, 0x4cedffff, 0x22f682ce,
0x839899e1, 0x828f820a, 0xff08250f, 0x66e6b1ff, 0x88820484, 0x1a861082, 0x2a822482, 0x00200f83, 0x25823a82, 0x6082a820, 0x66570028, 0x26f70566,
0x508226f7, 0x9a192d22, 0xcc24eb82, 0xef0e05ce, 0x40256e82, 0x1901ffb8, 0x26ed8419, 0x00ff30ca, 0x82f6e862, 0xfaff314d, 0x0a00ff6b, 0x00ff0040,
0xffb97c09, 0x48a10700, 0x00310e82, 0xfdffff83, 0xff081ec5, 0x5c8f2300, 0x19f8ffff, 0x204c829a, 0x270a830a, 0xfff4a8fd, 0xf6a80800, 0x782b1482,
0x0300ff54, 0xffffcdcc, 0x82b8def5, 0x02112729, 0xd1ffff90, 0x2982d623, 0x82338021, 0x80d922c7, 0x205e8200, 0x229183d6, 0x82343391, 0x19fd220a,
0x215a8299, 0x64825238, 0x0023e782, 0x82d22d0a, 0x9999220e, 0x283b828b, 0x069a1928, 0x800b00ff, 0x06b84c00, 0xc3f9ff26, 0x0500ffd8, 0xff2b2682,
0x080eedf5, 0xffff01f7, 0x82291c3e, 0x4c6b2559, 0xe0ffffcc, 0xff2ee082, 0x66e60f00, 0x4cfbffff, 0x0e00ffcd, 0x8e82cecc, 0x98333322, 0x99218a82,
0x254e8299, 0xff646622, 0x7f83e4ff, 0x1918002c, 0xecffff9c, 0xff85cecc, 0x3083d9ff, 0x3433e328, 0xffff0880, 0x4782ccd6, 0x6666f023, 0x064f435e,
0x6666d522, 0x192b7f82, 0xfeff089a, 0xff9899d5, 0x82994d00, 0xf4ff21f1, 0x00213182, 0x21048202, 0x0482f5ff, 0x7d050021, 0x0822087a, 0x44823433,
0xd122ad25, 0x845300ff, 0x11fa2ee6, 0xffff91eb, 0xff2aaafc, 0x9a190800, 0x209882ff, 0x057e436b, 0xff078b2b, 0x48bf5f02, 0xe6e6feff, 0x2e664d66,
0x664dfc20, 0xd4f8292f, 0xdb34fc06, 0xffff8b15, 0x1334db18, 0x4d0bf246, 0xb64b13b2, 0x0bcc180d, 0x08114e0d, 0x4b7bab21, 0x308317e7, 0xcb4b3420,
0x0d514706, 0x34218c86, 0x841683ff, 0x10ce509b, 0x384ecc20, 0x0e083d05, 0xe401ffef, 0x16f89a99, 0x00ff9d15, 0xff343309, 0xfeff1300, 0xcc0400ff,
0x1400ffcc, 0x29054349, 0x06686639, 0x00ff8ba6, 0x5082b312, 0xcc0ce530, 0x80f6ffff, 0xe6ffff00, 0xff0800c0, 0x2882edff, 0x4ccfff2c, 0xdbffffce,
0xff6364e6, 0x1a83d1ff, 0x33b3e826, 0xeffeff08, 0xff274d82, 0x05999977, 0x83fbffff, 0xccfd2115, 0xfb282582, 0xffff9a19, 0x86ccccfe, 0x76239183,
0x8206cd4c, 0x33b3274d, 0xf7ffff8b, 0x76829919, 0xf92b1d83, 0x00ff85eb, 0x089a1907, 0x83b6ffff, 0x3355220a, 0x22428232, 0x82d538f9, 0x67e62515,
0x740200ff, 0x0c22a082, 0xaf823333, 0x829e4f21, 0x2a6c8333, 0xf6282000, 0x00ff059b, 0x825c8f08, 0xcd4c2711, 0x020a00ff, 0x9844ff8f, 0xbd082e05,
0xfcffff71, 0xff089919, 0xcd4c3900, 0x20258272, 0x238e8263, 0x66663100, 0x6d275682, 0x00ff3d0a, 0x8200805e, 0x91f5270a, 0x0600ffeb, 0x3682c4b5,
0xff0bd73a, 0x8e820f00, 0x170b00ff, 0x0500ff0a, 0xff08ce8c, 0x29dc2d00, 0xf31600ff, 0x00218b82, 0x22a6820f, 0x82f50700, 0x66132229, 0x252e8266,
0x00ff52f8, 0xd8829910, 0x00c0f922, 0xc2222982, 0xba8266e6, 0x5e82e620, 0x82670021, 0x34002115, 0xfe250a83, 0xfc66661b, 0x09cb4136, 0x0e9c4419,
0x9a4dd420, 0x21ce410c, 0x2419aa42, 0x01ff2f0e, 0x28a082b8, 0x9a99ffff, 0x9fffff15, 0x229c82b8, 0x82c23560, 0xde5f27f6, 0x5f00ffb8, 0x0a8234f3,
0x7c5f0928, 0x610900ff, 0xe7828b89, 0xff813526, 0x84a0f6ff, 0x48260f83, 0xe9ffff08, 0xe7824861, 0x05d7a322, 0x89261588, 0xcdf0ffff, 0x0f828b90,
0x8248a121, 0x779e2104, 0xa0202582, 0xff23f382, 0x82ad07a0, 0x66bc2725, 0x4300ff66, 0x56829a99, 0x28dc2e22, 0xeb253b82, 0x1d00ff85, 0x2c4582e1,
0xff3d8a34, 0xc435f4ff, 0xa33900ff, 0x373482d8, 0xff3273f4, 0xf6283800, 0xe6cbffff, 0x2600ff67, 0xffff70bd, 0x8bcdccc6, 0x7a281a82, 0xff060080,
0xe13aefff, 0xf1236682, 0x18ff85ab, 0x2807274e, 0xff085c4f, 0x66e6f7fe, 0x20178207, 0x2d2f82f2, 0x00c00a00, 0x40f5ffff, 0x0c00ff00, 0x39829a59,
0x841f0021, 0x3eea21eb, 0x0d227e82, 0xd0820040, 0x9ad90923, 0x3a4118ff, 0x1e452207, 0x2b718208, 0xff074901, 0x9a192a00, 0x7000ff06, 0x8f222d83,
0xb782ffff, 0x66e69f27, 0xcc9fffff, 0x20e884ce, 0x20d88383, 0x27648276, 0xff80caf0, 0x7d5f0900, 0xb8200f83, 0x16273c82, 0xffffb89e, 0x82285ce9,
0x2415875e, 0x320f00ff, 0x2168836f, 0x3441b85e, 0x60002206, 0x41ee8221, 0x60220565, 0x5682ae47, 0x8f83ca20, 0x7c5f0922, 0x78204683, 0x70203083,
0x88203089, 0x00235686, 0x83d8a316, 0x21468456, 0x20825278, 0x32330f22, 0xcc21dc82, 0x2d5682ce, 0xfb08ce4c, 0x7001fffd, 0xff150a57, 0xbb845700,
0x5c0f1622, 0x11272382, 0xffff3d0a, 0x82cc0cee, 0xebe923ab, 0x06850886, 0x0f211182, 0x2b16845c, 0xd7eaffff, 0xff088b0a, 0x67e6a8ff, 0x503bef82,
0x0e075c0f, 0xfffff4f7, 0x159a99d2, 0x66e2ffff, 0xffff7f66, 0xff0080df, 0x8266f9ff, 0x19de22fe, 0x832b839a, 0x23168506, 0x9a990600, 0x97202684,
0xcd22a482, 0x48186666, 0xff201713, 0x15754818, 0x42ffff39, 0xff073433, 0xe17ab3ff, 0x4c2c00ff, 0xccffffcc, 0x00ff1f85, 0x8234b352, 0x4e5e20b9,
0x6318053a, 0x9a200b6e, 0x20d05d18, 0x3433a122, 0xb0834482, 0x4e83ad20, 0x0983b320, 0x34b3d322, 0xbd209d82, 0x1805065f, 0x5013db9c, 0xff2416a2,
0x9a9932ff, 0x79209d82, 0x0124e382, 0x15989900, 0xa3325d18, 0x32336322, 0x18078f6f, 0x20349d5a, 0x3cb01900, 0xffff2b69, 0xff343393, 0x9a9979ff,
0x46608b15, 0x07fd6206, 0x08c35d19, 0x14631a20, 0x0a656408, 0x0d63ab20, 0xeaff2307, 0x32630080, 0x64e52006, 0xb74c0f36, 0x186b200a, 0x18201564,
0x3141e482, 0x15f4fb8b, 0xe62200ff, 0x00ff8b66, 0xffce4c20, 0xdb82f0ff, 0x1919002a, 0xe4ffff98, 0x910866e6, 0x2e06895a, 0xff9a190a, 0x32b3ffff,
0x800600ff, 0x85089100, 0x00ff2606, 0xffce4c00, 0x201b8200, 0x25108485, 0xe1ffff08, 0x478266e6, 0x2c829920, 0x8266d721, 0x80142409, 0x828b5e00,
0xbb4b1816, 0x05515314, 0x0700ff27, 0xffff3333, 0x06676cf8, 0x8b088b2b, 0x157a5b06, 0xffff9f8b, 0x214682e3, 0x46822800, 0x83f2ff21, 0x4c11221c,
0x254982ce, 0xffcdccfc, 0x14830400, 0x9a99f922, 0x0f834182, 0x99fbff28, 0xff7e089a, 0x9f82eeff, 0x83e3ff21, 0x82d7201b, 0x0877291b, 0x00ff718b,
0x76008015, 0x22119541, 0x82a58ba0, 0x00ff2667, 0xf79a995f, 0x05d84835, 0x0d225682, 0x1f590080, 0x12002305, 0xf94f0080, 0x8b322405, 0x830e00ff,
0x094554e4, 0x83055248, 0xce531828, 0x4cee2207, 0x212d82ce, 0x3482edff, 0xf2ffff22, 0x34204485, 0x22052d49, 0x478b2b08, 0xff23070c, 0x8333b3f1,
0x59cc204c, 0x30940879, 0x8c953784, 0x8c843320, 0x8c891b82, 0xf8ef0e27, 0x7b15cbe4, 0x06b75406, 0xf518ff20, 0xb62509a1, 0xfb08c08b, 0x20188b14,
0x225a8299, 0x8366e6d5, 0x067b2418, 0x18e5ffff, 0x22132eea, 0x82077cf7, 0xc2272764, 0x2000ff90, 0x0483713d, 0x00ff7025, 0x828fc227, 0x890125df,
0x9d069a19, 0x12211d82, 0x08c282cc, 0xf6a8f723, 0x330c00ff, 0xf1ffff32, 0xf7085c8f, 0x7cffff02, 0xff05ae47, 0x9c990a00, 0x66f5ffff, 0x0500ff66,
0x2226824c, 0x820080f0, 0xe6f02875, 0xffff0867, 0x8233b393, 0xe5ff215c, 0x20089167, 0x26ff18ea, 0xa4fc2f08, 0xeb1554f7, 0x3307eb06, 0xfbffff06,
0x33827b94, 0x856bfc27, 0x6bfcffff, 0x080a8284, 0x7c94fb20, 0xff073308, 0x9819e101, 0xffff158b, 0xeb0200b0, 0xaeffff05, 0x2b0666e6, 0xa100ff07,
0x34829819, 0x68e61e27, 0x07eb158b, 0x2512822b, 0x34f706eb, 0x871824fb, 0xff200b80, 0x830d0c50, 0x08b06681, 0x68111c42, 0x1a200e18, 0x3285af87,
0x8b243c82, 0x2bd4fb08, 0x430cf966, 0x8b200ae4, 0x71845084, 0x4422e243, 0x0e251640, 0xf754f7ef, 0x2e714bb4, 0x8207ab21, 0x90cd187b, 0xffff2422,
0x823433f8, 0xebff292b, 0xffff3233, 0xffccccfe, 0x7c180982, 0xeb3607ca, 0xff08cc4c, 0x66667a00, 0xcc2400ff, 0x00ff05ce, 0xff68660b, 0x0f830300,
0x04820c20, 0x82fcff21, 0x0700282e, 0xffff0080, 0x826666f7, 0x83092029, 0x83f72043, 0xcc022523, 0xf3ffffce, 0xfc211983, 0x2552824c, 0x0832b3f4,
0x40825679, 0x9a995322, 0x220df549, 0x82ceccf0, 0x33ef22f6, 0x2b2c1932, 0x05bf4b07, 0x9a99f231, 0x4ceeffff, 0xfb088bcc, 0xffff0614, 0x8234b3f5,
0x66f62725, 0xffff8f66, 0x8e82e6f9, 0x6f820820, 0x82053352, 0x218a82b4, 0x8a830a00, 0x34330327, 0xb30900ff, 0x208a8234, 0x277b820c, 0x00802500,
0xa1ffff05, 0xe3224b83, 0x0a8232b3, 0xa083f420, 0x9c52cb20, 0x20a08205, 0x2e9b83cd, 0x5c9919e5, 0xf2ffff08, 0xffff9919, 0x8234b3e7, 0x19f32125,
0xe9237c82, 0x83736666, 0x719a2415, 0x8263088b, 0x99de297c, 0x2000ff99, 0xb38b0080, 0x47275d82, 0x8b0766e6, 0x832a00ff, 0xb31c2179, 0x25257482,
0x00ff6766, 0x22228328, 0x829a190c, 0x83542020, 0x6619220f, 0x2af28266, 0xffcdcc04, 0x33331b00, 0x830100ff, 0x991b2293, 0x2039829a, 0x20a4841b,
0x05ce4707, 0x41821120, 0x83f2ff21, 0x830e203c, 0x61ed2090, 0xef2205f5, 0x76823333, 0x3d82f020, 0x320a1a4b, 0xe60000ff, 0x6b056b66, 0x6650ffff,
0xffff1566, 0x829a19b8, 0xfbff2188, 0x264f3782, 0x82fc2005, 0x040026dc, 0x088b33b3, 0x2266828e, 0x8266e602, 0x85ff8276, 0xb302227b, 0x219b8232,
0xab82e60d, 0xce4c1822, 0x11209b82, 0x1e259183, 0x00ffcccc, 0x83fe820e, 0x00ff22de, 0x24ba830a, 0x08cecc21, 0x22fe825a, 0x44053233, 0xfb2c06c5,
0xffff9a19, 0xff33b3f6, 0x0080f3ff, 0xf1349882, 0x8b0866e6, 0xff1cfb07, 0x9a99dfff, 0xff06b315, 0x0080d8ff, 0xdb548b83, 0x291c2605, 0x33fdffff,
0x21af8232, 0x0983e13a, 0xff083426, 0xf6a8d7ff, 0x17395718, 0x2306395c, 0x00c00a00, 0xb3358182, 0x0d00ff34, 0x088b0040, 0x155be4f8, 0x80b3feff,
0x00ff0600, 0x20d98308, 0x271a830f, 0x9b008007, 0xb30600ff, 0x10285d82, 0xff08cc4c, 0x9a193601, 0x0c75e118, 0x8311c25c, 0x85ff2011, 0xb3f22104,
0x647a9018, 0x19a4002e, 0xbaffff9a, 0xff150080, 0x3333faff, 0x3420af83, 0xe6288182, 0x0000ff66, 0xffff32b3, 0xcd55ba19, 0x82663e21, 0xe65d21d7,
0x016e3510, 0x7567202e, 0x3322086e, 0x6e7500ff, 0x75cd2013, 0x9920086e, 0x016e3510, 0xff6725e3, 0x9a190a00, 0x92c49018, 0x02ffef32, 0xff68663f,
0xae47a601, 0x00ff8815, 0xffa4f00e, 0x3505874b, 0xffaec70a, 0x64e6efff, 0xfeff088b, 0x0668e640, 0xc0f0ffff, 0x1c828b00, 0x29dc2808, 0x38f5ffff,
0xfdffff52, 0xffff8f02, 0x085c0ff1, 0xe6c0ffff, 0x05d4fb66, 0x1bfeffff, 0xf6ffffe7, 0x00ff1098, 0x821a7002, 0xfa3e2109, 0x1327f282, 0xf8fffffe,
0x89089a99, 0x00ff2e0a, 0xffd82f08, 0x14aefbff, 0x970900ff, 0x2f62820a, 0x9a19ff00, 0xbfffff06, 0xff0700c0, 0x33b3d0ff, 0xe5220b82, 0x6e8271bd,
0x8282ea21, 0x82ea2264, 0x230a8290, 0x0870bde5, 0xf7270682, 0x00fff027, 0x82022b07, 0x80d52154, 0xd7264982, 0x0000ff8d, 0x5e829002, 0x9a19df22,
0x2a220a82, 0x158205ac, 0x82f8d321, 0x8202210a, 0x29212982, 0x21048378, 0x14828b04, 0x087ad42f, 0xf3ffffff, 0x1a00ff34, 0xffff5455, 0x099e4deb,
0x829a9921, 0xcfff2884, 0xcb0652b8, 0x8201ff07, 0x8206204f, 0x10982199, 0x09273482, 0x00ff7413, 0x82e04f04, 0x7c1421bd, 0x68214982, 0x20698272,
0x820a8606, 0x9c6f21e7, 0xc0212982, 0x20fb8384, 0x210982e8, 0x62826666, 0xe01ac036, 0xff05d4f7, 0x6466c6ff, 0xb8d9ffff, 0x00ff1552, 0x2b343313,
0x9e291182, 0xff061e05, 0x162ef6ff, 0x22a482eb, 0x82989958, 0x4c76230c, 0x20828bce, 0xf49d0922, 0x74222083, 0x7a837248, 0x837cdf21, 0x3a782120,
0x56222d83, 0x208233b3, 0x33f6ff23, 0x21418433, 0x20829919, 0x152e1322, 0x85214184, 0x2441821f, 0xfb295c74, 0x24428294, 0xf7ae4716, 0x22578204,
0x8233b366, 0x75f42315, 0x0d82fbc3, 0x8f8eff23, 0x2230825c, 0x82d7a3a2, 0x0b002344, 0x2284b85e, 0x22839520, 0x540b0023, 0x2122847c, 0x53839953,
0x9999dd22, 0xff232282, 0x840080f4, 0xb3662222, 0x22378232, 0x84b04716, 0x8e330822, 0x0e061e85, 0x3802ffaf, 0x94f7cc4c, 0xffff6e15, 0x2100e0ff,
0x00faffff, 0xb1ffff42, 0xffff9a19, 0x082406b4, 0xccdeffff, 0xe1ffffce, 0xffff6666, 0x82cccceb, 0x6866220e, 0x2829827e, 0x7e086666, 0xa11f00ff,
0x26168248, 0x00ff00c0, 0x82b89e21, 0xb8de261b, 0x9e1d00ff, 0x213582b8, 0xbd822eb1, 0x7bd44c2e, 0xf395ffff, 0xff6e9133, 0x33330000, 0xfb281682,
0xff8b00a0, 0x00a0fcff, 0x99210482, 0x230a829a, 0x080080fb, 0x40201c82, 0xe4211082, 0x213d821e, 0x0982e006, 0x16ae9d25, 0x835100ff, 0xe6b62224,
0x361e8264, 0xffcd0c54, 0x3433aeff, 0x335300ff, 0x0100ff33, 0x8bab66e6, 0x838bab08, 0xff342a0e, 0x9af9feff, 0x195400ff, 0x20328298, 0x254c83e0,
0xff9c9951, 0x51824800, 0xe6060028, 0x6200ff64, 0x6082cd4c, 0x1b233c83, 0x8208cdcc, 0x80042134, 0x2f827d84, 0xd5830320, 0x34b3fb28, 0xfeff088b,
0x4a82b3e7, 0x66669122, 0x0c20b682, 0x1220d083, 0x0e20cb83, 0x10310483, 0x00ff48e1, 0xff908210, 0x00c00e00, 0x00ff9e08, 0x21eb8212, 0x45821400,
0xff221083, 0x2e831400, 0x48e10b22, 0xef20de82, 0x46201483, 0xff210482, 0x281483dc, 0x5e00803e, 0x4c2700ff, 0x201a82ce, 0x71d882fb, 0x2021064c,
0x82f88300, 0xfcff2155, 0x5e23fd82, 0x82d8ffff, 0x2531842c, 0x66a6c1ff, 0x4583ffff, 0x7fb9ff23, 0x25f982ff, 0xffb85e14, 0xcb83f4ff, 0x48211426,
0xa1f1ffff, 0x12208a82, 0xed202d83, 0x95828a82, 0xff70fd26, 0xb99ef0ff, 0x2606af64, 0xff32b3ee, 0x82e60c00, 0x19ed2e42, 0xff0e089a, 0xcc4c5d01,
0x9e9001ff, 0x2ed482b8, 0xff9a9912, 0xae47bbff, 0x0600ff05, 0x827134b3, 0x231083c5, 0xffcecceb, 0x22059462, 0x829819f7, 0x333a276f, 0xeaffff32,
0x2582cecc, 0x34b31527, 0x19f8ffff, 0x83f68299, 0x4ceb22d0, 0x23b582cd, 0x08cdcce8, 0xee230682, 0x18ff6766, 0x82082df9, 0xcccc2696, 0x99f5ffff,
0x20e6829a, 0x272b83ad, 0x0532b3c4, 0x66f2ffff, 0xf5218882, 0x21458333, 0xa6826866, 0x8ccccc27, 0x4ceeffff, 0x276682ce, 0xff981903, 0x6666cdff,
0x02256682, 0xffffce4c, 0x22a782da, 0x8219e2ff, 0x83e020a1, 0x33da232f, 0x4b828b32, 0x6666f027, 0x00ff7c8b, 0x2b528305, 0x95ce4cf3, 0x00ff5e08,
0x05323326, 0x0d201382, 0x76829284, 0x83070021, 0x54eb205b, 0xf7280526, 0xff069a99, 0x0080f9ff, 0xfb20a282, 0xff205283, 0xfa202683, 0xfe29ac83,
0xff0866e6, 0x8f02bdff, 0x2499827e, 0xff8f02e8, 0x252084ff, 0xffc2b5e7, 0x78830b00, 0x48e1f327, 0x331500ff, 0x28258234, 0xffe1faf5, 0x98991100,
0x05064e8b, 0x050a0023, 0x210f821f, 0xb8820080, 0x33b31b27, 0x803000ff, 0x21b88200, 0x3082e105, 0xbd820a20, 0x19030023, 0x21448299, 0x2f829a99,
0x66820b20, 0x0d200682, 0xfc2d5183, 0x00ff713d, 0xff32b30c, 0xa4f0f8ff, 0x27578296, 0xffa886d3, 0x34334500, 0xf0278182, 0x00ff4c77, 0x82323318,
0x937827dd, 0x1600ffab, 0x628250ad, 0x829a9921, 0xb50a2a62, 0x0800ffc3, 0x00ff9a59, 0x23b8820d, 0xb81e0400, 0x8c260982, 0xffffffcd, 0x1e82b81e,
0xe2ba4722, 0x592dbb82, 0xffa8059a, 0xf628feff, 0x4c1b00ff, 0x266682cd, 0x00ff0a97, 0x82cccc12, 0xe2fa2549, 0x1f00ff08, 0x28223a83, 0xa7821e45,
0x9d830c20, 0xea860f22, 0x802c1f82, 0x0900ff00, 0x00ff8e13, 0x8b34b313, 0x1c222582, 0xac8266e6, 0xcc4c1928, 0x96ecffff, 0x1d4eff2c, 0x17e42b05,
0x078b080a, 0xf854f70e, 0xf3591554, 0xffe5180d, 0x072b2608, 0xeb0614fb, 0xf75d1807, 0x22818308, 0x857a540e, 0xcb08272d, 0xfb54fb06, 0x1d821594,
0x66e63527, 0xfa2a00ff, 0x200482e1, 0x2bcf8219, 0x8b1f0535, 0x0614f708, 0xffb68bc0, 0x0b850619, 0x5c506420, 0x74fb2117, 0x2818ed50, 0x34f70764,
0xffff158b, 0xf53319d3, 0x838b2013, 0xffcc2f17, 0xcdcc2300, 0x33dcffff, 0x2c00ff34, 0xf0833333, 0x16850683, 0xcc201b82, 0x2c23a182, 0x85083433,
0x20288306, 0x201b8333, 0x245485cc, 0xf734f708, 0x18c48254, 0x2314765f, 0x4ceeffff, 0xff223e82, 0x5b82b3f1, 0x5f180e20, 0x84200d08, 0x20052a52,
0x19168200, 0x6608b2da, 0xff2309d4, 0x8284abf1, 0x54ee249e, 0x52ab087c, 0xab200560, 0x601830a8, 0x8c961603, 0x8334f721, 0x21bed95f, 0x1f532b4b,
0x0e002307, 0xf486cc4c, 0x0820e883, 0x4131f85b, 0x4c20094b, 0x2007f85b, 0x205e83cb, 0x17295cff, 0x8b203092, 0xa7537683, 0x20918206, 0x147c41cd,
0x5333b321, 0x082305a5, 0xdceb34fb, 0xff0e33be, 0x34336e01, 0xff1554f7, 0xcccc2100, 0x3d00ff06, 0xa18266e6, 0x9a193225, 0x83cdffff, 0xc2ff210a,
0x20057a6d, 0x211183eb, 0x168299f2, 0x3233ee2d, 0x66edffff, 0xf9ffff66, 0x82086866, 0xcc4c2126, 0x20181843, 0x171843f4, 0x3200ff25, 0x820734b3,
0x295c3047, 0x990600ff, 0xf2ffff98, 0x00ffd7a3, 0x82cecc11, 0x4414207d, 0x8a82059d, 0x23202682, 0x8e831682, 0xdc3d0025, 0x83088b29, 0x82cd20a6,
0x841d20a6, 0x4c1824a6, 0x8200ffcd, 0x82338204, 0x82082010, 0x80112606, 0xf6ffff01, 0x251682cc, 0xffcccc0f, 0x2083f5ff, 0x34b30d26, 0xf3ffff08,
0x0022b182, 0x14824c10, 0x0080f826, 0x661400ff, 0x1620e783, 0xe018dc84, 0xff232464, 0x82e6e9ff, 0x233c83f3, 0x9a99ebff, 0xff215085, 0x225b84ef,
0x82ce4cf5, 0x205b83c0, 0x287583f6, 0x8b3433f0, 0x7feeffff, 0x239182ff, 0x9a19e2ff, 0x7782a383, 0x33b3e727, 0xe61d00ff, 0x34c58368, 0xfbcccc31,
0xd4fb1534, 0xf7076b06, 0x07ab06d4, 0x01ffaf0e, 0x292982cf, 0xcc4ce5ff, 0xff7f8d15, 0x0c83fbff, 0xceccf328, 0xf8ffff81, 0xbf8266e6, 0x9819f622,
0x68200a83, 0xe6206882, 0xff200482, 0xf5200e83, 0x00217282, 0x20828405, 0x2792827f, 0x00804400, 0x7fffff05, 0xff216782, 0x250a84bb, 0xff3333f5,
0x2582faff, 0xe6f2ff27, 0x0000ff66, 0x203982e6, 0x235982f6, 0x98190700, 0x99215384, 0x210a82ff, 0x6955869a, 0x02002505, 0x08979a19, 0x4b83ad82,
0x9a999222, 0x97274b82, 0x00ffaec7, 0x82343366, 0x63f72c0a, 0x0800ffd7, 0xffff9999, 0x82a4f0fc, 0x20248330, 0x221e8303, 0x8299990b, 0xc5032c34,
0x0b00ff1f, 0x00ff0080, 0x8252f809, 0x82662028, 0xfd0b256f, 0x0100ff71, 0x00269f83, 0xff7b948f, 0x48831500, 0x83400021, 0x5484281a, 0x00ff057a,
0x82ce4c05, 0x18042134, 0x33260482, 0x0600ff32, 0x58823cfe, 0x23052e5f, 0x8bcc4c0c, 0x34251683, 0x01f9ffff, 0x06ed55c4, 0xe8fbf422, 0x40206a82,
0xff233582, 0x8286ab7b, 0xb38f2140, 0xea221f82, 0x0a82cccc, 0x64e60b28, 0x4cfeffff, 0xf24795cc, 0x03002805, 0xffffcccc, 0x820080f4, 0xcc032230,
0x210a82d0, 0xba826766, 0xf3202483, 0xff238082, 0x826866f7, 0x67662528, 0x97ffff08, 0x99202983, 0x18204484, 0xff23d582, 0x8266666d, 0xe65021ef,
0x6228c182, 0xff15ce4c, 0x9a190000, 0x65820484, 0x20836f20, 0x2084c420, 0x82b3ea21, 0x4c7e21b2, 0x5a217b83, 0x22c782cc, 0x82cdcc59, 0x99822736,
0x1200ff98, 0x0a826766, 0xa782c820, 0x8c720022, 0xff212082, 0x374c82ff, 0xc2b5ffff, 0xdefeff05, 0x0e0772bd, 0xf704f82f, 0xffff15d4, 0x06cc0cd0,
0x03235a82, 0x5505db26, 0x2b2116d7, 0x08527e06, 0x270d017d, 0xf0ffffff, 0x5b053b0e, 0xfb211f97, 0xc1b21894, 0x00ff2417, 0x82cd0c10, 0xf3ff2336,
0x76827b33, 0x42f7ff21, 0x9a230511, 0x82f8ffff, 0x080026a6, 0x088b67e6, 0x91cd18ab, 0x25ad8217, 0x059b9a19, 0x408314f7, 0x8566e621, 0x129b6e40,
0xda184084, 0xef6d0891, 0x2840820a, 0x059b980c, 0xf30f00ff, 0xb0fe1868, 0x0ae3560c, 0xbb83f720, 0x18570020, 0xffff3813, 0xdb9a1940, 0x3b06eb15,
0xdb062b07, 0x9f00ff07, 0xe4fb66e6, 0x1874fb15, 0x210c0d65, 0x646b0700, 0x33332211, 0x201683ff, 0x051451ff, 0x1805646b, 0x5a137fec, 0xff220635,
0x5118ccf8, 0xf720073c, 0x08234c82, 0x9214f78b, 0x8b332165, 0xca6b4f84, 0x83cd2005, 0x51658460, 0x6585077a, 0x6418cc20, 0x64180735, 0x65840a03,
0x8306965a, 0xffff2116, 0x0e206584, 0x5f844418, 0xc45cb918, 0x9a99af24, 0xc07384fb, 0x4c23211a, 0x3f25eb18, 0xf88b0e24, 0x384a1534, 0x30681808,
0x14f7220d, 0x16704a06, 0x6f14fc21, 0xff2107df, 0x090f19ff, 0x8bb63608, 0x14f808c0, 0x6b14f707, 0x4b064b15, 0xcb06cb07, 0x54fb4b07, 0x25078415,
0xab074b06, 0xc9824cfb, 0x182bfa72, 0x201a95d7, 0xcc7318b3, 0x400d300c, 0xf7088b00, 0xf715a314, 0x00ff079a, 0x8266664b, 0xb85e2204, 0xfa6e1805,
0x00ff2409, 0x82ce4c14, 0x800c2be5, 0xf3ffff00, 0xff080080, 0x0a835a00, 0xae87a522, 0x15832586, 0xffff8b23, 0x835882eb, 0x2125860a, 0x4b822cff,
0x802cff23, 0x28258200, 0xffcc4c00, 0x32330300, 0x052545ff, 0x68660322, 0x03245082, 0x8b08cc4c, 0x96237382, 0x82ebcccc, 0x336922dd, 0x0da15934,
0x7009b86c, 0xff2419d5, 0xccccd6fe, 0xbf2e3682, 0x54f7ffff, 0xffaf0e05, 0x6666c000, 0x4e8214f7, 0x48613f22, 0xf62c9382, 0x00ffc2b5, 0xff84ab27,
0x703d2900, 0x59217d82, 0x26be829a, 0xff3e8a2a, 0x82a2ffff, 0x45f52dce, 0xd8ffff1e, 0x00ffe258, 0x8b9a1940, 0x27311a82, 0xff8b1e45, 0x34731000,
0x681200ff, 0x0600fff6, 0x2d35827d, 0x08846b06, 0x9973ffff, 0x7400ff9a, 0xce829a19, 0xc04a032c, 0xb00100ff, 0x1c00ff62, 0x2e82365e, 0xffd28224,
0x28522b00, 0x910c2205, 0x314082ec, 0xff289c0c, 0x5c9afeff, 0x590c00ff, 0xfdffff9a, 0x5b82e02f, 0x0a972622, 0x2721a582, 0x224082f0, 0x82786902,
0xd8702681, 0x690200ff, 0x2109827a, 0x098264bb, 0x83426021, 0xe80f2281, 0x224082f6, 0x82cc0c10, 0x5ccf213b, 0x13230a82, 0x8208e23a, 0x940e2106,
0xf52a2882, 0x00ff52f8, 0xffa4300d, 0x0482f1ff, 0x63030023, 0x209882d8, 0x2da883d9, 0x0510d808, 0xf0eeffff, 0x0300ffa4, 0x09826ce7, 0x0122ad83,
0x0982daee, 0x8266a621, 0x87ff2e57, 0xff8b66e6, 0x34b3c6ff, 0x21aaffff, 0x21738248, 0x9882cc4c, 0x829ad921, 0x75e82a40, 0xe3ffffc4, 0x76051797,
0x06aa586f, 0x0180df22, 0x22063a68, 0x5a9819de, 0xff2306d4, 0x82ce4cf8, 0xcdcc2beb, 0x66fbffff, 0x1200ff66, 0x57829919, 0x997f0125, 0x82153e9a,
0x230f229f, 0x213c82d8, 0x9f82142e, 0xff327326, 0xec91f0ff, 0xd421d282, 0x275e827c, 0xffe27acf, 0x54e30800, 0x05299982, 0x1400ff1e, 0xffff8e97,
0x828d82e7, 0xfae6221a, 0x219482e2, 0xda82d4f9, 0xc235e027, 0x02bfffff, 0x23538290, 0xf668cfff, 0xe7271682, 0x00ffb8de, 0x825c0f16, 0x0a5726ab,
0x8f0000ff, 0x2631825c, 0xffe8dbf9, 0x82280600, 0xe1f72261, 0x24518288, 0xffffee07, 0x058463f7, 0x0040e722, 0xf9273582, 0xfffff628, 0x82a430e0,
0xd763214c, 0xe6204c8a, 0x1622b282, 0x4c82ae07, 0x88ae4721, 0x00e0214c, 0xd3214c87, 0x214c8233, 0x4c888616, 0x91edf722, 0xf7314c82, 0xffffb6f3,
0xff58f9fc, 0x71bdf9ff, 0x20faffff, 0x2c828200, 0xff70fde2, 0x00c0e5ff, 0x42d3ffff, 0x21ee828f, 0x2982c2b5, 0xc275d823, 0x31068208, 0xff86ebef,
0x1fc50c00, 0x02f0ffff, 0x1200ff8e, 0x8282a4f0, 0xc5090024, 0xa6658b1f, 0x83072006, 0x9c1826ca, 0x0e00ff29, 0x2b4c8280, 0x5d8f1300, 0x77f4ffff,
0x1f00ffd2, 0xff28a182, 0xff32b3f3, 0x9a992c00, 0x06833583, 0x00271685, 0xffb81e0d, 0x82801300, 0x8a0b27ad, 0x00ff083e, 0xc8828713, 0x5278f422,
0xf0201e82, 0xf220e982, 0x00230482, 0x84ae872c, 0x0a972135, 0x1f216b82, 0x221b82f8, 0x870a170d, 0xae873035, 0x1800ff08, 0xffffc2b5, 0xff146ef1,
0x82071e00, 0xbdf8273f, 0x0900ff72, 0x35830080, 0x68e61227, 0x23ffffff, 0x26bc82d6, 0x00ffcccc, 0x82cecc0f, 0x4c102b44, 0xfeff08cc, 0xf79a191f,
0xdf721541, 0x19ff2005, 0x7508786d, 0x0820057a, 0xff200685, 0x25050173, 0xff66a61c, 0x6e42dcff, 0x85068305, 0x731b8316, 0x8282052d, 0x0000002c,
0xb3dcffff, 0x1d00ff33, 0x1f82cd8c, 0xffcd4c2f, 0x33732200, 0xaf0e088b, 0xd4f7d4f7, 0x21288215, 0x2282a0ff, 0x02cdff22, 0xb0218f82, 0x21048284,
0x04827efc, 0x83e4a021, 0x4c03213c, 0x28260a82, 0x0000ff32, 0x09823433, 0x83323321, 0x9a19212e, 0x032a1a82, 0xfb079a99, 0x00ffff14, 0xaa8266e6,
0x9a195f31, 0x0654f707, 0x02a0ffff, 0x00ff0790, 0x829a9927, 0x12252532, 0x590e00ff, 0x11260982, 0x00ffd0d5, 0xe6820c0a, 0x98d90822, 0xe5233b82,
0x8207f628, 0x9e1122c7, 0x212082b8, 0x04864861, 0x8b200e82, 0x06831c82, 0xff231185, 0x82b89ef1, 0x61ee236f, 0xbc4e0848, 0x0e002d06, 0xffff7c54,
0xff84abf1, 0x84ab1100, 0x06822d84, 0x16822d82, 0x54831b83, 0x0884ab29, 0xffffc08b, 0x5068e6d5, 0xff230538, 0x82feffca, 0xc3ff2129, 0x0020c182,
0xff29ad82, 0x66e6dbff, 0x0fceffff, 0x2654825c, 0x080a57ce, 0x83a3ffff, 0x505420cb, 0x94b30693, 0x94887a20, 0x94848620, 0x82cc4c21, 0x830d2089,
0xca0d2781, 0x0000ff3c, 0xb0820a97, 0x82682621, 0xc5fe276a, 0x3100ffe4, 0x85829002, 0xffac3c29, 0xcc0c3000, 0x52c6ffff, 0xca2205b0, 0x91829a19,
0x9c83d520, 0x0a820482, 0x31821082, 0xcccc1a2d, 0x0a00ff07, 0xffff0080, 0x53ceccf6, 0xee2506a1, 0x00ff9a99, 0x2a048328, 0x0832b300, 0xffff14f8,
0x449a19c2, 0xe226c214, 0x0300ff8f, 0x1444fc09, 0x5ae4300f, 0x06fdffff, 0xf9ffff24, 0xffffe1ba, 0x44c01ffa, 0xc4201914, 0x37351444, 0xffff0080,
0xff5278f4, 0x8f022000, 0xd7f2ffff, 0x2c00ff0a, 0x088bec91, 0xff250685, 0xd6e31f00, 0x1b1444ff, 0x8270fd21, 0xf6e82135, 0x8a212e82, 0x0a14443e,
0x9186eb21, 0x1b144435, 0xff88eb26, 0xeafcffff, 0x08101444, 0xffef0e2a, 0xcd4cd700, 0x993001ff, 0x00ff159a, 0xff33331c, 0x7a543000, 0xb31e00ff,
0x2d00ff34, 0x00ffaec7, 0xff32b314, 0x72fd1d00, 0x0c2db282, 0x00ffce4c, 0xff0ab711, 0x98991900, 0x824c828b, 0xeeff240f, 0x8208f648, 0x9a993734,
0xdeb9ffff, 0x6600ffb8, 0xffffcc4c, 0x8bae8763, 0xccb6ffff, 0x068208cc, 0x6666f122, 0x21056261, 0x2583f2ff, 0x8219fd21, 0x33f3222a, 0x20358234,
0x2c2b838b, 0x05cccc92, 0x660a00ff, 0xf7ffff68, 0x276082cc, 0xff64e601, 0x66e6f0ff, 0xd0200e83, 0x2107c155, 0x5582ccf7, 0x9899f522, 0x1e821983,
0x9c19fe22, 0x9c311983, 0x330800ff, 0xfdff0832, 0xfff8feaf, 0x8e02d001, 0x21158205, 0x15826891, 0x82162e21, 0xc72b2572, 0x140f00ff, 0x0822cd82,
0x6182502d, 0x821a6f21, 0x2d082272, 0x210a8291, 0x1983986e, 0x00ff7b25, 0x823ad401, 0xa470210e, 0xd2216c82, 0x271e82b0, 0xff717db0, 0x46b675ff,
0xb7284882, 0xffffcdcc, 0x15cc4c50, 0x1620e982, 0x0023b882, 0x4533330b, 0x0e2006c5, 0x00221a82, 0xc282b322, 0x83120121, 0x802822dc, 0x2a308200,
0xff3433e0, 0x32b3e0ff, 0x83d4ffff, 0xb3ec3514, 0x088b5a34, 0xb39fffff, 0xffff8b33, 0xffcd4cb0, 0xcccc4e00, 0x62274c82, 0x8b089a19, 0x838beb07,
0x83072058, 0xb3f921e7, 0x08275882, 0xffff9a19, 0x83cd4cf6, 0x19f82232, 0x22328299, 0x8267e6f7, 0x66e62196, 0xf8200a82, 0xff2b3283, 0x3433c1ff,
0xcdffffbe, 0x82c866e6, 0x09002325, 0x4d8232b3, 0x75820720, 0x2311004d, 0xccccf8ff, 0x8205004d, 0x82ce2053, 0xd4ff212d, 0xff242d83, 0xffce4cdb,
0x20066554, 0x4c86842d, 0x8a206282, 0xff27fa82, 0x1566e693, 0x83f9ffff, 0x82f420ee, 0xfbff2783, 0xffffcdcc, 0xdc8366f3, 0x6666f423, 0x20e38208,
0x2ab183fa, 0x869a9902, 0x4c0400ff, 0x830888cc, 0x22238206, 0x579a19fd, 0xff20066d, 0x14743782, 0x05856205, 0x99991437, 0xcc0600ff, 0x00ff05ce,
0xff67e61a, 0x98190a00, 0x801c00ff, 0x212e8200, 0x09823433, 0x23051b78, 0x06343303, 0x1c850c85, 0x6784ff20, 0x2d711a20, 0x82682005, 0x99142265,
0x2198829a, 0x46823233, 0x15830420, 0x6683fd20, 0x46830520, 0x32b30022, 0xce258483, 0xe60200ff, 0x218f8466, 0x0b828ecc, 0x909a9923, 0x8263848b,
0x0b0021b5, 0xfb223d83, 0x2251cccc, 0x26e08205, 0x0b00ff68, 0x820832b3, 0x32b32352, 0x24438297, 0x82f42006, 0x0b002958, 0x75089819, 0xe0ffffa1,
0x1320d183, 0xda233783, 0x828b9a99, 0x83068329, 0xff992716, 0x6666ecff, 0x12827575, 0xd082f420, 0xe6f4ff27, 0xffff8268, 0x318582f3, 0x33b3f9ff,
0x068b087f, 0x33fbffff, 0xd900ff33, 0x51186666, 0x9a2064e7, 0xf618a418, 0x01ff2f24, 0xfc82198a, 0x33eb2208, 0xffff1533, 0xffc2f5eb, 0x7b54e4ff,
0xf8f7ffff, 0xdfffff52, 0xffff1e85, 0xffd8e3fc, 0x3433deff, 0x2b0a8208, 0xffff8440, 0xfff6a8d6, 0x86f6faff, 0xe12b0982, 0xf6ffff48, 0xffff20e5,
0x82f6a8d7, 0x40f9371e, 0xe2ffff00, 0xff05285c, 0xec51fdff, 0xdcf3ffff, 0xf5ffff28, 0x4d82d663, 0x822a5c21, 0x66e6250e, 0x8b7f088b, 0x9c261282,
0x0800ff28, 0x26829e4f, 0x0b227a83, 0x3c8244eb, 0x146ee227, 0x337900ff, 0x283c8234, 0xffec11fc, 0xa2f00f00, 0x0626537d, 0x784bef20, 0xd1ef2205,
0x203c82ec, 0x269883f1, 0xff70bdf4, 0x8223fcff, 0x07f02259, 0x233c86ae, 0xcccc86ff, 0xfd273c82, 0xffff641b, 0x827a14f4, 0xc5802166, 0xb0217982,
0x220e82a4, 0x828b9919, 0xcaf32225, 0x2240823d, 0x820080f5, 0x96a3217d, 0x35267d82, 0x0c00ffc2, 0x1a821824, 0x645bf927, 0xa31d00ff, 0x264082d8,
0xff1ee5f6, 0x825c2800, 0xf7fa27ba, 0x2900ff0a, 0x2982ba1e, 0x823d0a21, 0xea512109, 0xfc272982, 0x00ff5f1a, 0x4172bd22, 0x00230522, 0x419a991f,
0x00230536, 0x8233b31b, 0x40ed211e, 0x19225d82, 0x1e8285eb, 0x82d7a321, 0xe23a2128, 0x24086c82, 0x00ff15ae, 0x08846b24, 0x6d0900ff, 0x2700ff92,
0x00ff0a97, 0xff46f61e, 0xf6282000, 0x752600ff, 0x0a00ffc3, 0x22c78247, 0x82231400, 0x83052033, 0x66132642, 0xfbffff67, 0x2b4c8230, 0xffaec711,
0x4a7cf6ff, 0x5600ff08, 0xc728f183, 0xff05c275, 0x9ca40600, 0xa0201f82, 0x082c1f82, 0x00ff8c77, 0xffd88302, 0x9ad90300, 0x1f211882, 0x222982be,
0x82ec1104, 0x3a74260a, 0x2efeffff, 0x25818214, 0xffffd0a2, 0x138291f9, 0x20450422, 0xe72ea582, 0x00ff3eca, 0x0528dc0f, 0x0100ff8e, 0x3a82f087,
0x820a3721, 0x3a342109, 0xc8204982, 0x02279282, 0xff08f813, 0x82631600, 0xd7103754, 0x1a00ff0a, 0x00ff285c, 0xff5ccf0b, 0xd8a31b00, 0xaef8ffff,
0xb7830814, 0xffffc225, 0x8252b8f5, 0x52f824cb, 0x83dfffff, 0x6b09277d, 0xd8ffff86, 0x1e826666, 0x66a60835, 0x85dbffff, 0xf7ffff1e, 0xffff32b3,
0xff34b3dd, 0x8233edff, 0x33e62804, 0xef0e0833, 0x827300ff, 0x37012ee2, 0xff153433, 0x9a196600, 0xa6daffff, 0x2bd88266, 0xff482123, 0xb89e5100,
0x1e3300ff, 0x3e200482, 0x0022fd82, 0xe782c034, 0xcc4c1d22, 0xa020b982, 0x04361483, 0xffff00e0, 0xff7b14a3, 0x3e2ad6ff, 0x4cc4ffff, 0xb5ffffcd,
0x1e829042, 0x3333f922, 0x8c2a6f82, 0xffff8fcc, 0xff6666f3, 0x70830a00, 0x6866fc22, 0x84208f82, 0xcf220a83, 0x6e82cccc, 0x8280ee21, 0x21a9223f,
0x246e8348, 0x00fffebf, 0x262a8279, 0xbadeeeff, 0x836e00ff, 0x83c22024, 0x8416206e, 0xa0f8216e, 0x02207982, 0xff220482, 0x978241f8, 0xe06f0124,
0x66828b83, 0xcc0cc62a, 0x070000ff, 0xb9ffff2a, 0xba20d683, 0xff213082, 0x275483d3, 0x0848219a, 0xe61101ff, 0x7c227a82, 0x6a82707d, 0x82400621,
0x82ef206a, 0x0400211f, 0xed211f83, 0x274582a1, 0xff486102, 0xb85eebff, 0x05209482, 0xff211982, 0x2df282ce, 0xc0dff8ff, 0xc5c5ffff, 0xeeffff20,
0x0982f87e, 0x82343321, 0x9966261e, 0xdaffff98, 0x20a883a1, 0x2024830a, 0x274d82fc, 0xb81e0b00, 0x200700ff, 0x00209882, 0x0a210e83, 0x2a4883be,
0xff347302, 0x5acf5f00, 0x82d3ffff, 0x5b002191, 0xff210482, 0x237182b3, 0xd6e33900, 0x2805746e, 0x827cfeff, 0x63fb1590, 0x27ba8206, 0x050080b2,
0xdec3ffff, 0x15224882, 0x0a82b8de, 0x5382b720, 0x9937ff23, 0x280a829a, 0x06900233, 0x7de5ffff, 0x25e18371, 0xeaffffae, 0x056c8f82, 0x33f7210e,
0x07236b82, 0x47ffba29, 0x082d057a, 0x088b46d6, 0xff06b4f8, 0x44d60800, 0x219a828b, 0x0483bc29, 0x0a83ba20, 0x08e0ef22, 0x1b220682, 0xd66b6666,
0x2f0e2410, 0x19f834f8, 0x20185128, 0x1242184b, 0x54fb2217, 0x16de5a07, 0x4b203298, 0x2e5cce82, 0x08e25a0b, 0x0654fb22, 0x84169977, 0x9b7b1832,
0x82cb2013, 0x11002297, 0x20ff82b3, 0x0da0750e, 0x9782f720, 0x99eeff21, 0x19ab2032, 0x20113c3a, 0x0f6d53cb, 0x2007985c, 0x219783f7, 0x32841100,
0x4dcc4c21, 0x7482069b, 0xcb088b32, 0x155b5b06, 0x06ab076b, 0x066b07ab, 0x153ba4fb, 0x20060e41, 0x06df6e33, 0x860afc6a, 0x5caa8444, 0xaa850d1e,
0x13ed3a19, 0x22191041, 0x8884fb5b, 0xf4f72477, 0x82ab156b, 0x2387837f, 0xd4f7d4fb, 0x0e230c88, 0x83fe01ff, 0x1902326a, 0xff42159a, 0x9a192401,
0xfcffff05, 0x00ff3433, 0x2116820f, 0x0482f3ff, 0x2005854d, 0x050c48f1, 0x34b3c331, 0x0300ff06, 0x00ff00a0, 0xff9a1909, 0x82400200, 0xa60b2209,
0x22cc8266, 0x4e00400b, 0x66280683, 0xcaffffb6, 0x088b9a19, 0x2a08a16f, 0x8b606606, 0xff8b0856, 0x82c0f4ff, 0x2134832f, 0x3983f5ff, 0x81204882,
0xc4242582, 0xff06ff9f, 0x2006f84e, 0x231782f3, 0x0080f5ff, 0x09838682, 0x00c0f02d, 0xb6ffff08, 0xfeff70fd, 0x8266e6db, 0xa6f7259c, 0xdeffff25,
0x17254683, 0xffff4200, 0x258583df, 0x8b48a11f, 0x9983f808, 0x2a9c1f22, 0x162b8a82, 0x00fffeff, 0xff66e620, 0x82b3f7ff, 0x332122ca, 0x20438234,
0x280a8201, 0x66e63d01, 0xeeffff15, 0x21b08266, 0x1082f0ff, 0x56180020, 0xf883114f, 0xff221683, 0xf3841100, 0x82110021, 0x00ff245d, 0x87b85e0e,
0x079b4fa2, 0x82486121, 0x9a992111, 0x54851684, 0xfb0e0826, 0x7b7cf770, 0x23086282, 0x0671fdd7, 0x4c7500ff, 0x00ff07cc, 0xff1f8544, 0x48e10f00,
0x7a3100ff, 0x3f00ffe0, 0xffffe0fa, 0xff6866f9, 0x5993db19, 0xff006026, 0x00c0b5ff, 0x81207082, 0xc022a382, 0x8484ce0c, 0xff087b25, 0x82cc8aff,
0xd7ff2a91, 0xff06e1fa, 0xb8dee9ff, 0x20b7828b, 0x21d8821e, 0x0a831eee, 0x48e1e923, 0x21118208, 0x3982a0fb, 0x04820320, 0x82fcff21, 0x04002348,
0xdb198360, 0x84210b93, 0x0600428b, 0x0a822182, 0x0060042d, 0x0000ff08, 0x00ffa606, 0x829a1916, 0x2304824e, 0x66e61100, 0x03485e82, 0x66cc3705,
0xa300ff66, 0xff15cccc, 0x295cf2ff, 0xd7fcffff, 0xf1ffff0a, 0x3482cdcc, 0x85120321, 0x00320813, 0x08642f03, 0xf5d0ffff, 0x0a00ffc2, 0xffff80f6,
0xffc335e0, 0x01002c00, 0x4a0400ff, 0x3000ff3d, 0xff089919, 0xec510d00, 0x199500ff, 0x00ff059a, 0x106d99a4, 0xffcd2505, 0xcdcc6aff, 0x04271082,
0xffff6c47, 0x8271fdcf, 0x9438303a, 0x14d4ffff, 0xd1ffff7a, 0xffff3e0a, 0x824821f5, 0x42ff2a59, 0xffffff8e, 0x0e05cccc, 0x0b4b57eb, 0x570f8461,
0xbb61164a, 0x14f72406, 0x611514fb, 0xe8614588, 0xfb4b2319, 0xfa821594, 0x82333321, 0xcc232222, 0x070e4dcd, 0x611a7461, 0xf72b2dd0, 0x1504f874,
0xfeffff8b, 0x828ad8a3, 0xd6632105, 0xcc320482, 0xffffffcc, 0xff08d663, 0x3433e2ff, 0x94f3ffff, 0x0582057c, 0x829a9921, 0x5238210f, 0xfe220a82,
0x25820080, 0x82aec721, 0xcc4c2125, 0x99223583, 0x2c828b9a, 0x0682fe20, 0x66221782, 0x18828c66, 0xff666626, 0x52380100, 0xf3201682, 0x00233882,
0x82aec71d, 0x234e8338, 0x846b0c00, 0xfd210a82, 0x222082e6, 0x822a9c00, 0x2209832a, 0x822a9c01, 0x5c0123e0, 0x06830828, 0xff486126, 0x9a190000,
0x97244182, 0x0200ff0a, 0x2a820983, 0x00ff0823, 0x859a821d, 0x0c002140, 0x1d236183, 0x8205f0c7, 0x2261832a, 0x82103801, 0x9a99222f, 0x2105828c,
0x8f826666, 0x82010021, 0x221c8206, 0x708a34b3, 0xff23058a, 0x82f0c7fe, 0x23388343, 0x1038e2ff, 0x4e833882, 0x0021de85, 0x82e98301, 0x23bb82f4,
0x8bf668fe, 0x9e21c782, 0x202c82b8, 0x2465824c, 0x5238d2ff, 0x05004115, 0x41b6c740, 0x002b5bdf, 0xff343307, 0x7b949bff, 0x4100ff15, 0x3321055a,
0x085a4133, 0x829a9921, 0x055a410a, 0x8c666627, 0x66feffff, 0x228b8366, 0x85089a99, 0xff8a2506, 0xcc4cffff, 0xcc201782, 0x80210483, 0x08724200,
0xff283883, 0xff9a99f3, 0x3433e2ff, 0x83087242, 0x422f8225, 0x33211b72, 0x08724234, 0x42cccc21, 0x66210872, 0x07724266, 0x00800122, 0x28067242,
0x8b34b300, 0x660100ff, 0x838b8266, 0x42ff2006, 0x74820672, 0x82067242, 0x077242a6, 0xde844083, 0xcc1d0023, 0x087242cd, 0x42333321, 0xcc212072,
0x288f82cd, 0xff6666ec, 0x33333200, 0xb9f54015, 0x88aec721, 0x523821f5, 0xc721f5a0, 0x096843ae, 0x0d425220, 0x0e290822, 0xf7e4f72f, 0x8b6b15d4,
0xfacfffff, 0xefffffe2, 0xffff52f8, 0x7b1e05e0, 0xdfffff08, 0xff9b71fd, 0xf5e8d0ff, 0x051000ff, 0x2616821e, 0x00ff0000, 0x82900200, 0x19af221a,
0x31318299, 0xffd569e0, 0x0080adff, 0x97ffffff, 0xb2ffff04, 0x1a820080, 0xfd77ff2f, 0x079cffff, 0x4000ffae, 0xffff7485, 0x35508283, 0x291c5f00,
0x8bab088b, 0x8b9b9b9b, 0x9b8b9b08, 0x088bab7b, 0x20828beb, 0xff666630, 0xcccc7a00, 0xb3feffff, 0x6500ff34, 0xbc823433, 0x287f0125, 0x824c00ff,
0xe0ff3219, 0x00ffcc4c, 0x3b9a9953, 0xeb7b088b, 0x6b07ab15, 0x0d614506, 0x82142e21, 0xd1d32c83, 0x076b08ec, 0x00ff06ab, 0x8234332c, 0x82232053,
0x2300234e, 0x0a82ecd1, 0x142e2c28, 0x94f70e08, 0x684874f7, 0xf1ff230c, 0x37829a99, 0x6666ee23, 0x49068508, 0x16820661, 0x23126848, 0x48610e00,
0x82052b58, 0x1100232d, 0x6848b89e, 0x21168305, 0x4382ffff, 0xb1828b20, 0x3433d623, 0x206282eb, 0x07b359f5, 0xe2ff2108, 0x00ffb85e, 0xff00401f,
0xc435b4ff, 0x21f7ffff, 0xffff0848, 0xfffe7fea, 0x703d3300, 0x33dfffff, 0x2227ec82, 0xffff48e1, 0x826666d4, 0x85068440, 0xddff2116, 0xff224482,
0x3a8280ea, 0x90c2cc22, 0xb4203582, 0x00223082, 0x3582bd08, 0xff215483, 0x833583e0, 0xecff2368, 0x1e820080, 0x9083ef20, 0x0482e220, 0x78010032,
0xd4ffff52, 0x00ff9042, 0xffd72328, 0xb81ec9ff, 0xd7211e82, 0x82af82de, 0xffff240a, 0x821f85fe, 0x2292821e, 0x82611000, 0xa1e22178, 0x00229282,
0x0a82211d, 0x3d83cb20, 0x3d824820, 0xc0080027, 0x0e00ff00, 0x219c82b3, 0x5c82c001, 0x82150021, 0xccff3214, 0x00ffaec7, 0xffcccc20, 0x9a19ddff,
0x992b00ff, 0x84b1829a, 0x23168206, 0x00ff3eca, 0x0023c883, 0x828e8215, 0x834020dc, 0x990e2235, 0x246e829a, 0x00ff1e45, 0x20c68348, 0x20ec83f7,
0x2404831d, 0x08666634, 0x217e84ff, 0x83831d00, 0x8287fe21, 0x822b2059, 0xd7ff2773, 0x00ff28dc, 0xb182de36, 0x82280021, 0x36002492, 0x44ff66e6,
0x2b200518, 0xff218d82, 0x210482ef, 0x3d831d00, 0x2389fe2e, 0x1574fbd6, 0xfffbffff, 0x0700ffbe, 0x0325ce83, 0x00ff3be0, 0x27698211, 0x07200f00,
0x801700ff, 0x06258383, 0xffff42e0, 0x221483f9, 0x82064107, 0x48a12609, 0xc00700ff, 0x84098201, 0xa00125d8, 0xf2ffff00, 0x02213d83, 0x31288260,
0xffb89ef2, 0x00c00200, 0xffff087e, 0xff3954e7, 0xe982ffff, 0xcaf0ff23, 0x065f643d, 0x2983fc20, 0x9a990622, 0x2427bd82, 0x00ff29dc, 0x8266e6a2,
0x4cf82282, 0x824f82cd, 0xf8ff239a, 0x098233b3, 0x82999921, 0x20388304, 0x232983f9, 0x85ebf0ff, 0x66258d82, 0xfcffff67, 0x235e821e, 0x8f989911,
0x33218382, 0x20448234, 0x28748203, 0x00200600, 0x010d00ff, 0x20638206, 0x23098260, 0x8b018015, 0x01231a82, 0x828b00c0, 0x8220208b, 0x82ff2095,
0x010023a4, 0x168200e0, 0x21fdff2b, 0xf2ffff06, 0xffffccac, 0x276b83fd, 0xff9a99f2, 0x6666feff, 0xee841382, 0xcdcc7b2d, 0x197d00ff, 0x00ff159a,
0x82848009, 0xbf0c2240, 0x221b847c, 0x820b00ff, 0xe8ff29fa, 0xff080040, 0x52b8f4ff, 0x2106ca4b, 0x4982ccf4, 0xba83fb20, 0x4983f420, 0x3233fb22,
0x0a821e83, 0xcc040023, 0x822882ce, 0x0400221e, 0x2023824c, 0x232382f4, 0xcccc0300, 0x0b209982, 0x0021df82, 0x200f8317, 0x216d830c, 0xb482800d,
0x82800921, 0xfc8b2e9d, 0xffff1514, 0x8b7d7ff6, 0x40f3ffff, 0x82d48283, 0xf4ff221a, 0x21f4825e, 0x7782c017, 0x470b0027, 0x0300ffae, 0x232f82c0,
0xff34330b, 0x00215884, 0x83bc820b, 0x2558836c, 0xffff4861, 0x1e8320fb, 0x82004021, 0x70bd2109, 0x0983b582, 0xb83efc22, 0x6b269683, 0xe8ffff84,
0x5c823e4a, 0xe77c3d82, 0x84f62005, 0x04f72177, 0xd3227782, 0x7782b8de, 0x2a1cdc27, 0xe12300ff, 0x23fa8248, 0x08b81e2c, 0x11820685, 0x8484eb21,
0x00ff2516, 0x8b9a192c, 0x06836b82, 0xff221685, 0x38831edc, 0x674bd320, 0x24068205, 0x14dcffff, 0x2604827c, 0xffffb81e, 0x8366e6d3, 0xb3a0232d,
0x62827b34, 0xbe5ffc26, 0x60f9ffff, 0xf0269b82, 0xffff42a0, 0x2182befa, 0xde83e720, 0x3c820020, 0x0200ff29, 0x00ff42c0, 0x829a190c, 0x21238209,
0xed830e00, 0x82a00121, 0x840d20ce, 0xc00721fd, 0x06208382, 0x0026cf82, 0xff7c3f07, 0xed820600, 0xe1060023, 0x21098248, 0x9182707d, 0x56190f22,
0x8c32de82, 0x0300ffcc, 0xffff68e6, 0x876866ee, 0xccf8ffff, 0x2b8208cc, 0xcdcc8f22, 0xf9227e82, 0x2c82be1f, 0x7e828020, 0xfabef822, 0x79820982,
0x83f8ff21, 0x3f06264f, 0xffff08ff, 0x207483fe, 0x211e830d, 0x2882bffd, 0x5f820d20, 0x20fdff22, 0x5e217e83, 0x215f82b8, 0x5042e001, 0x00002207,
0x22158260, 0x8300c001, 0x801521da, 0x0d221683, 0xcf829002, 0x0320ab83, 0xf9245583, 0x8f0800e0, 0xc1267d82, 0xfcffff48, 0x8d849819, 0xf0ffff22,
0xe8289783, 0x0e089999, 0x1602ffaf, 0x002c0c82, 0x150080b4, 0x331900ff, 0xf3ffff30, 0x00217882, 0x2714820f, 0x3433e6ff, 0xe3ffff8b, 0xff25b982,
0xee9cfbff, 0x220c8207, 0x823473dc, 0x828220db, 0x33df2563, 0xddffff32, 0xff23b482, 0x825278f8, 0xd1d934b4, 0xf7ffffec, 0xffff6abc, 0xff5238db,
0x78fe1500, 0x82f4ffff, 0x23002323, 0x1e82f468, 0xfef6ff28, 0x1a0000ff, 0x2482ff7e, 0x09838020, 0x09838020, 0x09820420, 0x82021b21, 0x67fa271e,
0x1100ff4a, 0x9b82501d, 0xffce4c27, 0x34b30b00, 0x24d38279, 0xcccc30ff, 0x21b38206, 0x7a82291c, 0x8f42f022, 0x6e215182, 0x27de8214, 0xffff6766,
0x089002ef, 0xd4214282, 0x2204827b, 0x8205c275, 0x3333261a, 0x97dcffff, 0x2280850a, 0x8202eaff, 0xd1d926a4, 0x0800ffeb, 0x83298342, 0x070023aa,
0xbe833c8a, 0x00ff8f31, 0x8bcecc20, 0x802300ff, 0x00ff0800, 0x82126304, 0x1c002ddb, 0x00ff8836, 0xff48e10f, 0xcccc1900, 0xdb820482, 0x840c0021,
0x60092220, 0x21258200, 0x318200c0, 0x00800d26, 0xa0f6ffff, 0x80820f85, 0x82c0e621, 0x8225820a, 0xb81e21b8, 0xb3213482, 0x22248233, 0x83cd4c1c,
0x66662156, 0x23275683, 0x00ffce8c, 0x45717d17, 0x00210572, 0x22308322, 0x82ae8707, 0x2e262220, 0x2b9d8214, 0x00ff9643, 0xff5ccf24, 0x7eeae9ff,
0xcc21f982, 0x82c584cd, 0xab05221e, 0x21fb8285, 0x94829ad9, 0xda82b320, 0x9a19f424, 0x16828b9d, 0x3233cf28, 0x1100ff06, 0x6882d8e3, 0x70bd0f22,
0x91253282, 0x0500ffec, 0x22278299, 0x8270fd10, 0x2b002820, 0x0000ff86, 0x82053e8a, 0x22c8831a, 0x82f66823, 0xb0c72561, 0xfd1500ff, 0x75832e82,
0xbdf7ff22, 0x22202983, 0xff233e82, 0x82c475f8, 0x23d6839f, 0x8b3233df, 0xf2837c82, 0x2207ef41, 0x82dfafe3, 0x981925d9, 0x4ce6ffff, 0xe6259882,
0xffffd0cc, 0x212084f3, 0x148299f6, 0x8233fb21, 0xf2ff2fee, 0x00ff0180, 0xff686609, 0xcc4cfbff, 0x97820e08, 0xcdcce429, 0x2bffff15, 0x8207ff7f,
0x83f12050, 0x9e0b2df1, 0x00ff7fb8, 0xff48e10e, 0x0040ffff, 0x3025a582, 0xffffecd1, 0x217682fd, 0x14836800, 0x68e6f525, 0x833b00ff, 0x66d731fc,
0x01ff0866, 0x0734b30a, 0x66c5ffff, 0x2700ff66, 0x9a25fd83, 0x00ff0a97, 0x2109830a, 0xe982d9cd, 0xcdcc0226, 0xefffff08, 0x00255983, 0xffff66e6,
0x83e382f2, 0x226e8298, 0x826766f0, 0x33e2273f, 0x1b00ff34, 0x86823333, 0xf6e8cd22, 0x26376982, 0x9affffe9, 0xffff3eca, 0xffc560f5, 0x3233c6ff,
0x61d8ffff, 0x828a0848, 0xd7e3218f, 0x8205c54a, 0x826620e4, 0x83ff2040, 0xf5fe335b, 0xff070080, 0x3e0a3c00, 0x632800ff, 0x6800ffd8, 0x8082f6a8,
0xffb85e2c, 0xcccc3000, 0x850200ff, 0xcf82081e, 0x00297b82, 0xffecd100, 0x9a990b00, 0x22f88297, 0x8232330e, 0x80d42216, 0x23f88201, 0x99990f00,
0xc2839982, 0xe7820c20, 0xccefff23, 0x216782ce, 0xb8829a19, 0xcc7d2a08, 0x8b15ebcc, 0x56b660c0, 0x8b56088b, 0x568b6060, 0xb6568b08, 0x088bc060,
0xb6b68bc0, 0x0e08c08b, 0x54f84cf7, 0x1e00ff15, 0x239182e6, 0x9a191900, 0xee219b82, 0x259c8214, 0x08ec11e1, 0x5d8224fc, 0x84e1ff21, 0x21808214,
0x0483e6ff, 0x8b200e82, 0xe3225982, 0x25829a19, 0x3333e82d, 0xe61500ff, 0x00ff8866, 0x8234331c, 0x82fa2016, 0xfeff22b3, 0x20468299, 0x258a83fa,
0xffcc4cff, 0xa948faff, 0x07e56105, 0x2b829920, 0x08e4a818, 0x0720ca82, 0x0127b883, 0x00ff1f45, 0x82343307, 0x825120f0, 0x990621e5, 0xe122bd83,
0xf0820ad7, 0xff281e82, 0xffeb91ea, 0x32331d00, 0x22202e82, 0x2005b970, 0x268b821f, 0xc3b51200, 0x821b00ff, 0x1b00286d, 0x00ff5c0f, 0x82cdcc0c,
0x61f72582, 0x0a00ff48, 0xff221e82, 0x6b82d9fa, 0x33b30e22, 0x0e233582, 0x82089a19, 0xb31e2106, 0x15216182, 0x055e5e97, 0xd1208782, 0x4c216b83,
0x223582ce, 0x5c146efe, 0x28210703, 0x230982f6, 0x918b66e6, 0x1d253183, 0x00ffa4f0, 0x22628314, 0x82d82319, 0x2440836c, 0x0870fd06, 0x203d828e,
0x273d8211, 0xffcdcc17, 0x28dc1500, 0xf9450e82, 0x82c72005, 0xceff2421, 0x8315ec11, 0xff32252c, 0x9002f9ff, 0xff2f4085, 0x8b28dce6, 0x0fe2ffff,
0x858b085c, 0x82ffffff, 0xfaff24ec, 0x47ff9a19, 0xfa23058d, 0x82080080, 0xcccc2143, 0xb3213182, 0x82528232, 0xe6ff2872, 0xff8b6866, 0x5e4ce1ff,
0xd28405e3, 0xf12a0483, 0xffffcd4c, 0xffce4cf7, 0xd682f5ff, 0x19296782, 0xf3ffff98, 0x00ff3333, 0x227c8312, 0x826666e4, 0x84e02035, 0xddff21f1,
0xea205183, 0xe2214c83, 0x203082cc, 0x220e83e1, 0x829a99f4, 0x8302206b, 0x66f92c40, 0x0100ff66, 0xffffcc4c, 0x82ccccf8, 0x4df82035, 0xdc2005e5,
0xe3204783, 0x04841683, 0x8b210e82, 0x05c84108, 0x80260582, 0x0000ff00, 0x098234b3, 0x00295182, 0x08666601, 0xe3ffff88, 0x254382cc, 0xff3233e8,
0xd383eaff, 0x9a19e322, 0xe1203183, 0xff220682, 0xb482e6ff, 0x83190021, 0x1e002e0a, 0xf80866e6, 0xff8b0724, 0x14ee1e00, 0x821483ff, 0xec112104,
0x3d410e82, 0x05997305, 0x58821720, 0x23eaff24, 0x57828ed8, 0x0814ee34, 0xa500ff0e, 0x34f86666, 0xb500ff15, 0xff063433, 0xab832800, 0x83240021,
0x38e622c0, 0x06364852, 0x707dd922, 0x2320d582, 0x9b308283, 0xff05717d, 0x34331700, 0x66f6ffff, 0x1000ff67, 0xff23e582, 0x829919e9, 0x4ce524e0,
0x823b08cd, 0xe8ff217f, 0xf320dd83, 0xeb20ab83, 0xec234783, 0x828066e6, 0x66c722e2, 0x17015766, 0xce566b20, 0x07bb2417, 0x180694fb, 0x2408abdf,
0x33b3f1ff, 0x820482ff, 0x4cee247b, 0x84088bcd, 0x139f5636, 0x3800ff36, 0xff079a99, 0xb8deecff, 0xf3ffff96, 0x00ff4821, 0x8b32b314, 0xb323b782,
0x82db0834, 0x1a002185, 0x00274982, 0xff295c10, 0x82e61600, 0x401727c5, 0x0900ff00, 0xe5839999, 0xffa43026, 0x8f826400, 0x0d35e582, 0x00ff5278,
0xff908226, 0x7b542400, 0xc71900ff, 0x2800ffae, 0x297882cc, 0x4b8b078b, 0xf2ffff15, 0xf6826766, 0x66e6f326, 0x66f7ffff, 0xfb220482, 0x6d820080,
0x08343325, 0x83e5ffff, 0x66b52914, 0x01ff0566, 0x06cccc25, 0x00261085, 0x059a994a, 0x2683ffff, 0xcc0c0023, 0x262b82cc, 0x00ff68e6, 0x839a9908,
0x8b66254a, 0x4affff08, 0x00252b83, 0xfb9a992a, 0x185f8244, 0x20142847, 0x19be826b, 0x2014372b, 0x0ce718eb, 0x82ab2017, 0x18002031, 0x2613324a,
0x1cfb062b, 0x82ab156b, 0x2bd26a37, 0x41186b20, 0x41180cc3, 0x0022116a, 0x2219c00a, 0xd46a0732, 0xbbe42105, 0xf221cb82, 0x53e818b3, 0x22319307,
0x83ff34b3, 0x00ff2416, 0x6ecc4c0d, 0x088305cf, 0x0a00ff22, 0x5e181882, 0xcc20145f, 0xff201b85, 0x08265683, 0xdb0e066b, 0x026cf4f7, 0x2a935805,
0x6606eb21, 0x5c750519, 0x05c55810, 0x09675018, 0x20085e75, 0xd05c189b, 0x22ac820e, 0x19dcffff, 0x2137cb41, 0x7f820774, 0x824c2321, 0xa61c25ca,
0x1c00ff66, 0x2329eb83, 0x088b9a59, 0xc4f7069b, 0x41ce832b, 0x4b1813b4, 0x6b2216e7, 0x5c186b07, 0xcd200fa5, 0x2005b76e, 0x73931808, 0x24931809,
0x0b4a420e, 0x8a821a84, 0x8b227282, 0xe918ff08, 0xab211555, 0x58931807, 0x23c98218, 0xffcdcc08, 0x22053d5b, 0x85333307, 0x6b0828a5, 0xfb07ab06,
0x42154bb4, 0x9082059b, 0x1b830020, 0x8b6f0483, 0x2137820d, 0x1b84ffcd, 0x33f7ff26, 0x2b088b33, 0x2821cb83, 0x22b982f6, 0x830ad7f8, 0x21cb9055,
0x1684f628, 0xd72fa982, 0x0e088b0a, 0xf844f7ef, 0x00ff154c, 0x829a9906, 0xcc053159, 0xfcffffcc, 0x00ff66e6, 0xff008002, 0x9002f9ff, 0x1d32d282,
0xffff6766, 0x053e0ab6, 0x194c00ff, 0x1700ff99, 0x0a82b81e, 0xce4c0625, 0x830100ff, 0x8306202a, 0xe3fd2c34, 0x0400ffd6, 0xffff9a19, 0x82badefa,
0x83002034, 0x6bff2a3f, 0x0000ff84, 0xffff6666, 0x860482ff, 0xb85e2509, 0xeeffff08, 0xff233882, 0x4b90c2f7, 0xf33c068f, 0xffffd863, 0xff32b3f4,
0x48a1efff, 0xffff6208, 0x05ccccc4, 0xb3e4ffff, 0xf7ffff34, 0xe9205483, 0xe9284e83, 0xff8366e6, 0x9a19e2ff, 0xec234082, 0x82419919, 0xb3dc2721,
0xdfffff33, 0x0a820080, 0x8233fb21, 0x83fb200a, 0xe6f82327, 0x87828a66, 0x82d72321, 0xcccc21c6, 0xfa222c82, 0x0a820a17, 0xfc227283, 0xeb82146e,
0x00235182, 0x84c37500, 0xff082af5, 0x0a970500, 0x664f00ff, 0x21448266, 0xe08259b1, 0x34330c22, 0xf9230a82, 0x828c1f85, 0x7fca2145, 0xcc26d782,
0xfeffffcc, 0x3082c18a, 0x82676621, 0x8afe214f, 0x06221482, 0x54826666, 0x82049621, 0x21848214, 0x0e830500, 0x34b30338, 0x4100ff08, 0x00ff5c8f,
0x059a192d, 0x82d8ffff, 0x4500ff8f, 0x0a82b81e, 0x00c0fc22, 0xb02b6a82, 0x0000ffa4, 0x00ffcd8c, 0x82981907, 0x22988358, 0x82ba1e05, 0x14042234,
0x211e827b, 0x4e824621, 0x1e82cc20, 0x2a1c0222, 0x45210982, 0x8377821f, 0x4c0033ef, 0xffff6626, 0x0548e1e8, 0x661d00ff, 0x4900ff67, 0x0a82c2f5,
0xee820220, 0xfd060023, 0x82398270, 0x030021a2, 0x0626d883, 0x088b9a99, 0x1d828b8b, 0x3433d032, 0x54a4ffff, 0x00ff157c, 0xff989987, 0xea91dcff,
0x20211582, 0x201582b3, 0x20ad83f6, 0x22148317, 0x829a99e3, 0x221383c6, 0x82cd4cde, 0xe6062787, 0xacffff68, 0x29829919, 0xa14e1120, 0x08002907,
0xffff6466, 0x853433e9, 0x99220582, 0x4a82089a, 0xff216e82, 0x0595457c, 0x7a686625, 0x83edffff, 0xb3f62c4b, 0xefffff32, 0x00ffd0cc, 0x8234b303,
0x82f02025, 0x04002314, 0xfd829a19, 0x66e6ee22, 0x0f82ee82, 0x83f5ff21, 0x83112009, 0x80042375, 0x71829c00, 0xce4c0823, 0x272182aa, 0xff33b308,
0x34334200, 0xf7250a82, 0xffffcdcc, 0x203784e1, 0x42e182fa, 0xef23052d, 0x83ffcc4c, 0x837a203c, 0x20838347, 0x881a82f0, 0x8c67205d, 0x8319845d,
0x19112162, 0x00222982, 0x5a823323, 0x67668328, 0x00ff9105, 0x88826616, 0x6b831220, 0x25830f20, 0x25831520, 0x25840320, 0x82e62f21, 0x33452244,
0x25f98233, 0xff323313, 0xa8831b00, 0x34b3222a, 0xae0c00ff, 0x2000ff16, 0xff262982, 0x080040f7, 0xa2828b8b, 0x3c82ef20, 0x2bc2ff27, 0xffff1584,
0x215183f9, 0x9d82cc01, 0x9a19f92a, 0x66fdffff, 0xfcffff68, 0xff204082, 0x0823bb82, 0x82dfffff, 0xd1ff2341, 0x5682cc4c, 0xfe7fc923, 0x203b8255,
0x232182fb, 0x66663900, 0xff200a82, 0x00214682, 0x21788205, 0xde82fbff, 0x99050023, 0x06c15b99, 0xcdcc0122, 0x78203b82, 0x24221e83, 0x2982cd4c,
0x98999c28, 0xb36cffff, 0x8e821534, 0x82cecc21, 0x210f8261, 0x66820d00, 0x84070021, 0x265383c2, 0x08cecc0c, 0x830300ff, 0x830c2034, 0x83f8208f,
0x830d2099, 0x83f32094, 0x82188228, 0x4cf22253, 0x822382ce, 0xf3ff2519, 0xffff33b3, 0xff212383, 0x227783fc, 0x823433f3, 0x82fc201e, 0x84ff203d,
0x2157832e, 0x6b82f2ff, 0x26057347, 0x089a99fc, 0x830301ff, 0x19ec22cd, 0x82f78298, 0x8248832f, 0xe6f222ed, 0x86488766, 0x8248833d, 0x21488296,
0xa082ff34, 0x2383ba82, 0x80214886, 0x22a58200, 0x83d0cc0c, 0xff9a21c4, 0x3020c482, 0x09822383, 0xc4850320, 0x1e82cc20, 0xce200a86, 0x64205783,
0x32212383, 0x2a4c85ff, 0x08666603, 0x14f9ef0e, 0x481514f7, 0x56180bdf, 0xde230ebf, 0x850634b3, 0xd2ff213a, 0xd8208783, 0xdd209783, 0xd02cf483,
0x088b6866, 0x66d0ffff, 0xffff8b66, 0x00211683, 0x20208322, 0x211b82f8, 0x5b822d00, 0x7dffff24, 0x3b846766, 0x91ff6721, 0x8a66203b, 0x3d8a223b,
0x223b86ff, 0x86ffd763, 0xabde223b, 0x7d651885, 0x04f72717, 0x00ff8b07, 0xe782191b, 0x5ccf1027, 0x191700ff, 0x26048299, 0x00ff00c0, 0x82676609,
0xa32921f1, 0x68324582, 0xff05cc0c, 0x7b940e00, 0x732400ff, 0x2300ff34, 0x2482ec51, 0xff66e624, 0x357d2700, 0xe6b52105, 0x00239c82, 0x8232331d,
0xb31a214b, 0xf225f582, 0x00ff70bd, 0x2c558213, 0xe23ae9ff, 0xffffef08, 0x05ae0783, 0x83fb82ca, 0xcc302734, 0xc9ffffcc, 0xea82cd4c, 0x33b3bf36,
0xffffff08, 0xff079a19, 0xcc4c2bfe, 0xff1574f7, 0x66e6f2ff, 0xf4221982, 0x2e85cd4c, 0x19fbff24, 0x24827e9a, 0x33b3e127, 0x19b4ffff, 0x0889829a,
0x33b37020, 0xff07eb06, 0xcd4ccbff, 0x6400ff06, 0x152b33b3, 0x66ad00ff, 0xffff0666, 0xdfceccbc, 0xb9418505, 0x05d44305, 0x66660425, 0x4bf7ffff,
0xae2c0565, 0x2b06cccc, 0xfd00ff07, 0x64fbcc4c, 0x01203382, 0x0029ab82, 0x8c66e605, 0x800400ff, 0x23bc8200, 0x089a9905, 0x78160d78, 0xaa82160b,
0x6182fa20, 0x19000023, 0x060b4a9a, 0x82990221, 0x19fa2b09, 0x00ff089a, 0xff989906, 0x1e83edff, 0xcecc1125, 0x82f2ffff, 0x14002119, 0x8305bf4b,
0x00ff2106, 0x00211683, 0x8320830d, 0x1200212a, 0xfb227e82, 0x99848bd4, 0xddff3321, 0x86a48299, 0x95cd2099, 0xffcd2199, 0x9a219987, 0x259984ff,
0x94f7af0e, 0xfc7554f8, 0x0a86700c, 0x0754fb27, 0x00ff069b, 0x99a51830, 0xd8ff2108, 0xff210a83, 0x139e19cf, 0xb37b3034, 0xffff0733, 0xff0080df,
0x33330a00, 0x83e8ffff, 0x4c1e2909, 0x00ff8bcd, 0x08cdcc23, 0x4f08044b, 0x072d050a, 0x00ff3433, 0x8bcccc08, 0xbb069b08, 0x23238207, 0xff0ad708,
0x28211a86, 0x851a86f6, 0x2d168506, 0x0ad7f8ff, 0xf7ffff8b, 0x5b08f628, 0x33b2ab07, 0x7083ea83, 0x7b824e87, 0x33234e82, 0x826b0834, 0xdcff217e,
0xff21b287, 0x060a48e1, 0xf5ffff22, 0xff24b682, 0xcd4c84ff, 0xd8202083, 0xff23b082, 0x82ccccdf, 0x820483e2, 0x759e190e, 0x096b6027, 0xfb067b23,
0x176a6424, 0x44093564, 0xfb210c82, 0x170744b4, 0x16856918, 0x8214f821, 0x230022ad, 0x1ca01959, 0xff280815, 0xff9a99c5, 0x6626acff, 0x8fffff15,
0xffff70fd, 0x0534f39f, 0xe8faffff, 0xfbfffff6, 0xffff32b3, 0xff852bfe, 0x68e6f8ff, 0x2405ac50, 0x32b3f9ff, 0x2b0a8208, 0xffff7b54, 0xffcdccf9,
0xe2fa0500, 0x09842882, 0x8bcdcc22, 0x3a291a82, 0x720634b3, 0x19b5ffff, 0x2246829a, 0x5733b3fd, 0x002105ec, 0x24668302, 0x910080f8, 0x27238287,
0x8766e605, 0x190700ff, 0x002a9282, 0x00ff0080, 0xffcc4c06, 0x59820400, 0xeb04f723, 0x83538205, 0x4c042118, 0x01215d82, 0x831882cc, 0xfdff2327,
0x278334b3, 0xff08cd22, 0x33220a86, 0x33828532, 0x82343321, 0xcc4c215f, 0xff2a7882, 0x063333c6, 0x4a00ffa4, 0x428266e6, 0x3d830220, 0x2adc0622,
0x66212d82, 0x216a8266, 0x2d830080, 0x821e0521, 0x82f9203e, 0x04002333, 0x9a449002, 0x8aff2206, 0x83ee823e, 0x51fb299d, 0x078b08ea, 0xf101ff0e,
0xe1277f83, 0xff1566e6, 0x82e62fff, 0x84d0203d, 0xa2f62ccb, 0x0900ffd0, 0xffff305d, 0x8278bef3, 0x0ead217a, 0xba220982, 0x6282ffe1, 0x56827020,
0x0a97f422, 0xf5210a82, 0x291482f8, 0xffffcdcc, 0xffbc52fb, 0x5683f6ff, 0xf0a7f622, 0x2f221e82, 0x4d8214ee, 0x0514ee22, 0xa5211582, 0x211a8660,
0x328252fb, 0x2e82f320, 0x0000002a, 0xf4ffff0d, 0xff089999, 0xf3220a85, 0x628370bd, 0x4d820120, 0x8272bd21, 0xa05a2176, 0xa6213282, 0x821e8266,
0x8296848c, 0x5e0931e4, 0xf5ffff9e, 0x00ff20c5, 0xff33330c, 0x3233fcff, 0x4c220982, 0x25828bcd, 0x90420c23, 0x210c828b, 0x45838e42, 0x40825020,
0x829a5921, 0x5e5a2104, 0x00204086, 0x0023d284, 0x841c5a09, 0x20248315, 0x212e8292, 0x3485cc41, 0xff21af82, 0x22308219, 0x8767660b, 0x22608356,
0x82ceccf5, 0x8266202e, 0xa9ff2b85, 0xffff6666, 0x159a19e2, 0xd182372b, 0xc235f522, 0x742b9e82, 0xf0ffff7a, 0x00ff9042, 0x82089008, 0x030d2247,
0x296d822c, 0x0752f833, 0x21bfffff, 0xea820648, 0x5bf9ff22, 0x0025b682, 0xffff0700, 0x069559ee, 0x2305265c, 0x0080edff, 0x0684b682, 0x64069059,
0xdb2109e6, 0x184d8207, 0x2613387b, 0x195f00ff, 0x83bf069a, 0xd90d211e, 0x102aae82, 0x00ffd863, 0xffd62307, 0x04820a00, 0x0af7ff25, 0x82eb083e,
0x0500239e, 0xc6821e45, 0xff52f824, 0xd5820100, 0x99fbff27, 0xffff8b9a, 0x05d75cfb, 0xff240682, 0x66e6feff, 0x99211082, 0x3125829a, 0x08880080,
0x01ff2f0e, 0xebcc4c80, 0x2300ff15, 0xb7823433, 0xffcccc29, 0x00801c00, 0x82e3ffff, 0x055f4ea6, 0x37524182, 0x4ce82215, 0x381b82cc, 0xffce4ceb,
0x66e60c00, 0x1300ff80, 0xff089a19, 0xcccc2eff, 0xffff8006, 0x256983ec, 0xff3d4aeb, 0x8a83f3ff, 0x5c4fe823, 0x541c828b, 0xc382072d, 0x2d541c20,
0x05465a0b, 0xffb8de26, 0x32b31400, 0x21284982, 0xff089648, 0x3433d100, 0x18174951, 0x2416f76b, 0xb01700ff, 0x221b82a4, 0x82c3b514, 0x82458278,
0xb8de2188, 0x06214a85, 0x86588496, 0x830c2062, 0x8276826c, 0x18002095, 0x46091bb7, 0xf7880a22, 0x4b060e41, 0x002305b1, 0x8232b300, 0x33d928c7,
0xbbffff34, 0x43053433, 0xf7200699, 0x00282482, 0xffcc4c02, 0x0080f6ff, 0xf5233982, 0x850866e6, 0x05c54306, 0xff231683, 0x82ccfbff, 0x822a8220,
0x8326208f, 0x19bc270a, 0xfeff059a, 0x4b82b3df, 0x6666f73b, 0x0900ff15, 0xffff33b3, 0xff6666fa, 0x9a190800, 0xe6f7ffff, 0x0500ff68, 0x22098299,
0x86cc4cf6, 0x20dc82c4, 0x611b8200, 0x09820520, 0x98200f84, 0xdb209282, 0x3f2b8283, 0xff05cecc, 0x9899feff, 0x550000ff, 0xff2108b3, 0x22418219,
0x829a99fe, 0x93be18ea, 0x25438215, 0xffcd4c23, 0x7e821c00, 0x0e820485, 0x2209b663, 0x82666601, 0x66012521, 0xffffff68, 0xff22d782, 0x6a892400,
0x6a821082, 0x82cc4c21, 0xcc2e2375, 0xbd8506cc, 0xae82ff20, 0x6620bd83, 0x68210483, 0x200e82ff, 0x231884cd, 0xffff8b08, 0x05322582, 0x14f7ef0e,
0xf815f4f7, 0x94fb0614, 0xf706cb07, 0x5f8207a4, 0xb85e1a25, 0x82eaffff, 0x15002c64, 0xffff48a1, 0x8b9899e5, 0x8234fc08, 0xa1e52251, 0x20378247,
0x211e84ea, 0x0a82b85e, 0x48a1e525, 0x83a4fb08, 0x07942838, 0xb4fb84f8, 0x82f4fc15, 0x40f72226, 0x1a1b8200, 0x200ec45b, 0x2359827b, 0x00c0dcff,
0x0482db82, 0x40e3ff22, 0x23200982, 0x08252882, 0xff0694f8, 0x85098300, 0x1c002219, 0x833d82c0, 0x9b082110, 0x00243282, 0xff34b308, 0x21065050,
0xc582cc4c, 0x8b343331, 0xfdfeff08, 0x00ff66e6, 0x15cccc61, 0x820300ff, 0xfcff230a, 0xc3459a19, 0xfeff2105, 0x25820986, 0x19050023, 0x27ce829a,
0xff482105, 0x20f00100, 0xe8212a82, 0x2a0482f6, 0xbb08f0e7, 0x00ff05bb, 0x82e0cf07, 0x21d02104, 0x0c222282, 0x6482dfaf, 0x22823020, 0x5ccf0724,
0x1d825b08, 0x84f8ff21, 0x20d0260d, 0x57f3ffff, 0x21ce838e, 0x2282a430, 0x08e02f22, 0xff232885, 0x82e02ff8, 0x50f32115, 0xe0203384, 0xa42c1483,
0x2100ff08, 0xffff2adc, 0x05f628de, 0x23210582, 0x220a87d8, 0x82d423f8, 0xd0222120, 0x4c213083, 0x837482ce, 0x33f822b2, 0x284b8232, 0xff3433a4,
0xce4c7c00, 0x23568515, 0x22d00700, 0xde23718e, 0x825b5b08, 0x30f8224e, 0x21228221, 0x7484df2f, 0x43822120, 0xb284cf20, 0xbb08a422, 0x00291d82,
0xffe1fa03, 0x281cfcff, 0x21f382ff, 0x0441ff99, 0x08014125, 0xff8b2025, 0x84af0c00, 0x20cd84c3, 0x2297825c, 0x82f528de, 0x94d822cd, 0x21058205,
0x048229dc, 0x820ad721, 0xf006220a, 0x213582a4, 0x308390c2, 0x8432b322, 0xcc310b82, 0xff0e08ce, 0x0080e800, 0xd4ba01ff, 0x00ff153a, 0x28db820e,
0x94e30600, 0x331100ff, 0x83278234, 0xf9ff2e0f, 0xff086c1c, 0x9a99da00, 0xf89affff, 0x20488292, 0x41308208, 0x662606b4, 0xf7ffff66, 0xd7820080,
0x08200582, 0xf5220682, 0x1d47cecc, 0x84108206, 0x8287201b, 0x83252090, 0x243f8227, 0xf1ffff05, 0x21078219, 0xe78219f9, 0xccccee22, 0x0f833082,
0xe6060023, 0x26258367, 0x00ff146e, 0x82010065, 0x82f72325, 0x47828f0c, 0xffdf8f23, 0x826d8200, 0x330a2289, 0x835e8232, 0x00ff230c, 0x16856f05,
0x7e261b82, 0x0300ff35, 0x9f8366e6, 0x82ec9121, 0x6e07253c, 0x0901ff05, 0x1a22aa83, 0xd08293f8, 0x9920aa86, 0xaaa93482, 0xa6892620, 0xffff9822,
0x6820a68c, 0xf020a685, 0xdf82a2b0, 0x33350033, 0x1800ff33, 0xff059999, 0x52f89700, 0xccb9ffff, 0x200a82ce, 0x23988317, 0xa69819f5, 0x0b83e582,
0xe60a002b, 0x2cf70868, 0x334600ff, 0x271e8232, 0xff343335, 0x6766e7ff, 0x32287182, 0xffffcccc, 0x15676652, 0x66201d90, 0xd3379541, 0x086622ea,
0x20ea87ff, 0x27eaa29a, 0xf70e078b, 0x1554f744, 0x2c27fe82, 0x00ff3333, 0x86cdcc23, 0x9e4b1804, 0x077e6408, 0x33dcff2a, 0xffff8b33, 0x08cdccd3,
0xcc210684, 0x201182ff, 0x24048634, 0x8bccccd3, 0x821c8408, 0x6a28821b, 0xdb220b57, 0x671894f7, 0xab210e54, 0x22258286, 0x827a54ee, 0x59dd3731,
0x00ff079a, 0xff666650, 0x8e82f2ff, 0x803f00ff, 0xc0ffff00, 0x0a4d3e8a, 0xafff2305, 0xd0829a99, 0x34b32223, 0x0ee26f06, 0xee218a83, 0x218a844c,
0x8a824cee, 0x4bb3f121, 0xff250c77, 0xcc4cddff, 0x22538206, 0x83ff9a99, 0x84538244, 0x82048358, 0x20188453, 0x59248408, 0xff211753, 0x195e82ff,
0x21115b19, 0x8c8200ff, 0x53850720, 0x830d0021, 0x8ac022b6, 0x22b6863d, 0x848f82f2, 0x20d684ca, 0x1cf84b99, 0x00ff3323, 0x052d700e, 0xd882cd20,
0x8b85ab22, 0xa621e583, 0x22e58267, 0x84717d0d, 0x21538244, 0x0483c375, 0x0e86c220, 0x727d0d22, 0x66202484, 0x17e44d18, 0xfb14fb24, 0xb1821594,
0xcc4cb931, 0x4c3900ff, 0xc6ffffcd, 0x00ff34b3, 0x8333b346, 0x1a46205d, 0x220a2503, 0x838bcc4c, 0x08342117, 0x28860685, 0x37823920, 0x3c82ff20,
0x06822d82, 0x4982cd20, 0x33b3c622, 0x54851b84, 0xef0e0829, 0x00ff14f9, 0x8334331c, 0xc0c22665, 0xc1ffff00, 0x20048280, 0x200984d3, 0x086a8233,
0xb8de1022, 0xc4ffff08, 0x00ff5278, 0x0548e10f, 0xe1d5ffff, 0x0b00ff48, 0xffff4861, 0xffb8dee2, 0xb81e2400, 0x29227182, 0xc8824821, 0x7a14002b,
0x855700ff, 0x00ff051e, 0x23258255, 0x00c0c6ff, 0x03210a82, 0x245082a0, 0x9000a0fd, 0x0678628c, 0x2c821082, 0x61e00821, 0xeb5405fa, 0x22158207,
0x6eff908a, 0x0222053e, 0x74820060, 0x825e5821, 0xba6f225f, 0x277482e1, 0xff666658, 0x333390ff, 0xfe210a82, 0x204e8240, 0x213c82fe, 0xa483feff,
0x8220fe21, 0xa0ff230e, 0x30828900, 0xff220682, 0x1a82fdff, 0x60000022, 0x09841582, 0x2e840120, 0x4f824020, 0x71830020, 0xa1f2ff22, 0x0021c482,
0x83358301, 0x01002149, 0x8d224986, 0x3e82ffff, 0x02209782, 0xac825086, 0x49840982, 0x82010021, 0x82338369, 0xd955271e, 0x3900ff9a, 0xb682ec51,
0x04080031, 0x80a8ffff, 0xff8b0500, 0xb8ded6ff, 0x83e2ffff, 0x83db20f4, 0x83d52004, 0x9ef4210e, 0x23073a41, 0xb81ef0ff, 0xc127ba82, 0xffffaa3f,
0x412a1cef, 0x002e0564, 0x8bcc4c2c, 0x333d00ff, 0x958b0834, 0xa88300ff, 0x82090021, 0x0200273c, 0x00ff00a0, 0xb283c009, 0x0a831520, 0x1e455136,
0x682200ff, 0x4d00fff6, 0x00ff66e6, 0xff71fd2d, 0x66e64700, 0x16228c82, 0x1982b91e, 0x9948a129, 0x801c00ff, 0x828bb700, 0xae262212, 0x26c98214,
0x00ff52f8, 0x82cd4c1f, 0x9a993192, 0xdbffff8b, 0xff089a99, 0x66e6c3ff, 0x2000ff07, 0x15226283, 0xc08252f8, 0x82850421, 0x07032658, 0x0200ffae,
0x22d58299, 0x8266e604, 0x6605218f, 0xaa235983, 0x82079a99, 0xe008210c, 0x07218a82, 0x211c8219, 0x09822007, 0x21820820, 0x069b0824, 0x231900ff,
0xff2214ab, 0xcf5c55ff, 0xa0fa2105, 0xc5832b82, 0x23052d65, 0x88008004, 0x20209982, 0xff234b82, 0x82cd0cea, 0x193c2278, 0x225d8399, 0x82486124,
0x0a572ba6, 0x5e1d00ff, 0x2600ffb8, 0xc18348a1, 0x82192b21, 0x0e0021b2, 0xff22ea82, 0x488280e3, 0x4621162d, 0x5eddffff, 0xffb908b8, 0x821eb8ff,
0x68222b27, 0xb2fffff8, 0x00ff7c14, 0xd6829715, 0xccccae23, 0x06e75608, 0x162ef62a, 0x330100ff, 0xf6ffff34, 0x812a4482, 0x34f70e08, 0x971514f7,
0x6d827b06, 0x83f7ff21, 0x18c683c1, 0x200a8178, 0x18cb8cb3, 0x220ae549, 0x8297079b, 0x6241181a, 0x0a5d6909, 0x8274f721, 0x0660694d, 0x8e829e20,
0xc5820e20, 0x61eeff22, 0xa249bb82, 0x20e68305, 0x83bd82f8, 0xffff224d, 0x228882f7, 0x85064b08, 0xffff2108, 0x7f831883, 0x10828b20, 0x08002029,
0xffff077b, 0x826666ee, 0x99f1210d, 0x82051472, 0x214b820a, 0x6483fb08, 0xff241a83, 0x66660e00, 0x7205a34d, 0xf729055c, 0x1514fbc4, 0xc0feffff,
0x31a08200, 0xad34731e, 0xcc1200ff, 0x2c00ffcc, 0xff8bcccc, 0xaf603100, 0x82692005, 0xa9ff227f, 0x219d82de, 0x57821956, 0x82219621, 0x074b269d,
0xa14600ff, 0x27248248, 0xffb85e39, 0xb89ec6ff, 0xb9236b82, 0x85084861, 0x86118406, 0x23158204, 0xa4fb088b, 0x179a4b18, 0xd6823082, 0x84059d76,
0x080027d1, 0x088b00e0, 0x4d4174f8, 0x160d5417, 0xabfcfb25, 0x8264f715, 0x18042034, 0x200875b2, 0x09217200, 0x72079b21, 0x1344052a, 0x23188206,
0xa0fbffff, 0xfb206782, 0xff233282, 0x8247a1fb, 0x83fc2086, 0x7ab318c9, 0x187b2009, 0x210901ae, 0x378248a1, 0xff666636, 0xb95e0400, 0xef0e088b,
0xd4f7b4f7, 0xff076b15, 0x66e65000, 0x09227182, 0x5d8266e6, 0xcecc0922, 0x2305074d, 0x66e60800, 0x80325d82, 0x00ff0800, 0xff008032, 0xcccce6ff,
0xff3bf705, 0x07822300, 0x1200ff2f, 0x00ff9819, 0xff68e603, 0x9c990c00, 0x05f56aff, 0xccccf334, 0x19f2ffff, 0xffff0898, 0xff9a9949, 0x686631ff,
0x11827e05, 0xff323324, 0x7882efff, 0x19f8ff22, 0xed271582, 0x088b9a99, 0x83fcfeff, 0xf0ea1874, 0x00ff2109, 0x2005d666, 0x2f70841a, 0x07cc4c15,
0x82bcffff, 0xff05a98f, 0xf6a8eeff, 0x2906ff5e, 0xff7bd4f4, 0xce4c1000, 0x94829e8b, 0xcccc4022, 0x0020db82, 0x3b823082, 0x84717d21, 0x00ff2d40,
0x8b8f821a, 0x0644f708, 0x066b07ab, 0x4c213a82, 0x11dc46cd, 0x2009cf5d, 0x086276cd, 0x34823320, 0x7d471420, 0x08d05d0e, 0x2716f552, 0xfb058b6b,
0x5b153b54, 0xbf396782, 0xbb073433, 0xb3eaffff, 0x00ff0532, 0x079a1956, 0xff94f80e, 0x66e60700, 0x533b8215, 0xb32b0594, 0xdfffff34, 0xffff66e6,
0x836666d7, 0xd19022ff, 0x223882ec, 0x820040d8, 0x83df2021, 0x332022d7, 0x23998234, 0x08cccc27, 0x23220682, 0xcb8248e1, 0xffa4303a, 0x52781d00,
0x5e2200ff, 0x0500ffb9, 0xff080080, 0x00c0eeff, 0x260d00ff, 0xf4214882, 0x051963b0, 0x8305d449, 0x233c8235, 0x402000ff, 0x4c822082, 0x2700ff22,
0x33052f68, 0x0671fd0d, 0x82f2ffff, 0x0b00ff8f, 0xffffcdcc, 0x9c0080f7, 0x13223382, 0x69843333, 0x69826120, 0x5c8f1c35, 0x9e1c00ff, 0x2300ffb8,
0x088b4861, 0x00ff069b, 0x82f6282c, 0x82232024, 0x0d9c69b1, 0x2f821120, 0x37faff2d, 0x0f00ff4c, 0xffff52f8, 0x82be9ff6, 0xb81e2c8e, 0x0400ff08,
0x00ffc3f5, 0x822ec100, 0x991921a9, 0xc6210982, 0x25098380, 0xc0088b9a, 0xb876b68b, 0xfdff260a, 0xffff46b6, 0x24a582f5, 0x0060fcff, 0x22388281,
0x8206e105, 0x55232270, 0x2d708280, 0xff34b31c, 0x6666e3ff, 0xdcffff8b, 0xa0829a99, 0x82ecff21, 0xf7ff24f0, 0x517af668, 0xff230584, 0x820040f4,
0x170e2233, 0x8233820a, 0x833382f0, 0xdfff23ec, 0x6b41cccc, 0x20338305, 0x21ca82e8, 0x0483f4ff, 0xb85eeb22, 0x22053341, 0x83def2ff, 0x542232a4,
0xfaffff7c, 0x00ff3e8a, 0xffcc4c1a, 0xce4ce2ff, 0x2f69828b, 0x0e083233, 0x669b01ff, 0x1001ff66, 0x91150080, 0xb94fd782, 0xf3ff2307, 0x318233b3,
0x20068f5b, 0x220a8208, 0x60816866, 0xff210587, 0x291a83fa, 0x8b0080f4, 0x0654fb08, 0x0983ffff, 0xcd201983, 0x4c20f782, 0x2105474f, 0x30820895,
0x00210b82, 0x0809500a, 0xcd4c0c30, 0x0900ff91, 0xeb0866e6, 0xf59f00ff, 0x2d8205c2, 0x8232b321, 0x9ca42611, 0x800a00ff, 0x270e8200, 0x00ffa2e5,
0x8b34330b, 0x0683e782, 0xff231685, 0x851c1afa, 0xf6ff232a, 0x3c82a65b, 0x0a60ff2c, 0xffff053e, 0xff9a9984, 0xb58277ff, 0x1695c318, 0x1824f721,
0x250acfc4, 0xeeffff66, 0xf2829a19, 0x7f82e920, 0x0724fb22, 0x14840985, 0x18820486, 0x3382ce82, 0x0af98918, 0x0a278a18, 0x0724f726, 0x1543b4fb,
0x46276b82, 0x00ff34b3, 0x825c4f39, 0xcc4c2604, 0xb04600ff, 0x058049a4, 0x1b823320, 0x49079749, 0x06850652, 0x49ffff21, 0xff240769, 0xcd4cb9ff,
0xff232d82, 0x825c4fb9, 0xb0c6221b, 0x854484a4, 0x0e083654, 0x19e901ff, 0x5400ff9a, 0xff1534b3, 0x52f8e7ff, 0x68d6ffff, 0x31e982f6, 0xff705df9,
0x1e85f4ff, 0x4ef1ffff, 0xfcffff16, 0x0e82ec11, 0xff8e8231, 0x48a10600, 0x7effff08, 0x00ff66e6, 0x825c8f4a, 0x1c6b2229, 0x22da8328, 0x4200c0f2,
0xf5210669, 0x22098240, 0x83e2baf2, 0xf8cf2874, 0xffff0652, 0x82e1baf2, 0x1917837a, 0x2d0c2218, 0x0766e694, 0xca7fffff, 0xb5ffff3e, 0x4a826666,
0x8f82f427, 0x5ef9ffff, 0x837482fa, 0xee0322e6, 0x260e8356, 0x0b00ffb8, 0x85085e7a, 0x2900239e, 0x9e840a97, 0x15837120, 0x00ffe22a, 0xffc1ea03,
0xf6a80e00, 0x7d210e82, 0x269e83f4, 0x00ff0846, 0x83221b81, 0x825e209e, 0xe67e2229, 0x210a8267, 0x0a820080, 0x0080f422, 0xb3212082, 0x26ce8234,
0x00ff0a17, 0x8498990e, 0x283982ce, 0xff080080, 0xae071800, 0x215e82ff, 0x1582050c, 0x8290a221, 0xe07a2115, 0xb1212482, 0x216382ec, 0x0e8214ee,
0x83717d21, 0x82fa208d, 0x19812229, 0x21b2829a, 0x5382a470, 0x4821ff28, 0xe39400ff, 0xb7190596, 0x452212e1, 0x2c828b1f, 0x3d0a3028, 0x0d00ff06,
0x21821e45, 0x26058863, 0xff8b0040, 0x83c0f2ff, 0x00002773, 0x6bffff20, 0x73829a19, 0x52415483, 0x0b002305, 0x8382707d, 0x3682a120, 0xad840e20,
0x85aa1121, 0xf4ff23a8, 0x5182a285, 0x1e051822, 0x2306a641, 0x12a30600, 0x2706a641, 0xffbc14fc, 0x0c57f1ff, 0x82210e82, 0x26a8830e, 0xffff08b8,
0x82e6c07f, 0xe07a21a8, 0xff235e86, 0x825278b5, 0x800b220a, 0x21208200, 0xd8827a54, 0x8266e621, 0x68662434, 0x83f8ffff, 0x80f42213, 0x9b861800,
0x7cfb2d62, 0x4cdbffff, 0x00ff15cc, 0x0734b3cc, 0x64063741, 0x0a21056c, 0x239982c0, 0x8b34b3f2, 0xf222bb82, 0x471933b3, 0xf2220d7e, 0x168200c0,
0xcc4c3323, 0x054b5a07, 0x99f6ff29, 0xefffff9a, 0x82740080, 0x18e52027, 0x201de384, 0x06ee44cc, 0x5f550020, 0x831a200c, 0x204082fe, 0x2b5085a2,
0x66660900, 0xff1cfb08, 0x34b37400, 0x11209d82, 0x24054c69, 0x00ffcd4c, 0x08ce7d0e, 0x11204782, 0x2005184e, 0x2d6c1833, 0x09db4d0d, 0x460a1f7d,
0x3f8206cd, 0x2667cd20, 0x83002005, 0x5b082454, 0x7dff155b, 0x30820ac7, 0x210e7c4e, 0x50190e00, 0xff200d91, 0x70833784, 0x33208c91, 0x8c845983,
0x85836382, 0xd4f70823, 0x0c1e4f4b, 0x3184be8f, 0x4d853420, 0x59eeff21, 0x0f19053d, 0x5b222b3a, 0xbf8344f7, 0x9408dc7d, 0x88cc20f0, 0x8b3422f0,
0x0b6a4f08, 0x654f8d8f, 0x20168306, 0x188d85ff, 0x23611e89, 0x54f794fb, 0xb248c284, 0x18ff2007, 0x4109b15b, 0xc29a16b3, 0x8684ab21, 0x540e22eb,
0x22c2867c, 0x5df4fb8b, 0x77420c64, 0x66112b0d, 0xf9ffff66, 0x00ff9a19, 0xfe82b30f, 0xccccf422, 0x30078344, 0xff34333f, 0x32b39100, 0x0600ff05,
0x00ff3233, 0x260f820c, 0x0080faff, 0x820e00ff, 0xf3ff2c2e, 0x00ff68e6, 0x08666605, 0x83f3ffff, 0x4c052234, 0x187a82cc, 0x220807c2, 0x829a99fa,
0x68e62118, 0xbf201e82, 0x6e281483, 0xff05cc4c, 0x6666ffff, 0xff26d382, 0x00ffce4c, 0x7882e600, 0x21820f83, 0x33b3dc22, 0xe3251682, 0xffffcd4c,
0x232184e2, 0x0834b3dc, 0x8206de57, 0xff3323ae, 0x5d82e3ff, 0x4c23002b, 0x8b088bcd, 0xf704fb07, 0x0e3141c4, 0x4134b321, 0x1119052a, 0xe5420a61,
0x1bb4420c, 0xf120f582, 0x0d6f6f18, 0x44fb5b22, 0x421c7343, 0x424311e6, 0xd4f7222d, 0x0fb442cb, 0x82107443, 0xf1ff23ef, 0x5c1834b3, 0xb4421254,
0x1142430f, 0x4562b442, 0xffe19c37, 0xffff2e08, 0xff34b330, 0x9a99c9ff, 0x4c00ff15, 0x00ff9899, 0x05cc4c93, 0x190600ff, 0x0b00ff9a, 0xffffcecc,
0xff6666fb, 0x00800e00, 0x4cf4ffff, 0x211883ce, 0x0a820898, 0x85323321, 0xf1ff2123, 0x23831983, 0xe6f9ff23, 0x82238468, 0x82b3201e, 0x6cff2e33,
0x89059a99, 0x330000ff, 0x888c8932, 0x2815828b, 0x8b9999dd, 0x66e2ffff, 0x131c4367, 0x99991d22, 0x22061c43, 0x82676622, 0x2400232d, 0x5f463233,
0xe60f2714, 0xfaffff66, 0x94863433, 0x7f82f620, 0x330b0030, 0x8b8b0834, 0xf8af0e05, 0x1534f874, 0x651914fc, 0x943918f6, 0xffff8b07, 0xffe2faca,
0xe1fa2a00, 0x05d5ffff, 0x3500ff1e, 0x088b1f05, 0x823382f8, 0x82202009, 0xfa2a2272, 0x201e83e0, 0x240a82e2, 0x081e0535, 0x823383f7, 0x601e211a,
0x56261584, 0xe4fb088b, 0x7518c4fb, 0x384e0706, 0xd5711805, 0x0b0d6309, 0x0f067518, 0x107c2c19, 0x088bb823, 0x0c5f4fcb, 0x230a4650, 0xeb8b076b,
0xf7246483, 0xffff9a19, 0x83056250, 0x097b50f8, 0x82482121, 0x573419ca, 0x6d75180e, 0x4e7a8308, 0x80250750, 0xff088b00, 0x9d751800, 0x82b28309,
0x80e5283a, 0x076b0800, 0xb92b14f7, 0x609a82ca, 0xd9820570, 0xff24ca9d, 0x33b35d00, 0xf8256883, 0xffff6766, 0x84c983f9, 0x66f82204, 0x229c8266,
0x6566bbff, 0x978206c4, 0x1c82f920, 0x19060029, 0x00ff8b9a, 0x82999907, 0x4c4222b9, 0x529918cd, 0x21d68d17, 0x3e82c275, 0x3e8ae528, 0xbdffff08,
0xda8233b3, 0xa2ffff24, 0xde40cd4c, 0x146e2783, 0xf8ffff06, 0xde40ba5e, 0x0b8842b6, 0x8d426820, 0x19f72306, 0x04538b98, 0x59291905, 0x31884213,
0xf8af0e2b, 0x1534f794, 0xff0654fc, 0x07ba5fff, 0x5fff9921, 0x6b200a24, 0x8431ba43, 0x18232085, 0x2212795b, 0x423b04fc, 0x21223916, 0xf542ff48,
0x43de2006, 0xf7221dc0, 0x65b98b14, 0xb7285b43, 0x00e02165, 0x2005ed53, 0x05065600, 0x4300e021, 0x65e51cc1, 0xe4f75b22, 0x221abd45, 0x188b074b,
0x2d15078b, 0xff0654f8, 0x98592300, 0x1c00ff8b, 0x048368a6, 0xb4616620, 0xcb082105, 0xbb453282, 0x4544200f, 0xff226456, 0xf144fdff, 0x458b2072,
0x84441a63, 0x02002156, 0x46056345, 0x1f4406a8, 0xffef3f58, 0x66e6ce00, 0xe6ca00ff, 0xffff1566, 0xff9a19dc, 0x0080f5ff, 0xcce7ffff, 0xe1ffffcd,
0x05713433, 0x19df2406, 0x7dff089a, 0x0c3005e2, 0x00ffcccc, 0x96676611, 0x331500ff, 0x0700ff33, 0x07321a84, 0x00ff9999, 0x05cc4c2b, 0xe190ffff,
0xceffff48, 0x4f823433, 0x7b54e027, 0x66b300ff, 0x2f158266, 0xff48a1ff, 0x9a990100, 0xa10000ff, 0x8b8b8c48, 0x392b4e82, 0x00ff00c0, 0xff462120,
0x82594100, 0xdc102217, 0x2109822a, 0x1a8366e6, 0x00a00123, 0x262e828b, 0xffffee7c, 0x82eeecff, 0x820f8209, 0x820d2031, 0x0d00219f, 0x00229f82,
0xb482a612, 0x82400921, 0xde132740, 0x0300ffb8, 0x1e820040, 0xb8de1226, 0x1300ff8e, 0x01201583, 0x13212483, 0x21738221, 0x1a82c000, 0x00f6ff31,
0xffff9942, 0xff6c87f1, 0x1e450a00, 0x83eeffff, 0x8402208e, 0x83e8201a, 0xe0032225, 0x06b55100, 0x64db0124, 0x1382ffff, 0xff298682, 0x8b9042b3,
0x57b4ffff, 0x2c85820a, 0xffffce8c, 0xffcc4cbc, 0x4861daff, 0x3a2b8208, 0xffffc4c0, 0xff847bf2, 0x4220f3ff, 0x11e4ffff, 0x0400ffec, 0xffffbedf,
0x8266e6e3, 0xbf1f2b8a, 0x4cffffbf, 0xff059a99, 0x8f820e00, 0x83afff21, 0x0c7a258f, 0xc2ffffcd, 0x44220983, 0x5f823333, 0x2706c357, 0xffe92603,
0x444c0000, 0xc520c683, 0x60200982, 0xf220b083, 0x11202683, 0xff229a82, 0xea8266f1, 0xb85e172b, 0x99f4ffff, 0x1b00ff9a, 0x307e8321, 0xffcd4cd0,
0xa8e50c00, 0x99c5ffff, 0x2600ff99, 0x279882cc, 0xff7b14fa, 0x9a192100, 0x612d7e82, 0x00ffb89e, 0x15cc4c89, 0x33ffffff, 0x82998234, 0xfeff2104,
0x03275283, 0xffff32b3, 0x823333fe, 0x8380206c, 0xc0f72167, 0xf721bd82, 0x25fd8220, 0xff06a1f3, 0x0983f9ff, 0x6c83f120, 0xe684fd20, 0x4861f125,
0x82fdffff, 0xf1ff2238, 0x225282de, 0x53c01f02, 0x0022053a, 0x3d83a005, 0x0080ff23, 0x20628287, 0x2c3982e0, 0xff8200fc, 0xfabf0000, 0xe0fbffff,
0x218282c6, 0x5382c003, 0xff3fea25, 0x831400ff, 0x82f12509, 0x1500ff8f, 0x00230982, 0x82b9de03, 0xac15211e, 0x0326c082, 0x00ff03b6, 0x8c82b30e,
0xcecc1426, 0x19fcffff, 0x1526ca82, 0xff0832b3, 0xf4839d01, 0x9a992422, 0xa725c082, 0x00ff4821, 0x2f878331, 0x9d527899, 0x809bffff, 0xff087b00,
0x9a99e4ff, 0x85253182, 0xeaffff1e, 0x23fc824c, 0x860040e9, 0xc0201482, 0xe0209583, 0x4b2bed83, 0xff059a99, 0x48a1f0ff, 0x83a8ffff, 0xb36e2dba,
0x92ffff34, 0x00ff7cd4, 0x8050f83e, 0x3e218182, 0x20408219, 0x201a83f4, 0x2c6c838e, 0xff5ccf40, 0x64660f00, 0x1e5700ff, 0x201e82b8, 0x2bab831f,
0x050080b3, 0xf30400ff, 0x1c00ff38, 0xf3225483, 0x14719819, 0xe7ff2c05, 0x00ffcccc, 0x0866660d, 0x83eefeff, 0x339f2859, 0x00ff1533, 0x8600e003,
0xbe1422e5, 0x21da82b8, 0x0e850180, 0x84fcff21, 0x22ff8353, 0x8240fcff, 0x800e2723, 0xebffff00, 0xc2828e42, 0xff230e82, 0x82b95eea, 0x40ff25d2,
0xfbffff06, 0xff234282, 0x83fa7ffe, 0xff832419, 0x8220feff, 0x5ffc3128, 0xffff087d, 0x9442c0f7, 0xa1f3ffff, 0x0600ff06, 0xff229c82, 0x62825ef1,
0x829e0221, 0xf1ff21ac, 0x00294482, 0x7d00a002, 0xc0fdffff, 0x05a2413b, 0x80faff23, 0x22358207, 0x82e29afe, 0x6de72797, 0xcc0000ff, 0x05828fcc,
0x829a9921, 0x991921d1, 0x4520e282, 0xff2c0a82, 0x15cd4c39, 0x61c8ffff, 0x0900ff48, 0xda217a83, 0x21098221, 0x34825a31, 0xa3820420, 0xde340022,
0x00275f82, 0xffb89e14, 0x825ee6ff, 0xa123226f, 0x2ab88248, 0x00ffd863, 0xff703d2b, 0x835ef8ff, 0x822b201e, 0xf8ff227e, 0x31d78260, 0xff707d28,
0x343f0700, 0x281c00ff, 0x1000fff6, 0x828284ff, 0x34b3f22a, 0xf3ccffff, 0xcbffff32, 0xff285282, 0xff6866de, 0x6666c7ff, 0xcc217082, 0x278682cc,
0xffce4c83, 0xcc4c9700, 0xf7258682, 0x00ff40c0, 0x25868308, 0xffc07ff3, 0x09830600, 0x9a83f120, 0x0a84e686, 0xe6848020, 0xe683e020, 0x96821e20,
0x8360fa21, 0x80ff26e6, 0xffff8f00, 0x233082ff, 0x7dff0300, 0xc020e682, 0x04228d82, 0x5f823b1f, 0x41109441, 0x944106a3, 0x4120200c, 0x62200894,
0xfc204782, 0xea225883, 0xbc820040, 0x7834ff2a, 0xedfbffff, 0xfeffffd5, 0xfc21bc83, 0x2bc68233, 0xffd04cfe, 0x0080fcff, 0x70fb0e08, 0x2a1ca56e,
0xff8b07b4, 0x9a99a7ff, 0x82b8ffff, 0x820485ef, 0x828b200e, 0xa1a72257, 0x2f1b8247, 0xffb85eb8, 0x9a994700, 0x5800ff8b, 0xf7086666, 0x00203083,
0x2406016d, 0x1c00ff66, 0x820482a6, 0x088b270e, 0x2b0654f7, 0x7e18d4fb, 0x8b225c8b, 0xfa4b15ab, 0x0a684d0b, 0x7016965c, 0x7f1819a4, 0x8b221318,
0xbe8e74f7, 0x8b908222, 0x7d224282, 0x7e180870, 0x8d9a16bc, 0xff90822b, 0x0080eaff, 0x7d1500ff, 0x2c868570, 0xffef0e08, 0x3433a301, 0x66a601ff,
0x29c88266, 0xffcccc4c, 0x9a9999ff, 0xc05bdb05, 0x080c520e, 0xcf6e4b20, 0x0e65510f, 0xb3f1ff2c, 0xf2ffff34, 0xffff9a99, 0x4c824cee, 0x9a19ff26,
0xe2ffff08, 0x00265782, 0xff66e626, 0x7f83d1ff, 0x82191921, 0x56cb201e, 0x06830507, 0xff211685, 0x202083e6, 0x200483e1, 0x233584d9, 0x0666e6c0,
0x01223b8d, 0x3b8600ff, 0x088b3326, 0xb3cbffff, 0xd1227d83, 0x977de17a, 0xe2ff2505, 0xffff5ccf, 0xee233b85, 0x53ff7b54, 0xf127050f, 0x00ff14ae,
0x5566660d, 0x082005da, 0x4d630684, 0x94531811, 0x06342319, 0x348207db, 0x90821a22, 0x2206c64e, 0x41707d15, 0x08310564, 0x00ff06eb, 0x8b9a1914,
0xf6ffff9e, 0x00ff1884, 0x28d7830c, 0x084ee2ef, 0xffff068b, 0x064b417c, 0x14f7152f, 0x05cb5b06, 0x074b063b, 0x14fb0cfb, 0x24268415, 0xffff958b,
0x332d82f7, 0x33b30100, 0x4cf4ffff, 0x00ff08cc, 0xff999907, 0xceccfdff, 0x4c220982, 0x4e79ffcd, 0xcc062105, 0x1e840983, 0x66660922, 0x33831982,
0x67660d22, 0x2006a246, 0x22328308, 0x820080f7, 0x4c0b223d, 0x214882ce, 0x5b6632b3, 0x83f72007, 0x8300202e, 0x99f22183, 0x2207b74f, 0x829a99f6,
0xb3032a29, 0xf9ffff34, 0x00ff3433, 0x2d4d8203, 0x32b3f8ff, 0x330200ff, 0xf8ffff32, 0x1e826666, 0x1e830b20, 0x4d82fe20, 0xe6080024, 0x6f7d8166,
0x7b082205, 0x84088507, 0x848120b5, 0xffff21b1, 0x08202482, 0x3a83b185, 0x4e84b185, 0x4cfcff23, 0x826284cc, 0x8307204e, 0x85788263, 0x051942b1,
0x4882b182, 0xbc796d83, 0x83f42005, 0xf7ff21b6, 0x1a84d683, 0xd683f220, 0xa182ff20, 0x3883ff20, 0x23052d49, 0x3333f9ff, 0x58836282, 0x83b3f821,
0x66e62109, 0x6720b183, 0x86828084, 0xcd4cfe22, 0x9c829684, 0x9a19f727, 0x7b088b7e, 0x240f8206, 0x818bcccc, 0x83c883ff, 0xffcd22ad, 0x20dc8200,
0x87e88408, 0x414a82f2, 0xf9200506, 0x00235e82, 0x8234b303, 0x97f6221e, 0x065a4e0a, 0x299cf226, 0xcc0000ff, 0xf722cc82, 0x47823373, 0x82008021,
0xaef4221e, 0x22488214, 0x8205ce4c, 0x211584c3, 0xdc829a99, 0xff00402e, 0x66660d00, 0x0c0700ff, 0x0900ffcd, 0xfc25dc84, 0x00ff1e45, 0x223e8306,
0x82c3f5fc, 0xce4c2119, 0xc221ad82, 0x2109828f, 0x48839a99, 0xffb85e32, 0x32b30100, 0x28f6ffff, 0xff8b95f6, 0x9a190c00, 0x8205896b, 0x22438208,
0x82950ad7, 0x48a12168, 0x08202484, 0x3d21b182, 0x243a8471, 0x0a0300ff, 0x234e853d, 0xe2ba0300, 0x4e826284, 0x82f3f821, 0x457882a2, 0x8c8406c7,
0x828c0821, 0x8308208c, 0x0b00236d, 0xb686ec51, 0x15850020, 0xb1838020, 0x85d76321, 0x090023e0, 0xf484f668, 0x06216782, 0x223482cc, 0x4234b303,
0x00230588, 0x869a1903, 0x33022276, 0x211e8232, 0x6782b301, 0x34b30b22, 0x09209c82, 0x5e5ddb82, 0xe6102b07, 0xffffff66, 0x83059a19, 0x134544fb,
0x01ff235c, 0x9b823320, 0x66669b22, 0x01226682, 0xd58232b3, 0x08208c84, 0x00238082, 0x5f9a190c, 0x08830574, 0x20096443, 0x09644332, 0x64439c20,
0x07b37c08, 0x4305a141, 0x68200664, 0x20086443, 0x08644364, 0x64433282, 0x20338207, 0x1a6443f4, 0xffff6822, 0x20076443, 0x08644330, 0x64433e82,
0x43342006, 0x1e820964, 0x20066443, 0x13644368, 0x83819821, 0x43d020b1, 0x78820964, 0x6666f826, 0xe6fcffff, 0x4e839782, 0x4cfcff22, 0xf9231e82,
0x83083433, 0x849820b1, 0x18644378, 0xb6847882, 0x66f7ff22, 0x64433e82, 0x43978206, 0x98200664, 0x3d73f484, 0x05bd4306, 0x82b3f821, 0x43fc2033,
0x32820564, 0xceccfd22, 0xfe221e82, 0x6443ce4c, 0xffff240a, 0x4366e6f3, 0x08830568, 0x20096843, 0x136843ce, 0x6f443220, 0x05794406, 0x44056843,
0xf2200899, 0x68430982, 0x21e48206, 0x68430800, 0x82b32005, 0x430b2033, 0x80210568, 0x06b86200, 0x6843b183, 0x9a192106, 0x22086843, 0x43ffcc4c,
0xb1820668, 0x83070021, 0xccfd22a6, 0x086843ce, 0x01201e83, 0xff234d82, 0x439a19f7, 0x08231168, 0x849566e6, 0x086843b1, 0x83091e7b, 0x234e8363,
0x34b30300, 0x83086843, 0x45092063, 0x8c85075f, 0xa084b182, 0x20068945, 0x21b68400, 0xd6830800, 0x0d201a84, 0x38832e88, 0xe6f8ff23, 0x23298266,
0xffcccc06, 0x62855885, 0x250c6843, 0xff058b8b, 0x21821f00, 0x99c4ff23, 0x0e04489a, 0x47008021, 0x044805fd, 0x00802132, 0x18070448, 0x2f08ff87,
0xa4f7ef0e, 0xff1534f8, 0x9a996000, 0x1300ff06, 0x00215d83, 0x24b08212, 0xf628f7ff, 0x05d546ff, 0xecd1f022, 0x6c27b082, 0xffffcecc, 0x821e0578,
0x99302299, 0x0f234898, 0x48070a48, 0x495a1023, 0x0523480e, 0x34b3f123, 0x05105cff, 0xdeffff24, 0x4c8268e6, 0x30b30025, 0x82faffff, 0x000023f1,
0x09826866, 0x829a9921, 0x62fa20e5, 0xc22605ba, 0xffff9a19, 0x1682e6cd, 0x66e6cd29, 0x19c2ffff, 0x83088b98, 0x83228306, 0x32002211, 0x240a8219,
0x66e63d00, 0x05666808, 0x4482ff20, 0x00ff6624, 0x04826605, 0x6a820020, 0x33050023, 0x22318234, 0x84ccccbd, 0x867b8269, 0x95662069, 0x86168269,
0x859a2069, 0x82992069, 0x2169978c, 0x6987d763, 0x8271bd21, 0x22698409, 0x6bb8dede, 0x5b181cd1, 0x834811ff, 0x119c4806, 0x0634f722, 0x4805057c,
0x8b201384, 0x602fcf82, 0x154b9a99, 0x66afffff, 0x072b0666, 0x829d00ff, 0xffff2d07, 0xeb3433b3, 0x3fffff05, 0xd4fb6666, 0x225c9045, 0xdc8bb4f7,
0xaf0e285f, 0x00ff64f7, 0x82cd4cd2, 0x33152765, 0xd5ffff33, 0xd88233b3, 0x9a99d522, 0x1083fa82, 0x4c2a0024, 0x238205cd, 0x15271883, 0xf2ffff8b,
0x18ff34b3, 0x840f8086, 0x231b8215, 0xffcc4cf5, 0x11e14418, 0x08f84418, 0x0d00ff26, 0x088bcc4c, 0x28840685, 0x54854984, 0xf7eb0823, 0x0cf75d8c,
0x220a1456, 0x7507d4fb, 0x4818083c, 0x48560d6c, 0x0c03760c, 0x3383f720, 0x3a14b94c, 0xff0654f8, 0x0080e5fe, 0xb372ffff, 0xffff1534, 0xff66e6fb,
0x32330800, 0x82f7ffff, 0x050028db, 0xffff9a19, 0x8266e6f6, 0x850684a8, 0xfaff2116, 0x2a842582, 0xccf7ff2d, 0xfb4308ce, 0xffff0524, 0x5b9919fa,
0x04220624, 0xea69cdcc, 0xe60b2306, 0xe2828567, 0x10830b20, 0x8219fa21, 0x660e2192, 0x04285e82, 0xff91cccc, 0x66e60b00, 0x05221a82, 0xfc84cd4c,
0x00ff0528, 0x0666665a, 0x108300ff, 0x4cf5ff25, 0x829105cc, 0x2332874d, 0x3433fbff, 0x21059b5b, 0x36840500, 0x42823c82, 0xff204882, 0x8405586a,
0x830b205c, 0x82f7208b, 0xba00218b, 0xd922d083, 0xd0823233, 0x0a82f820, 0x82020021, 0xf7ff21cb, 0x0021b482, 0x23808201, 0x9a99f7ff, 0x2a0d637b,
0xcdccdfff, 0xd8ffff8b, 0x84083333, 0x666c8206, 0xff2407a0, 0xcccc2700, 0x00272d82, 0x8b9a190b, 0x840a00ff, 0x2004834e, 0x5f498209, 0x00210543,
0x230a8204, 0xceccfaff, 0xfd25b282, 0x00ffcc4c, 0x205f8406, 0xe9461800, 0x24f72214, 0x82468207, 0x83ff201a, 0xec4618e5, 0x0b38420b, 0x0a421b83,
0xffff2c06, 0x0766e6e3, 0xf770fb0e, 0x8254f7bc, 0x5ed32cd0, 0x00ff06b8, 0xad482115, 0x830f00ff, 0x66282288, 0x22518266, 0x829a9925, 0x580032bb,
0xffff4861, 0xffcdccc6, 0xb89e3700, 0x33b9ffff, 0x84bb8233, 0x23168506, 0x4861c8ff, 0xa7225882, 0x2d82b89e, 0x82daff21, 0x234484b8, 0x9a99d7ff,
0x69235484, 0x84ffff08, 0x394e1961, 0x8234200d, 0xccf22233, 0x05d27ccc, 0x00c0f222, 0x0482b782, 0x40f5ff22, 0x0d280982, 0x088b0040, 0x2cfb06eb,
0xff20d882, 0x1b822482, 0xff267f82, 0xff3433f5, 0x7f830d00, 0xd618ab20, 0x2c221808, 0x1b97eb07, 0x4d82ab20, 0x34213e82, 0x234885ff, 0xffcccc0a,
0x8b2b5c83, 0xf71cfb08, 0x00ff1544, 0x82b89e1d, 0x831220f5, 0x80e722ee, 0x229e8200, 0x830080d8, 0x83dd20d2, 0xe1e43111, 0xd4ffff48, 0xffff0080,
0xffb81eeb, 0x5238e9ff, 0xeb21d682, 0x20e28219, 0x25478316, 0xff66e6e4, 0x35832b00, 0x41220021, 0x27200536, 0x00222b82, 0x16826612, 0x09831820,
0x9a991d2b, 0x2f0e088b, 0x04f754f8, 0x05f54f15, 0xd34e1a20, 0xc4fb2112, 0x2018745d, 0x17b959d4, 0x156b8319, 0x20c51022, 0x0021bb82, 0x6b83190b,
0x0728241a, 0x820900ff, 0x090024bc, 0x19ffd8a3, 0x23106b83, 0x1554f7c4, 0x2108e86e, 0x20820020, 0xec823920, 0x00e0082c, 0xffbb088b, 0x66e60000,
0x9182bb05, 0x086f0020, 0x211f8d05, 0x0082ffab, 0x6f05c421, 0xe1300d0d, 0xffff8b48, 0x081e05f8, 0x00d0ffff, 0x8bbb073c, 0x06201f8f, 0x60201f84,
0x20051042, 0x235182f7, 0x00e0f8ff, 0x04833282, 0x8b220e82, 0xa34b5b08, 0x04fb2105, 0x8f07b46e, 0x826b2020, 0x0e002497, 0x83ffff05, 0x2339852e,
0x84200700, 0xdf29c583, 0x00ff087c, 0x07f2ff6f, 0x9577825b, 0x07ab251f, 0xc4fb84f7, 0x36fe8319, 0xf8ef0e2b, 0x1574f784, 0x66b0ffff, 0x24c78266,
0xff9a99bf, 0x820482ff, 0x2010820a, 0x24068508, 0x614000ff, 0x21168448, 0x341a00ff, 0xcc265d65, 0x0700ffcc, 0x79183433, 0xcc210817, 0xa649188b,
0xf8ff230c, 0x9282cccc, 0x3433f726, 0xab075b08, 0x0cd0121a, 0xd6f8ff23, 0x211a8388, 0xb4837829, 0x13ab6519, 0x20ffff25, 0x82ab9a19, 0xe68f25e9,
0xffff0666, 0x141b6619, 0xfb07bb24, 0x576a0654, 0x66e63105, 0x1600ff66, 0xfffff668, 0xff9a99e9, 0x0a971900, 0x01238b82, 0x82343338, 0xe6e6213b,
0x1e201b82, 0xff212082, 0x280983f0, 0x8b9a1927, 0x802a00ff, 0x09064900, 0xff008029, 0xce4c0500, 0x83ffffff, 0x4c05223c, 0x25c782cc, 0xf766e6af,
0x17821534, 0x82ea6621, 0x5105222e, 0x211d8268, 0x0f827fab, 0x82ae4721, 0x04862109, 0x30232282, 0x82077dce, 0x8219201b, 0x20768534, 0x82648316,
0x088b248a, 0x84bb063b, 0x0a97211a, 0x9b849186, 0xfb201a84, 0x66219384, 0x83ff8266, 0xe9ff21ab, 0xff28ab82, 0xf668e6ff, 0x3b075b08, 0x6821ae83,
0x861a83f6, 0x820a8239, 0xfb082635, 0x01ff0704, 0x25ce8368, 0xcc4c2000, 0xc48200ff, 0x3000ff23, 0x200982cc, 0x28d38318, 0x8b34b336, 0xeb34fb08,
0x93941915, 0xef0e2909, 0x94f774f8, 0x0604f715, 0x4b0d785f, 0xfb210818, 0x777f1874, 0xb4fc2117, 0x93188682, 0xd420157e, 0x056f3382, 0x069b2214,
0x211a83d3, 0x6145400d, 0x0a002206, 0x076145c0, 0x0d00ff2e, 0xff8bcd4c, 0x33b30a00, 0x40f5ffff, 0x2207fb69, 0x8bcb0743, 0x861c8233, 0x202c8233,
0x20339a08, 0x1b6b52bb, 0x540b3961, 0xfb250807, 0xfbeb0724, 0xbd4c1844, 0xa44c1817, 0xebe01810, 0xe4fb233b, 0x7a19155b, 0xab201689, 0x082cb783,
0xffffcccc, 0xffcdccf8, 0x34330700, 0x2005d642, 0x18808508, 0x222d3ce2, 0x8abb04fb, 0x184e91cf, 0x920ba84c, 0xf62821cf, 0xcc208583, 0xd725a982,
0xab088b0a, 0x24b29806, 0x04f724f8, 0xdf4d1815, 0xe0c61918, 0x924d1816, 0x8b342110, 0xcc206083, 0x09f14418, 0x4106437d, 0x34270502, 0x066b088b,
0x9cdba4fb, 0x413320d0, 0x3320191f, 0x16bbe118, 0x12db4d18, 0xfb07ab24, 0xcf839b44, 0x831a1f41, 0xca4d184e, 0x101f410d, 0x0e0ae218, 0x2313d241,
0x04fb44f7, 0x3420d0b7, 0xcc20d088, 0x41059841, 0xfb211ba1, 0x36714224, 0x831a0241, 0x0f224280, 0x42c4f721, 0xf9450b71, 0xf7ff2406, 0x428b3433,
0x342006c0, 0x452de418, 0x64f75b22, 0x180e7042, 0x2108e546, 0x7042076b, 0x0ad72135, 0x2006ed42, 0x86d48307, 0x41bb20b2, 0xcfac0c9f, 0xbd433320,
0xccf82206, 0xfde418cd, 0x09214217, 0x94f70e27, 0xe6a001ff, 0x22d48266, 0x829a9972, 0x4c8e27c0, 0xa2ffffcc, 0x0a82f6e8, 0x0a178d23, 0x08068208,
0xf668ce26, 0x5e1500ff, 0xd3ffffb8, 0x00ff707d, 0xff9a9923, 0x6866dbff, 0xf3ffff08, 0xffff0080, 0xff289ccd, 0xa430d6ff, 0x17241e82, 0xffffff0c,
0x04821383, 0xfc211e82, 0x211482f0, 0x4f82ccfc, 0xfd67ff39, 0x99fcffff, 0x0100ff98, 0x08880348, 0x690000ff, 0x00ff889a, 0x8287b603, 0x9a192130,
0x2f220982, 0x16828bdf, 0x5c4f4228, 0x3100ff8b, 0x3851a4b0, 0x18002105, 0x00236b82, 0x822a9c13, 0xb820221a, 0x83708252, 0x83242019, 0xe6f827a1,
0x2600ff66, 0x35834861, 0x66668d22, 0x71273582, 0x00ff34b3, 0x820a175d, 0x0272230a, 0x06850890, 0x83ffff21, 0x5e0025cf, 0xffffd6e3, 0x4882df83,
0x90833d20, 0xcecc0422, 0xfc35f182, 0xffff8460, 0xff0a17eb, 0x2a27f0ff, 0x45f2ffff, 0xe9ffff1e, 0x222a82a3, 0x82c435fb, 0xbaf523bf, 0xff8207e0,
0x82f8f421, 0x0df72c79, 0xf7ffffd2, 0xffffae07, 0x82bdf4f4, 0x82068474, 0x64102411, 0x82968b94, 0xc50a2355, 0x0e82071e, 0x82685121, 0x82ec20e2,
0x61f72c3b, 0x0200ffcb, 0xffff0ecd, 0x82713df8, 0xfcc92109, 0xfb221482, 0x1e82e7bb, 0x05008027, 0xa0f5ffff, 0x27f58242, 0xffffd0b7, 0xff0080fa,
0x27056460, 0xff33b303, 0x66660a00, 0x03224e82, 0x0a8221b0, 0x82f66821, 0x826c2019, 0x6605210e, 0x0a20ed82, 0xff230e82, 0x82f668fc, 0x7804260f,
0xfeffff10, 0x22488260, 0x82d80700, 0x30fd310a, 0x0800ff20, 0xffff42e0, 0xffe0cffc, 0xa4f00600, 0xf8211e82, 0x26298210, 0xff51b80d, 0x82e0fdff,
0x380f2262, 0x207c8252, 0x270982f0, 0xffba5e01, 0x00d00700, 0x00201e82, 0x05271983, 0x00ff1018, 0x82e87b00, 0x233d82a6, 0x93b8e2ff, 0x5f214c82,
0x22b082be, 0x823629fa, 0x24bb2133, 0xee24b082, 0x00ff85ab, 0xff212983, 0x219684d7, 0x4382f0e7, 0x2a229683, 0x48820ad7, 0xb99e0330, 0xdc1400ff,
0x0f00ff2a, 0xff99cdcc, 0x1a831600, 0x32b30522, 0x09241a82, 0x8b079a19, 0x0721c882, 0x215682ae, 0x048204f6, 0x8982f820, 0x8c0c0b23, 0x221c828b,
0x828c0c0b, 0xf0082b1b, 0xf7ffffe4, 0xff8bf007, 0xb683f4ff, 0x5ef5ff24, 0x6e8207b8, 0x82f87321, 0x14ce21c7, 0xe3210982, 0x20098212, 0x82738367,
0xfdff23c6, 0x3b821884, 0x82700a21, 0x60fc21e6, 0x0522d182, 0x39829082, 0x82549821, 0x466126ff, 0x8ff5ffff, 0x83bc825c, 0xf5ff2319, 0x19820997,
0x28829020, 0x5278fa22, 0x9c261982, 0x0300ff28, 0x1e829a99, 0x1824fa22, 0x0725f082, 0xf9fffff0, 0x25fa82db, 0xff10f801, 0xda83faff, 0x10d80022,
0xf2221e82, 0x1e829b59, 0xffaa1126, 0x67e6efff, 0x19217b82, 0x06db429a, 0x3333f822, 0xff221e82, 0x6c823333, 0xf042e482, 0x82fb2005, 0x16002423,
0x8284cdcc, 0x8c052196, 0xfe281f82, 0xff05f067, 0x2a271700, 0xb1265e82, 0x2900ffa9, 0x774f0080, 0xf8ff2105, 0xd42a0983, 0x0e0834b3, 0xf734f8ef,
0xfe8215a4, 0x34336132, 0xe6a2ffff, 0x4e00ff66, 0xffffcccc, 0x8b9a198d, 0x06834282, 0xff2a1685, 0x8b3433b1, 0xcc9effff, 0x068208cc, 0x146ed834,
0x9e0f00ff, 0xdbffffb8, 0x00ff2a9c, 0xffcd0c1a, 0xf184e2ff, 0x299cef30, 0x3ddfffff, 0xe9ffff70, 0xfffff628, 0xf68270e7, 0xd7a3ff22, 0xa321b882,
0x205082d8, 0x236182fd, 0x86cbfdff, 0x42820f82, 0xbafcff2d, 0x0100ffe0, 0xffffa03a, 0x82fa1efd, 0x420122b7, 0x210a82d1, 0xf6824e22, 0x82b6b321,
0xcc4c26f1, 0x0e0300ff, 0x238a82d9, 0x9a592600, 0x2031a682, 0x00fff668, 0xffb81e0b, 0xe1fa1800, 0xeb0c00ff, 0x21358286, 0x7e82cc1e, 0x28dcf022,
0x27061844, 0xff9a19f7, 0x33332600, 0x72223583, 0x358266e6, 0x11835d20, 0x0a82d782, 0x8682e782, 0xe3836d20, 0x33b3d52b, 0xfcffff15, 0xffff6866,
0x282082eb, 0x3233f0ff, 0x19f3ffff, 0x058f4a99, 0x66faff23, 0x22298266, 0x4334b3f5, 0x0c200980, 0x80431082, 0xf8f32105, 0xff215d82, 0x220682f4,
0x82f7ffff, 0x08002316, 0x5d8210f8, 0xf0070b22, 0x0a228f82, 0x8843cccc, 0x430f2013, 0xfb200888, 0x21138843, 0x884322b0, 0x43672012, 0x21203388,
0x20088843, 0x0d8843df, 0xffa8a636, 0x04d6fdff, 0x330f00ff, 0x00ff8d33, 0xff666601, 0xcdcc0700, 0x00366382, 0x00ff67e6, 0xff9a1905, 0x00800000,
0xcc0200ff, 0xe2ffffcc, 0x488233b3, 0x82826620, 0x33faff22, 0x01220a82, 0x844333b3, 0x00ff242e, 0x433c0a0e, 0x04220688, 0x678220c5, 0x70fd0922,
0x21098843, 0x8843f8f3, 0x43082008, 0x08210588, 0x8211828b, 0x37884316, 0x822c6721, 0x23c082c5, 0x9a99f4ff, 0x23061b43, 0x080080f5, 0x67230a83,
0x83f5ffff, 0x83f42014, 0x83fa201e, 0x99f52704, 0x0300ff99, 0x1e829899, 0x1924fa22, 0x22088843, 0x4300ffe7, 0x63211088, 0x211e82d7, 0x8843580e,
0x43982008, 0x34200888, 0x20138843, 0x43f38266, 0x06280588, 0xffff6666, 0x056866fe, 0x3c191182, 0x29210863, 0x213e827f, 0xa18219f4, 0x39068843,
0x01ff0833, 0xffcccc49, 0x99991eff, 0x1900ff15, 0x00ff3433, 0xffcecc1d, 0x09830f00, 0xcc4c2529, 0x2800ff8b, 0x82089a99, 0x33612a06, 0x00ff3533,
0x21cdcc4e, 0x2279838b, 0x828b7caf, 0x06b2214b, 0xf5210482, 0x21048280, 0x04827eaf, 0x087eff2c, 0x6f0000ff, 0xfaffff00, 0xd14136be, 0xfaff2305,
0x085732b3, 0x619d3509, 0xb0ffff48, 0xffffec51, 0xff846bad, 0x7a9495ff, 0xb3eaffff, 0x0021ca82, 0x21758214, 0xb482b3ff, 0x824a0021, 0xc7ff2104,
0x0023a482, 0x8266e65a, 0x2100236b, 0x7f82a4b0, 0x48a11f31, 0x020800ff, 0x1b00ff0c, 0x00ffac87, 0x82d6f80d, 0x5918306b, 0xf4ffff9c, 0x00ff1e05,
0x8164e61e, 0x792400ff, 0x0322052c, 0x31821c0f, 0x74b30227, 0xb90100ff, 0x2604829a, 0x00ff9042, 0x8248e102, 0x3a012231, 0x830a83a0, 0xe06d2bb7,
0x440300ff, 0xfdffffde, 0x13829ce6, 0x08bc3422, 0xb820c282, 0x00222982, 0x96824a57, 0xffd04c3e, 0x68661700, 0xb3efffff, 0x1f00ff30, 0x0e089899,
0x01ff30fb, 0xf79a197f, 0x074b15b4, 0xee20d482, 0xf120cd83, 0xff239782, 0x82b89ef1, 0x1e452527, 0x062b088b, 0x8505bc4d, 0x8516831b, 0xae47211b,
0xff26ca82, 0x069a19bf, 0x1b82ffff, 0x17833d82, 0x200d3b7f, 0x211b832b, 0x1b83b85e, 0xff13a122, 0x0a4c7118, 0x7f055b57, 0x34830751, 0x1100ff27,
0x088bb89e, 0x708018eb, 0x6ab92016, 0xa47f0584, 0x7a0d2205, 0x6b7118e2, 0x072b2e0b, 0x00ff06eb, 0x8b348012, 0x800d00ff, 0x211a8200, 0x72829a99,
0x6666ee29, 0x83f80e08, 0x821573f7, 0x90c22fa0, 0xe0feffff, 0xffff0542, 0xff00c0fa, 0x26832700, 0x707df032, 0x212400ff, 0xe8ffff48, 0x00ffb8de,
0x081e451e, 0x24055e59, 0xb85e0b00, 0x05ba6305, 0x20060022, 0x00212e82, 0x21048260, 0x5a82a00a, 0x3882f920, 0x27069579, 0xffaec7eb, 0x10181500,
0xf9205382, 0x06201f83, 0xff211a82, 0x210982f5, 0x2984ffff, 0xff285382, 0x080020f9, 0xa1f4ffff, 0xf3226382, 0x298268e6, 0x7d83e120, 0xb81e1725,
0x82dbffff, 0x0f00261f, 0xffff1e85, 0x22ce82d8, 0x82400500, 0x01002829, 0x00ff6626, 0x820a5710, 0x8200207d, 0x0900224e, 0x25738240, 0xff34b3f8,
0x38820700, 0xccf6ff2b, 0x6d088bcc, 0xf6ffff06, 0x684a18c0, 0x20228209, 0x832c8300, 0x22c08214, 0x84be1f01, 0x216c82ef, 0x3d8280d8, 0x6c84ef83,
0xef83ff20, 0xbae1ff23, 0x20ef84e1, 0x22968208, 0x82980fad, 0x05576f25, 0xa282e120, 0x7a54f526, 0x5e0000ff, 0xe6839c82, 0x0482ff20, 0xea202582,
0xea227883, 0x298348e1, 0xf9224f83, 0x24864861, 0xec51f525, 0x830600ff, 0x41428238, 0xeb82063a, 0x29824620, 0xdc82e820, 0xc5e1ff28, 0xf1ffff20,
0xeb82d763, 0x4166e621, 0xff200578, 0x53829282, 0x8fc2ee27, 0x190100ff, 0x8229829a, 0x065743c9, 0xeb85f820, 0xff8b3322, 0xcd23e782, 0x83076d08,
0x857c8208, 0x83f820fa, 0x82092009, 0x82eb8322, 0x3d11226c, 0x25428271, 0xff05be1f, 0x15820500, 0xff245883, 0x90820f00, 0x21065841, 0xcf822117,
0xe2bae122, 0xf3206c82, 0xf4217c83, 0x25c084a1, 0xffff0020, 0x0482e0f9, 0x82a0ff21, 0x41f52004, 0xea8408b6, 0x83150021, 0x82ef8248, 0x84062053,
0x220482ea, 0x83a10a00, 0x212984ef, 0xef82b91e, 0x8200e021, 0x5e0b217d, 0x0c200a82, 0x0021c083, 0x2134831e, 0x2482e1e8, 0x73832420, 0xe27af027,
0x852700ff, 0x82ef841f, 0xf3fd277d, 0xefffff33, 0xea829caf, 0x4e82ff20, 0xcc33da82, 0x4c0700ff, 0xf8ffffcd, 0x00ff3433, 0x8b333309, 0x8206a908,
0x00402208, 0x8218828b, 0x83ef854c, 0x8200202c, 0x274282ef, 0xff42e0fe, 0x703d1100, 0x27209682, 0xef844282, 0x6c830020, 0x0025ef84, 0xff1e451e,
0x84ef8200, 0xffb82296, 0x82ef82ff, 0x84062029, 0x210482ea, 0xea830a00, 0x0021ef83, 0x82ca8306, 0x232982d9, 0xffb81e15, 0xea86ef83, 0xef840020,
0xef832484, 0x83f9ff21, 0x1e062238, 0x063e41b8, 0x20061043, 0x83348317, 0x0f0022ef, 0x84738285, 0x83052082, 0x852722b1, 0x2753821e, 0xff645010,
0x34f3fdff, 0x09225382, 0xd745cc4c, 0x07002205, 0x22e582b3, 0x82cc4c07, 0x330925dc, 0x07a90834, 0x33200884, 0x2282fe82, 0x20050841, 0x202282f6,
0x05644cff, 0xe62a2208, 0x7e00ff66, 0xff15ec51, 0x00c01800, 0x1600ff87, 0xffff2adc, 0xfff468f6, 0x46a11300, 0xe1f1ffff, 0x21928248, 0x14825cd5,
0x3ecacf26, 0xf7ffff05, 0x05227e83, 0x24820060, 0xd1825e20, 0xca21042c, 0xc2f5ffff, 0x0200ff90, 0x92827e5f, 0x82050421, 0x0a4021a7, 0xcc232983,
0x828b3433, 0xfe032756, 0xbffffffa, 0x3b82a4f0, 0xd2cdf527, 0xa3fdffff, 0x223b82d6, 0x59ff6766, 0x332006a9, 0xfa229a82, 0x65839a99, 0x8b826620,
0x34333022, 0x1326ce82, 0x00ff9a99, 0x0482190e, 0xa0831620, 0x98990922, 0xb5829f82, 0x05040023, 0x20298220, 0x23ca8298, 0x14aebfff, 0x30275e82,
0xffff9a59, 0x181f85d5, 0x83072dbd, 0xfbff269f, 0xffffdde4, 0x221983f6, 0x8242a0fd, 0x00c0219f, 0xbf273482, 0x00fff5e8, 0x82ad0704, 0x0504225e,
0x224f861f, 0x82008009, 0x226383f3, 0x8234330e, 0x838020f3, 0x47e42729, 0x89ffffae, 0x5e829a19, 0x5c0f4024, 0xc28200ff, 0x02223482, 0x4a822a5c,
0x0021c282, 0x2cb38304, 0xffce4cf6, 0xcd4c0500, 0x4cf7ffff, 0x225e82cc, 0x821fc5cf, 0xd8632188, 0xf1228882, 0x4a8214ee, 0x82289c21, 0x83d28383,
0xfbff23c2, 0x7284e1fa, 0x00ff0829, 0xff866b83, 0x82997cff, 0xe7ff335e, 0xff8f0040, 0xd723e9ff, 0x970900ff, 0xecffff0a, 0xf782b95e, 0x82b81e21,
0x942a2725, 0x3000ff7b, 0x79827a54, 0x00c00823, 0x05e84cff, 0x66a6092b, 0xe4fbffff, 0x0a00ffde, 0x22138240, 0x8240a0fd, 0x02fc2179, 0xbf224382,
0x2982a6f0, 0xc9831920, 0xcc4c7d23, 0xf9441815, 0x5377180b, 0x610e2212, 0x83678248, 0x9e11239c, 0x86188bb8, 0x28821bef, 0x99f1ff24, 0xa046ff9a,
0x66ee2205, 0x832d8366, 0x82ff2366, 0x668234b3, 0x0601fc27, 0x0f4000ff, 0x837c825c, 0x02002392, 0xcb820060, 0x0025a682, 0xffe21a04, 0x23ba8300,
0x00800500, 0x2a286282, 0xffffe27a, 0x0566a6cf, 0x7721e682, 0x2150824c, 0xfa825ccf, 0x5a821920, 0x8280f621, 0x4ce723cb, 0x258287cc, 0x34b36722,
0xc1844f82, 0xf682cf20, 0x802a0023, 0x205a8200, 0x84558305, 0x2104224b, 0x205f82ca, 0x27be82a1, 0xff7e5f02, 0x703d0a00, 0x7f823482, 0x82ffff21,
0x295a8289, 0xff8e02fc, 0xa846e7ff, 0x5584ffff, 0x5f83e920, 0xceccf122, 0x84837382, 0xb3dbff28, 0x7200ff32, 0xb98266e6, 0x82a0fd21, 0x23b383a9,
0x1ee5fbff, 0x6441b385, 0x82678205, 0x47302753, 0x2a00ffb0, 0x7d823473, 0x48210e22, 0x24823f84, 0xb3838f20, 0x8fb81e22, 0x40206382, 0xff21d482,
0x296e83c0, 0x05ae07fc, 0xff94f70e, 0x58841e00, 0xb89eef26, 0xefffff8b, 0x002ed482, 0x7d9a1904, 0x050b00ff, 0xffff081e, 0xb482e12e, 0x7c149722,
0x2a22a482, 0x911866e6, 0xf821177f, 0x0cd25534, 0x80150023, 0x05855600, 0x6af70823, 0x29448207, 0xffff66e6, 0x0566e668, 0x6285817d, 0x2005f45c,
0x05da5bef, 0x9a99ed27, 0x19fe00ff, 0x26dd829a, 0x923233f7, 0x83f7ffff, 0x82062010, 0xf3ff2189, 0x09220983, 0xd9826666, 0xb81e2c22, 0x00207d82,
0x15419118, 0x2c83b220, 0x98ffff22, 0xfc31a582, 0x00ff00e0, 0xff004002, 0x0040fdff, 0xfcffff8d, 0x820f85c0, 0x39ef21cb, 0x0c366882, 0xffff025a,
0xff32b3de, 0xd2801d00, 0xb3e8ffff, 0xffffff34, 0x1e8200a0, 0xcdcce826, 0x600000ff, 0xde273982, 0xffff9999, 0x822e7fe2, 0x823320ac, 0xa1f3221e,
0x831e8248, 0xfdff2148, 0xff244d82, 0x890040fd, 0x68825882, 0x1a820f83, 0x6686b223, 0x207a828b, 0x9b6719e5, 0x08d3560a, 0xd3ffff27, 0xff0748e1,
0x244482ff, 0x9ef6ffff, 0x83de82b8, 0x83f92004, 0x21f723b1, 0x3e828448, 0xb85ef42f, 0xf9ffff82, 0x8b7d0040, 0x33f1ffff, 0x38128233, 0x074861f5,
0xbaffffeb, 0xff0547a1, 0x3ecab800, 0x06d4f707, 0x4c47ffff, 0x231582cc, 0xb85e4500, 0x0a271582, 0x8b07af87, 0x820e00ff, 0xf9ff3eb5, 0xff99cc4c,
0xce4cf4ff, 0xfeff0894, 0xff6666c2, 0x66e6a3ff, 0x0634f715, 0xd60800ff, 0x24258204, 0xfffc2907, 0x83048200, 0x9eef220a, 0x27068208, 0xff87d608,
0x04d6f8ff, 0x79201683, 0x29249482, 0xfb088bfc, 0xff213082, 0x850982f7, 0x201e8219, 0x22918287, 0x597929f7, 0x33200512, 0x21060454, 0x9218b3f9,
0x8b21070d, 0x826496cb, 0x20648575, 0x234a8586, 0x14430600, 0x88206498, 0xf8226482, 0x3082de0f, 0x4cf6ff23, 0x206488ce, 0x06695432, 0x64f80e2b,
0xfb15f4f7, 0xcb4b0654, 0x41a18405, 0xfb211467, 0x2d9c42f4, 0x00801a22, 0x4206846c, 0xfb201352, 0x282ead82, 0xff1566e6, 0x9a195fff, 0xf3ffff06,
0xa4829999, 0xcd4cf527, 0xcc0900ff, 0x05745ece, 0x0028af82, 0xff90420d, 0x71bd0a00, 0xd72f1682, 0x0c00ff0a, 0x088b295c, 0xff0634f7, 0x82330e00,
0xe60022be, 0x108d6066, 0x200ce960, 0x252582f6, 0x34b3f2ff, 0xe4fb088b, 0x53065326, 0xffffff07, 0x84087444, 0x4cf52395, 0x9a85ffcc, 0x072b4418,
0x852bf622, 0xbd21cd82, 0x28fd8270, 0x082a5c0c, 0xcc3900ff, 0x213782cc, 0xef8233c6, 0x212c2041, 0x3b8606c3, 0xe6000028, 0x0c00ff66, 0x57826766,
0x8633b321, 0x590d2004, 0xcc20076c, 0x078e4918, 0x8f42f52f, 0xf3ffff8b, 0xff08d7a3, 0x9a19c7ff, 0x223f8307, 0x8232330e, 0xb30a211e, 0x41053362,
0x08200554, 0x08175b41, 0x00ffaf28, 0xff5eda03, 0x4821a901, 0x0600ff15, 0x00fff49d, 0xff4cf70d, 0xec110e00, 0xe70800ff, 0x0f00ff6c, 0x088bc375,
0x988244f8, 0x00800f29, 0xffff998b, 0x829418f7, 0x9a992129, 0x0821fc82, 0x22eb82b4, 0x8232b306, 0xae07350a, 0xe6fdffff, 0xefffff68, 0xffff5278,
0xff6666f5, 0x3c0af4ff, 0x962d9682, 0xffffcc4c, 0x05e2ba7d, 0xccafffff, 0x06e444ce, 0xdd82c220, 0x19b9ff25, 0x83368b9a, 0x82e42099, 0x07002e4c,
0xff713233, 0x34330b00, 0xe6e8ffff, 0x20388266, 0x673882fe, 0xfe250543, 0xff8c0080, 0x240582ff, 0x190100ff, 0x241a829a, 0xbb0100c0, 0x2c898205,
0xff9166e6, 0xcd4cfbff, 0x800900ff, 0x83f48300, 0x4f002e1d, 0xff079a19, 0xc00a49ff, 0x91df00ff, 0x222782ea, 0x828736f6, 0xc4f52159, 0xfa26a182,
0x1000ffe1, 0xc082ae87, 0x82779e21, 0x52f821ea, 0xff374d82, 0xff06beff, 0xa0253c02, 0xdea6feff, 0xff8b15b8, 0x0080b0ff, 0x88bfffff, 0x200e8204,
0x8327828b, 0x832b8206, 0x844020ac, 0x5c4f206e, 0x06820596, 0x4100ff22, 0x0020f182, 0xff211682, 0x820e8200, 0x2006842d, 0x831184ff, 0x29548549,
0xff37fb08, 0x66e62400, 0xe050ff15, 0xcc012505, 0x0700ffce, 0x00216782, 0x253e8301, 0xff323306, 0xfc83ffff, 0x8205f267, 0x00ff240a, 0x82cccc09,
0x824c20fb, 0x33092228, 0x25c18234, 0xff0832b3, 0x84820800, 0xe6fdff23, 0x20098266, 0x062f7eb3, 0x19020023, 0x214c829a, 0x1e8234b3, 0x29820220,
0xfa202385, 0x08251e83, 0xffff9899, 0x826683f7, 0x20c88218, 0x826c83fa, 0xff852371, 0x58820100, 0xb3f9ff26, 0x0000ff34, 0x09207784, 0x0cbeb418,
0x5a0c6857, 0xff261658, 0x0080f6ff, 0x7a7cff07, 0x83fe2005, 0xccf923ac, 0x0f8289ce, 0xff256482, 0x0868e6fc, 0x820b8280, 0xf4ff2185, 0xf3201b83,
0x0120b383, 0xff299e82, 0x083433ed, 0x00ff7b8c, 0x201b830a, 0x25cf82f6, 0x68e60900, 0xb082ffff, 0x0820c082, 0xff212682, 0x219b82fb, 0x09830a00,
0xe984fc20, 0xfe223f83, 0x1e826666, 0xcecc0128, 0x99feffff, 0x3e82059a, 0xff323324, 0xfa83fdff, 0x14830620, 0x0e41fd20, 0x227a8407, 0x830400ff,
0x4cfd25fa, 0xffffffcc, 0xff204d82, 0x8b203e82, 0x08213984, 0x8235828c, 0xffff2174, 0xfe20a683, 0x4f833582, 0x95822582, 0x0000ff22, 0x82068841,
0x2093832a, 0x278387fd, 0xceccfeff, 0xfcffff08, 0x80247384, 0xf8ffff00, 0x3d841e83, 0x6382f920, 0x9d420020, 0x88f52005, 0x82f72057, 0x02002138,
0xf4202383, 0xe0511382, 0x83fe2006, 0x820020ac, 0xfeff230f, 0x6b829819, 0x899a9922, 0x58820584, 0x2305a341, 0xff829a99, 0xb382fc82, 0x6866fd27,
0x99f7ffff, 0x201a829a, 0x82a783fd, 0x25d2820a, 0xff8232b3, 0x1a830800, 0x08211482, 0x05726dff, 0x8e82ff20, 0x82010021, 0x00002155, 0xcc208984,
0xfe203e82, 0x92203982, 0x07b34d18, 0xff207582, 0x3b422f82, 0x4cfe2206, 0x825482cc, 0x18072095, 0x21089f4e, 0xcf833433, 0x60186620, 0x002412bb,
0x8b9a1907, 0xe6211782, 0x07515466, 0x20051962, 0x24538201, 0xcc4c0600, 0x7767188d, 0x97082409, 0x830600ff, 0x820a2085, 0x056a694e, 0xff228582,
0x6f831200, 0x66000022, 0x10205e82, 0xff213582, 0x201e83f6, 0x2309830a, 0x91ccccf5, 0xf6208a82, 0x05253483, 0xffff9899, 0x2d1582f4, 0xce4c0300,
0xb3f6ffff, 0x0200ff32, 0x1e8232b3, 0x66e6ff2a, 0xffff058b, 0x8e0080f5, 0x2006f84d, 0x24418202, 0x6666faff, 0x201d828e, 0x220b82fb, 0x83990200,
0x660124a4, 0x83ff8b66, 0x8b082268, 0x2430828c, 0xffccccff, 0x22a78400, 0x82008000, 0x82e62017, 0x22858480, 0x8234b300, 0x990022cc, 0x2014869a,
0x84428301, 0x83022004, 0x33022ca4, 0x8b8b0832, 0x0cf70e05, 0x5e1554f8, 0x832516df, 0x9306b307, 0x49491807, 0x33b32208, 0x21135fff, 0xbb078322,
0x3420338c, 0xa5673388, 0x087b5f10, 0x33a3678f, 0xd7722320, 0x07b36a0f, 0x6a10cc6a, 0x2b2007e5, 0x2b203197, 0x17215618, 0xf7064b28, 0x066b0734,
0x048214f7, 0x0382eb20, 0xab072b25, 0x8314fb06, 0x07342104, 0x48065261, 0x31741340, 0x825b2016, 0x204f8233, 0x214f83ab, 0x4f8506ab, 0x4f836b20,
0x34210482, 0x7d861807, 0x82eb2018, 0x1100219d, 0x127d8618, 0x7d6a1886, 0x053a5311, 0xf3203192, 0x2217cb41, 0x18fb1cf7, 0x22189ce5, 0x62cb075b,
0x9219053d, 0x6b2513a4, 0x06cb15bb, 0x21a187ab, 0x7484f1ff, 0x6ccc4c21, 0x49180827, 0x6b311485, 0x01ff0e07, 0xff6666fd, 0xcccc8c00, 0xfaffff15,
0x200a82e6, 0x233a820b, 0x0080f4ff, 0x08052e46, 0x33f3ff26, 0x4b088b34, 0x0000ff06, 0x64f70600, 0x00ff8b05, 0x799a1915, 0xe61200ff, 0x088b7566,
0x79798b75, 0xff08758b, 0xfa220082, 0x1d821afb, 0x82faff21, 0xfbff2139, 0x0e820488, 0x77088b23, 0x235b8206, 0xff8b0080, 0x00211884, 0x290a8304,
0x9a990400, 0xae00ff08, 0xb48366e6, 0xaa825382, 0x57877e83, 0xecffff24, 0x5b833433, 0x8242fb21, 0x20568520, 0x84aa82fc, 0xf9ff2342, 0x56859a99,
0x6666fb22, 0x1805e155, 0x2408e566, 0x8b080080, 0x8e8a83f7, 0xffff24a8, 0x83ffffed, 0xfb8b2850, 0xffff0564, 0x82d7e3c0, 0x40f32195, 0xf4239583,
0x5affc580, 0xfa29051e, 0xffff00e0, 0x08cc4cf4, 0x28068386, 0x0200ffce, 0xfffff33f, 0x247782f2, 0x0dc00800, 0x06a270ff, 0x9a99663c, 0xff0502fb,
0xcbe12200, 0xccd9ffff, 0x3500ffcc, 0xffff33b3, 0xff9a19ea, 0x82593800, 0x33382605, 0x00ff8b34, 0x2cd18333, 0xff48e115, 0x32b32400, 0x402600ff,
0x82f28200, 0x83f7203d, 0x8308203d, 0x5e092212, 0x346482b8, 0x00ffd04c, 0xff9a990d, 0xfefffaff, 0xb30b00ff, 0xffff0832, 0x240f8302, 0x15343393,
0x2ae08256, 0xcb70fdd4, 0x8b088b8b, 0x82cbb68b, 0x9002226c, 0x2047828b, 0x21068235, 0x15844bb6, 0x82ffff21, 0x564b2120, 0xeb242082, 0xeeffff15,
0x2006c655, 0x0b795548, 0x22063256, 0x85610e00, 0x06c45516, 0xff200685, 0x10561684, 0x18bb820a, 0x2413aa7e, 0xf001ff0e, 0x2eee824c, 0x150080f5,
0x00ff02fb, 0x0548610f, 0x832900ff, 0x666822e0, 0x260a8266, 0xff00a006, 0x82a11000, 0xbeed2162, 0x0f28d882, 0xff7cb89e, 0x4861f6ff, 0xa12ccf82,
0xffff34f3, 0x050a17c4, 0xdeddffff, 0x6b221b82, 0x0a829a19, 0xe23afd28, 0xa60800ff, 0xfa61ff66, 0x40042705, 0xf7ffff00, 0xdf8234b3, 0x80f9ff23,
0x073a6000, 0x82c0fb21, 0x33fd2116, 0xf7224082, 0x4b82b85e, 0x82e6dd21, 0xe1942730, 0xff2d0548, 0x06823b00, 0x00ff7c24, 0x22828009, 0xaec7ed22,
0x662cf382, 0x0600ff66, 0xffffb99e, 0x085278ee, 0xd9259e82, 0x97ffff9a, 0x266d8399, 0xffc2f591, 0x82a6f0ff, 0xeeff26a9, 0xffff4180, 0x273483fd,
0xffbedffb, 0x3333e8ff, 0xbd82ce82, 0x28050447, 0xd7236200, 0x5ecbffff, 0x27a282b9, 0xff707db5, 0x0080acff, 0xf5250a82, 0xffffb81e, 0x228c82f3,
0x82190900, 0x82ed2054, 0x0f0023ad, 0xad824821, 0x40010022, 0x002cad82, 0xff316801, 0x00400000, 0x600100ff, 0x09820482, 0x6c278082, 0x00ff9999,
0x8248a117, 0x206b8440, 0x274b848f, 0xff0781ff, 0xcc4cf4ff, 0x6621ba82, 0x83fe8267, 0x83c482b5, 0x2005214b, 0x05254b83, 0x00ff4841, 0x234b8302,
0x90b8de03, 0x44214782, 0x20108221, 0x2aee8258, 0x3a4400ff, 0xa7ffffe2, 0x8205b81e, 0xd6e32921, 0xf3faffff, 0x0600ff34, 0xfd219383, 0x225182cc,
0x83323305, 0x824e8347, 0x8261205e, 0x83072036, 0x82ff20da, 0x0b002cee, 0xff0800a0, 0xcef7fbff, 0x837000ff, 0x6c002188, 0xff221582, 0x4b835ee8,
0x2a821120, 0x2305317c, 0xa0b8de0b, 0x71839e82, 0x83400d21, 0x7db52530, 0x5300ff70, 0x62273084, 0x00ffd823, 0x8252b834, 0xa40f277c, 0x0800ff5c,
0x5082295c, 0x8264e621, 0xcdcc24e4, 0x82eeffff, 0x0200224f, 0x2b348380, 0xff343362, 0x66e692ff, 0xccffff15, 0x00319c82, 0x0534330b, 0xcaffff8d,
0xff050040, 0xb85edfff, 0x05a451ff, 0xff210a84, 0x245c82d5, 0x3500ff8d, 0x221c83c0, 0x82f628cc, 0xcccc217e, 0x23216382, 0x21bf82a1, 0x9f82de27,
0xf8d0ff28, 0x1900ff52, 0x15824821, 0x99993433, 0x660700ff, 0xff770567, 0xcdcc3100, 0xffffb805, 0x27c384e3, 0xff67660f, 0xe23a3300, 0x10272382,
0xffff0040, 0x82ffbfcc, 0x1c00231c, 0x738249a1, 0x9ad9ec27, 0x38ceffff, 0x201c8251, 0x2a568234, 0x00a0f8ff, 0xffff5c05, 0x82b9dee6, 0xab233211,
0xd8ffff84, 0x0e05e01a, 0x2a02ffaf, 0x00ff68e6, 0x21ba849a, 0x5c821ec5, 0x22080482, 0xff06b305, 0x142ed5ff, 0xe1a1ffff, 0xff4a2c48, 0x66e690ff,
0x19ffffff, 0xffff089a, 0xff33b391, 0x82020000, 0x83a1206f, 0xdf4126e8, 0xd6ffff48, 0x23a28219, 0x08b81e5e, 0xc5273783, 0x00ff4721, 0x8266e63a,
0x9efc2684, 0xffff9db8, 0x2a9c82fe, 0x00801000, 0x1100ff8b, 0x82086766, 0xc0052206, 0x83438200, 0x83098504, 0x22098220, 0x8206ba08, 0x2216834b,
0x82ff3f29, 0x820e20a6, 0x410032b8, 0x00ff9a99, 0xffe17a26, 0xe2ba3900, 0xbd3600ff, 0x320e8271, 0xff08b8de, 0x00c00200, 0x0300ff8d, 0x00ff6045,
0x82480101, 0x42402209, 0x2016828b, 0x2b698205, 0xfdffff90, 0xff8e0040, 0x0080fbff, 0x03211282, 0x21ae8220, 0x7483a0fb, 0x09828020, 0xb83efa2e,
0xff088689, 0xc480f9ff, 0xc1efffff, 0xfc20c082, 0xff216482, 0x203882ee, 0x820583ff, 0xd2ff27a2, 0x00ffb8de, 0x1b822115, 0x3282d620, 0x9e240028,
0xe4ffffb8, 0x4c827ad4, 0xcc0c0427, 0x38fdffff, 0x82808253, 0xfbff2319, 0xcb82cd4c, 0x829a1921, 0x3333216b, 0x00231e82, 0x82860040, 0xbeff211f,
0x3f241082, 0xfcffff7d, 0xff23dc82, 0x8283c0fc, 0x83df206f, 0x9ee2250a, 0xf1ffffb9, 0xd3280983, 0xff944661, 0x68e6d4ff, 0x09253582, 0xffff42c0,
0x266482cf, 0x06212700, 0x82d9ffff, 0x3000221f, 0x227d8261, 0x8248a1f6, 0x8202201e, 0x41002469, 0x8205b85e, 0x23988284, 0x0080edff, 0x20057c52,
0x21658289, 0x8082bedf, 0xff233082, 0x844240fd, 0x84082094, 0x430a82fd, 0x0421080a, 0x21fb8220, 0x0482e001, 0x00400322, 0x14204f82, 0x0022d882,
0x4483c021, 0x4f82d520, 0xa0080023, 0x204f8384, 0x20208260, 0x82258200, 0x262a8549, 0x0300ff8b, 0x850800c0, 0x20508206, 0x821685c0, 0x205a8215,
0x822a8200, 0x832a204b, 0x8408204b, 0xeaeb274b, 0x2100ff7f, 0x4b82f6b3, 0x9919fe22, 0x19212582, 0x839a829a, 0x830420bb, 0xb3022209, 0x067b4a34,
0x83020021, 0x21d58449, 0xb4822004, 0x79830020, 0xbe1f0322, 0xe020b882, 0x1e209f83, 0xeb20fa83, 0x0029ef83, 0xff707d0b, 0xcccc1f01, 0x26498205,
0x00ff7a54, 0x82ac5104, 0x68662158, 0x72210482, 0x21048206, 0x18826666, 0x82fe0321, 0x3c042788, 0xffffffac, 0x148202fc, 0x82a28521, 0xfa8d2108,
0x22061741, 0x820ca2fb, 0x2348831e, 0x3433e0fe, 0x5e834882, 0xa1140023, 0x220a8248, 0x82002003, 0x83048393, 0xffff2188, 0x0221d783, 0x208883bf,
0x83888380, 0xfdff21a7, 0x00209d83, 0xff26c682, 0xff00e0fb, 0x2d82feff, 0x83fcff21, 0xebff28a7, 0xffffb8de, 0x820040de, 0x212a2548, 0xf7ffff48,
0x03200a84, 0xff214482, 0x825884ff, 0xfcff24e6, 0x828b00c0, 0x0040228e, 0x41068508, 0x1683059d, 0x5a821582, 0x08232a83, 0x83d5ffff, 0x5ff7224b,
0x204b827c, 0x854b8314, 0x83012056, 0x58418271, 0x808505b9, 0x8240fd21, 0x60fd2185, 0xff209f82, 0xdc450a85, 0x84ff2008, 0x42e0226f, 0x204f828d,
0x224f82e4, 0x83801200, 0x8302209b, 0x84be2020, 0x613025ef, 0x0900ff48, 0x00217582, 0x22648227, 0x83c12600, 0x2435820e, 0xb85e3000, 0x24198208,
0x00ff4200, 0x2719822b, 0xbe3ff1ff, 0x9e2c00ff, 0xdf20df82, 0x00236e82, 0x829a591d, 0x83fc2053, 0x8403200a, 0x82ff207e, 0xc004221e, 0x05624183,
0xff040023, 0x203d827d, 0x20f38300, 0x22b18204, 0x82800200, 0xa0042347, 0x115e8f00, 0xa1242107, 0x1b206882, 0x002f5882, 0xffb81e15, 0x00802900,
0x2d00ff8b, 0x8208862b, 0x83112006, 0xa0fc249e, 0x8400ff00, 0x82f92009, 0x1000260e, 0x89080040, 0x063d4290, 0xa0830520, 0x5c840320, 0x08466126,
0x0400ff8e, 0x05202283, 0x0220ab83, 0x05231a83, 0x828bbe7f, 0x4003217e, 0x03275483, 0xffff5839, 0x42a00bff, 0xff2305ae, 0x82e6fffd, 0x8236201a,
0xd9ff2126, 0x262a7983, 0xffffb087, 0xffc435c6, 0xdc830e00, 0xf683be20, 0x83d6ff21, 0xbfd6251e, 0x06ba05ff, 0x40207282, 0xfa20e982, 0x0025e482,
0xff14bf00, 0x200982ff, 0x8205848b, 0xfeff2715, 0xeeffffd4, 0x60826f9d, 0x51343321, 0xfc240677, 0x08799c99, 0x2baa7170, 0x19c5feff, 0xaf00ff9a,
0xff159a99, 0x200b5d5c, 0x06d64203, 0xff8b9023, 0x830b8300, 0x063b4504, 0x8b210a83, 0x05845690, 0xff331685, 0xffb89ee5, 0x00801a00, 0x00ff9505,
0xff00c014, 0x82401000, 0x83112004, 0x14200804, 0x00ff4821, 0x0800400b, 0xe4ffff7a, 0xff9148e1, 0xb85edcff, 0xecffffa4, 0xff08b81e, 0x66e6f1ff,
0x47270482, 0xffff86ae, 0x8266e6ea, 0x99ec221c, 0x2266829a, 0x8200e005, 0x20548321, 0x20878310, 0x254883f1, 0xff48e113, 0x5060fbff, 0x82602005,
0xc0202d5d, 0xffff0500, 0xff1ea5f5, 0x66e6f8ff, 0xff220a82, 0xb26e6766, 0xffff2305, 0x09829919, 0x8233b321, 0x34332704, 0x8b8a088b, 0x5c57ff8a,
0x83ff2005, 0xa0002248, 0x85798200, 0x2367830a, 0x8c0080ff, 0x0123e582, 0x82080020, 0xa0002106, 0x00205b82, 0xc8832784, 0x31830985, 0x82080021,
0x0e002850, 0x7905cd4c, 0x840300ff, 0x84fe207c, 0x82602026, 0x83fe20ab, 0xc0012235, 0x21408200, 0x4784e001, 0x0d490682, 0x86012006, 0x2183841b,
0x3c879d08, 0xcd4cf727, 0x390e00ff, 0x21b9839a, 0x2b823333, 0x82999921, 0x20098321, 0x210e8402, 0x13826666, 0x08343322, 0x0a860582, 0x0200ff24,
0x23829a19, 0x82cc4c21, 0x83802013, 0x2a6a8275, 0xf7ffff97, 0xff0500e0, 0x82990400, 0xc56e221b, 0x200a821e, 0xd8921800, 0xcc012108, 0xa1212b83,
0x203a8448, 0x224b828b, 0x839a1902, 0x66c624a3, 0x82feffff, 0x000022b8, 0x22478220, 0x8200c0fd, 0x8204201a, 0x8fff23ef, 0x408233b3, 0xb81e0e27,
0xa00900ff, 0x410a8201, 0x6d82050f, 0xe0000023, 0x827c8200, 0x0000222f, 0x820985c0, 0x80012134, 0x4020f384, 0x51414582, 0x211a8205, 0x4f84feff,
0xff232583, 0x82ffbffe, 0x84398200, 0xffff216e, 0x1e842883, 0x81f7ff27, 0xf1ffff48, 0x206e83d3, 0x22af8211, 0x8340fcff, 0x830120c5, 0xa0ff213f,
0x01205f82, 0x34839e82, 0xa9828b20, 0x08002022, 0x0b820685, 0xff211b82, 0x844684fe, 0x82a02074, 0xeeff22ba, 0x22cf82e6, 0x183453fc, 0x2207cb40,
0x82b89ef1, 0x8680850a, 0x05de54ab, 0x8b87808b, 0x74841982, 0xce825384, 0x82051c42, 0x84ff206f, 0x826584eb, 0x0000228b, 0x276a8360, 0xffcd6cf3,
0xaea70800, 0xa1845f82, 0x83c0dd21, 0xe11325b6, 0x0400ff47, 0x102b2f83, 0x00ffb81e, 0xff48c10e, 0x82e10500, 0x5e132d04, 0xff9108b8, 0x48611300,
0x1500ff86, 0xf1204b83, 0x0e241683, 0xa408b89e, 0xe1211682, 0x2c1c8248, 0x7ab89e23, 0x211b00ff, 0x00ff0848, 0x20228314, 0x2d8f82f4, 0x48211000,
0xc0eeffff, 0xffff9500, 0x798340eb, 0xb89ee525, 0x47e5ffff, 0xff2507eb, 0x00e0fcff, 0x4354828b, 0x9d4307a9, 0x43168306, 0x76830eb4, 0x2606495f,
0xff0af702, 0x82def5ff, 0x190222a2, 0x8209829a, 0x088021ee, 0x8021ea83, 0x06a64100, 0x1282ff20, 0x80200a82, 0xda207183, 0xff212882, 0x2d7184df,
0xffe25afe, 0x6666feff, 0xfdffff8a, 0x2082cdcc, 0x8466e621, 0x20758209, 0x21f68200, 0x0482feff, 0x9f000023, 0x842482e6, 0xb4592109, 0x34470982,
0x285a8305, 0xff9a59fe, 0x32330200, 0x2005838a, 0x823e8434, 0x19012339, 0x10828b9a, 0xff66c626, 0xf9bf0000, 0x22062e43, 0x82a15900, 0x8217201a,
0x059447ec, 0x6ef4ff2d, 0xcfffff14, 0xffff1e45, 0x82ceccd3, 0xe6ca2675, 0xff088b66, 0x820683ff, 0x67e62c12, 0xf4ffffb0, 0x00ffcd4c, 0x869a9931,
0x48ff2038, 0x0122052c, 0x84827b94, 0x82e1ba21, 0x21b28458, 0x09826766, 0xff22b783, 0x298266e6, 0x00600322, 0xe0207d83, 0x2307f247, 0x8e004001,
0x01201682, 0x0320bf83, 0xb4470482, 0xa0032205, 0x82e88200, 0x020023c3, 0x76820020, 0x82d9da21, 0x802023c9, 0x3b820500, 0x16820020, 0x4c82ff20,
0x8020be82, 0x0f824b83, 0x968b0822, 0x1920d182, 0x0a272382, 0xff8e0080, 0x83190a00, 0x82fa2094, 0xe0fe2375, 0xe7746666, 0x82af2037, 0x99d0286c,
0x07b5159a, 0x831601ff, 0x1952285c, 0x00ff059a, 0x82cccc06, 0x32b321d1, 0x33210982, 0x20228234, 0x33668205, 0xce4cfeff, 0xffabf708, 0x66e6adff,
0xff076105, 0x9819d9ff, 0xcc238682, 0x56ff05cc, 0x662106a1, 0x22098267, 0x82869c19, 0x34b321d6, 0xd6821484, 0xc156fd20, 0x82902006, 0x99192410,
0x830800ff, 0xb3fd26da, 0x00ff0834, 0x200a832f, 0x374084f2, 0x079a1977, 0xeaffff8b, 0xffff6666, 0xff6866f0, 0x9a99ebff, 0xfbffff75, 0xff28e483,
0xfffeff0f, 0x32b3caff, 0xf9206882, 0x07094b18, 0x8306f474, 0x0100230f, 0x68820080, 0x70fd0f27, 0x4c3500ff, 0x252582ce, 0xff3d0aea, 0xb3830400,
0xb85ef027, 0x661400ff, 0x22c38266, 0x829a9915, 0xe6882373, 0x79820766, 0xffe17a26, 0x34330d00, 0x0721ea82, 0x2121829e, 0xef824c02, 0x48e10522,
0xe6209e82, 0xfd22c482, 0xa884d7a3, 0xfd215582, 0x831483a1, 0x2ef722a8, 0x21c38314, 0xde82707d, 0x82999921, 0x14d9251a, 0xf5ffff7b, 0x01214483,
0x233f8324, 0x15cccc4e, 0xa1821b82, 0xcc000024, 0xce8288ce, 0x0b82fd20, 0x33ffff23, 0x232c8232, 0x7fccccd4, 0x20062841, 0x28fd82ff, 0xf7ffff86,
0x00ff9a19, 0x22f08302, 0x82ff7ff7, 0x4c022299, 0x821482cd, 0x08002469, 0x848667e6, 0x201f837f, 0x201a8267, 0x23ca8226, 0xcccc0a00, 0x0a83ae82,
0x49417485, 0x99992106, 0xe6222a82, 0x2b829066, 0x84ce4c21, 0x053c4535, 0x01200a83, 0x3b824683, 0x82f8ff21, 0x82002066, 0x208885e4, 0x20888297,
0x279a839b, 0x153433c5, 0x990700ff, 0x4c218883, 0x824282cc, 0x59ff2079, 0x082205ad, 0x2c820080, 0x33b3fd22, 0x7f214782, 0x219882ff, 0xfd839919,
0xff239e82, 0x829a99fd, 0x9ea9231a, 0x478273b8, 0xe17af722, 0x2206ee41, 0x841e05fb, 0x21888226, 0xc984295c, 0x02228882, 0x0a84b95e, 0xd1214582,
0x218d83ec, 0xd487ae87, 0x67665623, 0x21d082a3, 0x7d8299c9, 0xcccc1e23, 0x08454215, 0x09826620, 0x869a1922, 0x32205683, 0x80210a82, 0x826d8201,
0x421f8473, 0x56221245, 0x88826666, 0x20220d41, 0x207f8300, 0x071a50e6, 0x22050d41, 0x829a99a9, 0x84ff3384, 0x00ffcccc, 0x1552f867, 0x19f2feff,
0xb0ffff9a, 0x9a8248a1, 0x51592120, 0xb3142f05, 0x0d00ff34, 0x00ff5238, 0xff5c4f12, 0xb0831300, 0xae870622, 0xef27dd82, 0x00ffe0fa, 0x82beff4f,
0xe6092e2b, 0x0300ff68, 0x00ffb448, 0x8b98990a, 0x051159ff, 0x4cb7fc25, 0x8284f708, 0x4200214e, 0x13262282, 0xffff9899, 0x478278f9, 0x34330d2d,
0xb0edffff, 0xffff8ba4, 0x82cc4ceb, 0x99de23de, 0x7a85079a, 0x5e4f0029, 0xffff05b8, 0x823233f4, 0xc475264e, 0x66f3ffff, 0x83268268, 0xfcff2b0f,
0x8b083c8a, 0xffaf0e07, 0x9282bf01, 0xe67e0124, 0x50821566, 0x8200c021, 0x00803129, 0xf5f7ffff, 0xfeffffc2, 0xff86dcd9, 0x00a0faff, 0xfa215582,
0x821582e0, 0xffff290a, 0xffc04aff, 0x4601f8ff, 0x13832982, 0xbadef922, 0x1020bd82, 0xe5203483, 0x08273e83, 0xffffe2ba, 0x82f6e8e1, 0xe1e02268,
0x20398248, 0x221582ff, 0x82bfcaff, 0x82e52a38, 0xceffff90, 0xffff67a6, 0x222e83d3, 0x823233e2, 0x61b3271e, 0xcaffff48, 0xd48266a6, 0xb81e142c,
0x2c00ff07, 0x00ff9002, 0xb9821e24, 0x82030021, 0x05b04660, 0xa61b0126, 0x010600ff, 0xfd202a82, 0x05211383, 0x27598321, 0xff261cf8, 0x82551000,
0x21263a82, 0x00ff48e1, 0xbe824013, 0x5c0f172a, 0x00ff8baf, 0x0800c029, 0x28200682, 0xe92a7c83, 0x00ffa4f0, 0xffb85e23, 0x7782dfff, 0xa1130022,
0x00283c82, 0xffa82605, 0xd8630b00, 0x02213c82, 0x20378260, 0x231a8205, 0x869bfeff, 0x29836682, 0xde7ffb22, 0x3a21e082, 0x21a182e0, 0xeb8216c5,
0xacc0352d, 0xc4ffff05, 0xffff33f3, 0x82e03acb, 0x8cfb270a, 0xfbffffcd, 0xb142e6c1, 0xa6f92206, 0x312f8266, 0xffff9919, 0x080080fa, 0x330500ff,
0xf4fffff8, 0x298214ae, 0x6fb2de25, 0x83ecffff, 0xccea2de6, 0xdcffffcc, 0xff8b289c, 0x9a19d8ff, 0xff219f82, 0x26b284d6, 0xff677b14, 0x82de2100,
0xc0ec21a0, 0xff283c82, 0xff0140f7, 0x66e6edff, 0xfe203c82, 0xfa233283, 0x828ccecc, 0x32332258, 0x2172828f, 0x5e8234b3, 0x9a192b26, 0xe3dbffff,
0xff2ebd82, 0x070a17ec, 0x33b4ffff, 0x3500ff33, 0x3282846b, 0xf382d320, 0x831d0021, 0x87e52ace, 0x3100ffae, 0xffff6666, 0x221383ff, 0x82343335,
0x1f003073, 0x00ffb81e, 0xffe1ba08, 0x7c141e00, 0x821000ff, 0x1a002229, 0x23778240, 0x0bd70300, 0x2620fe82, 0xfe202f82, 0x07231483, 0x828666a6,
0x831a82c9, 0x20c08306, 0x224b82f7, 0x82de0000, 0x99f925a8, 0xfcffff9a, 0xff26ea83, 0xff3d8ab1, 0x3583d5ff, 0x7d5fd926, 0x66a0ffff, 0x2333cc82,
0xffff83a0, 0x083333a5, 0x00ff7992, 0xff48e10a, 0x829eefff, 0x820c2075, 0xf1ff2304, 0xc1824861, 0x85eb372d, 0x9ebeffff, 0x00ff05b8, 0x8200e004,
0x004021dd, 0x37269582, 0xfeffff0a, 0x23549c84, 0x03002105, 0x00215f83, 0x2219834f, 0x8200402a, 0x421d3029, 0xebffff90, 0xff0548a1, 0xf6e8d0ff,
0x83dfffff, 0xfeff2215, 0x203a8260, 0x44048200, 0x0021056e, 0x254e82a0, 0x8b6606ff, 0x577eff08, 0xae472107, 0x190bc578, 0x2408cc88, 0xffff52b8,
0x23b882f6, 0x00400d00, 0x00292d82, 0x8b48210c, 0x9c0900ff, 0x24048229, 0x00ff4220, 0x23ae8201, 0xbe9f0b00, 0x2825ae82, 0x00ff9999, 0x236e841c,
0x070a17e2, 0x65833782, 0x7483fa20, 0x8267f921, 0x41f6215d, 0xff213a82, 0x05314ff4, 0x4861ee27, 0x5e0e00ff, 0x267f82b8, 0x00ff1e85, 0x83e2ba10,
0xa111215d, 0x00232282, 0x8452780d, 0x8268821b, 0x82082017, 0xc00b2106, 0xf922af82, 0x74821058, 0x831ec521, 0x22798258, 0x82ba9e05, 0x1e1e2774,
0x00ff07b8, 0x4882de28, 0x1e85e322, 0x0120ff82, 0xf4207483, 0x00235882, 0x82e29a09, 0x82e1202a, 0x1e0c2267, 0x835d83b8, 0x00ff24c2, 0x60e2ba0a,
0x10820782, 0x06825d83, 0x4520fb82, 0x0a208682, 0xf2216783, 0x28e983c0, 0x0020feff, 0xfeffff8b, 0x20798280, 0x20c383ff, 0x230483fe, 0x0800a0ff,
0x23055841, 0x00c02000, 0x1d276e82, 0x00ff0040, 0x82b85e14, 0x424f250a, 0xd5ffff90, 0x06201584, 0xfc208483, 0x002b3a82, 0xff0a3708, 0x647b0100,
0x820400ff, 0x050022a3, 0x273f82c0, 0x90823400, 0x453d00ff, 0x1223ae83, 0x82a146e1, 0x54383fec, 0x7d1900ff, 0x0800ff70, 0x00ff6826, 0x08b81e1c,
0x8a1600ff, 0x5200ff38, 0xffffc6b5, 0x1482e6d9, 0x32b3532c, 0x33b6ffff, 0x2900ff34, 0x84829a19, 0x9819a028, 0x1991ffff, 0xa582159a, 0xb783e920,
0xcc8cf430, 0x57ecffff, 0xeeffff0a, 0xffff48a1, 0x6a8280f4, 0x63faff2a, 0x0c00ff12, 0xff05146e, 0x2005c068, 0x26cf8418, 0x00ff62f0, 0x822a9c1a,
0x2038826e, 0x82138200, 0xbf07266e, 0x1100ff7c, 0x22c9831e, 0x82642510, 0x9a59253f, 0x990a00ff, 0xed226482, 0x6382cc4c, 0x8399ea21, 0x00802375,
0x71828b01, 0x61150023, 0x2c1d8248, 0x00ff85ab, 0x9baec712, 0xa10b00ff, 0x21438348, 0x7d8216d9, 0xba67d420, 0x5ee72308, 0x0082ffb8, 0xffff3c25,
0x821f85e5, 0xf23f2481, 0x85e7ffff, 0x9d622697, 0x97f3ffff, 0x2297820b, 0x8233b3ee, 0x2897833f, 0xff6766f4, 0x33b31300, 0x34fc828b, 0x0e083333,
0x19f000ff, 0xbb01ff9a, 0x9415b4c8, 0x9e0500ff, 0x21ca82fa, 0x1d8266e6, 0x66e60927, 0x61faffff, 0x28728206, 0xff34b3ab, 0xe6d09dff, 0x06964505,
0x6666fe22, 0xff2d5382, 0xff079a19, 0xcccc3000, 0xb3e4ffff, 0x2b1b8232, 0xff9a990c, 0xceccf8ff, 0x190600ff, 0xf129d282, 0xffff3233, 0x7dce4cfc,
0x82068508, 0x824c208b, 0x33f6312b, 0xf0ffff34, 0x088b9a99, 0xff0654fc, 0xd763f2ff, 0xf323f882, 0x60ff144e, 0xfc24055c, 0x0899a846, 0x06823082,
0x2d244782, 0x0e00ff50, 0x0c215183, 0x229d8298, 0x82323307, 0xfa2e278d, 0x1b00ffe1, 0x7182ce4c, 0x66e60022, 0x05278282, 0x00ff1f45, 0x829a9901,
0xbaab2710, 0x6200ffe2, 0x9e821a2f, 0xbf834f20, 0x4c37242d, 0xfb06cb15, 0x06b30754, 0x840754f7, 0x88bb2009, 0x24138609, 0xb33bffff, 0x20468234,
0x24be8300, 0xff32b3ff, 0x05885d00, 0x83008021, 0x25c88209, 0x0834b3fe, 0x5d826bbb, 0x82b30b21, 0x82f820ba, 0x050021d6, 0xf123c483, 0x6aff6866,
0xf2220567, 0xb3820080, 0x7183fb20, 0xe8820a82, 0xff9a9925, 0x82ccf6ff, 0xe6f122ed, 0x83e88666, 0x21198209, 0xe8825c8f, 0xfb253d83, 0x00ffbae9,
0x2138850d, 0x0a84fce9, 0x0500ff23, 0x2fdb823a, 0xff98990e, 0xa6bb0b00, 0xcc0700ff, 0xabbb08ce, 0x00227982, 0xe282ec91, 0x82cc4c21, 0x0a972491,
0x84ffffff, 0x2f09829b, 0xce4c0000, 0xc400ff08, 0x0e07cc4c, 0xbf00ffef, 0xff238183, 0x82156666, 0xe73b227d, 0x2b05828b, 0x00ff3849, 0xff10f802,
0x33b3f7ff, 0xec215e82, 0x2ea78208, 0xff48e17b, 0x4e826300, 0x74ffff05, 0x59073433, 0xf72216f6, 0xf9590694, 0x00ff2f16, 0x07cccc8b, 0x337cffff,
0x9cffff33, 0x044a34b3, 0x83f92007, 0x19f6237d, 0x7782889a, 0x8b991922, 0x002e9782, 0x01ff9a19, 0x159a9900, 0x2300ff8b, 0x79180040, 0x0e840919,
0xf7088b24, 0x195d0674, 0xccf41905, 0xd4fb2212, 0x09676a06, 0xa75a9920, 0x54fb2b0b, 0xab06eb07, 0x4b14f707, 0xa482fb15, 0x210aaf70, 0x2b70f1ff,
0xffff2b08, 0x07ecd1f3, 0xffff2bf7, 0xa182338e, 0x82050021, 0xfcff277e, 0x00fff047, 0xb6827307, 0x28fcff2c, 0x910500ff, 0x0300ffec, 0xa982e8fb,
0xe1ba962c, 0x877100ff, 0x00ff05ac, 0xf718330c, 0x4f830897, 0x2305ca6a, 0x6666eeff, 0x9422af82, 0x978c15eb, 0x9e709a20, 0x826b200b, 0x00ff2496,
0x82004021, 0x611b25ed, 0xe6ffff48, 0x0022d682, 0xf1471e03, 0x20648205, 0x25838300, 0x0548e179, 0x5b4154f7, 0x54f72217, 0x213d8207, 0x58849911,
0x7b889820, 0x088b6835, 0x1514fb6b, 0x07cb064b, 0x074b06cb, 0xb4f8ef0e, 0x8215c4f7, 0xe6082229, 0x05f86166, 0x19070022, 0xf7223382, 0x547b9819,
0x9a192206, 0x5060188b, 0x330a8209, 0x089a19f7, 0xcb0724fb, 0x0724f706, 0x00ff14fb, 0x1566e630, 0x8216df41, 0x9e113356, 0x00ff6bba, 0x8be07a2d,
0x8b8b088b, 0xd1ffff6b, 0x448248a1, 0x1e45ef23, 0x86068508, 0xbaf02299, 0x294482e2, 0x088b9a99, 0xcfffffab, 0x928a9a19, 0x87ff6621, 0x231d8292,
0xffff066b, 0x92998182, 0xc434f721, 0xff682292, 0x259286ff, 0xfb088b98, 0xe2cc8bb4, 0xce54f721, 0xff04284f, 0x9a19dfff, 0x64066b15, 0xfb2216cd,
0xf9720724, 0xffff2405, 0x839899f1, 0xff9a2504, 0x6866eeff, 0x5423da82, 0x1844f706, 0x9917098f, 0x0744234f, 0x554354fb, 0x0abd6d0c, 0x8924f721,
0x0ad7264f, 0x330700ff, 0x21968234, 0x4f42f628, 0x0a6d6a06, 0x089b4318, 0xca209f85, 0x12676318, 0x0654f726, 0x04fb074b, 0x1b867218, 0x63825e82,
0xffff3324, 0xab7eccf8, 0xf4f72107, 0x6a13086b, 0x1a2506a3, 0xffff9082, 0x2a0482ea, 0x707d1500, 0x7de5ffff, 0x82088b70, 0x07cb2161, 0xff206b82,
0x16d36318, 0x6483d28a, 0x3326d285, 0xfc088b34, 0xaa427b64, 0x4299201d, 0xcb2019aa, 0x2044a942, 0x08a94266, 0xc7829a20, 0x21065942, 0x665f8bb9,
0x218c4315, 0x87486121, 0xb89e244f, 0x42eb088b, 0x672040a8, 0xf7219e8b, 0x3ddc4314, 0xf8ef0e27, 0x1554f824, 0x08dd8290, 0xcccc0425, 0xa1fdffff,
0xffff8e06, 0x0894f8fb, 0xb32200ff, 0xd1ffff34, 0x00ff32b3, 0xff66662b, 0x2a5ce3ff, 0x833700ff, 0x70db2209, 0x211e82a4, 0x1e823305, 0x0080fc29,
0x660500ff, 0x86ffff68, 0x82642009, 0x66662609, 0xffffa808, 0x214f82ec, 0x43831000, 0x0080df29, 0xddffff8b, 0x82089a99, 0x82e32006, 0xf4ff2131,
0xe62f1683, 0xffff9a19, 0x780080ed, 0x9bfeff08, 0x84069899, 0xff9e210c, 0x33251c82, 0xe61900ff, 0x22938266, 0x8200801c, 0x22002133, 0x4a827582,
0x20281682, 0xffa80080, 0x34331300, 0x66268083, 0x0300ff67, 0x80839a99, 0xff486620, 0x05002205, 0x4c248233, 0x37200515, 0x24221e83, 0xbe855c8f,
0xa31c0023, 0x2ad285d6, 0xce4c2e00, 0x00ff8e08, 0x826c0704, 0x82e62034, 0x5e022239, 0x824382fa, 0x8b082770, 0xfc04fb07, 0x4b18154c, 0x6d181a12,
0x4c2109bd, 0x26cd82cc, 0x0834b3f2, 0x825b0743, 0x09a363bb, 0x6d180020, 0xf7220957, 0x4b820714, 0xee181120, 0xf8211249, 0x46501834, 0x8234200f,
0x4cee244e, 0x83fb08cc, 0x82ff2033, 0xffff2209, 0xac7b18f1, 0x065b220d, 0xad4b18d3, 0x0743222e, 0x3966824b, 0x0766e63a, 0xffff9e8b, 0x9d9a99f7,
0x80f0ffff, 0x0b00ff00, 0xff08ce4c, 0xfd83e7ff, 0xcccc142a, 0xffff7205, 0x053433eb, 0x66267182, 0xf4ffff66, 0x2c8432b3, 0x788b7922, 0xc5222482,
0x45829a19, 0xff07d324, 0x1c8226ff, 0xccb20133, 0x00ff15cc, 0xffa4b005, 0x40440400, 0xd10700ff, 0x83e282ec, 0xfbff3b0f, 0x9b08c0bb, 0x00ff057f,
0xff343322, 0xec51e6ff, 0x331400ff, 0xd7ffff33, 0xdb82a4b0, 0xa430d529, 0xfb078908, 0x838d0634, 0xcf2a22c4, 0x251d825c, 0x00ff6626, 0x09824f28,
0x82402221, 0xae192594, 0x979b0814, 0xb9308582, 0xffff9999, 0x15343365, 0xff0634f7, 0x666677ff, 0xec287c82, 0xff8066e6, 0x9a19f3ff, 0x4c21aa82,
0x204f82ce, 0x082b41e8, 0x9782f620, 0x19020028, 0x00ff829a, 0x6f82b303, 0x83ccf721, 0x82f920dc, 0xfcff21e7, 0xf820ca83, 0xfe204e83, 0xf8253983,
0x088b9919, 0x1853824b, 0x29150847, 0xff0e07c4, 0x9a996801, 0xe28217f8, 0x66e6012b, 0x1efeffff, 0x0200ffb8, 0x22ce82b3, 0x8248e1fe, 0xcccc2309,
0x0685088b, 0x93270582, 0x0100ff34, 0x828d0020, 0x00e02105, 0x15201682, 0x00247182, 0x05b89e15, 0x06211b82, 0x82168366, 0x02002473, 0x828b48a1,
0x00c02210, 0x82068508, 0x82e02054, 0xa0022fec, 0x088d8900, 0x86eaffff, 0x1500ff66, 0xf68200a0, 0x00e0fb2b, 0xf9ffff8f, 0x878b0060, 0x20198387,
0x2beb8259, 0x054861ea, 0xff8a8989, 0xb85efdff, 0xfd20f482, 0x82053f4e, 0x828c2006, 0x00602412, 0x8208898d, 0x8399203d, 0x82602028, 0x33002142,
0xff338282, 0x1566e67d, 0x40e5ffff, 0xff728b00, 0xb89ef5ff, 0x82edffff, 0xedff23c6, 0x55824821, 0x00c0e724, 0x0482ffff, 0xf9216f82, 0x820a8240,
0xff822304, 0x0a83fcff, 0x4861f623, 0x2621828b, 0x066626d1, 0x820a00ff, 0x16002149, 0x00243782, 0xa5b89e03, 0xec5c9682, 0x2f208206, 0xff9ad9f5,
0x66a62900, 0xccdbffff, 0x2100ffcc, 0xd4277e83, 0x00ffcdcc, 0x82e2fa06, 0xc0db291e, 0xffff9100, 0x800040dd, 0xe8207e82, 0xff29b082, 0x00a0f8ff,
0x0000ff84, 0x286f8260, 0xff4821f4, 0x00200800, 0x2bb88285, 0xffcd2c1a, 0x0a57ecff, 0x0500ff05, 0xfb289683, 0x00ff00a0, 0x8bb9de07, 0x7e830f82,
0x00800422, 0x08222582, 0x5a82e17a, 0x7382f920, 0x34b30a2a, 0xb30400ff, 0x0b00ff32, 0x2005a865, 0x82b1821a, 0x21e283ff, 0x541880ea, 0xdf550e1c,
0x82e92005, 0xe4ff2132, 0x22059364, 0x8266e6e0, 0xcccc2184, 0xf423fa82, 0x828bb81e, 0x47212696, 0x5ef3ffff, 0x266e82b8, 0xffffb95e, 0x824861f5,
0x2e10276e, 0xdeffff15, 0x94829ad9, 0x66660223, 0x221b8286, 0x85883433, 0xffff2190, 0x21229084, 0x84189a19, 0xff220c50, 0x7b8340e3, 0x00c0dc23,
0x82548208, 0x83ff2006, 0x82048611, 0x088b260e, 0xe19fffff, 0x311b8247, 0xff52b8e5, 0x9a193500, 0x33e9ffff, 0x2600ff33, 0x1a8266e6, 0x8273fb21,
0x9907210a, 0xf5231482, 0x828700c0, 0x33f72225, 0x26168232, 0xff00e0ff, 0x8233c9ff, 0x3e2928f1, 0x00ff2bb8, 0x8248e176, 0x46002148, 0x0021e783,
0x292e8238, 0xa4703900, 0x4600ff8b, 0x7682f6a8, 0x61170031, 0xf9ffff48, 0x00ff4220, 0xff14ae15, 0x8201f5ff, 0xe11221a2, 0x1522d083, 0x0b8200c0,
0x829e1a21, 0x190026f1, 0x00ff4821, 0x202a820a, 0x241b8200, 0xde1200ff, 0x24f182b8, 0xff004018, 0x82048200, 0xc00621f1, 0x04820a82, 0x00ff9423,
0x200a8303, 0x05267609, 0x84ab142d, 0xdc0000ff, 0x1000ff28, 0x827a9a19, 0x33ec22a2, 0x23a28234, 0x0766e69b, 0x21062b51, 0x4482edff, 0x83f5ff21,
0x06415004, 0x3a82d820, 0xe4ffff23, 0x827082a1, 0xffff285b, 0xffb8def0, 0x82a11200, 0xfbff2b91, 0x00ffae47, 0xff84eb05, 0xc782f6ff, 0x99fcff23,
0x2245829a, 0x820080f8, 0x19da2952, 0x8b8b079a, 0x8beb4b8b, 0x30209882, 0x2f21eb84, 0x05487c80, 0x1082eb82, 0x64201682, 0xff332383, 0x99193700,
0x4cd3ffff, 0x2d00ffcc, 0xffff33b3, 0x83ceccc8, 0x332a2b33, 0x7b00ff32, 0xff159ad9, 0x3882aaff, 0x82beff21, 0xacff2176, 0x00230982, 0x4606613e,
0x022c06a6, 0x850842a0, 0xa00400ff, 0xf7ffff00, 0xff211a82, 0x27eb82ff, 0xb85efaff, 0x20fbffff, 0xfa228583, 0x0a84e23a, 0xfeffff24, 0x23826766,
0x00221e82, 0x6e829903, 0xb85ef922, 0x012b8082, 0xff889a99, 0x34b32600, 0x83baffff, 0x994e23df, 0x16828b98, 0x48e14f22, 0x1220a382, 0x00227082,
0xf682611f, 0x820c0321, 0x4006219b, 0x002c5082, 0xff68e600, 0x842b0200, 0x800000ff, 0x0222cd82, 0x2982ce4c, 0x66660222, 0x23233582, 0x82070080,
0x400d210c, 0xf0258c82, 0x00ff66e6, 0x2a218207, 0x6666f5ff, 0xef0e0883, 0x827002ff, 0x6400230d, 0xcf82cc4c, 0xa082df20, 0x820c0021, 0xe7ff210f,
0xef2d2c83, 0xff794e42, 0x42c0f3ff, 0xffff7a08, 0x201683f4, 0x23a782f9, 0x4821fdff, 0xde23b182, 0x82088eb8, 0x82e02006, 0x2003326c, 0xfdffff00,
0x00ffb83e, 0x86a63b06, 0x001400ff, 0x201a8282, 0x22fc82fc, 0x831e0d00, 0x212483f2, 0x485b5910, 0x00ff2105, 0x95828882, 0x00400223, 0x82b1828e,
0x02002167, 0x01201f83, 0x02210483, 0x27cb83c0, 0xffd8430a, 0xe25af6ff, 0x4c242a82, 0xf8ffffcc, 0x00247982, 0x8b343312, 0x21223582, 0xca829819,
0x20c51125, 0x821900ff, 0x0a00288b, 0x00ffe03a, 0x82482111, 0x830b201a, 0x82102026, 0x0400256f, 0x92906866, 0x0d6b5418, 0xb30a0023, 0x23388233,
0x08cd4c0d, 0xff220685, 0x7a83f5ff, 0xa2531682, 0x69082505, 0xefffff8b, 0xff213d82, 0x221782e6, 0x82e1f4ff, 0xdeee22e3, 0x22c782b8, 0x826866f5,
0x240f8319, 0x869899fb, 0x23578284, 0x00c0eeff, 0xeb202d82, 0x3d218083, 0x20288261, 0x233282c4, 0x1e852800, 0x11208582, 0x22220a83, 0x70570080,
0x25e08205, 0x00ff9a19, 0x0482991a, 0xae871b24, 0x7d83ad8b, 0xb85e232a, 0x66e3ffff, 0x1c00ff66, 0xff231782, 0x839a99dc, 0x85068353, 0x821b8316,
0xa1dc2a5e, 0x7e8b0848, 0xf3ffff8f, 0x213d82d9, 0x34829e06, 0x9084f520, 0x8b83ed20, 0x00c0db27, 0x00ff7a05, 0x20418304, 0x264b83ed, 0xff66e602,
0x8419ebff, 0x2106834b, 0x1683ffff, 0x19fdff29, 0xffff7a9a, 0x826666fb, 0x82ed20c9, 0x24002222, 0x209b8340, 0x2b378206, 0xb81e0a00, 0x0c00ff8f,
0x988bf628, 0x692097af, 0x8029d482, 0xe4ffff00, 0x00ff5278, 0x21098321, 0x6282e6fd, 0xfe830020, 0x83ddff21, 0xc4ff26fe, 0xffff9a59, 0x266782d7,
0xff7febff, 0x83c2ffff, 0xe6ee2524, 0x84088b66, 0xfb2ddc82, 0xff90a4b0, 0xb85ef5ff, 0x1e1000ff, 0x209b82b8, 0x30d482f4, 0x7b141100, 0x28eeffff,
0x1900fff5, 0xffffcdcc, 0x05c15cde, 0x00c0f222, 0xf5213182, 0x226e8240, 0x823333f5, 0xccf2220a, 0x20af82cd, 0x230682ff, 0xc00a00ff, 0xff201685,
0x32054155, 0x00ff8b92, 0x86b85e04, 0xba0900ff, 0xefffffe1, 0x820848e1, 0x1f052ae1, 0xd1eeffff, 0x0f00ffec, 0x281482fa, 0xffcc4ce6, 0x67e62200,
0x211a828b, 0x5b824012, 0x15433a83, 0x0a002105, 0x00226582, 0x91829e09, 0xd9010022, 0xfd25bf82, 0x00ffae47, 0x71308202, 0x022305da, 0x82883433,
0x83f520ac, 0x229682cb, 0x82fbffff, 0xefff31b6, 0xfffff6a8, 0xffb89efc, 0xb8def2ff, 0xff778608, 0x26056164, 0xff1ec5f9, 0x82def7ff, 0x82fc2016,
0x270a8216, 0xff8800e0, 0x47c1f9ff, 0xde275182, 0x00ff7a5c, 0x825c800b, 0xe1ed214c, 0x0c201082, 0xff267782, 0xffb85ee7, 0x47831000, 0x0982df20,
0x83f3ff21, 0x82058386, 0x221e8366, 0x828fc2f9, 0xd8232161, 0xbd26e182, 0xf3ffff71, 0xc08246a1, 0x82a00421, 0x232982ff, 0xfe0d00ff, 0xf9226982,
0xef8290c2, 0x828f4221, 0x00c02123, 0x08201e82, 0xf826bf84, 0x0600ff54, 0xce5b4821, 0x1e112106, 0xf4212882, 0x201e8380, 0x23c8830d, 0xff00e0f6,
0x2805b841, 0xffd643f4, 0x48a11500, 0x3039828b, 0x8b002007, 0xc10700ff, 0x0100ff48, 0x00ff7c3f, 0x62358208, 0x002205c6, 0x1482a120, 0x3a820c20,
0x82070021, 0x1c0026a7, 0x00ff0ad7, 0x23a18205, 0xb81e1500, 0x8205d943, 0x82c0202e, 0x83012054, 0xbd052304, 0x8e828d70, 0x82ba5e21, 0x8310201a,
0x61f221dc, 0x14203e82, 0xff210482, 0x20ad83f3, 0x214d8218, 0xcc83f7ff, 0x0af6ff35, 0xdaffff3d, 0xffff3eff, 0xffcdcce9, 0xcc4ccaff, 0x42e3ffff,
0x42251104, 0xffff8b90, 0x050c47f2, 0xff220682, 0x2d830a00, 0x703df527, 0x330d00ff, 0x21bc8333, 0xbc83c042, 0x93831e20, 0xcc8c5822, 0x66262082,
0x2800ff66, 0x8282ce8c, 0xf5180620, 0x06210812, 0x225e82cc, 0x829a99ff, 0x9a1921e5, 0x0682f284, 0x0600ff29, 0x00ffaec7, 0x827a7800, 0x82bd2009,
0xa0002251, 0x2035821a, 0x25ae830a, 0xff0681d7, 0x94831e00, 0x4f83a720, 0x34b34222, 0x830af656, 0xbd0a22ea, 0x05684570, 0x8209f656, 0x0a00212d,
0xff21e682, 0x202d83f2, 0x064c566f, 0xbd350025, 0x82b08170, 0x83182057, 0x60082236, 0x05d16000, 0x2f0c0028, 0x1000ff5c, 0xc88248a1, 0x0848a127,
0xfbffff8d, 0x064641a0, 0x43faff26, 0x0200ffd8, 0xff23d182, 0x820040f7, 0x82052039, 0xeaff2234, 0x2a2a82e1, 0xffb83e07, 0xf628e3ff, 0x822000ff,
0xf3ff2239, 0x201e8380, 0x21298308, 0x3d82e0fc, 0x14830720, 0x84c0fe22, 0xa757e682, 0x9e152205, 0x25a582b8, 0xffc43511, 0xe1830b00, 0x20820d20,
0x1e090025, 0x829c08ba, 0x82802010, 0x4a062231, 0x276a823c, 0x00ffb8de, 0x88482108, 0x0c206b82, 0xfb20fd83, 0x00215182, 0x2515830d, 0xfff43d06,
0x35830400, 0xc4600c22, 0x042c1e82, 0x00ffc0b5, 0xffec5c0c, 0x68e6f9ff, 0xcc22ba82, 0x8583ffcc, 0xcc252382, 0xfeff08cc, 0x2453824f, 0xe2ba0b01,
0xfb541815, 0x8200200e, 0xe0082385, 0x06850800, 0x19219e82, 0x2104829a, 0x7682701d, 0x8b66e622, 0x08205782, 0x16850682, 0xe1f8ff24, 0x3e838bcc,
0x2d82c420, 0x20f7ff28, 0xf8ffffc4, 0x048266e6, 0x823cdf21, 0x9a192b15, 0x94f7088b, 0xfd1f00ff, 0x3c821570, 0x5883e020, 0x00200722, 0x35911e82,
0x1683e020, 0x20213584, 0x18638200, 0x9e0d6d55, 0xf70e2491, 0x1854f894, 0x2108914d, 0x8082668d, 0x97820482, 0x794e7220, 0x19068205, 0x2109b44f,
0x1b8300ff, 0x2284c582, 0x1b870020, 0x1082ec82, 0x1e83c582, 0x18ffff21, 0x20084feb, 0x272082ff, 0xff6b088b, 0x66e642fe, 0xdb3b6282, 0x00ffd7a3,
0xff182406, 0xf628dfff, 0x561000ff, 0xe5ffffca, 0x00ff299c, 0x825c8f17, 0x975f3453, 0x4c00ff0a, 0xff05c275, 0x008085ff, 0x00ffcb07, 0x8200807a,
0x231783fb, 0xae87b3ff, 0xe5271782, 0xffff2a9c, 0x825278e8, 0x32332541, 0x80f0ffff, 0xdb24f882, 0x08849a99, 0x07252b84, 0x00ff74fb, 0x059d5542,
0x34f35e30, 0x574500ff, 0x4e00ff0a, 0x00ff98d9, 0x7082a85a, 0xce4c0f33, 0x52ffff08, 0xff07cd4c, 0xcd4c78ff, 0x6693ffff, 0x2b548267, 0xff5c8ff0,
0x98991b00, 0x23f7ffff, 0x1f22a082, 0xcf82cecc, 0xcccc212e, 0x6701ff08, 0xffff34b3, 0x15cccca2, 0xcc2c3083, 0x996c00ff, 0x00ff059a, 0x07c2b5ad,
0x1b835282, 0xa4b0f030, 0x4c4500ff, 0xb1ffffcc, 0xff8b9a19, 0x7f5ca1ff, 0x33de2105, 0xf7253782, 0xffff9a19, 0x20a784e0, 0x2f098299, 0x086666e4,
0x00ffef0e, 0xff6666e9, 0xb85e6901, 0x4b27d982, 0x00ffce4c, 0x825c4f4b, 0x82062053, 0x06002827, 0x00ffc640, 0x8234330a, 0x240f837f, 0x3abff9ff,
0x82208208, 0xb4ff2925, 0x9105a4b0, 0x0300ff85, 0xff233d82, 0x827cd4f7, 0x80f7226b, 0x22ce8200, 0x8232b393, 0x8328208c, 0x84e7208c, 0x800e229d,
0x82c98200, 0x080022de, 0x229782cc, 0x826766f0, 0x19ef222b, 0x212b8298, 0x581a331b, 0xdb2017d6, 0x2082f482, 0x8399dd21, 0x83e220c4, 0x4ce32263,
0x2d3782cc, 0x0834b3dc, 0x062b072b, 0xcce400ff, 0x978207cc, 0x68e6102e, 0xb30900ff, 0x0f00ff33, 0x00ff9999, 0x00236c83, 0x8233b308, 0xcc2727a6,
0x1800ffcd, 0xcc826666, 0xce4c6c22, 0x08202b83, 0x00378982, 0xffcc4c04, 0x842b0800, 0x8b089191, 0x2fffff06, 0xffff5278, 0x827c540c, 0x21672ffd,
0x3800ff48, 0xff0532b3, 0x9a9911ff, 0x604e3b07, 0x00ff2217, 0x6a1e825b, 0x0028061d, 0xffae8709, 0x9a191000, 0x57218082, 0x2759820a, 0x8b080080,
0x3702ff07, 0xff244c82, 0x15cc4c4a, 0x002e4682, 0x076666ee, 0x196700ff, 0xc7ffff98, 0x9082ce4c, 0x68660f22, 0x7105b34a, 0xef220533, 0xdb8266e6,
0x3a82ee20, 0xa4ffff22, 0x0c822b82, 0xab82e520, 0x88eaff21, 0x200e8204, 0x2557828b, 0x14f82f0e, 0x5d1834f8, 0xfb2131c5, 0x18cc82d4, 0x18070e74,
0x2926c55d, 0xfb06d4f7, 0x1554fb94, 0x1451ffff, 0xf1ff2309, 0x9c8233b3, 0x08201082, 0x23082876, 0xcd4c0e00, 0x084f7d18, 0x088b3323, 0x0f7e18ff,
0x08a17515, 0xff204383, 0x47823485, 0xcb088b25, 0x841514fb, 0x86cc2053, 0xb3f12215, 0x97438534, 0x06c3574a, 0x18055651, 0x2423ea7e, 0xf70754fb,
0x627b1814, 0x85342010, 0x6b082275, 0x207e8907, 0x197e18cc, 0x18e27522, 0xf82f0e24, 0xcb83ab54, 0x137d9518, 0x20368241, 0xea9418ff, 0xd4fb2615,
0xf754fb07, 0x206c8294, 0xf27f1800, 0x522b2013, 0xff200cca, 0x0c4dfc18, 0x414cee21, 0xeb201168, 0x0c89bd18, 0x220afa52, 0x424b14fb, 0xb3411700,
0x54f72116, 0x180c1253, 0x22219c7c, 0x420654fb, 0xc9940502, 0xc9ae6b20, 0xc997ab20, 0x30fb0e3a, 0x19ff00ff, 0x15d4f79a, 0x612300ff, 0x00ff8b48,
0xff52b81b, 0xb89e1c00, 0x10820a82, 0x06850820, 0xe3ffff24, 0x16844861, 0xddffff26, 0x088b1e85, 0xff240685, 0xe27ae2ff, 0x8b251b84, 0x9edcffff,
0x832d82b8, 0x61ff2006, 0x32840581, 0x00802222, 0xe2332d83, 0xffffcc4c, 0x15343356, 0xefffff99, 0xffa40040, 0x82a1fdff, 0x02113f50, 0x0d00ff90,
0xff08b8de, 0x90025800, 0x999c05d3, 0x800200ff, 0x1900ff00, 0xffff0040, 0x098220f2, 0x4821112d, 0x00ff7d08, 0xffb81e11, 0x82c0e6ff, 0x82022010,
0xeeff2289, 0x820e82de, 0x3788821f, 0xff8ea2c6, 0x840bd1ff, 0x00ff6405, 0x0500402e, 0x9ef0ffff, 0x1200ffb8, 0xe8202683, 0x4d444682, 0x83e72005,
0x80fd223f, 0x20308200, 0x823b83e7, 0xffff240a, 0x8248e1ea, 0x21238265, 0x1383f4ff, 0x8340eb21, 0x9ece231e, 0x44822fb8, 0x9b99e826, 0x5ed4ffff,
0x0e204982, 0xff267582, 0xff3433cb, 0x2f832a00, 0x32b3e422, 0x2c27ae82, 0xffff71bd, 0x829a19dd, 0x80a42c29, 0xffff0600, 0x8b48e1e9, 0x83eeffff,
0x44861866, 0x22118209, 0x8266e6e9, 0x823883bd, 0x00ff2d16, 0x8bb81e16, 0x0664f708, 0x212200ff, 0x00233082, 0x8248a113, 0x22618357, 0x82707de6,
0x21a184f7, 0x33822692, 0x82d96d21, 0x22003e5c, 0x00ff67e6, 0x0566e640, 0x191800ff, 0xe3ffff99, 0x0e053433, 0xffa4f7ef, 0x9a190001, 0x364d1815,
0xf1ff230b, 0x6f8266a6, 0x4861ee29, 0xafffff08, 0x820752f8, 0x20f7210c, 0x072a5e18, 0x82e0f821, 0x480e8209, 0xff221879, 0xad4f4c00, 0x83112005,
0x820420f3, 0x11002991, 0xff944821, 0xb8de0e00, 0x4d20ef82, 0x81231083, 0x8205b89e, 0x830f2011, 0x82fb20e4, 0x1300265a, 0xffffd8a3, 0x225a82f0,
0x821e0900, 0xf0ff2825, 0x00ff9a99, 0x8248c108, 0x33b33297, 0xa5fbffff, 0xf6ffff66, 0xffffcd4c, 0x08b87ff2, 0x068a638a, 0x83660021, 0xe6ff21a7,
0x82059a63, 0xb38a2cac, 0x50ffff34, 0xff054821, 0x8266f5ff, 0x19f02315, 0x5879ff9a, 0x99ed2405, 0x82788b99, 0xc2af2d21, 0xffff078f, 0xffb8dea5,
0x66e6e2ff, 0xf2222782, 0x228247e1, 0xff72bd25, 0x8240f7ff, 0xccf323d8, 0x64828bcc, 0x82343321, 0x02a0222b, 0x20fa8390, 0x66a482f5, 0xeb2705cc,
0x00ffaec7, 0x82008017, 0x02002dfa, 0xff8b00c0, 0x00a00200, 0x400000ff, 0x09850482, 0x8200c021, 0x82b320e1, 0x2e0021a7, 0xff2ce182, 0xcdcc3100,
0x5e0d00ff, 0x2200ffb8, 0x0022a582, 0x3379332e, 0x56082006, 0x992106f4, 0x05165b99, 0x660e0023, 0x052e5e67, 0x01ff082b, 0xff98195a, 0xcc4c5eff,
0x2ba88215, 0x05a968e6, 0x335000ff, 0x9e8b0734, 0x0021ca85, 0x284e8212, 0x4861f5ff, 0xe10f00ff, 0x21f48648, 0xcc84af00, 0x86e0ff21, 0xffff248e,
0x82fffa7f, 0x82aa2000, 0x06e02103, 0x2982a284, 0x8260f621, 0x800d211e, 0xed21e682, 0x229282be, 0x829a5904, 0x220e837d, 0x820661f7, 0xe1f0251e,
0xf6ffff48, 0xff214282, 0x27f282fb, 0x725decff, 0xf0ffff94, 0x4d21d284, 0x223482c0, 0x8200807e, 0x8309208b, 0x08f1289d, 0x0400ff44, 0x477a34b3,
0xb3220858, 0x27429082, 0xe3502230, 0xd18e18d6, 0x2091830e, 0x056155ee, 0x9e820683, 0x84b89e21, 0x22678204, 0x82ae47ef, 0x538020a4, 0xcc21054e,
0x20ff8221, 0x20b08322, 0x229a82d1, 0x83de3100, 0x52b82626, 0xb300ff08, 0x22aa8240, 0x82e2bace, 0x99022caa, 0xffffff98, 0x00ff6666, 0x82d0cc02,
0x9a992109, 0x86520982, 0x80172605, 0x00ff8b00, 0x22fc8208, 0x83401500, 0xd909220a, 0x223c829a, 0x8370fd5f, 0x9c0e2a91, 0xf7ffff2a, 0x00ffcc4c,
0x2204820c, 0x82ccf2ff, 0x66042c09, 0x2f0e0866, 0x54f8f4f7, 0x48c4fb15, 0xff230cbc, 0x829082ea, 0x7de5259f, 0xb4fb0870, 0xff2b3e82, 0xff0ad7f1,
0xfa3e0600, 0x83f3ffff, 0xc109217c, 0xf7212e82, 0x339c8238, 0xd6a3aeff, 0xf6ffff07, 0xffff649b, 0xff6866fa, 0x9c64f9ff, 0x33210e82, 0x233e8234,
0x083233f5, 0xed200682, 0x86183183, 0x102c0903, 0x088b1fc5, 0xff06d4f7, 0x1e053500, 0x2a20b182, 0x1805ad5c, 0x2508f67f, 0x00ff07d4, 0xe182e600,
0x60221e82, 0x1e8200ff, 0x088b5625, 0x82e4ffff, 0x55ff29b1, 0xff159a99, 0x8a010300, 0x9130fa82, 0x0100fffe, 0xfffffc49, 0xff9446fc, 0x80b5fdff,
0xda210482, 0x32298260, 0xff6265eb, 0x0ecdebff, 0x0400ff05, 0xffff76de, 0x820080e3, 0x6e00220a, 0x21208200, 0x0482e590, 0x838cfe21, 0x82b92004,
0xdad92104, 0xff225a83, 0xa6827e6d, 0x646dff22, 0x24217882, 0x215a82fe, 0x09820e6d, 0x82034921, 0x60e6324b, 0x0d00ff00, 0xff056182, 0xb85ee6ff,
0x8af2ffff, 0x820a823d, 0x21258230, 0x0482fdb6, 0x82636d21, 0x02db2104, 0x6d210482, 0x224b830f, 0x82a0dafd, 0xfefd274b, 0x0200ff77, 0x46828901,
0x82d26d21, 0xd96e2209, 0x828c8308, 0x831c2014, 0xebff288c, 0x00ff4861, 0x82a43014, 0xb5fd224b, 0x20208281, 0x83e98225, 0x030023cc, 0xe0829ab9,
0x820c0221, 0x146e2139, 0x1c223482, 0x3982d7a3, 0x82ea2621, 0xe30c27c1, 0x1900ffd8, 0x0a8284eb, 0x44960022, 0x6321fc82, 0x21048242, 0x2a826866,
0x8232b321, 0xcc4c2109, 0x00218082, 0x82068201, 0xc86b210c, 0x48219282, 0x261b8280, 0xfffff292, 0x829e91fe, 0x2340834b, 0x7a14e6ff, 0x1c274082,
0xffff6e9d, 0x8236defb, 0x33933780, 0x6200ff34, 0xff156666, 0xf6a81700, 0x1600ff8b, 0xffff32f3, 0x30820cf9, 0x00c01322, 0xdc21f282, 0x270a82ee,
0xff103803, 0xe8dbfdff, 0x09835a82, 0x28dcfb2d, 0x77feffff, 0xfcffffd0, 0x8208e06f, 0xf873210a, 0x04840a82, 0x28831820, 0x1e82fc20, 0xf047fc22,
0xf7217e82, 0x221e82ce, 0x82bcb4f8, 0x60ba2138, 0xaf845782, 0x82cccc21, 0x83cc2009, 0xcfff28af, 0xff8b0080, 0x8280d8ff, 0x82048269, 0x2010820a,
0x22068508, 0x862700ff, 0x00ff2216, 0x05a34430, 0xe83b0622, 0x0622a182, 0x59827493, 0xfffed326, 0xae470700, 0xb3215882, 0x21a183f2, 0x148210b8,
0xfffcf726, 0xf0e70300, 0xfb20ab82, 0x01220982, 0x9684088c, 0x01211e82, 0x22148287, 0x822070fc, 0x82c820ab, 0x82fb20a1, 0xfcff21ca, 0xfd220983,
0x2482e8db, 0x783eec22, 0xe82dea82, 0xe9ffff30, 0xff849919, 0xcd4ce8ff, 0x2216828b, 0x82cdccbd, 0x33ca258b, 0x3500ff33, 0xff22af82, 0x2b694200,
0x83068205, 0x84cd2011, 0x34158316, 0xf7088b33, 0x150cfc1c, 0xcb06b4fb, 0x06b4f707, 0xab1100ff, 0x25aa8286, 0xff7a540e, 0x9718f1ff, 0x034908d1,
0x0fe25b06, 0x01ff0e2e, 0xffcc4cf4, 0xcc4c0400, 0x88ffff15, 0x773c0a83, 0xff0534b3, 0x52381b00, 0x682800ff, 0x0d00fff6, 0x00ff146e, 0xff707d32,
0x5ccff8ff, 0xce207683, 0xf33b9e82, 0x00ff1ec5, 0xffcc8c5b, 0x34f3b4ff, 0x734a00ff, 0xa4ffff34, 0x00ff4861, 0x8298990b, 0xcc77211e, 0x1127a082,
0xffff723d, 0x8200808d, 0xe27a2104, 0x4c279682, 0x77ffffcd, 0x830847e1, 0x829a2024, 0x295c212e, 0x78213882, 0x21428252, 0x4c82a4f0, 0xffaf8726,
0xccccf3ff, 0x35201e82, 0x6c826782, 0x76851a20, 0x6d0d0023, 0x218a820e, 0x94826866, 0x829a3921, 0x83a0821e, 0x82ce20aa, 0x9e0f25a5, 0xf0ffffb8,
0x19227783, 0xf4827c54, 0x00230f83, 0x829e9e0f, 0x910f2725, 0x0f00ffec, 0x1582568a, 0x3b821920, 0x66f0ff23, 0x840f8264, 0x821d209d, 0xbd00230f,
0xf18267e6, 0x9819fc30, 0x66e9ffff, 0xeeffff67, 0xffffcecc, 0x988219f1, 0x6666e727, 0x33fbffff, 0x22c78232, 0x189a19f8, 0x2222da58, 0x82968b94,
0xcc082970, 0xffff07cc, 0x8d3333f6, 0xff230584, 0x824c0300, 0x33f72251, 0x20098234, 0x82b78219, 0xff332b52, 0x32b30100, 0xf5ffff05, 0x15829999,
0x4634b321, 0x0b220686, 0x0e850080, 0x07575c18, 0x0a201e83, 0x00218682, 0x219a820b, 0x04830500, 0x23820a20, 0x66fcff23, 0x2c698266, 0xffdf0f05,
0x2130feff, 0x0800ff05, 0x310a828f, 0xfff0e7fc, 0x21b00900, 0x88fcffff, 0x0700ff31, 0x1e82f6a8, 0x82cfd721, 0x3a102529, 0xfdffffe1, 0x00283982,
0xff713d11, 0x04880200, 0x86828183, 0xdbc70922, 0x01221e82, 0x2e821038, 0xff101826, 0xed2fffff, 0x86268182, 0xdfffffa8, 0x4c8236cb, 0x82523821,
0xc2f922fd, 0x212e820c, 0xb0826dc7, 0x9a99ed2b, 0x4c0600ff, 0xd4ffffcc, 0x223e82b3, 0x82cdcc0b, 0x22048338, 0x8299192d, 0xe6032548, 0x1600ff66,
0x11212383, 0x2519824c, 0xffcecc0e, 0x76831800, 0xcccc0424, 0x58189308, 0xe62725ce, 0xffff8b66, 0x829a19f4, 0x4ef72378, 0x6e820714, 0x82834021,
0x1cba21c7, 0xce210982, 0x210982d9, 0xef82f833, 0xdb826820, 0xf813fd22, 0x0a227382, 0xf082866b, 0xff006026, 0xae870500, 0x12575c18, 0xff686626,
0x968ef5ff, 0x99201982, 0x8205046d, 0x2192830e, 0x62849903, 0x0221b183, 0x20d082cc, 0x28b683f9, 0x86cecc01, 0xb30000ff, 0x317d8232, 0xffd7e3ef,
0x10980200, 0xbaeeffff, 0xfdffffe1, 0x7c82ee5f, 0x2008d682, 0x2438f6ff, 0xffff8a08, 0xff2230fa, 0xf047ffff, 0xcffbffff, 0x1b00ffde, 0xffff436b,
0x0852f8f7, 0x2f268291, 0xff05f047, 0xe17a1900, 0xc2f8ffff, 0x2a00ffd0, 0xff235b82, 0x82cdccf3, 0x34332d0e, 0x66d2ffff, 0xf70e0866, 0x15a4f780,
0xf027ea82, 0xffff3c8a, 0x83c375f3, 0xffc42604, 0x3d8af0ff, 0x837c828b, 0x27168506, 0x00800c00, 0x0f00ff8b, 0x82059260, 0x83ff2006, 0x82048611,
0x832d820e, 0x8222821c, 0x83328228, 0xf0ff212d, 0xff2a2d82, 0xcc4c0801, 0xb3bbfeff, 0x1c431534, 0xf0ff2805, 0xffff4861, 0x8384abe6, 0x230a8275,
0xb89e0f00, 0xed436a82, 0xd7ff3c09, 0xffff0a97, 0xffaec7e4, 0x9082cdff, 0x91f2ffff, 0xcaffffec, 0x00ff3333, 0x82a43007, 0x73a42129, 0x0c340a82,
0xffffe23a, 0xffcd8cb5, 0xcc0c4b00, 0x66f4ffff, 0x5b00ff66, 0xee254884, 0x00ff8fc2, 0x28e08288, 0xae877200, 0x807200ff, 0x270e8200, 0xffff281c,
0x0832b3ee, 0xa3212482, 0x222e86d7, 0x825c0f4b, 0x20238342, 0x232d820c, 0x5278a4ff, 0x62821e82, 0xff236c85, 0x82f292f2, 0x01802180, 0xc6268a82,
0xd7ffffa8, 0x1e829899, 0x32b37724, 0xaa82ffff, 0x00ff0525, 0x824ca10f, 0xc47521d0, 0xe622c682, 0x0a829899, 0x83646621, 0x82682004, 0xcc3131a1,
0x3e01ffce, 0x8b159819, 0xb32f00ff, 0xd9ffff34, 0x26208483, 0xff240482, 0x8b0080cf, 0xd1222182, 0x3782cc4c, 0x1b831683, 0xd0230a82, 0x8208cc4c,
0xa6d93606, 0x3800ff68, 0xffff3e4a, 0xff98d9b9, 0x7b941500, 0x80e6ffff, 0x25798200, 0xffae0702, 0x4c82fdff, 0xe6020026, 0xfeffff66, 0x00234c82,
0x82676602, 0x0300234c, 0x6882fe34, 0x910d032c, 0x750100ff, 0x0200ff82, 0x0482020b, 0x82fc5421, 0x65162735, 0x1900ffa2, 0x54824e82, 0xffcd4c26,
0x34334600, 0x26202982, 0x0e316b82, 0x3f01ffaf, 0x34f89a19, 0xff968b15, 0x00200300, 0x055e58ff, 0x82e00421, 0x21092209, 0x27a38248, 0xffcc4cfe,
0x76bf0000, 0x2506b343, 0xff42df00, 0x4082fcff, 0x6505ab49, 0xf02008ae, 0xff219382, 0x2eda18f1, 0x28328208, 0x056b1301, 0xff9f00ff, 0x272382ff,
0xabeefeff, 0xb7ffff05, 0xfe2aae82, 0x1566e6e9, 0x5c4900ff, 0x1e82c22a, 0xaa000022, 0x19242382, 0x34fb059a, 0xed252684, 0xe650ffff, 0x272a8266,
0xff295ca9, 0xd663bfff, 0xd8250a82, 0xffffb89e, 0x323a82e2, 0x1f85f1ff, 0x19c9ffff, 0x1800ff9a, 0xffffb99e, 0x596666d5, 0xff2e051f, 0x4861e0ff,
0xd92000ff, 0xefffff9a, 0x09829042, 0x8bb9de24, 0xe4829f08, 0x8f421426, 0x390600ff, 0x11213182, 0x22d28240, 0x82b8fe0c, 0xde152731, 0x1000ffb8,
0x5b824861, 0xed2be227, 0x783600ff, 0x830f8252, 0x664625e7, 0x3400ff66, 0x0023ca82, 0x82008028, 0x80682729, 0xff15b200, 0x3082a9ff, 0xa1218c87,
0x218c8748, 0x8c878f82, 0x8c851383, 0xf5281327, 0x68dfffff, 0x218282f8, 0x8c82ce4c, 0x20225483, 0x8c8666e6, 0x06208283, 0x8c820483, 0x5e829820,
0x32337325, 0x835600ff, 0x20002388, 0xd5823433, 0x9eec1127, 0x192600ff, 0x22b98298, 0x829a1929, 0x19cf2921, 0x54fb079a, 0xffffff06, 0x1a41f582,
0xa0002b05, 0x01ff66e6, 0x159a190f, 0x5b1814fb, 0x7e410c0e, 0x2830820b, 0xff056bec, 0x1400c000, 0x05715106, 0x67b89e21, 0x002205a6, 0xc182610e,
0x6866ee2e, 0xaf0e088b, 0x01ffd4f8, 0x1570fd9f, 0x11226f82, 0x2082a4b0, 0xff84ab35, 0xf6680d00, 0x54eeffff, 0xfb088b7c, 0x0000ff74, 0x82054201,
0x5c4f2d18, 0xf3ffff8b, 0xff81c235, 0x166efcff, 0xc02c1082, 0xffff0800, 0xff32f3a4, 0xe8da94fe, 0xb6272182, 0x00ff33b3, 0x82999992, 0x99fa220a,
0x06f05899, 0xaa82f420, 0x82060021, 0xf3ff2704, 0x088b66e6, 0x1d828b4b, 0x7b54ee22, 0xf1224a82, 0x448285ab, 0x82a4b021, 0x35ef230a, 0x068508c2,
0x0e00ff29, 0xffff7b54, 0x183ecaf0, 0x2d08e89e, 0x0652382c, 0x336700ff, 0x31ffff33, 0xd18232b3, 0x1078053c, 0x17f5ffff, 0x0b00ff0a, 0xffff8a21,
0xffe23af9, 0x8f020c00, 0x00ff088b, 0x47822c01, 0x26010023, 0x21b582a8, 0x0f84be0e, 0x20200982, 0x0023a882, 0x825c4f0d, 0x10782d0f, 0x0900ff96,
0x00ff4c97, 0x98004003, 0x69203182, 0x01239a82, 0x82cccca7, 0x03c72257, 0x266882d8, 0xff34b311, 0x8207ffff, 0x4c0e2209, 0x838e82cc, 0x110023f6,
0xeb82a4b0, 0x9899f629, 0x9c36ffff, 0x58ff152a, 0x0c270539, 0xffff0080, 0x8200c0eb, 0x83f320ba, 0x8204820a, 0xa6d62725, 0xd6ffff68, 0xe8829a99,
0xb89ed627, 0x5e2900ff, 0x820a82b8, 0x0524451b, 0x3b873091, 0x8407ad5d, 0x234b8456, 0x48612900, 0x9e204b82, 0x4b834083, 0x0482ff20, 0x81834b86,
0x062f3092, 0xffffe23a, 0xff3ecaf9, 0x32330800, 0x82fcffff, 0x210982dd, 0xe9828b34, 0x34330823, 0x2116828b, 0xfb82142e, 0xff002026, 0x703d0600,
0x40210482, 0x831a8200, 0x29002466, 0x82053453, 0x237188ad, 0x50380600, 0xc7224b82, 0x4183ffae, 0xbd834ba8, 0x22062446, 0x41004014, 0x08200929,
0x6084c884, 0x5c216683, 0x210a8228, 0x0a821e65, 0x3321308b, 0x24308a34, 0x5401ff0e, 0x28418280, 0x159a99ed, 0x80feffff, 0x75ef8200, 0x1583055a,
0x00a0fd22, 0xff23d582, 0x8233b38b, 0x82a12016, 0x5e002311, 0xe08248a1, 0x1e457423, 0x22068508, 0x865e00ff, 0x00ff2416, 0x82cd4c74, 0x0200222d,
0x22448260, 0x82600500, 0x83ff2055, 0x8201201b, 0x08465c54, 0x00200625, 0x8200ff90, 0x82922012, 0x82012012, 0x07002523, 0xff870040, 0xff290583,
0x0020f9ff, 0x9e0200ff, 0x27c682b8, 0x96b8dee2, 0xc0e1ffff, 0x20070d75, 0x827782e1, 0xe6722216, 0x24898266, 0xff9a198d, 0x820482ff, 0x8210820a,
0x82ff2089, 0x00ff2406, 0x8467e672, 0x00ff2116, 0x5f821b83, 0x00401e24, 0x4f63a98b, 0x1d002805, 0x00ff4821, 0x8248e10a, 0xe0052616, 0x00ff8d00,
0x207c8304, 0x24e08205, 0xa00600ff, 0x225b8200, 0x8252f8ff, 0x34f32187, 0xb3228782, 0x8d6b9232, 0xf7083d05, 0xfc00ff37, 0xff150080, 0xb89eb3ff,
0x1e0b00ff, 0xffff05b8, 0xffaec7dd, 0xae474500, 0xfe260a82, 0x00ff3433, 0x8f829903, 0x6666fc22, 0xe623d882, 0x82ffff66, 0x828b202f, 0x4806834f,
0xff2105a6, 0x85d882fe, 0x60fc2104, 0xdd276a83, 0xffffb8de, 0x8200c0ba, 0x23568340, 0x48e1f4ff, 0xf7250a82, 0xffff00e0, 0x210483fe, 0x1f82befc,
0x0982f520, 0xe1050027, 0xfaffff48, 0x22348240, 0x82403700, 0x82ca201e, 0x3f7e2180, 0x27842c82, 0x0080f922, 0x3920c882, 0xfa217d82, 0x220982c0,
0x8266a606, 0x7e002078, 0xa0200662, 0x00201182, 0x0f82e483, 0x0000ff23, 0x254383e0, 0xff486144, 0x6d832300, 0x83440021, 0x82dc204e, 0x82b5824e,
0x05bc7b2a, 0xff202a83, 0x21054d7e, 0x4b8300a0, 0x00c00527, 0x0500ff8b, 0x20368221, 0x20308305, 0x28b982fe, 0x00800600, 0x05d77e08, 0x219284ff,
0x4e843500, 0xb0e70522, 0xc5212782, 0x27f1821e, 0xff9632b3, 0x66e6f7ff, 0x33317482, 0xff0e0834, 0x34b3ea01, 0x996600ff, 0xffff159a, 0x221683c8,
0x83666659, 0x9a19253c, 0x615900ff, 0x0021f982, 0x2055830e, 0x2b5f8318, 0xff9082ed, 0x285c1e00, 0x80e2ffff, 0xff228083, 0x47836691, 0x25820120,
0x83c6ff21, 0x195d2285, 0x31fd829a, 0xff0a97f8, 0xeae60c00, 0x33f3ffff, 0x0600ff32, 0x0982c400, 0x829a1921, 0xf3ff21b1, 0x0c820682, 0xff333337,
0x3cfff9ff, 0x99f8ffff, 0xf4ffff99, 0xff08c400, 0x9a19c6ff, 0x233c822d, 0x06d76391, 0x612a5f82, 0xffff8b48, 0xff48a1ed, 0x0482e1ff, 0xb9268382,
0xc0e7ffff, 0xd6820800, 0xff239982, 0x82b89ea6, 0x86af832b, 0x21f1220a, 0x22208247, 0x52ffaec7, 0xe225053b, 0x00ff0080, 0x05b4641d, 0x99996e26,
0x3900ff06, 0xff22c582, 0xdb83e6a2, 0xa5700722, 0xa4829084, 0x82cdcc21, 0x82508288, 0x826620ae, 0x0c00229f, 0x237782e1, 0x28dc0c00, 0x842ab683,
0x610700ff, 0x0b00ff48, 0x77827cff, 0x7cd43924, 0xe08400ff, 0xb36e0023, 0x26518234, 0xffcc8c1d, 0x82cc0100, 0x66122204, 0x06c65566, 0x4b83f120,
0x34331838, 0x15ffff08, 0x01ffcc4c, 0x1548a10f, 0x971700ff, 0xd9ffff0a, 0xb2821ec5, 0xf6e8d022, 0x17213a82, 0x229e8280, 0x82e23a26, 0x7a592710,
0xf2feffe2, 0x268284ab, 0x0b971431, 0x592100ff, 0x00ff059a, 0xff337314, 0x82a6deff, 0xd6ff24ad, 0x8206c2f5, 0x1f852c10, 0xcc8d00ff, 0xffff15cd,
0x82e17aeb, 0xcd4c2126, 0x29232682, 0x85063e0a, 0xdeff2b10, 0xf70533b3, 0x13ffff26, 0x23829919, 0xf668e827, 0x402600ff, 0x22238200, 0x827a142f,
0x82e82223, 0x20828290, 0x211083c0, 0xad82e639, 0x9a195f22, 0x8c222682, 0x1b829a19, 0xcdccc926, 0x195700ff, 0x36227783, 0x0a875238, 0x01007422,
0x36267782, 0xffffac47, 0x8883e6a8, 0x9a99c922, 0x00250a86, 0x8b666643, 0x21948215, 0x898286ab, 0x823e4a21, 0x85142265, 0x21b0821e, 0xd182c2b5,
0x5ccfd622, 0x13223882, 0xb088cecc, 0x83707d21, 0x893d2026, 0x527821b0, 0xc32d2c83, 0xffef0e05, 0xcccc3501, 0x4abc01ff, 0x2f4f82c0, 0xff68e605,
0xaaf10400, 0x990800ff, 0x00ff8b98, 0xff2b0f83, 0x08560efb, 0xffff0df7, 0x8240359b, 0x4c122540, 0xf0ffffcc, 0x00293282, 0xff00800a, 0x0080e9ff,
0x2a05828b, 0xff089a19, 0x9a19a5fe, 0x54062b07, 0x8e180575, 0xff24136b, 0x34b3dcff, 0xe3202d82, 0x0c5c4283, 0x14fb2109, 0xff253582, 0x66e65a01,
0x23728207, 0xff66e616, 0x00215a84, 0x335f8216, 0xcd4c1200, 0x330f00ff, 0x00ff0834, 0xffffff78, 0xc0ca6400, 0x102b8482, 0xffffce4c, 0x15746887,
0x83fdffff, 0x6605268a, 0xf8ffff66, 0x205c8333, 0x223f82fc, 0x8299faff, 0xf0ff338f, 0xffff3433, 0x0566e6e3, 0xb3dfffff, 0x0000ff32, 0x0a82cc4c,
0xceccf922, 0xfc258382, 0xffff9919, 0x214682f9, 0x09830300, 0x9899fa22, 0x10206182, 0xe5224683, 0x25829a19, 0x9a99ef22, 0x4c213b82, 0x230a82cd,
0xff67e6fc, 0xff225183, 0x09830300, 0x9183f920, 0x32330623, 0x2030828b, 0x84408320, 0x0f002156, 0x6c858782, 0x3b825182, 0xff248282, 0xcccc0700,
0x0220d282, 0x00208782, 0x3082a282, 0x87831020, 0x61831c20, 0x3b830020, 0xb3ffff23, 0x05a95d34, 0x03282682, 0x00ff68e6, 0xff33b306, 0x84053347,
0x83ff2030, 0x1c002387, 0x258233b3, 0x00219d83, 0x84ce831a, 0x06ed6d61, 0x83981921, 0x82322034, 0x056f5dcc, 0x5685e983, 0x83efff21, 0x2b6c859d,
0xff66e6b9, 0xcccc87ff, 0x1c00ff15, 0x1f243183, 0x8e053333, 0x6625d082, 0x0400ff67, 0x20778266, 0x23208201, 0x00800400, 0x0683d583, 0xff241685,
0x8e9a19fe, 0x99218f82, 0x20bb8299, 0x22e1833f, 0x829919b9, 0xe607278a, 0xf8ffff64, 0x25869a19, 0x34b3f322, 0x2208a24e, 0x18cc4c7c, 0x2e17887a,
0x01ff064b, 0x0700800b, 0x158b14fc, 0x82f4feff, 0x20118209, 0x14d35cff, 0x8300ff24, 0x478234b3, 0x840b0021, 0x96632b97, 0x4c0c00ff, 0x0700ffcc,
0x048256ee, 0x0866e62c, 0xca3f00ff, 0x4600ff3e, 0x8e8267e6, 0xae070322, 0x5121cb87, 0x056646ec, 0x8a040023, 0x82cb843e, 0x82a58206, 0x82cb8316,
0x212a8225, 0xcf84fcff, 0x291c1c36, 0xcce0ffff, 0xef0e05cd, 0x00ffd4f7, 0x15008051, 0xc01100ff, 0x2605b744, 0xdcffff05, 0x82ff0080, 0x82b82000,
0x23158360, 0x9061e2ff, 0x3e230a82, 0x82c20080, 0x83242027, 0x00002227, 0x27278248, 0xffb89eed, 0x00c01e00, 0xa1250a83, 0xe1ffff48, 0x2132823f,
0x3d82b1fe, 0x80370122, 0xff205382, 0x0ae45b18, 0x21099c4c, 0x557654fc, 0x82152008, 0x82ff202a, 0x00ff2219, 0x0580411a, 0xff210683, 0x24168300,
0x66660e00, 0x2395828b, 0xf8089a99, 0x00213083, 0x216c8211, 0x3082eaff, 0x8305424b, 0xff08275a, 0x34337301, 0x6c85ffff, 0x3233db23, 0x20a6828b,
0x23228212, 0xc235e1ff, 0x4c210a83, 0x219f82ce, 0x9f823eca, 0x99993924, 0xbd8303fb, 0xffb9de26, 0x4e000000, 0xed201282, 0x00222882, 0xb282de1e,
0xa1edff23, 0x21bd8247, 0x3382fa20, 0xcd4c4223, 0x2227828b, 0x83cccc41, 0x4021244c, 0x8200ff00, 0x202e825e, 0x85f783de, 0x33be220a, 0x271c8234,
0xccccdeff, 0x80c8ffff, 0x0021fe82, 0x84868321, 0x3001240a, 0xc3ff66e6, 0x486121fe, 0x9e21fe83, 0x3efe9ab8, 0x74fc64fc, 0x0614f815, 0xfc0754f8,
0x54fc0614, 0x4200ff07, 0x01ffcdcc, 0x159a1926, 0x830300ff, 0xa00621b0, 0x0726c082, 0x00ffb81e, 0xea632004, 0x088b2b05, 0x663b00ff, 0x0000ff67,
0xef82cc0c, 0x1b831d20, 0x86ab3022, 0x032c0a82, 0x00ffaec7, 0x927a5407, 0x0600ff8e, 0x21058f41, 0x34826007, 0x39830020, 0x00e00631, 0xf5fbffff,
0x0200ff82, 0xffff9ad9, 0x82fabef9, 0x401d2147, 0xcf221482, 0x3c824621, 0x83803b21, 0x7e002129, 0x07200a82, 0x21053c49, 0x3082b8fe, 0x8242e021,
0x90c22188, 0x5f213082, 0x203082be, 0x270a8603, 0xddffffff, 0xf7ffffb2, 0xff231e82, 0x82ec1ffc, 0x0080251e, 0xe2ffff08, 0xff23b282, 0x824821cf,
0x611d2944, 0xcfffff48, 0x8f0566e6, 0xae821c84, 0x82420021, 0x82e12030, 0x3ffc2215, 0x821384e6, 0x83fc2030, 0x82f92080, 0xf8ff21a4, 0xfb201983,
0xf822a483, 0xe382b85e, 0x42c4ff21, 0x842105c4, 0x83568205, 0x54cf221b, 0x850a827c, 0x211a8330, 0x4a8321f9, 0xff862b24, 0x2984f8ff, 0x82b8de21,
0x83f8204f, 0x056f4aba, 0xbedf0322, 0x2305946e, 0x42600600, 0x00239b86, 0x82b8de30, 0x235a8a44, 0x8b0060f8, 0x01258c82, 0x0400ff48, 0x2030881f,
0x833083a0, 0x06002c6a, 0x00ff42a0, 0xffdbf201, 0x82370700, 0xcc032509, 0x0600ffcd, 0x0021eb83, 0x86ba821d, 0xa6e2274f, 0x3100ff66, 0x5a82ae07,
0x9a19fc22, 0xff232084, 0x82e6ffff, 0x83082014, 0x21348a0e, 0x3f824c7c, 0x66662826, 0xefffff15, 0xff2b1a82, 0x056666e2, 0x5e2300ff, 0x4300ffb8,
0x87260692, 0x1d00ffae, 0x4a825299, 0x6666c223, 0x23278254, 0x8bcd4cdb, 0x12212382, 0x22ee8261, 0x83852be1, 0xeb51380a, 0xd41e00ff, 0x8b0e057b,
0xdb1504f8, 0x4700ff07, 0xffffb95e, 0x82c235e8, 0x4f102b1c, 0xfaffff5c, 0x00ff5c8f, 0x14821e11, 0xe23afd25, 0x821000ff, 0xff082642, 0x66e60c01,
0x22168206, 0x828b3433, 0x98192605, 0xc50200ff, 0x261c831e, 0x0500ffce, 0x8208a470, 0x82662046, 0xca1728b2, 0x073b053e, 0x62ffff8b, 0x7b281305,
0x4b074b06, 0x2b07cb06, 0x0b19078e, 0xab221898, 0x9f1864fb, 0x925f0cd2, 0x9dad1811, 0x5ff8200f, 0xf5610dc3, 0x16f0560a, 0xfb066b23, 0x21af8354,
0x40614cee, 0x05115706, 0x10bf9f18, 0xf7247a8a, 0x94fb0754, 0x3321368d, 0x243687ff, 0xff088bcd, 0x4cde18ff, 0x08368214, 0x0e066b23, 0x1801ffef,
0x01ff9a19, 0x1552f8a9, 0xb31900ff, 0x1100ff32, 0xff05765e, 0xce4c0100, 0xf20000ff, 0x2009832e, 0x210982cc, 0x098298ce, 0x82008021, 0x78a92709,
0x0300ff08, 0x0f823433, 0x82de8321, 0x21148409, 0x845fdabb, 0xffff2305, 0x1e8242ff, 0xbe820420, 0x00000023, 0x231e85be, 0x2644ffff, 0xff233285,
0x82227cfe, 0x05c14b1e, 0x85465621, 0xffff235c, 0x70856831, 0x0effff23, 0x211e8214, 0xfc82cc18, 0x8aa1ee22, 0x21208682, 0xff269c82, 0xffe23ae8,
0x9b822600, 0x47eeff30, 0xffffb3ae, 0x089a19f5, 0xf9ffffa2, 0x2182c2b5, 0xcecc0122, 0x8a217482, 0x8341823e, 0x57ff2136, 0x8205906e, 0x68262113,
0xff22a886, 0xbd8359fe, 0xff66e627, 0x86abfdff, 0x2105828e, 0x1a83e23a, 0xfb215183, 0x22dd820c, 0x8268e601, 0x14ae214e, 0x19213482, 0x07ce4398,
0x9a99ff25, 0x83feffff, 0x82ff207f, 0xfcff21ec, 0xff21e782, 0x233283fe, 0x089a99fd, 0x66201982, 0xfc203382, 0xfd217283, 0x84338299, 0x4cfd2328,
0x1a8288ce, 0x2583fb20, 0x9783fc20, 0x0483f920, 0x3233fe2b, 0x66fbffff, 0x0000ff66, 0x33398319, 0x060080f8, 0xe6c7ffff, 0x00ff0766, 0xff34b30b,
0xcdccf6ff, 0x1520c882, 0xef257a83, 0x00ffcd4c, 0x20558317, 0x227982f3, 0x18991900, 0x22087488, 0x8264e61c, 0xcc4c2129, 0x01202982, 0xff201583,
0x00208f82, 0x21054841, 0x9b416766, 0xffff2305, 0xd7833333, 0xfe254883, 0x00ff3333, 0x20288302, 0x21c782fd, 0x13840200, 0x08991926, 0xfcffff8d,
0x01206383, 0x6d82be85, 0x30b30022, 0x66211382, 0x20398266, 0x21538200, 0xa985fdff, 0xfd207882, 0x6783f783, 0x0982ff20, 0xcc7d0820, 0x200a8205,
0x06264132, 0xce4cfd22, 0x2305f849, 0x9899fdff, 0x19201e83, 0xfc223382, 0x148268e6, 0x083e5e18, 0x89203882, 0x06831a82, 0xfbffff22, 0xfe20c283,
0xff238e82, 0x82d04cfd, 0xcc4c2144, 0xfe211a82, 0x24d78266, 0xff34b3ff, 0x56361aff, 0x8bd0210b, 0xd82c1a82, 0xff069899, 0x9a19beff, 0x1400ff07,
0xe9259a83, 0x00ff3233, 0x2661831a, 0xa934b3ef, 0x84f8ffff, 0x840a20b5, 0x9a992d6d, 0xf6ffff93, 0xff8b6666, 0x9a99f4ff, 0x0db96118, 0xcc4cf52b,
0xb3f2ffff, 0x63088b34, 0x08a46406, 0x180f6b5a, 0x2c0d7cfd, 0xff8bcc4c, 0x34b31100, 0xfb07ab08, 0x4334c134, 0xab222391, 0xee826307, 0x18093f6e,
0x340d9f84, 0xff66660b, 0x46f60700, 0x990900ff, 0x0a00ff9a, 0x00ff02ab, 0x22ff8402, 0x82e1fa1d, 0x25148319, 0xff67e61a, 0xec821000, 0x7d140034,
0x1600ff71, 0xff08cecc, 0x66e64100, 0xd8ffff07, 0x5c82cd8c, 0xeb51fe2d, 0xfeffff8b, 0x00ff7b54, 0x829a1900, 0xb85e2109, 0x4c270982, 0xffff08cc,
0x82c275fc, 0x34b3210a, 0xbd200982, 0x01203b82, 0xff246e82, 0x8da430fd, 0xfd281a82, 0xff8d3333, 0x299cfdff, 0x20837182, 0x8f42fe27, 0x190300ff,
0x221a8298, 0x82f6a8fe, 0x68662614, 0x11ffffff, 0x210982eb, 0x098232b3, 0x82cd8c21, 0x237b8309, 0x3d8affff, 0xcc200a83, 0x0c205982, 0x09831484,
0x3d828220, 0x9a990222, 0x00209a82, 0x03203d83, 0x0122b983, 0x5282a470, 0x82333321, 0x1f05212d, 0xb3210982, 0x201e8233, 0x200a8302, 0x22d38301,
0x84d7a302, 0x201982ed, 0x22e28226, 0x82cdcc01, 0x2133841e, 0x5782cc00, 0x3e8a0122, 0x99256182, 0x0100ff99, 0x21d0839e, 0x1e820080, 0x82de1c21,
0xb309290a, 0x00ff0534, 0xff0b9719, 0x20050160, 0x252e8317, 0xff66e60c, 0xff821500, 0x84100021, 0xb30b2167, 0x09227782, 0x29823333, 0x9a193825,
0x43ffff07, 0xfa2205a1, 0xf9460080, 0xfaff2105, 0x01252083, 0xffffcecc, 0x220983fb, 0x82323303, 0x4cfd26fa, 0xffff8ecd, 0x82bd84fd, 0xfeff2250,
0x22558266, 0x82343303, 0x83fe201a, 0x82022025, 0xffff230f, 0xb3823433, 0x9e844884, 0x8266e621, 0x83ff201e, 0x8206207a, 0x01002114, 0x00233882,
0x84ec5106, 0x00ff23f1, 0x3d82f304, 0x83020021, 0xc502221e, 0x83f1821e, 0x540222ad, 0x2009827a, 0x21e6834c, 0xd78268a6, 0x38830220, 0x98d90022,
0xcc21ec82, 0x21f682cc, 0x0983f8a8, 0x002e1e82, 0xa208c275, 0x4a0600ff, 0xffb3053e, 0x5a830a00, 0x40832520, 0x52b81125, 0x832100ff, 0xc5173554,
0x068b081e, 0x96ffff52, 0x4b15ae07, 0xc000ff07, 0xcb0666e6, 0x3f2af082, 0x4b069a19, 0xff1574fb, 0x11854001, 0x83bffe21, 0x0e072511, 0x2d01ffaf,
0x0127c282, 0x1566269d, 0x83f4ffff, 0x3005277a, 0xf2ffff22, 0xfb82e27a, 0xff1aef2b, 0x7a94f6ff, 0xa0f7ffff, 0x2dd78200, 0xff3d0a79, 0x5e1a88ff,
0xacffff05, 0x38613333, 0x63e63f13, 0xffff08d6, 0x0766e6a0, 0xe5ffff8b, 0x00ff707d, 0xff717d15, 0xf668ebff, 0x821a00ff, 0xde828b8f, 0x0ad75326,
0x8600ff06, 0xff33bd82, 0x059a1988, 0xfb0500ff, 0xfaffffe8, 0x00ff20b0, 0x82929807, 0xd0372174, 0xae210982, 0x2d2b8316, 0x8b207004, 0x880400ff,
0x0000ffb4, 0x098200f0, 0xffb23226, 0x10e80100, 0x22075f73, 0x82f02705, 0xec51262b, 0x670b00ff, 0x2829826c, 0x089a990c, 0x4a7d01ff, 0x2cf2823e,
0xff281cff, 0x0a970c00, 0x99f9ffff, 0x8220829a, 0x21df8682, 0x3f826626, 0x34b3d42d, 0xc023ffff, 0x00ff1500, 0x83b0072f, 0x82ae2004, 0x6009218b,
0x04826582, 0x0f224b82, 0xfc825c2f, 0x0f83a020, 0x82486121, 0x86f620d4, 0xffff290a, 0xffa4d0f0, 0xb8feffff, 0x9e201e82, 0xa0210483, 0x261e8200,
0xff8c02d1, 0x8207d0ff, 0x21001a44, 0x8234850b, 0x20348354, 0x20308c8b, 0x823b86f6, 0x190120da, 0x221265d2, 0x82ae072f, 0x52f8224f, 0x84058405,
0x830a8204, 0x82ff204f, 0x834a8204, 0x82002085, 0x825484aa, 0x5f0922d0, 0x260a827c, 0x00ff84a0, 0x82e02f0f, 0xf2fd269f, 0x610900ff, 0x20048348,
0x221e828a, 0x8266e62f, 0x3e0a21e4, 0xef83e482, 0x83d0ff21, 0x9e00205a, 0x1a0e4134, 0x14eed022, 0xe3274f82, 0xf70e05d6, 0x68d4f794, 0x42180efa,
0xa78208fb, 0x8266ee21, 0x4c0e2778, 0xf1ffffcd, 0xae6a9a99, 0x8b34260a, 0x450e00ff, 0x4c04821e, 0x5d18087c, 0xba2108c8, 0x451684e2, 0x082305b1,
0x6e14f78b, 0x8b215ce6, 0x225f83fc, 0x82ec51ee, 0xb5f122ad, 0x829192c2, 0x841f20a8, 0x59bf9216, 0x3f820a8a, 0x4861ee22, 0xbf82e882, 0xbf8c1683,
0xc2f5ca22, 0xd5381f82, 0x8b609002, 0x568b0856, 0x212a00ff, 0x00ff6048, 0x8b66e635, 0x95ffff08, 0x352d0682, 0x08f58be1, 0xe1e1f58b, 0x196a00ff,
0x2415829a, 0x3e0a3500, 0x2128828b, 0x338670fd, 0xd4ff3008, 0x566052f8, 0xaf0e088b, 0xb39e00ff, 0x7100ff33, 0xff1566e6, 0x6766e5ff, 0x663e00ff,
0xffff0566, 0xff9919fe, 0x9a990700, 0x0300ff84, 0x4cff6666, 0x3328066e, 0xff5e0834, 0x42a0fbff, 0xee2f2182, 0x00ff00c0, 0xffb8de2e, 0xb89effff,
0x823400ff, 0x11002909, 0x00ff48a1, 0x082adc2f, 0x25841582, 0x2c059477, 0x927c3fff, 0x4c0400ff, 0x0100ffcc, 0x246282e6, 0x0834b306, 0x05e976ff,
0x00403f23, 0x201a8205, 0x2d1a820c, 0xffd66307, 0x3433fcff, 0x800800ff, 0x14828500, 0x82004021, 0xccd821d0, 0x18221a82, 0x71827e1f, 0x0a97f122,
0x76821b82, 0x2305e854, 0xff26a0fc, 0x22055b69, 0x825c80f3, 0x5ea32129, 0x98387582, 0x00fff668, 0xff48a100, 0x9a1964ff, 0xff0824e9, 0x00e00900,
0x40f5ffff, 0x1321ac82, 0x20168241, 0x220983fe, 0x82b99e0c, 0x82c020dd, 0x2700225f, 0x22b28261, 0x82b81e18, 0xfa052285, 0x207582e2, 0x2104823a,
0xfd829903, 0x88208582, 0x23086f82, 0xff08cc4c, 0x68664001, 0x19ceffff, 0xffff159a, 0x0666e600, 0x9edcffff, 0xffff8bb8, 0xffae47e4, 0x4861e3ff,
0xdd2a0a82, 0xff081e85, 0xabfeffff, 0xbe41056b, 0xa84a1806, 0x3f012310, 0x2182f01a, 0x82343321, 0xa111246b, 0x84ff8b46, 0x0e002121, 0x00233f83,
0x8252b810, 0x000027ac, 0x1f00ff7c, 0xed829a19, 0x84ffff27, 0x332500ff, 0x2c658232, 0x00ffd04c, 0xff9a991c, 0x32b3dbff, 0x05445d8b, 0x60182b20,
0xf22208f2, 0x4882ae87, 0xfb424388, 0x215a8506, 0xcc827a0d, 0xe2ba1022, 0x00203482, 0x71850683, 0xd650ff20, 0x47ef2205, 0x217183ae, 0x735c66e6,
0xf1ff2105, 0x04846183, 0x6666ee22, 0x20083183, 0xf89a192f, 0x00ff1534, 0x06fe7f9e, 0x661200ff, 0x3f00ff68, 0xff05f4fd, 0x9a197ffe, 0x000000ff,
0x26a58482, 0xa0feff69, 0x630566e6, 0x7d2205b2, 0x1482cb70, 0x90829e31, 0xf7ffff06, 0xff8bf232, 0x0ecdf8ff, 0x830700ff, 0x0700240a, 0x8208a8e6,
0xcc08229e, 0x2311848c, 0x4d0600ff, 0x08221b82, 0x6c830ecd, 0x9a196a22, 0x11226482, 0x6482727d, 0x8422ff84, 0x44b06666, 0x00233384, 0x87707d11,
0x8d558444, 0x82f02089, 0x82898382, 0xb40529c1, 0x340e00ff, 0x0800ffbc, 0x0722d083, 0x97823433, 0xfa82e620, 0xf72f0e25, 0x82c4f7a4, 0xcc0822f9,
0x182d83cc, 0x211604f4, 0x2f8200c0, 0xff231b82, 0x820040f7, 0x820684c2, 0x231682f0, 0x34b3f8ff, 0xf722fb82, 0xf082cc4c, 0x0682ff20, 0x4c212882,
0x201b82cc, 0x206282b3, 0x241b8208, 0xfb44f708, 0x948a1854, 0xf7642ca5, 0x00ff15a4, 0x8bcc4c2c, 0x822300ff, 0x0db57dbf, 0xb81eeb27, 0x40f3ffff,
0x067c5800, 0xfc83ec20, 0xb85ef42d, 0xf2ffff08, 0x8b0748e1, 0x83f7ffff, 0x83f8201b, 0x82048416, 0x088b230e, 0x1782064b, 0x82cd4c21, 0xb3f8271d,
0x0700ff33, 0x5b823333, 0xcdcc0833, 0x0d00ff08, 0xff079a19, 0xcdccecff, 0x990b00ff, 0x05fa589a, 0x66120023, 0x23208266, 0x0866e614, 0x23200682,
0x00215082, 0x20208323, 0x2155821c, 0x3c822c00, 0xffff0823, 0x24488289, 0xcd4c51ff, 0x30598215, 0x00ff00e0, 0xffe77b03, 0x0a37fcff, 0x670900ff,
0x270e82f0, 0x00ffd578, 0x08482108, 0x11200a83, 0x18210a82, 0x21198210, 0x0e829478, 0x8219c421, 0x5c0f210e, 0x8f212d82, 0x2b1e82df, 0xffeebc69,
0x0cc2d2ff, 0x6900ff05, 0x0023ed82, 0x82c2352d, 0x0708210a, 0x70214483, 0x21348221, 0x2a82be7f, 0x82e13b21, 0x52782139, 0xe7216c82, 0x205384f6,
0x82778510, 0xfff02472, 0x8398f6ff, 0xe0df2119, 0x82212882, 0x279c828f, 0xff846bb2, 0xebd1deff, 0x4d224882, 0x0a837c94, 0x0a82ec20, 0x00200822,
0x84212082, 0x21498218, 0x3483f6c8, 0xfc224382, 0x48822a87, 0x18bade21, 0x2707916a, 0xff78e9f9, 0x9a19faff, 0x66242882, 0xf9ffff68, 0x2705f267,
0x8bf0e7fd, 0xd8fdffff, 0x0022c382, 0x0982fc67, 0x0983f820, 0x82f4df21, 0x47962135, 0x2d28a882, 0xff051038, 0xcd4c96ff, 0xca28c982, 0xff89053e,
0x281cffff, 0xcc202682, 0xff211082, 0x204c8299, 0x052c46fd, 0xefc7f922, 0xfa224782, 0x82825819, 0x8218a421, 0x66662620, 0x0f0600ff, 0x274782e0,
0xff1f85fc, 0x3aff0800, 0x35821982, 0x2005134b, 0x22878208, 0x82800300, 0x4d002816, 0x00ff7b94, 0x82142e21, 0x6bb22266, 0x2c0a8285, 0xff055338,
0xcc4c0601, 0xb32effff, 0xe8561833, 0x44fb2136, 0x26067443, 0x00ff8bcd, 0x83333307, 0x82342004, 0xcc08220a, 0x053744cc, 0xf8205d82, 0x07218d83,
0x2e881833, 0xffff2407, 0x823333f7, 0x431683c3, 0xf1821474, 0x7443f820, 0x8b333c05, 0xffaf0e08, 0x9a194801, 0xff15e4f7, 0x9a99eb00, 0x99dafeff,
0x8193059a, 0x830400ff, 0xb3f322b8, 0x22498232, 0x82ce4cf3, 0x74e820fe, 0xfc211913, 0x0cb04a74, 0x80150023, 0x26a38200, 0x0800801a, 0x741700ff,
0x0c2205a6, 0x538232b3, 0xfff85326, 0xce4c0c00, 0xf122c582, 0x1c829527, 0xbaea2308, 0x2501ffe1, 0x5b056666, 0x023c00ff, 0xffff0590, 0xff9a19f4,
0xcccc0d00, 0x190300ff, 0x1400ff99, 0x0e83d823, 0x00ffcd25, 0x8278090b, 0x830d2030, 0x0a0b22eb, 0x8219823e, 0xfdff261e, 0x00ff12c3, 0x22fa830a,
0x827433f2, 0xe6272f1e, 0xcfffff66, 0xb205e23a, 0xc53000ff, 0x3682051e, 0x8c204f85, 0x59823083, 0xee3c0222, 0x25838182, 0xc2f5f422, 0x0e203082,
0xff269682, 0xff88f6f4, 0x45830200, 0x28dceb22, 0xff2a8285, 0x083433f2, 0xc3ffff5b, 0x448270fd, 0x66664f2f, 0xff15e4fb, 0x008088ff, 0x4c9c00ff,
0x83a782cc, 0x63ff300a, 0xf70534b3, 0xaf0e0683, 0x994201ff, 0x8294f79a, 0xcceb3922, 0xffff8bcc, 0x896766a9, 0x33c8ffff, 0xe1083733, 0x60c08b07,
0x088b56b6, 0x490d3b70, 0x612111c6, 0x07c64948, 0x1805735c, 0x4909dcbc, 0xfb220a06, 0x5e820794, 0x1399c618, 0x1844f721, 0x290c7dac, 0x00200700,
0x0700ff8b, 0xe5829af9, 0x66e61022, 0x830e416e, 0x61ee2c6c, 0x6b088b48, 0xeb14f706, 0x8224fb05, 0xf7ff221f, 0x82de8220, 0xffff2337, 0x0982e0f8,
0x00e00825, 0x93ab088b, 0x82198255, 0x19ce2c55, 0xffff079a, 0xff00c0f5, 0x8260fdff, 0x5ef52304, 0x045fffb8, 0xe1f42105, 0xff245982, 0x3433c2ff,
0xcc23ac82, 0x41b7cc4c, 0x00230554, 0x8266663a, 0x9d240837, 0x15eb6666, 0xcb4b064b, 0x79ffff05, 0x8b079a99, 0xffffb656, 0xc066e6d5, 0x8bc0088b,
0x2a00ffb6, 0xc08b9a19, 0x86282782, 0x4b076666, 0x3b43054b, 0x87204e7a, 0x840020b7, 0x0d187ab2, 0xff20c482, 0x0820d983, 0x21089e71, 0xe08566e6,
0x82f7ff21, 0xdb082268, 0x2b5edc8b, 0x01ff2f0e, 0xff9a19bd, 0x66666d00, 0xf1236882, 0x82abe23a, 0xc5fa2bf6, 0x0b00ff1e, 0xffffce4c, 0x1b8299f4,
0x7b4c0721, 0x8b2c0547, 0x9dfeff08, 0xff065c8f, 0x1f85f3ff, 0xf422af82, 0x2047f6a8, 0xfaff2305, 0x2b828fc2, 0x0832b328, 0x3af1ffff, 0x42826be1,
0xdf6ffb2b, 0x18f6ffff, 0x0000ff10, 0x271582cc, 0xff9e6ff4, 0x00e00500, 0xcf211382, 0x0503615c, 0xff290a84, 0x0e2d0a00, 0x73faffff, 0x21098234,
0x61828f02, 0x00000026, 0x0504fb42, 0xf7255e82, 0x00fffc29, 0x28048207, 0x04d6f8ff, 0xd60800ff, 0x06ef4104, 0x8b87d622, 0x79201883, 0x0a821d84,
0x08291982, 0xf70704f7, 0x04fb0694, 0x25389607, 0x191f00ff, 0x4583069a, 0x3c848820, 0x3c8b7820, 0x0100ff27, 0x04f78acc, 0x21838205, 0x1e82f6e8,
0x842b0a22, 0x8f21ad82, 0x260482e0, 0x00ffbade, 0x83203009, 0x820a86b2, 0xacc724d1, 0x820b00ff, 0xfbff231e, 0x1e820080, 0x0866e62a, 0x00ffe2fb,
0x159a99d2, 0x1d263c82, 0x00ffe07a, 0xd0823310, 0x829e1821, 0xcc17283c, 0x0e00ffcd, 0x82081ec5, 0x213b2498, 0x82bb0548, 0x02002484, 0x8364f75b,
0xffff2409, 0x84fba5fd, 0x00002809, 0x00ff6202, 0x8266e6c4, 0xb0183184, 0xf2ffffd0, 0x00ff9a19, 0xffce4c0f, 0xe27ae6ff, 0xe2203b82, 0x2305ad4a,
0x14fb98fd, 0x302b2282, 0xff06ae07, 0xdafcffff, 0x820514f7, 0xb0462573, 0xc6ffffa4, 0x00350482, 0xff5c4f39, 0x5c4fb9ff, 0xffff088b, 0x06e0fdbf,
0x33baffff, 0x223e8233, 0x8414aec6, 0x820a8221, 0x22ce821d, 0x840c0400, 0xf82f2249, 0x22248252, 0x825a22ff, 0xaf0e2549, 0xb35601ff, 0x5f23b982,
0x8215cc4c, 0x83c020fc, 0x82a020dd, 0x83032004, 0x200b24e7, 0x47978b00, 0xff2207cf, 0x178240e3, 0x21821c20, 0xa6ddff23, 0x226d8366, 0x8200c0ee,
0x82f0205c, 0xf9ff2329, 0x51500020, 0xff360805, 0x084801f5, 0xcceeffff, 0x1d00ffcc, 0xffffb99e, 0xffcdcce0, 0x99191500, 0xe6daffff, 0x56088b67,
0xffff608b, 0x8ba4f0d4, 0x898b0856, 0x800000ff, 0xfeffffbe, 0x09822050, 0x89002022, 0xda283882, 0xff7e0080, 0x47e1e4ff, 0x2107be4b, 0x4f8221d6,
0xe300002d, 0xcaffff26, 0x00ff3cff, 0x82abfe2a, 0x9a192740, 0x003500ff, 0xd6828b00, 0x9a19ef27, 0x2c00ff06, 0x228b8240, 0x82d92200, 0x83232017,
0x82108396, 0xe800271c, 0x2900fff6, 0x878266e6, 0x1a829920, 0x66e62124, 0x1e47ff62, 0x82de2006, 0x360025b7, 0x2e15ce4c, 0xda82ae82, 0x83aaff21,
0x5e472810, 0x00ff8bb8, 0x83e2fa5d, 0x843620f6, 0x206b83f1, 0x28f68231, 0x1e053000, 0xe61a00ff, 0x25578266, 0xff006007, 0xb2820400, 0x0a00ff24,
0x5748b8fe, 0x01002305, 0xc1829082, 0x7a54f436, 0x250200ff, 0xf4ffff1e, 0x00ffce4c, 0xff002001, 0x6666f3ff, 0xff29aa82, 0x8b9a1996, 0xaaffff35,
0x2363821e, 0x48e195ff, 0xff226382, 0x498280f7, 0x82a00021, 0x83f72024, 0x83012063, 0x4309822e, 0xfb200731, 0x05211483, 0x206282be, 0x277283fb,
0xff482105, 0x00a0faff, 0x0b221e82, 0x82826666, 0x0d201e83, 0x0220a183, 0x0b214783, 0x236783e6, 0x48e13400, 0x2a26c482, 0xffff5238, 0x6b83ded4,
0x8421cb21, 0x82fc206b, 0xffff2142, 0xff203282, 0x75830985, 0x1447fc20, 0x829e2005, 0x83f52061, 0x831220ee, 0x83ed201e, 0x210b2309, 0x67827448,
0x48613625, 0x820300ff, 0x31002739, 0x00ffec51, 0xaf82e019, 0x68662127, 0x1e2900ff, 0x271e82b8, 0xff640607, 0xe27a0600, 0x4c379682, 0x0900ffcc,
0xffff9a99, 0xff34b3f7, 0x6666feff, 0xebef0e08, 0x821584f7, 0xdc3d328b, 0x3200ff28, 0x00ffd723, 0xff723d31, 0xc3f53c00, 0x223b828b, 0x8266a634,
0xd92b211b, 0xdb283282, 0xff97cc8c, 0xae07cfff, 0x13201682, 0x0926cf83, 0xff9f5238, 0x0a830500, 0x84661421, 0x9b0422d5, 0x272d8264, 0xff868b04,
0x7c9effff, 0x8721fb82, 0x2109822a, 0x3182848f, 0x82211821, 0xc22223a3, 0x31820590, 0xff1e252a, 0xfc690700, 0xc0fbffff, 0x0a229982, 0x8f828841,
0xff961e39, 0x9c990100, 0xa8ffff08, 0x00ff2646, 0x05a20210, 0x5800ff7b, 0x8405ec91, 0x00ff28a7, 0xff8ee208, 0x82ccf5ff, 0x3e0422c0, 0x06494f78,
0xe0dafa22, 0xb6203082, 0xff238182, 0x829eafcc, 0x230a8329, 0xa4503300, 0xf8220a82, 0x6a83ff7f, 0x34832020, 0x6a82cd20, 0x8506c121, 0xf7ff2e48,
0xff08b21d, 0xe1faefff, 0x6ea7ffff, 0x82298214, 0x200f8305, 0x820a82e2, 0x2225861b, 0x8283c0fb, 0x32b32139, 0x1f204383, 0x99216e82, 0x21c4829a,
0x49824c33, 0x5c0fb622, 0xcc272982, 0xffff75b3, 0x82d823b6, 0xdafa210a, 0xf8224a82, 0xef820496, 0x825c3f21, 0x76be2134, 0xe121ad82, 0x20488368,
0x22348268, 0x82b09258, 0x50f8215e, 0x1022f982, 0x74829002, 0x82846b21, 0x9a01260a, 0xf7ffffa0, 0x222a821e, 0x828a410a, 0x42c0269e, 0x680700ff,
0x206e83f6, 0x223482e4, 0x82c3b50a, 0x986e210f, 0x02342982, 0x00ff9ab9, 0xff662623, 0x00201100, 0x5c1f00ff, 0x1900ff2a, 0x0023bd82, 0x820a9715,
0x80ca21c8, 0x08261482, 0xffff166e, 0x2382e6d6, 0x66e62d32, 0x3700ff8b, 0xab0866e6, 0xff8b158b, 0xecd1d3ff, 0x04823d82, 0x2edcff29, 0x2c00ff14,
0x828b142e, 0xba09225e, 0x272582a0, 0xff743309, 0xfafe0100, 0xa126ae82, 0x0300ff48, 0x1a82142e, 0x83000726, 0xa62100ff, 0x122f4a82, 0x00ff2b87,
0xff34331d, 0x3e0a1a00, 0x841400ff, 0xabfb2c6e, 0x2800ff84, 0xffff8215, 0x826766de, 0xcc4c218d, 0xcc217882, 0x195482cd, 0x22155116, 0x82bf01ff,
0x8aff2a41, 0xff156666, 0x00200000, 0x2105828d, 0x7682cc9e, 0x1876be21, 0x2309e765, 0xff486123, 0x2606bc44, 0xffffb89e, 0x8368a6dd, 0x61f3224f,
0x21c08248, 0x11825ef4, 0x4240fc26, 0x1ef6ffff, 0xf9220982, 0x164900c0, 0x00ff2305, 0x3582e126, 0x1482d920, 0x381a0028, 0xd2ffff52, 0x35839a99,
0x0040c222, 0xcd263582, 0xffff00c0, 0x4083e1cd, 0x1e05c325, 0x82888b08, 0x90c02676, 0x41fdffff, 0x828684ca, 0x83202009, 0x85ce2048, 0x202c825d,
0x223183d8, 0x839002d7, 0xb85e213c, 0xfe2a6382, 0xffff9849, 0xb6d0f7ca, 0x5782c060, 0xff0f0124, 0x6b4806fe, 0x70fd2405, 0x8208c08b, 0x1c2a3fbc,
0xe5ffff2a, 0x00ff9c99, 0xffcc4c23, 0x0080daff, 0xff0e0898, 0x3e0a1400, 0xb38200ff, 0x63821534, 0x8bc2f523, 0x20eb8289, 0x22928280, 0x82800200,
0xa2002470, 0x8207cccc, 0x5902223b, 0x211782dc, 0x0482f6e8, 0xff36a926, 0x4c170200, 0x00236382, 0x822eb000, 0xb500271b, 0xffffff32, 0xa882ecd1,
0x827faa21, 0xee9a2609, 0x4c00ff08, 0x27fc829e, 0x0566e6d2, 0xb8b4ffff, 0x8522ed82, 0x0a8232b3, 0xdf2fff22, 0xa9246582, 0xfeffffb0, 0xff211483,
0x22c88280, 0x83e1bafe, 0x5cd3274b, 0xa8ffff28, 0x86829819, 0xcdcc2f27, 0x0f1600ff, 0x2230825c, 0x82e1bafb, 0x6a7b2156, 0x25263582, 0x0300ffa2,
0x70828aa2, 0xc4e00322, 0x0122cf83, 0x1b82a866, 0x825c5f21, 0xda6e2193, 0xd0210982, 0x21098200, 0x7c82b653, 0x21706930, 0xe29b00ff, 0x00ff054e,
0xff33b36c, 0x878441ff, 0x34b33728, 0x19f1ffff, 0x4282159a, 0xfc090222, 0x82212c82, 0x21ca820c, 0x04826c07, 0x84086c21, 0x582a21cf, 0x00221b82,
0xc582712b, 0x8292fd21, 0x7e2c2152, 0xfa210982, 0x275282fa, 0xff9a99cb, 0xa4b0e9ff, 0xbe239382, 0x82070a57, 0x0bf62e16, 0x6efbffff, 0xfdffff5e,
0xffff9919, 0x201f83fc, 0x055842fb, 0x12e3fe23, 0x21e1828b, 0x4182a6db, 0x821c3d21, 0x5ae42109, 0x842c0982, 0xffff088e, 0xffee9c3d, 0xbca45700,
0xfe224682, 0x1582a470, 0x82cecc21, 0xf668211f, 0x66218c82, 0x227b8266, 0x82cc4c01, 0xd702256c, 0x15c3f70a, 0xb6211882, 0x21228204, 0x6d829cc3,
0x82db5921, 0xec522122, 0x54212283, 0x20fd843a, 0x22498247, 0x82169a00, 0x38492116, 0x36210482, 0x212a820b, 0x3d8208cc, 0xcdcc9627, 0x976200ff,
0x22fd820a, 0x82297c00, 0xbebf2115, 0x3321e182, 0x21098233, 0x29820a57, 0x83cd4c21, 0x510421eb, 0x03224c83, 0xbb82d9ae, 0x826e4721, 0xb2fb22af,
0x235782f2, 0xf89efeff, 0x9f206e82, 0xfe22e182, 0x09829e8f, 0x824d2421, 0xa09a2187, 0xb021bb82, 0x220a8222, 0x82761371, 0x83ae20bb, 0xb33022bb,
0x28628232, 0x5129dc70, 0x5f00ff15, 0x225a8297, 0x826666a8, 0x1c032111, 0x04257482, 0x00ff862b, 0x25748305, 0xffae8702, 0x79700400, 0x84042005,
0x190632e4, 0xfdffff9a, 0x00ff5278, 0xffb81e03, 0xf0e7faff, 0x23408508, 0x9a9957ff, 0x26235d82, 0x8206717d, 0xec0022e8, 0x2858828a, 0x6b9999d1,
0x9bffff15, 0x22338299, 0x82ce4c50, 0x210a831e, 0x7c84af00, 0xccccc82a, 0x7700ff06, 0x64fb34b3, 0x02212a82, 0x23c0826c, 0x0c820100, 0xf8215d82,
0x22d28294, 0x8404f6fd, 0x3c9f21d2, 0x4f21c882, 0x21c8828a, 0x0482f49d, 0x82f26f21, 0xac3c210e, 0x3d20d282, 0xa8225583, 0x55820a57, 0xa2e5fe22,
0x7d211582, 0x211f82a6, 0x0982acdc, 0x82d0c321, 0x18e42209, 0x2225828b, 0x82ccccfb, 0x34fc224c, 0x21b082be, 0x9982fa5e, 0x7c9f0422, 0x4126b182,
0xff07a4b0, 0x4282cb00, 0x47160023, 0x22f882ae, 0x82e61000, 0xde212638, 0x330000ff, 0x6a048232, 0x4282063e, 0xb3120022, 0x2c221082, 0xa5823433,
0xcecc0022, 0x35835982, 0x66660022, 0x98200983, 0xfe225c82, 0xa9839a99, 0xc420fc22, 0x282bbb82, 0xfcffffb4, 0xffff7e5f, 0x8288b6fb, 0xdc842150,
0x2f278382, 0xffffcccc, 0x82a4f0e9, 0x836c2066, 0x19be223b, 0x2b0a829a, 0xff2a8769, 0xd82364ff, 0x4dffff05, 0x01245682, 0x15ae075c, 0x24263182,
0x0100ff54, 0x09821e65, 0x82009f21, 0x62702109, 0x0122b382, 0x61824861, 0x4d040023, 0x21c5820e, 0x0482daae, 0xff94b826, 0xea510400, 0x01229e83,
0x2283da4e, 0x82f25d21, 0xaea82132, 0x57213282, 0x2109820c, 0xe5822a3b, 0x57829620, 0x689dff23, 0x226d82f6, 0x82043601, 0xe4332115, 0x9a21da82,
0x21b9821c, 0xb983a6b8, 0x8216b921, 0xfeff2257, 0x22d582ac, 0x82e859ff, 0x0ead2116, 0xb5210482, 0x212a82f8, 0xb9825238, 0xa871ae27, 0x50cfffff,
0x27a382e6, 0xff9a19b0, 0x14ee8e00, 0xae284b82, 0xffff0080, 0x15b85e84, 0x44054c44, 0xff23055c, 0x82c856fe, 0xa6fd2252, 0x23378226, 0x0732335d,
0x84250c83, 0xfdffff5a, 0x205883fb, 0x2274827a, 0x8286f6fd, 0xfeff23b0, 0x1b82e2ba, 0x92b8fe22, 0x97218b82, 0x216a8286, 0x42822e32, 0x82f25121,
0xb8b42737, 0x7a00ff52, 0x6482cd4c, 0xb89e4c27, 0x192d00ff, 0x220a8299, 0x82a49001, 0x584e2120, 0xb3212f82, 0x21048232, 0x34823433, 0x8bcecc2f,
0xff2f0e08, 0x77fe0700, 0x802601ff, 0x238c8200, 0x8b755301, 0x5c212882, 0x201e826b, 0x222882a6, 0x82ba4901, 0x563b3209, 0xc400ff08, 0xfffff007,
0x05781e8b, 0x3320ffff, 0x319b8334, 0xff4e42f6, 0x1058f8ff, 0x07f9ffff, 0xf7ffffee, 0x9b8361a5, 0xdf4ffd22, 0xfd219b82, 0x2258823d, 0x82a0b800,
0x256621bc, 0x94215182, 0x279b82f2, 0xffcdcc67, 0x52785c00, 0xec2d4282, 0x00ffd763, 0xffe0ef0b, 0xb8def3ff, 0x227382a1, 0x82cccc17, 0x67c52064,
0x05200551, 0x032ca483, 0x00ff27d1, 0xff9a9902, 0x502d0400, 0x01295982, 0xffbe34a2, 0xcc4c2400, 0x265f8315, 0xffffce2c, 0x82e4a5fe, 0x922d215f,
0x4d210482, 0x210e820e, 0x64822466, 0xdad93927, 0xd989ffff, 0x27648216, 0xff48e139, 0x34337600, 0xfd220a82, 0x85825c4f, 0xff284c82, 0xfff6a8fe,
0x32b30300, 0x01237382, 0x820866e6, 0xcc022206, 0x211b82ce, 0x6d82ec51, 0x8292cd21, 0x1fa52104, 0x9e210e82, 0x218e8234, 0x7d8219a5, 0x68e6642d,
0x0a00ff05, 0x00fff5c8, 0x82540e06, 0x333321b5, 0x05214082, 0x580982e4, 0x0b200568, 0x0c820682, 0xff852b30, 0x1cfafcff, 0xf30900ff, 0xf9ffff33,
0x4086f8f3, 0x199bff23, 0x2140829a, 0xec827a03, 0xb85efe22, 0x66215b82, 0x21b18268, 0xc6833433, 0x82323321, 0xcc0d2825, 0xdbffffcc, 0x821534b3,
0x211683ea, 0x10830300, 0x6666fd22, 0xfa222182, 0xd482ce4c, 0xb1683a20, 0x40e83205, 0xf3ffff00, 0xff7548e1, 0x0a57ecff, 0x0ff4ffff, 0x201c825c,
0x23bf8267, 0x0080a3ff, 0x6484e683, 0x84d86321, 0xffff235f, 0x58824cff, 0xcc4cfd23, 0x2225828b, 0x8233b3f7, 0x4cf8234e, 0xf28292cd, 0x83b30921,
0xccdf2ade, 0x58f707cc, 0xe67400ff, 0x20a08266, 0x232c8201, 0xcecc0000, 0x0023a085, 0x82cc4c00, 0x2b3b8309, 0x01ffaf0e, 0xff34b34c, 0x6626ac01,
0x0122a282, 0xed8266e6, 0x827c7421, 0x220983e8, 0x821e6508, 0x9a99210e, 0x002a6382, 0x8b008007, 0xfcffff92, 0xc982e27a, 0xab828020, 0x5004fa21,
0xff24069d, 0x8480e9ff, 0x34286482, 0xff069a19, 0x32b30c00, 0x0c2d8482, 0xffffce4c, 0x94a4f0fa, 0x00ff0882, 0x254b8211, 0x5c0feeff, 0x1f82c305,
0x76820d20, 0x0a00ff22, 0x9c187382, 0x73210a2e, 0x22d31807, 0xb3ba2318, 0x4a820634, 0xe1264283, 0xfb050080, 0x6a82cb04, 0x9a191726, 0xa68a00ff,
0x7320da83, 0xff23cb82, 0x189ad9d3, 0x82175798, 0x28f72c58, 0x0700fff6, 0xffff3433, 0x180ad7f8, 0x2114af7e, 0xb382f628, 0x0ad70823, 0x82068508,
0xcccc2128, 0x37823282, 0x33f7ff2b, 0x6b088b34, 0xe63fffff, 0x22628266, 0x649a1920, 0x6b2017a5, 0xc418a682, 0x00200967, 0x09fc5718, 0x7300ff28,
0xff073433, 0xb482e7ff, 0xb3f3ff26, 0xe5ffff32, 0xf9200483, 0xe3200e83, 0xff245d83, 0x3333e3ff, 0xe433a782, 0x00ffcdcc, 0x7366e606, 0x4c0c00ff,
0xffff08ce, 0x8acccc8c, 0x0c4a616d, 0x45746d84, 0x226d8c08, 0x823333e6, 0x3ae32b6d, 0x0a00ffe1, 0xffff67e6, 0xfe8268e9, 0x66661822, 0x3226d582,
0x1f00ff2d, 0x5a823433, 0xab1efc32, 0x800f00ff, 0xffff0500, 0xff94b6fb, 0x32331100, 0x6c202e82, 0x11208082, 0x00292982, 0xff602511, 0x9a190500,
0x24198208, 0x00ffd723, 0x31148403, 0xffff4861, 0xff9a99f5, 0x3e4a0400, 0xe6eeffff, 0x19820866, 0x1482e120, 0x6866f023, 0x260a8205, 0xffff5c8f,
0x82ccccf1, 0x29c982be, 0x66e6f6ff, 0xae0e00ff, 0x25828b15, 0x7ad4cd36, 0x7000ff06, 0x054a3433, 0x00ffef0e, 0xff156e12, 0x3333c000, 0xad220582,
0x9382ec91, 0x82cdcc21, 0x83a42088, 0x66bb2235, 0x220a8266, 0x82b8def5, 0xcecc256a, 0x210700ff, 0xee205f82, 0x0e225483, 0x4a833333, 0x34b3de39,
0xf6ffff06, 0x00ff4280, 0xff00801a, 0xbebffaff, 0x00ff8ba7, 0x8248e11c, 0x6b2a2267, 0x27fb8285, 0xff995988, 0x67665700, 0xe8224882, 0xe7823333,
0xff84eb24, 0x2c83e0ff, 0x4d83fe20, 0xcd4cea2b, 0x8cedffff, 0xffff08cc, 0x2214838a, 0x829a998b, 0xa3f32229, 0x23dd8654, 0x777dff08, 0xfe203482,
0x02380482, 0xff083333, 0x20c52c02, 0xe6ddffff, 0xffff1567, 0xffcc4c9b, 0x00403200, 0xef263082, 0x00ff00c0, 0x82822008, 0x0983f520, 0x00a01022,
0x12228682, 0x86820040, 0x66a62428, 0x3f00ff07, 0xf48270fd, 0x821e1c21, 0x61e928ca, 0x00ff0548, 0x8270fd05, 0x1e0521af, 0x19263682, 0xfcffff9c,
0x09829a99, 0x2205e369, 0x8298191e, 0x190b222b, 0x26438298, 0xff20050c, 0x82e00600, 0x6105265d, 0x0a00ff48, 0x275283e0, 0xffb85e0e, 0xb89e1c00,
0x5f214683, 0x201582c0, 0x2b5682de, 0xff40e0fe, 0x48e10c00, 0xc0f8ffff, 0x09210982, 0x272982c0, 0x9082b5ff, 0x5e6300ff, 0xff232982, 0x8244ebf9,
0x90022d61, 0x66f7ffff, 0x0400ff68, 0x8b8100c0, 0x1223f582, 0x82060080, 0x66e62232, 0x2084828b, 0x22c08280, 0x820060f7, 0x01fb2223, 0x25bb8248,
0xff34b33c, 0x6883cdff, 0x82c5ff21, 0xe7ff21ec, 0xfa23ec84, 0x82884220, 0xa1f7212d, 0x05239082, 0x8288bedf, 0x833a2028, 0x1ee72128, 0xff216783,
0x288c82ff, 0x05666693, 0x00ff438b, 0x2ee58323, 0xc79a99bc, 0xffff0863, 0xff66663c, 0x8240f9ff, 0x336b2163, 0xdd215782, 0x200982c0, 0x225683a6,
0x82b81eec, 0xe0f7251e, 0xfeffff42, 0xfa221e83, 0x92820641, 0x8300c021, 0x829e2064, 0x0000271a, 0xffff6bed, 0xcb8242f6, 0xabff0728, 0x0900ff83,
0xbb82b8be, 0x19f30132, 0x00ff069a, 0x8b703d3f, 0x5c3800ff, 0x2f00ff28, 0x0021c082, 0x22048302, 0x82cc4c3f, 0x4f032296, 0x8314825c, 0xe621086c,
0x00ffcccc, 0xff9a192b, 0x9c19d6ff, 0xffff08a0, 0xff66e6a9, 0x66a6df00, 0x2d00ff15, 0xffff72bd, 0x23e584f4, 0x800040fd, 0x84836982, 0x821ef821,
0x61f421c7, 0x0022e382, 0x308248a1, 0xe0faf224, 0x0a8200ff, 0xf3ffff3d, 0x00ff9819, 0xffb8de0b, 0xce4c0400, 0x211100ff, 0xf80e0848, 0x1701ff94,
0x82159a19, 0x3bfe2cb2, 0xffffffe6, 0xffff24fa, 0x82385efe, 0x32f22109, 0x3b210982, 0x224282e6, 0x820a17ef, 0xca2125bb, 0x66edffff, 0x04227d82,
0x0982c4a0, 0x82ce8c21, 0xadff23ca, 0x3a829a59, 0x6626e927, 0xd4b5ffff, 0x230a827c, 0x081ec5e0, 0xe4220682, 0x3282c2f5, 0xff4aec30, 0x2a9ce4ff,
0xb41300ff, 0xeafffffe, 0x4c82142e, 0xe27aec30, 0x5ef9ffff, 0xebfffffa, 0xffffae87, 0x5682a1fc, 0xb85eeb22, 0xa8224c83, 0x7782ecd1, 0x0506ff27,
0x68d7ffff, 0x210482f6, 0x0a829082, 0x60e5f922, 0xe52b3082, 0xfdffffa2, 0xffffd92e, 0x82ce17f8, 0xd7f7225f, 0x2766830a, 0xff1e05f2, 0x773e0700,
0xe1214782, 0x23168248, 0x08ec11ec, 0x1225ed82, 0xdeffffe4, 0x255d823e, 0xff0080e4, 0xb482e5ff, 0x19dfff23, 0x20628399, 0x236982f0, 0x85f0ffff,
0x062c3682, 0xffff140e, 0xffd763f4, 0xb8be0b00, 0xf4229882, 0x0a823373, 0xffc2752a, 0xe1bafaff, 0xd90e00ff, 0x0023d982, 0x8234f30e, 0x04002367,
0x5682b0f2, 0x20829320, 0x7cf4042c, 0x1e0100ff, 0x0400ffb9, 0x3582d4d8, 0x7228fb2b, 0xe3feffff, 0xfbffffd8, 0x2280820c, 0x82d26dff, 0xb0122109,
0xd5226b83, 0x118299d9, 0x1f05ef2d, 0xa32400ff, 0x00ff8bd6, 0x832adc16, 0x6e21314c, 0x1b00ff14, 0x00ff6626, 0xfff6e81a, 0x713d2100, 0x00252d82,
0x8b52f812, 0x25de828f, 0x00fff0c7, 0x1284fd0d, 0xb4280822, 0x072c3582, 0x00ff8ae1, 0xff9ecf02, 0x9a190600, 0x1a210482, 0x28e2825e, 0xffec9128,
0x52782800, 0x20968205, 0x23448208, 0x0518c456, 0x3f202b82, 0x1b262183, 0x00ff3eca, 0x5f82e62b, 0x47612327, 0x662300ff, 0x21308266, 0x0a822121,
0x5c0f2122, 0x42261982, 0x1000ff90, 0x0982ae87, 0x835c4f21, 0x822b2079, 0x260c8206, 0xffffe27a, 0x825278ef, 0x281c2690, 0xf0deffff, 0x213583a4,
0x0a82ae07, 0x82343321, 0x23598230, 0xccccd4ff, 0xd439d182, 0x0e08cecc, 0x995001ff, 0x2301ff9a, 0xff150080, 0x32b3f6ff, 0x660800ff, 0x24fa8266,
0x00ffce4c, 0x2319820b, 0x00800400, 0x33210982, 0x20458234, 0x200a831e, 0x05cf5f4c, 0x00214682, 0x25f6830c, 0xff98190f, 0x09830500, 0x68e60b22,
0xba21f782, 0x262982e0, 0x7e323315, 0x821300ff, 0xf0ff2224, 0x82a68302, 0xedff2339, 0x1a829a99, 0x85820920, 0xcff5ff24, 0xc568ff5c, 0x4ff02105,
0xf4200982, 0xff216882, 0x2ddf83f8, 0x6666bcff, 0xffff055e, 0xff34b3f5, 0x3f83f9ff, 0x8233f221, 0x4c022293, 0x829d83cc, 0x830820bf, 0xfeff2189,
0x00211e82, 0x82198201, 0x201e8209, 0x85288301, 0x9a192713, 0xff068b08, 0x1182d9ff, 0xe62b0023, 0x20d48266, 0x207b83fb, 0x220483f5, 0x8232b3f3,
0x22d98254, 0x82ccf3ff, 0x283f82de, 0xfbffff08, 0x00ff66e6, 0x4af38400, 0xfb2308b3, 0x838b34b3, 0x33b3221a, 0x2520828b, 0xffff33b3, 0x8082ccff,
0x67e6fb22, 0xc5830982, 0xcd234082, 0x82feffff, 0xf3ff2145, 0x00211e82, 0x563a8206, 0x0a220563, 0x39820080, 0xcdcce027, 0xc74b00ff, 0x20c982ae,
0x201f83fb, 0x8229820c, 0xff332824, 0x44960e00, 0x820c00ff, 0x030028ef, 0xff081c0f, 0x82331300, 0x2b042214, 0x260982c6, 0x00ff9919, 0x82f83302,
0x05e64809, 0x06821320, 0x21064441, 0x2a82ccfd, 0x834c1221, 0x3ad42183, 0x0d200a82, 0xfc23ce83, 0x82ffe4f0, 0xff342854, 0xbc69f1ff, 0x83faffff,
0x33f322a2, 0x217e8232, 0x1482b3e1, 0x5238b422, 0x50217e82, 0x26558299, 0x1552f84a, 0x830b00ff, 0x450727e9, 0x0f00ff20, 0x2f829a19, 0xff0a1724,
0x74820500, 0x17f3ff23, 0x06dd410a, 0xe1b3ff24, 0x54490548, 0x84f42006, 0x824c20f2, 0x66f425e7, 0xf6ffff66, 0xff21c782, 0x20fc84f7, 0x205e83fe,
0x214d82fe, 0x1483feff, 0xcc21098a, 0x857d82ce, 0x203d8329, 0x21dc82f2, 0x2d83fdff, 0x0482f520, 0xe6060023, 0x231e8266, 0xb8846bbc, 0xf4269882,
0x00ff299c, 0x88829907, 0xa430fd22, 0xb0209282, 0x09270482, 0x00ffd723, 0x82a4300a, 0x8710258d, 0x1200ffae, 0x00227882, 0x28821c13, 0x70fd0f2f,
0x331500ff, 0x8b089834, 0x0101ff06, 0x26df8233, 0x15ae8747, 0x82fcffff, 0x0b002b67, 0x00ff6766, 0xff686603, 0xee830c00, 0x13830920, 0x00800626,
0x4400ff08, 0x00236082, 0x82cecc2d, 0x830b20d4, 0xb307220a, 0x836b8232, 0x82fc20ba, 0x05002143, 0xff231382, 0x823233f3, 0x820a2029, 0xe7ff226b,
0x204382e6, 0x233e8206, 0xffffe5ff, 0x22064d6d, 0x82cdcce4, 0x33012a1e, 0xf2ffff32, 0xffffcdcc, 0x2c3882f5, 0x9919f6ff, 0xb3f2ffff, 0x3b088b34,
0x82088506, 0x00803118, 0xe60900ff, 0xfdffff67, 0x00ff9899, 0x0899190d, 0x4c214482, 0x829a83ce, 0x4cff2214, 0x210982cc, 0x1382cd4c, 0x839a1921,
0x08cc2b09, 0x95fb078b, 0x801e00ff, 0x38821500, 0xf9205b83, 0x03204283, 0xf3208983, 0xdc82d282, 0xf4212d82, 0x82478499, 0xfcff2333, 0x3d8234b3,
0x09824782, 0x09833320, 0xfc201e82, 0xfd201e84, 0xf220c883, 0xf5207b83, 0xa3824282, 0xf2221e82, 0x9e8633b3, 0x8b00c022, 0x21219e82, 0x05067eb1,
0x39010023, 0x219e82b4, 0xd6823333, 0x6d870231, 0x331b00ff, 0x0600ff33, 0x00ff44cb, 0x8201001a, 0xd7632623, 0x191800ff, 0x271e8298, 0xff3e8a05,
0xcecc0c00, 0x27053341, 0xcccc0300, 0xa60b00ff, 0xf822cc82, 0x1e82ce4c, 0x0a97442b, 0x33d2ffff, 0xffff0532, 0x227683ed, 0x189a999f, 0x180e7188,
0x21089162, 0x8d18075b, 0xb58209c7, 0xc483f520, 0x4021a08f, 0x227c8200, 0x828b34b3, 0xcc4c239c, 0x3182bb08, 0x820d0021, 0x0a002227, 0x193719c0,
0x06db240c, 0x848b14f8, 0x82cc2067, 0x05be4b2a, 0xcc206794, 0x6785f482, 0x840da741, 0x21679353, 0x808434b3, 0x8b277f84, 0xfc06db08, 0x4014fb14,
0xfb2cccd0, 0x8b155b6c, 0x33f7ffff, 0xf8ffff34, 0x0d382419, 0x33201583, 0x2306ee5f, 0x34330700, 0x22061c60, 0x8507a4f7, 0x09366009, 0x0800ff26,
0x088bcdcc, 0x8305bd4c, 0x854c8516, 0xfb082557, 0x8b4b07a4, 0xcd20648a, 0xf7226986, 0x3f193333, 0x648b0d01, 0x64858420, 0x6488cd20, 0x078b9218,
0x16856b85, 0xcd20b182, 0x33266484, 0x0784fb08, 0x658b14f7, 0x6588cc20, 0x65853420, 0xe184bf82, 0x34206597, 0xca825385, 0xca90cc20, 0xee19658a,
0x2b238867, 0x82152cfb, 0x99fb27fc, 0xfcffff9a, 0x04866666, 0x9999fb2a, 0x0683088b, 0x19f7ffff, 0x12836818, 0x82076b21, 0x19f72231, 0x82ea829a,
0xf8ff3304, 0x00ff66e6, 0x8b67e608, 0xff069308, 0x67660400, 0x917eff8b, 0x215a8508, 0x31837b08, 0xe5206397, 0x08099518, 0x200a9861, 0xbf9518ab,
0x05a47707, 0x00801523, 0x05bb77ff, 0xff2b639a, 0xcd4c2c00, 0xffff1523, 0x8233b3f3, 0xa0fb22bb, 0x217e8200, 0x398260fc, 0x0a830320, 0x60040025,
0x839b0800, 0x82042057, 0x85a284e8, 0x280e8204, 0x00ff088b, 0x0600400c, 0x22bb8291, 0x82486104, 0x249483c0, 0x00200300, 0x25118208, 0xff004001,
0x0482ffff, 0x82010021, 0xfeff224d, 0x825282a0, 0xff083313, 0xb81eeaff, 0xc01200ff, 0xffff0500, 0xffcdacf7, 0x24820700, 0x19fbff28, 0x0a00ff99,
0x39823433, 0x32b30a22, 0x15264083, 0xff9e3433, 0x76831100, 0x4c551720, 0x330c2105, 0x9183a282, 0x9d822482, 0x82ffff21, 0x75fa19a7, 0xffff2109,
0x20102c41, 0x25a2829a, 0xcdccf3ff, 0x26838506, 0x82b89e21, 0x22a28331, 0x83e0fcff, 0xfeff22a2, 0x209382c0, 0x86048200, 0x21a7849d, 0xd68200c0,
0x48e11526, 0x40edffff, 0x0021a282, 0x20158308, 0x222482f8, 0x82e00400, 0x45f520d1, 0x612105bf, 0x32c88248, 0xffcdecff, 0x1ec5eaff, 0xeeffff78,
0xffff9a99, 0x8233b3e8, 0x73002e70, 0x00ff33b3, 0x15343363, 0xcc1400ff, 0x173b41cc, 0xff069b23, 0x051d5600, 0x47420320, 0x848b2006, 0x225782c1,
0x820040eb, 0x05e97935, 0x821ef321, 0x80de21b5, 0xe8217982, 0x229382a1, 0x82b8dee6, 0x0cfd2220, 0x21ca82cc, 0x3082aec7, 0xff34b325, 0x8219feff,
0x80fb227c, 0x207c8200, 0x820683ff, 0x27af8316, 0x8800e001, 0x400300ff, 0xff27d082, 0xff66a6e8, 0x82131900, 0x82f3202c, 0x2100212c, 0xff232c82,
0x82802300, 0x22a3bd1a, 0x5eb89eeb, 0xff2705f2, 0xff4821ec, 0x82400a00, 0x5eef21a8, 0x0026a382, 0xffcc4c0a, 0xb3821000, 0x82050021, 0x130038a3,
0xff8b66e6, 0xce4c1400, 0xf72f0e08, 0x0b01ff74, 0xff159a99, 0x62669400, 0xab3005c4, 0xf1ffff86, 0x00ffa4b0, 0xff7a540e, 0x5c4feeff, 0x0683ca83,
0x4d181685, 0xfb240a18, 0x06b30724, 0x20051e4f, 0x83f98293, 0x80073264, 0xfdffff00, 0x2b08ce4c, 0x660400ff, 0x04f71566, 0x226a8207, 0x8884ab11,
0x957c2053, 0x8b842153, 0x54311782, 0xffff087c, 0x0734338f, 0xa80200ff, 0x0000fff6, 0x22b7824c, 0x829a9902, 0x2a578209, 0x71bd0200, 0x06c3088b,
0x827b34f7, 0xb01122ae, 0x225982a4, 0x835c4f0e, 0x857c20a8, 0xeb082164, 0x2b206dae, 0x17155818, 0x15ebeb22, 0xf488a785, 0x4b20a087, 0x54213284,
0x8276827b, 0xf1ff257b, 0x00ff85ab, 0x08208b83, 0x16850685, 0x570e0023, 0x2192830a, 0x168216ae, 0xe0fa3f22, 0xb3219684, 0x824c8234, 0x68d61804,
0xffff290a, 0xff66e6de, 0xcdcc69ff, 0xf3356e82, 0x00ffec91, 0xffe3a507, 0x707df6ff, 0xa90b00ff, 0xfbffff79, 0x34df820f, 0x08a4f00d, 0xaef5ffff,
0xf9ffff16, 0xffffcd0c, 0x879899f3, 0x056549ff, 0xf8ffff25, 0x828be85b, 0x60c52605, 0x800100ff, 0x26218283, 0x00ffc235, 0x827b7402, 0xc2022778,
0xf7ffff90, 0x0f82ce57, 0xf6226583, 0x29820080, 0x9a19f623, 0x27068208, 0xffe23ad8, 0x00c0dfff, 0xc52a0482, 0xd8ffff1e, 0x088b0040, 0x2e820643,
0x08a26e18, 0x83070021, 0x0800230a, 0x2f8204d6, 0xcc080023, 0x10e946cc, 0xff06d325, 0x84171600, 0xf6e821e8, 0xe821fe82, 0x82f382f6, 0x85082010,
0xffff2406, 0x849a19ee, 0xffff2816, 0x8b66e6e9, 0x8214fb08, 0x83e92060, 0xeeff2325, 0x1e840a17, 0x1a828982, 0xffff0826, 0x070a97c0, 0xde320c82,
0xff9bb8de, 0xec91e0ff, 0xcf1a00ff, 0xecffff5c, 0xc882146e, 0xa4303530, 0x57d9ffff, 0xffff050a, 0x073433b2, 0x788274f7, 0x0a175527, 0x2600ff07,
0x2096824c, 0x284c8218, 0x34b31900, 0x542a00ff, 0x227b827c, 0x82e07a30, 0xe8402c34, 0xffff07f6, 0xff9a99f6, 0x8280faff, 0x82f520e7, 0xfcff218c,
0xf4200e83, 0x22059255, 0x8234b3f3, 0x83f42071, 0xcc0322d8, 0x292a82cd, 0x08916666, 0xff30fb0e, 0x2a82ba00, 0xe5bf0132, 0xffff1594, 0xff66e696,
0xc0dffcff, 0xffaeffff, 0xa4220082, 0x33824060, 0x9bd99625, 0x839cfb08, 0xc0f122af, 0x20e18200, 0x283d824c, 0x95b8def8, 0x210a00ff, 0x2c7a8248,
0xff33f318, 0x00801200, 0x0600ff05, 0x2b2082a0, 0xff420005, 0x00600900, 0x0500ff8a, 0xf9298a83, 0xb608bebf, 0xb0cfffff, 0x202183a4, 0x229c8240,
0x82c0bff9, 0xb81e213c, 0x0620bd82, 0x00230f82, 0x82404006, 0x9e282747, 0x2d00ffb8, 0x25835ccf, 0x47826020, 0x82400721, 0x3e0b2147, 0x61242584,
0xf8ffff48, 0xff234782, 0x82a12800, 0x30d2210a, 0x21214b8e, 0x214b8348, 0x8282703d, 0xb6244b82, 0x4f3000ff, 0x7f834783, 0x47825d82, 0x48610923,
0x821c828c, 0xfaff2362, 0xb584beff, 0xffff3423, 0x24b582ed, 0xf5ffff95, 0x277982de, 0xffcc4c11, 0xc4200700, 0x21084882, 0x0884400e, 0x001001ff,
0x00ff07d0, 0xff900200, 0x1e056c00, 0xe6a6ffff, 0x5700ff66, 0xffff8420, 0x3b823393, 0xf2bffc26, 0xc5ffff08, 0xff2e1482, 0x156c1a20, 0x61eeffff,
0xffff8b47, 0x807085f2, 0x23468205, 0x0848a111, 0x46230684, 0x820e00ff, 0x230485c1, 0x8b52b810, 0x06837f82, 0x0f00ff24, 0x7418ae47, 0x5e2108a6,
0x232d82ba, 0xb85eeeff, 0x99211182, 0x8216849a, 0x66662654, 0x14f7088b, 0x825f848b, 0xf1ff21e4, 0xd16ec282, 0x205f9506, 0x17f06711, 0x0e2b5f99,
0x3802ffaf, 0x00ff9819, 0x8233b3fb, 0x83e92068, 0x9e1637ab, 0xffff05b9, 0xff8c77fb, 0x72880400, 0xf9f9ffff, 0x0200ff18, 0x0982fa7e, 0x820c9721,
0xf9ff21c0, 0x0c820682, 0xff50f826, 0x0681fdff, 0x78212a82, 0x27048252, 0xff088e77, 0x9458faff, 0x10200483, 0xeb284082, 0x00ff48e1, 0x05b81e14,
0x98344682, 0x1700ff94, 0xffffc275, 0xff82c0f8, 0xa4701800, 0x2eefffff, 0x10227582, 0x34827ad4, 0x00c0d227, 0x402d00ff, 0x32348200, 0xff6c27e1,
0x1ac41f00, 0xe6d4ffff, 0x1100ff66, 0x835f5278, 0x19d33271, 0xffff8b9a, 0xffccccd5, 0xae87eeff, 0x4ce0ffff, 0x210482cd, 0x3c829042, 0x3333f822,
0x28285682, 0xffeb05f6, 0x32f3cfff, 0xf2234382, 0x8207a430, 0xed21082d, 0x00ffce0c, 0xff20b007, 0x3273edff, 0x660d00ff, 0xf2ffffea, 0xff080a97,
0xf6283100, 0xdcceffff, 0x2099822a, 0x228a830d, 0x82cd8cf2, 0x34f3216a, 0x97254782, 0x1300ff0a, 0x05b76226, 0x8b0cc222, 0xc126ba82, 0x0000ff06,
0x0982fd76, 0x8202ab21, 0x15ec2209, 0x24d58408, 0xe1ebffff, 0x866c8247, 0x829420f0, 0xa4f6240a, 0x82ffff9c, 0x277b8204, 0xffeac6f0, 0xe05a0900,
0xa3210f82, 0x273082d6, 0xffb89e16, 0x4861e9ff, 0x04217182, 0x2c7c8288, 0xff8e77fb, 0x66060600, 0x80fdffff, 0x21098282, 0xe582f668, 0x82060021,
0x260c8206, 0x00ffae07, 0x827c7f02, 0x23ea8271, 0x74880400, 0x5a204082, 0x5a220a83, 0x40820080, 0xa8460922, 0x77215b82, 0x209c828d, 0x22fb830f,
0x82ccccf5, 0xcd4c320f, 0xd6feff08, 0x00ffcecc, 0x1567e603, 0x27fcffff, 0x210a826c, 0x098292d8, 0x8226a621, 0x5c44214a, 0xd3210982, 0x2c0982b6,
0xff088460, 0x008010ff, 0xcc2effff, 0x24b682cc, 0xff48e1e3, 0x2c0484ff, 0xffc3f5ff, 0x6666d2ff, 0x1f1c00ff, 0x21138276, 0x798286eb, 0x8a200e32,
0xe8f1ffff, 0x1200fff4, 0xff84a470, 0x3d8a1100, 0x1122ab83, 0x80823e8a, 0xcd4c132c, 0x070700ff, 0x0e00fff0, 0x0482eb11, 0x821a0f21, 0x19d12731,
0xef00ff99, 0x5b826666, 0xe8dbfb22, 0x0f268582, 0xfbffff9e, 0x0982fef4, 0x825e3a21, 0x424b2185, 0xb4210982, 0x348582fe, 0xff16aecf, 0x301d3100,
0xffef0e05, 0x9a19e700, 0x192001ff, 0x22bc839a, 0x4a8b0080, 0xfc2206e1, 0xa348cc4c, 0x0cfb2606, 0xf706ab07, 0x07db480c, 0x4afcff21, 0xff23071c,
0x829a99fb, 0xefff2192, 0x00264082, 0x059a1900, 0x43c18b4b, 0xe000ff27, 0xffff66e6, 0x054252ff, 0x764b6082, 0x218f9209, 0x1e820060, 0x00220482,
0xeb83af03, 0x8b00a024, 0x3c827b08, 0x0562f023, 0x838b83cb, 0x263fb6a0, 0x8b1583e3, 0x990400ff, 0x82ff2060, 0x829820fe, 0x66fc2292, 0x8e628468,
0xfeff279d, 0xff9a1947, 0x57410800, 0x1f852105, 0xfc221e82, 0x29824761, 0x20245741, 0x05574199, 0x00ff992a, 0x059a1900, 0xe60802ff, 0x13416482,
0x05e02805, 0xffff0620, 0x82bc29f7, 0xcef82751, 0xf8ffff94, 0x0a8268d1, 0x7829f723, 0x053a4508, 0x0590ff24, 0x76180520, 0x54211a91, 0x22d88207,
0x8246d608, 0x58d92639, 0x2c0700ff, 0x204e834a, 0x22718338, 0x820a17df, 0x83f8205b, 0xe30022b8, 0x07da4dd6, 0x8266e621, 0x33f7254d, 0x54fb0834,
0x1a997618, 0x01247c82, 0x0504f7aa, 0x00210782, 0x21f882e6, 0x6b5bcccc, 0x33072206, 0x21608234, 0x6084852b, 0x84e1fa21, 0x82ba20bc, 0x84f82051,
0xa6761882, 0x82042009, 0x18ff2097, 0x2418a676, 0x198fffff, 0x213b829a, 0x8d8366e6, 0x0080ea24, 0x0482ffff, 0x10824682, 0x06820820, 0xce4cf622,
0x2008ad4e, 0x290982cc, 0x088b67e6, 0xff06f4f7, 0xef720900, 0x068d4d05, 0xe621fa83, 0x18308266, 0x1814fba2, 0x831fa976, 0x080021a2, 0xae48d984,
0x82342005, 0x05be5bd9, 0x9819ef2d, 0x192000ff, 0x00ff159a, 0x829c190e, 0x830a2066, 0xe60b2121, 0x0023ad82, 0x839a990e, 0xc70e3371, 0x00ff73ae,
0x8bb89e26, 0x8b8b088b, 0xd9ffff73, 0xb9824861, 0x703df122, 0xff231d82, 0x514861f1, 0x426f0504, 0x660c2705, 0xfc088b64, 0x4f838bd4, 0x44832620,
0x00c00a24, 0x4fa400ff, 0x84523821, 0x6666214f, 0x34824f82, 0x592a4f86, 0xf7088b9a, 0x2f00ffb4, 0x5382c2f5, 0x00400d22, 0x5384a383, 0x82a4f021,
0xa10e220a, 0x06397548, 0xc00e0023, 0x22a79a00, 0x86ae47f2, 0x28f333a7, 0x0c00fff6, 0x088b6666, 0xe630ffff, 0xcfffff66, 0x5a8ba4f0, 0x56839720,
0x84b89e21, 0x90c221fa, 0xaa855294, 0xcc4cf222, 0xf325aa86, 0x00ff9a19, 0x219b820d, 0xf983cb08, 0x4aaea588, 0xffcdcc23, 0x224a85ff, 0xcb8b3333,
0x34f7214a, 0xdc4196af, 0x05344105, 0x88cccc21, 0xb2342096, 0x084ae496, 0x5cf70e24, 0xffff15d3, 0xff1fc5ce, 0xf6681000, 0xf8ffff05, 0x00ff04b6,
0x8b1a6f02, 0x500a00ff, 0x0700ffe6, 0x0f82fc49, 0x08146e27, 0x3a3100ff, 0x832586e1, 0x210f832b, 0x1b8205e2, 0x861b6f21, 0x500a2225, 0x223582e5,
0x84146e02, 0x82308245, 0x205b8351, 0x2725821e, 0xffe23a31, 0x0a97efff, 0x51830a82, 0x90fdff29, 0xffff8be6, 0x841aaff5, 0xffff252b, 0x08ec91fd,
0x25852b84, 0x0563832f, 0xff0664f7, 0xb89ea9ff, 0x99c900ff, 0x2a98829a, 0xffaec7f9, 0x66660e00, 0x82ffffff, 0x10002404, 0x82903433, 0x66e6210f,
0x38276782, 0x00ff3433, 0x8266e6a8, 0x82442025, 0x94ff231b, 0x0a8234b3, 0x6766e82f, 0x80f2ffff, 0xecffff00, 0xffffcd4c, 0x311983eb, 0x7266e6f5,
0xff03fb08, 0x666606ff, 0x0624f705, 0x9082b383, 0x33331f30, 0x99cb00ff, 0x00ff159a, 0xffcdcc18, 0x1b820c00, 0x6b210582, 0x200f8286, 0x22b183d7,
0x821c7a01, 0xf2f226e7, 0x330400ff, 0x22e282f8, 0x82dc7901, 0x0e0d21b1, 0x0c277a82, 0xffff8a6c, 0x82f628e7, 0xd7182746, 0xf3ffff0a, 0x0a827c94,
0x2b820220, 0x85feff23, 0x21e282e2, 0x1582ccfb, 0x0e0dfd28, 0x86feffff, 0x2b840824, 0x93222582, 0x05820574, 0x847a9421, 0x220a820f, 0x84e485fe,
0xffff2451, 0x8208ccfb, 0x842b8235, 0x22308271, 0x867693f3, 0xe7ff2187, 0x9d83a883, 0xd8688820, 0x33042307, 0x0b848e34, 0x01ff082d, 0xffcccc08,
0x6666ecfe, 0x4d74fc15, 0xff210c79, 0x087545f8, 0xe5225982, 0x8a7e0080, 0x83ea2006, 0x821a2c09, 0xf8088b8f, 0x00ff0634, 0x8290821a, 0x7d1522da,
0x201e8370, 0x820a8270, 0x07aa4d10, 0x0fe0bb18, 0x30fb0e27, 0xf4f784f7, 0x05845215, 0x54843082, 0x83084674, 0x76c9183c, 0xd79d1812, 0x88948816,
0x501a2032, 0x602705f0, 0xffff9002, 0x8266e640, 0x4f072266, 0x2754825c, 0xfff6a806, 0x12c30400, 0xe637f182, 0x0700ff67, 0xff081619, 0xb81e2900,
0x3d9e00ff, 0x00ff0572, 0x82c85800, 0x804a211a, 0x2a210982, 0x2009826b, 0x22bf834c, 0x832a4701, 0x02072b06, 0xfbffffd2, 0x00ff9503, 0x09826d06,
0x9498f822, 0xb0272082, 0xffff08a4, 0x820a47f9, 0xbe9f210a, 0x4c210982, 0x213a82cc, 0x0982aec7, 0x2205e744, 0x829959db, 0xa6de319d, 0xe8ffff66,
0xfffff628, 0xff14aef6, 0x5c4fdcff, 0xe62e3582, 0xffff5ebb, 0x057bd49d, 0xa6ffffff, 0xa359ffd6, 0xd5ff2205, 0x2009837a, 0x22348234, 0x8232b3fe,
0xf8ff2376, 0xb2823cff, 0x8204f621, 0x3e952152, 0x6621b282, 0x2c208225, 0xff085e4f, 0x0ba73f00, 0xcff0ffff, 0x22b7825c, 0x820a5701, 0x34b32145,
0x57218682, 0x06d5650b, 0xec51012f, 0x01ff088b, 0xff70fd1f, 0x9a197f00, 0x272b8215, 0xff0666e6, 0x0020f7ff, 0xf9215d82, 0x209282c6, 0x082c73f8,
0xff077b26, 0x0040ddff, 0xd1271e82, 0x00ff0040, 0x8200c02e, 0x19f32696, 0x0b00ff9a, 0x21288226, 0x5a8233f1, 0x0e820620, 0x4cf0ff26, 0x70088bcc,
0xe8254082, 0xffff9a99, 0x227282ed, 0x8266f9ff, 0xcce52621, 0xffff08cc, 0x222283e5, 0x82343394, 0x83ff203c, 0x80fd2215, 0x83978200, 0x82fd2029,
0xffff2437, 0x836666fd, 0xacf727d3, 0x0300ffcc, 0x8c82d743, 0xff90e226, 0xc9160600, 0xe821dd82, 0x27d382f6, 0xffb89e56, 0xb85ea9ff, 0xad234082,
0x7c079042, 0xf1200c46, 0x00201b82, 0x200cc97b, 0x0df37e0f, 0x5200ff24, 0x338200c0, 0x1e110022, 0xf9214582, 0x26c88260, 0xff900210, 0x82e0f3ff,
0x1e0c2209, 0x22a082b8, 0x824821d1, 0x48e126dd, 0x0000ff05, 0x20158240, 0x86a08200, 0x212e8309, 0x13852000, 0x2207256f, 0x8200804f, 0x5e162129,
0xe9214e82, 0x2b94829e, 0xdad90700, 0x06faffff, 0x0800ff66, 0x8e61ea83, 0x192f250b, 0x84fb069a, 0x57757e82, 0xf907230f, 0x50828b9a, 0x1f820f20,
0x0b00ff25, 0x558b9899, 0x002305e7, 0x829a1907, 0xe608250a, 0xd4f70866, 0x00203682, 0xff230982, 0x82e6f8ff, 0x2219825b, 0x82f7ffff, 0xff08231e,
0xc182e1fe, 0xb3c7fe2c, 0xffff1534, 0xfff853ff, 0x8c83fdff, 0xd3adff22, 0x5c220982, 0x05828bee, 0x08326822, 0x2d076c7f, 0x7ebfbf09, 0x7d0e00ff,
0xfcffffb2, 0x73826666, 0x9ca40222, 0x40203682, 0x0222d482, 0x09829a99, 0xffcccc26, 0x00800200, 0x0e228e83, 0x7d82b95e, 0x82000d21, 0xc009211b,
0x02270482, 0x00ffe2ba, 0x8200800e, 0x40192735, 0xff05f000, 0x3783cbff, 0x00c03422, 0xde340a82, 0xfffff568, 0x0534b375, 0x02ffef0e, 0xff343348,
0xd8a35f01, 0xe3319182, 0x00ffb81e, 0xff74b301, 0x842be6ff, 0x47edffff, 0x3409826c, 0xffff54f8, 0x08ae87f6, 0x8af1ffff, 0x2200ff3c, 0xffff48a1,
0x25d683dd, 0xff523818, 0xd684d8ff, 0x55f4ff21, 0x6282052b, 0xbffdff28, 0xffff817c, 0x7a8360fc, 0x84e00d22, 0x08d17618, 0x6782f520, 0xc00a002c,
0xf2ffff00, 0x088bcccc, 0x0885067b, 0xd95bff20, 0x38c21805, 0x075a2109, 0x19255f82, 0x1900ff9a, 0x2c698261, 0xff9919d4, 0xb89e0f00, 0xccceffff,
0x27e882cd, 0x991995ff, 0xaaffff8b, 0xff238082, 0x826666b8, 0x99a7250a, 0x7cfb089a, 0x8507e75a, 0x4cf52261, 0x064848cc, 0x8506bb21, 0x05614808,
0x5a0a0021, 0xff2a087f, 0xb8de3e00, 0x2000ff07, 0xd9826666, 0x002dd482, 0xff676626, 0x0080f7ff, 0x332900ff, 0x846a8233, 0x00ff2906, 0xff156e26,
0xf47d0800, 0x5e2c2a82, 0x0e00ffb8, 0xff08c460, 0x4821c1ff, 0xce827184, 0xfa827186, 0x8f05ba48, 0x00c02271, 0x2682848b, 0x073cf708, 0x580614f7,
0x292b051d, 0x0700ffba, 0xffffbc29, 0x8246d6f8, 0x44d6225d, 0x05aa778b, 0x18850882, 0xba201d82, 0x2105a84b, 0xa582ab08, 0x50094d78, 0x9e21078a,
0x828682b8, 0x00ff2a3f, 0x05ec1160, 0x19ffffff, 0x35a182a0, 0xffff4821, 0xffd04ce9, 0xcc8c1d00, 0xccdfffff, 0x0100ffcc, 0x2982d8e3, 0x82e67621,
0x5cb022e6, 0x1d2d7728, 0x7c829320, 0x18002021, 0x7714d771, 0xf6311a88, 0x088b3433, 0x02ffaf0e, 0xff68e63f, 0xd8637301, 0x82b98315, 0xfcff2347,
0x518234f3, 0xff0ab727, 0x0080faff, 0x2b868291, 0x8f0020fc, 0x47fbffff, 0x0500ffb0, 0xfa212083, 0x2c6d82e0, 0x08006005, 0x1e0b00ff, 0x0600ffb8,
0x2a0f82c0, 0xff985908, 0x8ec20a00, 0x830200ff, 0x1e0d210e, 0x0028ea82, 0x90f8ff00, 0x26fcffff, 0x04223982, 0x50821aa4, 0x50829082, 0x22068822,
0xff2dfb82, 0xffff05be, 0x8b4861b9, 0xb8c6ffff, 0x21048252, 0x0a8200c0, 0x8240b921, 0x5fff2457, 0x828b9a19, 0x21e3211d, 0xe6311d83, 0xffff707d,
0xff66e6f3, 0x4861eeff, 0xfaeaffff, 0x834382e2, 0x01002340, 0x2582b81e, 0x6666d022, 0xd8243882, 0xffff0680, 0x097a6418, 0xf9221f83, 0x18820553,
0xb382f720, 0x82070021, 0xf9ff2304, 0xd98266c6, 0x8b9af924, 0x1e829b08, 0x059a1927, 0xdf0800ff, 0x22f782be, 0x82db3906, 0x82202018, 0x7900207f,
0x00230567, 0x82c32100, 0x0d00223b, 0x22da8240, 0x454ee206, 0x00230583, 0x8242e009, 0x24a18427, 0xff00e0ff, 0x055b45ff, 0x82f45d21, 0xdb792109,
0xfd236a82, 0x82080060, 0x82e42006, 0x0b002ca6, 0xffffb8de, 0xffff3fe7, 0x82a11200, 0x80ee21b5, 0xe627d783, 0xffff9959, 0x82d863bb, 0x69fb22b5,
0x83d582fc, 0x46ff2cf8, 0xf2ffff25, 0x00ff9a99, 0x821b2f03, 0xae472c13, 0x1500ff08, 0xffffe1ba, 0x822a1ca9, 0x5d0530a3, 0xf1ffff92, 0x00ffdcc4,
0x81afc70c, 0x580e00ff, 0x202805c7, 0xff06e1fa, 0x5ccf1400, 0x0f2cc082, 0x00ff1f45, 0xffcc8c13, 0x52f8faff, 0x302b1482, 0xffff08a4, 0xff85abea,
0x835c5500, 0xc7172642, 0x3f00ffae, 0x210a839c, 0xfc821985, 0xf6a8e922, 0x00275882, 0xffff1e05, 0x8246a179, 0xeeff23e9, 0xde577a54, 0xabf12806,
0x1000ff86, 0x828b20c5, 0x055f7885, 0x86ab1122, 0x0d226382, 0x2184146e, 0x10820a82, 0x00271c82, 0x00ff4004, 0x82cccca1, 0x48172249, 0x20b2828c,
0x27c28219, 0xff66660b, 0x9a991a00, 0x1e202582, 0x0682f282, 0x0040002c, 0xe5ffffff, 0x0000ffc2, 0x0f85ff21, 0x66233c82, 0x82079b77, 0x0ae72666,
0xe6f8ffff, 0x27428266, 0xff34f312, 0xae47daff, 0x07220a82, 0xf082227b, 0xffd72335, 0x58991100, 0x4ff9ffff, 0x0f00ff5c, 0x00ffa470, 0x82c33506,
0x8a20263a, 0x0d00ff3c, 0x3177830c, 0xff48210c, 0xc6e00400, 0xfa0700ff, 0x0b00ffe0, 0x6a82c0ca, 0x82e4fa21, 0xec11221e, 0x240a8208, 0x00ff68e6,
0x2feb834d, 0xfeffbfff, 0x9cecffff, 0xffff1528, 0x8b0040f7, 0xa6205582, 0x0720a882, 0x8208f341, 0xe0082298, 0x21628200, 0x4c82ce4c, 0x09822020,
0x5ccc0821, 0x214205ee, 0x82dc2006, 0x104f43a8, 0xccccf922, 0x2a461684, 0xaf0e2406, 0x823f02ff, 0xc0002712, 0x8b150080, 0xc5827c79, 0x7a66e62a,
0x066b088b, 0xb30000ff, 0x5f20df82, 0x0023ea84, 0x5aff9819, 0xe320053e, 0xff226d82, 0x198233e3, 0x9851dc20, 0xe6852d05, 0xffff0666, 0xcb9a99d9,
0x5000ff05, 0x43214a83, 0x21e8834c, 0x9682cc07, 0x9a990622, 0x6622d383, 0xa7848397, 0xffff082f, 0xff9a198a, 0x98995c00, 0xf0ffff05, 0x27b38280,
0xff01800b, 0x33b3edff, 0x99220482, 0x14829699, 0x0866e626, 0x333c00ff, 0xad221082, 0x25823433, 0x2582aa20, 0xccb8ff2d, 0xff8505cc, 0x68e6faff,
0x83fdffff, 0x33f82353, 0xc7829032, 0x82ce4c21, 0x4c1f212c, 0xcb20d282, 0xff252182, 0x34b399ff, 0x28a88206, 0xff8b66a6, 0x0a57e3ff, 0x1bc319ff,
0x66a0280c, 0xffff0766, 0x82c3f5df, 0xf8ed2222, 0x08228252, 0xe1faf125, 0x190e00ff, 0x089d8b9a, 0x00ff948b, 0x93060103, 0x010700ff, 0xff089289,
0xd6630001, 0x7bdf00ff, 0x829205e8, 0x94032112, 0x01281882, 0x8b928400, 0x938b9208, 0xfe218382, 0x82d082fa, 0xfaff27ca, 0xff0870fd, 0xa4836a00,
0x6250a22f, 0x2400ff05, 0x8b0734b3, 0xab1100ff, 0x825a8284, 0x0e002399, 0x0e827c54, 0x4534b321, 0x1120057b, 0x18850882, 0xabf1ff22, 0x26078e59,
0xff070dfb, 0x82cc3400, 0x80d124c6, 0x82930500, 0x19043339, 0xffff839c, 0x8264e6fe, 0x058b8b08, 0xff30fb0e, 0x6e827300, 0xe647012c, 0xffff1566,
0xff9919f3, 0x0f82f4ff, 0xd9ebff24, 0x957eff9a, 0xf5f42205, 0x225782c2, 0x820832b3, 0x220a8319, 0x8266e60c, 0x713d2619, 0x261400ff, 0x071e7f68,
0x823c0a21, 0xee0527ac, 0x0400ff15, 0xac8272bd, 0x8fc21b30, 0x301600ff, 0x2200ffa2, 0x00ff6766, 0xaa82140c, 0xea472320, 0x662b2805, 0x00ff0666,
0x8266663e, 0x99322ecc, 0xcdffff9a, 0xff8bf668, 0x707dc2ff, 0x20068208, 0x20f083f4, 0x200483fe, 0x270483f5, 0xff3433fd, 0x9a19f6ff, 0x14225d82,
0x7118cc4c, 0xff200c56, 0x0ed27118, 0x3f5acd20, 0x19168205, 0x2309a476, 0x063433bc, 0x4c21ed82, 0x820482cc, 0xfeff24b6, 0x828acc4c, 0xce4c230a,
0x7782088a, 0xff666626, 0x9a19e3ff, 0x7b22ae82, 0x5b9c0080, 0x13d25118, 0x9a191b26, 0xf8ffff06, 0xf7285683, 0xff876666, 0x9a19f5ff, 0xc783c085,
0x1782e420, 0x82150021, 0xeaff2904, 0x00ff9a19, 0x8b34331a, 0x2c20c382, 0x1422c384, 0xfb8267e6, 0x7e821420, 0x83070021, 0x6610251c, 0x0d00ff67,
0x0520e484, 0x00233182, 0x82cccc04, 0x510d2093, 0xff220682, 0x24821400, 0x83fcff21, 0x330a2719, 0xf2ffff34, 0x4a823433, 0x0f820b20, 0xff220a83,
0x2882fdff, 0x83ebff21, 0x4cf1220e, 0x328682ce, 0x8608cccc, 0x66faffff, 0xffff0566, 0xff3233e4, 0x82cce9ff, 0x99dd2316, 0x3a46ff9a, 0x80dc2205,
0x238b8200, 0x34b3d3ff, 0xc222bf82, 0xb482707d, 0xf668cd26, 0x993200ff, 0x0023bf82, 0x8266663e, 0x0a0021bf, 0x00362e82, 0xff717d01, 0x00800a00,
0xd70200ff, 0x0900ff0a, 0xff0866e6, 0x1019ebff, 0xd58219ea, 0x1399aa18, 0x4300ff2a, 0xff06ecd1, 0x15ae0100, 0xcc820482, 0xb3010024, 0x0a828c33,
0x8c34b323, 0x23778408, 0xe61c00ff, 0x8423ae83, 0x18060080, 0x200ef552, 0x205484cd, 0x95938333, 0xe6e4225b, 0x255b8266, 0xff343306, 0xb4830800,
0x66e60427, 0xe60a00ff, 0x20378266, 0x20cb850c, 0x411b821a, 0x15200586, 0xff201b82, 0xff833082, 0x9a99d422, 0xeb226b82, 0xff829919, 0x3882eb20,
0x2505ca41, 0xff9999ef, 0xe884f2ff, 0x3333f934, 0x19fcffff, 0xaf0e059a, 0x14f8b4f7, 0x07ffff15, 0x2c821f85, 0xe17ad825, 0x8389ffff, 0xa4ff3360,
0x8b089a99, 0x4e00ff21, 0xffffcdcc, 0xff0080bb, 0x7b496100, 0x541b2205, 0x317f827b, 0xff47e117, 0x18840600, 0xe60e00ff, 0x1e00ff67, 0xee822646,
0x15ee1328, 0x802800ff, 0x1a820500, 0xff8e422b, 0x281c0c00, 0xcc0900ff, 0x820e82ce, 0x090021a7, 0x0023a282, 0x82cc4c00, 0x220a8329, 0x82a1ffff,
0x231e8355, 0xbedef9ff, 0x45262382, 0xf3ffff1e, 0x4884fade, 0xffff1423, 0x204884d7, 0x2b34820e, 0xe2bae1ff, 0xe61700ff, 0xf9ffff68, 0x1b228983,
0xe682cc4c, 0x34209082, 0x4e278982, 0x00ffcccc, 0x82908244, 0xfd69230a, 0x06820870, 0x66665b25, 0x83d8ffff, 0x19762228, 0x27da829a, 0x088b0080,
0x94fb14fb, 0x5a18e682, 0x99250751, 0xa61c00ff, 0x212b8266, 0xe6825923, 0x1900ff21, 0x8413a40e, 0x82228215, 0xffff2728, 0x8b9a59e3, 0x3e82ffff,
0x06836082, 0x4c211182, 0x821684cd, 0x33b32615, 0x94f7088b, 0x205f8a8b, 0x205f959a, 0x85168466, 0x82e68258, 0x205f9b75, 0x2d5f88cc, 0x0e088b34,
0x33f701ff, 0x3600ff34, 0x67823433, 0x66e62037, 0x8c5d01ff, 0xffff05cc, 0xff7a94f5, 0x7a541000, 0xb0e4ffff, 0x32a382a5, 0xff7b94f5, 0x86abefff,
0x20ffff08, 0xfeff64db, 0x823473a2, 0xe3f43b25, 0xeeffffd7, 0xffff0a97, 0xff295cff, 0x72fde9ff, 0x150a00ff, 0xedffff81, 0x898250f8, 0xd3ed0922,
0x26203482, 0x12269f82, 0xffff9ad9, 0xc08219f4, 0xd763142f, 0x01ff088b, 0x0666668f, 0x631400ff, 0x83aa82d6, 0x0b002d1c, 0x00ffae07, 0xffa4f009,
0x70bd1100, 0x0a253b82, 0x00ff9202, 0x24148212, 0x6466ffff, 0x213c82a1, 0x1a8268e6, 0x82686621, 0xcc082980, 0x15aef7cc, 0xcc4700ff, 0x8f21cb82,
0x25ae83cc, 0x063433b8, 0x91824b5b, 0x3333e128, 0xb33400ff, 0x63420533, 0x7b002a05, 0x0e050180, 0xf824f8ef, 0x0cac5054, 0x0add7018, 0x50072b21,
0x79180680, 0x5b250f3a, 0xf7076b06, 0x0fe64494, 0x14fee118, 0x34b3f12a, 0x4ceeffff, 0x2b088bcc, 0xbb203482, 0x5b183382, 0xb8560951, 0x80e52306,
0x6a980800, 0x1834fb21, 0x630c958d, 0xeb200af8, 0x00209d82, 0x63514c82, 0x05735109, 0x06bb0826, 0x94fb07ab, 0x7d216dba, 0x22f78271, 0x848f82ea,
0x848b2059, 0x8a082055, 0x717d216d, 0x17821884, 0x8b8f8222, 0x2b206d84, 0x200f6944, 0x223582cc, 0x4434b311, 0xaf180569, 0xf7211146, 0x20a28294,
0x20d89d5b, 0x63e21882, 0x34f73411, 0x4b24fb06, 0xf7074b15, 0x07cb0614, 0x6b0614fb, 0x841514fc, 0x22128408, 0x8acb54f7, 0xef0e271b, 0xb4f774f7,
0xb918ff15, 0x686011aa, 0xf8ff250a, 0x00ffcdcc, 0x17724718, 0x210b1c53, 0xb06633f7, 0x008f1806, 0x14fb220a, 0x62ce18ab, 0x05285917, 0x22063674,
0x82ccccf8, 0x0ad72386, 0x0685088b, 0xf6601685, 0x288d9011, 0x66667a01, 0xe13f00ff, 0x20668248, 0x280a83f8, 0xffcc0c01, 0x3433f9ff, 0x235f8285,
0x080a57f8, 0xfa360682, 0x00ff800a, 0xff203004, 0xe6dbfbff, 0xcd0500ff, 0xfdffff92, 0x6a8272bd, 0x82352c2a, 0xa1f5ffff, 0x1d00ff48, 0xff298082,
0x8bc275c3, 0x04fb086b, 0x27348207, 0xfff027f7, 0x10d8f8ff, 0x0e820486, 0xff209b82, 0x11850683, 0x200ab467, 0x322f82e7, 0xb8de0e00, 0x59f0ffff,
0x0900ff9a, 0xffff86ab, 0x82c2b5f2, 0x99593186, 0xe3ffff08, 0xffff3e0a, 0xff1f85f1, 0x4621edff, 0x7d210e82, 0x267e8270, 0xffffec51, 0x832a1ce0,
0x68262a1e, 0x63efffff, 0xecffffd6, 0x22ba824c, 0x82ce4ce1, 0x4cdc2c7d, 0x076b08cc, 0xff0634fb, 0x82ab1100, 0x0e0023ca, 0x044c7b54, 0x838b200b,
0x22668217, 0x8485abf1, 0x05c64616, 0xa4234d82, 0x82066666, 0x3d8a216d, 0xf3224482, 0x8d820a17, 0xff16992c, 0x3d4afcff, 0xf80d00ff, 0x0a8208d6,
0xff3e8a2b, 0x14ee0c00, 0x23feffff, 0x213b82d7, 0x4b826666, 0x2d050e48, 0x079a9901, 0x190500ff, 0xffffff9a, 0x09829919, 0x6b343321, 0x002105c0,
0x25258205, 0x0a00ff08, 0x2c82aec7, 0x73830a20, 0x62300222, 0xe8265b82, 0x0400fff6, 0x1a823c3f, 0xa4f01032, 0x430700ff, 0x00ff0595, 0xffe1fa10,
0xa0baf8ff, 0x09270a82, 0xffff85eb, 0x8260c5fb, 0x82b3203a, 0xccfd224b, 0x210983cd, 0x30828b33, 0x0e2d0722, 0x06314b82, 0x00ff1bef, 0xff7eed00,
0x52b80600, 0x7f0100ff, 0x321a8290, 0xffeb910c, 0xf292d9ff, 0xb32300ff, 0x00ff6f33, 0x839a992a, 0x8f242231, 0x212b825c, 0x57825e09, 0xc4830620,
0x6e431927, 0x00ffa199, 0x23af8213, 0x34b31000, 0xb323db82, 0x8206cccc, 0xba192554, 0x1100ffe1, 0x05222d83, 0xe28248e1, 0x8200c021, 0xd7632137,
0x11225982, 0x0a82707d, 0x82333321, 0x23db8214, 0x33330e00, 0x11202e82, 0x6505725a, 0xf0201518, 0x82052263, 0xfbff2d63, 0xfffffce9, 0xffc2b5ef,
0xa806f7ff, 0x00224c82, 0xfd827a94, 0x4cf62821, 0x00230562, 0x82323304, 0x6604224c, 0x05176868, 0x1aaf0127, 0x93ffffff, 0x21d48282, 0x09826290,
0x0122e383, 0x3782fca9, 0x34b20927, 0x7c0500ff, 0x22f382ee, 0x8295cccc, 0x5b0b2033, 0x2c5b0565, 0xb3f43115, 0xffff0634, 0xff66e6ed, 0x70bd2500,
0xb3d9ffff, 0x1a2fbd82, 0xffff9042, 0x8b6666d3, 0xc0ffff08, 0x82069a99, 0x4761220c, 0x241c828b, 0xffff8fc2, 0x2d2683e5, 0xffd7e3ed, 0x9042daff,
0xf4ffff08, 0xd25685ab, 0x11f4221a, 0x2d8882ec, 0xff81e5d0, 0x1baf0900, 0x80faffff, 0xae820800, 0xff85eb26, 0x7a54feff, 0x94210982, 0x8209827b,
0x2005836a, 0x057d6968, 0xa470ec22, 0xed21c182, 0x2b97820e, 0x00ff98d9, 0xfff2120a, 0x9ad9f0ff, 0xd5233782, 0x8207f628, 0x4c842b87, 0x6400ffcc,
0xffffcd4c, 0xec82b39b, 0x33b37b25, 0x82f7088b, 0x7b0028c7, 0x00ff68e6, 0x827e2a01, 0x8219201d, 0xef632239, 0x22ff821c, 0x8299197d, 0x83ff203a,
0xe6603a1a, 0xb7ffff67, 0x00ff64e6, 0xffa4f04f, 0x9a99a2ff, 0xd70c00ff, 0xfeff080a, 0x250a8265, 0xecd19fff, 0x60829b15, 0x66230028, 0x1c00ff66,
0x048229dc, 0x0982e620, 0xa470232f, 0x00ff088b, 0x06eb513f, 0x7a2300ff, 0x205482e2, 0x2317821c, 0x9a19e3ff, 0xdc228d82, 0xb7859a99, 0x32b3e525,
0x83eaffff, 0x20048448, 0x249683e5, 0xb0fbffff, 0x2c2482e5, 0xff98cefb, 0x5ddc0000, 0x0afcffff, 0x21a382c0, 0x93827cb2, 0x9042de2d, 0x0a0e00ff,
0x00ff05c1, 0x82049602, 0x824e201f, 0x9e0222b9, 0x210982fa, 0x1382843c, 0x82196421, 0x88162129, 0x08277a82, 0x00ff6250, 0x82e8c603, 0xe3082229,
0x210a8253, 0x4a4328b1, 0x07002305, 0x8e826666, 0x32330822, 0x06202582, 0x2705554d, 0xff18b906, 0x0601faff, 0x72262182, 0xf8ffff6c, 0xbd82239b,
0xcadaff29, 0xffff063d, 0x8234b3f7, 0xb007215d, 0xc1832082, 0x0080fa22, 0xf9289c82, 0xff08cc4c, 0x8c4cf9ff, 0xff22fb82, 0xa982d9f7, 0x68110522,
0x8c263882, 0x0800ffcc, 0xb382a205, 0x869c5921, 0xfcff2384, 0x84821639, 0x9a820220, 0xe9feff23, 0x26a4827a, 0xfffff99e, 0x8294c3ff, 0x05962109,
0xb1210982, 0x274a8268, 0xffb81edf, 0x86ebf1ff, 0xfc271082, 0xfffff813, 0x86c856fe, 0x19ff2270, 0x214e829a, 0x91839999, 0x14aee522, 0xea257c82,
0x00ffb89e, 0x2ec58415, 0x08ce4c1a, 0xf894f70e, 0xffff1514, 0x829a196d, 0x8392201c, 0x84c220a4, 0xe6ad220a, 0x22598266, 0x83b8de9d, 0xa1b126a4,
0x7200ff48, 0x254b8299, 0xff0080c0, 0x3e828d00, 0x0683a082, 0x00211685, 0x22d8833f, 0x82664e00, 0x62002333, 0x33829a19, 0x83520021, 0x8291207a,
0x3d002104, 0x6e275583, 0x088b66e6, 0x8274fb8b, 0x82cb206b, 0x825b2060, 0x211683ea, 0xf4824cdd, 0x2005ac55, 0x265f8222, 0x34b30e00, 0x832e00ff,
0x82092009, 0x3600211e, 0x06836985, 0xff221685, 0x808220f6, 0xff232a83, 0x824841f1, 0x274083a1, 0x1e85f1ff, 0xf7ffff5b, 0xff206c82, 0x9b825c83,
0x0b82b520, 0x99350037, 0xff5e159a, 0x99191a00, 0x33c0ffff, 0x1000ff32, 0xffffcd4c, 0x056b73b7, 0x16850683, 0xb3efff2d, 0xd2ffff33, 0xffffe1fa,
0x8267e6e5, 0x1ef92253, 0x229e82b8, 0x8287cc4c, 0xcdcc2805, 0x0900ff8b, 0x8208cd4c, 0x192c2506, 0x5500ff9a, 0x23200483, 0x6a209c83, 0xff22d283,
0xce826900, 0x5600ff22, 0xff221182, 0x2f191edc, 0xf6270a51, 0xff8733b3, 0x8233f7ff, 0x82f9205b, 0xf7ff2d33, 0x0e0834b3, 0xf724f82f, 0x065f1574,
0xe12b6a82, 0x3500ff48, 0xff050040, 0x8280f3ff, 0x821920d3, 0xe9ff2104, 0x12227983, 0x1e8200c0, 0x1e82a120, 0x00c00627, 0xb8ffff08, 0x228e82de,
0x82b81e15, 0x82f82029, 0x01002324, 0x57823eca, 0x8b829920, 0x19820020, 0x66f9ff24, 0x25828b66, 0x7b84eb20, 0x828ceb21, 0x30f927e1, 0xefffffa4,
0x5982ec11, 0x82ae0721, 0x42d8271a, 0xe1ffff8f, 0x40823473, 0x5ccff72a, 0xccf9ffff, 0xfbffffcc, 0xb968f483, 0x66662106, 0xff32de82, 0xffd6e3ee,
0x85ab0d00, 0x17f1ffff, 0x1200ff0b, 0x57829a59, 0xce060023, 0x35fa82d9, 0xffacdc06, 0x73280200, 0xcc0500ff, 0x0400ffcd, 0xff083f75, 0xa3832700,
0x47611e23, 0x21158205, 0x158285eb, 0xfff07c26, 0x0a170700, 0x4c262982, 0x0600ff8a, 0x40831f85, 0x5a040222, 0x012c4082, 0xffffc9f6, 0xffc8c7ff,
0x29dc0100, 0x8e270982, 0x00ff08ac, 0x82b89e0e, 0x00c02188, 0xda209882, 0xff22d982, 0x0a8380a8, 0xa07afc22, 0xf320df82, 0x08294718, 0x8b008022,
0x99210f82, 0x36a38398, 0xfff6e8e9, 0x717d0b00, 0x91eaffff, 0x1400ffec, 0xffff1e05, 0x82e03af4, 0x0055274b, 0xcdffff01, 0x4b82b8de, 0x4b84e420,
0x4b834020, 0x3303ff27, 0xd3fcffff, 0x21718274, 0x09828e87, 0x8238c921, 0xd6fc224b, 0x2c4b8388, 0xff9a59f2, 0xcbc10800, 0x57f3ffff, 0x21f9820a,
0x8c82f8b3, 0x08e2ba27, 0x160300ff, 0x22bf8286, 0x82cc4c03, 0x234b8236, 0x9a190300, 0x0d22c983, 0xc982b89e, 0xf5830c20, 0x00c00822, 0x4020ef82,
0x0d220482, 0x318200c0, 0x00c01f24, 0xdb8205f0, 0x82043621, 0x2c472616, 0x950000ff, 0x210982c2, 0x3082d458, 0x144e0422, 0x00216e82, 0x2db08210,
0xc856f7ff, 0xf00f00ff, 0xf1ffffa4, 0x7d826c1c, 0x0814ee2b, 0xdec2ffff, 0x2400ffb8, 0x21ba821e, 0x52831f00, 0x48614e22, 0x14204b82, 0xff220a82,
0xc58280d6, 0x08080031, 0xefffffb4, 0xff9ce2ba, 0x6666f5ff, 0x501100ff, 0x36220512, 0x9b1866e6, 0x768217a8, 0x82b31121, 0x99f121fa, 0x0e2de382,
0xffffcd4c, 0x8b6666ee, 0xf704fb08, 0x0cfd4b14, 0x5c0a5f4b, 0x612146aa, 0x236c82cc, 0x15008022, 0x1924e282, 0xddffff99, 0xff23c183, 0x189919bd,
0x1817ab72, 0x2416e09d, 0x804d00ff, 0x22de8200, 0x82004013, 0x40112699, 0x0b00ff00, 0x20048280, 0x2b048307, 0x08b89e11, 0xe00800ff, 0x1400ff00,
0xf5205f84, 0x06231f83, 0x82050040, 0xc62108e8, 0x0a00ff66, 0xffffe23a, 0xff3433f3, 0x9a190f00, 0x33f8ffff, 0x1100ff33, 0x0e08cc4c, 0x34f8bbaf,
0x167e5d15, 0xbe704b20, 0x00202109, 0xe6203482, 0x63824882, 0xdb088b24, 0x7c4cdb06, 0xeaff2107, 0x15207f83, 0xff380482, 0x8b0080e5, 0xff64f708,
0x6666a3fe, 0x3c00ff15, 0xf7079a99, 0x54f70674, 0x08375118, 0x99effe23, 0x51c1829a, 0x9e240579, 0x0600ffb8, 0xff218682, 0x273682ef, 0xe1edffff,
0xc4fb0848, 0xff225582, 0x19821ed9, 0x1e822220, 0x83e1ff21, 0x212822c4, 0x21288248, 0xdf820080, 0xcd8c1f25, 0x830500ff, 0xb315210f, 0x1d20bf82,
0x002c3883, 0x0866e61f, 0x1c00ffab, 0x6b159a99, 0xcb293e83, 0xff60b81e, 0x48e1d4ff, 0x208c8256, 0x266e82a4, 0x8b48e13d, 0x833200ff, 0x21322155,
0x3d230a83, 0x5508b8de, 0xff230698, 0x5500e0f8, 0xff220598, 0xbd8220f7, 0x06a4fb32, 0x04f82f0e, 0x8b15d4f7, 0x99d3ffff, 0xe6ffff9a, 0xd8200483,
0xff2df982, 0xff6666d9, 0x9a19e9ff, 0xeaffff08, 0x4e2c1966, 0x062b2118, 0x0be18618, 0xf97f0020, 0x9915240b, 0x84ff079a, 0x16002146, 0xe6275083,
0x00ff9999, 0x829a1927, 0x662c228b, 0x26928366, 0xffa4b046, 0x82804000, 0x4f392592, 0x4f00ff5c, 0xf682e082, 0x16850683, 0xb0c6ff23, 0x2a9882a4,
0x085c4fb9, 0x5cfb078b, 0x18ff155b, 0x82151d87, 0x18112051, 0x8229cf86, 0x4cee2251, 0x2e8718cc, 0x04f72310, 0xcb8315cb, 0x1f82cc20, 0x4d85f120,
0x2a853420, 0xff20aa82, 0x86183186, 0x8d8923e1, 0x55553420, 0x2b3c8206, 0xfeff088b, 0xff0661eb, 0xcc4c5eff, 0x0731c682, 0x00ffa8e6, 0xffcecc0f,
0x52381300, 0x660600ff, 0x320e8266, 0xffff5ccf, 0x089a19f8, 0xb0b100ff, 0xa7ffffa4, 0x82053233, 0x238a820a, 0xcecc5800, 0x0f260a82, 0x00ffcccc,
0x2a82e607, 0x34331327, 0x99f9ffff, 0x230e859a, 0x3233f0ff, 0x19833482, 0x19860a82, 0x82ecff21, 0x200e822d, 0x28538632, 0xce4c79ff, 0x99bcffff,
0x2148829a, 0x1582b386, 0x83830a85, 0x83857483, 0xf8233485, 0x82ff9a19, 0x08342139, 0x0a833a84, 0x4e842e82, 0x7282f920, 0x86836284, 0x4e211e82,
0x8491824c, 0x4eff229c, 0x84bd824f, 0xf0ff22b2, 0x84bd8230, 0xc7ec2244, 0x225886ae, 0x825819f8, 0xcecc21e1, 0xf8223482, 0x0a839318, 0x06243982,
0x00ff3168, 0x0023cb83, 0x84d9ce0f, 0x2dc682cb, 0xffc2b586, 0x66664300, 0x79ffff05, 0x0a873e4a, 0x2731f022, 0xf6822084, 0x86cf9721, 0xe7072234,
0x3148846d, 0x0e078b08, 0x0500ffef, 0x01ffac1c, 0x15d2cdb6, 0x4e1900ff, 0x02381dbb, 0xff70fd4f, 0x120330fe, 0x0a00ff05, 0xffff6866, 0xffceccf7,
0x64e60100, 0xe621ea82, 0x250e8366, 0xf5ffffd0, 0xab829a99, 0xccccf722, 0x98200a83, 0x1e821983, 0x9c19fe22, 0x9c200e83, 0x332a6182, 0xfdff0832,
0xfff8feaf, 0x4f19d001, 0xa082214d, 0x02ffaf2a, 0xffcc4c33, 0x66662e00, 0x0222a082, 0x6782a49b, 0x57828e20, 0x383efb22, 0x0b210982, 0x26048202,
0xffff6c87, 0x82cc4cfe, 0xa6f02876, 0xfbffff68, 0x82057e4a, 0x20852615, 0x66fdffff, 0x26098266, 0x00ff9002, 0x8230bd04, 0xd463210e, 0x73218182,
0x27298274, 0xff34f3e7, 0xacd14c00, 0xb0272982, 0x00ffc235, 0x82cccc1f, 0x783527d5, 0xc1ffff52, 0x0a829ad9, 0x7a140527, 0x18faffff, 0x26e08294,
0xffff5ae4, 0x829403f8, 0xa61b2164, 0x73210982, 0x273f8234, 0xff1ec5e3, 0x66e691ff, 0xfd273f82, 0xffff58d9, 0x82146ef7, 0xf0472104, 0xca213382,
0x8209823c, 0x02002378, 0x2982d823, 0x866bf027, 0xdf0300ff, 0x2729827c, 0xff1864f7, 0x18240200, 0xc4212482, 0x218982de, 0x0e8262b0, 0x82662621,
0xec912609, 0x1900ff08, 0x22938233, 0x821e0562, 0x7dd92629, 0x2c00ff70, 0x230a82c5, 0x24270000, 0xcb20b982, 0x00224482, 0x09828282, 0x8be2e522,
0xc2220582, 0x0682080c, 0xe2faca2b, 0xd9d4ffff, 0xd5ffff9a, 0x238f8205, 0x8baec7ca, 0x06837182, 0xd8281682, 0x2b00ffea, 0xc08b1e04, 0x00282982,
0xfff43d02, 0xff820000, 0x19217082, 0x21098216, 0x0982a826, 0x82f83321, 0x7dd9272d, 0xd3ffff71, 0xf382703d, 0x33331927, 0xfa9dffff, 0x200a82e2,
0x23208202, 0x0e6df7ff, 0xc321aa82, 0x21cf82d7, 0x04826250, 0x82dd6421, 0x2adc2179, 0x8525d484, 0x20fcffff, 0x22aa8284, 0x82a265f7, 0xe6db2115,
0x48261f82, 0x0500ff72, 0x0e828836, 0x00239282, 0x826a9108, 0xc5e32729, 0x6e00ff1f, 0x29829a19, 0x231bfe2c, 0x8b0700ff, 0x0100ff02, 0x0982dde4,
0xffacfc26, 0x7b140500, 0xe8210482, 0x27fe82f6, 0xff527835, 0x66263e00, 0x23069241, 0x3433e0ff, 0xe7270a82, 0xffff70fd, 0x829042b2, 0x64fd220a,
0x2164825a, 0x0482928d, 0xff0c0226, 0xca41fbff, 0x85210982, 0x21c8821e, 0x69829a99, 0x66a6f027, 0xb50400ff, 0x22298282, 0x84a285f7, 0x26248215,
0x00ff7d3f, 0x8532f308, 0x0700230e, 0x6982ce8c, 0x82661b21, 0xb0582229, 0x26e783a4, 0x00ff9c24, 0x8262f006, 0x142e2184, 0x99210482, 0x210e82dc,
0x2e825ac4, 0x8232b321, 0xbc682729, 0x2a00ffbf, 0x53822892, 0xcd4c9727, 0xba2900ff, 0x220a82e1, 0x82e13af9, 0x85ab2620, 0xd4faffff, 0x212f827b,
0xf2840080, 0x84829120, 0x299ce426, 0xb35800ff, 0xae83b983, 0x71080023, 0x21948268, 0x8482cbc1, 0x82fef421, 0x93782104, 0xb321fd82, 0x225a8234,
0x829a590f, 0x80b52119, 0x08218482, 0x204f837a, 0x220f8299, 0x8271fd08, 0xd04221b3, 0x48825e82, 0x8cf7ff23, 0x2229828c, 0x41900218, 0x00280602,
0xff3eca4f, 0x3333e0ff, 0xca278482, 0x00ffad87, 0x82f91e3f, 0xe6fa210a, 0x0520cf82, 0xff230482, 0x839919fe, 0x67e62660, 0x800700ff, 0x203b8200,
0x22aa831c, 0x419a196e, 0x002306d2, 0x82ec9108, 0x10b82185, 0x3521ea82, 0x05be57c2, 0xdcfdff23, 0x2729822a, 0xff7b940f, 0x8220fcff, 0x08222982,
0xd082b89e, 0x82cad621, 0x34332724, 0x50f7ffff, 0x05828862, 0x82846b21, 0xb3e727df, 0x9dffff33, 0x2582c4f5, 0x70833520, 0x6666c122, 0x00270a82,
0x00ff7a27, 0x82a47018, 0x3efe3b8b, 0x2400ffed, 0x00ff5c8f, 0xffcccc16, 0x48a11f00, 0x802000ff, 0x0b00ff00, 0x65820a57, 0x18240527, 0xcb0100ff,
0x215a8202, 0xea82e85b, 0x8bf4fd27, 0x92faffff, 0x235a82f2, 0x072c12e8, 0x1e292b82, 0x00ff06b8, 0x07f6e817, 0x2123828b, 0x04826871, 0x8fde6422,
0x27260582, 0xfeffffee, 0x4382b032, 0x7c541f27, 0x0ff5ffff, 0x2a62821a, 0xffff6666, 0x8bd863e2, 0x74ddffff, 0xfe270546, 0xffff649b, 0x8248d2ff,
0x3ab4212b, 0xed210982, 0x210982ec, 0x358200a0, 0xcc3f0027, 0x90e7ffff, 0x27ae8262, 0xfff6e835, 0xf6a83e00, 0xe620ae82, 0x7343a483, 0xd9fd2705,
0x0800ff58, 0x6b82f292, 0x822a3c21, 0x9eaf2109, 0x9b260482, 0x0200ff22, 0x3f82d623, 0x82940f21, 0xdf0322e3, 0x223f827e, 0x435e9a08, 0x002305c7,
0x828eb708, 0x82c920be, 0x26022119, 0xf7228a82, 0x2982966e, 0xe23a1c22, 0x28061b44, 0xdee40100, 0x75f8ffff, 0x21848200, 0x0982221b, 0x82540321,
0x86eb212e, 0x17270482, 0xffff0808, 0x44ae87ca, 0x4f27076f, 0x00ff3eca, 0x82cecc1f, 0x0218275e, 0x4d00ff8e, 0x0a8270bd, 0xa49b0222, 0x72218482,
0x2604826e, 0x00fff4fd, 0x8236be04, 0xe47a2609, 0x66fdffff, 0x22698266, 0x4498590f, 0x002306ef, 0x83607a08, 0x82682015, 0x80c02524, 0x0cf7ffff,
0xfd22ed82, 0xaf446866, 0x99e42107, 0xa7222982, 0xf2825c4f, 0x64dbfd27, 0x0ff9ffff, 0x2184829e, 0x0482ecd1, 0x82256621, 0xa43b210e, 0x4c213d82,
0x279382cc, 0xffd24c97, 0xd162d5ff, 0x68277d82, 0xffff32b3, 0x821e45d6, 0xc106210a, 0xfd271a82, 0x00ff1a4f, 0x827c2a05, 0x74682534, 0x260200ff,
0xf9225e82, 0x8882b012, 0x146e1b38, 0x57a7ffff, 0xaf0e050a, 0x197f00ff, 0x1554f89a, 0xe1cbffff, 0x4a828b48, 0x35000024, 0x3d82218b, 0x66e65323,
0x2c0f8207, 0xff48e1d6, 0xbe3ff6ff, 0x5eeaffff, 0x260482b8, 0xfffffa9e, 0x829ad9bf, 0x80fc2c20, 0xf5ffff00, 0x00ffcccc, 0x6342c007, 0x002e05e5,
0x8b06e10a, 0x1801ff08, 0xff0666e6, 0x50830d00, 0x1e0c0025, 0x4c00ffb8, 0x61210548, 0x21148248, 0x80824821, 0x55820c20, 0x82260021, 0x0b002240,
0x271e82de, 0x8bb8de21, 0xa13500ff, 0xff291a82, 0xff0a17ff, 0xb81eac00, 0x21118205, 0x1c829e53, 0x04831720, 0x30834520, 0x35862420, 0xfeff082d,
0x060080e3, 0xe3e0ffff, 0x8274fbd7, 0x1ef721ba, 0xff233f82, 0x8247e1f8, 0x9a19218b, 0x8506a565, 0x21118206, 0x1684b91e, 0x90828582, 0x06850820,
0xff211685, 0x10a55ff8, 0xf6e8f822, 0x2107a55f, 0xcb820a17, 0x1c3f0024, 0x54638b2a, 0x8b932523, 0x938b9308, 0x48623b84, 0x85082005, 0x06884e06,
0xff2c6982, 0x3433f6ff, 0x8bcb088b, 0x838b8315, 0x9320a991, 0x46821284, 0x9683a182, 0x91058762, 0x094760a1, 0xf72c4ed3, 0x1574f754, 0xff608b56,
0xa4f0a9ff, 0x3108c182, 0x08c2f595, 0xffb6218b, 0x9a19aaff, 0xff088bc0, 0xfeff3400, 0x2b00ff8b, 0x8be168e6, 0xf58b08f5, 0x19d4ffff, 0xffffe198,
0x8b0200cb, 0x94fb8b08, 0xc418ff15, 0x00200ad7, 0x10388f18, 0x610e0024, 0x1683ff48, 0x7500ff21, 0xa1210756, 0x264f8248, 0xffb85e0e, 0x8261e3ff,
0xdcff240a, 0x8208b89e, 0x20068278, 0x05cd6bff, 0xff2c1682, 0x0080edff, 0xef0e088b, 0x1514f8eb, 0x82056f5b, 0x33b32145, 0xa6260482, 0x2300ff66,
0x9a83cd4c, 0xcc4c6a23, 0x05495e06, 0x1700ff33, 0xffff0080, 0xffec11f0, 0xcccc0900, 0xb3e7ffff, 0x2abb8232, 0xff68e62f, 0xe23a88ff, 0x8500ff05,
0x7b21202b, 0x182505d4, 0x00ffcecc, 0x2d278205, 0x1e851800, 0x190b00ff, 0x1600ff9a, 0x6a185238, 0x04220791, 0x318252f8, 0x4ae60721, 0xcb4906bd,
0x68062505, 0x0f00fff6, 0xff233382, 0x820a17f8, 0x830a8529, 0x66062139, 0xec276582, 0xffffaec7, 0x829819f8, 0xa4302384, 0xfe63ff08, 0x07fb2605,
0xffff05ae, 0x251f83f9, 0xff86abf2, 0xa483fcff, 0x5c4ff122, 0xf122ee82, 0x25829819, 0x3433de24, 0xc382c307, 0x98191622, 0x1120e582, 0xee22ae83,
0x1e829a19, 0x66e6e922, 0x09e2e319, 0x3683ef20, 0x0483f720, 0x9a99f025, 0x83f1ffff, 0x33f72126, 0xff28e082, 0xff30b3d4, 0x66e6e4ff, 0xf1226582,
0xd382d0cc, 0xf02a1a83, 0x00ff6466, 0xffcc4c03, 0x1452efff, 0x82d82005, 0xffff2706, 0xff3233dd, 0xb082edff, 0x33e9ff26, 0xe2ffff34, 0xb0236184,
0x180666e6, 0x2d16bf71, 0xccf7ffff, 0xffff06cc, 0xffce4cfe, 0x3283fbff, 0x3c83fe20, 0x5883fb20, 0x66e6fc22, 0x66201382, 0x0028a382, 0xff32b306,
0x3433faff, 0x0e426219, 0x7e82cc20, 0x0a408018, 0x4483e920, 0x17520482, 0x84ff2006, 0xcceb221a, 0x837b82cc, 0x0c00240a, 0x84080080, 0x83ff2046,
0x21258250, 0x618266fb, 0x4c216685, 0x848482cd, 0x3333217a, 0xc14a8e84, 0x89072005, 0x474d18b7, 0xcd4c2111, 0x11db1919, 0x0800ff25, 0x82073433,
0x214682b7, 0xb6830100, 0x5a82fb20, 0x86010021, 0x00ff24cb, 0x849a1903, 0x224e8284, 0x82ce4cf9, 0x85f32284, 0x05c7521f, 0xbdebff23, 0x77aa8d70,
0xb32105e2, 0x83d08632, 0xff8b26c0, 0x34331400, 0x840a83ff, 0xff082504, 0x3dca0500, 0xcc210482, 0x272582cc, 0xffebd1fd, 0x9a990400, 0x0c21c182,
0x210982cd, 0x098234b3, 0x1e824a20, 0xcccc0422, 0xf7227582, 0x7e5b5ccf, 0x82ab2017, 0x5f0020e9, 0x082815ea, 0xff06a430, 0xc3b50100, 0xcc215082,
0x210982cc, 0x5a8533f3, 0x2e020023, 0x246e8415, 0xfaffff08, 0x201e8235, 0x41848405, 0xaa92076b, 0xb89e162c, 0xb31600ff, 0x00ff0533, 0x3082f508,
0x67e60822, 0x0983c582, 0x9899022d, 0x380b00ff, 0xfcffff52, 0x82089a19, 0x9980343a, 0x8bcb059a, 0xff072b15, 0x34b39000, 0xd9ffff06, 0x82eb9899,
0x829520e2, 0xfb9b240c, 0x18ff1554, 0x2015ae58, 0x8217838b, 0xcc2327a4, 0xdcffffcd, 0x6f193433, 0x9c233500, 0x82153cfb, 0x831d2083, 0x830e20ee,
0x4c1a2204, 0x2ab882ce, 0x00ff9a99, 0x0866e60f, 0x830e00ff, 0x190a210f, 0x112d0f82, 0x00ff0080, 0xff66e605, 0xcccc1200, 0x221a828b, 0x8234b302,
0x21cf833a, 0x1683ffff, 0x9c990227, 0xccffffff, 0x261a82ce, 0x8764e62c, 0x822300ff, 0xdaff2395, 0xaa823233, 0xeb84d220, 0x66cfff28, 0xd8ffff66,
0x04839899, 0x82ff9a21, 0x8268200e, 0x20068248, 0x20228266, 0x217483d8, 0x0a826627, 0x99300028, 0x73e3089a, 0xf318ff15, 0xa818158b, 0x90821a75,
0x4cf5ff24, 0x0483ffcc, 0xf2235282, 0x850834b3, 0x1cd51806, 0x25548509, 0xff2f0e08, 0x8d821501, 0x05b40139, 0xffff151e, 0xff34b3ef, 0xd2820700,
0x0400ff79, 0xffff1078, 0x8366e6ec, 0x4cca2299, 0x2d3f82cd, 0xff3333d2, 0xb8dedeff, 0xd1ffff78, 0xde824821, 0xec115132, 0x5a00ff06, 0x00ff7ad4,
0x051e0544, 0x194100ff, 0xbb22cd82, 0x4982e2fa, 0xe21af830, 0x781300ff, 0xf3ffff52, 0x00ff283c, 0x0982b810, 0x142ef022, 0x512c7682, 0xffff08ec,
0xffe2fabd, 0x707dceff, 0x662a3482, 0xff060080, 0x008089ff, 0xea8244fb, 0x82b34621, 0x390021bc, 0x0023bc82, 0x825c4f39, 0xb04622e3, 0x22bc82a4,
0x827a0500, 0x0eff2630, 0x0500ff00, 0x224a8238, 0x821255ff, 0xcc4c3009, 0x03ffff08, 0xff061739, 0x0a57ffff, 0x82faffff, 0xffff23be, 0x0982cd0c,
0x82cccc21, 0x80fa22b1, 0x243b8200, 0xcd4cb9ff, 0x825282ff, 0xb3c62c16, 0x4600ff33, 0x088b33b3, 0x8234fbbb, 0xdcd222a5, 0x27c18229, 0xffd7a33a,
0x842ba2ff, 0x13268c82, 0x00ff66e6, 0xbb82ba06, 0x9a990e27, 0x4c1100ff, 0x228282ce, 0x76cccc15, 0xff26170d, 0x34b30200, 0x4a8204f7, 0x99999a22,
0xfa228682, 0x7783649b, 0x82d9ae21, 0x02ad2191, 0x4a828782, 0x84ffff2e, 0x00ff08fe, 0xff7a9431, 0x00ceb0ff, 0x82052741, 0x212c2276, 0x235c8248,
0xffb8de23, 0x310d0d57, 0xff86ebed, 0x7cbff9ff, 0x7defffff, 0xf5ffff70, 0x1c7b1eda, 0xba4d2207, 0x223782e2, 0x82842b13, 0x800f2437, 0x8200ff00,
0x220a8204, 0x83343313, 0xb35f269f, 0xb2ffff32, 0x20c08266, 0x21bb824d, 0xbb82a0ff, 0xfeff082b, 0xffcc4ced, 0x34b352ff, 0x22978215, 0x82ccccec,
0x1f852233, 0x05bc67ff, 0xd7231323, 0x3298828b, 0x060a571d, 0x19a900ff, 0xffff079a, 0xff52f8d8, 0x8233e0ff, 0x07e72748, 0xcfffffae, 0x36829a99,
0xceccc929, 0x00ffeb08, 0x8266e69a, 0x664228e7, 0x00ff0766, 0x829a1999, 0x99822bed, 0xc800ff99, 0xff0534b3, 0x7782f6ff, 0x19fdff23, 0x27098298,
0xffff33b3, 0xffce4cfc, 0x2c05d057, 0x080080fb, 0xd4f8ef0e, 0xfc1514f8, 0x22338294, 0x82cdccdc, 0x33e32152, 0xe3222482, 0x0a823433, 0xccccdc26,
0x0794fb08, 0xff260985, 0xcdcc1c00, 0x1982ffff, 0x2300ff24, 0x9e833333, 0x824c8021, 0xffff2710, 0x00ff05fa, 0xc5822e19, 0xd916003d, 0x0e00ff99,
0x00ff1ec5, 0xff0a570a, 0xc4f51600, 0x1b00ff08, 0x00ff8fc2, 0x8266a63d, 0xe0072625, 0x1100ff00, 0x21048280, 0x04822010, 0x48210b22, 0xa1210e82,
0x204b8348, 0x2d068211, 0x1e1000ff, 0xf4ffffb8, 0x00ffb8de, 0x296be107, 0x1b002807, 0xffff00c0, 0x82b85ec2, 0x590a2640, 0xe9ffff9a, 0x21608205,
0x0982d916, 0xe23af122, 0x33217a82, 0x268c8432, 0x00fff628, 0x82060000, 0x83232025, 0x20ae82bd, 0x21b383cc, 0xaf838bcc, 0xf7083422, 0xf143c883,
0x24c38405, 0xffcccc1c, 0x26e182ff, 0x34fc088b, 0x821584fb, 0xb89e210b, 0xe321e982, 0x20938261, 0x238c841c, 0x08b85e23, 0x5e203c83, 0x1c228e82,
0xc982b99e, 0x6e82ba20, 0x84612321, 0x820683af, 0x489e205e, 0xdd2208d7, 0x2d821e85, 0x0682ff20, 0xe3ffff29, 0xffff6666, 0x82e27ae2, 0x9a992654,
0xd4f7088b, 0x825fa18b, 0xa91b2064, 0x8868205f, 0x9823085f, 0xff0e088b, 0x98ae0300, 0xe62a01ff, 0x00ff1566, 0xff54a331, 0x6666eaff, 0x1400ff05,
0xffff33b3, 0x826766ce, 0x04012a0a, 0xfdffff19, 0x00fffef4, 0x232a8202, 0xd558feff, 0x472e0982, 0xff088b6d, 0xff010000, 0xffffff8b, 0xec8202fc,
0x12820b83, 0x60450222, 0x03201782, 0xa9262d83, 0x0100ffbb, 0x048239a5, 0x82130321, 0xf6082132, 0x14221e82, 0x678252b8, 0x8249a121, 0x9e312157,
0x1422b882, 0x0a82c2b5, 0xe3050222, 0x02212582, 0x2104820c, 0x2a8231a8, 0x824aac21, 0xd1022143, 0x44220982, 0x60820818, 0x82432021, 0x2050210a,
0x33210982, 0x23098233, 0x8c8934b3, 0xce221682, 0xa8829999, 0x059a9922, 0x0a831782, 0xb9830020, 0x70ebff23, 0x216182a4, 0x1582cc4c, 0x70fdfe22,
0x0a212d82, 0x21be823e, 0x5b820a57, 0x82d8a321, 0xe1ba2109, 0x05215b82, 0x223f821e, 0x8301feff, 0xfe0321b7, 0x0b82c383, 0xfd221282, 0x0c8293b8,
0x6a83fd20, 0xdc59fe27, 0xfcfeffff, 0x21328229, 0x1a82fcf4, 0x0e4deb27, 0x64ceffff, 0x2557825c, 0xffac5cce, 0x6284ebff, 0x52f8fd22, 0xe6212582,
0x21048266, 0x2a821759, 0x83666621, 0x059b453f, 0x34b3fd22, 0xa6217482, 0x821684e9, 0xae072188, 0xcc2da882, 0x01ff08cc, 0xff026bfb, 0x9a1925ff,
0x21108215, 0x1a8200ff, 0x82e44521, 0x8e582140, 0xad210982, 0x212e8250, 0x388292f8, 0xfa830420, 0x146ece22, 0xab21e382, 0x22758286, 0x82e23aeb,
0x220a84d8, 0x82b6d3ff, 0x74fe2120, 0x01205986, 0xff206882, 0x8b206d82, 0x1020c184, 0x55218183, 0x21508240, 0x04821659, 0x82e8fb21, 0xfef42125,
0xb1821a82, 0x5e21c182, 0x20c184b8, 0x21c18228, 0x0a823e4a, 0x87f9fd21, 0x57fe2225, 0x212a82d0, 0x94833e55, 0x09823a20, 0x081eba27, 0x010000ff,
0x210a8200, 0x6f82eebc, 0x8278a821, 0xd84e2109, 0x0621a482, 0x21588268, 0x1e82eefc, 0xec913122, 0x54224882, 0xa582057a, 0x821ec521, 0x7c54215e,
0x01220a82, 0x2a826410, 0x823cff21, 0x9a99212a, 0x4c212a82, 0x670982cc, 0x02230554, 0x828bea46, 0xc0aa210c, 0xa7215082, 0x82e684f0, 0x020b210e,
0x14224b82, 0xe082a4b0, 0x8248a121, 0xa6312240, 0x23508266, 0x8d05c2b5, 0x0f212182, 0x2186829e, 0x4c84cecc, 0x48848b20, 0xc4fb082f, 0xff15c4f7,
0x856b0c00, 0x38e2ffff, 0x22318252, 0x82e17a01, 0x21828268, 0x72830100, 0x9002ff22, 0x50573482, 0x82002005, 0x21368206, 0x11820a77, 0x8200fe21,
0x299c2104, 0x3a225582, 0x40820810, 0xffcd6c26, 0xf0c71d00, 0x1d224082, 0x0f82aec7, 0x82846b21, 0x3801220a, 0x20258310, 0x21048202, 0x2a82fafe,
0x82109c21, 0x5b012376, 0x068308e6, 0xfff45d26, 0x0601ffff, 0x9a201682, 0xfe21ef82, 0x23c382c7, 0x08e69b00, 0x40828784, 0x058c6c27, 0x80f4ffff,
0x21568600, 0x0a83feff, 0x103a0122, 0x4c213482, 0x418085cc, 0xb32108aa, 0x22508234, 0x82323300, 0x0002211b, 0x66210482, 0x20c28366, 0x224b82f0,
0x8334b3f2, 0x82102050, 0x19e3224b, 0x064c7899, 0xe6fdff23, 0x21258267, 0x0482d663, 0x2a83e620, 0x8b666622, 0xa1213082, 0x23978248, 0x18a4feff,
0x28205d83, 0x63211082, 0x219c82d8, 0x25829b37, 0x82186421, 0xe31c22e3, 0x2a4082d7, 0xf705f893, 0x80ffff54, 0x4e1566e6, 0x06270746, 0x00ff9a39,
0x82822007, 0xdf083484, 0x07a7087e, 0xde5b00ff, 0x6500ffb8, 0xff0532b3, 0x82c00500, 0x5e0622c3, 0x834682fa, 0xba082609, 0xfaffffa0, 0x22f78200,
0x82200507, 0x3aee27a1, 0x1200ffda, 0xa1828a81, 0x83e0f921, 0x82202029, 0x60f621c1, 0x00210982, 0x21098240, 0x8918a1f9, 0xfe27071e, 0xff86ebe8,
0x830c05ff, 0x66d52129, 0x2214b876, 0x826606f8, 0x1edb2951, 0xffff07b8, 0x2100808a, 0xf2215382, 0x20448280, 0x687882f3, 0xea28054f, 0x00fff6e8,
0x7eb8fe0c, 0x2927cf82, 0xffff6766, 0x820a97d6, 0x190c22a3, 0x26da829a, 0x00ff68e6, 0x82ae0716, 0x70bd21a8, 0x3d312582, 0x0d00ff71, 0xff08347e,
0x34331701, 0x803501ff, 0x24298200, 0x0600e015, 0x2921828b, 0x0e15d618, 0x1594f7ab, 0xc982d4f7, 0xa4f03422, 0x2b24fb82, 0x00ff5c0f, 0x0a820482,
0x08201082, 0xff240685, 0xa4f0d4ff, 0xff281684, 0x5c0fcbff, 0x066b088b, 0x0db74718, 0x3a82b020, 0x4feeff23, 0x832f825c, 0x00ff2806, 0xff5c4f0e,
0x82b0f1ff, 0x82112034, 0xab08211b, 0xe2195f82, 0xff23095b, 0x82f6a8f1, 0x57ee227e, 0x212f840a, 0x2a820a57, 0x86f6a821, 0x23158204, 0xd4fb088b,
0xb320608e, 0x84107d59, 0x34b32360, 0x608400ff, 0xfb14f726, 0x14fb1514, 0x969f358e, 0x3082f720, 0x97ab0020, 0x5741f7b3, 0x66e6211d, 0x28075741,
0x088b9a19, 0x15eb94f7, 0x20c58ffc, 0x0e5b69b3, 0x88065c41, 0x40f820fb, 0x0e368fc5, 0x4cfb01ff, 0x7701ffcc, 0xff15146e, 0xb81ebcff, 0xe14300ff,
0xf2490548, 0x06002d05, 0xffff0040, 0x8b3cdff5, 0xc0f9ffff, 0x04820a82, 0xffff0824, 0x44185ee9, 0x158607a3, 0xfffabe22, 0xbe200082, 0xbe212a83,
0x203482ff, 0x822e841a, 0x83b32029, 0x82048229, 0x82d1204f, 0x1300210a, 0xc8254483, 0x6582e23a, 0x241d8265, 0xff9a9961, 0x220482ff, 0x82727205,
0x7dd73e60, 0x0872a470, 0x825a00ff, 0xa5ffff90, 0xff05e27a, 0x01001900, 0x2800ff72, 0xa48b8f82, 0x2f1982a4, 0xff65669e, 0x66669e00, 0x94b1b105,
0xc23700ff, 0xec202782, 0x0023a082, 0x82d6a32e, 0xa14c241d, 0x8200ff48, 0x40481804, 0x236b8208, 0x00400a00, 0x09404818, 0x25820020, 0x25831620,
0x25830482, 0x82341721, 0x703d21ac, 0x0a222082, 0xb2824821, 0x82cccc21, 0x00402a0f, 0xffdcfb08, 0xb85ea1fe, 0x21868215, 0x9084707d, 0x7a242d82,
0x0ef70100, 0x9e890782, 0x8285ff21, 0x86ff28f4, 0x0e058e02, 0x5eebdbaf, 0x996b179b, 0x15002406, 0x5eff0080, 0x1a200583, 0x10b08618, 0x09bd7018,
0x2216cb5f, 0xdc8b34f8, 0x0bfb375f, 0xe6f4ffff, 0x00ff1566, 0xff00a004, 0x00800e00, 0x1000ff88, 0x15824861, 0x0b230f83, 0x4608707d, 0x0b20061b,
0xef26c683, 0x00ff48a1, 0x1e82e102, 0x0e83f120, 0xb87efb27, 0x00ff8408, 0x250b830d, 0xffb85ef2, 0x24840900, 0x8b00c022, 0xef203582, 0xff210682,
0x241683ff, 0x0080f6ff, 0x210a8284, 0x16820080, 0xe27af122, 0xa7276c82, 0xefffffae, 0x82889999, 0x9a99215c, 0x66210482, 0x21678668, 0x4283f4ff,
0xb81efd22, 0x6c831f82, 0x85810421, 0x201e826c, 0x204584f2, 0x206c86f6, 0x2220828b, 0x850800c0, 0x84798606, 0x208d8283, 0x242d8284, 0xff0060fb,
0x20a582ff, 0x2027828e, 0x849a829e, 0x82f427bf, 0x00ff0890, 0x1a824008, 0x82e0f721, 0xc00a21ef, 0xfb200982, 0xb4820986, 0x40040024, 0x9e828b00,
0x00222082, 0x20822001, 0x88820420, 0x60010022, 0x0023b882, 0x8215ee06, 0xcc8c21c3, 0xb322ef82, 0xd383ff32, 0x1000ff22, 0x8305d661, 0x21168206,
0x878414ae, 0x0a829220, 0x0021ea83, 0x21418204, 0x6282feff, 0xff205683, 0x3e210986, 0x826783b8, 0xd4421878, 0x84258307, 0x08002292, 0x83678320,
0x053861a8, 0x48e1022a, 0x5e1000ff, 0xfbffffb8, 0x217b0482, 0x820d2006, 0x060023ff, 0x6a84e2fa, 0x48828b84, 0x08208082, 0x98860685, 0xa2830d20,
0x0080f231, 0x3bf70892, 0x198b00ff, 0xc08b159a, 0x8256b660, 0xffff227a, 0x21e28260, 0x4682ffff, 0x82ffff21, 0x8209839b, 0x20ee8516, 0x08987c05,
0x66660522, 0x05205082, 0x20059b69, 0x5016822c, 0x232005d5, 0xd3223183, 0x3182cccc, 0x61e7ff25, 0x57ff8b48, 0xf420054a, 0xf1201683, 0xef772583,
0x66ed2b05, 0xffffaf66, 0xffcdccda, 0x1a831800, 0xcdccd422, 0xa8663183, 0xe6cd2605, 0xcdffff66, 0x223c83e1, 0x82b81ec2, 0xf8ff21b7, 0x00382382,
0x8400c000, 0x600100ff, 0xff088400, 0x00a0d9ff, 0x73f3ffff, 0xe4ffff34, 0xdc225583, 0x6a82cc4c, 0x0080d528, 0xb6568b08, 0x4b82c060, 0x612b002d,
0x00ff0648, 0x93b89e03, 0x830400ff, 0x66072568, 0x0600ff66, 0x08250486, 0x990d00ff, 0x3104829a, 0xff9d6866, 0x32b30700, 0x331300ff, 0x0000ff33,
0x1a833433, 0x0022fc82, 0x1f82190d, 0xcc4c1222, 0xcc201e82, 0x13200482, 0x8305ca41, 0x00ff2106, 0xff211683, 0x427982f8, 0xde2106db, 0x203582b8,
0x290f8213, 0x00c0ffff, 0xf8ffff9d, 0x5b820060, 0xff234582, 0x824881f2, 0x8306201a, 0xa6f921a9, 0x04208082, 0xf820dc83, 0x03237a83, 0x82830080,
0x662b2f1a, 0x8bc00666, 0xc08bb6b6, 0xffaf0e08, 0x34825e01, 0x80de002c, 0xffff1500, 0xffbe1ff9, 0x54832500, 0x42a0df25, 0x831c00ff, 0xbdd82209,
0x23dc8270, 0x00c0f3ff, 0xf425ef82, 0xffffb85e, 0x315083fd, 0x8648a1f5, 0xeeffff08, 0x00ff5d8f, 0xff343317, 0xf183e3ff, 0x1a830f20, 0x1b51df20,
0x71fd2106, 0xd4213182, 0x200082ff, 0x211182d5, 0x0d820856, 0x6b83ff20, 0xb5840020, 0x8207f341, 0x63db2644, 0xf7ffffd7, 0x204482d3, 0x225f83e4,
0x829a99df, 0x4cd9222a, 0x213183cc, 0xd782c0d3, 0x04822320, 0x26ddff22, 0x2c27cc82, 0x088b9042, 0x180694f7, 0x2407846f, 0xff90c223, 0x251e8200,
0x2b00ff8b, 0x4b829a59, 0xe0faff25, 0x852700ff, 0xffcc2490, 0x827f2000, 0xb3da277e, 0x0600ff34, 0xfb82cdcc, 0x6866d927, 0xb30100ff, 0x2bec8233,
0xff32b3b9, 0x33b3f2ff, 0x4cbfffff, 0x35202982, 0x00237583, 0x82008046, 0x28002775, 0x00ff48a1, 0x0482e115, 0x91822520, 0x9e230028, 0x1400ffb8,
0x40824821, 0x42800534, 0x200300ff, 0xfeffff00, 0x00ff7493, 0xffb83e08, 0x9e82f9ff, 0x83010021, 0xf7ff231e, 0x5f827e5f, 0x82be9d21, 0x323328cf,
0xc00000ff, 0x828b82fa, 0x1eb22295, 0x25d282b8, 0xffaec7c0, 0x2c82c2ff, 0x82fcff21, 0xb3ff2191, 0x0021b083, 0x210f831a, 0x60821ef4, 0x90821526,
0x0a00ff75, 0xff216b82, 0x256b84e4, 0xff482125, 0x1f82f1ff, 0x821a0021, 0xdeff228a, 0x212482de, 0x7a824006, 0x84a1d821, 0x4220218a, 0x22065b66,
0x828aec04, 0x5efa268f, 0x400500ff, 0x296f8200, 0x48a12c00, 0x2800ff8b, 0xb6827ad4, 0xff66262b, 0x3c0a1b00, 0x1e2100ff, 0x31c082b9, 0xff904204,
0x1cda0400, 0x99fbffff, 0x0700ff9c, 0xc0823333, 0xfe228e83, 0xa982cdcc, 0xb6821c20, 0x1935ff2b, 0x5b6b1599, 0xf8ffff05, 0x27b182a7, 0xff52f8f4,
0x10f80200, 0x17268b82, 0x0b00ff0a, 0x18827408, 0x08f6a822, 0x0b204682, 0xfd228c82, 0x0982ae47, 0x829a9921, 0x23468281, 0x34b30300, 0x07228183,
0x818242c0, 0x06a10725, 0x830300ff, 0x820420c1, 0x060027d6, 0xab08a4f0, 0x758205bb, 0x52825820, 0x82070b21, 0x07fd2c5c, 0x0e00fff0, 0xfffff6e8,
0x828cf7f4, 0x0a572118, 0xf5228482, 0x0a8264db, 0x827a5421, 0x9a192271, 0x226d8288, 0x828034b3, 0xe69f2316, 0x979b8b66, 0x97887320, 0xff9c2423,
0x209786ff, 0x2497db99, 0x08809a99, 0x2093922b, 0x082b4111, 0x8d2093d7, 0x24132b41, 0xffff8899, 0x249383f8, 0x07a0ffff, 0x419792ae, 0x978909c3,
0x41cf1721, 0xa121072b, 0x062b4148, 0x5c8f0422, 0x202dc341, 0x08c341ef, 0xf4229788, 0xc341dfef, 0xf6282107, 0x9e2a9783, 0x0e0880b8, 0xd4f734f8,
0xf145ff15, 0xcc4c2b39, 0xc02300ff, 0xd3ffff00, 0xf14534b3, 0x67e62125, 0x2107f145, 0xf14533b3, 0x8b992305, 0xf145ffff, 0xb8de2105, 0xc2220a82,
0xf1454821, 0xd4f72135, 0x46074645, 0x5b2306c9, 0x8215e4fb, 0x7de52550, 0x1500ff70, 0xff280482, 0xff9082ea, 0x90821a00, 0x46187782, 0x1e821810,
0xcfffff23, 0x263282fd, 0x8b0a9744, 0x828b088b, 0x02d02741, 0xbbffff90, 0xb0496666, 0xfb082305, 0x57848bd4, 0x0f6b4618, 0x7120578c, 0x0e684618,
0x16825786, 0x8f20578b, 0xf721578b, 0x85578534, 0xff7121af, 0x8f20af87, 0x579bafa2, 0x2040e541, 0x07f34540, 0x66a6d422, 0x2413e541, 0xff6626f2,
0x05d747ff, 0x9a99eb26, 0xdaffffaf, 0x2710e541, 0xff8bcd4c, 0x33b3cdff, 0xe5410482, 0x844f2d12, 0x5f0100ff, 0xff0884f3, 0x4ea2d9ff, 0x2307d747,
0xffffd23e, 0x260bd747, 0x192a00ff, 0x82c0609a, 0x3f012981, 0xff069a19, 0x6acb3600, 0x48053747, 0x262808ba, 0xffffcdcc, 0x159a191e, 0xd4304382,
0x0500ff7b, 0xffff1038, 0xffb8def1, 0xf45ffaff, 0xc7210482, 0x211882ae, 0x6782f2d0, 0x66e6d025, 0x830504fb, 0x82ef2012, 0x5ccf2112, 0xa4212b82,
0x262b8212, 0x00ff48e1, 0x8427300c, 0x8208202b, 0x5d4f2b95, 0x9efeffff, 0x0400ffb8, 0xce509919, 0x03002305, 0x83829a19, 0x4f090029, 0x00ff8bdf,
0x82a6db08, 0x20702b3a, 0xe80300ff, 0x0900fff6, 0x35828e17, 0x9a192f23, 0x225c82f7, 0x821e0600, 0x2b0c2338, 0x8379ff86, 0x190e2705, 0xf4ffff98,
0x308233b3, 0x82ce4c21, 0xa88a2383, 0xa9838bf5, 0xa9847d84, 0x99d7e321, 0xe2f922a9, 0x21a9824e, 0x3d823cca, 0x5d19a421, 0x00230508, 0x825c2f0c,
0x32b32130, 0x03227382, 0x2e447b14, 0x33032206, 0x21a98733, 0xa9a8f628, 0xf782b920, 0xfa24a983, 0x00ff9959, 0xf322a984, 0xa986ebd1, 0xa3ea0023,
0x20a98fd8, 0x22a999d8, 0x41f0c7fa, 0x02221b53, 0x5341c235, 0x49a98a06, 0x0922055c, 0x5341e04f, 0x41f4200e, 0x05220f53, 0xa9865238, 0x3233fb22,
0xcc21a987, 0x22a987ce, 0x84666675, 0x7ad421a9, 0x2007fd41, 0x21a988e3, 0xfd4190c2, 0x20a99311, 0x07fd4126, 0x2a1c0222, 0x3220a988, 0x22065341,
0x41ce4c02, 0xa9a00553, 0x1e050722, 0xfa21a986, 0x419f824c, 0xe6210553, 0x3ba98566, 0x00ffef0e, 0xff33b3ff, 0x66e63401, 0xf5ffff15, 0x00ff9a19,
0xff9a990d, 0xcdcceeff, 0x2105b94b, 0xca82ecff, 0xffff082b, 0x8b29dcde, 0x23e5ffff, 0x200483d7, 0x230a82d8, 0x088ec2df, 0xe6370682, 0x00ffa470,
0xff5c0f10, 0xeb51eaff, 0x851600ff, 0xf7ffff1f, 0x4808295c, 0x002305b3, 0x8215ae0b, 0x824c2051, 0x660a264c, 0x0f00ff67, 0x22788266, 0x82cccc07,
0x3303221e, 0x822e8234, 0x05444c6b, 0x0e831520, 0x99190f27, 0x331200ff, 0x286f8232, 0x67cd4c78, 0x00ff8b15, 0x20218330, 0x22368327, 0x84008026,
0x22f7830e, 0x82cdcc1b, 0x7d18271b, 0xf2ffff71, 0x808228dc, 0xff462126, 0xb8deebff, 0x15225782, 0x6782703d, 0xff86ab26, 0xe2fa1900, 0xa126c382,
0x1c00ff48, 0x35832a5c, 0x82020022, 0xff22b182, 0x3b82fcfa, 0x66820b83, 0x5983cc20, 0xd6630c23, 0x83488205, 0xf14a2c5f, 0xff8a056a, 0x7e4a0500,
0x83fbffff, 0x5803221b, 0x21098280, 0x3f823433, 0xf9fdff23, 0x2c3f8216, 0xff56eefd, 0x3e68ffff, 0x24feffff, 0x2104821a, 0x47823ab6, 0x146ec127,
0x94d4ffff, 0x2747827a, 0xffcc6cc1, 0x586b2b00, 0xfe200a82, 0x0126d483, 0xffff1c4a, 0xf882e6fd, 0xc2970023, 0x22478389, 0x82982efb, 0x6bfb2747,
0xfcffff43, 0x4c826ca7, 0x0e820c20, 0xc2b5fa22, 0xf2274782, 0xffffc275, 0x82ce0cb5, 0x07b5223c, 0x219482ae, 0x0a82a874, 0x04b6fa22, 0x0b212582,
0x212f825e, 0x8e82e9a6, 0x82e86a21, 0x2dfb2330, 0x06820892, 0x58f9fd27, 0x970000ff, 0x26638294, 0x00ff98ee, 0x82f64901, 0x9c242293, 0x20838208,
0x820a8268, 0x21408298, 0x408296d4, 0x3669c122, 0xfe210a82, 0x836182b5, 0x82c38298, 0x2198821f, 0x4783898b, 0xd92efb27, 0x580300ff, 0x265e82d5,
0x00ff446b, 0x82fc4905, 0x490c2172, 0x4a224782, 0x888233f3, 0x05c27527, 0x8a0d00ff, 0x209e833d, 0x240a82cc, 0xff9cf400, 0x239883ff, 0xdd940400,
0xa7269882, 0x0400ff2c, 0xdf8221d0, 0x06020029, 0x00ff8be9, 0x83aa1102, 0x82bc2098, 0xa6db2193, 0x4a210482, 0x224b820e, 0x82527813, 0x90822145,
0xfc228882, 0x935a0ad7, 0xfeff2305, 0x0982db39, 0x82a4f021, 0x5c0b2234, 0x238c8228, 0x862b1100, 0x07364d82, 0x1000fff0, 0x00ff6666, 0xffe71b07,
0x00c00e00, 0xe1ffff08, 0x4082dee4, 0x768dec27, 0x4c1e00ff, 0x333182cd, 0x08cc4c24, 0x80a601ff, 0xcdffff00, 0xff159a99, 0x0020f9ff, 0x8208af4c,
0x14af4c09, 0xffff8822, 0x8207ab4c, 0x18002b38, 0xffff4821, 0xffb8dee3, 0x04820f00, 0xdedfff2e, 0x56088bb8, 0xd4ffff8b, 0x8b6070fd, 0x211ba34c,
0x6f824a61, 0x82668621, 0x2346823c, 0x66e6deff, 0xda203482, 0x4c05b55e, 0xdc2109a3, 0x25868240, 0x8b90422c, 0xa482ff08, 0xff06fe26, 0x0c172d00,
0x2325b982, 0x00ffcccc, 0x21338322, 0x33842d00, 0x82260021, 0xe3ff2bec, 0x00ff34b3, 0xff018020, 0x2083daff, 0x33b30622, 0x09203782, 0x42225f83,
0xdf826666, 0x3c3ff822, 0xf82b6582, 0xffff2c67, 0xff7c3ffc, 0x8261fbff, 0x0ff92bbc, 0x5b6b08e0, 0xfdffff05, 0x1282de44, 0xff32e826, 0xaab1feff,
0x5f210982, 0x222c82be, 0x82d26dfb, 0x01002b43, 0xf1ffffc8, 0x00ff16ae, 0xb282e60a, 0x6c82f520, 0x460d0021, 0x07220545, 0x908200c0, 0x289c0722,
0x2c14984b, 0xff24bb02, 0xce170400, 0x4e0100ff, 0x21098254, 0x2c8242a0, 0x2e920424, 0x6082ff08, 0x00ffa82d, 0xff846b0d, 0x9819f5ff, 0x830b00ff,
0xe6f226a6, 0x2b088b68, 0x83aa848b, 0x69f8227d, 0x23aa8738, 0xffff285c, 0x0421aaa4, 0x21aa905a, 0x434c330c, 0x21aa8f06, 0x434cffba, 0xbb022209,
0x20aa8822, 0x23aa8c56, 0x0ce20000, 0x9a20aa88, 0x6620aa88, 0x3c26aa88, 0xf8ffff8b, 0xaa87ba69, 0xa6b85e21, 0xca0121aa, 0xa121aaa8, 0x21aaa648,
0xaa9b7edf, 0x83763e21, 0xf06721aa, 0x20160042, 0x190042dd, 0xaa9fcb20, 0x00422920, 0x00ff280f, 0xbb010020, 0x4100ff05, 0x0e2c3359, 0xbf00ffef,
0xffff9a19, 0x1566e6e0, 0xed27b382, 0x00ff0080, 0x82cc4c0f, 0x9a992485, 0x181000ff, 0x27082746, 0xff8b9a99, 0x66660e00, 0x0d5d0119, 0x0634f724,
0x3682074b, 0x1884ee20, 0x86f66821, 0x82112036, 0xff08262d, 0x70fd1f00, 0x8397828b, 0x2036830d, 0x303b8b64, 0x020000ff, 0x0514f79c, 0xe3a0feff,
0xffff06cc, 0x268483ff, 0x0566e680, 0x82be01ff, 0xde00270a, 0xff153433, 0x8e83ecff, 0x48611d27, 0xe3ffff05, 0x2a9982c0, 0xff00402a, 0xb8ded0ff,
0x831900ff, 0x47cd3409, 0xff088bae, 0x008013ff, 0xafffff06, 0x00ff9999, 0x821e4551, 0x21142c71, 0x00ff9f48, 0xaa008002, 0x83f0ffff, 0xe116302d,
0xffff0848, 0xff33b3fc, 0x0c200500, 0x83f8ffff, 0xbf0025dc, 0xfbfffff4, 0xff230982, 0x8200a0fb, 0x19d6271e, 0xd6ffff99, 0x6c82b81e, 0xf628d526,
0xe12a00ff, 0xfc287783, 0x00ff4761, 0x8500a003, 0x6020a382, 0xfd203a82, 0xfb227883, 0x3082f4bf, 0x9282f320, 0x5eedff2d, 0xffff8db8, 0xff48a1e6,
0x82601000, 0x9eef229d, 0x20fa82b8, 0x29258303, 0x8f00c0fc, 0xffff8f89, 0x5e83c0fd, 0x82e0fd21, 0x83fe201d, 0x82fd2017, 0x88f782d5, 0x261e840e,
0xffb85eb5, 0x839e9cff, 0xc0f82d7d, 0xf6ffff21, 0xffffe25a, 0x7e21e0fe, 0x5783b282, 0x3333f522, 0x0e275782, 0xffff4861, 0x820080e3, 0x840520e4,
0xb81e2515, 0x200b00ff, 0xf9244a82, 0x8b974821, 0x1e292182, 0xff06beff, 0x00800800, 0x2005828b, 0x24958221, 0x91006003, 0x20188291, 0x210c8326,
0xd382a122, 0x0a360030, 0x93ffff3e, 0xff05ffff, 0x9a195f01, 0xa282ff06, 0x00ff6424, 0x5683c04d, 0xa1831020, 0x83def321, 0x51fa20d4, 0xff22074e,
0xc18240df, 0x83040021, 0xa0f825c1, 0x0900ff00, 0x7682cb84, 0x82070021, 0x82188390, 0x831a2060, 0x8411202e, 0x2e083b60, 0x0400ff20, 0x958d70fd,
0x0700ff86, 0xfb08ce4c, 0x0d00ffe9, 0xff1533b3, 0xfc83efff, 0xcdccef22, 0x0320c182, 0xe9214583, 0x20758340, 0x21558200, 0x0f83fbff, 0x00c0fb26,
0xfcffff88, 0x0022dc82, 0x7582e001, 0xc6eaff29, 0x0a00ff66, 0x420532b3, 0xff23050e, 0x82ce4cf5, 0x83fb200a, 0x33fe2246, 0x272a8232, 0xff8e9999,
0x33b30000, 0x19217182, 0x8387829a, 0x16002156, 0xff2dcc83, 0xffcd6cef, 0x67261000, 0x00ff8805, 0x245d8202, 0x00c00100, 0x83278290, 0x827282b9,
0x2227822c, 0x840300ff, 0x820a2083, 0x140021f9, 0x26833783, 0x93821582, 0x60050025, 0x83ff8b01, 0x82938489, 0x210a2530, 0xebffff48, 0x16213084,
0x200a82e1, 0x263084fc, 0xffd60304, 0x824cffff, 0x9901236d, 0xc082869a, 0x3333fd26, 0x8b04f708, 0xde21f088, 0x21f0aeb9, 0xe58246a1, 0xb89eeb27,
0x5ef5ffff, 0x250a82b8, 0xff0060fc, 0xb882feff, 0xc0fbff23, 0x83f08300, 0x2004229d, 0x21f08e00, 0xf0820080, 0xbb482121, 0xa40020f0, 0x82de20f0,
0x4cff2499, 0xc100ffce, 0x23e583f0, 0x48a10a00, 0x269df040, 0xffff6406, 0x83cc4cff, 0x419c20f0, 0x380807e1, 0xb4f8af0e, 0x5e8201ff, 0x00ff15b8,
0x07d8e31e, 0xffffa48b, 0xffa430e3, 0x70fd0c00, 0xa3e7ffff, 0xf4ffffd8, 0xff080080, 0x507847ff, 0xc0a8ffff, 0x0f00ff00, 0x00ff3433, 0x33098299,
0x00801eff, 0x5ea1ffff, 0x00ff08b8, 0x07486100, 0x1100ff8b, 0xf1201683, 0x00220482, 0x1b82400e, 0x0040ee23, 0x833b828b, 0x05505406, 0x1b82ff20,
0xffff8b22, 0x16821082, 0xc2f5ff25, 0x820564fc, 0x82f7200e, 0x0700212b, 0xfe560482, 0xd9072205, 0x2735829a, 0xa4f02000, 0x0800ff06, 0x84053648,
0x676b1821, 0x07042609, 0x00ff5cf7, 0x2515835c, 0xffcccc26, 0x89826eff, 0x83bd0021, 0x844c20db, 0x830c208e, 0xfa0426a3, 0x0700ffe2, 0x22ad82b3,
0x8200800b, 0x4c0c2a9c, 0x07af08cc, 0x05d1ffff, 0x8282821e, 0xd8ff2da4, 0xffff5e8f, 0xff4821f9, 0xb89eddff, 0xff217382, 0x221582d7, 0x82200000,
0x14de22ba, 0x207c827c, 0x82098360, 0x080022f9, 0x21e5821e, 0x6683c2ff, 0x9a190f2a, 0x4cc5ffff, 0x0d00ffcd, 0xff345b82, 0x6333b39c, 0x2200ff08,
0xf1070080, 0xa12500ff, 0x4000ff48, 0xff242682, 0xffb81ef1, 0x22053e7e, 0x8200e0f0, 0x833c2020, 0x230a822c, 0x993b00ff, 0xf2254082, 0x00ff6666,
0x22b18363, 0x8266e627, 0x823d201e, 0x229a9f3f, 0x8fffff8b, 0x82202096, 0x8296865a, 0x24968d6f, 0xffd7ffff, 0x209a84ff, 0x829a8401, 0x219a9095,
0x9a8548e1, 0x968fec82, 0x82cccc21, 0xd9442b1a, 0xffff079a, 0xff0040c6, 0x3f82e8ff, 0x59d5ff22, 0xf820bb82, 0xdc296a83, 0x088b9a99, 0x0ac1ffff,
0x3196823e, 0xff5c0fc8, 0x0a171b00, 0xb3feffff, 0x0000ff32, 0x3b823e4a, 0x0040212c, 0x2b00ff07, 0xffff66e6, 0x1f828ff4, 0x34333a2a, 0xa3ceffff,
0x9900ffd8, 0x002d1382, 0x0884ab42, 0xffff14fc, 0x1548a1b5, 0xb39018ff, 0x1800200a, 0x2011924f, 0x837f8207, 0x050e4216, 0x15425a82, 0x13ec6f09,
0xffcdcc22, 0x54821683, 0x8b333325, 0x8bcb8b08, 0x8b92245e, 0x848b0894, 0x00ff2147, 0x5b835685, 0x56ae4f83, 0x8353cb21, 0xcd4c2156, 0x083c9018,
0x2111a270, 0x6382cd4c, 0x829a1921, 0x82b3206d, 0x82068587, 0xcd4c2411, 0x82828b84, 0xf7ff2384, 0xa8823433, 0xcc21ad84, 0x24ad87cc, 0xc03f00ff,
0x2ab1d400, 0xff01ff0e, 0x01ff6666, 0x82ae47ab, 0x5ef4255f, 0xd9ffffb8, 0xff21fc82, 0x340483e9, 0x7032f3b6, 0x00b4ffff, 0xff920801, 0x00e0fdff,
0x610600ff, 0x05af4548, 0x83050021, 0x60fe2820, 0x00ff0800, 0x8200a004, 0x22048214, 0x82c00300, 0x9ffc2609, 0x0100ffbe, 0x222882c1, 0x82bf9ffb,
0x8201201e, 0xfbff2138, 0x2208505b, 0x82befffa, 0x2728834c, 0x0842c0fb, 0xdee9ffff, 0xd5207382, 0xc3200f83, 0x91262383, 0xffff3273, 0x3d8221c4,
0x6866c224, 0x58828a08, 0xfe203e83, 0xfe293483, 0x8a8a00a0, 0xffff3f08, 0x233283b3, 0x8b9a9984, 0xe6260a82, 0x4c00ff66, 0x48824801, 0x00271583,
0x8b48214c, 0x827b00ff, 0x820a83c7, 0x3433241a, 0x828c8c08, 0x0060218f, 0x20220583, 0x91828c00, 0x2e723d3a, 0xd83b00ff, 0x6e00ffd4, 0x00ff6766,
0xffae873c, 0x9a992900, 0x211600ff, 0x00214882, 0x28da8204, 0x00400200, 0x0000ff90, 0x20f48240, 0x82f48604, 0x83042039, 0x20fe21a2, 0x03211482,
0x20ea8360, 0x83ea833f, 0x7efb2209, 0x211e82fa, 0x1482a001, 0xb082fa20, 0x28055b47, 0xffb87ef9, 0x00200200, 0x281a8284, 0xa648e14b, 0x054900ff,
0x8265821e, 0x260021ec, 0x82068344, 0x8305201a, 0x8301200f, 0x83062004, 0x80fe23f7, 0x8384ff14, 0xbffbff23, 0x261e83ec, 0xffff3c2a, 0x828ae1fb,
0x9899348d, 0xc1f9ffff, 0xffffff06, 0xffffce4c, 0x08b85efa, 0x823fffff, 0xd5fe2448, 0x8215b89e, 0xa14626f7, 0xc6ffff48, 0x2875829e, 0xffb85e39,
0x4861b9ff, 0x2321828b, 0x8b0040b9, 0x60821682, 0x0a821b83, 0x08201782, 0x3d240683, 0x3900ff70, 0xff22e182, 0xeb82c2c6, 0x00c04622, 0x00212d82,
0x25e28347, 0xff9a19ff, 0x09823800, 0x33390023, 0x26588234, 0x0832b347, 0x82ab14fb, 0xeeff2163, 0xf1205983, 0x04846883, 0xce450e82, 0xd556180d,
0x2038820a, 0x208c8311, 0x7263820e, 0x1120050e, 0xc8496385, 0xfcff2b09, 0x859100a0, 0xff859108, 0x58830300, 0x9af9f622, 0xf8229982, 0xf8826666,
0xcccc2023, 0x2771833b, 0xffbe1ff7, 0xa8c6f8ff, 0xe0260482, 0xf7ffff42, 0xbf180641, 0x842010cb, 0x08226a82, 0xd5827cdf, 0x82080021, 0x07002123,
0x0720bf83, 0x00233782, 0x8247e108, 0x0800232d, 0x22823eca, 0x3333072b, 0x08838b83, 0x54f7af0e, 0x2659845b, 0x00ff3433, 0x82cd4c07, 0xcccc2159,
0x22058b43, 0x8206ab08, 0xcdcc2108, 0x91182d85, 0xf7310be5, 0x064b0744, 0xf70744fb, 0x1584f8f4, 0x84fc066b, 0x11a64607, 0xdf830820, 0xc01a4184,
0xf8211342, 0x090f4764, 0x0f476f83, 0x34332605, 0x74fc088b, 0xc74018fb, 0x34f72c5d, 0xffff152b, 0x069a19cd, 0x83d2ffff, 0x2d25087b, 0xff053433,
0x66e6f3ff, 0x330c00ff, 0xefffff32, 0x00ff33f3, 0x7a9a9906, 0xffff088b, 0x060040ed, 0xe1eeffff, 0x2be18248, 0xffb8deef, 0x3433f9ff, 0x7f087f7f,
0xe1213082, 0x210d8248, 0x3082ae47, 0x8265e621, 0xdeee2e1d, 0xffff08b9, 0xff52f8ff, 0x662600ff, 0x05c74705, 0xe947ff20, 0xc0f12505, 0x1100ff00,
0x220bd36b, 0x84b85e0e, 0x0515481b, 0x00ff0829, 0xffb91e00, 0x82b36400, 0x0000238a, 0x415c00e0, 0x82002006, 0xffff2237, 0x853c8220, 0x00a02113,
0x1d212982, 0x25788221, 0x05cc0cd5, 0x64920753, 0x8200c021, 0x110023b6, 0xd918b99e, 0x402108d1, 0x22648800, 0x82008038, 0x05de4b33, 0xe84bfd20,
0x83fb2008, 0xde082209, 0x20be82b8, 0x2de282d6, 0x00403d00, 0x5000ff05, 0xff0748a1, 0xe5831400, 0xb81eeb22, 0x092c1082, 0xffff852b, 0x9748e1f6,
0x0c00ff86, 0x2305b245, 0x06008039, 0x7382d882, 0xd18bcc84, 0x2108ee48, 0x1684cdcc, 0xeeffff32, 0x088b3333, 0x1554f76b, 0xcb0734fb, 0x0754f706,
0x0fc2c418, 0xff2c4683, 0x080040ee, 0xff158beb, 0x00801f00, 0xe62bfa82, 0xffff0566, 0xffb81ee1, 0x836665ff, 0xaefb270a, 0xeaffff14, 0x75826866,
0xffce4c2b, 0xcc4cefff, 0x661200ff, 0x20f38366, 0x27e8840f, 0xff70bd0c, 0x00200900, 0x29053844, 0x48411500, 0x0100ff08, 0x2b825c0f, 0x5b554582,
0x82f22005, 0x1100235a, 0x35839a19, 0xbc951120, 0xbc418783, 0x0657410c, 0x37082d93, 0xfb0734f8, 0x076b0654, 0xc4f72f0e, 0xffff15db, 0x06cd4cc8,
0x732600ff, 0x5900ff33, 0xff0534b3, 0x20f00200, 0xdb0600ff, 0xfdffffe8, 0x00ffdcc7, 0xff22fb07, 0x24f8f9ff, 0x6322a282, 0x0a8208d8, 0x826ce721,
0x826c200a, 0xbef72609, 0xfffffffa, 0x2928829b, 0xfff668fa, 0x1214fbff, 0xef82fb08, 0x83e69021, 0xf7fa22fa, 0x8312828d, 0x40fe271c, 0xf8ffff00,
0x598274f3, 0x82115821, 0x1ec5213f, 0x0222e382, 0xf35e9358, 0xf7052206, 0x212882cf, 0x7382b8de, 0x83f0a721, 0xab372be3, 0xffff06c7, 0xffcd8cd9,
0xda6ba6ff, 0xdf0f2105, 0x24212b82, 0x21408218, 0x4a822438, 0x82de0421, 0xdc07212b, 0x9c213582, 0x214a8328, 0xaa8287d6, 0xffccf024, 0x77740300,
0x8ab81807, 0xf0c72208, 0x2616828b, 0x00ff00c0, 0x82f85301, 0xbeff213f, 0xa0290482, 0x14f70800, 0x196f00ff, 0x22ed829a, 0x82720805, 0x826420ce,
0x8301205c, 0x0c072226, 0x214c828c, 0x6182f0a7, 0x08e23a26, 0x87feffff, 0x07270a82, 0xffff4e2d, 0x829a19fa, 0x21048228, 0x406bf9ff, 0x4c452105,
0x8d237282, 0x82156666, 0x9a99222b, 0x231c8595, 0x34b30b00, 0x0c237282, 0x820866e6, 0x61232406, 0x6effff48, 0x9e21058e, 0x059e6eb8, 0xfa235382,
0x82060020, 0xccac2195, 0x02253382, 0x00ff3433, 0x2333840a, 0x08cc4c0b, 0x2908135a, 0x8b66e6fa, 0xffffff86, 0x05850040, 0x0931e782, 0xffff6766,
0xff48e1f2, 0x33b30500, 0xffff8b7b, 0x058677ee, 0x83ded321, 0x2198835a, 0x6e8221dc, 0x3982d320, 0x067b0822, 0xa1216d82, 0x21248247, 0x1d825ee3,
0x6666e322, 0xdc220a82, 0x94829a99, 0x1ef3ff23, 0x26ab82b8, 0xfffff41d, 0x82cd4cf4, 0x5f9a2cbb, 0x07f6ffff, 0xffff08ae, 0x828f42d5, 0x00402b0a,
0x05e0ffff, 0xdaffff1f, 0x35820100, 0x9683d220, 0x6818ff20, 0xff2a1417, 0x3eca0c00, 0xfbffff06, 0x51828df7, 0xfffc6926, 0x707dfcff, 0xe7260982,
0xfdffff6c, 0xa882fed4, 0x0832c826, 0xfdf8ffff, 0x12221482, 0x0f82d6a3, 0x715d2b08, 0x511500ff, 0x0e00ffec, 0x00ff0af7, 0x085c0f0d, 0xe67f00ff,
0x6f00ff67, 0xff0566e6, 0x0ecd0800, 0xc70700ff, 0x0b00ffaf, 0x2e823233, 0xff99192b, 0xcecc0a00, 0x19ffffff, 0x2829829a, 0x8ba4300a, 0xc20900ff,
0x21688290, 0x2e8275d3, 0xff5c4f26, 0x93f8f9ff, 0x12271a82, 0xffffe23a, 0x82e1baf2, 0xae8730cf, 0x2be9ffff, 0xf7ffff85, 0xffff4821, 0x82d863ea,
0xabec2582, 0xd2ffff86, 0x07286384, 0xff06ec31, 0xd8e31300, 0x12214a82, 0x2040820f, 0x27b383f3, 0xff50f806, 0x6866edff, 0x07274a82, 0xffffd443,
0x827c1fef, 0x34b321d7, 0x33201482, 0xf4220482, 0x5e829a19, 0x82cccc21, 0xe60c221e, 0x25c31866, 0x26518217, 0x6b34b32d, 0x822500ff, 0xd5ff23b1,
0xac82cc4c, 0x0833b327, 0x01ffef0e, 0x280c8238, 0xf6e89f01, 0x51ffff15, 0x2dd0824c, 0xffb8defb, 0x666676ff, 0xeb6cffff, 0x14838b86, 0x2108cc23,
0x20088207, 0x236e82f7, 0xfc290700, 0x08948819, 0x468b0421, 0xd72105da, 0x225e820a, 0x46f62807, 0xff240bda, 0x66e66a00, 0x00263582, 0xff33338f,
0x04837500, 0xcd4c7823, 0x230e84ff, 0x9a99fdff, 0x8b20ae82, 0x0a82b983, 0x7000ff29, 0xffff0080, 0x8299198e, 0x4c742264, 0x905018cd, 0xc1941807,
0x84941818, 0x04f72112, 0xb3216b83, 0x82b583e6, 0x90002acf, 0x48fb9042, 0xc0fbffff, 0x27688200, 0xff343301, 0xd7e33fff, 0xbb20e182, 0xff268382,
0xff9999fc, 0x9282cbff, 0xb3c4ff23, 0x28738234, 0x083233bb, 0xb393ffff, 0x83e58934, 0xccf8221c, 0x05b747cc, 0x2219c047, 0x846d00ff, 0x22003735,
0x00ff5c0f, 0xff66a619, 0x3eca1d00, 0xfd2100ff, 0x0200ff72, 0x7c828e42, 0x8e422522, 0x7d240a82, 0x1f00ff70, 0xe222ef83, 0x71826866, 0xcc4cdb22,
0x4826e5b9, 0xff4e34b3, 0x9d823a00, 0x80b6ff28, 0xfcffff00, 0xbe82cd4c, 0x34b3ff27, 0x196000ff, 0x22e48299, 0x82323386, 0x66662b15, 0x99a0ffff,
0x98ffff9a, 0x7282cecc, 0x9a198622, 0x94222582, 0xe4b2cccc, 0x9a196c22, 0x00273582, 0xffd6a356, 0x823d4300, 0xdc4926ca, 0x5600ff2a, 0x20f3828f,
0x2b7c8203, 0x0300ffe6, 0x00ff6566, 0x4234334b, 0xa5226982, 0xdcb934b3, 0xcdcc7d25, 0x8297ffff, 0x650028db, 0xffff67e6, 0x82686681, 0x332208ca,
0xef0e0832, 0x01ffb4f8, 0x1566e600, 0x5800ff8b, 0xffffb85e, 0xff4861b8, 0xe2ba4600, 0x85a8ffff, 0xdb828b1e, 0x34331e24, 0x0d85058b, 0x47201d83,
0x66210482, 0x3a8f8266, 0x080080a8, 0x060000ff, 0xc0ffff66, 0xff051f05, 0x98191f02, 0x3f00ff06, 0x8207e1fa, 0x00e03316, 0xfeff158b, 0xffcc4c90,
0x34b31400, 0xecffff15, 0x04820040, 0x0548a126, 0xc00400ff, 0xe4220a82, 0x0a8200c0, 0xf3bf0026, 0x20fbffff, 0xfa250f82, 0xffff0de0, 0x262483fc,
0xff00a0fb, 0x82600200, 0xe7ff225d, 0x2d0a8280, 0x05b8de0c, 0x73e7ffff, 0xf3ffff33, 0x0a823333, 0x1ec5fb2a, 0x99fdffff, 0xfaffff99, 0x00234982,
0x8234b303, 0x22098370, 0x82cccc05, 0x225e8392, 0x82401b00, 0x2174845e, 0xc0521300, 0x24d78305, 0x8d7c9402, 0x21808291, 0x3182b8de, 0x8232b321,
0x611b232c, 0x87828f48, 0x78820c20, 0x83180021, 0x02002168, 0x00218d82, 0x20788304, 0x22048206, 0x82e0ffff, 0xfe012282, 0x20a682b9, 0x239282a0,
0xe13a0c00, 0x21208c82, 0x1b25c783, 0x05876666, 0x05e34b90, 0xe6010024, 0x3d7c8567, 0x80fc2106, 0x8f232883, 0x9a8bffff, 0x88f220f7, 0x920e20f7,
0x827320f7, 0x83f786d2, 0x83f32084, 0xfbff236f, 0xf782cdcc, 0x8284ab21, 0x33b322f7, 0x82f786ff, 0x86002013, 0x231483f7, 0x0566661a, 0x87056c41,
0x826020f7, 0x800328bf, 0x00ff8d00, 0x827eff05, 0x22cf83fb, 0x833a9f00, 0x666621fb, 0x02210f82, 0x20ffa390, 0x20ff89b8, 0x22ff88e2, 0x8287b85e,
0x0705223b, 0x080341ae, 0x03416620, 0x24f7210b, 0x41390041, 0x00410af8, 0x00c0250a, 0xa0fdffff, 0xf8410482, 0x220e8205, 0x82c00000, 0xe00422df,
0x19f84100, 0x211a0041, 0xfc41b85e, 0x20fc8924, 0x207b8240, 0x05fc41e7, 0x0422fc85, 0xfc8272fd, 0xff486125, 0x8ce60100, 0x00ff3dfc, 0xff34b39f,
0xcc4c6bff, 0x058b6b15, 0x33f7ffff, 0xffff8b74, 0xfff4b2f9, 0x0ecdf8ff, 0xf8290a82, 0xff085819, 0x9002c0ff, 0x220c8207, 0x828440f7, 0x23ca8217,
0xe2a5f9ff, 0x26220982, 0x1c828b68, 0x07e96018, 0x00ff6826, 0x8b004007, 0xd9210582, 0x2216829a, 0x48fcf7ff, 0xfd2206cc, 0x63825bdd, 0x70fdff28,
0x60ffff05, 0x0b5966e6, 0x66662109, 0x2006af5e, 0x05094b10, 0x82da4021, 0x33fe2255, 0x090f5934, 0x59a47021, 0x3f2d0d0f, 0xff07e2fa, 0x9919bf00,
0x040000ff, 0x864f8254, 0x055b5999, 0x59285c21, 0x40220d5b, 0xf6823e0a, 0x88acfc21, 0x800d224f, 0x224f8700, 0x8334b310, 0x54f526a4, 0x026000ff,
0x20218290, 0x212c8420, 0x5482d8ff, 0x00c0d422, 0xd63aa483, 0x00ffc235, 0xfff6e81d, 0x90c2d9ff, 0x912900ff, 0xfbffffea, 0xff0814ae, 0xe0833100,
0xc018fb2c, 0xb32800ff, 0x2500ff34, 0xf6829a99, 0xcccc2f22, 0xa1831a82, 0x07220c82, 0x2a4784eb, 0x9a193807, 0x33f7ffff, 0x0e088b34, 0xf724f7ef,
0x00ff1534, 0x069a199c, 0x821600ff, 0xecff228c, 0x2a3f8233, 0xff32331d, 0xccccf3ff, 0x5c2000ff, 0x0683051d, 0x0c207a82, 0x0c211182, 0x27b28240,
0xff48a116, 0x00c01300, 0x3c225f82, 0x3b82b81e, 0x68e63d22, 0x32266482, 0x00ff9819, 0x7c831932, 0xd9493d20, 0x24068205, 0xdecdffff, 0x2b1684b8,
0x21c2ffff, 0x79088b48, 0xefffff8b, 0xff244582, 0x7c0060fb, 0x81219482, 0x2ff88248, 0xff9ad9e6, 0x1e052e00, 0xb3d1ffff, 0x1e00ff32, 0xc920a483,
0x62207c83, 0xdb202d82, 0xee252d83, 0xffff00c0, 0x210483e5, 0x788280e4, 0xcce5ff26, 0x1b00ffcd, 0xdb29b383, 0x00ff3333, 0x62004011, 0xc90e198b,
0x83bf2008, 0x82048217, 0x82b0203c, 0x5406852d, 0x168206a5, 0x4f00ff30, 0x088b0080, 0x1544fb83, 0x198fffff, 0xee820699, 0x8233b321, 0x82f52025,
0xf5ff214a, 0x10837782, 0x82083221, 0x83f32011, 0x820a208e, 0xf3ff286b, 0x00ff6866, 0x82cd4c0c, 0x70002365, 0xf58267e6, 0x82330d21, 0x83002033,
0x2404821c, 0x00ff8bcc, 0x05047b0d, 0xff200682, 0x95824582, 0xcccc0a26, 0xccf2ffff, 0xf8253382, 0xfc15eb74, 0x836882a4, 0xa11d850d, 0x82f82068,
0x18548330, 0x8207a671, 0x220a824e, 0x82ce4c0c, 0x258a8299, 0xf6ffffce, 0x94829c19, 0x83989921, 0x8bcc2a65, 0x152b4b08, 0x19bffeff, 0x23d0af9a,
0x66e64001, 0x3420d084, 0xf5226a99, 0x6a8b3433, 0x82f70e21, 0x197d290e, 0x00ff159a, 0x0766e6d2, 0x08213782, 0x06db53b3, 0x4c070022, 0x2307db53,
0x33f7ffff, 0x1224a218, 0x2dffff2d, 0xff079a19, 0x6666edff, 0x83f9ffff, 0x99f22d04, 0xeeffff99, 0xff8b6666, 0x9a19ebff, 0xff24df82, 0xff0080e5,
0x21293f71, 0x4982e614, 0x9a99f225, 0x821100ff, 0x31588404, 0x9a990600, 0xff94f708, 0x66e64201, 0xcbffff15, 0x5c82b81e, 0x48e1d426, 0xded4ffff,
0xcb200a83, 0x82058d68, 0x00ff2306, 0x1685212b, 0x3400ff22, 0x08201b82, 0x16850685, 0xdd821b83, 0x95821782, 0x3f821e83, 0x32856c82, 0x9a19cb27,
0xfb8b088b, 0x575f8214, 0x002109f2, 0x089e4f0e, 0x8306314f, 0x05794e11, 0x23520020, 0x09a24e06, 0x4f0a2058, 0xff2306fa, 0x58ccccf1, 0xee28063c,
0x088b3433, 0x159b34fb, 0x3d204882, 0x4c43ba83, 0xb81e2105, 0x85064c43, 0x05634306, 0x1b82ff20, 0xc2204182, 0xff25d682, 0x008059ff, 0x05d24607,
0x40e7ff27, 0xf3ffff00, 0x200482c0, 0x209782e1, 0x23c58269, 0x0080b0ff, 0x43100d43, 0x16850514, 0x80400023, 0x22718200, 0x8200804f, 0x2100232d,
0x40859a19, 0xc71f0023, 0x275485ae, 0xb89e1800, 0xa600ff08, 0xfb236582, 0x82e4fb04, 0xded322fe, 0x277c82b8, 0xff4821dc, 0x48e12300, 0x2c223c82,
0x3c83b81e, 0x6a831920, 0x82820c20, 0x61170022, 0x23053544, 0xde0e00ff, 0xc0223c83, 0x5e18cc4c, 0x6f181723, 0xff230b9e, 0x693473ea, 0xff28069d,
0x34b33fff, 0x1300ff07, 0xf120cc83, 0x58835383, 0x80e8ff22, 0xff21ac82, 0x26ac84e6, 0x32f3d3ff, 0x83dcffff, 0x240484b1, 0x8b66e6d3, 0x0aab4208,
0xab421220, 0x1eed2232, 0x08ab42b8, 0xff20c382, 0x2357ab42, 0xd200ffeb, 0x4105544a, 0x8021f8ea, 0x09ea4100, 0x4168e621, 0x5e2112ea, 0x412082b8,
0xd42107ea, 0x10ea417a, 0xf8a4f723, 0xbcec4354, 0xf8af0e29, 0x1504f874, 0x1900ff8b, 0x20143135, 0x966018b4, 0xeaff210c, 0x09ebd218, 0xf807c43f,
0xc4f70614, 0x9affff07, 0xffff66e6, 0x153433a9, 0x0504fb33, 0xf8fbffff, 0xfaffff10, 0x310483d8, 0xfffff007, 0xffd0b7fc, 0x5278f9ff, 0x60ffffff,
0x05820840, 0xffe23a26, 0x12c30000, 0x19280982, 0xffff8b9a, 0x8b6666fe, 0xfa221682, 0x0c82f047, 0x4e82fa27, 0x040200ff, 0x294582de, 0x00ff47a1,
0x0800c003, 0x5382bb53, 0xaec7f627, 0xbb0700ff, 0x822e8222, 0x05205d6c, 0x9a990838, 0x00ff0895, 0xfff0a708, 0x5c0f0a00, 0x270f00ff, 0x0100ff6c,
0x0e824821, 0xffae0726, 0x6c67f7ff, 0x242c1e82, 0xffff51f8, 0x055c4fe0, 0x874800ff, 0x5c224482, 0x0a82ae47, 0x20300822, 0x68212582, 0x213482f6,
0x34823c1f, 0x3e82cf20, 0x48610a22, 0xd7213482, 0x2034828e, 0x22ae830a, 0x82a0daf7, 0xcecc2419, 0x82f0ffff, 0xf7ff2873, 0xffffcccc, 0x829a99f5,
0x19952d1e, 0x86ffff9a, 0x7b15cccc, 0x0704fb06, 0xf727b682, 0xfffffc29, 0x8604d6f8, 0x240e8204, 0x34fc088b, 0x214e8206, 0x1e82f628, 0x0ad7f822,
0x230b1f50, 0x7b0704f7, 0xeb181b82, 0x62180960, 0x002413f9, 0xff717d15, 0x2606ca77, 0x088b8f82, 0x180674f8, 0x18167a74, 0x85088b62, 0x1815202d,
0x24087c56, 0x02ffaf0e, 0x28b58225, 0x0080d200, 0xe0ffff15, 0x22f382c5, 0x8210b805, 0xd6633ecf, 0x570e00ff, 0xffffff4c, 0x00ffc2b5, 0x08004000,
0xbaf3ffff, 0x0c00ffe2, 0xffffa430, 0x20ee83eb, 0x290483ff, 0xff6866f3, 0xcd4cf4ff, 0x2a828a08, 0xff00102a, 0x28dce7ff, 0xf0e9ffff, 0xcf230982,
0x828bf668, 0x85068335, 0x16002316, 0x25825c0f, 0x829a5921, 0x5c8f2150, 0xf3221a82, 0x50825ccf, 0x87af4721, 0x20898250, 0x205092ff, 0x20508829,
0x215085f5, 0x50828bf5, 0xa186eb22, 0x4c214c82, 0x214c82cc, 0x4c839a99, 0x82cdcc21, 0xcd4c214c, 0xf3214c82, 0x84198233, 0xd763219d, 0x19209d82,
0xff221e83, 0xee569959, 0xf0ff2105, 0xf1211483, 0x250e8299, 0xff8fc2e0, 0xbc82faff, 0xeeffff29, 0xffffb89e, 0x82dfcffc, 0x717d2b2e, 0x59efffff,
0x0300ff17, 0x1884852b, 0x0a820820, 0x84213021, 0x00ff240a, 0x828d9710, 0x3e4a2623, 0x781100ff, 0x21188252, 0x1e82b85e, 0x7b54192a, 0xa30400ff,
0x1300ffd8, 0x00265c82, 0xff32b308, 0x1e830d00, 0x66e60722, 0x13221e82, 0x33820080, 0x1f2c0f83, 0xffff52f8, 0xff9ad9f2, 0xec912c00, 0x0029cc82,
0x8bcd8c2c, 0xf01f00ff, 0x213082a3, 0x3f82b81e, 0xff908226, 0xae870b00, 0x85213583, 0x2135871e, 0x358216ee, 0x82a4f021, 0xcc8c2135, 0x94213584,
0x2135837c, 0x358250f8, 0x820a1721, 0x86608235, 0x24768335, 0xe00ff8ff, 0x2d8a82ff, 0xf7ffffd6, 0x00ff6851, 0xff7c5419, 0xa984fbff, 0x5c8f1127,
0xa0fcffff, 0x84c88200, 0x10b82133, 0x3020c382, 0x11235982, 0x82084260, 0xc435210a, 0x2e83d882, 0x1e83f420, 0x33b31022, 0x9921f682, 0x28188298,
0x8b083333, 0xcc6fffff, 0x222742cc, 0x42aec721, 0xe8220727, 0x4082fff6, 0xffff1425, 0x826666f3, 0x484127cc, 0xfeffff08, 0x1482a6f0, 0xff721d25,
0x82e6e7ff, 0x83e92014, 0x43cf2004, 0x068305e2, 0xde221682, 0x2b42ffb8, 0x26548411, 0xffff0040, 0x8286ebeb, 0x2323823f, 0xf468f3ff, 0xf8215488,
0x21148254, 0x54b8e21a, 0x82a4f021, 0x22ae833f, 0x82d763f3, 0x0e2f2154, 0xff22a982, 0x14820358, 0xfffc6735, 0xde62f0ff, 0xa7f1ffff, 0xe0ffff60,
0xffff1fc5, 0x82ae47fa, 0x0633421e, 0x3342e020, 0x42162008, 0x33210d33, 0x2bfb82f8, 0x00ffc09d, 0xffd59810, 0xcc4cf4ff, 0x2c073342, 0xff086666,
0xec511900, 0x990400ff, 0x0833429a, 0x33423420, 0x02202516, 0xf2ffff90, 0x33429a82, 0x65e6210e, 0x0f213082, 0x0d33425c, 0x82008021, 0xae872269,
0x263182ab, 0x00ff66e6, 0x429a992c, 0x7a26052f, 0x1f00ff8b, 0x2f4286eb, 0x83122006, 0x05654276, 0x271e2f42, 0xfff46812, 0x48a1fcff, 0x20072f42,
0x21a582b3, 0x04823303, 0xc4841120, 0x74820a87, 0x00217982, 0x21578210, 0x2f42eeff, 0x08322c05, 0xfafffdff, 0xe100ffe0, 0x8215ce4c, 0x7b5421ee,
0xa021ee82, 0x20ee8700, 0x43b882af, 0xf0210522, 0x752243a4, 0x2243de20, 0x436a2008, 0x2c202c22, 0x1122ae82, 0xf2824861, 0xffe87b2f, 0x66a61000,
0x9feeffff, 0x0300ffc0, 0x45c88230, 0x1b432043, 0x0943451b, 0xf2442a20, 0x44f42008, 0xf42605f2, 0xe7ffff8b, 0x17432adc, 0x4550892e, 0xe1211543,
0x2150824a, 0x47451e05, 0x05944507, 0xffcdcc26, 0x00400c00, 0x43074745, 0xdf840913, 0x20054745, 0x45f48266, 0xa8230547, 0x45fffff6, 0x13430547,
0x68312624, 0xa1eeffff, 0x08134348, 0x1343ce20, 0x2f0e240a, 0x839c00ff, 0x3324287d, 0x00ff1534, 0x8452381f, 0xff052a04, 0xc2f5c3ff, 0x173500ff,
0x270a820a, 0xffc2b5cb, 0x52b8cbff, 0xf12b0a82, 0xffffa4f0, 0xff52f8f1, 0x8270feff, 0xb3e93a09, 0x0b00ff32, 0xffff15ee, 0x089a19f0, 0xff054bbb,
0x67e60700, 0x80f5ffff, 0x20d08200, 0x20d08200, 0x5b0984fa, 0x082d0591, 0xff8b5258, 0x5c6f0800, 0x9b0200ff, 0x272a82e8, 0x00ffa430, 0x08186405,
0xb0209082, 0x0d210a82, 0x21358240, 0x1e828f03, 0x7c141926, 0xc0f2ffff, 0x112a0e82, 0xff0884ab, 0x7bd4e4ff, 0xa28200ff, 0x43275f82, 0x00ff3333,
0x8232b3fc, 0x402c22ad, 0x224f8200, 0x7a70bd23, 0x11820b92, 0x98592b26, 0x4fdcffff, 0x24214782, 0x76fb82a6, 0x068306ba, 0x4c211682, 0x830482cc,
0xd4ff2638, 0x8b0866a6, 0x820683ff, 0xcdcc263f, 0x59dbffff, 0xb54d189a, 0xb3b82708, 0x0e00ff34, 0xda829a19, 0x9683f320, 0xb81e1225, 0x82e7ffff,
0x04002704, 0xffff9042, 0x0e82deed, 0xb85ef322, 0xd7219b82, 0x2e0a825e, 0x050080e3, 0x5ecbffff, 0xffff66b8, 0x82ae87b8, 0x4ccb2356, 0x1d86b0cd,
0x841c0021, 0xf5ed261d, 0x0c00ffc3, 0x232182a6, 0xff4821e7, 0x8205c06a, 0x8279205b, 0x82498225, 0x66e62553, 0x610400ff, 0xe7211a82, 0x2c888219,
0xff000012, 0x3333f3ff, 0x2800ff08, 0x083c6aa1, 0x99190c27, 0x99f7ffff, 0x21e1829a, 0x2f8266f9, 0x824c0d21, 0x4ffa20b8, 0xda34052c, 0xf7053333,
0x00ff0654, 0xff0e0000, 0xc2b52500, 0x0d00ff05, 0x0522bc83, 0x7982f4dd, 0xff52f826, 0xed9c0600, 0xc6830982, 0x5d8f0822, 0x9e855986, 0x21120023,
0x211a823a, 0x838200c0, 0xffcc4c24, 0x8d821800, 0x4cf3ff26, 0x1200ffce, 0xff225d82, 0x1482a7ff, 0x9949ff24, 0x1a42159a, 0xcaff2305, 0x5e82f6e8,
0x52381f27, 0xc7e0ffff, 0x25fc82ae, 0xffecd1e4, 0x7483dbff, 0x82f2ff21, 0xeeff3345, 0x00ff7a54, 0xff9e8f03, 0x86ebe6ff, 0xb01100ff, 0x1883ff62,
0x07267482, 0xffff3433, 0xe38299fa, 0xc2820820, 0x82fdff21, 0x07002404, 0x828b0080, 0x280c231a, 0x85828bf6, 0xffae0733, 0x18840500, 0xd70700ff,
0x0a00ff0a, 0xbb08e87b, 0x256d82cb, 0xffa4f00b, 0x4d820f00, 0x70feff22, 0x16380982, 0xffffae47, 0xffa8e6f1, 0x7a140e00, 0xccffff08, 0x00ffc896,
0x05ec5134, 0xff24fd82, 0x94f79a19, 0x012cab82, 0xff06300a, 0xe8990200, 0x194a00ff, 0x26357182, 0x00ff5899, 0xff32f340, 0xd7a33900, 0xd92600ff,
0x00ff089a, 0x22c5820d, 0x82ec0800, 0x821120eb, 0xfbff2295, 0x22798264, 0x82991909, 0x2edd21af, 0x74201e82, 0x5622af83, 0x818286eb, 0x66e68024,
0xa18215ab, 0xcc4c2327, 0xb31c00ff, 0x82048634, 0x057a5a0e, 0x34b31122, 0x0e201d82, 0xff201d82, 0x0eaf7218, 0x11537218, 0x4b066b2c, 0xffff8b07,
0xffcdcce6, 0x6283faff, 0x82ffe621, 0xb3f42700, 0xe8ffff32, 0xcf8234b3, 0xceccf422, 0x7b6b0a84, 0xe6ea2606, 0xebffff66, 0x211e8233, 0xb58219ee,
0x34230a82, 0x83eeffff, 0x84e7200f, 0x201e836f, 0x223283e4, 0x82ce4cf6, 0xcce4213d, 0xf6217282, 0x26338266, 0x8666e6e2, 0x79e1ffff, 0xe32205c1,
0x74820080, 0x90231282, 0x82e4ffff, 0x0900227a, 0x834c8399, 0x0900212d, 0xe7277b83, 0x00ff5c4f, 0x839a190e, 0xff33246b, 0x83cc1100, 0x33eb214c,
0x61830a83, 0x0080ef25, 0x831500ff, 0xbdf4271e, 0x1700ff71, 0x6b82cc4c, 0x77bef422, 0xc8820a84, 0xffbc3427, 0x01001900, 0x3005828b, 0xf8083333,
0xcb8b0614, 0x9ffeff05, 0xc4fb9a19, 0x20148215, 0x223e831a, 0x82d76316, 0x29098343, 0x8b299c19, 0x1b00ff08, 0x1b826766, 0x82991421, 0x4dea2074,
0x044e08fd, 0x83868205, 0x821682c3, 0x999921af, 0xff232d82, 0x82d763e6, 0x9ce9221b, 0x85448429, 0xff082554, 0x66e68001, 0x2008b779, 0x842f84ff,
0x82e52004, 0x83a28250, 0x06ba4b06, 0x10734318, 0x0f969218, 0x880d7950, 0xaf0e2490, 0x833f02ff, 0x80a43bb5, 0xffff1500, 0xffb8def2, 0x291c2700,
0xa1e5ffff, 0x2000ff48, 0xffffb9de, 0x13825edd, 0xb85e1422, 0xee207082, 0x0a202983, 0x22080f82, 0x0040edff, 0x400600ff, 0x00ff7800, 0x08004003,
0x1100ff91, 0xff8f00c0, 0x72bd1200, 0x1300ff8b, 0x820800c0, 0xfd282506, 0xf1ffff70, 0x27213383, 0x820982bd, 0x00ff24ae, 0x8252781f, 0x80fd2648,
0xffff8e00, 0x057d58fb, 0x4a4a7c20, 0xfeff2305, 0x1a828420, 0x00c0fc23, 0x830a82ff, 0x82398204, 0xff842423, 0x82200100, 0x82fc200e, 0x00ff2267,
0x25148304, 0xfffe3ff2, 0x14830200, 0x9082f326, 0xf3ffff8b, 0xff276f84, 0xff2045bc, 0x823dcaff, 0xeec8286a, 0xbdffff14, 0x828b90c2, 0x85068350,
0x37002316, 0x9682281c, 0xa4b04322, 0x0c219d83, 0x21d7821e, 0xc7824002, 0x829e0c21, 0x60042109, 0x08456518, 0x00216e83, 0x82878403, 0x0400236d,
0xa1827e1f, 0x00230e82, 0x8200e001, 0xa0fc2150, 0x01212982, 0x2db682df, 0xff7ddffb, 0x8460ffff, 0x80fdffff, 0x1a828883, 0x7b94e527, 0x8ae0ffff,
0x26f6823e, 0xffff6666, 0x828e42d8, 0x0ad7229d, 0x5a6f823e, 0x0320057e, 0xff2bf282, 0xff9042ed, 0x01200600, 0x83eeffff, 0xedff23d3, 0x60829919,
0xb782bd20, 0x9382ed20, 0xb3f9ff23, 0x82198234, 0xf5ff2379, 0x548232b3, 0xb85edd2a, 0x82ebffff, 0xe5ffff8f, 0xff21a882, 0x23b282df, 0x48a1f2ff,
0xe3215e82, 0x201e82d7, 0x219982fe, 0x1482fcff, 0x83010021, 0x00fc2933, 0x0300ff84, 0x08890040, 0x60220682, 0x616e8900, 0x00ff2209, 0x21208202,
0xc4830200, 0x60090027, 0x0a00ff83, 0x25f882de, 0xff7d9f09, 0x3f830800, 0x00400a23, 0x20358291, 0x200b8339, 0x221a8321, 0x82cd8c49, 0x48e12479,
0x832100ff, 0x42c522a2, 0x211e8290, 0x7a822121, 0xd863c523, 0x26d184ff, 0x8e82b5ff, 0x83c6ffff, 0x4cdd22bc, 0x208e82ce, 0x258e83f5, 0xff84e0f9,
0x4782f4ff, 0xc0fbff29, 0xf2ffffc4, 0x8288b81e, 0x5ffc2a1a, 0xffffff7d, 0xffff0020, 0x231a83fd, 0x8b00a0fc, 0x2021f782, 0x23548284, 0x87002000,
0xa0209f82, 0xfc211b82, 0x26c083c0, 0xffff83c0, 0x820040ff, 0x8327201a, 0x40f82150, 0x28201482, 0x062c8983, 0x00ff9cff, 0xff85ab22, 0x507d1400,
0x12221e82, 0xc8820100, 0x0e30d883, 0x00ff46e1, 0xff70fd0d, 0xba5e0c00, 0x800f00ff, 0x0c213d83, 0x23ad8261, 0x9a0080f0, 0x02258582, 0xffff9d90,
0x201684f5, 0x28308222, 0x9082ebff, 0x022900ff, 0x265a8290, 0xff0a9727, 0x6ec00700, 0x002008c1, 0x2e417482, 0x3f032405, 0x8200ff7c, 0x088f279e,
0x0300ff8b, 0xbc827cdf, 0x82006021, 0x41048209, 0x00210575, 0x833582e0, 0x83bf82e2, 0x21f6831e, 0x1e830400, 0xaf84f520, 0x823c1f21, 0x9ec62bfa,
0x2100ffb8, 0xffffb8de, 0x09825eec, 0x82544b21, 0x02212154, 0x3a237e82, 0x82089899, 0x48212b19, 0xba3a00ff, 0x4900ffe1, 0xd9825278, 0xffb91e2b,
0x64663900, 0x23deffff, 0x211e82d6, 0x38821e0a, 0x82e0f921, 0xa10921a7, 0xf720ce82, 0x00216682, 0x22d88309, 0x824821f5, 0x8302201e, 0x20fd21cc,
0x04259582, 0xffff8440, 0x229f84ff, 0x828d7c3f, 0x6803261a, 0x0100fff8, 0x286d82ff, 0x8f008001, 0x99feffff, 0x2cbb8298, 0xff0834b3, 0x9a99dffe,
0x66dbffff, 0x8a471866, 0x1500230c, 0x7d44707d, 0x20068306, 0x7372187d, 0xdf961807, 0x08484409, 0xff908226, 0x8f82eaff, 0x8205d244, 0xfdff25e2,
0xe5ffff70, 0xeb201583, 0x210add44, 0x85828b9a, 0x66e66128, 0x80c6ffff, 0x8b821500, 0xffea262b, 0xe23ae9ff, 0x960900ff, 0x2b408286, 0x00ffd623,
0xffe27a10, 0xc2b5efff, 0x2f312982, 0x00ff3473, 0xffa47023, 0x14ae1f00, 0x233700ff, 0x26ae82d8, 0x00ff52f8, 0x82ead13e, 0x6be93b63, 0x0600ff86,
0xffff4a2c, 0xffd6e3e8, 0xec91fcff, 0x1eecffff, 0xf4ffffb8, 0x1e823a7f, 0x34f3fa27, 0xfadeffff, 0x244d82e4, 0xffffcccc, 0x220483e3, 0x820080e8,
0x00802170, 0x7c241e82, 0x89f7cd4c, 0x1a228382, 0x45825138, 0xff0e8d35, 0x68261300, 0x79ffffff, 0x1800ff18, 0xffff6626, 0x8258f3f9, 0xee152183,
0x09257982, 0x00ffeac6, 0x2c7e8311, 0xffe4c512, 0xf6680800, 0x331700ff, 0x2c458232, 0xff32b3e6, 0x3ae50a00, 0x4ce4ffff, 0x264782cc, 0xffff3e0a,
0x82cecce2, 0xe2ff24e7, 0x828becd1, 0x52382916, 0x03faffff, 0xe6ffff96, 0xf5228083, 0x54826025, 0x295c0822, 0xd3838682, 0x99191122, 0x4c29b482,
0x1500ffce, 0xffff67e6, 0x205484f6, 0x23a582a6, 0x9a19cefe, 0x102c9d82, 0x00ffc375, 0xff904210, 0xeb910900, 0x8d832482, 0x291c0127, 0xd11600ff,
0x227e82ec, 0x828f82e8, 0x0a972114, 0x3e82e382, 0x141d0023, 0x266c827a, 0x00ff48e1, 0x8216ee20, 0xabec311e, 0x0b00ff84, 0xffffa230, 0xff66e6e8,
0x68e60300, 0xde210982, 0x20db82b8, 0x22bc82b3, 0x82f80300, 0x33c12a9b, 0x1f00ff34, 0xfffff6a8, 0x21a082c8, 0x7b822f00, 0x99dcff3f, 0xff0e089a,
0x9a99d900, 0xe65f01ff, 0xffff1566, 0xffcd0cf3, 0x00a00000, 0x4af4ffff, 0x2ba7823d, 0xffff1238, 0xffd723ff, 0x36c9f2ff, 0xff216882, 0x2354821e,
0x951ec5f2, 0x34821f82, 0x330d0024, 0xe7828b33, 0xae874f22, 0xcf248f82, 0x4400ffde, 0xbb257583, 0x00ff1819, 0x236f8205, 0x707db0ff, 0x00221e82,
0x5982fed3, 0xff5c4f26, 0xda8f0a00, 0xe6835482, 0x8d500c20, 0x83002305, 0x70828bfe, 0x820a8821, 0x04082104, 0x87210482, 0x210482f0, 0xcc48fc07,
0xd8002107, 0x0a221482, 0xde82ae07, 0xffaa6f22, 0xd8258a82, 0x380d00ff, 0x318a8252, 0xff5864f9, 0x7cc46500, 0xffffe432, 0xffce4c99, 0xeb840600,
0x66660627, 0x196000ff, 0x20cb829a, 0x5e5a18ee, 0xf1ff2108, 0x119a4d18, 0xff7b5422, 0xff241683, 0x85ab1100, 0x7b22c383, 0x89820080, 0x82806421,
0x839b20fa, 0x84ff280a, 0x8b080080, 0x83eeffff, 0x540e22b7, 0x202d887a, 0x222d8386, 0x8286ab11, 0x2316832d, 0x5c4f0e00, 0x11200a82, 0x25055f46,
0xffcccc9e, 0x04827eff, 0x83810021, 0x336122ff, 0x282d8234, 0xcd4cccff, 0x331dffff, 0x20948233, 0x259f83f1, 0xff67e602, 0x1483f2ff, 0x9919f422,
0xf1226382, 0xd1823333, 0x48a1cd23, 0x080c8207, 0x00c0f520, 0x200700ff, 0xf7ffff83, 0x00ff48e1, 0xff7d9f09, 0x1e45fdff, 0x1200ff08, 0xffff4821,
0x1e8240f9, 0x47210d22, 0x5e219982, 0x222e82b8, 0x83ae47ec, 0x83e520a6, 0x83ea20b8, 0x82eb2004, 0xe5ff2361, 0x7883717d, 0x22821582, 0xd143ea20,
0x22a68206, 0x829a9919, 0x2bf62248, 0x21698286, 0x4a820d00, 0x82f5ff21, 0x09002804, 0xffff9ad9, 0x8370bdf2, 0xfdcf2833, 0xffffff71, 0x82050efe,
0xaec72711, 0xe30000ff, 0x2584ff3a, 0x38f5ff23, 0x224d8252, 0x82ccccf2, 0xe60822ac, 0x21428266, 0x7182a6ff, 0x23520032, 0xb9ffffd7, 0x00ffce4c,
0xff29dc5c, 0x00801300, 0x36216382, 0x20bc8261, 0x271e830b, 0xb7d6e32b, 0x870b00ff, 0x36224b82, 0x1a823433, 0x66112508, 0x5100ff68, 0xfffffeff,
0xff9999c9, 0xcd4c4a00, 0x80b4ffff, 0x0e089a00, 0xf834f72f, 0x076b1534, 0xab0614f7, 0x00285e82, 0xff86ab11, 0xcc4c0e00, 0x54260482, 0x1100ff7a,
0x6d1934b3, 0xff230df5, 0x8286abf1, 0x54ee2592, 0x076b087a, 0x0ff07718, 0x25084d56, 0x54fc075b, 0x4f83bb06, 0x90821a27, 0x7d1500ff, 0x20048371,
0x54771870, 0x828b200a, 0x206a855b, 0x206a88cd, 0x206a8533, 0x201b8233, 0x89a1830e, 0x34fb296a, 0xf81534fb, 0xa4fb0654, 0x17b47818, 0xc719fb20,
0xf7241864, 0x4bdb07a4, 0x17c97618, 0x4f832b20, 0x3433f722, 0x10cb7618, 0xe86ceb20, 0x82eb2017, 0x19002031, 0x2113ff46, 0x4c41062b, 0x414b20ff,
0xf726174c, 0x00ff06b4, 0xc318cc08, 0xcb201291, 0x240a4d41, 0x0700ffcc, 0x6a901833, 0xb4fb3d07, 0x01ff0e06, 0xff0080f1, 0x66e66401, 0xe4ffff15,
0x00ff9a19, 0xff52f839, 0x3233c6ff, 0x2505ca47, 0x9a99c4ff, 0x1a82088b, 0x8bb81e36, 0xbde3ffff, 0xf8ffff72, 0xffff00c0, 0xffb85ee6, 0x48a1f0ff,
0x78201a83, 0xf0233082, 0x82051e85, 0xcccc2910, 0xfaf5ffff, 0xfbffffe2, 0x20484a82, 0x83092005, 0xe1f02109, 0x00292982, 0xff90c220, 0x4821c9ff,
0x24a98205, 0xffffa285, 0x382e82f1, 0x68111300, 0x99f9ffff, 0x1000ff98, 0x00ff3e4a, 0x08408a09, 0x821b00ff, 0x210f8290, 0x2982b85e, 0x00200525,
0x830300ff, 0xd3052c04, 0x0100ff34, 0x00ff6250, 0x8246a105, 0x0a002794, 0xff8b48e1, 0x7f830a00, 0x0060fa2a, 0xf6ffff91, 0x94084601, 0xe12b8682,
0xfaffff48, 0xffffc0ea, 0x82b087ec, 0xc6002166, 0xe12c1a82, 0xfeff0846, 0xfffe7f9e, 0x94b82dff, 0xc683ab83, 0x82e0f621, 0x1efb21cb, 0xec22cb82,
0x7c824881, 0x38822120, 0x00c0f022, 0xab9a8182, 0xa6828a20, 0x3e2bab86, 0x5b01ff08, 0x00ff6866, 0x820080ce, 0x472308ab, 0x00ff5c8f, 0xac28dc2a,
0x995a00ff, 0xdcffff9a, 0x00ffcc4c, 0x0866664c, 0x334effff, 0xff157e34, 0x8280fdff, 0x99fd2270, 0x2080829a, 0x210a82eb, 0x37843d00, 0x8b820920,
0x83040021, 0x7a0a2004, 0x084a065b, 0x20022106, 0x14218b83, 0x229682a1, 0x824821c2, 0x17f62134, 0xff214b82, 0x20448240, 0x857682f6, 0x82f7204e,
0xfbff2348, 0x19821ec5, 0x9919522b, 0x66b8feff, 0xffff1566, 0x211582c3, 0x5e842600, 0x82e11e21, 0x401221db, 0x3c20a183, 0xff211582, 0x271583d9,
0xb91ee1ff, 0xc0edffff, 0x6b201583, 0x00231582, 0x99cecc3f, 0xff7f2236, 0x273691ff, 0xff67e66e, 0xcccc4200, 0x25203687, 0x0020d783, 0xb8296d97,
0xa6eeffff, 0x00ff0566, 0x296d8314, 0x156666c4, 0x2d00ffb9, 0x11829a19, 0x82600821, 0x83f920d0, 0xa0072116, 0x66240983, 0x0600ff66, 0xff230e82,
0x829a99f6, 0x5ed221d5, 0xd2223b82, 0xff82a430, 0x7a54fa3e, 0x1c0a00ff, 0x00ff832a, 0xff32b307, 0xceccf6ff, 0x660500ff, 0xffdd0866, 0x343394ff,
0xc4208982, 0x00213782, 0x22d68413, 0x82004003, 0x215b821c, 0x56820200, 0xb9040026, 0x0100ff9a, 0x07270983, 0x8c081e05, 0x830400ff, 0x8400202a,
0x2104831a, 0x2e822000, 0xb87e042d, 0x3c00ff08, 0xffff4861, 0x8248e1eb, 0xdefd2671, 0xf5ffffb8, 0x200f82a1, 0x367083fc, 0xffcdccf5, 0xce4cfbff,
0x33f6ffff, 0xff0e0833, 0x34332a01, 0x822301ff, 0xffff2ecd, 0xffcc4ccb, 0x34b31900, 0x33c2ffff, 0x060d4333, 0x6766db27, 0xb3d4ffff, 0x26548234,
0xff1f4537, 0x18b0c8ff, 0x2209fd9a, 0x828b00c0, 0x86eb215a, 0x0cc45318, 0x7ddffc23, 0x26618288, 0xffff6adc, 0x821e65fe, 0x42e02309, 0x0685088b,
0xfcffff24, 0xc282560e, 0x82e29a21, 0xc4e02209, 0x2716828e, 0xff8f82ce, 0x3c4a3200, 0x7f27a882, 0xfeff66e6, 0x823433f9, 0x20fd2e0a, 0xffff8500,
0xff00e0ff, 0x00c0f8ff, 0x205f828e, 0x20d5839e, 0x26ef8205, 0x48e1f4ff, 0x830d00ff, 0x5efb2709, 0x00ff96b8, 0x1a835e05, 0x9a99852b, 0x404100ff,
0xffff0500, 0x234782ce, 0x90423100, 0xf9260a82, 0x00ff7d9f, 0xa6822006, 0x410a0022, 0x06223682, 0x0f828360, 0x30831e20, 0x4f400621, 0x9c180536,
0x2121080b, 0x82c68448, 0xfa3834e7, 0xc7ffffe1, 0xf1051e05, 0xe33100ff, 0xffa305d6, 0x82a10b00, 0x8214203d, 0x13002174, 0x0c200983, 0x19210483,
0x344783de, 0xffa4301e, 0xf6a83d00, 0x66e6ffff, 0x4a00ff66, 0xffffce4c, 0x2e0482c2, 0x32331e00, 0x00ffe708, 0x15cecc22, 0x831300ff, 0xcc282b3a,
0x00ff81cc, 0xffb81e30, 0x2b83d7ff, 0x48e12027, 0xcdffff08, 0x20e582c0, 0x268d82d6, 0x70bdfdff, 0x82beffff, 0x2c003109, 0xffff90a2, 0x089a99d3,
0xff058393, 0x66462d00, 0x31830d82, 0xda834120, 0x33330223, 0x056d75ff, 0xcd4c3222, 0xdf2c4082, 0x00ff9a19, 0x5a34b327, 0xd8ffff95, 0xff290b82,
0x080080ec, 0xf8b4f70e, 0x52788254, 0x95470b32, 0x184b2008, 0x2517b5b1, 0x076b063b, 0x448200ff, 0x00ff0629, 0x8b008020, 0x821a00ff, 0x05bf4a71,
0x34b30432, 0xb3e0ffff, 0x00ff0834, 0xff32b316, 0xcc4c6aff, 0x00209b82, 0xfb201583, 0x0020ef83, 0xff25a082, 0x8b3233fb, 0x820582ff, 0xbaff2325,
0x67836666, 0x2183dc20, 0x5719e320, 0x14230e05, 0x18ffff06, 0x22166bdc, 0x829a9945, 0x04002936, 0x00ffcccc, 0xffb95c00, 0xce200982, 0xb8210982,
0x21098286, 0x7d8332b3, 0xff50ad26, 0x34b39500, 0x04257d82, 0x00ff71bd, 0x265b821f, 0xd7e31a00, 0x821700ff, 0x1f0024fd, 0x828bd7a3, 0x11383025,
0x07ab06ec, 0xffafffff, 0xffff06ff, 0x82e13aef, 0xc5f02797, 0x0e00ff1f, 0xd782cc4c, 0xc8821120, 0xcc48cb20, 0x3a0f2208, 0x066148e1, 0x1fc51022,
0xe0273d83, 0x058b66e6, 0x485b54fb, 0xd7210e13, 0x2345820a, 0x08f628f7, 0x11480685, 0x0ad72407, 0x820800ff, 0xf708221b, 0x0ec44634, 0x1f4ab318,
0x0634fb28, 0x1524fc7b, 0x378ef4f7, 0x8208947b, 0x064848aa, 0x820dfa46, 0x82ff2030, 0x20878288, 0x187d82f8, 0x480dc692, 0xab2213ab, 0xcb827cf7,
0x0955d418, 0x4cf5ff23, 0x223c82cd, 0x8333b3f2, 0x250682cb, 0xc00a00ff, 0x1683ff00, 0x0d00ff26, 0x088b0040, 0x22830682, 0xb30a0023, 0x191b8233,
0x21118904, 0x1684cd4c, 0x82ffff21, 0x088b233c, 0xa8185beb, 0x35830ca5, 0x0d22ba82, 0x5e82cd4c, 0x06820020, 0x4c835986, 0x37853085, 0x8c931685,
0x8c867582, 0x08228582, 0xbd836b5b, 0x14848483, 0x14f16318, 0x4c833320, 0xb685cc20, 0x3420bd8f, 0xcc208c84, 0xcc208c85, 0x34208c88, 0x08238585,
0x84ab24f7, 0x82cc20be, 0xb30a2226, 0x82ef9534, 0x22be865a, 0x83088b34, 0x83548238, 0x414d8488, 0x44820f4b, 0xfb82a984, 0xb58bcc21, 0x918c8abe,
0x848c84be, 0xe68c82be, 0x82ef8abe, 0xf2ff219b, 0x196f6518, 0x2dcb6518, 0xf70e2008, 0xa000ff5c, 0xfb1566e6, 0xffff061c, 0x8b5c0ff3, 0x51f4ffff,
0xf8ffffeb, 0xfffff833, 0x825c0ffb, 0x080c220e, 0x210a8208, 0x0a82f007, 0xffae072f, 0x00c00200, 0x40f2ffff, 0x0900ff00, 0x26138227, 0x089ad9f6,
0x831e00ff, 0xf0e12829, 0xffff05a4, 0x82a4f0c1, 0x14ee2104, 0xf3220a82, 0x54828f82, 0x2f828020, 0x71fdff25, 0x82ebffff, 0x0c002339, 0x1384b17f,
0x16273482, 0xffffb89e, 0x184861e9, 0x29098369, 0x1400ff02, 0xff8b8f42, 0x34820c00, 0xb0202a82, 0x3e202582, 0x00235a82, 0x82ec113e, 0x22658925,
0x82200600, 0xe0f92655, 0x0800ff00, 0x20a4822f, 0x235a83fc, 0x8b5c4f08, 0x04223082, 0x41820020, 0x9c820420, 0xcc00002d, 0x0300ff02, 0x00ff10f8,
0x82dea301, 0xf80b2b1a, 0x0400ff52, 0x00fff8f3, 0xca82c707, 0xc0aa0b22, 0x0c222982, 0x1a82a4f0, 0x3afd8728, 0x0000ff07, 0x7c821401, 0xff666622,
0x22054142, 0x429a990b, 0x042c07a6, 0x193f00ff, 0x00ff159a, 0x069a1987, 0xf0212382, 0x213a82a4, 0x2e82ae0b, 0x82cc0721, 0x8204203e, 0x0b0023f5,
0x0a83f8f3, 0x69836f83, 0x40fdff26, 0x0d00ff00, 0xff229a82, 0x8382d8f6, 0x66260926, 0xe1ffff08, 0xc9822983, 0xda8acf82, 0x02800c22, 0x5482f584,
0x8e421427, 0x80f3ffff, 0x820f8412, 0x61e92730, 0x1600ff48, 0x6918ba9e, 0xff200ab3, 0x0ad96918, 0x25822a83, 0x20067641, 0x89258216, 0x21778661,
0xc5821824, 0xff38492c, 0xf2b20200, 0xfbffff7f, 0x3082d418, 0x5af2f422, 0x0d2c0a82, 0xf8ffff7e, 0xffff3433, 0x8b7c54f4, 0x0f217682, 0x201a825c,
0x05cb4e78, 0xcdccf122, 0x08ce6718, 0x0d230982, 0x828bcc4c, 0x4c94211c, 0xbd290b82, 0x7f155c8f, 0xf80400ff, 0x22598252, 0x84ff3333, 0xf6ff28ea,
0xffff66e6, 0x820ad7f6, 0xe6e12225, 0x82ea8467, 0xf3c1278e, 0x3e00ff33, 0xbf88e610, 0x833a7f21, 0x827120bf, 0x9cf2226e, 0x21738229, 0x5c18c680,
0x5e210880, 0x083642b8, 0x82908221, 0xbdeb2720, 0x0c00ff70, 0x3242e77d, 0x113e2407, 0x82ffffec, 0x222582ea, 0x8294d6e2, 0xfce92161, 0xf9250a82,
0xffffb8de, 0x277c83f9, 0xff00c0fc, 0xccccf7ff, 0xf7203a82, 0x57052343, 0xcc21055e, 0x2ceb8202, 0x00ff10d8, 0xff1fa401, 0xf007fcff, 0x21bc8208,
0xf682b6f3, 0xcd820c20, 0x15ae0b25, 0x82f8ffff, 0x0c0023c6, 0xe38215ee, 0x2c06e341, 0x8b00400d, 0xd90900ff, 0x0a00ff9a, 0x220a83c0, 0x829a590c,
0xe6882337, 0x48820766, 0x82cccc21, 0xa4f02199, 0x0b223886, 0x4c8214ae, 0x2a821920, 0xa4f00422, 0xec282482, 0xfeffcd4c, 0x1570bdad, 0x20051b43,
0x05f04100, 0x18240922, 0x28053643, 0xf2b20200, 0xb90d00ff, 0x27968258, 0x00ff1619, 0x0870fd0b, 0x00210a82, 0x210a8284, 0x498254f8, 0x5d824c20,
0x32b30822, 0x1921f782, 0x2691829a, 0x66e678ff, 0x46ffff06, 0xf6250544, 0xffff6626, 0x239c83f5, 0x66a6f3ff, 0x2609af41, 0xff5c0ff3, 0x82cc0700,
0x51f42210, 0x204882ec, 0x05c243f3, 0x2306f742, 0xf007fbff, 0x23058d42, 0x00c00200, 0x45828682, 0x27090023, 0x06bd43f0, 0x3e20a186, 0x60414382,
0x0c002305, 0x7e820080, 0xff028026, 0x90421400, 0x83099343, 0x9e162430, 0x8200ffb8, 0xff052104, 0x6c182584, 0x42210746, 0x20308390, 0x8214840e,
0x2ec02185, 0x3b2f5b82, 0x0e05dc57, 0xf7c4f8af, 0x00ff15b4, 0x8248610a, 0xb8062248, 0x827e8250, 0xfeff2383, 0x14826866, 0x0848212c, 0x5f00ff73,
0xff059a19, 0xf884feff, 0xff1e0526, 0x0080f9ff, 0xf8224e82, 0xfe8334b3, 0xb81e9d2a, 0x1900ff06, 0x14fbb89e, 0x61337382, 0xfb069042, 0x1514f7b4,
0x809bffff, 0xffff0600, 0x846666e6, 0x197e2c18, 0x14f7069a, 0x8400ff07, 0x868b0080, 0x83fb201d, 0x8418830f, 0x82f72026, 0x7bfe243f, 0x82fb0080,
0x6100223c, 0x233c8240, 0x48a11900, 0xff201583, 0xff246384, 0x8b00c0f8, 0x86207c84, 0x40258c82, 0xf8ffff00, 0x239e83e1, 0x66e6a0ff, 0xfd259e82,
0xffffbe7f, 0x289e82f5, 0x42a00700, 0x33f6ffff, 0x33bf8234, 0x088b0060, 0x154bb4f8, 0xab8f0677, 0x0694fc05, 0x77056b8f, 0xaa709482, 0x824f8205,
0xcdcc2143, 0xf7245482, 0x6b083333, 0x8409844f, 0xcccc245c, 0x820800ff, 0xa7082772, 0x34fb9f06, 0x1e977b05, 0x2418d97d, 0xd4f7079b, 0x18368506,
0x7d0d7544, 0x9b261dce, 0x34f79f07, 0xfb48a705, 0x82ab2017, 0x08002287, 0x075c7ecc, 0x33330722, 0x22085670, 0x82a201ff, 0x57012fb4, 0xff15cccc,
0xceccf1ff, 0x334800ff, 0x89410534, 0xe6ff2d07, 0x80ffff66, 0xff0566e6, 0x1ec53c00, 0x10285e82, 0x00ff7c54, 0x9d666612, 0xe6300582, 0x1300ff68,
0x00ff32b3, 0x08989911, 0x4c6dffff, 0x14213c83, 0x2247827c, 0x4166669b, 0x3c8205c6, 0x821e0521, 0x197e223c, 0x273c829a, 0xff9a1900, 0xe2fa7f00,
0xbd281082, 0xffff3233, 0x1584ebb7, 0xe8824782, 0xc0efff23, 0x21478200, 0x02619042, 0xa10f2206, 0x27098248, 0xff084821, 0x40c00500, 0x9f210482,
0x2004827c, 0x220e83a1, 0x82913c7f, 0x0040210a, 0x15200b82, 0x00232f82, 0x82e0fa12, 0x8315204f, 0x05ed2244, 0x340a8220, 0xff002001, 0x1400ffff,
0xfeffff8c, 0x00ff2ee0, 0x8a400001, 0x05034d08, 0xbf000027, 0x0000fff2, 0x223b8260, 0x820ec000, 0xf8bf2113, 0xbf280e82, 0xff7308be, 0x52f85f00,
0xfe21f682, 0x26878260, 0xff7e1f07, 0x827ff9ff, 0xff042872, 0xf8ffff3a, 0x828b3cbf, 0x1f9d2240, 0x20c382c0, 0x2268830c, 0x820080c2, 0xd90b3268,
0xf5ffff98, 0xff05ae67, 0x34b342fe, 0x19c8ffff, 0x20ce829a, 0x22948361, 0x82b60500, 0xa3192720, 0x7f00ffd7, 0x578266e6, 0x291c9d23, 0x21498306,
0x59828bbe, 0xff418025, 0x1800fbff, 0x3307a1ba, 0x0806e1f8, 0xfde7ffff, 0xa0ffff77, 0xff050219, 0xb87ffdff, 0xe6305782, 0x0700ff68, 0xffff83a0,
0xff3233f6, 0xbf5f0a00, 0x012b8382, 0x6b9a9944, 0xcbfeff15, 0x828bf668, 0x8304205f, 0x02e02243, 0x2233828f, 0x822ffdeb, 0x71fd21ce, 0xf7220a82,
0x64828340, 0x7dbff822, 0x250ba842, 0x19e0ffff, 0x8773079a, 0x07002206, 0x267c8240, 0xffe2a5f9, 0x83bf0800, 0x1c002357, 0x3e829002, 0x0578fb26,
0x60ffff9f, 0x2882b082, 0xbc37ee23, 0x4b068205, 0xdc420502, 0x00ff250d, 0x06900220, 0xc0203c82, 0x00236982, 0x827d3f07, 0x7c3f22a9, 0x2505828b,
0xff081eda, 0x69820f00, 0xd000ff29, 0x00ffcdcc, 0x82840000, 0xdee12891, 0x2100ffb8, 0x6fff70bd, 0x2c2205ea, 0x2b822a1c, 0x32733022, 0x00202b82,
0x002b7882, 0xffb0b225, 0xcccc1300, 0x822e00ff, 0x20002385, 0x098234b3, 0x8233b321, 0x99d22e1e, 0x1c00ff9a, 0xff15cecc, 0xb81ef1ff, 0x05b160ff,
0x0080f222, 0x21240982, 0xf4ffff48, 0xf1261383, 0xff08ffff, 0x1482ecff, 0xbd190026, 0xe7ffff71, 0x1a206d83, 0xe421b183, 0x2277829e, 0x82b85e18,
0xdcb9311e, 0xc1ffff28, 0xffff2045, 0xffd823ce, 0xac87aeff, 0xce22db82, 0x1a829a99, 0x862bff2a, 0x8fa8ffff, 0x4800ff5c, 0xff224382, 0x728219b9,
0x00805723, 0x237e828b, 0x8bfe7f57, 0x00231685, 0x82b8de46, 0x6e572d0a, 0xff8c0814, 0x34b32400, 0x4b00ff65, 0xff239c82, 0x829c19cd, 0x831920ac,
0x66ed2748, 0x1affff64, 0xac8332b3, 0xf5217e83, 0x20a28261, 0x238d82ed, 0x1e85faff, 0x5e21a182, 0x235382b8, 0x70fdceff, 0xd8207a82, 0x0022b982,
0x0a827d21, 0x7d360024, 0x5a820872, 0x11831b20, 0x81821020, 0x82170021, 0x20002832, 0x00ff48e1, 0x822adc28, 0xc0043285, 0xfaffff42, 0x00ff8380,
0xff96633e, 0x9b84adff, 0x3348828b, 0x90c22700, 0xfd2e00ff, 0x00ff0570, 0xff40e002, 0x4220fbff, 0x7f210982, 0x210982c0, 0x09828260, 0xff006026,
0xa265fcff, 0x122f4082, 0xffff88ab, 0xffc475d9, 0x3033f7ff, 0x82d1ffff, 0xdfff21e1, 0xff2c6982, 0x08cccce7, 0xf794f80e, 0x74fb1584, 0x50051c42,
0xff230527, 0x82c0f8ff, 0x40f72f09, 0x3b088b00, 0x0714f706, 0x14fb066b, 0x099c4b07, 0x23453b20, 0xf58b180c, 0x83f7200a, 0x0800285a, 0x00ffcdcc,
0x82004007, 0x33332104, 0x20062445, 0x05b556bb, 0xcccc0822, 0x34201a88, 0x86821a8e, 0x30824a82, 0x44823a84, 0xf7088b23, 0x0ce64474, 0x8206e245,
0x5b0823ab, 0x1a8ebb07, 0x21053a48, 0x1a933433, 0x3707c345, 0x00ffef0e, 0xff0080c0, 0xf6e88801, 0x1900ff15, 0x00ff6666, 0x05008012, 0x29052c49,
0xcccc0700, 0xfdffff9a, 0xa38248a1, 0xff24a882, 0x08ae47f5, 0xce210a83, 0x820a83ff, 0x98992619, 0xfdf0ffff, 0x200e8272, 0x2d13824c, 0x083233f8,
0xb3e3ffff, 0xecffff33, 0x44825c4f, 0x3333162d, 0x1000ff06, 0xff8b66e6, 0x82cc0e00, 0x83f62021, 0x83082060, 0xccf22435, 0x627408ce, 0xf021061b,
0x20658299, 0x230483e5, 0x6ccd4cfe, 0xe4264282, 0xffffcd4c, 0x158219f8, 0x9c82eb20, 0x83e6ff21, 0xe2ff2440, 0x41089a19, 0xf42505aa, 0x00ffcc4c,
0x201e8303, 0x210482f5, 0x23530500, 0x66672209, 0x0c206d66, 0x47610020, 0xd4f72209, 0x05085d07, 0x82072558, 0x1a002435, 0x828b8f82, 0x29a784d1,
0x15aee3ff, 0x971400ff, 0xdd85050a, 0xb182fd82, 0x0f22fc84, 0xf6838e02, 0x00ffcd25, 0x8252b80a, 0xcc07212f, 0xff290a85, 0x90020f00, 0x5e0200ff,
0x821984b8, 0x343321b3, 0x1b271e82, 0xffff156e, 0x82cc0cec, 0xaef72748, 0x1800ff14, 0x0a8234f3, 0x5ccffb2a, 0x940c00ff, 0x0600ff7a, 0x0d223e83,
0x0e824696, 0xff5d8f26, 0xe6300400, 0x0b223482, 0x0a8233b3, 0xff26312b, 0x01800e00, 0x34f9ffff, 0x260e823a, 0xffff3333, 0x180e6df3, 0x23077993,
0x05723de2, 0x29836982, 0x142e1e22, 0x04220a82, 0x44826766, 0x2a827f20, 0x14830d20, 0x808a0622, 0xd8820e82, 0x93fbff23, 0x20348232, 0x200a850c,
0x83728234, 0x48f22209, 0x07d36532, 0x088e822c, 0xe6f7ffff, 0xe8ffff66, 0x488286eb, 0x34b39736, 0xfdb7ffff, 0x00ff1570, 0x8b666616, 0x331500ff,
0xf4ffff32, 0x00211582, 0x2204820d, 0x8333eeff, 0x831e204f, 0x66d82245, 0x83308267, 0x2700230a, 0x0a829999, 0x00232083, 0x85cecc11, 0x0b002334,
0x4485cc4c, 0x27228082, 0x4b8234b3, 0x0080202a, 0x08648b6a, 0xf6ffff8b, 0xfe224b83, 0x7b869899, 0xd04cfd22, 0x6621e982, 0x22298266, 0x18981904,
0x220dd491, 0x829a99e9, 0x83e62030, 0xafff261c, 0xfb079a19, 0x281f8254, 0x0766e660, 0xffff066b, 0x2010879f, 0x82108250, 0x99192261, 0x827d829a,
0x5ebd839d, 0x538405d1, 0x2b829a20, 0x8f83fd20, 0x20820620, 0x82feff21, 0x08002204, 0x28578219, 0xcc4c0900, 0xffb28b08, 0x229a8200, 0x8300ffac,
0x8b0821a6, 0x13205f82, 0xff2d2b82, 0x159a99c5, 0x66fbffff, 0xffff9166, 0x22d683f8, 0x82666604, 0x00802809, 0xffff088b, 0x829899f2, 0x33f52596,
0xf4ffff34, 0x20057f77, 0x234982cc, 0xccf1ffff, 0x2207614c, 0x4e3333f6, 0x818205b9, 0x83193121, 0x82e22081, 0x5600203f, 0x9c200516, 0x00236082,
0x8266660a, 0x82f82060, 0x67608550, 0x70820567, 0x60828520, 0xff262c83, 0x056666da, 0x3d8400ff, 0x4c0d0022, 0x2208c34f, 0x82cdcc09, 0x330e23ec,
0x06820833, 0x83830c20, 0x00238883, 0x85cccc0b, 0x82082098, 0xd8fe21c3, 0xfe2e1782, 0x159a19df, 0x54f707db, 0x0714fb06, 0x8b7124fb, 0x0b13430c,
0x155b7424, 0x268314f7, 0xee5a3b20, 0x06242b18, 0x02ffef0e, 0xff68667f, 0xb7840e00, 0x40a0f72c, 0x5e1400ff, 0xe8ffffb8, 0xfd4ac09f, 0xa1eb2c06,
0xf7ffff48, 0xff080080, 0x82e1e9ff, 0xc0f62d0a, 0xffff0542, 0xff0040d9, 0x9a196500, 0x2f30ca82, 0x00ffb8de, 0x9c9a1922, 0x194200ff, 0xe1ffff99,
0x00233082, 0x82ff7f34, 0x61a92730, 0x9600ff48, 0x30820080, 0x4200f837, 0xde0d00ff, 0xefffffba, 0x00ff24e6, 0x7c46e105, 0xdef9ffff, 0x272582ba,
0xffcecc8d, 0x46a1d0ff, 0x8c392582, 0x00ff59cf, 0x05964330, 0x0600ff7c, 0xff7a0020, 0x0020faff, 0xf2ffff83, 0x217f8320, 0x5e8259a9, 0x3e8a6922,
0xe1262882, 0xffff00c0, 0x848280cb, 0x94831020, 0x34b3be2c, 0xd12f00ff, 0xddffffec, 0x52829819, 0xff219e83, 0x239e839a, 0x14eee9ff, 0x3321c982,
0x2a348234, 0xff47a1eb, 0xbe7f0800, 0x83e8ffff, 0x40f6223e, 0x21d98442, 0xe382ffff, 0xfe203482, 0xff22d382, 0xa782e0fb, 0x82e00121, 0x60fb215d,
0x04215d82, 0x2d098220, 0x08be3ffe, 0x66a200ff, 0xbcffff66, 0xf28248a1, 0x9a190327, 0x3ffeffff, 0x20c782fe, 0x2bcc8286, 0xff02e001, 0xfabe0100,
0x1f0400ff, 0x08222983, 0x4641be5f, 0x60f62106, 0x17204d82, 0x6283a682, 0x46417b82, 0x09002308, 0x4882be1f, 0xb85e2727, 0x996700ff, 0x200a829a,
0x22258304, 0x820680ff, 0x223e8244, 0x833fffff, 0xfa3e224e, 0x2379828b, 0x8b00c033, 0x9e20de82, 0x20202b82, 0x00287982, 0xffae070e, 0xd6233500,
0x14201a82, 0x0023b382, 0x82285c4b, 0x230a8340, 0xd8a3b4ff, 0x0d200a82, 0xff2e2582, 0xff90c2cb, 0x1e853000, 0x3300ff6a, 0x4783aec7, 0x83400421,
0x82042047, 0x0000225e, 0x205e83bf, 0x2204827e, 0x82068000, 0x82272047, 0x98ff2447, 0x41056666, 0xe02107e5, 0x410a8242, 0x422306fb, 0x83f6ffff,
0x66e9211f, 0x0820ec82, 0xea22a783, 0x3482e2ba, 0x00c00123, 0x053041ff, 0x09830420, 0xfe1ffe28, 0x0100ff8f, 0x1a8202c0, 0x6866a227, 0x5e4300ff,
0x218c82b8, 0x0f82d703, 0xead10123, 0x83d9828d, 0x4cfe223b, 0x370982d0, 0xff089a19, 0xfe7f94fe, 0x800f01ff, 0xffff1500, 0xff67e68f, 0x00802e00,
0x24203082, 0x00212582, 0x273b843f, 0xffff7f5e, 0x7cd4d8ff, 0xed208b82, 0xb922d383, 0x2082cc4c, 0x34335823, 0x2732828b, 0xff4821ed, 0x70bd4600,
0x5e261182, 0x00ff707d, 0x6e831e27, 0xff233d83, 0x8248a1c0, 0x8f250832, 0xffff48e1, 0x059082d1, 0xdf01ff0e, 0x34f89a19, 0x40feff15, 0xff06a4f0,
0x8f82ecff, 0xf1ffff8b, 0xffff4120, 0x23ba82ee, 0xf39f0200, 0xbd211482, 0x27a98270, 0xff3cfd37, 0xf6689bfe, 0x20079241, 0x398d83e0, 0xff71fd1a,
0x9a99e8ff, 0x052000ff, 0xff088b1f, 0x68e61001, 0x1f00ff06, 0xe24870bd, 0x61172107, 0x04208c82, 0x1f222b83, 0x46839082, 0xff289c26, 0x9a996401,
0x02214682, 0x221a82a1, 0x828e4213, 0x34332970, 0x401100ff, 0xebffff00, 0x2405755c, 0xfb9a99c7, 0x22958254, 0x823ccab2, 0xe6eb2a95, 0x0514f766,
0x337501ff, 0x2b0d8234, 0xfb281cec, 0xf80e0514, 0x1554f794, 0x7220ac82, 0xff247d82, 0xff66668d, 0x0e820485, 0xff208782, 0x11850683, 0x0a840020,
0x21820020, 0x93820820, 0xff200682, 0x04861183, 0x2d820e82, 0x1b821c83, 0x54854987, 0xffff082e, 0xffcc4c0a, 0x00c0cf00, 0xdeffff15, 0xff38a182,
0x0566a6e6, 0xb3faffff, 0xfbffff33, 0xffff52f8, 0xffcdccfc, 0x14aef9ff, 0xf9223082, 0x3082b047, 0x32f3f623, 0x220c8307, 0x47ff5238, 0xfa2005a2,
0x0622f883, 0x6483cdcc, 0x66660222, 0x02326482, 0x00ff6766, 0x8d34b300, 0x660100ff, 0x00ff0866, 0x6482cc29, 0x0ad71b23, 0x23118305, 0x00ff0a57,
0x21822782, 0x4282b820, 0x6866022c, 0x068c088b, 0x330600ff, 0x51828b32, 0x829a1921, 0x84ee207d, 0x90c2276e, 0xff888b08, 0x3c82feff, 0x1efdff28,
0xfdffffb8, 0x048268e6, 0x8248e121, 0x19ec2785, 0xecffff98, 0xab83281c, 0xfb20b683, 0xf8223783, 0x3c8266e6, 0xff34b326, 0xce4cf8ff, 0x80212982,
0x21298200, 0x148266e5, 0x9a19f722, 0xeb822983, 0x83feff21, 0x84fc2039, 0x9a992166, 0xe622c883, 0x06820866, 0x3183fc20, 0xca82fe20, 0x6cfcff21,
0xff210719, 0x21bc82fd, 0x38827979, 0x5383f920, 0x1c840484, 0xcc4cf724, 0x5a82828b, 0xcdccfb23, 0x253a8207, 0xff9a99ef, 0x04820d00, 0xb3f2ff26,
0x1000ff33, 0x08211d82, 0x20cb8296, 0x8298820a, 0x201282d6, 0x28988204, 0xcdcc0900, 0x00ff8f08, 0x668a8308, 0x042005b3, 0x0020d982, 0x03201b84,
0x00288f82, 0x8b666605, 0x0400ff08, 0x00219683, 0x823c8204, 0xff6626f0, 0x32b30200, 0x209482ff, 0x201a8267, 0x23a48310, 0x053333ea, 0x31821582,
0x33fdff22, 0x03205c82, 0xfe25af83, 0x00ffcd4c, 0x82398203, 0x82082025, 0x059b4147, 0x82080021, 0xfcff2878, 0x00ff3233, 0x82008007, 0xe6fe22b1,
0x213a8268, 0xd382cd4c, 0x9220c982, 0x92823284, 0x0021f682, 0x83468207, 0x20408296, 0x84308415, 0x820720a7, 0x20ac85d6, 0x26708205, 0x99190700,
0x8308938b, 0x238982db, 0xcc4c0800, 0x04833c82, 0xce4c0a22, 0x1d22ba83, 0xad4a6666, 0x188b2017, 0x2d17d6bf, 0x06cc4ceb, 0xccf8ffff, 0xff848bce,
0x6482fdff, 0x83faff21, 0x230482b4, 0xfbffff08, 0x04825c82, 0xfc41af83, 0x421a8305, 0x19230510, 0x82888b9a, 0xf9ff2289, 0x83f982cc, 0x2337849c,
0x32330600, 0x0b248983, 0x9106ce4c, 0x0522a782, 0x5582cccc, 0x0422c483, 0x4f823433, 0x82cccc21, 0x820620df, 0xf9ff310f, 0xff056766, 0x66e60000,
0x19ffffff, 0x0100ff99, 0xfc220983, 0xa88234b3, 0x6666fd22, 0x06825983, 0xfeffff22, 0xfd209183, 0xff203083, 0xfe220983, 0x96823333, 0x0080f822,
0x8025b282, 0xffff0501, 0x27a183fc, 0x893233fd, 0x33faffff, 0xb8833c83, 0x06824382, 0x6f828d20, 0x00223382, 0x7982b303, 0x79822782, 0x2d831220,
0x34b3ed22, 0x0a207982, 0xf5208f83, 0x00219e82, 0x82ef840d, 0x0e00230e, 0xbc830080, 0x00800624, 0x9041ff06, 0x83142005, 0x82032016, 0x06de476e,
0xcc4c1622, 0x00229a82, 0xb682666f, 0x0482a820, 0xf55a0026, 0x91ffffc2, 0x00294182, 0x08d86305, 0x00ff078b, 0x247382ac, 0x6626ccfe, 0x239c8315,
0x0200ffce, 0xfb20bc83, 0x01204283, 0xff270482, 0x8b3233fb, 0x848b8508, 0x821c82ae, 0xfbff2143, 0x04228583, 0xd9823433, 0xab82f120, 0x4c0e0023,
0x2ad982cc, 0xff3233f9, 0xcecc0600, 0x82f5ffff, 0x04002141, 0xf520ba83, 0x2582e282, 0xcc4cf626, 0xf6ffff8b, 0x00204e82, 0xff219b83, 0x202083f8,
0x229a8206, 0x83e4ffff, 0xcc16220a, 0x204082ce, 0x213182f5, 0x9a820900, 0x83f1ff21, 0x830620c5, 0xb3f0216a, 0xff2a7d82, 0x9a19ebff, 0xf3ffff06,
0x4682cd4c, 0x33b3f325, 0x83fbffff, 0x80f5241c, 0x85088400, 0xedff2342, 0x428234b3, 0x8233ee21, 0x82f4201b, 0xf5ff24d0, 0x8277cd4c, 0x99ea222c,
0x2521829a, 0x07ccccfc, 0x9d827a8b, 0xef283a83, 0x7f97cccc, 0x057b9b08, 0x2105c842, 0x9683f7ff, 0xea850b20, 0x8b973428, 0x1500ff08, 0xcf18cd4c,
0xbf840e4e, 0x7f55f220, 0x82fd2005, 0x0000252a, 0xffff6666, 0xb3210985, 0x82098234, 0x00ff221a, 0x26148247, 0xcccc0500, 0x823d00ff, 0x05c54482,
0x0e832020, 0x85823b20, 0x058b8b25, 0x83eefeff, 0x66ff25e2, 0x6b6b1566, 0xf920ad82, 0xf9228e83, 0xa782cecc, 0x2683f520, 0xcd4c0624, 0x0f82ffff,
0x06208282, 0xf928c883, 0x00ff32b3, 0x8b34330a, 0x0f82b982, 0x4c060026, 0xabab08ce, 0x2883b782, 0x00450020, 0x821e8205, 0x83488233, 0x22ea820f,
0x82cdccf9, 0x9042232d, 0x5282ffff, 0x0f835882, 0xbdf9ff2c, 0x078b0870, 0x34f82f0e, 0xc75d34f7, 0x18b3200e, 0x210e0775, 0xcf83f1ff, 0xac820484,
0xfc088b23, 0x0e811814, 0x53a11817, 0x14f82516, 0x14f78b06, 0xa318659c, 0x65911110, 0x1e5da118, 0x0e256582, 0x8bcbf0fb, 0x82e28215, 0xffff24a7,
0x8285abf1, 0x24bb8304, 0x8b7b54ee, 0xaba11808, 0x07a55d0e, 0x5d14f821, 0x842505a6, 0x540e00ff, 0x2004837b, 0x081e687c, 0x093c9b18, 0x84204c82,
0x54215783, 0x22fe827c, 0x8a14f707, 0x18b32065, 0x180ce282, 0x8b169c90, 0xcd4c2165, 0xb3206587, 0x8a116e66, 0xff0e2365, 0xbd82f601, 0xfa980134,
0xffff15e2, 0xffcc4ce2, 0x66a61d00, 0xf3ffff05, 0xcc4d0080, 0xc2eb2706, 0xffffff90, 0x138570fd, 0x7ff3ff23, 0x20e682d8, 0x221483d1, 0x8248a1d1,
0x20fc2429, 0x84ffff00, 0x06fd2b04, 0xfbffffea, 0xffff785e, 0x138240fe, 0xfabefa22, 0xf3272982, 0xffff5ccf, 0x82707ddb, 0xc4b32729, 0xb3ffff9a,
0x52187ab8, 0x08200773, 0x2105394c, 0xe06e929a, 0x03002305, 0x30826666, 0x9a99de25, 0x820700ff, 0xdeff2194, 0x08fd1e1a, 0x8219e921, 0x33e92239,
0x2e1e8232, 0xffcdccf6, 0x9a99f6ff, 0xf4ffff84, 0x82870080, 0x23358295, 0xedffff85, 0xff21b082, 0x205183ee, 0x272183f1, 0xff3d0aed, 0xcd4cfeff,
0xe8223182, 0xbf824761, 0x41839920, 0xffb8de22, 0x23055c59, 0x7a4821ef, 0xd2251a82, 0xffff4861, 0x273982d2, 0x713d0800, 0x3700ff39, 0xff240a82,
0x080080c8, 0x5e200a82, 0xc82a2b82, 0x00ffb89e, 0xffae0752, 0x3a82f7ff, 0x822d0021, 0x2d00231e, 0x1e829082, 0x91821020, 0xe1100030, 0x0a00ff48,
0x00ff6526, 0xff52f815, 0xf5820200, 0xde170023, 0x06774ab8, 0xc0120034, 0x0e00ff00, 0x00ff0a17, 0xfff66811, 0x48a11200, 0x54410891, 0x03002205,
0x261a82e0, 0xffae870b, 0x82fe0600, 0x82092062, 0x0900236c, 0x1e824861, 0x68831620, 0x58831620, 0x04830620, 0x72822120, 0x59f7ff26, 0x2100ff9a,
0x267b1e83, 0xa10e2105, 0xf827b682, 0x00ff28fc, 0x82295c0d, 0x0240219b, 0x1e205682, 0x4c207783, 0x4c268283, 0xff058f42, 0x5d832400, 0x842b0c22,
0x2007bf65, 0x228d8301, 0x82dec404, 0x0cf722a7, 0x208182ff, 0x83048340, 0x5c2e21ea, 0x2e224982, 0x29823c4a, 0x886b0d22, 0x78274a82, 0x00ff8b52,
0x42343314, 0x082a0906, 0x4cd9feff, 0xc7feffcc, 0xe16d1e05, 0x0080210e, 0x820ae16d, 0x150021ac, 0x1a200488, 0x83052746, 0x724e8206, 0xd3460dbb,
0x095d6a06, 0x3682ea20, 0x0e82ff20, 0x0e088b32, 0x667700ff, 0x9301ff67, 0xff1566e6, 0xcd4c1700, 0xe121a782, 0x83098248, 0x05fe2221, 0x354b821e,
0xffff67e6, 0x0820c5f8, 0xb33200ff, 0xb2ffff33, 0xff05ae87, 0x1f83b4ff, 0x9999b422, 0xfe200a82, 0x44822a84, 0x82feff21, 0xfeff233e, 0x6f86cccc,
0x67e6fc29, 0xffff8b08, 0x8266e6fd, 0x9a192110, 0x67230983, 0x840200ff, 0x0080262e, 0x2304f708, 0x820e8205, 0xfdff211d, 0x0021ee82, 0x23b48303,
0x8f66e6ff, 0x6e822384, 0x33820320, 0x82020021, 0x00002815, 0x00ff32b3, 0x86666604, 0x6603264c, 0xffff0868, 0x211983c3, 0x82821962, 0xb35a0026,
0x4b00ff34, 0x2f838d83, 0x468c8e21, 0x8a8406e1, 0x34330322, 0xe9202c82, 0x3f226183, 0x71825c8f, 0x37831c20, 0xc2b5102a, 0xcc2100ff, 0x0600ffce,
0x00218f82, 0x225b8321, 0x82146efa, 0x83442075, 0x85f42190, 0x3220f982, 0xff231982, 0x824861c4, 0x19ba22c3, 0x2344829a, 0x073433fa, 0xd6200c82,
0x2008fd42, 0x215582d8, 0x4f82e1ff, 0xb3e3ff22, 0x4b316583, 0xffffce4c, 0x05cc4c57, 0x80f8ffff, 0xffff8400, 0x08594af6, 0x135af520, 0xb3f52205,
0x20418233, 0x20d983f6, 0x82688303, 0x82922026, 0x4a4b2759, 0xa800ff3d, 0x388234b3, 0xd7a3e125, 0x831c00ff, 0xc5ee2258, 0x05b0501f, 0x2900ff24,
0x9a820080, 0xcccc0522, 0x00217f82, 0x22388245, 0x82853200, 0x9e3b2c1c, 0x4400ffb8, 0x00ff48e1, 0x82727d0b, 0xfdff2746, 0xff0e0770, 0x5e821f01,
0xe6300124, 0x6a821566, 0x2142e520, 0xebff2107, 0x0021e382, 0x050f4a19, 0x42052642, 0x8b21073d, 0x201783ff, 0x74068508, 0xff200996, 0x22052242,
0x82e7ffff, 0x0000268d, 0xffff9002, 0x22eb83e9, 0x51707dea, 0x902308af, 0x185b66e6, 0x20080f98, 0x069b5114, 0x78844f8e, 0xa4701622, 0xd06c4f88,
0x20168305, 0x056075ff, 0x5d49e620, 0x42068205, 0xe92206bb, 0xdb515c8f, 0x197f2408, 0x8224f79a, 0x20a383ca, 0x83c585ff, 0xe4ff21b8, 0xa384ca84,
0x86099675, 0x52068598, 0xff230528, 0x84c4b5e8, 0x05db75e0, 0xdb756620, 0x71002006, 0x1b20052f, 0xff297a82, 0x9999c4ff, 0x803cffff, 0x20ca8200,
0x25c48301, 0xff67e60c, 0x1482f2ff, 0x82090021, 0xf3ff2104, 0xff2d1382, 0x089a99fa, 0x33d8ffff, 0xeeffff33, 0x260482b3, 0xff9a19d6, 0x8266f7ff,
0xebd62728, 0x0000ff85, 0x1e829999, 0xf568f522, 0x23830a82, 0x295cf83c, 0xe6f5ffff, 0x0300ff66, 0xffff3e4a, 0x08ce4cf6, 0xfd0400ff, 0xf0ffff71,
0x148232b3, 0x825d8f21, 0xce4c2509, 0x1c0200ff, 0xef222882, 0x1e8232b3, 0x0d220226, 0xd9efffff, 0xf4225782, 0x1e82e17a, 0x82d6e321, 0x5a44260e,
0x07fdffff, 0x225c82ae, 0x824721ef, 0xf608210a, 0x2b261482, 0xfeffff85, 0x0982f49d, 0x82523821, 0x2c322170, 0xf5211e82, 0x266c8266, 0xff000f00,
0x823af8ff, 0xe4f5223d, 0x217b8734, 0x5c825c4f, 0x1e820c20, 0x35dcff23, 0x838582c2, 0xdcd8273d, 0xfbffff2a, 0xd282cd8c, 0x82e03a21, 0x46fe2f3d,
0xf1ffffe9, 0x00ff3e0a, 0xffd96e0f, 0xb482f5ff, 0x4f0e0028, 0x0500ff5c, 0x3d82b8de, 0x82782621, 0xf30f2167, 0x28305282, 0x00ffcd4c, 0xff28dc07,
0x156e2700, 0x87ffffff, 0x00239a82, 0x827b940a, 0x00ce210a, 0x2106a460, 0xa4821a0a, 0xc3b5fc27, 0xb00900ff, 0x225c82a4, 0x82e7dbfa, 0x66262657,
0x76fcffff, 0x20098205, 0x261e82e8, 0xffd7e3fd, 0x82471000, 0xfdff233d, 0x0a82f4dd, 0xfff6282a, 0x06810b00, 0xf80e00ff, 0x10276b82, 0x00ff77de,
0x82c2f502, 0xba10227b, 0x210a82e1, 0x238216f9, 0xff0bd726, 0xe4850100, 0xca210982, 0x2070833d, 0x201e8214, 0x231e820a, 0x02ecffff, 0x1b217b87,
0x896682ac, 0x4cf32d7b, 0x2500ffcb, 0xff87243b, 0xcecc2800, 0x3326cf82, 0x2900ff33, 0x3982cc4c, 0x0180fc27, 0x808effff, 0x22c68200, 0x855238ef,
0xefff2dc0, 0x00ff862b, 0xff206201, 0x4621efff, 0xf6217782, 0x22c082ca, 0x851e45ef, 0xf4ff2882, 0x00ffe27a, 0x82641b0f, 0x4821210e, 0x26218782,
0x22488268, 0x84701d02, 0x00ff23cb, 0xa6828e03, 0x82c50f21, 0xfd04212d, 0x0f221382, 0x1e822045, 0xfc490336, 0xb00900ff, 0xf8ffffe6, 0x00ff6a5c,
0xff761e0a, 0x866bf5ff, 0xcf217082, 0x225c825c, 0x82d8e3d6, 0x025a2a0a, 0x19d6ffff, 0x0800ff98, 0x2713829d, 0xff5c4fd8, 0xd7431100, 0xf9220a82,
0x6c826626, 0xff10f825, 0x8223f9ff, 0x36fe2728, 0xfbffff04, 0x0482703d, 0x82f4dd21, 0x8201265c, 0xfaffff0c, 0x21618229, 0x23839800, 0x82efe721,
0xe23a214c, 0xe1212d82, 0x213d8248, 0x2e8276fb, 0x9083db20, 0x827d0321, 0xabdb2133, 0x0b27dd82, 0xffff442b, 0x82c275df, 0x6503273d, 0xf6ffff1e,
0x33821203, 0x824ea221, 0x82422095, 0x7efc224c, 0x21138292, 0x1e82c435, 0xa4700c22, 0x802b1982, 0x0c00ff00, 0xffff3273, 0x82e4e5fe, 0x82632009,
0xcdfd2285, 0x2a1e820e, 0xffb8de10, 0x020bfdff, 0x820b00ff, 0xf1ff2323, 0x0e82ea06, 0xef221383, 0x7b820ad7, 0x90e2fd26, 0xbaefffff, 0xfc208b82,
0xf0228583, 0xa9827a14, 0xff2edd26, 0x9ad9f0ff, 0xfc211e82, 0x279a82b6, 0xff1a4ff6, 0x66c60700, 0xe4207b82, 0x0a270982, 0x00ff8295, 0x82323300,
0x7827225c, 0x200a8252, 0x2c5c827a, 0xffcc4c28, 0xf223f8ff, 0x6e2600ff, 0x213d8214, 0x1e82020b, 0x5c4f0e22, 0x22244d82, 0x0f00ff0c, 0x00211482,
0x274c830a, 0xffae47fe, 0xbcf40e00, 0xfb2c5c82, 0x00ff8c8c, 0xff5ccf27, 0xf42a0400, 0x23210982, 0x26b982d8, 0x00ff3867, 0x8200c023, 0x3903213d,
0x09226782, 0x5782f2bd, 0x00235c82, 0x829a190a, 0x68662180, 0xe639ec82, 0xff0e0866, 0xccccfd01, 0x807300ff, 0xffff1500, 0xff281cba, 0xcc4ca400,
0x059e5b05, 0x40290026, 0xdcffff00, 0x0021ef82, 0x08da831d, 0xb85ed522, 0x420800ff, 0xff9d0890, 0x46a10a00, 0x591c00ff, 0x1900ff9a, 0xffff2045,
0xff48e1f3, 0xd8632e00, 0xfe278e82, 0x00ff00a0, 0x82400005, 0x54432fb2, 0xf80200ff, 0xfbffff94, 0xffff3c1f, 0x8e8220fe, 0xb335ff28, 0xb4ffff33,
0x63820a57, 0xce0c7d26, 0xd5d0ffff, 0xdc2d2982, 0xffff291c, 0x8b00808c, 0x1960ffff, 0x2344829a, 0x0790c2ae, 0xee210c82, 0x20c08257, 0x2385830e,
0xff34b3f1, 0x07bf4b18, 0x3433ec27, 0x1700ff06, 0x222e82c0, 0x828c0f00, 0x071925bd, 0xf5ffffae, 0x00222682, 0x63834015, 0x5238d731, 0xb55100ff,
0x00ff05c2, 0x07c4b500, 0x83d2ffff, 0x820320b9, 0xd8ff22c8, 0x2c1a82f8, 0xff34331b, 0x295cecff, 0xe12600ff, 0x216d8248, 0xb28260fe, 0x82200321,
0xb0002c04, 0x0300ffd8, 0x00ff74d3, 0x820d8002, 0x42602104, 0x0c208082, 0x00239d82, 0x82281c0c, 0xe003214e, 0x04842482, 0xd7c30622, 0xd121d282,
0x05a04926, 0xdffaff23, 0x252982c0, 0xff48e10e, 0x6c83deff, 0x3d4a2125, 0x83e8ffff, 0x40272392, 0x1a828b01, 0x4821112d, 0x0f00ff8b, 0x00ff84eb,
0x614c1705, 0x083f06ea, 0xb9080621, 0x19c0ffff, 0xff91059a, 0xbe7ff7ff, 0xc00900ff, 0xfbffff00, 0x00ff3829, 0x8300400a, 0x47322238, 0x22ed82ae,
0x82428008, 0x1b08223e, 0x269e82e8, 0xff915463, 0x83000600, 0x572d279a, 0x2700ff0a, 0x9a820ad7, 0xfce90822, 0x30213d82, 0x2190821e, 0x5f82cecc,
0xfb27ed83, 0x00ff6466, 0x8234b30b, 0x4c4a21e3, 0x6d221482, 0xec686666, 0x3e4a2109, 0xc0216382, 0x23568200, 0x0800400d, 0x11840685, 0xab210482,
0x09ec6886, 0x11828682, 0xffa4b028, 0x1e45f5ff, 0x4d7eff8b, 0xffff2105, 0xff23c982, 0x8229dcf1, 0xcc4c2615, 0x33f6ffff, 0x2e198233, 0x088bcecc,
0xff01ff0e, 0x01ff6666, 0x8248219a, 0x75a8276b, 0x2cfeffc2, 0x8b5f6666, 0xf7ff3706, 0xffff8260, 0xffc295f3, 0x30fdffff, 0x5efeffff, 0x0800ffb8,
0xa082a49f, 0xc435bd27, 0xc76b01ff, 0x202982c8, 0x23ab82d2, 0x008053ff, 0xfd270a82, 0xffff00a0, 0x824260f8, 0x83652066, 0x9efd277c, 0x0700ffba,
0x3082be9f, 0xc1f5dd27, 0x4c8500ff, 0x272582ce, 0xff8f82d1, 0x9a193bff, 0xfe210a82, 0x27308220, 0xff84a0f7, 0x293cf4ff, 0xfe22ad82, 0x61824821,
0x827c5f21, 0xccd22730, 0xbb00ffcd, 0x2582cc4c, 0xff7fdc24, 0x5e8810fb, 0x5e83e020, 0xca82bc20, 0x0eedff22, 0x2106094f, 0x93831f07, 0xa2e5a827,
0x551101ff, 0x2c29829c, 0xff00e0f9, 0x707d1400, 0x600f00ff, 0x200982c5, 0x270e82c0, 0x8bb85e15, 0x0654f808, 0x05200e82, 0x00269c82, 0xff34330f,
0x1982edff, 0x33fcff35, 0xecffff32, 0x0e084861, 0xf7d4f7af, 0xfeff15b4, 0x820080f0, 0xb3333c27, 0x4d00ff33, 0x00ff142e, 0xff67e657, 0xecd13200,
0xe66300ff, 0xff088b66, 0x59cc0a00, 0xff230713, 0x826666ff, 0x8280200f, 0xd7fe22c8, 0x08b8820a, 0x90c28128, 0x00ffab07, 0x1528dc78, 0xe64800ff,
0xefffff66, 0x00ff5478, 0xffce4c3e, 0x98d9d3ff, 0x4c2800ff, 0xc3ffffcc, 0x2b82ecd1, 0x67845020, 0x072f2a82, 0xffff94fb, 0x15d82367, 0x2b0714fb,
0x82b98b06, 0x1fc52451, 0x832b00ff, 0x2b13275b, 0x2600ff85, 0x76829a99, 0x5c0f422e, 0x14fbeb06, 0xf7064b15, 0xd4f70714, 0x2005185e, 0x1d3f596b,
0x2b834420, 0x00ff8b23, 0x07bc6c23, 0xb31c0026, 0xdcffff34, 0x2805f949, 0x8b33b3dc, 0x4ce3ffff, 0x820483cd, 0x201783d3, 0x21848208, 0xc75c44fb,
0x83db2017, 0x07ab256e, 0x14f7b4f7, 0x422be082, 0xff069819, 0x9c191300, 0x83d9ffff, 0xcc0a21ac, 0xd426dc82, 0x5d8b9a99, 0x78832b08, 0xff2f0e2d,
0x9a195f01, 0xfeff15ab, 0x82d6e3e0, 0x66ee2253, 0x27708266, 0xff0080f2, 0x9a99f1ff, 0xef220a82, 0xd982cc4c, 0xab000035, 0xe6e0ffff, 0xffff0566,
0xff1835fe, 0x9a99ecff, 0x830f00ff, 0x22258296, 0x821000ff, 0xf70822a6, 0x206a82b4, 0xac6d1811, 0xb310240f, 0x82ff0834, 0xffbe2b35, 0x9a191f00,
0x0000ff05, 0x91824201, 0xff208c82, 0x00216583, 0x2309830e, 0x8b0080ed, 0x49356582, 0x00ff66e6, 0x159a19d1, 0xc0e4ffff, 0x1600ff00, 0xffffb89e,
0x270982d7, 0x4861fcff, 0x5ee9ffff, 0x18820e82, 0xeb234f82, 0x8272b81e, 0x68e22c8b, 0x8000fff6, 0x79059a59, 0x834d00ff, 0x82b220b3, 0x2f002d31,
0xffff9899, 0xff7b94b2, 0x68e6eeff, 0xb2222c82, 0x0a82f6a8, 0xff842b26, 0x717dcfff, 0x50821982, 0x01120023, 0x21098206, 0x7582e27a, 0xfa3e3c28,
0x6630ffff, 0xc0840566, 0xd8235125, 0x845600ff, 0xa81627a9, 0x1c00fff4, 0xff529a19, 0x4c282206, 0x839782cc, 0x99162ba2, 0xf80e089a, 0x1594f724,
0x468204fc, 0x0040ee26, 0xf1ffff8b, 0xff225682, 0x8518b3f1, 0xfb390742, 0x568b0754, 0x8bc060b6, 0x0654f708, 0xb6b68bc0, 0x9b08c08b, 0x3d00ff06,
0x222c82c0, 0x82403200, 0x200482de, 0x2010848b, 0x25068508, 0xcccdffff, 0x1b84ffcc, 0x33c2ff2d, 0x8b088b34, 0x7b1534fb, 0x8307eb06, 0xcfae1837,
0x06aa4b14, 0x78eaff21, 0xe5270802, 0x088b0080, 0x83dbfeff, 0x4cfb2ba6, 0x00ff15cc, 0xff67660c, 0xb24ff9ff, 0x05a45005, 0xf1203582, 0x20053b4b,
0x21b382f2, 0x04820a00, 0x5cf5ff23, 0x0fa54428, 0x00231682, 0x823eca0b, 0x840c209b, 0x1f00232d, 0x444a0c57, 0x1d003d05, 0xffffcc4c, 0xff85ebe4,
0x5ccf0f00, 0xf3ffff08, 0x00ff299c, 0xff523807, 0xcd4cf8ff, 0x66214782, 0x22358266, 0x459a590e, 0x50460709, 0xe30a2405, 0x82ffffd6, 0x84a08272,
0x05674606, 0x1cf5ff23, 0x0609452a, 0xe03d0682, 0x00ff66a6, 0xff7bd410, 0xc4b5e2ff, 0x111b00ff, 0xf0ffffec, 0xff085038, 0x00007000, 0x21cea98b,
0xce94d863, 0x908ec221, 0xff8621ce, 0x8420ce87, 0xee21ceae, 0x21ce9414, 0xce8fec11, 0x87cdcc21, 0x991921ce, 0x0e27ce85, 0x00ff94f7, 0x4d66e690,
0x554d0805, 0x801a220a, 0x22911800, 0x06b84c18, 0x0080ea24, 0x015fffff, 0x0cb84c09, 0x054d1682, 0xd5ff2c07, 0x00ff9a99, 0x159a1973, 0x82b9ffff,
0x7100277a, 0xff053e4a, 0x8f82f5ff, 0x4c100023, 0x2a4282cc, 0x00ff6666, 0xff9a1904, 0x8259f1ff, 0x8ff33199, 0xffff085c, 0xff5c0fd3, 0x66e6d9ff,
0xc0e0ffff, 0xca2c6682, 0xffffae47, 0xff1f05f7, 0x1f05c3ff, 0xfd261e82, 0xffff9e2f, 0x5882d9ec, 0x6d670f25, 0x82eeffff, 0x13003328, 0x088b0a57,
0xcc8500ff, 0xffff06cd, 0xff71fdff, 0x79831c00, 0x33330f25, 0x431800ff, 0xff240631, 0xcd4c0e00, 0xcb272482, 0x00ff3233, 0x82004079, 0x54f12793,
0x0c00ff7a, 0x8882a470, 0xffc47526, 0xe4e5fbff, 0x97829c83, 0x6eb2ef23, 0x2ab28208, 0xffff9002, 0x050ab78e, 0x821600ff, 0xf1ff224e, 0x204e82b3,
0x233e820f, 0x9a19e7ff, 0xe322f382, 0x74846666, 0xff06ce22, 0xff228184, 0xcf830f00, 0x48211122, 0x30218382, 0x211482a4, 0x46824721, 0x52f8f626,
0xf03c00ff, 0xe0256582, 0x00ffcecc, 0x28048235, 0x9819d3ff, 0x0c2600ff, 0x201e82cc, 0x215a8289, 0x8f84fffe, 0x34b3f326, 0x4cf8ffff, 0xf1218082,
0x27f98280, 0xffce4cfb, 0x6666f0ff, 0x0684da82, 0x83ffff21, 0x04002516, 0xffff74b3, 0x00232a83, 0x82f2b207, 0x19b92840, 0x8effff99, 0x82059a99,
0x29dc34bc, 0xcaefffff, 0x0500ff3e, 0xffffe1fa, 0xff8e02ea, 0x827a1100, 0x40f82209, 0x2baa8200, 0xff7c941e, 0x3473f2ff, 0xcc2100ff, 0xf8206482,
0x2322ad83, 0x5f829a99, 0x06830020, 0xd1281682, 0x0700ffea, 0x00ff6a9c, 0x00232a83, 0x82aa910d, 0x7a112235, 0x211482e2, 0x548384c0, 0x00ffe025,
0x83ecfc15, 0xff2a2568, 0xc4351000, 0x142b7e83, 0x7100ff7a, 0x0e05b85e, 0x83e200ff, 0x66ef2d51, 0xffff1566, 0xff6766d6, 0x34b34200, 0xfa2f9582,
0x00ffcdcc, 0xff323308, 0x33b3f4ff, 0x840100ff, 0x232982e5, 0xccccf9ff, 0xe22a4082, 0xffff9a19, 0xff68e6e7, 0xfa83ebff, 0x66e6dc24, 0x16826386,
0x3582fe20, 0x33f6ff22, 0x07253082, 0xffffcd4c, 0x2d0983f7, 0x8bcdcc09, 0x8b06da08, 0x0a00ff9f, 0xdb829a99, 0x00244582, 0x95cccc0f, 0x1d20a682,
0xff241082, 0x159a99b0, 0x227d1682, 0x7a54220a, 0x2010848b, 0x24068508, 0xabf1ffff, 0x05067386, 0x82eeff21, 0x7d68821b, 0x3e450bac, 0x06be5508,
0x830e0021, 0x82f1207b, 0x110021b1, 0x84052755, 0xb3f02266, 0x2fe28234, 0xff0080f6, 0x9899faff, 0xccf6ffff, 0xfcffffcc, 0xff242582, 0x8b9a19f5,
0xf5225382, 0x4182291c, 0xf6e8f527, 0x400300ff, 0x83bd8284, 0x650522a8, 0x281a82e2, 0xff8f42d6, 0x3233bdff, 0x213b8205, 0x1a82fcc9, 0x8278a921,
0x16993024, 0x44f5ffff, 0x0800ff9c, 0xffff0de2, 0x82aec7fb, 0x731322d1, 0x245a8233, 0x00ff72bd, 0x205a8315, 0x210482fa, 0x60481600, 0xf8162205,
0x20cf8252, 0x2cca8315, 0xff825505, 0xe07a1300, 0x410900ff, 0x27358288, 0xff0ce208, 0x10380400, 0x98265482, 0x0a00ffd6, 0x688224bb, 0x8230c821,
0x0a572159, 0x372a7e83, 0x4200ffd0, 0xff05ecd1, 0xb5824100, 0x19a50023, 0x31ca8298, 0xff6065f8, 0x20250600, 0xbef4ffff, 0xfeffff76, 0x34827c5f,
0x82ecd121, 0x46b6219d, 0x4a213483, 0x21b3823e, 0x34827b54, 0x82c00f21, 0x0af622f4, 0x0581413d, 0x99eeff25, 0x82778b9a, 0xf54e2375, 0x818206c2,
0x8210d821, 0x44072296, 0x216d821a, 0x47827fca, 0x09226183, 0x4282ddc4, 0xae07fb28, 0xf02700ff, 0x0c51ffa4, 0x19232505, 0xe2ffff9a, 0x00230482,
0x82323318, 0x99a0271e, 0x7a00ff9a, 0x8b823433, 0x66667b28, 0x94ffff8b, 0x04839999, 0x0a829a20, 0x08201082, 0xff240685, 0x67666b00, 0xff221684,
0xb8428400, 0x83068305, 0x84662016, 0x827d8204, 0x832d8210, 0x2428861e, 0xff66666b, 0x234382ff, 0xfc8b088b, 0x9e225f83, 0x4d8233f3, 0xcd0cb127,
0xfd4e00ff, 0x22318270, 0x83900261, 0x82068231, 0x82928311, 0x00ff2216, 0x05694161, 0x16850683, 0x0cb1ff23, 0x223882cc, 0x8234f39e, 0x82ff202d,
0xff3c2106, 0x2a2b1283, 0xef0e088b, 0x193f01ff, 0x8254f89a, 0xb3f322bd, 0x24248232, 0xff3433f5, 0x820482ff, 0xccf2260a, 0x64fc08cc, 0x24098507,
0xcc0a00ff, 0x221984cc, 0x5c0c00ff, 0x0683056b, 0x0b00ff24, 0x1b8432b3, 0x0d2a8e82, 0xf8083433, 0x00ff0764, 0xd482e600, 0x2f860d82, 0xf1203984,
0xff279584, 0xff999996, 0x833354ff, 0x33f72fce, 0x1a00ff33, 0xffff3233, 0xff9a99e7, 0x04821100, 0x66e4ff30, 0xff088b66, 0x3333ceff, 0xe4ffff06,
0x7c82b85e, 0x97e73608, 0xeeffff0a, 0xffff6666, 0xff5c4ff7, 0xcecce5ff, 0xd7ffff08, 0xffff7348, 0x0566e685, 0x67faffff, 0xeffffff0, 0x00ffe23a,
0xff211009, 0x48e1edff, 0xc01000ff, 0x22188242, 0x8208f468, 0x82ae20ac, 0xc9fb2fdb, 0x0d00fffc, 0x00ff0040, 0xff821104, 0x79830800, 0x96520922,
0x65204882, 0x27056454, 0xff7a54ee, 0x7b540e00, 0x22066543, 0x8285ab11, 0x83002086, 0x21378206, 0xc018156e, 0xff260c02, 0xf7ecffff, 0x65820524,
0x06000022, 0x0024ec82, 0x0524fb14, 0x43afa882, 0x9b00ff24, 0x46823433, 0x7f0a0627, 0x07f9ffff, 0x2697826c, 0xffffb4a8, 0x8294b8fb, 0xcd4c21ca,
0x03268083, 0xff8b1058, 0xe1820300, 0x88000023, 0x20098204, 0x22dc8261, 0x82ec1f01, 0xc01021d7, 0x0522cd82, 0x2b821098, 0xff5c0f25, 0x84201200,
0x82f620f1, 0x90c22195, 0xd932d782, 0x00ffb525, 0x052e1d7a, 0x4caaffff, 0x4b00ffcd, 0x3854cccc, 0x0b324713, 0x6666eb22, 0x1806c253, 0x54103649,
0x17820638, 0xe4540820, 0x80ea210c, 0x0b578482, 0x7f012405, 0x838b9a19, 0xfe7f2162, 0x9547b282, 0x66eb2216, 0x54628668, 0x0683064e, 0xecffff25,
0x9cffcc4c, 0x06475562, 0x32337f2c, 0x193affff, 0xffff159a, 0xf4824fd7, 0x9a197a22, 0xf722df82, 0x4742404a, 0x42982008, 0x682d0847, 0xffff088b,
0x06b81ece, 0x68e4ffff, 0x084742f6, 0x42f66821, 0xd7220747, 0x4682080a, 0x42ae4721, 0x20201347, 0x21114742, 0x2e826c03, 0xeedcfe2c, 0x6f0300ff,
0xffffff1a, 0x09822edd, 0xffde6426, 0x4e020000, 0xef2c1982, 0xffff1e05, 0x051298cf, 0x072b06b3, 0x21080c42, 0x5042ec51, 0xc7102206, 0x208f82ae,
0x24068300, 0x380f00ff, 0x0b504252, 0x9b07eb22, 0xac203396, 0xac213385, 0x2033838b, 0x30338d54, 0x192700ff, 0xffff0698, 0xff9002f0, 0xe2fa2f00,
0x218e8205, 0x29828c57, 0xb0670322, 0x88219482, 0x230f8204, 0x00ff7c5f, 0x08052d42, 0xbc5e142e, 0x900500ff, 0x00ff9462, 0xff323312, 0x6466faff,
0xb31000ff, 0xff0e0834, 0xccccf601, 0xe6b700ff, 0xffff1566, 0xff48a1af, 0xb85e5000, 0x29075866, 0x0548e12f, 0x0d00ff98, 0x5882b81e, 0x00401523,
0x270b827e, 0xff084821, 0x0080d0ff, 0x80267582, 0xffff0500, 0x3382e1f2, 0xff242182, 0x70bdeaff, 0x0f83f982, 0x25831483, 0x82b81e21, 0x821e202a,
0xafff274e, 0x00ff16ae, 0xa6827a4f, 0xe6f9ff23, 0x218b8266, 0xab6800e0, 0x03002205, 0x21098360, 0xeb829a99, 0x80f7ff23, 0x20418200, 0x225182f7,
0x82a0fcff, 0x83fa2016, 0x20fa2240, 0x214b8200, 0x0f82409f, 0x71820482, 0x829ef321, 0x84f32056, 0x82eb202a, 0x0c00252a, 0xffff4861, 0x08200f82,
0x2583bb82, 0x839eaf21, 0x4cf62c71, 0xf6ffffcd, 0x55059a19, 0x821800ff, 0xc1ff28ae, 0xff8933b3, 0x82cccbff, 0x84e42016, 0x80f72552, 0xfbffff83,
0xfe207e83, 0xf4268d83, 0x00ffb83e, 0x6682c006, 0xe383f920, 0x996b0026, 0x94ffff9a, 0xee20e384, 0xee218783, 0x20ee8340, 0x222f82fd, 0x82c00000,
0x82fd2025, 0x000022a1, 0x180983e0, 0x2111f375, 0xc882b89e, 0x4861ee23, 0x82068308, 0x0e002194, 0xff210482, 0x183782f1, 0x2008005e, 0xcd6d189e,
0xff8b2312, 0x23820200, 0x20ffff23, 0x82098200, 0xffff216a, 0x00233782, 0x8200a002, 0x841120dc, 0x48e1233d, 0x9b86ff05, 0x82666621, 0x83b1850a,
0xde0b2125, 0x0120c082, 0x04203983, 0x0022ef82, 0x34838008, 0x48e11b2b, 0x403400ff, 0x00ff8d00, 0x2b24823e, 0xb87ee7ff, 0xff9508c1, 0x7cdf0900,
0x50203c82, 0xaf221283, 0xa573d8a3, 0xf3ff2206, 0x2142829e, 0xbc821e14, 0x7a0b0026, 0x0c00ffe2, 0xff22c182, 0x78836000, 0x25820482, 0x0ce20633,
0xe10500ff, 0x0300ffca, 0x8b946666, 0x990700ff, 0x08e3829a, 0x66080024, 0xfcffff66, 0xff949a99, 0x3233faff, 0xfeff0891, 0xff34b3e4, 0x34b34200,
0xbbffff15, 0x00ff9a19, 0xad83e644, 0xa3834920, 0x00c04922, 0x44224a82, 0x1a822adc, 0x05b81e27, 0x2bb6ffff, 0x26048284, 0xf705e23a, 0x8e38fb38,
0x207b8330, 0x20f48449, 0x22ca8244, 0x8221bbff, 0xb6ff23ff, 0x30821e45, 0x050a1727, 0xf76cf70e, 0x183182ec, 0x22105561, 0x82ccccf2, 0x82ff2097,
0x054e5206, 0x33f5ff22, 0x0d298f82, 0x088b0040, 0x684f00ff, 0x25ba82f6, 0xff0a9740, 0x0a83bfff, 0x97b0ff23, 0x9d9e180a, 0xcccc2b09, 0x4cf5ffff,
0x0d00ffcc, 0x2d833433, 0x44820683, 0xe4751682, 0x06aa5206, 0x82e66921, 0x82a920f3, 0x56002104, 0xff27e082, 0x8b9a1996, 0x82f39308, 0x4547188c,
0xe6dc2a89, 0x15eefb66, 0x5e1b00ff, 0x2a0484b8, 0x0200ff05, 0xffff00a0, 0x820060ff, 0x1b6f2109, 0x1e210982, 0x21098276, 0xe88300c0, 0x06821120,
0x0e00ff24, 0x0482713d, 0x8b904228, 0xbd1100ff, 0x06830870, 0xffb89e26, 0x8fc2f1ff, 0x63251682, 0xeeffffd8, 0x242d8340, 0x4861eeff, 0x2116828b,
0x048247a1, 0x2105ee42, 0x2d82b85e, 0x20fdff22, 0x00245b82, 0xffff56cf, 0x21052143, 0x098206c0, 0x08006027, 0x8de4ffff, 0x2c04820f, 0xff056c9c,
0x852b8bff, 0xe67400ff, 0x210a8266, 0x2f82c0f8, 0x82400721, 0x21f32595, 0xfeffff48, 0xff240e82, 0x821f05fc, 0xd6203082, 0xb2211583, 0x21bb821e,
0x8282de0b, 0x142e9d26, 0xa14100ff, 0xbe232482, 0x8208ce4c, 0xb99e2b0a, 0x61beffff, 0x6200ff46, 0xb971e1fa, 0x4d002805, 0x00ffcccc, 0x8202c029,
0x20092b1e, 0x00ff9000, 0xff484101, 0x54830c00, 0xc682f820, 0x40070023, 0x22588200, 0x82e27a8a, 0x66a6357e, 0x30fb0e05, 0x54f8d4f7, 0x0654fb15,
0x14fb14fb, 0x07d4fb05, 0xdc20d482, 0x00212e82, 0x2104821c, 0x8182e3ff, 0x83230021, 0x94f723f0, 0x0984ff06, 0x1984ff20, 0x8b200483, 0x08201084,
0x82059d60, 0xffff2324, 0x7d824ce3, 0xdc333884, 0x088b34b3, 0x34fb34fb, 0xeb065b15, 0x2b06bb07, 0x938bdb07, 0x2580820a, 0x1514f88b, 0x77b114fc,
0x07d4f725, 0x82f714fb, 0x065423b3, 0xb282ffff, 0xae83b882, 0xc385b383, 0x74f7082f, 0x4b1554fb, 0xcb07cb06, 0xeb074b06, 0x200a848b, 0x18c682ab,
0x28147c62, 0xfb4b076b, 0x06cb1514, 0x2089836b, 0x20f782ee, 0x059951ff, 0x4100c021, 0x6b2006f2, 0x2b214882, 0x2221828b, 0x894b074b, 0x516b200a,
0x00200cc8, 0x09fa6218, 0x8b07ab26, 0x94f715eb, 0xfb217982, 0x252e8294, 0x8b15cb8b, 0x798200ff, 0x2383ff20, 0x0e820486, 0xab088b22, 0x4b282282,
0x0e07ab06, 0x8f01ff2f, 0x5c068d4a, 0xea2205b4, 0x1848707d, 0x68162213, 0x5c1684f6, 0x74480e67, 0x5dea2016, 0xe4330893, 0x088b9a99, 0x1554fc8b,
0x3ff7ffff, 0xffff8bbe, 0x1842c0f8, 0x2208c8ef, 0x82080040, 0x83f72011, 0x99f922f7, 0x2c16849a, 0x66f6ffff, 0xff088b66, 0x70fd9fff, 0x74339d06,
0xf82705fe, 0x00ff00c0, 0x82bebf08, 0x60002633, 0xff069002, 0x067d5200, 0x18908221, 0x230caf52, 0x70fdffff, 0xcc212882, 0x076052cc, 0x86343321,
0xa2fb266b, 0x19fcffff, 0x28a1829a, 0x8bf6a8f4, 0x260000ff, 0x26198266, 0xffffd8a3, 0x823d8af4, 0xfbff2356, 0xa6820eed, 0x37e9fb27, 0x840100ff,
0x322c8218, 0x00fff8f3, 0x08e81b03, 0x05bcffff, 0x4300ff1e, 0x8205d6e3, 0xdfef2115, 0x20261582, 0xfbffff00, 0x2982e3e5, 0x83209021, 0x841f2009,
0xe3e52140, 0x16824083, 0x70feff22, 0xfc221682, 0x2f821bef, 0x82c0df21, 0xd7fc2240, 0x220a828d, 0x82ffecf1, 0x821a2019, 0x66e62230, 0x2005848b,
0x82068508, 0xdf8f2147, 0xe5211082, 0x205b83a2, 0x222a8242, 0x8208daee, 0x48e12171, 0x05247b84, 0x600900ff, 0xf6271582, 0x00ff00a0, 0x82c9360c,
0x83602029, 0xb85e2109, 0x00237682, 0x82e13a0d, 0x571922ce, 0x21f7820b, 0x0a82f4fd, 0x345e1022, 0x00273c82, 0x00ff8a00, 0x82a4300b, 0x99192be4,
0xcc0400ff, 0xf9ffffce, 0x318367e6, 0x33b32c2d, 0x19af00ff, 0xffff159a, 0x826666a2, 0xcc4c2104, 0xf922d982, 0x2182bebf, 0xd982c020, 0x82e0fc21,
0xcff72204, 0x229c825c, 0x83ecd1f7, 0x40e721a3, 0x16216f82, 0x20bf8291, 0x212082f8, 0xec7d0900, 0x40082205, 0x226e8242, 0x41bf3f08, 0x00280511,
0xff482106, 0x00400600, 0x5b237d82, 0x82e7d8e3, 0xdee12753, 0x1e00ffb8, 0x0a82b81e, 0x8201fb21, 0x0605218f, 0xfb216e82, 0x278f8299, 0xff34b305,
0x9a19fcff, 0x19363082, 0xffff089a, 0xffcc4cd1, 0xcccc7400, 0x6900ff15, 0xff060180, 0xa482ecff, 0xb3eeff23, 0x2f3a8234, 0xffebd1ea, 0xc2f5edff,
0xdefeffff, 0xe8ffffb9, 0xa9827d82, 0x837a1421, 0x11ef2299, 0x264282ec, 0xffffcdcc, 0x82c2b5ef, 0x48e126f0, 0x1ef4ffff, 0x278282b8, 0xff90424e,
0x00c0b1ff, 0xad224082, 0x7a43ce4c, 0x122e4807, 0x13a47418, 0x5900ff24, 0x33824861, 0x9e0c0029, 0xfaffffb8, 0x49ffbedf, 0xf634050c, 0x00fffafe,
0x0848e108, 0xfdc2ffff, 0xff05c870, 0x06800000, 0x00200483, 0xbf200482, 0x00211b82, 0x20098320, 0x82048580, 0x82522085, 0x52002385, 0x29824861,
0xf8b30732, 0xb30700ff, 0x0400ffb6, 0x00ff980e, 0x8b022b0a, 0x61210582, 0x33c68248, 0x3e0a1600, 0x23eeffff, 0x1100ffd6, 0xffff14ee, 0x8b9ad9e9,
0x32226282, 0x5682cc8c, 0x82d60321, 0x19ef23c2, 0x2a468b99, 0xf1ff2305, 0x0a82cccc, 0x3433ee22, 0xff203882, 0xff240682, 0x713d0e00, 0xcc201b82,
0x10302c82, 0x088b67e6, 0xb001ff0e, 0x01ff9a19, 0x15e2fa5f, 0x08496118, 0x43e07a21, 0x82210828, 0x2639828e, 0x90821a00, 0x43eaffff, 0xd360063f,
0x85ea220e, 0x081e441e, 0x82707d21, 0xe5ff232d, 0x3f82727d, 0x84e27a21, 0x2a548216, 0x088b0080, 0x8afeffda, 0x821584eb, 0xfa0d21c5, 0xf42c1882,
0x00ff86ab, 0xff52f809, 0xa470f3ff, 0xed22be83, 0xa882281c, 0xf6a8ff27, 0xe3ecffff, 0x216282d6, 0x16837c14, 0x2486fa22, 0xfa271682, 0x00ff249b,
0x82bc1401, 0x4e022233, 0x32ec82da, 0xff323378, 0x90424600, 0x3100ff05, 0x00ff6626, 0x82ecd149, 0x72052c0a, 0x0800ff2e, 0x00ffb21d, 0x82dca402,
0x8246205e, 0x0900243b, 0x5508723d, 0xff2e0535, 0x5839fbff, 0x540c00ff, 0xf6ffff7c, 0x20829eaf, 0x82842b21, 0x9ed72c4b, 0x2800ffb8, 0xff05717d,
0x82e695ff, 0x1935224b, 0x2c0a8299, 0xff3e8aff, 0xfadefcff, 0xccffffff, 0x210982cc, 0x8782cccc, 0xce48fc20, 0x59ef2c05, 0x0600ff9c, 0xffff4656,
0x82b7deef, 0x3f152150, 0xeb2cc682, 0x00ff0885, 0xffad074b, 0x3ecab4ff, 0xd2274082, 0xffffb81e, 0x82703dbb, 0x003a270a, 0x6600ff02, 0x0a82e23a,
0x5278fc22, 0x2805927e, 0x3333fcff, 0xe60000ff, 0x215b8266, 0xea833d4a, 0xb8bef122, 0xf6276282, 0xffff3353, 0x82ce4cf4, 0xb3f3220a, 0x2db98232,
0xb653f7ff, 0xbc0400ff, 0xf7ffff29, 0xdf820ca2, 0x829a3921, 0xcecc29c8, 0xff1cf808, 0x666635ff, 0x0b27f782, 0xffff48e1, 0x82be7ffa, 0xec91268a,
0x61fdffff, 0x210982ca, 0x548246a1, 0x0f260023, 0x3a65825e, 0xffaa1c0f, 0xcc4c1900, 0x1100ff8b, 0xfc089a99, 0x7901ff1c, 0xff153473, 0x8266f5ff,
0x73e9227f, 0x21448232, 0x7882b305, 0x3433fd29, 0xfeffff91, 0x83919a99, 0x2709223c, 0x2731822b, 0xff6ff208, 0x32330300, 0xf526f282, 0x0500ffc2,
0xe882eae6, 0x8f422f27, 0x7de8ffff, 0x23d28272, 0x8b00e0ff, 0x0682ad82, 0xffffff24, 0x0482f9df, 0x8200e021, 0x80722521, 0xc7ffff01, 0x0024ff83,
0x98908220, 0x06276182, 0xffff4260, 0x7ab8deec, 0xf32207df, 0xce82b8de, 0xff06a12b, 0xb91ef6ff, 0x5e0b00ff, 0x20c582b8, 0x263b8340, 0xffd6233a,
0x83e6e3ff, 0x9b042cdb, 0xfdffffe8, 0x00ff87b6, 0x8292d804, 0x98ee219a, 0xce210982, 0x219e8316, 0xd083cc12, 0x162e0d27, 0x6e0f00ff, 0x23a98214,
0x08008010, 0x0b270682, 0xffff71bd, 0x82fc89f9, 0x295c2652, 0xb8f4ffff, 0x2cb58294, 0xff089999, 0x52f8cbff, 0x191a00ff, 0x26b5829b, 0xff48e1ee,
0x82263300, 0xf9ff3562, 0x00ff3e74, 0xffce9712, 0x9a99e9ff, 0xb31800ff, 0xe0ffff34, 0x22052851, 0x828e57f8, 0xd6f731da, 0xfeffff86, 0xfffffa7e,
0xffd863f7, 0xea91fcff, 0xae224b82, 0xee82e0ba, 0x82c09f21, 0x80c1274b, 0x1e00ff00, 0xd88250f8, 0x4e020027, 0x580000ff, 0x2104829c, 0x04822001,
0x828c5821, 0x58002290, 0x36978394, 0xff48210e, 0x3188f8ff, 0x910d00ff, 0xf2ffffea, 0x00fff893, 0x827cd406, 0xe0f4274b, 0xeaffff69, 0x4b82de4f,
0x1f45dd27, 0x050700ff, 0x220a8220, 0x82f6a8ff, 0xec112641, 0xb3ffffff, 0x21098233, 0x09828e02, 0x82f6a821, 0xfdff23fa, 0x97828155, 0xd763fd27,
0xd2fdffff, 0x220a82b0, 0x826ee7fc, 0xfeff2362, 0x2882e886, 0x82e4a521, 0x7a8926ae, 0x290100ff, 0x32098279, 0xff089af9, 0x42601900, 0xefe8ffff,
0xaf0e051a, 0x18f7e4f7, 0x235d7ad9, 0xd4fb6cf7, 0x0e494718, 0x58004021, 0xf2220955, 0x3b5900c0, 0x82402007, 0x06525909, 0x0080ba23, 0x24a68206,
0x00ff0080, 0x05d542b2, 0x08304d18, 0x3e4a082b, 0x8f0b00ff, 0x00ff8b5c, 0x0502450d, 0x1b821120, 0x9ef1ff34, 0x0e00ffb8, 0xffff3333, 0x8bb85eee,
0xd4ffff08, 0xfd829a19, 0x05100a2c, 0xe3e5ffff, 0x3500ffd8, 0x0a825338, 0x5283f320, 0x00801926, 0x1200ff74, 0xff213182, 0x233b82e5, 0x00c00600,
0xb8273082, 0x00ffaec7, 0x82662615, 0x86f82c25, 0x0100ff66, 0xffffaad1, 0x821f65f8, 0xbedf2145, 0x7d210982, 0x22568371, 0x82d723eb, 0x9ceb31bc,
0xf9ffff29, 0xffff6025, 0xff0a17ef, 0x4e22f3ff, 0xd8274082, 0xffffcb4c, 0x82f881e1, 0xb3f72140, 0xf92c8882, 0xffff34b3, 0xffccccfa, 0x6666f7ff,
0xf5233482, 0x82080080, 0x83f12006, 0xb60822c0, 0x21408246, 0x5c82e17a, 0x66825120, 0x47a1ff22, 0xca274082, 0xfeffbebf, 0x823433f1, 0x1ed52240,
0x394218b8, 0x40f52208, 0x0b005400, 0x8208fd53, 0x0a424dba, 0x0674f82b, 0xc02700ff, 0x00ff8b00, 0x83308220, 0x820a8204, 0x20738210, 0x05f95300,
0xffcc4c22, 0x22053354, 0x8234b3f2, 0xfbfe2ecb, 0xffff9a99, 0x159a19d0, 0x199fffff, 0x273e8299, 0xff99192b, 0x52f85a00, 0xea278082, 0x00ff8f02,
0x829a190c, 0xdef3250a, 0x0700ffb8, 0xff2d5382, 0xffd723f6, 0xd6a30900, 0x80f8ffff, 0x2c4b8200, 0xff0848e1, 0x1f85c1ff, 0x4c7cffff, 0x222982cc,
0x82f7a8e7, 0x90c225d0, 0x3400ff05, 0x01232f82, 0x82666605, 0x20042d0a, 0x00ff8c00, 0xffacfc03, 0x93d80100, 0xa0270982, 0x0200ffc5, 0x620800c0,
0x1e22069e, 0x25823373, 0x2dd20527, 0x7c0400ff, 0x216a8228, 0x1f82fc09, 0x18384921, 0x2109ffc0, 0xca826005, 0x77fe0127, 0xc9ffffff, 0x214582ba,
0x0982eedc, 0x82728e21, 0xba0e2740, 0xfbffffe1, 0x7c82f49d, 0x1283da27, 0x9fa8ffff, 0x200a8221, 0x299d82fc, 0x67e6f7ff, 0x66feffff, 0x7e41ff66,
0x99f73206, 0xff8b089a, 0xa4f0e9ff, 0x6b0b00ff, 0xeaffff85, 0x270982b0, 0xff71fd13, 0x6626f4ff, 0x54264b82, 0xffff53f8, 0xf283d9cd, 0x1e85e627,
0xc5aeffff, 0x2097821e, 0x2d4b836e, 0x1566e6ff, 0x6bd4ffff, 0x0000ff86, 0x15820020, 0x9a991727, 0x7a4b00ff, 0x220a82e2, 0x82943801, 0x625021b8,
0x95211a82, 0x21098280, 0xac824260, 0x0a570422, 0x00236c82, 0x82ae8710, 0x2671257e, 0xe60f00ff, 0xf1318882, 0x00ffe425, 0x08f6e808, 0xcac2ffff,
0x2400ff3e, 0x276c8219, 0xec511f00, 0x3a4e00ff, 0x14344b83, 0xffff9042, 0x05d6a3d6, 0xefffff93, 0x00ff00c0, 0xff2adc10, 0x2305d05c, 0x8b004012,
0x2127a482, 0xffff104e, 0x82ecf1ff, 0xcce62ae5, 0x0544fbce, 0x00ffef0e, 0x05cc753f, 0x35030023, 0x227b82c3, 0x82004002, 0x90c22522, 0x2e0200ff,
0x22089f66, 0x71295c35, 0x3231067a, 0xffff9a19, 0xff1e05e2, 0x33331d00, 0x4ad1ffff, 0x3256823e, 0xffcd4c04, 0x3233f9ff, 0xff4bb305, 0x99194600,
0x82d9ffff, 0x4b002226, 0x22748480, 0x8234331e, 0x80182157, 0x04829082, 0x10820a82, 0x29233482, 0x6f07cc4c, 0x4c240821, 0x0e00ffcc, 0x11280483,
0x088b34b3, 0x00ff06cb, 0x13850883, 0x217d5f18, 0x8b072b31, 0x56606056, 0x076b088b, 0x07ab064b, 0x850654fb, 0xffff3108, 0x8be1faca, 0x05d5ffff,
0xc08bb61e, 0x0734f708, 0x210df56e, 0x80837c54, 0x07827d1a, 0x2b13f26e, 0x069a191f, 0xe64002ff, 0x15fcfb68, 0xcf274882, 0xffff6666, 0x839899d8,
0xff9a2a04, 0x6866cfff, 0xfeff088b, 0x20248317, 0xf44c18ff, 0x22e08714, 0x85e13a0f, 0x100023cc, 0x33821fc5, 0xe6e80123, 0x0c417166, 0x820a0021,
0x00ff26f8, 0x08cc4c0d, 0x17164193, 0x26161441, 0xf70e0783, 0x1934f894, 0x26098e1b, 0xffffe869, 0x8266e6a2, 0x198d23af, 0x0682089a, 0xf668ce30,
0x631500ff, 0xd2ffffd7, 0x00ff0a97, 0xbb829923, 0x6982dc20, 0xf3ffff33, 0xffff0080, 0xff289ccd, 0xa430d6ff, 0x17d3ffff, 0x05af660c, 0x80ffff29,
0xffff0800, 0x826acefd, 0x34b32104, 0x67241482, 0xfcfffffd, 0x0035f982, 0x88034801, 0x0000ff08, 0xff889a69, 0x87b60300, 0x33feffff, 0x21098234,
0xd782df2f, 0x4f420023, 0x2af3825c, 0xffa4b031, 0xcccc1f00, 0x821800ff, 0x1300236b, 0x31822a9c, 0x33b32022, 0x19837082, 0xcd4c242c, 0xe6f8ffff,
0x2600ff66, 0x4a776666, 0x5d00290d, 0xff8b9a19, 0x66e67200, 0x0683b882, 0x8dffff23, 0x82288266, 0xffff2216, 0x05555472, 0x3e83a720, 0x9a191022,
0xfc25f182, 0xffff9999, 0x236882ec, 0x6766eeff, 0x19205d82, 0xe622d982, 0x5382cccc, 0xf8fbff23, 0x22fa8210, 0x82efc7fb, 0x825020ab, 0xa8fb22e5,
0x200982f5, 0x25d683b0, 0xff0a97f8, 0xb5820100, 0xb5f7ff24, 0x8a828ec2, 0x02229483, 0xf18232b3, 0x21b0f722, 0xfa321082, 0x00ff8340, 0xfff6a809,
0x52f80200, 0x4f0800ff, 0x0a89085c, 0x0700ff28, 0x00ffb89e, 0x1983b805, 0xff486126, 0x3433fcff, 0x06271e82, 0xffffa0fa, 0x828480fd, 0x0f8d211e,
0x0c250982, 0x0600ff8a, 0x228f8259, 0x82d202ff, 0x700b271e, 0xfeffffa4, 0x5782ec3c, 0x0021be82, 0x28a98202, 0xcdcc0000, 0x990400ff, 0x221e829a,
0x82910d01, 0x78e92652, 0x1bf4ffff, 0x2b6b8265, 0xffffe87b, 0xffae47f2, 0xaaf10300, 0xf3229682, 0x0a8247e1, 0xfff08726, 0x0ad7dfff, 0x70214282,
0x272d8262, 0x00ff66a6, 0x08ae0721, 0x0f244382, 0x1700ffdf, 0x00278b82, 0xff7d3f17, 0x82870c00, 0x821e2038, 0xfbff23d4, 0x1e82142e, 0x82e70521,
0x18ff2238, 0x21908202, 0x8582b488, 0x82ee0f21, 0x66262109, 0xe021a482, 0x221e8200, 0x82105808, 0x0020210a, 0x6f264782, 0xf6ffff9e, 0x0e8300e0,
0xffff4225, 0x82f6a8f7, 0x31fd227b, 0x210a82aa, 0x19823994, 0x474de620, 0xf7ff2306, 0xa4829a99, 0x8267e621, 0xa7fb241e, 0x7500fff0, 0x67210508,
0x2b0982ef, 0xffff2170, 0xff17d9fb, 0xefa70000, 0xf4211e82, 0x208b82c7, 0x22238201, 0x8380f6ff, 0x13f02657, 0x38ffffff, 0x21238252, 0x1e820d80,
0x70fdfe2c, 0x4ffaffff, 0x0a00ffe0, 0x76826766, 0x8233b321, 0xcdcc2609, 0xe6fcffff, 0x219a8266, 0x33820011, 0x8219fb21, 0xb31f236c, 0x29828234,
0xff333326, 0x9a99deff, 0x98201a82, 0xff252a82, 0x1566e6ef, 0x189d828b, 0x31295fce, 0xffff07bb, 0xff5ccfec, 0xf668e6ff, 0xf9ffff05, 0x3e8220f0,
0xf2220483, 0x49821383, 0x15eef927, 0x0f0800ff, 0x839a82e0, 0x19002525, 0x5b050a97, 0x2ec2ce18, 0x2f82eb20, 0xe006002c, 0x0400ff00, 0x00fff067,
0xbe823905, 0xb4880627, 0x140300ff, 0x21b8827a, 0x19828006, 0x10180227, 0x350700ff, 0x20f282c3, 0x222382d8, 0x82f52804, 0xf67721dc, 0x232a1e82,
0xffffa430, 0x05291cd1, 0x0a8300ff, 0xee2e0023, 0x200a8215, 0x22e18204, 0x82870500, 0x3e072c2a, 0x0200ff76, 0x00fff81e, 0x82527806, 0x22f0213e,
0x06223482, 0x0a823e8a, 0x82aec721, 0x66662172, 0xe621d582, 0x2bcb8366, 0x2b089a19, 0x7700ff07, 0x00ffcc4c, 0x20072f43, 0x082f439a, 0xf3202782,
0x20052f43, 0x0b2f43ce, 0x00206282, 0x20052f43, 0x072f43f6, 0x82c0f721, 0x40012db1, 0xf7ffff00, 0xff8ea4b0, 0x14aef8ff, 0xa7228282, 0x108308f0,
0x10822020, 0x8440fa22, 0x27202f43, 0xff9ad904, 0x48610800, 0x20068e6d, 0x0b2f4300, 0x2f430e20, 0x82472017, 0x5709228d, 0x216d820a, 0x8d821018,
0x9027e084, 0x00ff0820, 0x43920d01, 0x6420082f, 0x20132f43, 0x1c2f4348, 0x57820720, 0x20052f43, 0x43578238, 0xe482052f, 0x30452f43, 0xffff0020,
0xfff0a7f7, 0x5ceff6ff, 0x88fbffff, 0x200e82b4, 0x22fc8299, 0x436ce702, 0x85820e2f, 0x2f430120, 0x43162005, 0xcf21082f, 0x84dd825c, 0x05de413d,
0x2c0d2f43, 0xffbedfff, 0xbd54faff, 0x660a00ff, 0x082f4366, 0x2f43cc20, 0x479c2005, 0x2b4306a4, 0x43322007, 0x0e30052b, 0xb3cc01ff, 0xc600ff34,
0xff156666, 0x84e00500, 0xec822682, 0x97060023, 0x244182ce, 0x00ff64db, 0x052f5606, 0x90c20a2d, 0x1500ff8b, 0x00ff3c4a, 0x826d6708, 0x9017230a,
0x068208e5, 0x71bd0922, 0x93263282, 0x0900fff8, 0xcc82b89e, 0x20829f20, 0x3d4a0622, 0x902ccc82, 0x00ff0080, 0x05e27a53, 0x40f2ffff, 0x0a200a82,
0xff230482, 0x82c2b5f0, 0x822b2040, 0x82ef2066, 0x0500232e, 0x2982b85e, 0x0a57c022, 0x3a205a82, 0xe5272983, 0x00ff48e1, 0x82b81e34, 0x69fa2c34,
0x0b00ff37, 0xffff862b, 0x4263b0f4, 0xf42306d1, 0x828b1e45, 0x33ee2830, 0xffff8b33, 0x825ccff1, 0xae872104, 0xee220a82, 0x8c82c275, 0x32fbff28,
0x0100ff6e, 0x91820416, 0xff062126, 0xba490200, 0x6c260982, 0x00ff088c, 0x9c821e1d, 0x48e1c523, 0x82e48205, 0xf4ff21df, 0x09227d83, 0xb182cdcc,
0xffae8724, 0x1e830c00, 0x82defb21, 0x1000288c, 0xffff3473, 0x82607afa, 0xd6d62181, 0xeb220482, 0x05821e65, 0x3333ea31, 0x19f5ffff, 0xf2ffff9a,
0xffff6666, 0x829a19ea, 0x99e72275, 0x22758399, 0x8267e6ca, 0xe6b52721, 0xe7ffff67, 0x0a82cc4c, 0x9999f222, 0xfe827782, 0x8cf7ff27, 0xf3ffffcc,
0x202c8399, 0x05254af2, 0x34f3f322, 0x0127cb82, 0x00ff8406, 0x82755304, 0xc2f52126, 0xd927d082, 0x00ffeb51, 0x82d8230e, 0xa1e52b3c, 0x0900ff48,
0x00ff3273, 0x0982e107, 0x6e831820, 0x29dce622, 0xed22f683, 0x75827b54, 0x82b3fa21, 0xd7ee228a, 0x230a820a, 0x08ec11f9, 0xf7210682, 0x2bf68272,
0xff15ae0d, 0xa63bdfff, 0x732500ff, 0xf2262082, 0xff08a470, 0xb1836c01, 0x32337b22, 0x0a2ef682, 0xffff5278, 0x95ec91fc, 0x33feffff, 0x4f829534,
0x800c0024, 0xfb828b00, 0x00261882, 0xff64bb02, 0xb2820b00, 0x80050032, 0x00ff0800, 0xff16b908, 0x3cff0300, 0x200500ff, 0x0822aa82, 0x298286b6,
0x5c0f0922, 0x00286e82, 0xff86ab12, 0x9ad9eeff, 0x4a261b82, 0xf9ffff3c, 0x4c820a17, 0xa0fcff22, 0xff284c82, 0xff1ea5fc, 0xe03fffff, 0xbb216a82,
0x20698266, 0x27858280, 0x96e3faff, 0x83fdffff, 0xfa220482, 0x14829278, 0xffb4c826, 0x166efaff, 0xfb223583, 0xc082307d, 0x4476fb26, 0xcc0000ff,
0xfb324c82, 0x00ff96a3, 0x08f49001, 0x51a5ffff, 0x2100ffec, 0xbb82b81e, 0x00a00826, 0x200400ff, 0x06280482, 0x00ffaee7, 0xff90a207, 0x2205a676,
0x8246210a, 0xe11527ac, 0x6500ff48, 0x29829a19, 0x66b50022, 0x5521b782, 0x204e82c2, 0x20098457, 0x22b78240, 0x83fe5403, 0xe80e22b7, 0x25ad82f6,
0x00ff1018, 0x9b82660e, 0x6abcf32e, 0x170900ff, 0xffff080a, 0xb270fdcb, 0x42213c82, 0x22578202, 0x8200801e, 0x7f53390a, 0xc2ffff7c, 0xff059603,
0x98996fff, 0x4cccffff, 0xffff15ce, 0x2f0a57ec, 0xff221182, 0xc5825a94, 0x82c40021, 0x06d421e9, 0x05210982, 0x22c38260, 0x82a410fe, 0xfbff2364,
0xc0823208, 0xff964326, 0xe846fbff, 0x1121a582, 0x260982aa, 0xff0856ae, 0x828056ff, 0x7d3d22bf, 0x06975970, 0x40000022, 0x02220f82, 0xaa82f4dd,
0x82de3121, 0x29e38329, 0x080ee000, 0x1c00ffe0, 0x25824861, 0x82a11321, 0x830620d6, 0x230d2735, 0x1200ffd7, 0xcb82e23a, 0x00c01422, 0x00236682,
0x82ae8714, 0x883c2721, 0xd2ffff43, 0x0a8294b8, 0x9a997327, 0x4fcd00ff, 0x132c675c, 0x98991922, 0x19203383, 0xff212282, 0x224f83ea, 0x533e4a17,
0x16820f5e, 0x7406965f, 0x15200b32, 0xe8221683, 0x5e53c4b5, 0xff0e2f06, 0x66e6fe01, 0xb32701ff, 0xffff1534, 0xc08220fa, 0x00800e2c, 0xfcffff05,
0xff9300c0, 0xb083f6ff, 0x46e10327, 0xdef7ffff, 0x211482b8, 0xf682babe, 0x00c0e325, 0x82f4ffff, 0x07a83125, 0x13ffffff, 0x0800ff34, 0xffffccac,
0x929a99f9, 0x66243182, 0x7b088b66, 0x0bf94918, 0x828b8421, 0x4861283d, 0xd1ffff08, 0x8207b81e, 0x82ff200c, 0x00002282, 0x22448240, 0x850080ff,
0x271c820f, 0xff1e05cf, 0x6666ebff, 0xfa317b82, 0x00ff82b5, 0xffec910c, 0x9c4ff8ff, 0x3d0b00ff, 0x27578270, 0x00ff72bd, 0x0872bd09, 0x59290582,
0x0e00ff9a, 0x00ff5ccf, 0x219e8305, 0x61826b11, 0xcf120023, 0x05d4755c, 0x3500ff27, 0xffffae07, 0x26d582d5, 0xe2fa2a00, 0x65caffff, 0x0683051b,
0xd6ffff23, 0x22a982cc, 0x821e05d5, 0xe1cb2376, 0x06820848, 0xa430ed22, 0xa0264882, 0xeeffff42, 0x5c827a94, 0xff9f5a26, 0xa430f1ff, 0xf6274c82,
0xffff52b8, 0x820c57f5, 0x67662186, 0xb326f182, 0xfaffff32, 0xd97933b3, 0xff5a2a05, 0x34b31400, 0x00ff8b05, 0x83ce8700, 0x820f8509, 0xe62e24a4,
0x82ff0766, 0xff33252a, 0x9a990800, 0xc2274282, 0xffff928f, 0x410040f7, 0x6e20161d, 0xe3222d82, 0xed8200c0, 0x05008022, 0xe0202882, 0x03220a82,
0xf8820040, 0xc67aa020, 0xc0fc2307, 0x96828300, 0x8220fa21, 0x84f12010, 0xbefc2225, 0x222a82fa, 0x498f52d8, 0x002305ad, 0x46062108, 0xff2a051b,
0xd7638600, 0x33c8ffff, 0xa0850534, 0x99f3ff26, 0x0200ff99, 0x1925c784, 0x0400ff9a, 0x27c78233, 0x08fffff4, 0x38deffff, 0xe225e682, 0xfffff6a8,
0x296f83ea, 0x8bcc4cd5, 0xbdcfffff, 0x06820872, 0xf668cb2a, 0xb51900ff, 0xd1ffffc3, 0x27279b83, 0xffff862b, 0x820ad7e2, 0x33be2bdf, 0x00ff0632,
0xff842b27, 0x15821d00, 0xc42b2482, 0x3f2e00ff, 0x00ff8bfe, 0x827c9434, 0x3000213b, 0xea274d83, 0x00ff703d, 0x8234b32a, 0xe23a2166, 0x59212a82,
0x223b8298, 0x82ec3104, 0xae0721e7, 0x67219082, 0x2109826c, 0xa48229dc, 0xfff47d23, 0x05b05e00, 0x66668627, 0xcc3700ff, 0x27ba82cd, 0xff823508,
0x48210300, 0xff240482, 0x0900fffe, 0xff2cba82, 0xffceccfc, 0x9a190800, 0xe1feff08, 0x00230f82, 0x18323339, 0x21087d92, 0x3a82a6f9, 0x09378218,
0x07218c82, 0x82ed82d9, 0x00ff2111, 0xd9220485, 0x81828b9a, 0x1b831582, 0xf828a183, 0xff8b00c0, 0x6626f8ff, 0x0683b382, 0xf9ffff24, 0x405a33b3,
0x33f72706, 0xab088b33, 0x5f9fa4fb, 0x67660622, 0x0c219c82, 0x389318cc, 0x8234200a, 0x8206205f, 0x93ff20c8, 0xff322a5f, 0x34f3f6ff, 0x33f7ffff,
0xee931834, 0x40be960c, 0xff319c5e, 0x9a195700, 0xff8b8b15, 0x66e6f0ff, 0x401700ff, 0x20f98200, 0x05d34408, 0xff210682, 0x22bd8400, 0x41004007,
0xf720191c, 0x830abd5b, 0xe8ff3044, 0x8b8b00c0, 0x1f00ff08, 0x00ff9a19, 0x4166e638, 0xdf411f7f, 0x80fa222d, 0x0b205c00, 0xf7ef0e25, 0x8215bb24,
0xb3f227bf, 0xf5ffff34, 0x3f60cd4c, 0x4a5b1805, 0x0ab54f11, 0x0d23e282, 0x82ffcc4c, 0x83332011, 0xff342304, 0xf3650d00, 0x85068305, 0x475b1816,
0x54f7220a, 0x825f828b, 0x82318422, 0x820a202c, 0x830e8369, 0x824782e3, 0x8a11834d, 0x608d8931, 0x8d8206cd, 0x0e195b18, 0x6b208d8a, 0x21835e83,
0xf520b986, 0x08160519, 0x3784ff20, 0xbe941685, 0xfb218ca3, 0xa3be8b14, 0x2d4c41f0, 0x0f01ff2d, 0x00ff6666, 0x15666696, 0x4a0000ff, 0x978205e8,
0xce4c002c, 0x99fdffff, 0xffffff99, 0x098466e6, 0xffff0839, 0x0734b3e0, 0x00ff06cb, 0x07cdcc34, 0x0e00ff8b, 0x00ff0080, 0x8268e604, 0x99193309,
0x190900ff, 0x0b00ff98, 0xc4086766, 0x334700ff, 0x0c820533, 0x0d371183, 0x00ffcccc, 0xff9c1914, 0x9a190300, 0xe60c00ff, 0xf4ffff64, 0x82089a19,
0x34b32135, 0x5e820a82, 0x33020022, 0xeb200982, 0x19820982, 0xffff9823, 0x211e83f3, 0x5982c7ff, 0xe6b7ff2e, 0xffff0567, 0x07ff7f58, 0x993600ff,
0xc9221b82, 0x5982ce4c, 0x7a820c20, 0xc764ff20, 0x515f8206, 0x0f82055c, 0x0582a482, 0x80274182, 0xebffff02, 0x838bd0cc, 0x22a5820a, 0x82fe7f0c,
0x4cc9211a, 0x36248a82, 0x7f059a99, 0xd6828783, 0x1083f920, 0x66660f24, 0x8e829c8b, 0xdd823220, 0xd5ffff24, 0xe1823433, 0x8b830620, 0x6482f120,
0x83030021, 0xb3ef2209, 0x20498234, 0x05485aee, 0xc682c220, 0x83cdff21, 0x82048416, 0x088b290e, 0xff0694fb, 0xd723c2ff, 0xcd242582, 0x00ff29dc,
0x0cc98518, 0xe7822c20, 0x281a0026, 0x2600fff6, 0x25235183, 0x829d0ad7, 0xcc6a216e, 0x210a9453, 0xb3527b54, 0xab112d06, 0xab088b85, 0x0704f706,
0x1a00ff8b, 0x2307bb5b, 0x707d1500, 0x2208667c, 0x8266e67a, 0x991922a1, 0x2021829a, 0x218b8317, 0x1c82bdf0, 0x09830a20, 0x5278e822, 0x57215982,
0x2eda8266, 0x050b1734, 0xfdffff8c, 0x00ffcdcc, 0x4ccccc00, 0x002006bf, 0xff258082, 0x089999fd, 0x20af828b, 0x340c826b, 0x9a99b900, 0x95ffff15,
0x2b069a19, 0x054bcb07, 0x806f00ff, 0x241b8200, 0xf76666bb, 0x250d8234, 0xfb9a1945, 0xde8415b4, 0x707de522, 0xea22de82, 0x385c8f82, 0x05275708,
0x4683e520, 0x7d181520, 0x90240ae1, 0x94f7088b, 0x1809c05f, 0x612426f2, 0x245406cb, 0x054f6a05, 0x540e0028, 0x1100ff7c, 0x4e8285ab, 0xa654d420,
0x84ab210e, 0xee238a82, 0x85087c54, 0xffff2406, 0x8234b3f1, 0x84ab2904, 0x4ceeffff, 0xfb088bcc, 0xff233082, 0x827b54ee, 0xabf1221e, 0x544f8385,
0xfb22087f, 0x0b551514, 0x0d764108, 0x658ff720, 0x2105f541, 0x6584cc4c, 0x44184c20, 0xfb241129, 0x74fb0614, 0x0a726218, 0x8305ea72, 0x8bcd2182,
0x180c646e, 0x220a9b61, 0x820774f7, 0x0d1c5536, 0x44184c20, 0x0e270760, 0xf844f82f, 0x18ff1524, 0x450c2f68, 0x9b2008d3, 0x00286a82, 0xff00c008,
0xccccf8ff, 0x46055247, 0xfc2105c4, 0x0bf24934, 0xc0211e82, 0x23f88200, 0x080040f7, 0x18ba5818, 0x31829b20, 0xcd4c612c, 0xebffff07, 0xffffebd1,
0x558280f1, 0x142ef427, 0x19f0ffff, 0x203b8299, 0x05cd54ed, 0x05c32708, 0x2100ff1e, 0xffffae47, 0xffaec7c9, 0xecd13200, 0xccdcffff, 0xffff08ce,
0xfff568ec, 0xd6a3bfff, 0xfaffff05, 0x458267a6, 0xffc47526, 0xb85e0f00, 0x2b05d06f, 0x00801500, 0x00ff088b, 0x0666e6ff, 0x2507945e, 0xff48610f,
0xbd831400, 0x70bdf922, 0x80210982, 0x2b468300, 0x00ff3473, 0x059a5940, 0xb33300ff, 0x23220a82, 0x70823233, 0xdd824c20, 0x9a193726, 0x3c00ff8b,
0x00258784, 0xff3e0a12, 0x239e83ff, 0x5ccf1000, 0x87826282, 0x680e0023, 0x296182f5, 0x0771bd9e, 0xe4fb069b, 0x2d821573, 0x7f820420, 0xa1030022,
0x04846782, 0xb95e0425, 0x82bb088b, 0x66042280, 0x271d8266, 0xff9a9903, 0xb85efcff, 0xfb22de82, 0x1a4148a1, 0x9efb2105, 0xfc22b182, 0x18826666,
0xff2c9e82, 0x8b9a99fb, 0xff065b08, 0x47a1fbff, 0x2c822682, 0x0300ff23, 0x2e31829e, 0x48610400, 0xf7079b08, 0x156cfb14, 0x82a7ffff, 0xffff2226,
0x413682b8, 0x61820ad8, 0x85ab1125, 0x834700ff, 0x540e257f, 0x5800ff7b, 0xa2826b82, 0x16850683, 0xabf1ff23, 0x22568285, 0x427b54ee, 0xcc200551,
0xbc424485, 0x25548305, 0x01ff0e08, 0xfd82cc4b, 0x66e6df28, 0x1c00ff15, 0x55823e4a, 0x0a971a31, 0x02f5ffff, 0x1300ff8f, 0xffffe0fa, 0x821f05ec,
0x83132054, 0x68ec3114, 0x00ff05f6, 0xff900228, 0x70bd1100, 0x3d1f00ff, 0x232c0482, 0x00ff5d8f, 0xffb85e0a, 0x99592b00, 0x052b2982, 0x00ff9ab9,
0xff84eb17, 0x829dffff, 0x2817321e, 0xfafffff8, 0x00fff4df, 0x08ea5115, 0x63fdffff, 0x262e8212, 0xffff48e1, 0x82da2ef2, 0x22bd82ed, 0x8217f8ff,
0x18f82271, 0x241e8210, 0xff9a19bb, 0x310482ff, 0xb4ffff05, 0xff066666, 0xbcb44a00, 0x4400ff07, 0x048366e6, 0x7e826820, 0x78e90724, 0x048300ff,
0x5cfcff28, 0x0d00ffee, 0xad8268d1, 0xfffa1e26, 0x2a9c0200, 0xea314082, 0x00ff14ae, 0xff002005, 0x0ad7e8ff, 0x620000ff, 0x21098290, 0x83827c14,
0x82724621, 0xb3c8221e, 0x35798234, 0xffff20c5, 0xfff5e8d4, 0x8e02d1ff, 0x30f7ffff, 0xc7ffffa4, 0x1e82ecd1, 0x298ffe22, 0xac210f82, 0x21bc82c0,
0x098233b3, 0x002e7683, 0x08839a19, 0xc75200ff, 0xadffffaf, 0x8282d723, 0x821e0821, 0xc20228ed, 0x0800ff8f, 0x848ccc4c, 0x828b2005, 0x33342121,
0xc9235b82, 0x86150080, 0x28172b7b, 0xddfffff6, 0x00ff0a97, 0x09826804, 0x142ee422, 0x54217a82, 0x2566827a, 0xff727d94, 0x514c6a00, 0x023e2205,
0x20ec8290, 0x22698380, 0x8270fd5f, 0x82bf200a, 0xc0ff277c, 0xeb0566e6, 0x1682ffff, 0x3e226f82, 0x13823e0a, 0x8208fe21, 0xb36a270a, 0x95ffff32,
0x27826666, 0x7b54f224, 0x5483ffff, 0x6b040023, 0x22688643, 0x83382917, 0x080c267c, 0xffff09f7, 0x2e43828a, 0x9e0e00ff, 0xf1ffffb8, 0x00fffe7f,
0x470a9717, 0x0e280745, 0xff086a80, 0x00c03400, 0x57820484, 0x4e800e21, 0x2082050c, 0x7a941722, 0x98203083, 0xa1213a82, 0x27ac8248, 0xff40e48a,
0x723c7300, 0x63207282, 0xff23a582, 0x829a99e3, 0xccc424e1, 0x7b00ffcd, 0x6b240542, 0xffff9a19, 0xfd500482, 0xe5ff2d06, 0xff8b48a1, 0x3c4ad5ff,
0x5e1a00ff, 0x0f827c82, 0x0d316c82, 0xfffff628, 0xff9ad9f2, 0x00401100, 0x66f9ffff, 0x22098266, 0x828b3e4a, 0x8211201a, 0x28168506, 0x8e970600,
0x2e0d00ff, 0x21048215, 0x1a822030, 0x5b827720, 0x04820020, 0xf72a5b82, 0x00ff142e, 0xffecd114, 0x1483fdff, 0x8b821620, 0x4c050030, 0x1600ffcc,
0xff086666, 0x9a195cff, 0x988239fb, 0x00c0f222, 0xf5207d82, 0x026a6382, 0x420d230d, 0x1183ff90, 0xbd210482, 0x215e8270, 0x7a830040, 0x06820d20,
0x90491685, 0x83448213, 0x06027716, 0xff2f0e28, 0x90c25600, 0x658224f8, 0x99d9f322, 0xf42b6582, 0xffff8f82, 0xffe27afa, 0x8268f8ff, 0x82f622dd,
0x2788828e, 0xffc335f3, 0x2005f0ff, 0xb826b283, 0xf5ffff52, 0x2e4b66a6, 0xfeff2205, 0x27bc8251, 0xffa2a5f5, 0xae470800, 0x19832982, 0xff270a83,
0x6f52feff, 0x830f00ff, 0x821982d6, 0x9859218f, 0x0c22fb82, 0x1482f0c7, 0x05e2fa27, 0xb31000ff, 0x30fb8233, 0x00ff48e1, 0xff3d4a19, 0x66260c00,
0xba1a00ff, 0x24c182e2, 0xa4701201, 0x22168206, 0x828b66e6, 0x32332612, 0xd9f3ffff, 0x2636829a, 0xffffcecc, 0x82b81eeb, 0x990d2246, 0x217f829a,
0x46821e05, 0xcc4c0822, 0x68208f83, 0x09837082, 0x66e6f025, 0x83f4ffff, 0xb8f72229, 0x248f8252, 0xff0080f6, 0x850a82ff, 0x010023ae, 0x0e8214ae,
0x83cccc21, 0x829a208f, 0x33f3221e, 0x21588234, 0xd882e0fa, 0x8266f821, 0x7d092280, 0x823e8272, 0x05002333, 0x77821e85, 0x82cecc21, 0x8eff2e8f,
0x5b06cccc, 0xc006b307, 0xffffb68b, 0x2b9683d5, 0x9a19caff, 0x0734fb08, 0xe1ffff8b, 0x7e443782, 0x83e42005, 0xb3e92176, 0xee22af82, 0xa5826666,
0x47824120, 0x80beff27, 0x84920500, 0x834b8286, 0x33f52299, 0x23508334, 0x063233d9, 0x80218782, 0x203f8200, 0x293582f7, 0x66660300, 0xff089185,
0x4c82c9ff, 0x99360027, 0x14fb059a, 0x830d8506, 0x239d8212, 0x8552f8f9, 0xdc243182, 0xfcffff29, 0xf722fc83, 0x48838f82, 0xcd4cd822, 0xf6222782,
0x48821f05, 0x0000fb2d, 0x190c00ff, 0x0700ff9a, 0x83925c0f, 0xe17a237f, 0x848200ff, 0xffff0526, 0xff33b3e9, 0x2005e372, 0x2a0983f1, 0x8b32331b,
0x991e00ff, 0x83f7089a, 0x350021c3, 0x00219b82, 0x843a832a, 0xe6353504, 0xb3088b67, 0xff07bb06, 0x8fc28eff, 0x4900ff06, 0x04fb713d, 0x470e5a6c,
0xb16908d9, 0xcd4c2205, 0x07f575ff, 0xb3246a83, 0xf7088b33, 0x195dc382, 0x821e830a, 0xb3112475, 0x5cab0833, 0xff220734, 0xda18b3f1, 0xf6820cf6,
0x34fb8b22, 0x5d766997, 0x82538218, 0x850e2059, 0x84cc2083, 0x08342164, 0xff200685, 0x90826282, 0xcc4c0e22, 0x23065448, 0x154b14f7, 0x460b9b5c,
0x0a190e7f, 0xee21141e, 0x8454824c, 0x11de5dab, 0x3c493f83, 0x28eb8405, 0x30fb0e08, 0x00ff14f8, 0x05eb5980, 0x34339527, 0xe6a9ffff, 0x20048666,
0x05cb5196, 0x11850683, 0x21560023, 0x22a88248, 0x83b8de69, 0xab3a31af, 0x1b00ff84, 0x00ffecd1, 0xff492130, 0x00c01a00, 0x4c2c0e82, 0x00ff08cd,
0xff52f80e, 0x9a991000, 0x75331482, 0xf5ffffc3, 0xff8b0080, 0xcc4ceaff, 0xaaffff08, 0x82070080, 0xd4dc220c, 0x822c827c, 0xe2ff2126, 0x23274583,
0xffffa430, 0x825c8fff, 0xbd23223b, 0x250a8270, 0x00ffa470, 0x4082191d, 0x66e61c22, 0x23287182, 0x8b089a99, 0x50ffffe3, 0x002d9b82, 0xffb81e08,
0x34f37a00, 0x14b500ff, 0x2131827c, 0x7882800d, 0x82b81321, 0xa61e2172, 0xf721ba82, 0x22fe830c, 0x823433e8, 0x82ff206d, 0x98ff2642, 0x00ff7ad4,
0x223982a8, 0x834ce9ff, 0x8256201a, 0xaf0e214c, 0x57395f82, 0x0f00ff0a, 0xff150080, 0xa4f0edff, 0x261400ff, 0xffff0566, 0xff1098f6, 0x05ec5500,
0x82f02721, 0x203c83ca, 0x321e8302, 0x089a590e, 0xd00200ff, 0x0d00ff21, 0x00ffc2b5, 0x51c16a08, 0x0b270657, 0x00ff29dc, 0x82727d05, 0xe144311e,
0x1f00ff48, 0xff05a4f0, 0x33f32f00, 0x401600ff, 0x27219b82, 0x205d82b0, 0x250e8325, 0xfff6281b, 0x7f823100, 0xa8206d82, 0x25220a82, 0x29828fc2,
0x1fc51c2b, 0x973400ff, 0x2a00ff0a, 0x20588235, 0x20978328, 0x27e48333, 0x0886ab17, 0xc05c00ff, 0x2a224382, 0x298270fd, 0x0ad70e31, 0xcf0600ff,
0x1100ffe0, 0xffffec91, 0x821844fc, 0xae473182, 0x67f3ffff, 0x00ff086c, 0xff7c1422, 0x72fdd9ff, 0x9727c682, 0xffff3433, 0x82a270cf, 0x83c8200a,
0x2be62720, 0xd2ffff86, 0x7f631e05, 0xe0ff2205, 0x2d1e82b3, 0x08e1bac6, 0x14eaffff, 0xd7ffff78, 0x2982cff7, 0x52f8e326, 0xc7ccffff, 0xd7214f82,
0x2c048207, 0xffceccd8, 0x0080ceff, 0x05e9ffff, 0x3329821e, 0xff3e8a8e, 0x6666cbff, 0x1702ff05, 0x01ff285c, 0x15ecd14c, 0x99263f82, 0x1700ff98,
0x3f82b8de, 0x66668e22, 0x51212082, 0x210a82ec, 0x408287ce, 0x5c0fe922, 0x4a845a82, 0x9982d420, 0xa4f0e322, 0xcf215e82, 0x224a825b, 0x829a19ea,
0xd7e32119, 0xe0212982, 0x279982ab, 0xffe2bac6, 0x70fdd1ff, 0x11209e82, 0xc821d882, 0x2209823d, 0x823233e6, 0x83972029, 0x91cf217f, 0x00225382,
0x6e826e25, 0x9042d635, 0x0700ff05, 0xffff9182, 0xffea91f7, 0xc3750900, 0x82fbffff, 0x0b002b24, 0x088b6766, 0x300500ff, 0x05828b21, 0xffd53830,
0x281c0100, 0xeb0400ff, 0x0200ff85, 0x4941d843, 0x2133220d, 0x21b58247, 0x7341a4b0, 0xc21c270b, 0x3400ff90, 0x2982ec91, 0x9d411420, 0x296a8305,
0xff2a1c1b, 0x5c8f3100, 0xc74100ff, 0xa4f02705, 0x1600ffbb, 0xed41cd4c, 0x82a52009, 0xdc0b2290, 0x2b748228, 0x00ff6a7c, 0xff886b08, 0xb4080b00,
0xcf207482, 0x0d223482, 0x2982c2b5, 0x6cfd013d, 0x340f00ff, 0xff99887a, 0x9c99f6ff, 0x6b0a00ff, 0x2f0e0886, 0x04f754f8, 0x4db4f715, 0x5d5607fb,
0x7d152105, 0xe527fc82, 0x088b0080, 0x6106c4fb, 0x1f220967, 0x4a55ffff, 0xfaca2305, 0x7b6f08e2, 0x82098205, 0xe1fa21bf, 0xff241984, 0x1f053500,
0x7b073a4d, 0x10240f1c, 0x8b0820c5, 0xc1199682, 0xd42338f3, 0x82153ef7, 0xd6082140, 0x0727dc82, 0x00fffc29, 0x82782907, 0x04d622eb, 0x24dd828b,
0x069a1935, 0x93c483c1, 0x06bf211e, 0x32832785, 0xfffffc33, 0x8b88d6f8, 0x29f7ffff, 0x07550878, 0xe63600ff, 0x201e9766, 0x82508257, 0x20328427,
0x82378304, 0x29f72704, 0x55088bfc, 0x1a975506, 0x83065721, 0x82fc205a, 0xd6f82260, 0x84708404, 0x080424b3, 0x975507c1, 0x07bf281a, 0xaefb94f7,
0x82b4fb15, 0x0c414e20, 0x180e547c, 0x4e08daec, 0xb42907a3, 0x0e074b06, 0x01ff94f8, 0x053d450f, 0x9a19e52f, 0x66eaffff, 0xffff7666, 0x8b34b3dc,
0x82b38208, 0x06304edd, 0xff7a5426, 0x86abf1ff, 0xee220486, 0xb34e7a54, 0x22718713, 0x820774f7, 0xd7e3223c, 0x21498206, 0xcd8285ab, 0xa470ea23,
0x20c982a0, 0x05ba611a, 0x9a194025, 0x82f7dbeb, 0x21038261, 0x1e823beb, 0x1782bf20, 0xf78b0e2a, 0xffff1534, 0x0766e660, 0xed271182, 0x00ff0080,
0x8248610e, 0x9a99216f, 0x9e25b082, 0xf8088bb8, 0x52e51854, 0xb8102613, 0x00ff0852, 0x2c3682a0, 0xff0694fc, 0x66e62b01, 0xfdff00ff, 0x214a8270,
0x438240f8, 0x04820020, 0x82f8ff21, 0xfdff214d, 0xfa210483, 0x36528221, 0x086826fc, 0x38e9feff, 0x27ffff52, 0xf8058e02, 0x0000ff94, 0x82050503,
0xfc7626a0, 0xa1fffffb, 0x32718219, 0xff0ad761, 0xcccc8aff, 0x400600ff, 0xaf0e0800, 0x83ff01ff, 0x52a0200c, 0xb3230576, 0x18ffff34, 0x231feaf8,
0x9a99bffe, 0x095c7118, 0xff0a5726, 0x34b31c00, 0x23236382, 0x8208cc4c, 0x5df818b0, 0x7c7937b6, 0xe6f1ffff, 0x088b7a66, 0xff058b6b, 0x343390ff,
0x992700ff, 0xd882159a, 0x13206818, 0xc3065322, 0x17347818, 0xff065b22, 0x0c309618, 0x086b6318, 0x53075322, 0xcd211a8f, 0x212b848b, 0x4c825b08,
0x73823482, 0x33330722, 0x82065650, 0x088b2476, 0x975306c3, 0x06bb211a, 0x210d9e50, 0xab843433, 0xc308cc24, 0x1a97c307, 0x0e07bb29, 0x01ff94f7,
0x6566e6a0, 0x8e27083a, 0xffffcc4c, 0x82f6e8a2, 0x178d2289, 0x093a650a, 0xff486130, 0x707dd3ff, 0x972300ff, 0xdbffff0b, 0xd2536866, 0x193a6507,
0xa4f0fc26, 0xccfcffff, 0xff204f82, 0x230f3a65, 0x88df4f01, 0x2605a447, 0xf833feff, 0x650300ff, 0xb835213a, 0xf3ffff52, 0x00ffa4b0, 0xff3d4a24,
0x66e6f8ff, 0x632600ff, 0x053a65d8, 0x00ff862d, 0xffa2e500, 0x9a997200, 0x845c00ff, 0xcc7322f9, 0x20bc82cc, 0x65068200, 0x1682063e, 0x27063e65,
0xffff04f7, 0x159a1915, 0xf721e282, 0x62b74429, 0x00ff8b27, 0xff87d608, 0x068f4500, 0x8f457920, 0x84872055, 0x792e08ce, 0x0e075708, 0x99f601ff,
0x1701ff9a, 0xff1566e6, 0x666660ff, 0x809f00ff, 0xffff0500, 0xffc275f3, 0x3e8a0c00, 0xb0ebffff, 0x0000ffa4, 0x13825c0f, 0x82d86321, 0x8e862204,
0x21058208, 0x2385ec51, 0x32200582, 0x70202382, 0x0c222382, 0x0d82ba9a, 0x08d66322, 0x53824382, 0x8060ff24, 0x43820501, 0xf3270a83, 0x00fff668,
0x82146e14, 0x1f052148, 0x8f211382, 0x2104825c, 0x2982ffa1, 0xde7e0c27, 0xb80b00ff, 0x20f882bb, 0x287d8214, 0x0280f3ff, 0x660d00ff, 0x27638266,
0xffcccc57, 0x34b3b2ff, 0xbc279882, 0x00ffb81e, 0x82b8de43, 0x2137264f, 0x3700ff48, 0x220a821e, 0x19c0d2ff, 0x27081811, 0xffcd4c92, 0x2a5c92ff,
0x6621b983, 0x20868267, 0x27958233, 0x7b9919f7, 0xe6fbffff, 0xee220f82, 0x51826766, 0x3333e427, 0xcc87ffff, 0x202582cd, 0x826c8393, 0x200a8204,
0x204682f9, 0x240482ff, 0xf5ffff8b, 0x051c73e1, 0x0f83ff20, 0x16279d82, 0xffff48a1, 0x824861e9, 0x40062277, 0x24158400, 0x210a00ff, 0x18ad8248,
0x8207a377, 0x996c2725, 0x6c00ff99, 0x25829a99, 0xcc4c7827, 0xc01b00ff, 0x210a8200, 0xa15f8011, 0x83102007, 0xe00821b2, 0x0c200e82, 0x00236a82,
0x82b89e0c, 0x996d2734, 0x6d00ff9a, 0x808233b3, 0x3f21c785, 0x270a82ff, 0xff5ccfc8, 0x86ebc8ff, 0xc9200a82, 0xff233f82, 0x82cc4cc9, 0xccfb22fe,
0x26c783ce, 0xfaffff66, 0x82889899, 0x9a192605, 0x99feffff, 0x20d2829a, 0x215182b0, 0x7084edff, 0xa1821220, 0x404f0022, 0x01217b83, 0x266c8260,
0x8e00e005, 0x830500ff, 0x2004210a, 0x04220f82, 0x77820040, 0x0f830920, 0x25840920, 0xed824320, 0x21bcff22, 0xff34dd82, 0xffb8bef6, 0xb89ef6ff,
0x01ff0e05, 0xff3433d8, 0x9a19fc00, 0xbd267882, 0x00ff66e6, 0xd9821916, 0x82ecff21, 0x06002668, 0xffffbe9f, 0x220983f1, 0x82fa3e0e, 0xb85e2d92,
0x5e1100ff, 0xff7b08b8, 0x727d3c00, 0xf43bb482, 0x00ff4861, 0xff70bd2b, 0x70fdbeff, 0x5e0d00ff, 0xdeffffba, 0xffff48a1, 0x828e82dd, 0x21d021ad,
0xd1220a82, 0x29826626, 0x4582f220, 0x82f2ff21, 0xebff21b2, 0xf8250983, 0xffff46e1, 0x230e82eb, 0xba9e0100, 0xb92d2982, 0x00ff8f02, 0x0566a605,
0x0300ff57, 0x217582ff, 0xa1821edd, 0xd002cf25, 0x831b00ff, 0x21da22b6, 0x20cc8248, 0x245a8326, 0x058f82cb, 0x24968296, 0x00ff67e6, 0x224b8301,
0x5e285cec, 0xff230500, 0x82b89eef, 0x80e3274b, 0xc7ffff00, 0x75829002, 0x9f82eb20, 0xc2d6ff23, 0x83a48290, 0x61d42814, 0x3200ff46, 0x8296b99e,
0x19452b4b, 0x0f00ff99, 0xff050040, 0x6b821400, 0x7f040028, 0x1500ffbe, 0xe6829042, 0x823c8021, 0x829e2019, 0x61f4227f, 0x2029824e, 0x22448336,
0x824821d7, 0x83272029, 0x82e2200a, 0x3d002104, 0x00221f82, 0x2982ff15, 0x59820320, 0xdc2c0023, 0x272982ec, 0xff00a004, 0x28dc3d00, 0x01212982,
0x200a8260, 0x269e8211, 0x48810b00, 0x831000ff, 0xbd112662, 0x0900ff70, 0x28a3821e, 0x9a193d00, 0x9e1f00ff, 0x2b2982b8, 0xfff4a82e, 0x38f31600,
0xccfaffff, 0x3925ee82, 0xffffcc4c, 0x310482cf, 0x9a991000, 0xc6feff08, 0xffff66e6, 0x1566e6c3, 0x837affff, 0x85f22805, 0x0e00ff1e, 0x828bb85e,
0xe2ba2255, 0x84068508, 0x23048611, 0x8be2ba10, 0x43198c82, 0xa1270b86, 0xffff8b48, 0x821e45ef, 0x2306832d, 0x66f3ffff, 0xf12d5582, 0xffff48a1,
0x8b0080ed, 0xff14f708, 0x05ea45ff, 0x11206397, 0x7582ef83, 0x0d00ff24, 0x7984e27a, 0xff236398, 0x82e60000, 0x83ee205d, 0x80f22462, 0x84ffff00,
0x25678404, 0x7f00ff9b, 0xca829a19, 0x0020f722, 0xf9259182, 0x00ff66c6, 0x220a8307, 0x7df90700, 0xdf210559, 0x2411847d, 0x3a0600ff, 0x2009821d,
0x057e5ef9, 0x16850682, 0xe0f8ff22, 0xf8223883, 0xe1826606, 0x83256682, 0xccf9ffff, 0x05f445cc, 0xf6ff2208, 0x088b3433, 0xf730fb0e, 0x1544f854,
0xfb358b21, 0x08218b4a, 0x00ff218b, 0x359a1955, 0xe66a00ff, 0x26b38367, 0x8b9a1969, 0x825600ff, 0x821783a2, 0xe66a310a, 0xf58b0866, 0x19a9ffff,
0xff4af79a, 0x66e696ff, 0xff252682, 0xfb9a19e0, 0x20a9820e, 0x20c183e0, 0x212d82d8, 0xd083dfff, 0xcd4cb722, 0xc923b882, 0x8208cdcc, 0x33f72206,
0x217a8234, 0x04820ad7, 0xf7228483, 0x3983f628, 0x090b7918, 0x0ac36b18, 0x3f366782, 0x00ff5c8f, 0xff33b324, 0x70bd4f00, 0x852200ff, 0x2a00ff1f,
0xc88234b3, 0xdf8f0522, 0xe72bf082, 0x0a00fff0, 0x00fff813, 0x82201001, 0x29dc260e, 0x6ffaffff, 0x221e82e0, 0x8248e106, 0x767e210a, 0x19241982,
0xf5ffff99, 0xfa228c83, 0xfa826766, 0x08343331, 0xb4f8af0e, 0xfb1534f8, 0xab6b0604, 0x42063b05, 0xf1220725, 0xa97cb89e, 0x48612108, 0x22063b52,
0x4a4861ee, 0x1e820753, 0x9e110027, 0xf7088bb8, 0x13534a74, 0x08231a82, 0x820714f7, 0x820982b5, 0x98992148, 0xee273886, 0x088b6866, 0xdab4fb8b,
0x9a992170, 0x66217087, 0x83ce8266, 0x74fc2470, 0x1815c4f7, 0x200826ee, 0x26c582e1, 0xff002007, 0x821ef7ff, 0x826b20c0, 0x054e42f3, 0x82e0f821,
0x05204213, 0x08221082, 0xbf8224fc, 0xf396ff20, 0xfb07cb2a, 0x74f70654, 0x0654f707, 0xdb330a84, 0x01ff0e07, 0xff66e6e1, 0x66e6b100, 0xff829415,
0x82190500, 0xccf32987, 0xffff8bce, 0x08cc4cf3, 0xff220685, 0x2382faff, 0x1682ff20, 0x08828224, 0x1a828282, 0x87cecc21, 0xcc4c2513, 0x14fc088b,
0xf3228d82, 0x2d831f45, 0x863dca21, 0x00f72644, 0x82089400, 0x26278294, 0x00ffa4f0, 0x8232330c, 0xb30c22c9, 0x20528234, 0x82068200, 0x5c0f2124,
0x94251684, 0x00ff0894, 0x822c8209, 0xc335210d, 0x00263c85, 0x8be1ba0c, 0x5682f808, 0x38832b83, 0x84323321, 0x82943970, 0xf9ffff08, 0xffff6666,
0x15666689, 0x00ff888e, 0xff34b301, 0x68e6fbff, 0xfb227b82, 0x2d59cccc, 0x83ef2005, 0x4cf92cad, 0xeeffffcc, 0x7f7fcecc, 0x847f7f08, 0x83398209,
0x4c1d8213, 0xef2206c4, 0x3682ae07, 0x52b8ef29, 0xb30600ff, 0x82977f34, 0xfdf3235b, 0x27829771, 0xff8f4224, 0xb2841100, 0x9a191025, 0x82079b08,
0x33042282, 0x206d8234, 0x2ccb82b0, 0x8e981904, 0x8e8e088e, 0x110400ff, 0x238185ec, 0x713d0400, 0x3421b082, 0x21138206, 0x2d833433, 0xff981934,
0xcc4cfeff, 0xff08888e, 0x0c1757fe, 0xe6a700ff, 0xa9821567, 0xff3d8a2b, 0x33330200, 0x19fcffff, 0x056a5e99, 0xf0fcff22, 0x03225482, 0x7e8266e6,
0x67250a86, 0xe1fdffff, 0x214b8248, 0x45820080, 0x82c2f521, 0xcdcc2109, 0xfe201e82, 0xdd820a84, 0x17000024, 0x7a82900a, 0x39823020, 0xf6820420,
0x1500ff3a, 0x00ff71fd, 0xff16ae56, 0x1f855b00, 0x054100ff, 0x6d00ff1e, 0x088b0080, 0x16820685, 0xbe284b83, 0xffa1e2fa, 0xea51a9ff, 0x01201682,
0xff21d082, 0x240482fb, 0x98190000, 0x21678286, 0x9f8268e6, 0x8a20ee82, 0xa1830682, 0x6882fd20, 0x83fbff21, 0x83fc2036, 0x82b08209, 0x19fc2282,
0x21bb839a, 0x0582889a, 0xfd201f88, 0xfb219d84, 0x211a8299, 0xbc82e6fd, 0xfd84fb20, 0x8666e622, 0xfe247e82, 0x06b85e81, 0x0f225182, 0x05828b5c,
0x82291c21, 0x344283b5, 0xffcd8cfb, 0x99190200, 0x4201ff08, 0x00ff5c4f, 0x15991968, 0x22548288, 0x41cc4cfe, 0x33820bcf, 0x5c18fc20, 0x68200aff,
0xcc263d82, 0xfdffffce, 0xc1836666, 0x0a831982, 0x7a851482, 0x00ff6623, 0x22138303, 0x82ceccfe, 0x8302201e, 0xb3ff229f, 0x82148232, 0x82ff20e5,
0x82098214, 0x0000237b, 0x1e829899, 0x0a850320, 0x86829a20, 0x00212882, 0x22e88201, 0x82330200, 0x4c02212d, 0x4c213d84, 0x831982ce, 0x8319850f,
0x82002023, 0x03002366, 0x3d829a19, 0x4d854382, 0x61835786, 0x75826b84, 0x86ff0821, 0x849f8414, 0x209f845c, 0x229f8266, 0x82cccc01, 0x86bf821e,
0xe6fc21c9, 0xf482d384, 0x8b20e782, 0x08043719, 0x1682fb20, 0x882eda83, 0x078b0888, 0xff7fffff, 0x2000ffff, 0x22419002, 0xffcd2606, 0x14eefbff,
0x2205828b, 0x820890c2, 0xd7fc2306, 0x7f46ff0a, 0xdcfc2205, 0x8258832a, 0x07224120, 0x22410a85, 0x82672018, 0x05224159, 0xb5873320, 0x21422241,
0x22417c14, 0x52382112, 0x02226b86, 0x224184eb, 0xee022c07, 0xfdffff14, 0x00ff66e6, 0x82008002, 0x82662009, 0xc0012209, 0x08224100, 0xff90c223,
0x052241ff, 0xff20e282, 0x20082241, 0x06ae7ecd, 0x68fdff29, 0x088888f6, 0x82fb078b, 0xfddf2246, 0x0a1f4170, 0x42081244, 0xeb820942, 0xcc204b85,
0x821e1f41, 0x0742421e, 0x251e1f41, 0x0000ff99, 0xbd829a99, 0x7067e621, 0x002305f2, 0x82333302, 0x0642420e, 0x4242cd20, 0x05f64312, 0x38860820,
0x9a190325, 0x82feffff, 0x03002190, 0x83054242, 0x66e6223d, 0x42148708, 0x71831a42, 0xffcecc25, 0x42e6fcff, 0x09820557, 0x42cdcc21, 0x1f410542,
0x66663b09, 0x8b088888, 0x2f0e058b, 0x34f754f8, 0x8b072b15, 0x4fb9ffff, 0xc6ffff5c, 0x0486a4b0, 0x8b290e82, 0x061cfb08, 0xa6cdffff, 0x081e8266,
0x0a97d020, 0xb31700ff, 0xe2ffff34, 0x00fff6a8, 0x08ae4728, 0x91f1ffff, 0x1300ffeb, 0xff05e23a, 0x6f83f8ff, 0x3c4a0822, 0xa1276f82, 0x0a00ff48,
0x828b9a19, 0x66662705, 0x3000ff08, 0x60821e05, 0x940e0037, 0x0600ff7a, 0x00ff06a1, 0xff3eca0d, 0x19640b00, 0x1c0900ff, 0x2320822a, 0xa3e1fa1d,
0xd2204282, 0x18054e57, 0x24132881, 0xd70800ff, 0xe0af180a, 0x97211908, 0x83eb2008, 0x801a2357, 0x6118ff00, 0x152017a2, 0xff2c1b82, 0x8b1f85ea,
0x7ae5ffff, 0x5cf708e1, 0x16253083, 0x00ff0a17, 0x21af8311, 0xca82e811, 0xaa821620, 0x00ff0822, 0x16850683, 0x17eeff22, 0xff236b82, 0x82f6e8e9,
0x824220e2, 0x247d8294, 0x00ff9a99, 0x2232830c, 0x8632b30e, 0xb310230e, 0x37828b34, 0xe27a1722, 0x13269882, 0xffffc275, 0xf98221ef, 0x842b0427,
0xbae9ffff, 0x211a82e1, 0xe7824a07, 0xa4700422, 0x66263082, 0x0200ff66, 0xf18233b3, 0x35843320, 0x149d5418, 0xf8af0e29, 0xa700ffb4, 0x82159a19,
0x2b592551, 0xc2ffff86, 0x00294c82, 0xffe03a4c, 0xe23ab2ff, 0x208e82ab, 0x298882cb, 0xcc4ca5ff, 0x7c00ff05, 0xcd83866b, 0xb8de0926, 0x19f8ffff,
0x07209f82, 0xff21cd82, 0x25cd84f6, 0x9999a3ff, 0x0c82ff06, 0xf9829920, 0xff211c83, 0x2bd384f8, 0x084821f6, 0x9983ffff, 0xffff079a, 0x00244a83,
0x0566a65a, 0xe1255c83, 0x07e0ffff, 0x257083ae, 0xb3ffff85, 0x3682cccc, 0xcecca622, 0xff352b82, 0xffff71fd, 0x0566e6b8, 0xff0694f8, 0x90020000,
0x194700ff, 0x387e829a, 0xff34b31e, 0x32338fff, 0xfdffff15, 0x00ff0080, 0xff68e605, 0x3433faff, 0x056d45ff, 0x9899f92c, 0xb4fc088b, 0xf9ffff06,
0x4d8200a0, 0x0a37fa27, 0x30fcffff, 0x212d8220, 0x28825278, 0x08f02722, 0x10200a83, 0x20200a82, 0x01223d82, 0x2982df2f, 0xff5c2f29, 0xf0670400,
0x58fbffff, 0xa821059f, 0x322382b4, 0x00ff2e32, 0xff2ffd40, 0xccccbdff, 0x14d700ff, 0x85088b7c, 0x06d04606, 0xa4304225, 0x830300ff, 0xcf022282,
0x211a825c, 0x26824c05, 0x9d820420, 0x83010021, 0x8206208d, 0x29a18635, 0x0e08cccc, 0xf8a4f7af, 0x43181554, 0x368208a0, 0x82eaff23, 0x2ca08290,
0x08707de5, 0x33c0feff, 0xffff0734, 0x253383d9, 0xff9899ea, 0x4282e6ff, 0x33d7ff23, 0x23208234, 0x089a19d1, 0xf3220682, 0x6e829a19, 0x7f9a9925,
0x820600ff, 0xf5ff2169, 0xff275582, 0x9a1926ff, 0x18ffff06, 0x200949a2, 0x28751800, 0x07db2f09, 0xff0624f7, 0xcdcc0800, 0x0700ff8b, 0x04833333,
0x52077652, 0xff23057d, 0x19ccf8ff, 0x230cef03, 0xcb0624fb, 0xf72235b4, 0x7a650764, 0x187d2008, 0x260cba8d, 0xfb0674f7, 0x53154b0c, 0xd7210d66,
0x26d0820a, 0x08f628f7, 0x53730773, 0xcc200f66, 0x4905d54b, 0x9343053c, 0x0d665305, 0x7306a322, 0x20176653, 0x22ef979b, 0x97a307a3, 0x189b201a,
0x22179e8d, 0x84a30673, 0x055c4c1a, 0x00ffcd25, 0x85f62807, 0x7b0827c6, 0xfbfcf706, 0xa9821564, 0xccccd327, 0x33dcffff, 0x82048634, 0x088b230e,
0x0683ffff, 0x00221185, 0xd082cc23, 0x332c0026, 0xff8b0834, 0x33210682, 0x831183ff, 0x82508204, 0x822d8215, 0x82342015, 0x8328821b, 0x84332032,
0x08cd2854, 0xffff74fb, 0x8266e632, 0x33002863, 0x00ff6666, 0x8634b329, 0x830e8204, 0xcc652235, 0x83d282cc, 0x2217850c, 0x824cd6ff, 0xccff2169,
0x2005e271, 0x242e82ec, 0x6866f0ff, 0x250482ff, 0xecffff66, 0x338230b3, 0xcc25ff24, 0x0c8306ce, 0x17846f82, 0x990f0023, 0x3f7a829a, 0x08cc4c13,
0xff0e078b, 0x9a99e801, 0x8fa801ff, 0xffff155c, 0xffa4f0e0, 0xa4301f00, 0x4ccdffff, 0xff22e282, 0x138252f8, 0x82c2f521, 0x06cf2704, 0xa0feff08,
0x0482f6a8, 0x05dcab27, 0x2bebffff, 0x29538285, 0xffff3e0a, 0xffd7a3f7, 0x2e82e2ff, 0x5c07002a, 0xe4ffff29, 0xff085c0f, 0xff330a88, 0xc3b51500,
0x4aeaffff, 0x1b00ff3e, 0xffff33f3, 0x82d6a3f8, 0x821b201e, 0x370a8367, 0xb31d00ff, 0x0800ff33, 0x00ff2a5c, 0xffc3f513, 0x7ad41400, 0x5f01ff08,
0x04834d82, 0x8c820520, 0x82682621, 0x7c142904, 0x190000ff, 0x3200ff98, 0xe022e183, 0x1382cecc, 0xff286783, 0xff3233ce, 0x3e0aa1ff, 0xec22bb82,
0x9182f668, 0xee200483, 0xfd321483, 0xffffec11, 0xff68a6f1, 0x8e82fdff, 0xf3ffff08, 0x0a82ae07, 0xff06c12a, 0xd8a3f6ff, 0x61feffff, 0xf3220982,
0x188266a6, 0x08a2a522, 0x0a840582, 0xfe220483, 0x23864861, 0x00c0fd22, 0x05211882, 0x211e821e, 0x148281fd, 0x1e83f120, 0x0601fd26, 0x28eeffff,
0x69216b83, 0x20708438, 0x86058408, 0x22198404, 0x839002fd, 0x225c827b, 0x820080fd, 0xfff2211e, 0xfd210082, 0x228082c7, 0x829999f6, 0x21de827b,
0xc983f3ff, 0x7b9c0482, 0x82ae0721, 0x85fd221e, 0x224d821e, 0x828814ae, 0x9a192177, 0x66216782, 0x20048367, 0x20778e66, 0x85de82f5, 0x861e8277,
0xe1fa2177, 0xc7211482, 0x21cf82ac, 0x778233b3, 0x82686621, 0x82a120cf, 0x99f322c9, 0x243d8298, 0xff12c3f9, 0x230484ff, 0x8be3e5f5, 0xc2260a82,
0x0600ff8f, 0x1a86ee3c, 0x8b250a83, 0x1c0a00ff, 0x821584ac, 0xe03a2104, 0x32064f65, 0x0a971300, 0xd71100ff, 0x0200ff0b, 0x00ff70fd, 0x829a590e,
0x727d2709, 0x0c00ff08, 0x0a8252f8, 0xffb83e2b, 0x295c0900, 0x9f0100ff, 0x211382be, 0x04839959, 0x1e83dc20, 0x0c202983, 0x01210483, 0x2023849e,
0x212d8228, 0x1e820040, 0x82e2fa21, 0x7e02211e, 0x4d851482, 0x833cff21, 0xff0a2561, 0x87961300, 0x97220482, 0x0a89080a, 0x8e201983, 0xfd213882,
0x827b8371, 0x8002225c, 0x207b8400, 0x21148251, 0x7b83fa3e, 0x7b832a20, 0x57827d20, 0xdb207085, 0xdb207b89, 0x7b841982, 0x87e85b21, 0x52f8217b,
0x86207b98, 0xf2837b88, 0x0a20f786, 0x7b83f798, 0x825c4f21, 0xaa912161, 0x5a227b87, 0x404108e0, 0xee3c2707, 0x1f0a00ff, 0x0f828b3a, 0xffe23a26,
0x12c3f9ff, 0x05221a82, 0x0a827c54, 0x8b90c223, 0x066250ff, 0x8232b321, 0xcecc3c0f, 0x69feff08, 0xffffd8a3, 0x1566e634, 0xb6f7b6f7, 0xf4ffff05,
0x00ff1e85, 0x829a990b, 0x0ce7260a, 0x1800ffcc, 0x222a82f3, 0x823433d9, 0xba9e266f, 0x2be9ffff, 0x27048285, 0xff08482c, 0x53b830ff, 0xc1210482,
0x852982cc, 0x99192115, 0x9f262482, 0xd9ffff3b, 0x38823333, 0xffb0f226, 0x9a19e7ff, 0x4e827e82, 0x802d5882, 0x01ff0500, 0xf7f628c0, 0xb6fb1518,
0x236b82fb, 0xe17a0b00, 0x66221782, 0x2d820566, 0x8233f321, 0xce0c302d, 0xcc2600ff, 0xfeffffce, 0x00ff4861, 0x827ad416, 0xb4d32104, 0xcf214182,
0x2119824c, 0x6b824ccf, 0x7c201582, 0x24851a85, 0xe7222e84, 0x4284060c, 0xf4229582, 0xbf820c62, 0x0589763d, 0x00ff2f0e, 0xff5c0f60, 0x34b39f00,
0xff00ff15, 0xff060ad7, 0x34b39cff, 0x8332ffff, 0x5bff2089, 0x99260532, 0xfbffff98, 0x048266e6, 0xff68662b, 0x9a19faff, 0xb3fcffff, 0x05a14c32,
0x8b830a82, 0xfe241484, 0x8b85cc4c, 0xf9241682, 0x868b9a19, 0x21050e4f, 0x3782faff, 0x33030022, 0x23832d83, 0x82030021, 0xfcff26a4, 0x00ffcccc,
0x48568304, 0x66210545, 0x25358268, 0xfff6a89c, 0x7683cd00, 0x3d220128, 0x7c00ff70, 0x9282cc4c, 0x5d830520, 0x9a99fd27, 0x4c0500ff, 0x216c82cc,
0x0c4f0080, 0x80fb2206, 0x25f38200, 0xff666604, 0x1e83fbff, 0x04820320, 0xb3faff26, 0x0200ff32, 0xfa221383, 0x1e823433, 0xb0840220, 0xff333324,
0x14840000, 0x4d999921, 0xf820061d, 0x2505c152, 0xffcdccf9, 0x8d82feff, 0xb3f9ff26, 0xfdffff33, 0x33214384, 0x228d8233, 0x4834b3fc, 0xff2105d9,
0x833984fd, 0x8272821e, 0x8477836c, 0x20048272, 0x82238299, 0xfcff2372, 0x2d876766, 0x82999921, 0x867d823d, 0x83f9204d, 0x83fe201e, 0xb3f9304c,
0xff088b34, 0xaec7dffe, 0xf3ffff06, 0x828bae47, 0x22798205, 0x82190500, 0x05f72645, 0xff08941f, 0x820683ff, 0x52f82448, 0x820d00ff, 0x00002616,
0x00ffae07, 0x82ab820b, 0x200a83b6, 0x24af820c, 0xec110500, 0x057964ff, 0x35840920, 0x06830020, 0x35221182, 0x058290c3, 0x8252b821, 0x00002e65,
0xff0671fd, 0x0a57ffff, 0x800500ff, 0x21098200, 0x0987f5a8, 0x82e1fa21, 0x9a993909, 0x00ff8b08, 0xff981926, 0xf6280f00, 0x972400ff, 0x00ffa60c,
0x08e0fa1a, 0xe2200684, 0x99211182, 0x291b829a, 0x00ff6626, 0x8bcd4c25, 0x2e82b208, 0x12822420, 0xd9f0ff29, 0xffffa69a, 0x821e05e5, 0x20068229,
0x26248220, 0xffff3233, 0x82f468db, 0xe6d922d0, 0x23578268, 0x6666faff, 0xf4837282, 0x7c84fa20, 0x82cc4c21, 0x008029d4, 0xff068c08, 0xce4c0600,
0x06204a82, 0xfe201283, 0x0482fe84, 0x82fdff21, 0xef0e278f, 0x15cb04f9, 0x196cf4fc, 0x34b3210e, 0xf7215782, 0x06d0514c, 0x13ac4f18, 0x1894f821,
0x4817ac4f, 0x8783055e, 0x83057f6c, 0x33f73474, 0xfc088b34, 0x15b4f784, 0xfb0614f8, 0x06cb0794, 0x8207a4f7, 0x5e1a2b91, 0xeaffffb8, 0x00ff6866,
0x191aa115, 0xf72529f2, 0x1584fb44, 0x227f82ab, 0x820ecd08, 0x32072744, 0x0700fff2, 0x0a827433, 0x8ccc0825, 0x5c07bb08, 0xab20187b, 0x34827383,
0xf8ffff24, 0x33820ecd, 0xff283882, 0x8bf232f7, 0xbb065b08, 0x6b231a97, 0x83ffff06, 0x213382be, 0x0484cccc, 0x2106ae49, 0x4b5d075b, 0x07305d10,
0xae496b20, 0x86742005, 0xccf82462, 0x8200ff8c, 0x088b2376, 0x4b5d06bb, 0x5d34200b, 0xcc2a084b, 0xf80e088b, 0x1514f854, 0x6e8214fc, 0x47a1dc22,
0xe3246382, 0xffffb85e, 0x0a820482, 0x48a1dc25, 0x8394fb08, 0x9edc2554, 0x1c00ffb8, 0xff280482, 0xff4861e3, 0x48612300, 0x8306a853, 0x83198509,
0x848b201e, 0xf708211a, 0x00213383, 0x21488423, 0x1e826666, 0xff48a12e, 0x9a99dcff, 0xb4fb088b, 0x3b15c4fb, 0xf7216b82, 0x216b8321, 0x5682def8,
0x09b51e19, 0x2005c241, 0x213182e6, 0x65822107, 0xbf821882, 0x8bb9de24, 0xbf82db08, 0x9b14f723, 0x22938215, 0x820020f7, 0x06fd54be, 0x82ffff21,
0x088b270e, 0x07bb063b, 0x2b8206db, 0x8200e021, 0x86072081, 0x262c8521, 0xf7077b08, 0x8314f734, 0x82ee203a, 0xf1ff21ba, 0x21062c56, 0x0e82ffff,
0xd4209082, 0xee218c82, 0x838c8361, 0x0e002319, 0x42826666, 0x9a991124, 0x1156cb08, 0x0e002107, 0x04853782, 0x829e1121, 0x82f7208c, 0x11002332,
0x2782b89e, 0x1805b360, 0x33081256, 0xf80e074b, 0x3901ff65, 0xff15cccc, 0xc2751500, 0x612600ff, 0xfe32f982, 0x00fff668, 0xff3eca30, 0xe27ae6ff,
0xee2300ff, 0xc2820814, 0xff827535, 0x7cd40a00, 0x3bf1ffff, 0x0200ff22, 0xffff32b3, 0x82281cf5, 0x74682118, 0xf5221e82, 0x0a82e23a, 0x09826c20,
0x7a54fd22, 0x07262382, 0x0700ff2a, 0x2382448b, 0x08d82325, 0x820e00ff, 0xebff3752, 0x00ff703d, 0xff52b800, 0xec11e5ff, 0xf7f4ffff, 0xe9ffffce,
0x338286eb, 0x7ebfee2f, 0x3d0800ff, 0xecfffff2, 0x779066e6, 0x2712828b, 0x8b1ec5db, 0x4cdfffff, 0xf2222382, 0x8a82862b, 0x82a4b021, 0xf6e8212d,
0x4e204c82, 0xff394782, 0x051e85dd, 0x80a5ffff, 0x00ff0700, 0x065c8f5a, 0x872100ff, 0xb1ffffae, 0x221682c5, 0x821c1600, 0x54192c7e, 0x0d00ff7c,
0x00ffcccc, 0x8232b320, 0x192523fc, 0x0682089a, 0x9a192930, 0xb3edffff, 0x2500ff34, 0xffff6666, 0x20824ce3, 0x66661a35, 0xff25fb08, 0x343366ff,
0x6500ff15, 0xff076666, 0x820ccbff, 0xb0162218, 0x2f6582a4, 0xff6726cd, 0x299cb2ff, 0x4ce4ffff, 0x61ffffcd, 0x7b220483, 0xa6830080, 0x4821e122,
0xe622a682, 0xa182b8de, 0x8266e621, 0x84e1200a, 0x82ff2065, 0x00ff2406, 0x84482119, 0x00ff2416, 0x82b8de1e, 0xb400232d, 0x8182cd4c, 0xcdcc8b31,
0x455800ff, 0x4500ff1e, 0x00ff3233, 0x82e23a50, 0x33e821ef, 0x37229182, 0x6e820080, 0x00809a2d, 0x00ff0e06, 0xff676664, 0x82b34f01, 0x9cff2891,
0xfeff2f1c, 0x82989984, 0xa0fe2c1c, 0xfaffff00, 0x00ff0060, 0x82868901, 0x66062809, 0x1f0400ff, 0x820887f3, 0x83202506, 0xe0fbffff, 0x06271a82,
0xffffc500, 0x458a61fe, 0x002e0556, 0x0800a001, 0x197b01ff, 0x6900ff9a, 0x44829a19, 0xdcc5fb2a, 0xebae00ff, 0x89ffff44, 0x75257683, 0xffffcc4c,
0x059f514f, 0x4882ce20, 0x33b31a27, 0x4cd0feff, 0x303019cc, 0x056a4208, 0xea826120, 0xb8100024, 0xc3820852, 0xb89e1127, 0x630e00ff, 0x057a58d7,
0x9e110023, 0x21df83b9, 0x2283a111, 0x585e0e21, 0xef2208df, 0x4f82ae47, 0xd7e3002c, 0x66eeffff, 0xf1ffff66, 0x04869a99, 0xff7fed22, 0x30253183,
0x00ff0100, 0x05425b90, 0x8bb85e22, 0xa1201c82, 0x85050759, 0x206a8963, 0x23168261, 0xffe27a0d, 0xb8206a82, 0xd0426a84, 0x826a860f, 0xedff23c5,
0x65860080, 0x2509de5a, 0xe66000ff, 0xd1842b66, 0xff20a382, 0x3a43d197, 0x8f66850a, 0x61ee22d1, 0x8a948248, 0x826284cd, 0x219482dc, 0x7d828eff,
0xf56e0123, 0x2266829c, 0x53b8deef, 0xff2b056a, 0xff48e1f0, 0xbefff5ff, 0x82fbffff, 0xf0ff2413, 0x82088a61, 0x822e209d, 0xbdc72b23, 0x00ff0598,
0xff9999bb, 0xb282faff, 0xe67e0032, 0x82ffff68, 0xff9366e6, 0x008046ff, 0x3800ff08, 0x00233a82, 0x8200c00f, 0x28058225, 0x600400ff, 0x0900ff00,
0x2b0482c0, 0xffb83e0f, 0x4821feff, 0x401000ff, 0xff262982, 0xffa230eb, 0x7e82b300, 0x8269ff21, 0x93003304, 0xffffc2b5, 0xff9a194a, 0xda3f1100,
0x64f80e08, 0x625014f8, 0x074b2117, 0x16836618, 0x5034fc21, 0xcb201740, 0x3217d34f, 0x7b0634f8, 0x14fb154b, 0xf7076b06, 0x07ab0614, 0x8e34fb9b,
0x00802176, 0x08206d85, 0x802076b8, 0x1525fd82, 0x00ff717d, 0x24098315, 0x8b8f821a, 0x23768208, 0x154ba4fb, 0x94207482, 0xfb2b7482, 0x2f0e0694,
0x331c01ff, 0x8254f834, 0x0c24087d, 0xff8b9819, 0x9a190b00, 0x26f9ffff, 0x0500ffea, 0xffff6666, 0x087228f5, 0x330700ff, 0xf1ffff34, 0xeb05a4b0,
0x202e1075, 0x3a7918fc, 0x9049180f, 0x2860831f, 0xff333307, 0x5c4f0e00, 0x25838305, 0x0a00ff67, 0x97838ed7, 0x00ff992b, 0xff16d906, 0x9a190c00,
0x3093828b, 0x06676678, 0xe602ffff, 0x1514fb66, 0xe68001ff, 0x280d8266, 0xffccccea, 0x66e6adfe, 0x069f4d05, 0xcecce530, 0x19ebffff, 0xecffff98,
0xffffcc4c, 0x398399e6, 0x330aff23, 0x232b8234, 0x8b66a6e6, 0x05251c82, 0x1300ff1f, 0x32de82b3, 0xff856bfe, 0x32331a00, 0xe9ffff08, 0x01fff6e8,
0x829a1952, 0xe6af2680, 0x3b154466, 0x2550823b, 0xff33b3f6, 0x4182f6ff, 0xf0ffff22, 0x00286682, 0xffcd4c09, 0x0080f7ff, 0x09258a82, 0xffff6666,
0x296b82f5, 0x34330f00, 0x0800ff8b, 0xb5820080, 0xb2254a82, 0x332600ff, 0x233c8234, 0x0766e679, 0x23062079, 0x99990b00, 0x8f822d82, 0x6a0c0021,
0x0e22052a, 0x34823333, 0x5f820a20, 0x2b0aae79, 0x198600ff, 0xffb2079a, 0xccccd9ff, 0x62988782, 0x72846884, 0x7e824382, 0x2f828886, 0xdb3b0822,
0xfc207982, 0x00219b82, 0x26908204, 0x66e6f9ff, 0x820300ff, 0xf8ff240e, 0x828b34b3, 0x80fa22e6, 0x83938200, 0x051f6f16, 0x2108194b, 0x1742078b,
0x05a56acc, 0x34b3dc22, 0x2505c446, 0xcc4ce3ff, 0x0e82ffff, 0xff088b32, 0x9a19fffe, 0xddffff06, 0xff8bcd8c, 0x3373e2ff, 0x240bdd67, 0xff07d4f7,
0xf8ff4100, 0xf774f72f, 0x00ff1524, 0x8b00c046, 0x403900ff, 0x82048400, 0x2610820a, 0x6e00ff08, 0x8207b81e, 0x610d2c0c, 0xf7ffff48, 0xff9700c0,
0x8280f3ff, 0x9e042622, 0xffff08b8, 0x242d83ab, 0x0548c11f, 0x051d55ff, 0x00c00222, 0x4c250982, 0x0100ffcd, 0x22098360, 0x828b6666, 0x66f82325,
0x16828b66, 0xff676625, 0x83a0feff, 0x33b32616, 0x40fdffff, 0x201a8200, 0x232b82ab, 0xb83ee0ff, 0x56834082, 0x84fbff21, 0x33b32266, 0x2030827f,
0x226284f2, 0x8248e191, 0xb9ff237f, 0x97823333, 0xc6212d83, 0x2b5e82cc, 0x8b33b346, 0x00ff6308, 0x15b85ee8, 0x77839d82, 0x83020021, 0x8204858c,
0xff0826ca, 0xb89e1500, 0x20058206, 0x204083a1, 0x22229500, 0x8200c010, 0x831b8222, 0x213f8244, 0x3a82fdff, 0xea239c87, 0x84074861, 0x2222993f,
0x830040ef, 0x82cc829d, 0x82fc8334, 0x833e843f, 0x253f82f7, 0xeaffff06, 0x2299b85e, 0x5238ef22, 0x3e822282, 0x3a83ef82, 0xcf85c483, 0x0720bf85,
0x66213f82, 0x82229966, 0x63072bbf, 0xa1a7ffff, 0x34f71548, 0x68837b06, 0x66e6d327, 0x19dcffff, 0x8204869a, 0x838b830e, 0x23118506, 0x66e62300,
0x2c246282, 0x9b089a19, 0xb72dde82, 0xffff3433, 0x15343367, 0xcc98ffff, 0x200484cc, 0x22058305, 0x8200ffcd, 0x260a8215, 0xffeb11ba, 0x82b3e9ff,
0x21cd2725, 0xbfffff47, 0xab82cc0c, 0x66a6b222, 0x0025a082, 0xffff2700, 0x2d6f82ec, 0xf7840f00, 0x80f0ffff, 0x1300ff00, 0x6f82d723, 0xa37a0124,
0x0c8306d6, 0x6a82d820, 0x1e850f27, 0x750f00ff, 0x210a82c2, 0x37822613, 0x23ffff29, 0x4d00ffd8, 0x82593e4a, 0x82ba206f, 0x16002ca9, 0x0e08ce4c,
0x6b70f8ef, 0x822cfb15, 0x1eec22ec, 0x256382b8, 0xff48e1ef, 0x0a831000, 0xe113002b, 0xf0f70848, 0xfb062b07, 0x82e28330, 0xffff211f, 0x04851e83,
0x72820e82, 0x1983ff23, 0xaf9c1899, 0xabf12308, 0xba72ff85, 0x0e002811, 0x00ff7b54, 0x8266660d, 0x1fc52157, 0x00253382, 0x0667e660, 0x835383f7,
0x866d8462, 0x22718204, 0x82f7088b, 0x8218838c, 0x848782b8, 0x82978272, 0xfb08246e, 0x9beb07f0, 0x47102038, 0xff23053d, 0x82e60000, 0x4c0e216c,
0x6f18e882, 0xa8730945, 0xf1ff2806, 0xffff84ab, 0x8234b3f1, 0xe43a2158, 0xff238d82, 0x8798199f, 0x9a1921e1, 0x3b821582, 0x83efff21, 0x19ec2b04,
0x0e088b9a, 0xf8f4f7ef, 0xb67d1524, 0x0bae5a18, 0x59082d59, 0xff240534, 0x0080eaff, 0x82210482, 0x46461890, 0x15002312, 0x5485707d, 0x14f70827,
0xe690ffff, 0x0c017466, 0xccf0ff23, 0x234582ce, 0x083233ef, 0xed220682, 0xb3866766, 0x9999f232, 0x4ceeffff, 0x4b088bcc, 0xf8ffff06, 0x848b34b3,
0x2006ab5e, 0x27ee82fa, 0x66660500, 0xd7ffff08, 0x1f260a83, 0xff0534b3, 0xe883c3ff, 0x0080cf2b, 0x2a00ff05, 0xffffcccc, 0x210a84e3, 0xa252e608,
0x05002406, 0x8281cc4c, 0x4cf52660, 0x14fb08cc, 0x08234107, 0x85077174, 0x8571856a, 0x0adf4181, 0x6e00ff25, 0x180766e6, 0x2107f9a2, 0x6e82ce4c,
0x3333df35, 0xb31500ff, 0xfdffff32, 0x00ffcdcc, 0xff34332e, 0x82b31e00, 0xb3172b13, 0x00ff0832, 0xff991953, 0x29834000, 0x80110035, 0x0d00ff00,
0x00ff3273, 0xffce4c18, 0xb8deffff, 0x821100ff, 0xf2ff23b7, 0x29824861, 0x82cc3d21, 0x19d02214, 0x2bb7829a, 0x06cccc34, 0xffff74fb, 0x159a191f,
0xb920a082, 0xc6202483, 0xff215382, 0x23a583c6, 0x8bcd4cb9, 0xb922f282, 0x1b825c4f, 0xa4b0c62b, 0x4c3900ff, 0x00ff8bcc, 0x053b6346, 0x11820682,
0x845c4f21, 0x21158216, 0x2d82a4b0, 0x33201c82, 0x39232282, 0x83ffcd4c, 0x82548544, 0x15d326ff, 0x3dd8ffff, 0x260f8270, 0xff8fc2df, 0x82ccdfff,
0xd8ff2448, 0x82083433, 0x24068211, 0x3d2000ff, 0x24168471, 0xc22700ff, 0x22488390, 0x82cdcc27, 0x83202048, 0x332022f5, 0x200a8234, 0x05376c27,
0x28830682, 0x3282cd20, 0x82343321, 0x33332654, 0x94f8088b, 0x82bf8a43, 0x20bf8615, 0x83bf84cc, 0x93d184b4, 0x83f282bf, 0x85d58416, 0x826b83bf,
0x83bf92e8, 0x94ba8386, 0x828c83bf, 0x82bf82d6, 0x850820db, 0x20a38506, 0x20bf9300, 0x2cbf88cc, 0x0e088b34, 0xf814f82f, 0x00ff1534, 0x22ab8323,
0x82b31c00, 0x59e328c2, 0xffff8b9a, 0x7266a6dc, 0x044806aa, 0xd4fb2113, 0x2109df6f, 0x01489a59, 0x828b200e, 0x2114844e, 0x198266a6, 0x23200483,
0x08355282, 0x8b06d4f7, 0x14fb154b, 0x0714fb06, 0xf70614f7, 0xfb8b0714, 0x230f8c54, 0x15cb54fb, 0x22881682, 0x8214fb21, 0x852a8520, 0x2f0e2113,
0x30ba8318, 0x16404018, 0x1100ff24, 0x1b8285ab, 0x7b540e27, 0xb3f1ffff, 0x05254334, 0x6bcb0822, 0x440c1378, 0x4c2213f8, 0x1683ffcd, 0xb3214082,
0x08aa1833, 0x8540180f, 0x05aa440d, 0xff295e84, 0xcd4ceeff, 0xf88b088b, 0x4b5f8e14, 0x5f8411db, 0x947c5421, 0x4b41185f, 0x82332012, 0x84ab215f,
0xab235f86, 0x431534fb, 0x401809ef, 0x8b2023e3, 0xd1836784, 0x0482d684, 0xd6921120, 0x54843320, 0xf708cd25, 0x8474fb34, 0x07a678c0, 0x18142041,
0x180cb556, 0x44169e55, 0xab211695, 0x82c085f8, 0x274218ff, 0x0db0440f, 0x83123741, 0x05374176, 0x97413420, 0xa8b61805, 0x08374109, 0xbf9e6b20,
0xdb413320, 0x4c0e2206, 0x20b885cd, 0x18bf8e08, 0x790e02fb, 0x9d8508ab, 0x414b0821, 0x34203580, 0x82088041, 0x138041c4, 0x22079f42, 0x10f4f76b,
0x1d014002, 0x42076143, 0x294209a0, 0xff8b2336, 0x8542eeff, 0xf4fb2312, 0x1a8815ab, 0x4385ab21, 0x5420077c, 0x103b8818, 0x54217691, 0x3888187b,
0xf4f72122, 0x875ea142, 0xcc4c21c0, 0x27fc8818, 0x84082244, 0xcd4c21c0, 0x20053a45, 0x0e414508, 0x440a2244, 0x4c210fe3, 0x0d297dcc, 0x450e0021,
0xf7213b43, 0x05814174, 0xd348c084, 0x08024624, 0x0d4f5b18, 0x430ed943, 0xfc230762, 0x18156b34, 0x900ef345, 0x050941bf, 0x0941cc20, 0x44488715,
0xab2108e2, 0x07034685, 0x8b7b5427, 0xf734f808, 0x0aa44574, 0x1f463420, 0x8bcc2208, 0x0de34408, 0x45123741, 0xc0df235a, 0x460d8041, 0xe3442864,
0x2f0e3028, 0x15e4f78b, 0x2c00ff8b, 0x00ff142e, 0x86ecd123, 0x2e2c2604, 0xf7088b15, 0x2e4d53e4, 0x3082fb20, 0x15a5a818, 0x4be4fb21, 0xa241091b,
0x16fe410d, 0x07e4f726, 0x04fc14f7, 0x410e8045, 0x214812a5, 0x54f7223a, 0x5c60478b, 0x3c434b20, 0x51bb410b, 0x3c43f720, 0xc6401805, 0x4f1f4808,
0x54f78b22, 0x471c1e41, 0xab213fbf, 0x5c9a434b, 0x34f76b22, 0x3420be9c, 0x20087e48, 0x157e48cc, 0x45105b44, 0x0e2a0d00, 0x996001ff, 0x4001ff9a,
0x678266e6, 0xe1e32d08, 0xffff8b48, 0xff70fde5, 0x0080fbff, 0xf7ffff74, 0xff08ba9e, 0x48610c00, 0x197b00ff, 0x00ff0598, 0xff002001, 0x00800a00,
0xc0f6ffff, 0x08200982, 0xff221982, 0x0e82a0f5, 0x00c0fe27, 0xb0ffff08, 0x2c0a8240, 0xff4821f5, 0xff7fc1ff, 0x80bcffff, 0x234f8200, 0x085238ae,
0x5c820682, 0x0400ff24, 0x60850180, 0x61080024, 0x31827447, 0x1fc58522, 0x07d6c119, 0x5682f520, 0x76826084, 0x6086b820, 0x50840120, 0x5b82a020,
0x19090023, 0x2e60859a, 0x67664400, 0x59c2ffff, 0x5100ff9a, 0x828bcdcc, 0x1e1c28a0, 0x00ff8bb8, 0x6090021a, 0x002105f0, 0x827b8216, 0x82482060,
0x9ef3215f, 0x84204a82, 0x2005ac56, 0x829c83e0, 0x0900210f, 0xf7225583, 0xca820280, 0x82006021, 0xfe3f21d4, 0x4f2b4482, 0xff9500c0, 0x66a63d00,
0x834300ff, 0x205c82b7, 0x20b782ce, 0x225c8200, 0x83fbffff, 0x8360839b, 0x82a2209b, 0x837b202d, 0x205c828d, 0x82438205, 0xfeff211b, 0x72835c82,
0x5c85ff20, 0x82c0fe21, 0x600a2157, 0xff2bb782, 0xffe2faf5, 0x32b34f00, 0x82bcffff, 0x3e002128, 0xff230482, 0x823433ae, 0x9eff25b7, 0x34fb0080,
0x210eae75, 0x6b5a4861, 0xb85e220f, 0x053f5dff, 0x1812ae75, 0x220c4f73, 0x75ff4861, 0xe48206ae, 0x82edff21, 0x0e0839c4, 0x4cf401ff, 0xb801ffcc,
0xff15bebf, 0x68660700, 0xebf9ffff, 0x0400ffc8, 0xff2d1482, 0x8b84ebf6, 0x4ff7ffff, 0x24fb085c, 0x23098207, 0xff9a99e4, 0x2705b755, 0xff6666eb,
0xceccdbff, 0xdd22a483, 0x1b829a99, 0x1182e220, 0x83140021, 0x1b00240a, 0x82086666, 0x821920a3, 0x1d00212d, 0x16200483, 0x22221b83, 0x2d826666,
0x11380030, 0xff2b07ec, 0xccccecff, 0x8bffff05, 0x57884821, 0x3233e424, 0x578dffff, 0x57849920, 0x94ff6721, 0xff992257, 0x23578600, 0xeb088b67,
0x003f4682, 0xff2a5c0e, 0x32b30b00, 0x210d00ff, 0x0e00ff48, 0x00ff68e6, 0x0870fd02, 0x00ff34f7, 0x570c0020, 0x002d06bf, 0xff7ce101, 0xcccc0900,
0x90fdffff, 0x82f383e6, 0xecf928ca, 0x068b0808, 0x8256feff, 0xd8fe2442, 0x8215a826, 0x0ad72648, 0xe61000ff, 0x21368266, 0x0f82ee05, 0x4e830820,
0x52f80925, 0x820600ff, 0x0a0021a9, 0x2405d44c, 0x06cdcc3d, 0x2b0c82ff, 0xff958b34, 0xceccf9ff, 0xe60500ff, 0xf7234f82, 0x82089819, 0xcdcc2642,
0x19efffff, 0x2042829a, 0x23278419, 0x8b66661b, 0xff24cd84, 0x9a99e9ff, 0xe625dd82, 0xfb086666, 0x08034104, 0x0484fe84, 0x1e82e420, 0x54fb0828,
0xe6ffff06, 0x2882d763, 0x1382ea22, 0x200b0641, 0x283383f7, 0x9a991900, 0x7d1500ff, 0x060941ed, 0x299c1923, 0x2275828b, 0x825d8f1b, 0x70442492,
0x821553a4, 0x8271833d, 0x8b99206c, 0x06ca4171, 0x66160023, 0x05724167, 0x3a844983, 0x72419f88, 0x83ff2011, 0x82328297, 0x2b9c84dd, 0x332901ff,
0xff158332, 0x34b33700, 0x06226f82, 0xda8234b3, 0x862afc82, 0x800100ff, 0xf9ffff00, 0x8c8234b3, 0x32330322, 0x26065777, 0xffce4cfe, 0x82e6f8ff,
0x83fa203e, 0x82fb2004, 0x14fb281e, 0xff0504fb, 0x8266faff, 0xe6fb3314, 0xf7ffff68, 0xffff34b3, 0x85ccccfe, 0x660400ff, 0x06830866, 0xffcc4c2d,
0x32b3fdff, 0x00ff8e93, 0x8266e606, 0x66262751, 0x5a00ff68, 0x38829a99, 0xcc4cc823, 0x215d8206, 0xd082cc4c, 0x20051165, 0x223f8233, 0x829a99fd,
0xcc4c222b, 0x20388308, 0x820a8234, 0x01002714, 0x00ff32b3, 0x19821907, 0x04840520, 0x08323325, 0x82f714f7, 0x0500217d, 0x04202e83, 0x08201483,
0x002a6b82, 0x91cd4c00, 0x99fbffff, 0x06830899, 0x00248f82, 0x83343302, 0x21824a82, 0x19f9ff23, 0x3a55829a, 0xff9899d9, 0x3233a7ff, 0xbcfeff05,
0x28f76866, 0x9fffff15, 0x00ff6626, 0x8266e663, 0x09e43094, 0x1c00ffba, 0x00ffa4f0, 0xff7d7f01, 0x82f32f00, 0x761f2782, 0x1a00ffc9, 0xbe8252f8,
0xff290582, 0x1c7a1700, 0x702900ff, 0x246882a4, 0x00ff4881, 0x362d8218, 0x2c87e6ff, 0xffff9508, 0x058e82f5, 0x800900ff, 0x0a00ff00, 0x8205727d,
0x78193946, 0x2800ffd4, 0x00ff67e6, 0xa7b87e04, 0x85e8ffff, 0xffaa08e4, 0xae07e5ff, 0x28066941, 0x6fcc0cd0, 0x0fe3ffff, 0x279b825c, 0xff99999f,
0x9a199cff, 0xf9208882, 0xff204382, 0xf5310484, 0x858b0080, 0x800600ff, 0x068b0800, 0x1200ff0e, 0x260d82eb, 0x15cccc60, 0x826c00ff, 0x2e002324,
0x73821e85, 0x82c70c21, 0x87053150, 0x0e00fff0, 0xffff71fd, 0xff1e45fc, 0x14ae0800, 0x38219282, 0x27b88210, 0xff0a172c, 0x142ecaff, 0x45272982,
0xffad0040, 0x82403800, 0x4f3822a3, 0x220a825c, 0x82a43045, 0x30ca217b, 0x2c22ad82, 0x7b823e0a, 0x1b83f520, 0xf0c70822, 0x57214682, 0x2850820a,
0x00ffb4e8, 0xff9e6f05, 0x25648200, 0x2e00ff08, 0x7a849082, 0x06314b82, 0x00ff1018, 0xfff6e80d, 0x8a010f00, 0x9c0700ff, 0x212e8228, 0x3882a4b0,
0x820a9721, 0xcc642229, 0x21f182cc, 0x298200c0, 0x53820e20, 0xc0fcff22, 0x092e7482, 0xffff52f8, 0x8b3473f3, 0x57f1ffff, 0x0682080a, 0x34b30327,
0xcc32ffff, 0x230486ce, 0x8b32b303, 0xf1229082, 0x1b827b54, 0x707df326, 0xf70900ff, 0xfc221b82, 0x5c82e1ba, 0x82844021, 0x83e8201a, 0xcc642247,
0x22ab82ce, 0x820ca2fc, 0x66a62115, 0x96217c82, 0x218682c9, 0x90823233, 0x91eae629, 0x8b2f0e08, 0x5a15f4f7, 0x795206b7, 0xe3ff2507, 0x00ff9a59,
0x85077e52, 0x00ff2209, 0x521e861c, 0x082305a8, 0x8507d4f7, 0x85ff2009, 0x251e832e, 0x66a6dcff, 0xe652088b, 0x531e830e, 0xff33061a, 0x00806900,
0x6630ffff, 0x00ff1566, 0xff713d36, 0x83401700, 0x640627f6, 0x0200ff19, 0x9e8218c4, 0x4d822208, 0x23feffff, 0x0400ffe4, 0xffff0b57, 0x081c9cfa,
0x051600ff, 0xe5ffff1f, 0xff050a17, 0x48a12200, 0x218a829c, 0x0483d723, 0x0a82d820, 0x289c2222, 0x1c82ea82, 0x0c212682, 0x22ea82cd, 0x8200a0fa,
0x2350823c, 0xfc29feff, 0x70215082, 0x265a8262, 0x00ff10b8, 0x82d86306, 0x4517224b, 0x217a821e, 0x4b82ac47, 0x820c0321, 0xf306220f, 0x262482f8,
0x00ff028b, 0x8228d103, 0x0a572109, 0x4a217f82, 0x271982c0, 0xff486132, 0xb85ef4ff, 0x07212982, 0x22b58220, 0x820060fe, 0x28fc2658, 0xbbf9ffff,
0x23d082e8, 0x08c6abf8, 0x81260682, 0xffff66e6, 0x04836699, 0xffcc4c27, 0x67e681ff, 0x2290828b, 0x82fca9f8, 0xbcf9221b, 0x2132826a, 0x5282e8fb,
0x82295c21, 0x4020215c, 0xf4271a82, 0x00ff4761, 0x82d86332, 0x36fe22ab, 0x20158246, 0x22578255, 0x823eca03, 0x9a992809, 0x0e088e92, 0x64f4f7ef,
0x411805a7, 0xfb271253, 0xffff0634, 0x827929f7, 0xd6f8225c, 0xf1451887, 0xf78b250b, 0x04fb05c4, 0x200a1f60, 0xc65418a3, 0xb4fb220b, 0x068a5707,
0x7d150023, 0x26198271, 0x00ff9082, 0x1990821a, 0x201b2647, 0x220082ff, 0x8205dbec, 0x5b8b2672, 0x848cfb05, 0x27418215, 0xfff007fb, 0x10f8fbff,
0x07240487, 0x6d088bef, 0xfb207482, 0x13850882, 0x07040024, 0xf5828bf0, 0x0810f823, 0x217382a9, 0x2c820400, 0x12821383, 0x0e823b82, 0x088b1124,
0x0d8206a9, 0x8311f821, 0x854f8626, 0x6d08245a, 0x40f38b07, 0x90209a66, 0x0722b682, 0x05828fae, 0x9c52f821, 0xc4f723c5, 0xc78246fb, 0x1020fc91,
0x10203687, 0xff21fc94, 0x106041ff, 0x6041f020, 0x8bf02107, 0x2d126041, 0x19b700ff, 0x152df898, 0x00a0feff, 0x0b470602, 0xff9a2109, 0x670ab272,
0xe5230580, 0x41ff707d, 0x8f270cfc, 0x01ff088b, 0x18feff5f, 0x2c17abd4, 0xff0794f7, 0x68e60000, 0x821a00ff, 0x214f8290, 0x3f830080, 0xffff7025,
0x829899e4, 0xe0fe2a3a, 0x154b0200, 0xae1100ff, 0x25cb8214, 0xffec510e, 0x3254f1ff, 0x08ed5108, 0x8414ae21, 0xffff2416, 0x82ec51ee, 0xefff2334,
0x1b823233, 0xceccf023, 0x12e54cff, 0x32330f22, 0xff241684, 0xcecc1000, 0x01312d82, 0xfffeff0e, 0x666628ff, 0xfdffff15, 0xffff3433, 0x283782fa,
0x9c99faff, 0xccfcffff, 0x200e82cc, 0x24888419, 0x069a19df, 0x21558285, 0x776066fb, 0x242c8307, 0xce4c0500, 0x5a378208, 0xff23060d, 0x82800000,
0x830620c0, 0x99032c04, 0x0400ff9a, 0xd108cccc, 0x828e05eb, 0x835a8209, 0x00ff220e, 0x22418302, 0x82343304, 0x0500237b, 0xd782281c, 0xd4cd0422,
0x21084382, 0x00ff1c8f, 0xff180403, 0xf2ddfbff, 0x1600ff08, 0xffff9a59, 0x050a57e1, 0xbd3e00ff, 0x5e00ff70, 0x0a82281c, 0xe2fa0222, 0x74224b82,
0x4782903c, 0xff84ab24, 0xea820600, 0x05222c82, 0x47831659, 0x82f4fd21, 0xf8532147, 0xf8211b82, 0x21478252, 0x1a82088c, 0x34b36a24, 0x398234fb,
0x3c4a0322, 0x20201282, 0x00269e82, 0xffffd04c, 0xea82b3f9, 0x3033fd22, 0xb33ce082, 0xef0e0832, 0x15abf4f7, 0xb3d2ffff, 0x00ff0634, 0xffc2f512,
0x9a194000, 0xc9ffff05, 0x2b227a83, 0x0a826666, 0x3183df20, 0x00809422, 0xd0220a82, 0x491866e6, 0xff210cd8, 0xacc318f1, 0x26328216, 0x1fc51000,
0x84f7088b, 0x82992057, 0xfdff21d2, 0x0e22cc82, 0x9b41cc4c, 0x0b501812, 0x01ff2d0f, 0xffcccc16, 0x66e6caff, 0xebfeff15, 0x00233c82, 0x8233b3d8,
0xa12d27ca, 0x9c00ff48, 0x0a82ff7f, 0x52f86f2b, 0x8b076b06, 0x4feeffff, 0x05c4535c, 0xff258b83, 0x84ab1100, 0x83fc828b, 0x24168506, 0x5c4f0e00,
0x2117828b, 0x3269a4b0, 0xa4b02106, 0x83053442, 0x253e8218, 0x088b7c54, 0xd597f4fb, 0xdbffff29, 0xff07d8e3, 0x82cf86ff, 0xe15e3165, 0xffff0548,
0xffae87f5, 0x10380800, 0xf0f0ffff, 0xfe274a82, 0xffffa826, 0x827bd4f7, 0xe08f2218, 0x240a8908, 0xd20100ff, 0x2523822d, 0x00ffe2e5, 0x18836c0a,
0x089ad92c, 0x194f02ff, 0x30feff98, 0xc28266e6, 0xf0670431, 0x87fcffff, 0x0500fff0, 0xffff3834, 0x828c57fe, 0xa4302109, 0x0722be83, 0xb3820020,
0x840b0731, 0x290300ff, 0x0400fffc, 0x00ffe4ba, 0x82f00706, 0x1d0927d9, 0x0900fff4, 0x30822085, 0xff9c1926, 0x9a190f00, 0x99217982, 0x37928298,
0xff083233, 0xce4cb5fe, 0x330301ff, 0xffff1534, 0xff85ebad, 0x7a544000, 0x03226a82, 0x5b82e17a, 0xffec1126, 0x00800200, 0xcc210982, 0x085e82cc,
0x34b30631, 0xff07ab08, 0xcc4c6d00, 0xdeffff06, 0xffffcecc, 0x059a198e, 0x6800ff0e, 0xffff6766, 0x1566e6e9, 0x1e0c00ff, 0xf2ffffb9, 0x00ff70bd,
0x82a4f016, 0x210c2734, 0x0d00ff47, 0x89829042, 0x7a825720, 0x17600023, 0x225f820a, 0x82a4f00b, 0xcc0c2b15, 0x1effffff, 0x1400ffb8, 0x34829042,
0xff94f827, 0xc2f50b00, 0x200a8208, 0x277e82fa, 0xff34f30b, 0x00c0ebff, 0x172b2382, 0xf4ffff0a, 0xffffcd0c, 0x82acfcf2, 0x7fe02e1e, 0xdcffffbe,
0xff05ee9c, 0xec112e01, 0x061c5407, 0xe75eff20, 0x7a542105, 0x1805fb51, 0x820c089e, 0x8b84211b, 0x23081782, 0xfb08ce4c, 0xffff07c2, 0xff9999df,
0xd6632300, 0xf9ffff05, 0x00ff21b0, 0xff0ce206, 0x3b5ff7ff, 0x810300ff, 0xf7209482, 0x22050c56, 0x82ef47f8, 0x3ff82134, 0xfd226d82, 0x2a820a37,
0xff29dc26, 0xfa5efaff, 0xf2225a82, 0x928352f8, 0xff222b82, 0xa6824821, 0x82e2ba21, 0x56ee21bb, 0xf321a182, 0x26ea8334, 0xffff30fd, 0x8280d59f,
0x99d733ea, 0x7601ff9a, 0xff159a19, 0x00c03200, 0xb6ffff06, 0x0484b89e, 0xf6247b82, 0xffff10d8, 0xfd220484, 0x3b821844, 0xfffa3e25, 0x82f30400,
0x07f4221e, 0x874582ae, 0x2c5a820a, 0xffff90ad, 0xffe13af8, 0x14ee0c00, 0x2e1a828b, 0x069a197f, 0x9b1200ff, 0x0000ffa6, 0x5aff67e6, 0x0d2905ce,
0xff8b6766, 0x33b31100, 0x09124108, 0x1b858620, 0x54eeff23, 0x2237827a, 0x8240cdff, 0x49002482, 0x83ff4861, 0x249e8204, 0xfff02709, 0x26048400,
0xffe8bb02, 0x82c10d00, 0x0cfb21a1, 0x0b251e82, 0xff0852f8, 0x820a87ff, 0xb64826ec, 0xc50700ff, 0x21a6821e, 0x4a833433, 0x18057b66, 0x430bef52,
0x4c2211db, 0x6643ffcc, 0x83b32006, 0x00240833, 0xff9a99ac, 0x34b3aefe, 0xb0ffff15, 0x00ff9002, 0x059a19a0, 0x28f5ffff, 0x1500fff6, 0xffff5ccf,
0x8ba470dc, 0xff230f85, 0x82a430ea, 0x2325837f, 0x66e65fff, 0xf8302582, 0xffff1018, 0xff0a17f0, 0xf0670600, 0xabecffff, 0x0f20da82, 0xf8313483,
0xff08cc0c, 0xb8de0f00, 0x13f8ffff, 0x1300fff8, 0x2219822b, 0x82ec7106, 0xd6e321ae, 0xe0211882, 0x271e8282, 0xff6c2707, 0xd8630e00, 0x5823f282,
0x8206146e, 0x2310821b, 0x289cf1ff, 0x06261082, 0xffff8c2c, 0x308291f3, 0xc6cb1122, 0x8f21e982, 0x06da445c, 0x52780922, 0x0f223a82, 0x4a86e0cf,
0x66660622, 0x04825e82, 0x2205bf7a, 0x8268e60f, 0x338332a2, 0x2900ff32, 0xff1566e6, 0x34331000, 0xb32000ff, 0x27538232, 0xff523810, 0xb85edfff,
0xdf23b882, 0x82067a94, 0xeeff2fd5, 0xff0e1516, 0x9a999700, 0x0c9601ff, 0x728215cc, 0xff48e12b, 0x90420d00, 0x0fe9ffff, 0x2021825c, 0x22c283f3,
0x8270bdf2, 0xe6a82754, 0x9fffff66, 0x3e82f8e8, 0xba29f330, 0xf0f2ffff, 0x0000ffa2, 0xffff00e0, 0x6382b3eb, 0x31080d22, 0x07d75f18, 0x1f050d22,
0x23058942, 0x00401400, 0xe8262382, 0x0b00fff6, 0x588233f3, 0x82540321, 0x66202bbc, 0x2300ff67, 0xfb05506d, 0x628207c2, 0xd446ee20, 0xffcd2105,
0x5a054245, 0x074710a8, 0x99122c06, 0x01ff089a, 0x0734332d, 0x832000ff, 0x99dc22ef, 0x30d4829a, 0xffdf4f06, 0xf41df9ff, 0xa00800ff, 0xfcffffc5,
0x238a827e, 0x8b85ab08, 0x07376782, 0xff8b10b8, 0x42c00700, 0xc80200ff, 0x0600fff6, 0x00ffd723, 0x8206a105, 0x070d221a, 0x829283ae, 0x8200202b,
0x140023e0, 0xb0821e45, 0x82aa1121, 0xce0c21a1, 0x0226ea83, 0x6000ffd2, 0x5f82540e, 0x6a83a820, 0x34f3c922, 0x022b0310, 0xf7af2705, 0x1574f7d4,
0x8e1806eb, 0x7b210e6e, 0x2110838b, 0x06840885, 0xffff8425, 0x4786abf1, 0xe34405b9, 0x48a02007, 0x7a210674, 0xf551188b, 0xc0601808, 0x06f6640c,
0x85203882, 0xb3294982, 0x8b088b34, 0xf71514fb, 0x18688f34, 0x870e8252, 0xff7a2168, 0x60206887, 0x86206891, 0xee227382, 0x9c827a54, 0xff242483,
0x66660d00, 0x00218485, 0x23688411, 0xab1594f7, 0x0d226788, 0xb984146e, 0xd092c985, 0xe03aef26, 0x066b088b, 0xcc957085, 0xdf457c20, 0xabf12206,
0x27cc8684, 0xd4fb74f7, 0x20ffff15, 0x0e219ca1, 0x22cb8254, 0x4186abf1, 0x08250560, 0x19df00ff, 0x209c849a, 0x21918284, 0x5a83540e, 0x04415420,
0x34b32110, 0x38837182, 0xcc4cee27, 0xfeff088b, 0x23e182a0, 0xcc4c5500, 0xdf277282, 0xffff9a99, 0x479a99dc, 0x32200b97, 0xb321b682, 0x18e68433,
0x4712aa61, 0x54211597, 0x1297477a, 0xff3c7f23, 0x129747ff, 0x47103821, 0x5d210797, 0x229747f4, 0xa1821920, 0xf6e89f23, 0x46a84805, 0x9cc4f439,
0xef0b00ff, 0xebffff1c, 0xffffcccc, 0x7f9819ff, 0xaf0e087e, 0x41abb4f8, 0xfb236881, 0x42d4f774, 0x8b226053, 0x884314fb, 0xffff27cd, 0xff9a9957,
0x87473601, 0x3d2a212b, 0x21118747, 0x8747ae07, 0x24063107, 0xfaffff19, 0x00fff85e, 0xffbfbf07, 0x0c37fdff, 0xd0780982, 0xac082305, 0x32478b08,
0x03002805, 0x00ff0481, 0x825c4f06, 0xd2e22104, 0x21089e47, 0x9e478c6c, 0x05904328, 0x0834b322, 0x4705fb4a, 0x97200a9e, 0xff2d9d82, 0x1400ffff,
0x988a3433, 0x000c00ff, 0x097b4701, 0x00ff3222, 0x36157b47, 0x00fff007, 0x057a1460, 0xff6cf70e, 0x34b37f00, 0xf7ffff15, 0x4b8bf853, 0xff28050c,
0xff0080fc, 0xa4b0f9ff, 0x1e2c0482, 0xffff08b8, 0xff299cdf, 0x7a94dcff, 0x2744e043, 0xffcd0cf4, 0x90020d00, 0x2305e44b, 0x66e60000, 0x2305f84b,
0x1a0ff4ff, 0x3171c943, 0xff02abfb, 0x8aa10500, 0x33f8ffff, 0x0200ff33, 0x0982cecc, 0x8bcd4c2e, 0x8d00ff08, 0x00ff34b3, 0x15323377, 0x51391182,
0xf7ffff68, 0xff05fafe, 0xae47f5ff, 0xd7f4ffff, 0x0000ff0a, 0xffff4861, 0x230e82ee, 0x0a270b00, 0x51221882, 0x4a8208ec, 0xfff06735, 0xf0c7faff,
0x010700ff, 0xfdffff06, 0x00ff3068, 0x8352f806, 0x5807234f, 0x16828b10, 0xff426026, 0x00e00200, 0x78212a82, 0x21048252, 0x358200c0, 0x289c4531,
0x874800ff, 0x1300ffae, 0x00ff72fd, 0x822adc0c, 0x682a2329, 0x068208f4, 0x9a993025, 0x82d8ffff, 0x27002804, 0xffff6666, 0x826666cf, 0x8506844c,
0x201b8316, 0x3317848b, 0xffffff08, 0xffff7819, 0xa2aaa6db, 0xb3e0ffff, 0x1f00ff32, 0xff233782, 0x829a99f2, 0x4c222d63, 0x6900ffcc, 0xff159a19,
0xe23a0d00, 0x0a225882, 0xb5821ec5, 0x82e03a21, 0xc5f2223c, 0x206a8220, 0x820682ff, 0x34332111, 0xff241684, 0xccccf2ff, 0x06836a83, 0x00211685,
0x8211820a, 0x3433213e, 0x00212d82, 0x8328820d, 0x85ff2011, 0x260e8204, 0xffa3088b, 0x8399bffe, 0x05602362, 0x6382071e, 0xa4300b27, 0x27faffff,
0x262382f0, 0xffff0a57, 0x82c876f6, 0x5ccf21f2, 0xf622a982, 0x0a821078, 0xfff0c72b, 0xfa1ef4ff, 0x680000ff, 0x211e8230, 0x2d82ec11, 0xc0df2208,
0xffff6b08, 0x05f668ef, 0x4ff0ffff, 0xf7ffff5c, 0xffff00e0, 0xff48e1f9, 0x5cafecff, 0x1e0800ff, 0x821884b8, 0xb50522d3, 0x223f82c2, 0x73ffe4e5,
0xcc2006c8, 0x0b22e282, 0xb5839a99, 0x0a97d028, 0xeeffff07, 0xde825c4f, 0x82b0f121, 0x12825085, 0x16825c83, 0x1100ff28, 0x088ba4b0, 0x088506cb,
0x0e00ff22, 0x0f501882, 0x0516500a, 0x21063a4b, 0xa382510e, 0xcc4cee32, 0xff0e088b, 0x9a99ed00, 0xb30801ff, 0x00ff1534, 0x4306ed4a, 0x17211d71,
0x20d3820a, 0x20fe4bf3, 0xf328f983, 0xffff3d2a, 0xff14eef2, 0x2106fe4b, 0x6384cecc, 0xf5827f20, 0x2119fa4b, 0x5b444e02, 0x566e2108, 0x21075b44,
0x9418cc4c, 0x10230b3a, 0x828b1fc5, 0x24068324, 0x3a0f00ff, 0x201b83e2, 0x05374e7a, 0xc2f70826, 0x2100ff07, 0xcd472f82, 0x4b002005, 0x80230ff7,
0x4b00ffc4, 0xb02e07f7, 0xffffffa4, 0x00ffe0fa, 0xffcdcc07, 0x9e830200, 0x9a190622, 0x2205a67d, 0x827800ff, 0xeeff210a, 0x023b0310, 0xffaf2b1a,
0x98993602, 0x99b600ff, 0x4e73159a, 0x800c2806, 0xebffff00, 0x858b00c0, 0xf3ff290f, 0xff080080, 0x68a656ff, 0x99270482, 0xffff059a, 0x50b89eb6,
0x1b8306be, 0x9500ff21, 0x84368230, 0x82468240, 0x8225864c, 0xeb082214, 0x2458182b, 0x30082e0c, 0xfcffffa4, 0x00ffcce1, 0x8b142e08, 0x82068508,
0x34332805, 0x1e0300ff, 0x1800ff36, 0x23083f58, 0x54f754f7, 0x0c223a82, 0x4d82e07a, 0x8be89122, 0x11a0ad18, 0x68e6a62e, 0xb33500ff, 0xff3b1533,
0xffffbf00, 0xfb2bab82, 0x00ff9a19, 0xff6ee70b, 0x824cf4ff, 0xc8072262, 0x21948202, 0x67829919, 0x82f3ff21, 0x2b168206, 0xffff0a57, 0xfffe37f8,
0xae07fbff, 0x18280e82, 0xff3b0892, 0x010040ff, 0xf9303c82, 0xffffb633, 0xff33b3ef, 0xf8b30700, 0x33edffff, 0x10210982, 0x22ae8250, 0x82cd4cf9,
0x5c102aa8, 0xf9ffff29, 0x00ff2030, 0x20238412, 0x279782bf, 0xffaec706, 0x52481000, 0x05221e82, 0xa7828921, 0x825c4f21, 0xae5a25b2, 0x00ff0615,
0xff231083, 0x82a4b0f3, 0x1b052210, 0x218782e7, 0x9b8252b8, 0x8238e921, 0x0a97217f, 0x87212a82, 0x239682ae, 0x10180400, 0x0432d982, 0x00ff092c,
0xfffdc700, 0xb4080400, 0xb00100ff, 0x57820813, 0xff2b4726, 0x75b30600, 0x8a828f83, 0xcdcc1225, 0x84f9ffff, 0x268f8394, 0x7bd47fff, 0x823300ff,
0x269082fd, 0x00ff85ab, 0x82cccc2c, 0x8212206a, 0xd3ff220a, 0x24758230, 0xf6a8daff, 0x2b5b8206, 0x15900200, 0xabc200ff, 0xdb152b85, 0x2c229682,
0x1482281c, 0xd8e32327, 0xde2300ff, 0x230a82b8, 0x08e23a2b, 0x17260682, 0xffff6626, 0xa382f8f5, 0x34b3142c, 0x3df0ffff, 0x0e00ff70, 0x8782b89e,
0x0a170622, 0x2124ae82, 0x0300ff48, 0x00231982, 0x8266a60c, 0xa30d222e, 0x203583d6, 0x2316822c, 0x281cdcff, 0xff244c84, 0x3ecad4ff, 0xff27d482,
0xff9a19bf, 0x82feffff, 0xeeff228f, 0x09184e54, 0x8ba4b02e, 0x35efffff, 0xffff08c4, 0x07ffff3f, 0xed220c82, 0x65822a6a, 0xf86d4c20, 0x05b54d06,
0x00ffab27, 0x1570fdbf, 0x22ab82ab, 0x82f8d308, 0x2c07216a, 0xf8223082, 0x2f82e0cf, 0x2030f722, 0xff287582, 0xff2230f7, 0xf8d3f8ff, 0xcf2b0482,
0xf7ffffde, 0x088b082c, 0x83ab066b, 0x82a02051, 0x9cbb20ed, 0x8820203a, 0x86e0203a, 0x825b203a, 0xef0e2e3a, 0x19ef01ff, 0x15f4f79a, 0xdecaffff,
0x206b82b8, 0x29da83cf, 0x7200c0e2, 0x1ed1ffff, 0x068508b8, 0x0200ff2d, 0xffff00c0, 0xff7c14c7, 0x82801d00, 0xe6d32209, 0x229d8266, 0x829a5990,
0xa1243473, 0x3600ff48, 0xffff48e1, 0xffb89efa, 0x85eb4800, 0x82d3ffff, 0x3100232e, 0x24820100, 0x1483d320, 0xb8de3027, 0xfab7ffff, 0x062143e2,
0x82ccc521, 0xe1e022fb, 0x871e8248, 0xffff2c0a, 0xffec51e2, 0x703dbdff, 0x831000ff, 0x82bf2083, 0x4b9b241e, 0x823900ff, 0x82ff205e, 0x00ff286f,
0x8b53f841, 0x82f4f708, 0x8c4f2172, 0xff253f82, 0x00ff7a14, 0x838d8240, 0xff8b2604, 0x00804f00, 0x22068508, 0x86bfffff, 0xffff2e16, 0x8b9a99af,
0x50feff08, 0x24fbd6e3, 0x211e8215, 0xa3821e2c, 0xad822320, 0x04840020, 0xb91e2c22, 0x00201e82, 0xff200683, 0x47201182, 0x0ef93119, 0x2882d320,
0x82dcff21, 0xddff2332, 0xd6821e05, 0x8248e121, 0x82ff202d, 0x848b2015, 0x75ae2028, 0xff2606d7, 0x2a1caf01, 0x2082153b, 0x83b8de21, 0x82bf8219,
0x8248204c, 0x382b221d, 0x82948352, 0x265e8306, 0x2400ff48, 0x82ffaec7, 0x85b8206e, 0x82b62075, 0x83878322, 0x82388263, 0x832d8258, 0xff68215f,
0x002f7186, 0x0e088b02, 0xe901ffef, 0x00ff9a19, 0x829a19b7, 0x66f72b64, 0x3900ff66, 0xff6d6666, 0xe782af00, 0xccc5ff26, 0x7d088bcc, 0xf3363e82,
0xffff866b, 0xff0020fa, 0xfe7ff5ff, 0xe0f7ffff, 0xffff0800, 0x0f8240eb, 0x9182f020, 0x21e3ff22, 0xff219182, 0x23cd82eb, 0xb8de0f00, 0xf52e1a82,
0xff93e47a, 0x0080f3ff, 0xf1ffff91, 0x9282ffff, 0xc0c5ff23, 0x25488200, 0xffe1fae1, 0x5b8350ff, 0x0483f620, 0x9a99c628, 0x2600ff08, 0x2c821fc5,
0xc2666622, 0x15825e82, 0x664b0023, 0x82318267, 0x82662006, 0xb33822c4, 0x05136534, 0xe6250022, 0x0c209d82, 0x8f273184, 0x00ffcecc, 0x82333325,
0xe0f925b3, 0x0400ff00, 0xf7279a83, 0xffffccec, 0x828f62ff, 0x008024a9, 0x828a0886, 0x2016830c, 0x2840829b, 0xe21aa6ff, 0x3340ffff, 0x23578232,
0x9a1941ff, 0x9a2d8982, 0x00ff32b3, 0x8a70fd59, 0xde0000ff, 0x20b382b9, 0x207a83fa, 0x234d8204, 0x3dcaf7ff, 0xa2211482, 0x2048820c, 0x20e28200,
0x83ed84fb, 0x82ff2067, 0xffff290a, 0xffba89fd, 0x293cf8ff, 0x22055e58, 0x821ef9ff, 0x000023f1, 0x198261a5, 0xffacfc29, 0xfa9e4c00, 0x8338ffff,
0xbaf0224c, 0x206f82e2, 0x27068300, 0x784d00ff, 0xc700ff54, 0xff241682, 0x8d64e6ff, 0x0425f582, 0x00ffcc4c, 0x21d38206, 0x1582fdff, 0x83070021,
0xe6f922a6, 0x2bcc8268, 0x0e083333, 0x0401ffef, 0x50f7cccc, 0xe325e182, 0x00ffce4c, 0x2c288316, 0xff33b3de, 0x9a190c00, 0x99ddffff, 0x235a8299,
0xb89eb2ff, 0xbe26ca82, 0xffffe17a, 0xaa8240c1, 0x2583eb20, 0x00c0a222, 0xfc20ce82, 0xff275482, 0xff4861ef, 0x82200300, 0xbdee2719, 0xffff9470,
0x1a8280f2, 0xc0080022, 0xf2211082, 0x221a82e1, 0x8248210d, 0x302982ca, 0x00000e00, 0x02ff088b, 0x06541822, 0xcc98ffff, 0x255682cc, 0xff3433cc,
0x21832500, 0xccccb128, 0x5e4300ff, 0xf38208b8, 0x00805426, 0xea00ff05, 0x0023ad82, 0x82333312, 0xdee4289e, 0x9c00ffb8, 0x82050180, 0x002024ff,
0x831100ff, 0x83f62088, 0x830f2009, 0xa1f12109, 0x09206782, 0x0a879284, 0xeeffff22, 0x00345582, 0x7acc8c03, 0x60fcffff, 0xffff0800, 0xffd6e340,
0xe25ad7ff, 0xe4254482, 0xffffcdcc, 0x83cd84fa, 0x78e92609, 0xffff8852, 0x21b883e4, 0xfa83f9ff, 0xccccbe22, 0x06218082, 0x206a82e0, 0x21048300,
0x7f82be06, 0x6f830120, 0x48210722, 0x0027c382, 0x8bb8de29, 0x822800ff, 0xf1ff2162, 0x2334da83, 0xffff6666, 0x08b89ee3, 0xabffffed, 0xd20548a1,
0xc0c2ffff, 0x2c203d82, 0xdc204d83, 0x61222183, 0x38839a19, 0x23097677, 0x00801500, 0x10824382, 0x00ff0824, 0xfd820c00, 0x44831920, 0x6866e239,
0x8dffffe9, 0x00ff9819, 0x08cdcc07, 0x8b30fb0e, 0xff8b15eb, 0x829ea7ff, 0x82472082, 0xb8ff22e8, 0x22ed8261, 0x4bb95e58, 0x58220587, 0x45824861,
0x1d864720, 0x58330a82, 0xf708b85e, 0x14fc0714, 0x0714fb06, 0xf4f744f7, 0x82067b15, 0x47a1213e, 0xb8234482, 0x83ffb85e, 0x214f853f, 0x1f826b08,
0x54f70625, 0x828bbb07, 0x54fb2123, 0xab210d83, 0x82428307, 0xb8ff2161, 0x00208d82, 0xff225783, 0xba8299a7, 0x94f70e2a, 0xff15b4f7, 0x66e6caff,
0xd5203d82, 0x0482d783, 0x10820a82, 0x06850820, 0x2a00ff26, 0xffff85eb, 0xff241682, 0x7b143500, 0x3522ee83, 0x4f827c14, 0x84eb2a22, 0x84201b83,
0x10820a82, 0x1e822d82, 0x28867c20, 0x54841b83, 0xfb8b0822, 0x6e21546f, 0x86201194, 0xa6535482, 0x82852006, 0x54ee2286, 0x055a547b, 0xf1215f82,
0x847518b3, 0x848b200c, 0x827220bf, 0xffff21cc, 0x0700c018, 0x10823182, 0x06823183, 0x8300ff21, 0x201b8404, 0x83208200, 0x850683bf, 0x821b8316,
0x1910826a, 0x21179fd3, 0xbf83fc8b, 0x0040b922, 0xc6215482, 0x0c187dc0, 0x20051f7d, 0x082f7dff, 0x4600ff24, 0x5f8300c0, 0x2009467d, 0x823282ff,
0x823e8238, 0x82ff205f, 0xffff2406, 0x82ccccc6, 0x27498204, 0x3433b9ff, 0xef0e088b, 0x221f336e, 0x82666658, 0x99472569, 0xb8ffff9a, 0xff280a83,
0x089a99a7, 0xab0734fb, 0x750e4f6e, 0xa26f12c2, 0xd4fb270c, 0x60568b06, 0xa1825660, 0x19caff23, 0x2d96829a, 0xb666e6d5, 0x7b08c08b, 0xd3ffff06,
0x1082ebd1, 0x142edc23, 0x815118ff, 0x74f72c0a, 0xfbd4f707, 0x14f71584, 0x1807eb06, 0x230dc948, 0x33330700, 0x08229582, 0xd882cdcc, 0x06820020,
0x1182ff20, 0x04833420, 0x82ff3321, 0x8bcc250e, 0xcb06ab08, 0x1809a25c, 0x200dc36e, 0x5b70824b, 0xb9880b40, 0x0754fb26, 0x74f774fb, 0x760cc570,
0x4b200ae3, 0xff235082, 0x4dcd4cee, 0xb32007cf, 0x11246b82, 0x088b85ab, 0xff21a082, 0xe26e1800, 0x82cd200c, 0x5e10829c, 0x7e8206cb, 0x6e184682,
0xfb200ce4, 0xfb21d382, 0x864318e4, 0x0abb430c, 0x6105c243, 0x8021076f, 0x12327b00, 0x18eaff21, 0x830f0deb, 0x2032863f, 0x301b821a, 0x94f80e08,
0x15b0f814, 0x01000000, 0x00000080, 0x820382c0, 0x82012007, 0x40012107, 0x0b841385, 0x13830f87, 0x17820020, 0x1f870783, 0x078b0b87, 0x07834387,
0x02201782, 0x53885f86, 0x0f841786, 0x0f8b5b83, 0x17874787, 0x13830783, 0x2b830787, 0x0220038a, 0x0f8a1b83, 0x00256a82, 0x00000002, 0x20178202,
0x84178202, 0x8b0b8303, 0x871b8b13, 0x931f8323, 0x845b8a37, 0x20278657, 0x888f8201, 0x86678b5f, 0x841f830b, 0x826b8323, 0x10474103, 0x4b412783,
0x87578b06, 0x863b840b, 0x8601201f, 0x831b8483, 0x072f414b, 0x02200782, 0x5f41db8a, 0x8633870c, 0x86012007, 0x834b8faf, 0x201383c3, 0x8ba78602,
0x834f8707, 0x86012013, 0x930220f7, 0x84638207, 0x8b078717, 0x20578223, 0x8e7b8301, 0x83138337, 0x8a4f8c5f, 0x871784cb, 0x844f9a0f, 0x86db87a3,
0x083b4167, 0x01200f82, 0x7384938a, 0x83060f41, 0x830120e7, 0x41038e1f, 0x7f860c7f, 0x43860120, 0x1b864b8c, 0x830fdb42, 0x4213840f, 0x2b8a0bb3,
0x078f1f87, 0x6b828b88, 0x03820120, 0x9b8a4384, 0xdf842f8b, 0x4207c342, 0x634106b3, 0x414b880b, 0x02200617, 0xbf437f87, 0x437b8f06, 0x01200f27,
0x83417f86, 0x8301200b, 0x876b824b, 0x4102205b, 0xb78b16d7, 0xf7413f84, 0x4313940e, 0x87830633, 0x1788c797, 0x0f88cb86, 0x00000022, 0x7f44bf84,
0x4213820b, 0x012007af, 0x4341178a, 0x073b430c, 0xc3424f87, 0x840b820b, 0x8a6b8b5f, 0x0beb42a3, 0x840b6b41, 0x2027820b, 0x86038301, 0x860b8483,
0x411f883b, 0x0b4106d7, 0x87778318, 0x823b8303, 0x84ff870b, 0x20138207, 0x8f438200, 0x4401203f, 0x1f410acb, 0x0f83410c, 0x00204f8e, 0x2f883782,
0xb7871b86, 0x410c4b42, 0x17880a0f, 0x9f453b83, 0x2097830e, 0x83178301, 0x827b878f, 0x86022023, 0x0c87413f, 0x43069f41, 0x27930c37, 0x0120ef8a,
0x2006fb42, 0x8b138701, 0x21cb8bf7, 0x07460000, 0x8c838a05, 0x9a2b83b7, 0x42a78b03, 0x47870fd7, 0x47422390, 0x4101200a, 0x27880af7, 0x200a7b41,
0x41e78702, 0x17830eeb, 0xdb830120, 0x00201787, 0x7346c785, 0x860f8708, 0x870120eb, 0x82002073, 0x20738627, 0x88138602, 0x880f8283, 0x0e6f4327,
0x73876b8c, 0x20069741, 0x0a134701, 0x63862784, 0x37410120, 0x0f8f420f, 0x9f413f83, 0x4537870b, 0xff410f6f, 0x0ef7410b, 0x3b829788, 0xdb870b8b,
0x5b8a0788, 0x4f86138c, 0xa748f784, 0x201f8613, 0x465f8702, 0xeb880a67, 0x7f431386, 0x832f920c, 0x8f022043, 0x480f8abf, 0x6f840beb, 0x3b846b8a,
0x1384678e, 0x8706df41, 0x41012057, 0x0f830673, 0x840f7f41, 0x8a1f8723, 0x0c37414b, 0xab471786, 0x20a38817, 0x050f4ac0, 0x02200f83, 0x43423382,
0x410b8807, 0x0f83066f, 0xaf92038c, 0x0b84ab8b, 0xab8b5b82, 0x2f419f8c, 0x8c478207, 0x0ed34237, 0x8f0ce341, 0x0ec7458b, 0xdf489f88, 0x8753870f,
0x0baf423f, 0x4a0b2741, 0x7b440e2b, 0x8f978b0c, 0x82878f4f, 0x10334a0f, 0x2006d743, 0x8b638702, 0x8283876b, 0x082f4137, 0x440e3b43, 0x2b4408cb,
0x87f78412, 0x879b87d3, 0x416f8b0f, 0xe3420a17, 0x4117820c, 0x8f420bf7, 0x072f4108, 0x480f7741, 0xbb8a0b8f, 0x84074342, 0x84ef823f, 0x42d38ab3,
0x7b840753, 0x0f424382, 0x0b87410c, 0x87074f41, 0x065b4313, 0x13430120, 0x8a4b880a, 0x431f8313, 0x37860c9b, 0x870cb742, 0x8f07a353, 0x8bd38787,
0x920b8b57, 0x417b8c2f, 0x9792070b, 0x3b8a0120, 0x5f450120, 0x06d3410f, 0x8342178c, 0x42538f0f, 0x0f820fe3, 0x86087b42, 0x0b8349c7, 0x8708ff43,
0x424f8f7b, 0xc3870703, 0x0220438a, 0x840a0342, 0x1f07410b, 0x77848b8a, 0xb745cb87, 0x07cb4a07, 0x07824787, 0x03820120, 0xb3410220, 0x42a38f0f,
0x1b870b53, 0x4b8a5b87, 0x8208df42, 0x08a34267, 0x5f411f82, 0x413f830c, 0x438b0fdb, 0x738e1b87, 0x8f0faf4b, 0x08b7420f, 0x1b437b83, 0x42022012,
0x01200a23, 0x7b410b87, 0x0777410b, 0x23877787, 0x84069343, 0x0f2b416f, 0xc38fcb97, 0x820f2b41, 0x8602206b, 0x081b413b, 0x0f833386, 0x410c2f41,
0x1b44079b, 0x0ba3420b, 0x20063b43, 0x0fdb4200, 0x4f90378a, 0x0120c78a, 0x03840b82, 0x678b3f87, 0x238e4387, 0x1f41a384, 0x865b8c06, 0x074f42c3,
0x02205783, 0x0b84d78a, 0x878a0f8b, 0x3b423388, 0x0aab4207, 0xef4b6f84, 0x0c0b4612, 0x0220ef8a, 0x410f4744, 0x01200a7f, 0x07827387, 0x00010033,
0x000a0000, 0x002c001e, 0x74616c01, 0x0008006e, 0x24118204, 0x00ffff00, 0x24078201, 0x67696c01, 0x20138261, 0x820d8500, 0x8307201b, 0x08002315,
0x0b820100, 0x07830020, 0x42a41909, 0x3a001a00, 0x5417a80c, 0x4631c82b, 0xc642f435, 0x7c541648, 0xbc565c56, 0x525d8c57, 0xa667e866, 0x52721e68,
0x14785e73, 0x52983a8b, 0xd4a0b49d, 0x02a4aca3, 0x650036a4, 0x1401cc00, 0x82014c01, 0xe801b601, 0x44021602, 0x9e027202, 0xf602ca02, 0x4e032203,
0xa6037a03, 0xf803d003, 0x48042004, 0x96047004, 0xe204bc04, 0x2c050805, 0x74055005, 0xbc059805, 0x0406e005, 0x4c062806, 0x90066e06, 0xd406b206,
0x1407f406, 0x54073407, 0x92077407, 0xce07b007, 0x0a08ec07, 0x44082808, 0x7c086008, 0xb4089808, 0xea08d008, 0x1e090409, 0x52093809, 0x86096c09,
0xba09a009, 0xee09d409, 0x1e0a060a, 0x4e0a360a, 0x7e0a660a, 0xaa0a940a, 0xd60ac00a, 0x020bec0a, 0x2e0b180b, 0x560b420b, 0x7e0b6a0b, 0xa20b900b,
0xc60bb40b, 0xe80bd80b, 0x060cf80b, 0x220c140c, 0x3a0c2e0c, 0x500c460c, 0x620c5a0c, 0x2d02680c, 0x24002300, 0x29001c00, 0x1a002000, 0x25001800,
0x2a000800, 0x1e200b82, 0x23200984, 0x1e221184, 0x07822c00, 0x25821e20, 0x19820820, 0x2b002522, 0x27202f84, 0x1c203382, 0x20200b82, 0x1e242982,
0x1b002c02, 0x39833782, 0x13842a20, 0x2d842d20, 0x2f822320, 0x1c200f83, 0x27842382, 0x30205d84, 0x43832982, 0x2a002424, 0x75820401, 0x49822920,
0x2e002622, 0x2c221b82, 0x05822700, 0x1e248b83, 0x2b001f00, 0x1d200b82, 0x24201b84, 0x28203784, 0x29208784, 0xcb225982, 0x17821900, 0x83002921,
0x882a2035, 0x841b2037, 0x8225200f, 0x8223200f, 0x841d2023, 0x214b883f, 0xc3820201, 0x63956989, 0x18205583, 0x22209182, 0x2b243f82, 0x16004101,
0x08206588, 0x20210982, 0x20958700, 0x86178a18, 0x5f02216b, 0x18222d8c, 0x7f842300, 0x20001a22, 0x1a202b82, 0x1c200d82, 0x0121d98b, 0x8b2d8c05,
0x822b208d, 0x840820c5, 0x228989df, 0x8a150098, 0x20e78971, 0x205d822e, 0x24ab821b, 0x002a0008, 0x2437821f, 0x012b0029, 0x202b8c3a, 0x20158229,
0x20f9822b, 0x2025842b, 0x24098219, 0x0022001a, 0x2407822e, 0x001b0029, 0x412b8c58, 0x7141057d, 0x0c0d4109, 0x8c300321, 0x153f412b, 0x20001d28,
0x1c002300, 0x2b8c6104, 0xa588af89, 0x82080021, 0x82202083, 0x021c2281, 0x412b8c5e, 0x63411537, 0xa25d2007, 0x226d872b, 0x411400a8, 0x26210cbd,
0x09074100, 0x26001d22, 0x05411b82, 0x60022306, 0x298a1300, 0x2c248195, 0x99012700, 0x2d41278c, 0x12814105, 0x8c310321, 0x11db4127, 0x20072541,
0x85278c62, 0x1221414f, 0x00160123, 0x429f8a12, 0x00211651, 0x8b258ca8, 0x0b034275, 0x1541258f, 0x2133880b, 0x4b825101, 0x1e002522, 0x2606b542,
0x0026001b, 0x4219002c, 0x502310c3, 0x97001100, 0x06b14125, 0x9a530121, 0x06a94123, 0x823a0121, 0x0b994323, 0x4787938b, 0xdf43238d, 0x212d880b,
0x478c1801, 0xa30d2741, 0x061d436b, 0x82290221, 0x002c2447, 0x8220001b, 0x820820f7, 0x001c2607, 0x001a002a, 0x220f8229, 0x842b0027, 0x00252215,
0x206b8afb, 0x1671442a, 0x8f9a1520, 0xe422c187, 0xdb411000, 0x002b220a, 0x200d822c, 0x0c294425, 0x218ca120, 0x8408a341, 0x00262673, 0x001e0025,
0x20218c56, 0x2041822b, 0x2017821c, 0x8621821b, 0x2d0221f5, 0x2a222182, 0x11822300, 0x19822020, 0x2312bf45, 0x0f008501, 0x41868794, 0x8ca00121,
0x097f411f, 0x84002321, 0x9e012183, 0xf1431f8c, 0x201f8709, 0x411f8c17, 0x2c240d9b, 0x52012700, 0x4b421f82, 0x231f8217, 0x0e00fa00, 0x201af145,
0x211d8a57, 0x01410008, 0x213b820b, 0x1d8c9601, 0x18269b89, 0x31000800, 0x1d966304, 0x1d821220, 0x5f040a22, 0x31201d96, 0x18221d82, 0x1d969a01,
0x1d820a20, 0xc1001229, 0x23000d00, 0x47002000, 0x2123054b, 0x47002c00, 0x1d24051b, 0x86033000, 0x20201b82, 0x0822d182, 0x05821d00, 0x19821c20,
0x1c001f24, 0x03822500, 0x05022922, 0x0f431b82, 0x00272209, 0x09754726, 0x8c9f0121, 0x42dd821b, 0x01210907, 0x421b8c84, 0x2583094b, 0x1b8aa920,
0x33822a20, 0x230a1344, 0x0c009701, 0x21085b41, 0x53850008, 0x23821820, 0x34023122, 0x1b221982, 0xa1861b00, 0x19203783, 0x26248d82, 0xbf002200,
0xdb891982, 0xb7821a20, 0x2b002522, 0x5c20bd84, 0x31834d8a, 0x47001821, 0x2d220509, 0x19825900, 0xe9822c20, 0x4f822b20, 0x08201583, 0x20260b82,
0x25001e00, 0x33965b02, 0x64041f22, 0x99419b92, 0x92602005, 0x05954119, 0x19825120, 0x83074b42, 0x08334381, 0x90350221, 0x471a20cf, 0x01210509,
0x284d929b, 0x0008000a, 0x00500112, 0x08e5440b, 0x210ae943, 0x17828703, 0x27002722, 0x1c20dd82, 0x2e242782, 0x26001f00, 0xc0200b84, 0x19411782,
0x217b8809, 0x478a5501, 0x200b4d48, 0x481782e1, 0x01211297, 0x42778e53, 0x012306b7, 0x430a001e, 0x5f410c09, 0x8ae02005, 0x84082015, 0x001d2487,
0x8ce3002b, 0x20418715, 0x201584dc, 0x22f9821c, 0x821a0008, 0x821820b7, 0x012b224f, 0x43158257, 0x2e200d81, 0xbe20f782, 0xcd891582, 0x1c002323,
0x21578200, 0x2b8c5401, 0xb8201587, 0x2c201582, 0x26287582, 0x26002400, 0x20001900, 0x03248783, 0x00090087, 0x84092741, 0x900221ad, 0x23201382,
0x2922a584, 0x27821e00, 0x2a001c24, 0x13824a01, 0x35822420, 0x17822c20, 0x79821820, 0x1c001a24, 0x13825201, 0x260bc941, 0x0127002c, 0x41080056,
0x0826088f, 0x27002c00, 0x11820600, 0x2005654a, 0x244b8229, 0x0022002a, 0x4a1182e2, 0xfa200d55, 0x2a20118a, 0x2d220b82, 0x118efb00, 0xa6011f2a,
0x29000700, 0x1f001a00, 0x2d244582, 0x19031c00, 0x2e260f88, 0x30001800, 0x6982c800, 0x43001b21, 0x012106c7, 0x200d827b, 0x202d8425, 0x20358226,
0x870d82cb, 0x032a2671, 0x0005001a, 0x22c7842b, 0x821b032a, 0x243f830b, 0x031b0029, 0x200b8218, 0x26f18225, 0x03300029, 0x82040088, 0x00262423,
0x82a70324, 0x82252009, 0x821f20b5, 0x0003226f, 0x2227821b, 0x820200a6, 0x82172007, 0x2bf60805, 0xee007600, 0x44011c01, 0x94016c01, 0xde01ba01,
0x24020202, 0x66024602, 0xa6028602, 0xe602c602, 0x24030603, 0x60034203, 0x9a037e03, 0xd203b603, 0x0a04ee03, 0x42042604, 0x7a045e04, 0xb2049604,
0xe604cc04, 0x1a050005, 0x4e053405, 0x82056805, 0xb2059a05, 0xe205ca05, 0x1206fa05, 0x3e062806, 0x6a065406, 0x96068006, 0xc206ac06, 0xee06d806,
0x1a070407, 0x42072e07, 0x6a075607, 0x92077e07, 0xba07a607, 0xe207ce07, 0x0a08f607, 0x32081e08, 0x5a084608, 0x7e086c08, 0xa2089008, 0xc608b408,
0xea08d808, 0x0c09fc08, 0x2c091c09, 0x4c093c09, 0x6c095c09, 0x8a097c09, 0xa4099809, 0xbc09b009, 0xd409c809, 0xec09e009, 0x020af809, 0x160a0c0a,
0x2a0a200a, 0x3e0a340a, 0x520a480a, 0x660a5c0a, 0x7a0a700a, 0x8c0a840a, 0x9c0a940a, 0x0102a40a, 0x18001600, 0x4b442b00, 0x30002b05, 0x2b000800,
0x29001f00, 0x01821c00, 0x28000824, 0x1d822c00, 0x1d862920, 0xdc022a24, 0x0f821300, 0x03822320, 0x1a002522, 0x2a202184, 0x18200782, 0x210fa948,
0x27828a00, 0x25822920, 0x20003122, 0x20201b82, 0x25200982, 0x55835982, 0x210c8744, 0x2782b703, 0x26002624, 0x1d822200, 0x07822120, 0x29002c24,
0x2d822500, 0x0f822320, 0x87822e20, 0x23002022, 0x2a240182, 0x1200db02, 0x0f43779a, 0x7c022306, 0x25821100, 0x97822a20, 0x2d841920, 0x09834583,
0x4d822b20, 0x02211186, 0x22238294, 0x82200029, 0x841d2023, 0x842a20b9, 0x822420c5, 0x821b2005, 0x831a2015, 0x8a032337, 0x75451000, 0x82082006,
0x82272007, 0x20bd891b, 0x220d821b, 0x82ae0129, 0x822c2021, 0x0023212f, 0x25223583, 0x61821e00, 0x2b821a20, 0x2c002324, 0xc1822400, 0x03022a24,
0x57410f00, 0x0c4b410e, 0x82580421, 0x0026221f, 0x203f8229, 0x2205821c, 0x842b0008, 0x08494469, 0x82a90321, 0x22a7911f, 0x8223001a, 0x001a2427,
0x847e0222, 0x002a245f, 0x821c0022, 0x24ef8d3b, 0x02230023, 0x203f84df, 0x20838226, 0x20e7861b, 0x83a3822b, 0x822e2065, 0x02292231, 0x243f8c26,
0x002a0008, 0x2081841f, 0x83d58227, 0x005c22cf, 0x83cf840e, 0x058f4435, 0x67821f20, 0x1d852520, 0x82240321, 0x821c201d, 0x8223208b, 0x821a2053,
0x82252027, 0x00202163, 0x1e24c983, 0x4d011c00, 0xd7851d84, 0x2c002424, 0x25821e00, 0x24001c24, 0x41822700, 0x12033022, 0x18221d82, 0x71822900,
0x03820820, 0xa1822b20, 0x82001e21, 0x26118235, 0x001b001c, 0x4d0d00cc, 0x25850e33, 0x27001c24, 0x1b845004, 0x27203985, 0x26202f82, 0x29203782,
0x2a247582, 0xa9032a00, 0x2c201b82, 0x20224f82, 0x11852500, 0x2b287382, 0x24002000, 0x93021c00, 0x26221b82, 0x17842f00, 0x73860820, 0x22001a22,
0x1b220f82, 0x53840b02, 0x2114d142, 0x1b82db01, 0x67822020, 0x1f002b22, 0x18229982, 0x53823000, 0x9d821a20, 0x04213982, 0x2037840e, 0x20138819,
0x20278229, 0x821b8220, 0x040221c9, 0x53431b84, 0x21fd880b, 0xdf92cd00, 0x37821d20, 0x2b002a24, 0x1b82d303, 0x1c002322, 0x1b20c182, 0x29200582,
0x27206d82, 0x26207982, 0x1c220f82, 0x37847d02, 0x2c11db42, 0x02230023, 0x000c007f, 0x002e0026, 0x42ef8223, 0x0f42058b, 0x3d042106, 0x5f431984,
0x0de34205, 0x19821d20, 0x31001c22, 0xa7413182, 0x001a2a05, 0x0029002c, 0x021c002d, 0x44198202, 0x1f200d11, 0x23249f82, 0x5b001d00, 0x20241982,
0x1a002b00, 0x20206d82, 0x210bb950, 0x33900002, 0x4f821d20, 0x23002324, 0x19825804, 0x820be742, 0x300023e7, 0x67822300, 0x33842520, 0xe5821e20,
0x270e7b42, 0x0b00a601, 0x2f002600, 0x18201982, 0x200c1f46, 0x8d17828d, 0x821a2099, 0x03292299, 0x2017840f, 0x20498425, 0x20398224, 0x24d58222,
0x031e0025, 0x8547848a, 0x057b44fd, 0x82001b21, 0x3e0421ed, 0x0f871782, 0x2a000822, 0x20268d82, 0x1c001a00, 0x17825704, 0x2520ab8b, 0x25284b82,
0x20031c00, 0x2c000a00, 0x2406af42, 0x00240020, 0x22318227, 0x821a031c, 0x84262015, 0x8208206d, 0x067d4685, 0x828c0221, 0x82292015, 0x82262015,
0x00082127, 0x21068741, 0x1582d601, 0x35821c20, 0xa3842320, 0x2f822320, 0x0321f382, 0x22418ad4, 0x4122002a, 0x03210531, 0x20158aa8, 0x20c98219,
0x206d8419, 0x20158ac6, 0x20298228, 0x22438229, 0x84380025, 0x822f2015, 0x822b2055, 0x822a2029, 0x002c24a3, 0x82e1021c, 0x20638315, 0x2053821a,
0x268b8219, 0x00290018, 0x827e021b, 0x82182015, 0x0c314421, 0x82d10121, 0x00202115, 0x1a20e983, 0x2b837f84, 0x56042a22, 0x9d445784, 0x84182009,
0x00372abb, 0x00180009, 0x002b001a, 0x2051821c, 0x222f8220, 0x84020224, 0x0beb4213, 0x0f040c22, 0x20201382, 0x1f207782, 0x31202d82, 0x47820382,
0x82930221, 0x09834313, 0x2b224f83, 0x3b84fc00, 0xbd822920, 0x20091549, 0x4413821d, 0x5a200ff7, 0x1f202784, 0x08207782, 0x2026bf82, 0x25001e00,
0x4f84d403, 0x2205db41, 0x821c001b, 0x021b2265, 0x221382a7, 0x821b001c, 0x8427204f, 0x002a24cb, 0x9003021c, 0x030b229f, 0x2213841c, 0x8222001a,
0x8427204d, 0x021c22d1, 0x22279001, 0x9000020d, 0x000e2213, 0x2013828f, 0x2081822c, 0x203b8208, 0x243b8223, 0x021f002a, 0x22279004, 0x8ade0209,
0x0026219f, 0x20054346, 0x219982ce, 0x0f520018, 0xb201210a, 0x47461182, 0x8236200d, 0x41238311, 0x18210763, 0x43238302, 0x4786050d, 0x84910221,
0x84252023, 0x001826e9, 0x011b0020, 0x2247847d, 0x82230023, 0x001c2695, 0x001c0030, 0x221182b6, 0x82260026, 0x822420e3, 0x002924a5, 0x880f0122,
0x821f2023, 0x00292317, 0x35830225, 0x31841820, 0x8206a742, 0x82072059, 0x2059832d, 0x23e38218, 0x00b2001c, 0x29220f83, 0x31821a00, 0x1c001b24,
0x0f82e101, 0x0d822020, 0x03823020, 0x1c002324, 0x0f822003, 0x20051943, 0x227b8218, 0x843f022b, 0x002b2a2f, 0x002b001f, 0x0219002c, 0x200f822b,
0x20518229, 0x821d8220, 0x0002212f, 0xdd851f86, 0xdd023022, 0xf1440f82, 0x5504230a, 0xcf820600, 0x03822220, 0x1e002524, 0x0d824604, 0x29002c22,
0x29258984, 0x05009302, 0x06414200, 0x82b50321, 0x8218200b, 0x00182465, 0x843c0420, 0x821a200b, 0x0325221b, 0x850b828b, 0x0325226f, 0x220b82a8,
0x82190020, 0x021c2279, 0x201784e0, 0x22238226, 0x82280224, 0x8423200b, 0x031b2261, 0x8317841f, 0x031f24c1, 0x82040089, 0x8225201f, 0x824d20e5,
0x001c2209, 0x2079821c, 0x221384b5, 0x82220026, 0x820420d9, 0x002b24c7, 0x84ce011f, 0x00242413, 0x841e0319, 0x82252009, 0x84ba209f, 0x00232409,
0x820d041b, 0x00182609, 0x04300019, 0x20098210, 0x22518223, 0x8228011e, 0x82182009, 0x012a224d, 0x24598447, 0x01230023, 0x2231863c, 0x84ae012b,
0x8225201d, 0x82952063, 0x24ef8309, 0x00df0025, 0x226d8203, 0x82e20125, 0x219d8207, 0x0784a701, 0xfd011e22, 0x1c240782, 0x92021b00, 0x9f090782,
0x002f0026, 0x019401c9, 0x02ec01c0, 0x02400216, 0x02900268, 0x03e002b8, 0x03300308, 0x037c0356, 0x03c803a2, 0x041404ee, 0x045c0438, 0x04a40480,
0x05ec04c8, 0x05340510, 0x057c0558, 0x05c0059e, 0x060406e2, 0x06460626, 0x06860666, 0x06c606a6, 0x070607e6, 0x07460726, 0x07840766, 0x07c007a2,
0x08fc07de, 0x0838081a, 0x08740856, 0x08b00892, 0x09ec08ce, 0x09240908, 0x095c0940, 0x09940978, 0x09cc09b0, 0x0a040ae8, 0x0a3a0a20, 0x0a6e0a54,
0x0aa20a88, 0x0ad60abc, 0x0b0a0bf0, 0x0b3e0b24, 0x0b720b58, 0x0ba60b8c, 0x0bda0bc0, 0x0c0e0cf4, 0x0c420c28, 0x0c760c5c, 0x0caa0c90, 0x0cde0cc4,
0x0d100df8, 0x0d400d28, 0x0d700d58, 0x0da00d88, 0x0dd00db8, 0x0e000ee8, 0x0e300e18, 0x0e600e48, 0x0e900e78, 0x0ec00ea8, 0x0ff00ed8, 0x0f1c0f06,
0x0f480f32, 0x0f740f5e, 0x0fa00f8a, 0x0fcc0fb6, 0x10f80fe2, 0x1024100e, 0x1050103a, 0x107c1066, 0x10a81092, 0x10d210be, 0x11fa10e6, 0x1122110e,
0x114a1136, 0x1172115e, 0x119a1186, 0x11be11ac, 0x11e211d0, 0x120612f4, 0x122a1218, 0x124e123c, 0x12701260, 0x12901280, 0x12b012a0, 0x12ce12c0,
0x12ea12dc, 0x130613f8, 0x13221314, 0x133e1330, 0x1358134c, 0x13701364, 0x1388137c, 0x13a01394, 0x13b813ac, 0x13d013c4, 0x13e813dc, 0x14fe13f4,
0x14121408, 0x1426141c, 0x143a1430, 0x144c1444, 0x145c1454, 0x036c1464, 0x0015005e, 0x00290018, 0x20054d57, 0x320b8223, 0x0019002b, 0x001b001c,
0x002a0008, 0x0020002c, 0x821a002b, 0x002a2415, 0x82b6021c, 0x8220202b, 0x531a202b, 0x23200af9, 0x3f830b82, 0x27820820, 0x33842620, 0x2600232a,
0x78012b00, 0x1f001400, 0x2d204782, 0x26222f82, 0x19822500, 0x200dd551, 0x20598229, 0x8521821e, 0x20558b29, 0x89378e1a, 0x007a2229, 0x8d1b8e13,
0x001b2753, 0x002e0026, 0x27830125, 0x2786519b, 0x82ff0321, 0x20ad834f, 0x20ed862c, 0x203f841f, 0x20b1821c, 0x22af822a, 0x821c001f, 0x002d24f7,
0x9e770130, 0x82232077, 0x821d2029, 0x9b2783f3, 0x21278677, 0x4f821604, 0x24002624, 0x69822700, 0x2a001c22, 0x08200182, 0x510a7d58, 0x01230815,
0x58120016, 0x57580c1f, 0x0815410b, 0x82e20221, 0x05f34825, 0x47002221, 0xbf82083f, 0xbf842b20, 0x22054d41, 0x8ee80029, 0x001c264b, 0x001a002f,
0x20778223, 0x20038224, 0x2467822b, 0x00250026, 0x85258ec8, 0x821d2057, 0x002a224d, 0x26ad822b, 0x00220026, 0x8242011c, 0x09374125, 0x82064d41,
0x8226204b, 0x821b2049, 0x8218202b, 0x012b220b, 0x8325828d, 0x821c20b1, 0x00082239, 0x089d4d2a, 0x220de958, 0x8c110079, 0x0ffd41e3, 0x27002c24,
0x23826500, 0x58002621, 0x272205c9, 0x5d822c00, 0x65822320, 0xdf822920, 0x0d822820, 0x5b821c20, 0x18012b22, 0x2b41478e, 0x21a1860b, 0x2382c801,
0x1a20b783, 0x0820c582, 0x2b20cd84, 0x2b20b182, 0xc94c4782, 0x83012008, 0x1bb7428f, 0x01218f82, 0x9747828b, 0x216b86d9, 0x23821b04, 0x5d821f20,
0x27002422, 0x1e220582, 0x65842500, 0xbb821e20, 0x2a001822, 0xb5820182, 0x9aa80121, 0x062b4247, 0x86e30121, 0x822a20b3, 0x821b203f, 0x821a20f5,
0x0027214d, 0x2007af41, 0x22578220, 0x9a15011e, 0x224787fb, 0x82100042, 0x0026217b, 0x4105eb42, 0x0321121d, 0x83218290, 0x057351b1, 0x35482520,
0x05214106, 0x26002026, 0x29042500, 0xaf5a2182, 0x0018240d, 0x4220001b, 0x0121093f, 0x22658c43, 0x4227002c, 0x03210f15, 0x4221822a, 0x182105fb,
0x05f94200, 0x29001b22, 0x1d204182, 0x2528d384, 0x97021e00, 0x23000f00, 0x27205582, 0x420ccd42, 0x1a240517, 0x41042200, 0x41831f82, 0x1c002422,
0x2b23fd82, 0x4c000800, 0x02210c2b, 0x431f82e2, 0x2c20130f, 0x1c246f82, 0x8c012900, 0xbd411f82, 0x002c2417, 0x84fd0327, 0x0026217f, 0x22052941,
0x82260024, 0x05735701, 0x95821820, 0xdc002522, 0x05411f82, 0x0883420b, 0x26241d82, 0xac032500, 0x2a209f8e, 0x1b20a182, 0x29454382, 0x17012106,
0x8b413f8e, 0x217f820b, 0x1f820c01, 0xdb822920, 0x4f821b20, 0x1a21dd83, 0x43218300, 0xe6200957, 0x1b83bf86, 0x2312c741, 0x0e001b02, 0x23203182,
0x19494182, 0x82292005, 0x8424207f, 0x002c24b9, 0x921c022a, 0x002f221d, 0x20638424, 0x201d9422, 0x223b822b, 0x821c0024, 0x921d203b, 0x0997413b,
0x1d820020, 0x23091544, 0x002c002a, 0x210a3541, 0x1d822403, 0x11822620, 0x4d821a20, 0x25491c20, 0x00082206, 0x24578219, 0x03230023, 0x203b8cfc,
0x20158224, 0x09275018, 0x8c420121, 0x0e6f441d, 0x84400421, 0x8220201d, 0x0020225b, 0x0f0d421a, 0x84690421, 0x00242277, 0x208f8227, 0x4157822b,
0x2620050d, 0x2a240d82, 0x43011c00, 0x8941598c, 0xab03210e, 0x69423b86, 0x0ac74109, 0x84980221, 0x8220203b, 0x0b754559, 0xdf822320, 0x2b002a26,
0x0d001204, 0x20108541, 0x247f822e, 0x0422001c, 0x201b820b, 0x440b821f, 0x2b210587, 0x0a374700, 0x82670021, 0x8229201b, 0x8231209d, 0x0020221f,
0x221b8629, 0x821e0020, 0x92f020df, 0x821b2053, 0x00302465, 0x84f7002a, 0x05c7471b, 0x210ea14e, 0x1b82b402, 0x200d3143, 0x0687442a, 0x5d001f22,
0xe1833784, 0x49822920, 0x200d1545, 0x47a786d7, 0x754609c3, 0x15042108, 0x69833784, 0x1c203383, 0x20209f82, 0x2b208582, 0x2920b582, 0x50066d50,
0x00230a63, 0x82190008, 0x0019245d, 0x921a0230, 0x822720c3, 0x822c208d, 0x0063233d, 0xe745000c, 0x821a2007, 0x00242209, 0x20358227, 0x20538229,
0x451982d6, 0xd7440d95, 0x22032106, 0x4b411986, 0x0a8b5c05, 0x82c60121, 0x0ba74319, 0x51822520, 0x1a002b26, 0xfd001f00, 0x18211982, 0x20f38b00,
0x06dd461c, 0x1984f020, 0x260d3b43, 0x00230018, 0x8434022b, 0x8225209b, 0x82182027, 0x842b2043, 0x002626d1, 0x01220026, 0x42198243, 0xf34409f7,
0x7a02210a, 0xe7473384, 0x204d830f, 0x839b8e23, 0x002c26e7, 0x011c002a, 0x47cf8c86, 0x02210a35, 0x874d88e5, 0x001b2281, 0x22338220, 0x9211041a,
0x001b26b5, 0x02300018, 0x4919849c, 0xf52013dd, 0x43105141, 0x01210657, 0x2019846b, 0x205b8218, 0x21e58425, 0xe5820029, 0x001c0025, 0x865f0025,
0x204f8519, 0x2417821a, 0x002c0023, 0x20198224, 0x44cf8eda, 0xb3200951, 0x4343b586, 0x822b200d, 0x8cdb20b7, 0x0ac949e9, 0x67830220, 0x420bb941,
0x02210875, 0x46338684, 0x22200539, 0x20287982, 0x1f001e00, 0x35022b00, 0x28109f41, 0x0018001a, 0x021b0029, 0x20338c81, 0x20d78219, 0x2331822a,
0x01270026, 0x18228183, 0xdb822200, 0x1a000822, 0x25242d82, 0x23001b00, 0x2a210d82, 0x49198300, 0x1a2011c9, 0x61202b82, 0x23204d82, 0x27222b82,
0x29822700, 0xa3462920, 0x41d9200a, 0x73450e03, 0x00822209, 0x2071820b, 0x22f3821c, 0x8908002a, 0x36022131, 0x658b1782, 0x21822c20, 0x29001c24,
0x17822202, 0x260daf43, 0x00230018, 0x846a012b, 0x05074917, 0xdb821920, 0xff821820, 0x1f001a24, 0x5f846b01, 0xd9821820, 0x5f822520, 0x2009db43,
0x205f8edd, 0x242f8220, 0x0226001d, 0x228f8c86, 0x822c0028, 0x821c20c9, 0x8460201b, 0x82182017, 0x822b2059, 0x821e2047, 0x002526e5, 0x032b002b,
0x24178227, 0x00260029, 0x24158227, 0x0020002a, 0x24098224, 0x011c0023, 0x225f8e81, 0x82230027, 0x01302233, 0x212f840c, 0xc146001c, 0x2402210e,
0x2a202f8e, 0x26245d82, 0x8d032700, 0x434c1782, 0x82192005, 0x089d513f, 0x8a650221, 0x821a20ef, 0x0024227f, 0x227d8224, 0x8426032b, 0x00262217,
0x240d8222, 0x0008001c, 0x20078219, 0x208f822b, 0x20478634, 0x0ddb631c, 0x8ed80021, 0x24a78377, 0x042a002c, 0x10674133, 0x24002a26, 0x5e022a00,
0x6b442f8e, 0x10012106, 0x1c221782, 0x5d822900, 0x1d002022, 0x1a207382, 0x1c22ad84, 0x2f8e5d02, 0x490b495b, 0x2b200551, 0xe183a582, 0x18001c26,
0x0a008502, 0x200a0d42, 0x24438227, 0x0125002e, 0x261582d5, 0x00230018, 0x822c001a, 0x82182005, 0x82262063, 0x84b82069, 0x09a94415, 0x2b222183,
0x1582de00, 0x26002924, 0x01822a00, 0x20205f83, 0x2a222982, 0x1582a901, 0x220f9d4d, 0x8c83022b, 0x8222206d, 0x002524b5, 0x82b3021e, 0x0b614215,
0x83002021, 0x84e12015, 0x4c63832b, 0x01210a49, 0x21838433, 0x55410029, 0x070b4105, 0x158c3120, 0x0320f186, 0x2425c585, 0x1e002700, 0x20a18300,
0x2257822c, 0x8c87021b, 0x24178383, 0x04220026, 0x25418413, 0x001b0025, 0x7f430030, 0x001c2207, 0x20998466, 0x06734923, 0xaf822a20, 0x25001e23,
0x41f18301, 0x23200949, 0x1c22c584, 0x2b82d803, 0x21097945, 0xa9490024, 0x86a42005, 0x05114615, 0x15821d20, 0x29002c23, 0x43578502, 0x4f41053b,
0x001e2405, 0x86f4001c, 0x09e14699, 0x27002c24, 0x578cfe03, 0x18002922, 0x03236f83, 0x8209008e, 0x05ff5309, 0x2a241383, 0x5a021f00, 0x8d831382,
0x200bab4a, 0x4213825e, 0x082105fb, 0x20bf8700, 0x203b86e5, 0x42e9822b, 0x0121067d, 0x891382dd, 0x822720d3, 0x001c2263, 0x20138cfc, 0x206f8419,
0x204f8485, 0x0b4f5425, 0x82600221, 0x0d394413, 0xd9032722, 0xb74a8b84, 0x002a2607, 0x0025002c, 0x21138264, 0xf5850026, 0x26001d28, 0x22002900,
0x1384d801, 0x30002722, 0x20210d82, 0x053d4500, 0x9782a020, 0x1f224f8b, 0x11822103, 0x41821820, 0x83822520, 0x9b821920, 0x8c032a22, 0x29201184,
0x8d560582, 0x03292205, 0x260b8223, 0x001a0026, 0x822b0022, 0x00202425, 0x82740123, 0x00182111, 0x210a3f47, 0x11849602, 0x83002721, 0x2217838f,
0x8200012a, 0x0b7b4211, 0x8f032a22, 0x2a205988, 0x1b246982, 0x32011c00, 0x20082f43, 0x2409822b, 0x0027002c, 0x4f3586e6, 0x03210833, 0x21118227,
0x95440029, 0x23738305, 0x006b042b, 0x2205ff53, 0x822d0018, 0x8225208f, 0x200f85b1, 0x240d8208, 0x012b0023, 0x4c1f828a, 0x02210a7b, 0x220f8248,
0x842b002c, 0x002924af, 0x84350130, 0x08155b1f, 0x84f20021, 0x0024260f, 0x001c0024, 0x223f8225, 0x4e06005e, 0x62200aab, 0x23200d82, 0x2d207f82,
0x29221d82, 0x0d82df00, 0x25821820, 0x0d821a20, 0x3f042322, 0x1f200d82, 0x1c200982, 0x1c22f782, 0x1b84b800, 0x29244583, 0x42041800, 0x29210d82,
0x24778300, 0x031f001a, 0x200d8225, 0x20458226, 0x22598222, 0x8414041c, 0x00292129, 0x2b22d783, 0x4584e302, 0x0d822c20, 0x01212982, 0x22298448,
0x831d001d, 0xe4022357, 0x35820500, 0x71822020, 0xad032a22, 0x0f440b82, 0xb3012106, 0x1f200b82, 0x23244b82, 0xe7021b00, 0x2e201786, 0x9d202582,
0xad830b82, 0x1c002a24, 0x3b84b502, 0x1a002c26, 0xb6011f00, 0x2c220b82, 0x53821900, 0x20012a22, 0x18203b84, 0x25223d82, 0x0b848002, 0x2a22bf83,
0x3b860a02, 0x25822520, 0x0b86a420, 0x22001a24, 0x23869c00, 0x03210b82, 0x223b88d7, 0x86210129, 0x002c2623, 0x00ff001b, 0x24a78204, 0x012a001e,
0x840982b5, 0x69012169, 0xaf830982, 0x24012722, 0x27241d84, 0xe6023000, 0x2e221386, 0x0982aa03, 0x2b002026, 0x66013000, 0x1b241d84, 0xdb011c00,
0x18200982, 0x1c247182, 0x03009101, 0x3022cd82, 0x0782d603, 0x25821820, 0x0782a220, 0x1e002624, 0x0f84b801, 0x23012922, 0x2c240782, 0xb9012b00,
0x7e080f84, 0x003c0019, 0x00bc007a, 0x010a01e4, 0x01540130, 0x01960176, 0x01d401b6, 0x020c02f0, 0x02440228, 0x0278025e, 0x02aa0292, 0x02da02c2,
0x030803f2, 0x0334031e, 0x035c0348, 0x03840370, 0x03ac0398, 0x03d403c0, 0x04f803e6, 0x041c040a, 0x0440042e, 0x04640452, 0x04880476, 0x04a80498,
0x04c804b8, 0x04e804d8, 0x050405f6, 0x05200512, 0x053a052e, 0x05500546, 0x0564055a, 0x0276056e, 0x6a20007a, 0x18201271, 0x1b20bd82, 0x4c14cb6a,
0x1a220507, 0x21821c00, 0x05822b20, 0x8c002924, 0x43821300, 0x1e001828, 0x18002900, 0x35822400, 0x2005fd42, 0x831d821b, 0x002a2227, 0x2461822a,
0x00280329, 0x20278212, 0x2003821e, 0x2027822b, 0x83278223, 0x001a2407, 0x8626001f, 0x0027243b, 0x8491031f, 0x20478325, 0x66838626, 0x0023124f,
0x8e11008d, 0x002a2473, 0x821a002c, 0x821c2001, 0x226f856d, 0x4f10002a, 0x71820db3, 0x8209af4b, 0x04032395, 0x458e0f00, 0x2624b983, 0x1c002100,
0x2b224982, 0x1f823802, 0x21822920, 0xe7842d20, 0x3f822a20, 0x0d822320, 0x2a26fb85, 0xde031c00, 0x61820e00, 0xf3822c20, 0x2b002a22, 0x22201984,
0x2309e747, 0x0d009c02, 0x2324d982, 0x30002300, 0x1d201582, 0x20062f47, 0x224b8219, 0x827f031b, 0x8229201b, 0x8227201d, 0x05b14615, 0x21080f49,
0x1b821804, 0x27205383, 0x2b20c982, 0x29202d82, 0x20203d84, 0x1c226982, 0x37842c03, 0x08201d83, 0x1c201d86, 0x27264182, 0x25001800, 0xf74aae03,
0x82242008, 0x05fd590f, 0x35822220, 0x8b001822, 0x20201982, 0xa1411382, 0x82252009, 0x002f2457, 0x8292032b, 0x82292019, 0x822e2019, 0x84272063,
0x003022ad, 0x2407821e, 0x00f00225, 0x2107820b, 0x49460026, 0x06934305, 0x021b0023, 0x20178267, 0x207b821c, 0x085d5f22, 0x23001822, 0x1c204982,
0x23201784, 0xa9525782, 0x0400210c, 0x7f554784, 0x066b4609, 0x00ed0227, 0x0020000a, 0x612f821a, 0x01210a1d, 0x201582a9, 0x0f736c26, 0x82910321,
0x00202215, 0x05954129, 0x26283582, 0x2a002500, 0x09009c03, 0x2a23b982, 0x4e001f00, 0x022108d9, 0x871382ea, 0x07534755, 0x1382f120, 0xcb822620,
0x2622c983, 0x45822700, 0x68002522, 0x3d521384, 0x82202007, 0x022522f3, 0x263b8ce9, 0x002d0020, 0x8499021c, 0x83182013, 0x2041821f, 0x223b822a,
0x8455022a, 0x822e203b, 0x00082283, 0x24158223, 0x021e0025, 0x4113849b, 0x8f8307eb, 0x17042f25, 0x41000800, 0x04210cc7, 0x22118201, 0x8224001c,
0x821a2033, 0x001824cd, 0x842e022b, 0x00182211, 0x264d821d, 0x002a001c, 0x82ee022a, 0x09174111, 0x26002e24, 0x11828802, 0x35822c20, 0xe7821920,
0x71821c20, 0xeb022322, 0x2620238a, 0x02213983, 0x26118aec, 0x0020002a, 0x82a6002f, 0x00262111, 0xa383a583, 0x1b001824, 0x1182bb01, 0x2b001824,
0x47821800, 0x6b821820, 0xda031c22, 0x1b28358a, 0x09000b00, 0x0700db03, 0x24089541, 0x040f001b, 0x830f8443, 0x213184f7, 0x0f84e701, 0x21089d43,
0x0f826702, 0x210a0d42, 0x0f82df03, 0x91822c20, 0x1c001e22, 0x2522e582, 0x0f82c900, 0x230ae742, 0x0600dd03, 0x1e20f984, 0xc3201d84, 0x1c220d82,
0x2b821b00, 0x2b002524, 0x0d82b602, 0x1820cd83, 0x1c22a382, 0x0d82ef02, 0x2d002022, 0x1f838d82, 0x1b840420, 0x23002322, 0x2924bd82, 0x05002903,
0x31261782, 0x30003100, 0x0b829b02, 0x17822620, 0x0b822320, 0x04002e22, 0x18244b82, 0xb7021d00, 0x26200982, 0x1c223d82, 0x09822b03, 0x2c002926,
0xe8022400, 0x20280982, 0x1c001a00, 0x03009a02, 0x1822a382, 0x9545dc03, 0x2e002705, 0x90005e00, 0x7f45ba00, 0x78280808, 0xc0019c01, 0xfe01e001,
0x3a021c02, 0x72025602, 0xaa028e02, 0xde02c402, 0x1003f802, 0x3e032803, 0x6a035403, 0x96038003, 0x32127b45, 0x045c044e, 0x0476046a, 0x048c0482,
0x049e0496, 0x826202a6, 0x002f21b3, 0x2005c943, 0x220b8225, 0x82080023, 0x002024af, 0x82220025, 0x0d715609, 0x19821820, 0xee002b24, 0xf7561400,
0x82082014, 0x82292045, 0x821820f9, 0x821e203b, 0x011c2229, 0xa2298488, 0xaf03235b, 0x35821200, 0x1c002d22, 0x26223782, 0x07822700, 0x85000821,
0x00252107, 0x1c205783, 0x2b227182, 0x2582e800, 0x21137157, 0xf94e0008, 0x0061220b, 0x202d8411, 0x0a59641c, 0x97822320, 0xc384d185, 0x82d90121,
0x84302023, 0x821b2065, 0x82262025, 0x82272071, 0x8229200d, 0x001c226b, 0x240d8224, 0x0130002b, 0x2023827f, 0x208f8223, 0x200f8220, 0x203f822a,
0x451d822a, 0x2b20056b, 0x1a210d82, 0x21498200, 0x6b845902, 0x0b822720, 0x54002521, 0x2920055d, 0x2e204f84, 0x26068f58, 0x012b0023, 0x900f00ad,
0x0a5741db, 0x00bb0323, 0x831f8e0e, 0x00192269, 0x227b822c, 0x823f0322, 0x8218201d, 0x002b2253, 0x207f821f, 0x0c497218, 0x30022a22, 0x30201d82,
0x0820b982, 0x26222b82, 0xa1842e00, 0x7b822020, 0x26002028, 0x33022500, 0x598e0d00, 0x82085541, 0x820d2057, 0x002921b5, 0x01215792, 0x42378204,
0x8e201713, 0x83082353, 0x0026228f, 0x207d821a, 0x24658218, 0x03180020, 0x0829513e, 0x1d20ab85, 0x2020b782, 0x18222182, 0x198c1d04, 0xdb821c20,
0xdf412920, 0x63022105, 0x2f201982, 0x1f202382, 0x25228d82, 0xcb841e00, 0x2107a341, 0xa341000b, 0x00022213, 0x137f420b, 0x00400323, 0x26d18c0a,
0x0020002a, 0x862c0218, 0x00082215, 0x220f8223, 0x822b002a, 0x01252261, 0x831582d9, 0x0cfd415b, 0x827f0121, 0x10f14115, 0x927e0121, 0x021f2215,
0x2115827b, 0xf941002f, 0x0023260b, 0x008e012b, 0x21db8609, 0x4b460008, 0xed002106, 0xc7851382, 0x21084547, 0xad4b2e02, 0x821b2008, 0x0018248f,
0x8219041d, 0x002b2211, 0x220d821f, 0x82250029, 0x002b2205, 0x20118269, 0x20098223, 0x24d5822d, 0x0026002b, 0x20898229, 0x20c58208, 0x20c78223,
0x225d8427, 0x8241012a, 0x0c3d4123, 0x82390121, 0x00252111, 0x230b4943, 0x000600e5, 0x1420a989, 0x28200d82, 0x1826a382, 0x2a002300, 0x0d826f01,
0x5f822920, 0x67822a20, 0x3f032924, 0x41410500, 0x82d52008, 0x8221200b, 0x841a2015, 0x820420d5, 0x82292031, 0x00ca2483, 0x821b0004, 0x20e9837f,
0x23138403, 0x000300ec, 0x0421dd82, 0x08078244, 0x1e001efd, 0xf4007900, 0x52012401, 0xac018001, 0x0002d601, 0x52022a02, 0x9e027a02, 0xe602c202,
0x2e030a03, 0x76035203, 0xba039803, 0xfe03dc03, 0x3e041e04, 0x7e045e04, 0xbe049e04, 0xfe04de04, 0x3e051e05, 0x7a055c05, 0xb6059805, 0xf205d405,
0x2e061006, 0x66064a06, 0x9e068206, 0xd606ba06, 0x0e07f206, 0x44072a07, 0x78075e07, 0xac079207, 0xe007c607, 0x1408fa07, 0x48082e08, 0x7a086208,
0xaa089208, 0xda08c208, 0x0a09f208, 0x3a092209, 0x6a095209, 0x9a098209, 0xc809b209, 0xf409de09, 0x200a0a0a, 0x4c0a360a, 0x780a620a, 0xa40a8e0a,
0xd00aba0a, 0xf80ae40a, 0x200b0c0b, 0x480b340b, 0x6e0b5c0b, 0x920b800b, 0xb60ba40b, 0xda0bc80b, 0xfa0bea0b, 0x180c0a0c, 0x340c260c, 0x500c420c,
0x680c5c0c, 0x7c0c720c, 0x900c860c, 0xa40c9a0c, 0xb80cae0c, 0xca0cc20c, 0x17004c03, 0x48001800, 0x1e25052d, 0x20002900, 0x05b54400, 0x07822620,
0x2c001e24, 0x49451c00, 0x24198308, 0x0048032b, 0x442f9216, 0x21840513, 0x2b202f82, 0x18203582, 0x2a224b82, 0x2d823102, 0x2b204983, 0x18221582,
0x17822e00, 0x26002a24, 0xf5432400, 0x821e2008, 0x00082c0d, 0x002c001d, 0x03230023, 0x9215004d, 0x822b205b, 0x00252123, 0x2e2a8b87, 0x25002000,
0xb2032200, 0x09821400, 0x45002321, 0x454505a1, 0x0d6f590c, 0x82450321, 0x20e19129, 0x20a38419, 0x202b8224, 0x2497842a, 0x032b0018, 0x20298a59,
0x225d8222, 0x822a002a, 0x8271861f, 0x841f2009, 0x82292033, 0x00332229, 0x201f8213, 0x83c78423, 0x822d208f, 0x412020a3, 0x23580645, 0x6a00210a,
0xa5952786, 0x22092555, 0x84110031, 0x132741e5, 0x23001d28, 0x1e001800, 0x23823b04, 0x29002022, 0x13857384, 0x22054741, 0x822c001a, 0x822d2015,
0x031b2217, 0x8723825c, 0x243583eb, 0x001e002c, 0x0ec1411f, 0x238a6420, 0x75822920, 0x49053544, 0x1c2205b1, 0x47823000, 0x75012a22, 0x1c246b8a,
0x2b002f00, 0x8341ed82, 0x00202205, 0x05e9432a, 0x84340321, 0x05034123, 0x97842720, 0x21100773, 0xb3969502, 0x4f822a20, 0x27002422, 0x1c24d982,
0x10004603, 0x4112f541, 0x0023086b, 0x829e022a, 0x83202021, 0x0fdd592b, 0x18200f82, 0x2b221782, 0x43944703, 0x210a9542, 0x21944b03, 0x230a5b42,
0x0f003c03, 0x1d208788, 0x20060947, 0x47618225, 0x022106cb, 0x221f8ac5, 0x4124002a, 0x1f4208ff, 0x49032106, 0x49431f8a, 0x002a2209, 0x2455822b,
0x032a0029, 0x201f822d, 0x450b821c, 0x08240729, 0x26002700, 0x2208bb71, 0x822f031b, 0x5ae5871f, 0x1b200b89, 0x2105454e, 0x5f8a5b03, 0x420bdb41,
0x032106c9, 0x437f944a, 0x0321088b, 0x86bf9673, 0xbf01213f, 0x99837f8a, 0x1c002e24, 0xa3892900, 0x965d0321, 0x842e207f, 0x032224c3, 0x410e0063,
0x2420083f, 0x1f253b82, 0x19000800, 0x24a98300, 0x03220025, 0x411d8a44, 0x7b86091d, 0x8a580321, 0x0979431d, 0x4e201d87, 0x77873b94, 0x1d984320,
0x1c001b24, 0x1d823503, 0x3b422020, 0x002a2606, 0x001e0020, 0x22a58225, 0x822c002b, 0x011c22db, 0x201d8a3f, 0x0f755e1a, 0x82640121, 0x20bf831d,
0x28c9821e, 0x001f001a, 0x001a001c, 0x20058222, 0x24038229, 0x007b031b, 0x20ef880d, 0x204f842a, 0x26538227, 0x002a0020, 0x8289021c, 0x0026221b,
0x13eb6c26, 0x82b20321, 0x822c201b, 0x82252085, 0x44232045, 0x70200eab, 0x1822538c, 0x4d451b00, 0x36032109, 0x1f421b82, 0x002c2413, 0x8a9e0227,
0x822e201b, 0x822d2095, 0x821d205b, 0x0029247f, 0x8a2e0324, 0x441a201b, 0x29200665, 0x2b22b984, 0x6f84cd00, 0xa7822a20, 0x19000822, 0x22211384,
0x243f8300, 0x031b0029, 0x5d378a2f, 0x01230e73, 0x420c00c1, 0xf56a08ff, 0xd300210c, 0x18211982, 0x85518500, 0x214f8681, 0x338a9d02, 0x210cb15f,
0x33846f03, 0xb3821a20, 0x39820820, 0x1a26f585, 0x30002900, 0x1982b003, 0x23002624, 0x1b821b00, 0x840cc75e, 0x79262067, 0x002309a5, 0x821d0008,
0x217782bf, 0x095a3102, 0x82012008, 0x0b734611, 0x1984d420, 0xe1872920, 0x2f823382, 0x27225982, 0x818a4103, 0x20059d42, 0x243b8224, 0x031c001a,
0x20198a3b, 0x2089821d, 0x20a1822c, 0x2033821f, 0x20678a1b, 0x21678d08, 0xe98a3203, 0x230c1d46, 0x0b003103, 0x2c083741, 0x00240020, 0x00260027,
0x012b0029, 0x20178ac1, 0x20218231, 0x20198227, 0x2019821c, 0x2017826b, 0x6c238423, 0x03210cc1, 0x222f8439, 0x821e0025, 0x82292089, 0x8229202b,
0x00252433, 0x8a30032b, 0x001c2247, 0x215f872f, 0x1784e103, 0x20059541, 0x20ad8229, 0x24c58220, 0x011b001c, 0x2217844c, 0x471f001e, 0x21200847,
0x2b225182, 0x17824504, 0x200b7741, 0x248b822b, 0x031c001c, 0x4417822d, 0x18220dc3, 0x77822300, 0x778a3620, 0x75822c20, 0x1820b383, 0x26205f82,
0xcf83bf86, 0x08003024, 0xa7821b00, 0x22002a24, 0x1782cf01, 0x73822c20, 0x26001922, 0x796c3f82, 0xf9002108, 0x2620778e, 0x1c244b82, 0xb1032500,
0x2720178e, 0x23058941, 0x0a00c201, 0x22084f41, 0x842c0018, 0x0326225f, 0x4715825a, 0x6c201105, 0xfb831582, 0x1a002522, 0x0b448982, 0x3c032106,
0x26211584, 0x05755000, 0x01216f86, 0x45418a5f, 0x032108eb, 0x2a158a18, 0x00250018, 0x0029001e, 0x8ac30130, 0x822d2083, 0x001b268d, 0x0326001c,
0x202b8a29, 0x07534f1b, 0x8ac00121, 0x0020242b, 0x82180024, 0x011c2243, 0x22158abe, 0x822f001c, 0x001c249f, 0x8a950123, 0x82232015, 0x82252041,
0x032a2257, 0x20578a80, 0x2015822b, 0x22158229, 0x8a60011b, 0x08bb4615, 0x00380323, 0x21218209, 0x65440023, 0x82292005, 0x0127220b, 0x221386bd,
0x8208001c, 0x822620f3, 0x821b20c1, 0x83278569, 0x822b2013, 0x002f244f, 0x8242032b, 0x0e354927, 0x849f0221, 0x0029213b, 0x20054742, 0x224f8218,
0x8a57031b, 0x06b94527, 0x8ac40121, 0x001a2863, 0x001b0026, 0x82bc011c, 0x4520206f, 0x27200687, 0x1d221182, 0x11820204, 0x20075d45, 0x2253822c,
0x82890218, 0x0c354511, 0x82610121, 0x20858711, 0x20998224, 0x20ab821f, 0x0af14108, 0x2b002324, 0x59843b04, 0x42051749, 0xe020058d, 0x1a206b8a,
0x2d245982, 0x0700f202, 0x18213d82, 0x077b4700, 0x0f82d220, 0x210a3d44, 0x0f823b03, 0x43002321, 0x002308db, 0x820600f8, 0x822320b7, 0x001c24a7,
0x821c0129, 0x8220200d, 0x822b20bb, 0x01292243, 0x230d82a2, 0x0024001c, 0x1c226b83, 0x0d82cf01, 0x2009c942, 0x200d8233, 0x20478218, 0x2429821a,
0x0022012b, 0x20358205, 0x22818218, 0x82600122, 0x4729200b, 0x022405c9, 0x000400f3, 0x1e220b83, 0x09829401, 0x23822020, 0x3a031c22, 0x2a240984,
0x0d011f00, 0x1c200982, 0x1b223f82, 0x13849800, 0x24002324, 0x09863703, 0xac002322, 0x23200982, 0x1e227b82, 0x0982b900, 0x25002622, 0xeb20d382,
0x29261d84, 0xb1011c00, 0x1b820300, 0x59042f22, 0x76080784, 0x00380025, 0x009a0072, 0x01e600c0, 0x012e010a, 0x01740152, 0x01b60196, 0x02f401d6,
0x022e0212, 0x0266024a, 0x029e0282, 0x02d202b8, 0x030603ec, 0x033a0320, 0x036a0352, 0x03980382, 0x03c403ae, 0x04f003da, 0x041a0406, 0x0442042e,
0x04680456, 0x048a047a, 0x04aa049a, 0x04c804ba, 0x04e004d4, 0x05f804ec, 0x05100504, 0x0524051a, 0x0538052e, 0x04480540, 0x8213001f, 0x002022db,
0x088b5127, 0x50001c21, 0x0323127d, 0x4c12004c, 0x0221216d, 0x442584f6, 0x1c200571, 0x08202f82, 0x1f20ed82, 0x2520e182, 0x1c245d82, 0x2c002800,
0x23240b82, 0x11004803, 0x894c4b88, 0x3d032116, 0x23202382, 0xd34b2d82, 0x82242005, 0x4a292009, 0x202006d5, 0x2008454a, 0x2023829f, 0x4f538218,
0xa34a05c9, 0x2a21820a, 0x0020001f, 0x031f001e, 0x8210009e, 0x822c203b, 0x5f1c200b, 0x0d820d0d, 0x1c002426, 0x4d031b00, 0x474d2182, 0x07b14815,
0x0f004522, 0x874caf88, 0x864f2013, 0x8427201f, 0x84262077, 0x4731202b, 0x182806b9, 0x3f032300, 0x23000e00, 0x19200f82, 0x08206f82, 0x77838d82,
0x1a207183, 0x2a220b82, 0x1d82af01, 0x09822920, 0x2c001b22, 0x82099967, 0x241d8349, 0x001c0427, 0x0693420d, 0x13822a20, 0x83002e21, 0x002a28d7,
0x001c0022, 0x848e0030, 0x0026211b, 0x1f515785, 0x8250200d, 0x8363831b, 0x0f495293, 0x1b828a20, 0x55822620, 0x51821d20, 0x73821920, 0x20057144,
0x2253822b, 0x8c92001c, 0x0c77416f, 0x003e0323, 0x51c78c0c, 0x03210873, 0x4119829e, 0x15201589, 0x29201982, 0x18205982, 0x2108b146, 0x1142002b,
0x826d2005, 0x822c2019, 0x8229207d, 0x00252203, 0x09e34520, 0x8c1d0421, 0x0ac15167, 0x841b0421, 0x00182119, 0x20051542, 0x2049821a, 0x265b821c,
0x032a0029, 0x420b0047, 0x03211353, 0x4c178a46, 0x03210aa3, 0x4c178a4b, 0x40220b55, 0xe38c0a00, 0x99822a20, 0x49031822, 0x29201582, 0x2008af61,
0x22b5842b, 0x82f9012a, 0x001c2215, 0x05754425, 0x1c203582, 0x03219783, 0x4115829d, 0x8742090b, 0x1e042106, 0x67434186, 0x4a03210c, 0xf94b578a,
0x009c2209, 0x0ab34209, 0xe1822420, 0x4e031b22, 0x81871382, 0x21069742, 0x13828a02, 0x210ec741, 0x278a4403, 0x39821920, 0x24001826, 0x08004303,
0x20081b41, 0x22a78218, 0x82f4022b, 0x82182011, 0x00082ead, 0x002c0027, 0x03270024, 0x000700b3, 0x200d8426, 0x227b8229, 0x82f50224, 0x077f430f,
0x0321d782, 0x220f8241, 0x82200029, 0x0018262b, 0x011c001a, 0x820f8262, 0x2061825b, 0x262f8227, 0x0020041b, 0x822c0006, 0x822b201f, 0x0129240d,
0x41050019, 0x04210745, 0x280b821a, 0x001d0020, 0x032a002b, 0x410b829c, 0xff20071b, 0x1c200b82, 0x00232d83, 0x843b012a, 0x822d2017, 0x0323224d,
0x200b82e2, 0x268b821f, 0x032b002a, 0x8404004f, 0x032722b9, 0x22098642, 0x82a20025, 0x20378509, 0x850982e9, 0x006e2259, 0x227d8203, 0x828f0125,
0x00192407, 0x82680227, 0x821c2007, 0x716208ab, 0x3801e400, 0x96016801, 0xf001c401, 0x46021c02, 0x9a027002, 0xea02c202, 0x38031203, 0x84035e03,
0xce03aa03, 0x1204f003, 0x52043204, 0x92047204, 0xd204b204, 0x1205f204, 0x52053205, 0x90057205, 0xcc05ae05, 0x0806ea05, 0x42062606, 0x7a065e06,
0xb2069606, 0xea06ce06, 0x22070607, 0x5a073e07, 0x1d527607, 0x60790810, 0x90087808, 0xc008a808, 0xf008d808, 0x20090809, 0x50093809, 0x7c096609,
0xa8099209, 0xd409be09, 0x000aea09, 0x2c0a160a, 0x560a420a, 0x7e0a6a0a, 0xa60a920a, 0xce0aba0a, 0xf40ae20a, 0x180b060b, 0x3c0b2a0b, 0x5e0b4e0b,
0x7e0b6e0b, 0x9e0b8e0b, 0xbe0bae0b, 0xda0bcc0b, 0xf60be80b, 0x0e0c020c, 0x260c1a0c, 0x3e0c320c, 0x540c4a0c, 0x2d025e0c, 0x18002900, 0x1b002500,
0x05896e00, 0x42ff4718, 0x005a0424, 0x63410017, 0x002b2605, 0x00240008, 0x225b822c, 0x821a0020, 0x441a200b, 0x182008bf, 0x192a0d82, 0x23002600,
0x3c002b00, 0x83881600, 0x09821f20, 0x45002221, 0x9154116d, 0x8a2d2009, 0x8208202d, 0xcb42182d, 0x3f00231c, 0x8b841500, 0x6f821b20, 0x20002a24,
0x5b841b00, 0x79821a20, 0x2d512c20, 0x05a94208, 0x40041f22, 0x26202b82, 0x7f83ad84, 0x1f001a22, 0x24222f82, 0x31822500, 0x8b503020, 0x00342210,
0x20438414, 0x8d4f862a, 0x0563432b, 0x21821b20, 0x39002e22, 0x18202982, 0x81834582, 0xf1841f20, 0x57821b20, 0x4d058151, 0x02210c19, 0x21299abb,
0xff59001b, 0xba02230a, 0xf9821300, 0xcd822520, 0xa5820820, 0x23002622, 0x20200982, 0x1e206382, 0x200e614e, 0x992782e9, 0x053d5bd1, 0x22001a24,
0x4f883c00, 0x4f822a20, 0x41001821, 0x18200581, 0x2b205782, 0x7b415182, 0x00bb2209, 0x20779812, 0x2619822e, 0x001c002b, 0x8a470429, 0x82242025,
0x821b20eb, 0x0539529d, 0xf9861d20, 0x00212582, 0x99258242, 0x002c229b, 0x214b832a, 0x719ab902, 0x23089145, 0x11005103, 0x18202d82, 0x27266782,
0x26001f00, 0x0d822500, 0xb1472a20, 0x1101230d, 0xbb881000, 0x21098b51, 0x6f680008, 0x8aba2009, 0x0fa94121, 0x1b268f83, 0x0f00a002, 0x99822600,
0x7d5f2720, 0x002a250a, 0x00240030, 0x2005cb42, 0x201f823e, 0x4265821c, 0x0221166d, 0x203f840d, 0x2073822c, 0x0a97471e, 0x2108c959, 0x1f940c02,
0x2b002a22, 0x29245382, 0x2e022b00, 0x18201f82, 0x5f833d82, 0x1d002622, 0x200aa554, 0x22f38220, 0x9441001e, 0x822d207f, 0x002922ad, 0x20b7822c,
0x223f843d, 0x821b0025, 0x0b69430b, 0x5f822320, 0x1f002a24, 0x1f846804, 0x57822b20, 0xe7821a20, 0xd5842e20, 0x39433020, 0x14012109, 0x08213f88,
0x0b434100, 0x2205e942, 0x96120125, 0x0023221f, 0x22ad821c, 0x94bd022b, 0x8418207f, 0x232382bb, 0x0e001002, 0x2008a341, 0x22098219, 0x8222001a,
0x001d227d, 0x22af8220, 0x820f022b, 0x0026211d, 0x830f3d41, 0x822320c7, 0x886f205d, 0x822a203b, 0x001a2133, 0x2720d383, 0x1941a582, 0x82402005,
0x1199411d, 0xf7842420, 0x51032222, 0x3f421d88, 0x8218200d, 0x032b2245, 0x20778454, 0x2055822b, 0x207d822b, 0x24078219, 0x001c0027, 0x26938229,
0x01250026, 0x420d0013, 0x2c241457, 0xbc022700, 0x93831b88, 0x210c5342, 0x1b881202, 0x49820820, 0xe3841a20, 0x26002a22, 0x82205784, 0x1b431b82,
0x49042116, 0x2a201b84, 0x2b20d984, 0x23207982, 0x2c208f82, 0x21052d43, 0x6f8cc503, 0x29002722, 0x30201f82, 0x25245982, 0x0e021e00, 0x3d413784,
0x001c260f, 0x001b0025, 0x20378c3b, 0x20e58419, 0x20fb8219, 0x2057821c, 0x20a78c3a, 0x22518227, 0x85220029, 0x9301201b, 0x822e208b, 0x001b246f,
0x8c84001c, 0x0ce944c3, 0x82480421, 0x001c231b, 0x15830023, 0x22056144, 0x821d0018, 0x002b2433, 0x8cbd0230, 0x821f208b, 0x84232015, 0x22c383eb,
0x440c00b8, 0x0421157f, 0x46198221, 0x19200973, 0x2620f982, 0xdd83a582, 0x19824320, 0x42094b41, 0x2b260515, 0x27002600, 0x198ce903, 0x59821b20,
0x03822420, 0x1c001e22, 0x0c20d782, 0x2010e743, 0x22af8218, 0x82ea032b, 0x00292633, 0x002d0030, 0x20e78225, 0x09774a18, 0x8a150221, 0x091b439b,
0x29001c26, 0x0b008300, 0x530c2b46, 0x2222058f, 0x17860c02, 0x44002921, 0x0a220b0d, 0x17940f02, 0xa3000b22, 0x24221784, 0x75821c00, 0x33822320,
0xad820820, 0x2b002324, 0x17821302, 0x46001821, 0x2320050d, 0x31209582, 0x29241782, 0xec011b00, 0x6d06bf51, 0x272205c1, 0xc1822c00, 0x1c002a24,
0x5f940e02, 0x21040c22, 0x1d462f8c, 0x22042108, 0x95612f84, 0x24d38309, 0x03300029, 0x084f5253, 0x09854118, 0x02211b82, 0x212f848b, 0x674c001a,
0x00082205, 0x82798227, 0xf702230d, 0xbb820a00, 0x1a222b83, 0x15822600, 0x0d822b20, 0xad002922, 0xbb451584, 0x1602210e, 0x83082f6a, 0x821c203f,
0x821a20d1, 0x8c1120b9, 0x82182015, 0x001c2443, 0x883b0029, 0x002a2c15, 0x002e0008, 0x002a0018, 0x84e5031f, 0x842b2015, 0x00202111, 0x21061341,
0x15886704, 0x210ae144, 0x41881402, 0x3b820820, 0x9d822720, 0x0021af82, 0x42158270, 0x2c200939, 0x21056343, 0x15842304, 0x0d842920, 0x1f000822,
0x1824c382, 0x0e011b00, 0x29224184, 0x6f821b00, 0x93821b20, 0x2d002022, 0x1022af82, 0xaf420900, 0x85292008, 0x90022155, 0x1b20138a, 0x2b241382,
0x0f022a00, 0xd9441382, 0x3202210e, 0x93472788, 0xec012108, 0x1c201382, 0x29245182, 0x19002b00, 0x2b227984, 0x2788e103, 0x1d000824, 0x97822000,
0xb9822b20, 0x795b0920, 0x842c2008, 0x042922a9, 0x20278446, 0x20378224, 0x209f822c, 0x223d821e, 0x82a30029, 0x002621ad, 0x26055142, 0x00230018,
0x824e012b, 0x0cbf7711, 0x84490121, 0x0a6f4423, 0x82e40321, 0x00182611, 0x002c0025, 0x246f8222, 0x041f0018, 0x20118448, 0x2005822b, 0x209d841f,
0x4111861b, 0x1383050f, 0xc8012b24, 0x9d860700, 0x7f822620, 0x82003022, 0x7b870f82, 0x1e002324, 0x0f820300, 0xab821820, 0xdb821f20, 0x1e001824,
0x0f82c901, 0x4d821c20, 0x35821b20, 0x1e002524, 0x0f885203, 0xbb822a20, 0xea032b22, 0x89430f82, 0x5403210a, 0xa5454f84, 0xe6032208, 0x0aaf7d00,
0x82e30321, 0x8218200d, 0x822420e9, 0x8229203b, 0x8206205b, 0x00182207, 0x2205821b, 0x824a0429, 0x8226201b, 0x001b2275, 0x22678226, 0x820500b4,
0x00242675, 0x0318002a, 0x220b82e7, 0x82270020, 0x02262201, 0x830b822f, 0x821b20f5, 0x4c952019, 0x2b22087d, 0x0b82e803, 0xd1822620, 0xa3209583,
0x2c200b84, 0x1c222182, 0x0b845503, 0x61822b20, 0x11022324, 0x53820400, 0x6f822520, 0x0982a320, 0x0121f584, 0x20f1820e, 0x0811821b, 0x32001835,
0x74005600, 0xa8008e00, 0xd800c000, 0x0401f000, 0x28011601, 0x4c013a01, 0x6c015c01, 0x88017a01, 0xa2019601, 0xba01ae01, 0xd001c601, 0x7100d801,
0x83001100, 0x8420204b, 0x82082053, 0x002c227b, 0x22678227, 0x8208001c, 0x00202879, 0x0225001e, 0x820e0072, 0x821820ed, 0x2015830b, 0x22d98227,
0x822b0029, 0x00182829, 0x022b0020, 0x820c00a1, 0x00082179, 0x22096d76, 0x8223001a, 0x82272019, 0x950c205b, 0x2033825b, 0x20338e0b, 0x24338218,
0x00dd002b, 0x2031820b, 0x8361821d, 0x8220204f, 0x821a2063, 0x011c2217, 0x201784ae, 0x8275822a, 0x2c002171, 0x26260784, 0x4b042500, 0x77820900,
0x1a209583, 0x1c202b82, 0x2422c382, 0xb9823702, 0x03821b20, 0x0d821920, 0x1e001b26, 0xf8021c00, 0x25220d82, 0x93821d00, 0x03822520, 0x30002b24,
0x11841e02, 0x49821b20, 0x29205383, 0x06201182, 0x73831182, 0x47822c20, 0x7f822a20, 0x38022924, 0xa38b0700, 0x82240421, 0x821a200f, 0x2591843f,
0x51022a00, 0x15410600, 0x002a2208, 0x200d82c4, 0x202f8225, 0x22bf821c, 0x82bb002b, 0x822b200d, 0x8323207f, 0x2504252f, 0x1e000500, 0x2624c782,
0x5a042600, 0x1a200b82, 0x25245f82, 0xa7002a00, 0x25220b82, 0x0d821900, 0xc6002f22, 0x24200b82, 0xaf823182, 0x006c0123, 0x26458204, 0x0126001d,
0x820300e4, 0x002a2237, 0x22078271, 0x82290025, 0x820c2023, 0x00422637, 0x0358004e, 0x08c148b7, 0x12494818, 0x004c0123, 0x06776f0b, 0xa757f783,
0x56032108, 0x26204382, 0x25249582, 0xb6032b00, 0x1c206782, 0x2022b382, 0x5f829101, 0x30002722, 0x18383382, 0x50003800, 0x78006400, 0x9c008a00,
0xb600aa00, 0xc800c000, 0x0f005903, 0x231bd55e, 0x0b009f02, 0x2b201f82, 0x230fd94c, 0x09005803, 0x63443788, 0x02242205, 0x201384f9, 0x2017822e,
0x20fb8208, 0x22d58220, 0x8272001b, 0x72202039, 0x1e240825, 0x63012500, 0x1c201182, 0x47689182, 0xb9032408, 0x51000600, 0x1b2405af, 0xb8031800,
0x1822c782, 0x41821800, 0x57031822, 0x2022c782, 0x01822a00, 0xc782fe20, 0x01213582, 0x24078293, 0x002e0029, 0x08c7823b, 0xca00a279, 0x1a01f200,
0x60013e01, 0xa0018001, 0xde01c001, 0x1a02fc01, 0x52023602, 0x86026c02, 0xba02a002, 0xee02d402, 0x22030803, 0x54033c03, 0x84036c03, 0xb0039a03,
0xdc03c603, 0x0804f203, 0x34041e04, 0x5c044804, 0x84047004, 0xac049804, 0xd404c004, 0xf804e604, 0x1c050a05, 0x40052e05, 0x60055005, 0x7a056e05,
0x92058605, 0xa8059e05, 0xbc05b205, 0x14005702, 0x4d002600, 0x915d0597, 0x0018220b, 0x0d617223, 0x00560223, 0x28299c13, 0x001c0023, 0x032b001d,
0x20278495, 0x0e97531a, 0x2110cb71, 0x4f9e5502, 0x23065d4b, 0x11005802, 0x2c26779c, 0xa1012700, 0x23941000, 0x2308e54c, 0x0f009e01, 0x65862194,
0x96a00121, 0x21d5861f, 0x1f82fa02, 0x53001c21, 0x2b210543, 0x109f5500, 0x00690223, 0x20ff820e, 0x0aef5c2d, 0x26056d59, 0x00230018, 0x8268012b,
0x0026211d, 0x410d1341, 0x0421086d, 0x221d824c, 0x6b270018, 0x354a0813, 0x9f01230c, 0xb9940d00, 0x0021f782, 0x201b8274, 0x20378220, 0x0148181c,
0x7e032711, 0x18000c00, 0x575c1b00, 0x08a94e08, 0x545c0321, 0x37610879, 0x4300210e, 0x89891984, 0x79821f20, 0x2a002c26, 0x5e031c00, 0x2c221982,
0x01821e00, 0x5d451820, 0x05454506, 0x6a022b22, 0x1c211982, 0x83f98700, 0x82082095, 0x21f58277, 0x1982c700, 0x2726f58f, 0x25002000, 0x1982c200,
0x57822020, 0x47002b21, 0x00230c75, 0x8a2a012a, 0x00252219, 0x094f672c, 0x926c0221, 0x821b204d, 0x032b249f, 0x820b0094, 0x00302471, 0x8229001c,
0x821e204f, 0x82262005, 0x03272239, 0x89178493, 0x821a20cd, 0x821b202d, 0x82442025, 0x002c2217, 0x20c78225, 0x4e2f822a, 0x02230827, 0x820a005b,
0x3559181d, 0x8485200f, 0x0ed94115, 0x821b0121, 0x5fc18715, 0x01210837, 0x2215846b, 0x50220025, 0x30200c3f, 0xfd671582, 0xde012110, 0x1c202b86,
0x47182b82, 0x0320086d, 0x18228383, 0x9b822c00, 0x17821f20, 0x21068944, 0x2b825d03, 0x2e221589, 0xbd822000, 0x29012223, 0x05b34400, 0x29822b20,
0xdb821b20, 0x2a002b24, 0x13821300, 0x210ea742, 0x13845602, 0x2320d785, 0x21054b42, 0x3b844001, 0x20056d45, 0x246f8219, 0x01190023, 0x211384ab,
0xdf4b0029, 0x7300210a, 0x18221382, 0x71822900, 0x65470820, 0x826b2008, 0x00262113, 0x2805a54e, 0x00270026, 0x0125001c, 0x203b84c5, 0x200b821d,
0x242d8408, 0x031e0025, 0x41978295, 0x01210cff, 0x42118284, 0xaa200d2b, 0x20201182, 0x24086d5b, 0x012b0023, 0x201182b0, 0x18df8218, 0x2108735b,
0x238a2a01, 0x0b820a20, 0xba030b22, 0x1b222386, 0xad822400, 0x22002924, 0x67492901, 0x83082008, 0x203382cd, 0x5bb38207, 0x262605c5, 0x58012300,
0x29820600, 0x21060b42, 0x53555a03, 0x011f2208, 0x200b8208, 0x2047821c, 0x20c58226, 0x200b843b, 0x2229821e, 0x82960323, 0x842c200b, 0x002a2487,
0x820400ea, 0x001824d9, 0x8220011d, 0x82202009, 0x00222215, 0x830984c2, 0x82ab2061, 0x00263e09, 0x0022001a, 0x00ba005c, 0x011e01ee, 0x017a014c,
0x01d001a6, 0x022402fa, 0x0274024c, 0x065f679c, 0x032c9c08, 0x0370034e, 0x03b40392, 0x04f403d4, 0x04300412, 0x046c044e, 0x04a8048a, 0x05e404c6,
0x051c0500, 0x05540538, 0x058c0570, 0x05c205a8, 0x06f605dc, 0x062a0610, 0x065e0644, 0x068e0676, 0x06bc06a6, 0x06e806d2, 0x071407fe, 0x0740072a,
0x076c0756, 0x07960782, 0x07be07aa, 0x07e607d2, 0x080c08fa, 0x0830081e, 0x08540842, 0x08740864, 0x08940884, 0x08b208a4, 0x08ce08c0, 0x08ea08dc,
0x090609f8, 0x09220914, 0x093a092e, 0x09520946, 0x0968095e, 0x097c0972, 0x038e0986, 0x821900c8, 0x821e20f5, 0x002025d9, 0x0030001d, 0x1e22e383,
0xa34d0800, 0x0023210c, 0x230ccd41, 0x1700c703, 0x296633a0, 0xfc02290a, 0x20001600, 0x29001a00, 0x27204782, 0x2208b152, 0x84230008, 0x001c226d,
0x0cd9792a, 0x2d829f20, 0x7f821820, 0x1d822520, 0x24209197, 0x2c203984, 0x9e223982, 0x8ba01500, 0x69822720, 0x02232b82, 0x8214006e, 0x5d192081,
0x2a200863, 0x1c249384, 0x25001c00, 0x19248182, 0x2b002c00, 0x26220182, 0xb1822500, 0xb1941420, 0x21102354, 0x53822303, 0xd9821820, 0x91842b20,
0x39412020, 0x001a220e, 0x20518220, 0x24598229, 0x0081002a, 0x20a98413, 0x22758220, 0x4d2e0008, 0x2a210829, 0x0c655000, 0x82fe0221, 0x82838227,
0x84302095, 0x82202095, 0x822320bd, 0x20318309, 0x4515822d, 0x92200765, 0xe95b4f84, 0x1465530b, 0x00000323, 0x55f58212, 0x1a2107d7, 0x099d7f00,
0x230aa341, 0x1100f701, 0x29209182, 0x18068b41, 0x82080f45, 0x084b4777, 0x11209982, 0x4741498a, 0x20998305, 0x229d8a0a, 0x41100094, 0x01211d8f,
0x42218272, 0x7755130d, 0x966d2009, 0x082f4221, 0x82640321, 0x821c2021, 0x000821c9, 0x2116e567, 0x87846003, 0x99822720, 0x820ebd42, 0x22f78311,
0x4700032b, 0x1c2206f9, 0x03653000, 0x065f410c, 0x8cfd0221, 0x41ed891f, 0x02230687, 0x420e006f, 0x18240c4d, 0x1b002500, 0x20248f84, 0x70021b00,
0x75411d84, 0x243d8907, 0x00230018, 0x239d822b, 0x0018000e, 0xc7449d83, 0x1c002106, 0x79863b82, 0x18f00121, 0x850a9751, 0x00082255, 0x2621822d,
0x002c0025, 0x826d022a, 0x133f411d, 0x01215984, 0xd35118f6, 0x8229200e, 0x822220a3, 0x8208203b, 0x0127223b, 0x201d8467, 0x20838220, 0x20a98208,
0x7481821c, 0x3b830567, 0x6c022322, 0x958d1d84, 0x46182920, 0x411808f3, 0xad430785, 0x0b214205, 0x05021f22, 0x200cfd52, 0x0afb6727, 0x3d032922,
0x21431b82, 0x5a012116, 0x91433784, 0x0a834309, 0x84660321, 0x0029231b, 0x3d83002b, 0xab820820, 0x2a001c22, 0x23240d82, 0xa2031c00, 0x2a225384,
0x11822200, 0x13820820, 0xe1821f20, 0x07821820, 0x29001c24, 0x1b84f601, 0x2613c942, 0x005f032d, 0x8218000c, 0x00082149, 0x210e1542, 0x19826f02,
0x89002621, 0x08a74489, 0x84af0121, 0x4b878919, 0x012108ef, 0x24198283, 0x00250020, 0x2185842c, 0x6118002a, 0xe42009a5, 0x20256784, 0x08002300,
0x0d296600, 0x4d847020, 0x22111742, 0x8cd9000a, 0x0a39714d, 0x00f50123, 0x139b430b, 0x82ff0221, 0x09294417, 0x2108d943, 0x2f8af301, 0x26001b22,
0x19289f82, 0x1c002300, 0x0a003001, 0x2111bf43, 0x15827302, 0x42001821, 0x75200f13, 0x25201584, 0xab497782, 0x00202605, 0x0325001e, 0x4215845f,
0x1b220d21, 0x15829703, 0x1a002023, 0x05eb4b00, 0x63821a20, 0x6d822720, 0x6d84ea20, 0x0d822b20, 0x1b822920, 0x03823020, 0x1c002324, 0x15846e02,
0x20096741, 0x22998218, 0x8a71012b, 0x08794141, 0x92c70021, 0x0129226d, 0x20158248, 0x228d822c, 0x822a0008, 0x822c209d, 0x001c2657, 0x00bb0329,
0x850d8209, 0x821920c5, 0x002324f1, 0x82450222, 0x22978713, 0x821f001a, 0x002722e3, 0x0a376477, 0x11822a20, 0xd5821e20, 0x13826320, 0x69054d44,
0x022108d3, 0x224f8420, 0x70080027, 0x2a22082f, 0x13847600, 0x22002a22, 0x1d201582, 0x1a246d82, 0x16041c00, 0x20260b82, 0x20002500, 0x03822400,
0x1c003124, 0x11829d00, 0xd5832c20, 0x23246f84, 0x65033000, 0x26201182, 0x2c202382, 0x1c262382, 0x2b002500, 0x1184ec03, 0x0b832c20, 0x3f824782,
0x82590221, 0x00182211, 0x2347892f, 0x0700bc03, 0x25244d82, 0x29002600, 0x1f222382, 0x0f821f02, 0x83001821, 0x82272091, 0x02252225, 0x201f8422,
0x229f822a, 0x821e0018, 0x82272089, 0x822c200f, 0x00082209, 0x2233821f, 0x84ef012b, 0x0029241f, 0x822c001a, 0x03302441, 0x82060061, 0x00292247,
0x22558222, 0x82260429, 0x0020220d, 0x8201822b, 0xbd032191, 0x26200d82, 0x28204982, 0x1c222b82, 0x0d820304, 0x19841c20, 0x29002624, 0x1b846f02,
0x2106b141, 0x1b844b01, 0x45821b20, 0x2b002024, 0x0d84fb02, 0x6f822420, 0x30002924, 0x6184f300, 0xd5821e20, 0x2b001c24, 0x0d82ae01, 0x53822c20,
0x53821c20, 0x93002424, 0x195d0500, 0x05675208, 0x0f832520, 0x822e0121, 0x82182017, 0x002024b5, 0x5269041a, 0x62200a4f, 0x1c220b82, 0xb1821b00,
0xa5012324, 0x61820400, 0x25002624, 0x0982ee01, 0xcd821820, 0xeb032a22, 0x2a240984, 0xa3012200, 0x23260984, 0x61011c00, 0xdb820300, 0x21021f22,
0x29410782, 0x00123205, 0x004a002e, 0x00780062, 0x00a0008c, 0x00ed03b0, 0x2021820d, 0x2015822b, 0x22458226, 0x82080022, 0x82202009, 0x21698209,
0x1b82a202, 0xf5842620, 0x25502a20, 0x0902240f, 0x85000b00, 0x8208201b, 0x002b28d1, 0x001a0020, 0x82300022, 0x820a2057, 0x4b4183a1, 0x03230a3b,
0x84090001, 0x8208202d, 0x8228206b, 0x001824e5, 0x82d30123, 0x821c2013, 0x002a226d, 0x20318227, 0x24198227, 0x00280129, 0x200b8207, 0x834d842d,
0x00f822dd, 0x20178206, 0x2083842c, 0x200b8229, 0x2e3b820e, 0x00560046, 0x02720066, 0x000e0008, 0x82210019, 0x821a201f, 0x8208201f, 0x18252019,
0x24088740, 0x00070227, 0x201d8c0c, 0x20d3821e, 0x24238226, 0x00c30027, 0x2a078207, 0x001b002b, 0x0025001c, 0x8298032b, 0x0020240f, 0x82080023,
0x001826c1, 0x00ee0325, 0x06054205, 0x0329b808, 0x000200be, 0x00670024, 0x010801d0, 0x016c013a, 0x01c8019c, 0x021e02f4, 0x026e0246, 0x02b20290,
0x03f402d4, 0x03340314, 0x03700352, 0x03ac038e, 0x04e603ca, 0x041e0402, 0x0456043a, 0x048e0472, 0x04c604aa, 0x05fa04e0, 0x052e0514, 0x05620548,
0x0596057c, 0x05ca05b0, 0x06fc05e4, 0x062c0614, 0x065c0644, 0x068c0674, 0x06bc06a4, 0x07ea06d4, 0x07160700, 0x0742072c, 0x076e0758, 0x079a0784,
0x07c607b0, 0x08ee07da, 0x08160802, 0x083e082a, 0x08660852, 0x088e087a, 0x08b208a0, 0x08d608c4, 0x09f808e8, 0x09180908, 0x09380928, 0x09560948,
0x09720964, 0x188c0980, 0x300e6f5b, 0x09f409ea, 0x0a080afe, 0x0a1c0a12, 0x022c0a24, 0x21fb82a6, 0x62180029, 0x082413c9, 0x26001900, 0x2320fd84,
0x117b5a18, 0x00450023, 0x23158218, 0x00270026, 0xb74f1d85, 0x18002008, 0x2116f562, 0x31842802, 0x1f822920, 0x25002626, 0x2e000800, 0x23220f82,
0x534b2200, 0x822e2008, 0x05d77509, 0x19821a20, 0x1c002522, 0x17209b82, 0x82155d70, 0x209b8d3d, 0x24858218, 0x008e022b, 0x204d8815, 0x22bb8227,
0x821e0025, 0x82272029, 0x09755e4d, 0x0d821920, 0x23002324, 0x2b829902, 0x89001c21, 0x841b208d, 0x20bb83eb, 0x5968181d, 0x84232008, 0x041c244d,
0x82140031, 0x202b89eb, 0x20b5842a, 0x83c58220, 0x0583445f, 0x2b821b20, 0x34041a24, 0x298e1300, 0x2e211d83, 0x9d4f1800, 0x21358409, 0x2782a502,
0x23227541, 0x1000c103, 0x1821d982, 0x05216d00, 0x1d002622, 0x2e20cf82, 0x8b83a982, 0x71821f20, 0xbf022722, 0x1c202182, 0x87411182, 0x821a2007,
0x822920df, 0x413020c1, 0x2f220623, 0x21825c04, 0x21821f20, 0x99822520, 0x490d5750, 0x032306cb, 0x8e0f007d, 0x002e24b5, 0x82240020, 0x83202001,
0x040321e3, 0x29201f82, 0x5f434182, 0x821b2009, 0x0018241f, 0x8229001e, 0x0324226d, 0x201f826d, 0x05b34123, 0x1b207582, 0x27204b82, 0x2b228584,
0x21822c00, 0xbf031c24, 0x0f820e00, 0x2b002a22, 0x1d200582, 0x20201984, 0x25200582, 0x2a244382, 0xc4032400, 0x89411d82, 0x0ca95c0b, 0x8e2f0421,
0x002a221d, 0x203b8222, 0x243b822b, 0x031e0025, 0x201d8ef0, 0x20718229, 0x20b38225, 0x20b78420, 0x421d8e16, 0x45220d71, 0xc1420d00, 0xe6032117,
0xf1411b84, 0x821f2009, 0x06a9426f, 0x826c0321, 0x20ed891b, 0x20e18218, 0x201d8229, 0x2295822d, 0x49be0223, 0x1824065d, 0x1f001a00, 0x2b208b82,
0x08286182, 0x26001900, 0x30042f00, 0x4542538e, 0xc503210a, 0x29201b82, 0x21099f5d, 0x29550800, 0x012a2208, 0x20378487, 0x44518225, 0x49490599,
0x5504210a, 0x1920538e, 0x0021a789, 0x201b84ca, 0x204b8225, 0x417f822b, 0x03230cf9, 0x430c006e, 0x04211559, 0x41198204, 0xbb830b8d, 0x2b002626,
0x0a011f00, 0x47421982, 0x82472015, 0x002c2419, 0x46270024, 0x03210f19, 0x894d846b, 0x00292abb, 0x0023002c, 0x0229001c, 0x066d5323, 0x0d822a20,
0x210c2b58, 0x3384bf02, 0x42095944, 0x032108d1, 0x22338467, 0x82250020, 0x09db4c8f, 0x4d821c20, 0x9b8c2a20, 0x26002d24, 0x69822300, 0x1c002424,
0x19827001, 0x31002c22, 0x77830182, 0xa3820820, 0x71822020, 0x19821a20, 0xe98ea220, 0x11411b20, 0x012a2606, 0x000b00c7, 0x82298218, 0x20d18259,
0x204b8227, 0x22738218, 0x8271021c, 0x0b014117, 0x25822320, 0x1f002a24, 0x17824f01, 0x2a206f83, 0x200eb753, 0x2217827a, 0x822a001c, 0x822b206f,
0x82082029, 0x00202609, 0x0125001e, 0x875f84da, 0x001924c7, 0x822c0029, 0x001f221b, 0x84478446, 0x8649846b, 0x5d04215f, 0xc7417786, 0x002d2405,
0x821b0020, 0x01262253, 0x202f8681, 0x63551830, 0x8ad8200e, 0x0a294b8f, 0xa7830420, 0x31002022, 0x18200182, 0x202c5f86, 0x1c001a00, 0x0a008f01,
0x2c002600, 0x1b20e382, 0xa5841784, 0x82c00221, 0x21098315, 0x694f001e, 0x22978305, 0x82860022, 0x50eb8715, 0x02210867, 0x20158252, 0x203f821c,
0x209b821a, 0x08134d23, 0x1582da20, 0x11821820, 0x2b002523, 0x21e58800, 0x15825b04, 0x22094541, 0x8223001d, 0x04272221, 0x2041844e, 0x08754127,
0x2b222183, 0x15840500, 0x82002921, 0x285d82a5, 0x0018002b, 0x041c001e, 0x4141865d, 0x1d20050f, 0x23243f82, 0x87012400, 0x25202b84, 0x210d8341,
0x1582a702, 0xdd822920, 0x1b204183, 0x25058f44, 0xdd012a00, 0x35820900, 0x200d6354, 0x83138269, 0x000822c3, 0x2067821d, 0x22738225, 0x82ca0130,
0x00182213, 0x200f8229, 0x2205841e, 0x821f0027, 0x000921bf, 0x1820bf89, 0x2b22bf82, 0x27824800, 0x24002c22, 0x0822bd82, 0x6d822a00, 0x27001824,
0x13820504, 0x79432620, 0x822b2006, 0x00292407, 0x886b0324, 0x08094363, 0x847b0021, 0x42358313, 0x00210821, 0x223b84a0, 0x821c002e, 0x82082075,
0x001d243b, 0x8425011d, 0x8427208b, 0x06a15b13, 0x1d836382, 0xf3822620, 0x25821920, 0x2b002324, 0x0b827202, 0x35822620, 0x2108df5b, 0x11826803,
0x95821820, 0x9d822a20, 0x02211984, 0x85118254, 0x214786e9, 0x23847900, 0xa5842520, 0xc7821820, 0x6a031823, 0x055f4b00, 0x25000828, 0x19002000,
0x0f824002, 0x1b002622, 0x08a36118, 0x1f840520, 0x20089941, 0x05b15d03, 0x22002922, 0x25242d82, 0x02031e00, 0x18221f82, 0xad822300, 0x2b002b24,
0x73821c00, 0x15834f87, 0x52022b24, 0x1b820600, 0x4f822520, 0x23002024, 0x0d82c303, 0x2d822620, 0x87822320, 0xa3021f22, 0x25830d82, 0x01203d84,
0x1c200d83, 0x2a20d182, 0x25229d82, 0x114b4d04, 0x821c2006, 0x82b72011, 0x8429200b, 0x002b226f, 0x201784d0, 0x22e7822c, 0x843f011c, 0x832a200b,
0x09012177, 0xad410b82, 0xc0032106, 0x1c220b82, 0x73821800, 0xa4021c22, 0x20200b82, 0x2a227184, 0x0b82ef00, 0x17822320, 0x1c002526, 0x0400c403,
0x18225982, 0xbf823000, 0x1f820420, 0x2a002c24, 0x1382c203, 0xcf209d85, 0x29830982, 0x99033022, 0x26241384, 0xd2012700, 0x2c261384, 0x50021e00,
0xa3820300, 0xb4012622, 0x18240782, 0x53022e00, 0x22080782, 0x0025001c, 0x0016000a, 0x00600040, 0x009e0080, 0x00cc00b6, 0x01f200e0, 0x008c0200,
0x002c0014, 0x821b0020, 0x00202201, 0x2095822b, 0x20fd821f, 0x207d8219, 0x20458226, 0x200b8424, 0x22a18418, 0x820f00dc, 0x001c2229, 0x2025822a,
0x201b8220, 0x0def4325, 0x845c0121, 0x07814b1f, 0x43089152, 0x5b220887, 0x3f820e00, 0x23231f87, 0x56001c00, 0x5d8305f5, 0x3d822b20, 0x1d8a0b20,
0x01213d88, 0x20b7825b, 0x08d74b2c, 0xb5823586, 0xb5900920, 0x69821620, 0x55822c20, 0xb1229f89, 0xc7820600, 0x3d821a20, 0x1c001b26, 0x0500c603,
0x7a083382, 0x00180029, 0x00370025, 0x00960070, 0x00da00b8, 0x011a01fa, 0x0158013a, 0x01940176, 0x01ce01b2, 0x020402ea, 0x0238021e, 0x02680250,
0x02960280, 0x02c202ac, 0x03ee02d8, 0x031a0304, 0x0342032e, 0x03660354, 0x03860376, 0x03a60396, 0x03c603b6, 0x03e403d6, 0x040004f2, 0x041c040e,
0x0438042a, 0x04500444, 0x0468045c, 0x04800474, 0x0494048a, 0x04a6049e, 0x004d02ae, 0x18200012, 0x18089f71, 0x2217c370, 0x82100009, 0x25e383a1,
0x00080029, 0x796f001f, 0x4e022110, 0x47892182, 0x18057944, 0x290c0771, 0x0f007902, 0x1a001c00, 0xe7842b00, 0x46001e21, 0x2f22056f, 0x0f822400,
0x22002922, 0x2b201f96, 0x24209d82, 0x2a223782, 0x3f824902, 0x3d842620, 0x14937118, 0x004f0223, 0xb371180e, 0x0c39510c, 0x82aa0021, 0x207d911d,
0x245d8223, 0x032b002a, 0x201d8208, 0x8391842c, 0x821a20df, 0x00242247, 0x201b8219, 0x22798225, 0x8c0a031b, 0x0ee36f1d, 0x00290423, 0x18c1820d,
0x210ced57, 0x11820800, 0x2b002324, 0x1b825e04, 0xe1821c20, 0x83002621, 0x00082135, 0x24209385, 0x2b241d82, 0x0c006a04, 0x6b835d82, 0x1b002922,
0x2d203182, 0x30246f84, 0xa6032300, 0x29411986, 0x0018220d, 0x20e3821b, 0x42e38c0c, 0x0223088d, 0x8c0b0049, 0x82192019, 0x001a2263, 0x42179022,
0x002106a7, 0x242f827c, 0x0027002c, 0x20278220, 0x207d821f, 0x2609822a, 0x0425001e, 0x820a0007, 0x00272295, 0x20ff822c, 0x20138223, 0x221f821a,
0x84180225, 0x411e2015, 0x1f82052d, 0x03822920, 0x57021b22, 0xf3411582, 0x00232809, 0x00250026, 0x8292011e, 0x613d8515, 0x01210a63, 0x61158490,
0x01210e79, 0x20158280, 0x0fff522a, 0x8e630221, 0x001c2857, 0x042b001d, 0x41090028, 0x01210f67, 0x54138267, 0x4f200f87, 0x1c22cd82, 0x8d821b00,
0x20078541, 0x2211842a, 0x442b002a, 0xf622083b, 0xc1820700, 0x2e002b22, 0x1c240582, 0xf0032b00, 0x2c200f82, 0x2520bd82, 0xc382e182, 0x82060421,
0x8418200f, 0x8219200b, 0x002e2247, 0x202f84a9, 0x203f821d, 0x22ad821c, 0x84b7011f, 0x001a2a0f, 0x001a0030, 0x031c0023, 0x200f8605, 0x2033821c,
0x204f8227, 0x200f8412, 0x202f8226, 0x2461821b, 0x004b0229, 0x099d4106, 0x82640221, 0x001c220d, 0x20198227, 0x20938218, 0x0805519d, 0x1c002d24,
0x29849201, 0x20073f41, 0x200d82f1, 0x20978218, 0x223d821b, 0x82c10224, 0x0020220d, 0x24018219, 0x01250026, 0x22298476, 0x8222001a, 0x022b2447,
0x82050073, 0x82272007, 0x8230208d, 0x41052043, 0x1c2206bf, 0x17820703, 0xd9422c20, 0xc2022105, 0x26200b82, 0x2b201982, 0x90206782, 0x27201784,
0x1c223382, 0x17840603, 0xa1841920, 0x0400a822, 0x1b241382, 0xef032600, 0x20200982, 0x1e227b82, 0x0982a500, 0x18002628, 0x0d011b00, 0xff820300,
0x61822a20, 0x47820320, 0x91011922, 0x24200f82, 0x40088f82, 0x018401c1, 0x02e401b6, 0x023c0210, 0x02920268, 0x03e602bc, 0x0336030e, 0x0382035c,
0x03ce03a8, 0x041804f4, 0x0460043c, 0x04a80484, 0x05f004cc, 0x05360514, 0x057a0558, 0x05be059c, 0x060206e0, 0xbf601824, 0x86320914, 0xc407a607,
0x0008e207, 0x3c081e08, 0x76085a08, 0xae089208, 0xe608ca08, 0x1e090209, 0x56093a09, 0x8e097209, 0xc609aa09, 0xfc09e209, 0x300a160a, 0x640a4a0a,
0x980a7e0a, 0xcc0ab20a, 0x000be60a, 0x340b1a0b, 0x680b4e0b, 0x9a0b820b, 0xca0bb20b, 0xfa0be20b, 0x2a0c120c, 0x5a0c420c, 0x8a0c720c, 0xba0ca20c,
0xea0cd20c, 0x1a0d020d, 0x4a0d320d, 0x7a0d620d, 0xa60d900d, 0xd20dbc0d, 0xfe0de80d, 0x2a0e140e, 0x520e3e0e, 0x7a0e660e, 0xa20e8e0e, 0xca0eb60e,
0xf20ede0e, 0x1a0f060f, 0x400f2e0f, 0x640f520f, 0x880f760f, 0xac0f9a0f, 0xd00fbe0f, 0xf40fe20f, 0x18100610, 0x3a102a10, 0x5a104a10, 0x7a106a10,
0x9a108a10, 0xba10aa10, 0xda10ca10, 0xfa10ea10, 0x1a110a11, 0x38112a11, 0x54114611, 0x70116211, 0x8c117e11, 0xa8119a11, 0xc411b611, 0xe011d211,
0xfc11ee11, 0x18120a12, 0x34122612, 0x4c124012, 0x64125812, 0x7c127012, 0x94128812, 0xaa12a012, 0xbe12b412, 0xd212c812, 0xe612dc12, 0xfa12f012,
0x0e130413, 0x1e131613, 0x1800bf03, 0x03822700, 0x1f001e26, 0x2b001c00, 0x202a0182, 0x24000800, 0x25002600, 0x0d822a00, 0x29001c22, 0x1d260f82,
0x30002300, 0x13822000, 0xc3031e24, 0x75561600, 0x8208200a, 0x0863483d, 0x2311e145, 0x15008801, 0x5a182d8c, 0xeb590e13, 0x82dc200c, 0x821a202b,
0x8223208b, 0x00082289, 0x206d822c, 0x200d8419, 0x20098218, 0x2013821a, 0x2489861b, 0x04270020, 0x212b8263, 0x77690026, 0x0cbb5f05, 0x09877318,
0x23074f45, 0x1400c203, 0x2720838c, 0x5375a782, 0x0e954505, 0x8eca0321, 0x82292029, 0x00262229, 0x2049822b, 0x08614f2d, 0x23001926, 0x61041c00,
0x7f872982, 0x24001822, 0x2c202782, 0x2983a582, 0x0bf17218, 0x2b002326, 0x13006404, 0xa9951d82, 0x210ac160, 0x278a5f04, 0x63821820, 0x1f002722,
0x08217382, 0x234f8e00, 0x12008d01, 0x1a20cd8c, 0x29212582, 0xa3551800, 0x8603210e, 0x27222582, 0x1b822900, 0xbd823020, 0x096b7a18, 0x210cf75b,
0x25823904, 0x25821a20, 0x2e001c22, 0x29236782, 0x41002000, 0x08200511, 0x53830f82, 0x1a002526, 0xcd011f00, 0x2a20718e, 0x1f839984, 0xf3820820,
0x39822620, 0x2a001c24, 0x25826204, 0x8b151141, 0x006022e5, 0x080d4111, 0x238be58b, 0x238a6320, 0x8211db41, 0x1a00236b, 0x23828901, 0xf9861f20,
0x18000821, 0x2114b77a, 0x23825c04, 0x2c002822, 0xe5572588, 0x20318309, 0x22ed8223, 0x8ea80127, 0x0b4d4123, 0x2106f546, 0x2382cb03, 0x45842b20,
0x415d0820, 0x05354108, 0x1a002a2a, 0x25001c00, 0x9a012b00, 0x2626b39c, 0x25002e00, 0x6b9a8b01, 0x2506e541, 0x1000f203, 0x61182200, 0x65830893,
0x2a002622, 0x19220182, 0x67822600, 0x2a001c24, 0x2182cd01, 0x1821f989, 0x053b6500, 0x200bbf50, 0x41218261, 0x1b201589, 0xb382ad82, 0x9a980121,
0x21ab8421, 0x2182db02, 0x211c8b43, 0x21824b01, 0x0ccf6418, 0x00080022, 0x210c4d64, 0x21827903, 0x83073741, 0x002322b1, 0x1823821d, 0x210af962,
0x43927a03, 0x210c5d5d, 0xa98a9a01, 0x210f0b42, 0xcb830018, 0x0f008c22, 0x22180f43, 0x8227002c, 0x420f20eb, 0xa9430a71, 0x213f840b, 0x3f8eca03,
0x2609f343, 0x00230018, 0x8e62022b, 0x05a9421f, 0x21084349, 0x1f829601, 0x21096d41, 0xb7430023, 0xc803210e, 0x1c241f82, 0x29001800, 0x5c068b4c,
0x00210e05, 0x201f824d, 0x22a1842b, 0x8208001c, 0x07cf4127, 0x0b822320, 0x1f002a24, 0x7f8ead01, 0x18001c21, 0x210cd349, 0x7f985f04, 0x2a001c26,
0x26021a00, 0x6f181f82, 0x08220ddd, 0x5b841900, 0x1c002226, 0x9b012b00, 0x61413f8a, 0xcf77180f, 0x41df9307, 0x0322053d, 0x7d410e00, 0x075f440c,
0xa5822020, 0xa1001e22, 0x20221d82, 0x71181e00, 0x272008d5, 0x29227182, 0x05821d00, 0x79821a20, 0x1d829920, 0x2415a742, 0x0427002c, 0x221d822c,
0x822b0018, 0x0023242b, 0x84200023, 0x00082209, 0x2409821b, 0x021f002a, 0x421d820b, 0x2746099f, 0x00f7230f, 0xf38f000d, 0x29202d83, 0x97207582,
0xcf931b82, 0x27002c24, 0x1b828f01, 0xa3842b20, 0xf3562320, 0x06e34a08, 0x842b0121, 0x8229201b, 0x82222017, 0x822b2021, 0x0029245f, 0x822c0026,
0x031f22dd, 0x551b827e, 0x00230cdd, 0x82270008, 0x0026241d, 0x822f0223, 0x0503411b, 0xc7820820, 0x210c6d64, 0x1b823104, 0x51822220, 0x2112f556,
0x6f847903, 0x4d001821, 0x1820053b, 0x1d203b82, 0x2008d146, 0x211b8acc, 0x17830026, 0x18001b24, 0x49822d00, 0x85001b21, 0x821c201b, 0x8344187f,
0x82c72011, 0x0b8b4237, 0xa3821b20, 0x95842320, 0xac012922, 0x1f241b82, 0x2b002c00, 0x81470182, 0x822a2005, 0x00182443, 0x841c001a, 0x8227201b,
0x05315761, 0xfb822a20, 0x02212788, 0x203784a8, 0x202b8220, 0x08334127, 0x2b821d20, 0x47822a20, 0x0c00d422, 0x8b850582, 0x200d594d, 0x8b19829f,
0x08f55289, 0x82830121, 0x0bb54519, 0x04211988, 0x57198234, 0x002114f9, 0x20198249, 0x207d821f, 0x23cb821c, 0x0008001b, 0x21086767, 0x19848901,
0x46001821, 0x254505ad, 0x7402210a, 0x875d338e, 0x84252009, 0x8c262019, 0x821920d1, 0x031e22d1, 0x41cf849b, 0x77410593, 0x82232005, 0x001d2475,
0x8e44021c, 0x09a14eb5, 0x19824d20, 0x1e002024, 0x97822500, 0x4305474b, 0x012106e5, 0x5f338e86, 0x0a20094d, 0xb946198e, 0xc4022108, 0x1f204d8a,
0x25209382, 0x20205982, 0x1e225b82, 0x9b844c00, 0x2e20b583, 0x2b201782, 0x24066d44, 0x0309000b, 0x201982ce, 0x08b5621a, 0x2b000824, 0x0d822600,
0x1f00182c, 0x0b00e401, 0x1c001f00, 0x03822800, 0x9f822320, 0x2106eb42, 0x17820c03, 0x20131748, 0x8517824e, 0x841c203d, 0x0bab552d, 0x260d6947,
0x002c0023, 0x8413032a, 0x0029222f, 0x21018226, 0x97830027, 0x69831d20, 0x840d0321, 0x82262077, 0x1808200b, 0x23096d45, 0x6d012a00, 0x2c201782,
0x1c201182, 0x2a209f82, 0x2922c182, 0x0d822000, 0x65042b22, 0x27201782, 0xa583a384, 0x21082741, 0x17827403, 0xbf422620, 0x208f8205, 0x20f78227,
0x21258325, 0x7786eb01, 0x0d821c20, 0x19822b20, 0x47822d20, 0x2e001c23, 0x41bf8302, 0x2022078b, 0x19822500, 0x3d821820, 0x24022b22, 0x26202f84,
0x35576b82, 0x9e00210c, 0xa5421782, 0x8227200b, 0x002c242d, 0x828d022a, 0x20ef8b17, 0x24ed821d, 0x03230023, 0x2017820f, 0x20eb8224, 0x8b731822,
0x4125200c, 0x22200867, 0x200e6741, 0x432f8271, 0x2d200d73, 0x0121c383, 0x248f8445, 0x002b001c, 0x224d821f, 0x821a002a, 0x00272405, 0x8409021c,
0x82202017, 0x0022220f, 0x20bd8230, 0x24178225, 0x011c002b, 0x204784cc, 0x06e54218, 0x1b201583, 0x2a226982, 0x1782cf01, 0x2d822620, 0x0d821a20,
0x2f822920, 0x5d821920, 0x0221a782, 0x062b4f20, 0x2a002522, 0x27201582, 0x2b226384, 0x15827402, 0x200b4543, 0x22ed8218, 0x8280012b, 0x20eb8b15,
0x22338229, 0x844d002a, 0x0531412b, 0x20094565, 0x221582c5, 0x82200024, 0x821c2037, 0x822e2057, 0x00252409, 0x827c0322, 0x09934215, 0x6d821920,
0x22002624, 0x578e8701, 0x0023df82, 0x8c730325, 0x82192041, 0x00182ab7, 0x00cd0324, 0x00300009, 0x20bd8225, 0x263d821e, 0x002c001e, 0x8277031c,
0x0ee14a13, 0x824c0221, 0x422b2013, 0x2b20086b, 0x1f22f982, 0x13822b04, 0x210e4746, 0x13823701, 0x49070346, 0x138e0679, 0xe5821c20, 0xcc011a22,
0x6b492782, 0xcb01210e, 0x23201382, 0x1b20d982, 0x29209b82, 0x08242582, 0x01011f00, 0xab457784, 0x7203210c, 0x4b181382, 0x02210e1f, 0x44138246,
0x1d2205c1, 0xcd822300, 0xc7822220, 0x3b841120, 0xff478d83, 0x6e012108, 0x2c221382, 0x81181900, 0x02270b09, 0x0008004b, 0x82250030, 0x820820d3,
0x00232439, 0x82a1002b, 0x0b5d4711, 0x38010e22, 0xdb461182, 0x002a2409, 0x4236041a, 0x2e220625, 0x71822700, 0x2e002624, 0x35880201, 0x26000828,
0x2b002c00, 0x11827003, 0x0c1b4b18, 0x82c30221, 0x821c2011, 0x821b20df, 0x82202033, 0x041e2273, 0x2211822e, 0x82240020, 0x05474705, 0xe7001b22,
0x2c200b82, 0x2b22a382, 0x8f822900, 0x47821a20, 0x11847b20, 0xd1432920, 0x002a2406, 0x8446011c, 0x82202011, 0x833583ab, 0x824e2011, 0x0b4d4211,
0x87001f22, 0x20207d84, 0x19206982, 0x18238f82, 0x43012b00, 0x202205e3, 0x01822a00, 0x5d822620, 0xa9022a24, 0x7b820700, 0x43002621, 0x04210657,
0x200f822f, 0x21758222, 0x9d84002b, 0x827d0321, 0x822e200f, 0x8224200b, 0x821c2025, 0x82f12031, 0x001f240f, 0x821d002c, 0x00232301, 0x2f83021c,
0x85052941, 0x826f202f, 0x20f1851f, 0x222d821a, 0x82380130, 0x0737410f, 0x27002c24, 0x0f825d01, 0x5b842720, 0x82002521, 0xaa02214f, 0x30200f82,
0x3d842982, 0xcb20d782, 0x03420f82, 0x2d04210a, 0x210d1573, 0x0f828800, 0x1a001c22, 0x2020f782, 0x2522d382, 0x4f847603, 0x0b822320, 0x15822b20,
0x05011f22, 0x87440f82, 0x3d01210a, 0x2b200f84, 0x24206b82, 0x2722d582, 0x0f823504, 0x83052742, 0x0125260f, 0x000600e4, 0x201d821f, 0x20038222,
0x200d8823, 0x210d8328, 0x1b849a03, 0x27001822, 0x2a220d82, 0x0d848900, 0xbb822920, 0x11822420, 0x0d829420, 0x2108bf44, 0x0d82f403, 0x19822720,
0x29821b20, 0x27012922, 0x89410d82, 0x82a12009, 0x084b420d, 0x820b0321, 0x821a200d, 0x82262071, 0x042322b1, 0x200d8232, 0x83338223, 0x011f221f,
0x225384fa, 0x822d0029, 0x04292211, 0x480d8230, 0x022108c1, 0x496184c3, 0x2b220517, 0x8b847301, 0x27822020, 0x1b002324, 0x0d82ff01, 0x19002c24,
0xe1822e00, 0x3e023022, 0x26201b84, 0x1c240d82, 0x12032900, 0x2b220d82, 0x29822900, 0x24001824, 0x7d84f103, 0x23244583, 0x7d002300, 0x18201b84,
0x2927b782, 0xe4002a00, 0x43000500, 0x02210691, 0x200b8247, 0x24a18227, 0x03250026, 0x200b8210, 0x820b822b, 0x78032143, 0x49820b84, 0x03270023,
0x280b82c9, 0x001a0026, 0x012a0022, 0x200b825f, 0x82478224, 0x0e0321cb, 0x22220b82, 0x5f822c00, 0x15032322, 0x20205384, 0x2b227f82, 0x0b82f303,
0xa1822320, 0x1f002a26, 0x0400e801, 0x20246b82, 0xd1002700, 0x5d830982, 0x4b002722, 0x26200982, 0x27221f82, 0x09820804, 0x71822420, 0x36011e22,
0x29241384, 0x4a002b00, 0x20260982, 0x22002500, 0x0984c402, 0x0b821e20, 0x3b849620, 0x5d821820, 0x0982a920, 0x11823020, 0x26011a22, 0x18260982,
0x1c002d00, 0x63841103, 0x27002628, 0x0300a401, 0xc9822c00, 0x07827520, 0x18002724, 0x07823304, 0xf1822420, 0x01803008, 0x01380102, 0x01a0016e,
0x02fc01ce, 0x02500226, 0x02a00278, 0x03ee02c8, 0x033a0314, 0x03840360, 0x03cc03a8, 0x041404f0, 0x04580436, 0x189c047a, 0x080a4155, 0x7c055ed2,
0xb8059a05, 0xf205d605, 0x2a060e06, 0x62064606, 0x9a067e06, 0xd206b606, 0x0a07ee06, 0x42072607, 0x7a075e07, 0xb2079607, 0xea07ce07, 0x1e080408,
0x52083808, 0x86086c08, 0xba08a008, 0xea08d208, 0x1a090209, 0x48093209, 0x74095e09, 0xa0098a09, 0xcc09b609, 0xf809e209, 0x240a0e0a, 0x500a3a0a,
0x7c0a660a, 0xa40a900a, 0xcc0ab80a, 0xf40ae00a, 0x1c0b080b, 0x400b2e0b, 0x640b520b, 0x840b740b, 0xa40b940b, 0xc40bb40b, 0xe20bd40b, 0xfe0bf00b,
0x1a0c0c0c, 0x340c280c, 0x4c0c400c, 0x640c580c, 0x7c0c700c, 0x940c880c, 0xac0ca00c, 0xc20cb80c, 0xd60ccc0c, 0xea0ce00c, 0xfc0cf40c, 0x0c0d040d,
0x3a02120d, 0x1f001a00, 0x29001c00, 0x26002400, 0x1c200382, 0x0cab4618, 0x19822920, 0x55441c20, 0x842b200a, 0x842a2029, 0x821c2035, 0x8427202d,
0x8218200f, 0x822c2033, 0x18298341, 0x221be37e, 0x8218008e, 0x00192101, 0x8305014b, 0x0025264b, 0x00200025, 0x17f3622a, 0x009c0323, 0x83318216,
0x209b8da1, 0x20438218, 0x2235822b, 0x862d0018, 0x001e2481, 0x829a031c, 0x195b182d, 0x1821820c, 0x4a0d7573, 0x75220ba3, 0x8d881400, 0x3d6e4b83,
0xee002118, 0x578f2982, 0x14937218, 0x009d0323, 0x20af9c13, 0x241d821d, 0x022b002a, 0x4127823c, 0x7e181575, 0x27840ccb, 0x8c156741, 0x4f002c27,
0x26001200, 0x23002000, 0x83001c00, 0x089366cb, 0x00080022, 0x21084148, 0x25825204, 0x81842920, 0x17821f20, 0x09821a20, 0x2005a549, 0xb58c1829,
0x9e03210b, 0x18212582, 0x13734100, 0x200b6b41, 0x5e258a28, 0x55820869, 0x85821b20, 0x03821e20, 0x5d822b20, 0x99002324, 0x63411100, 0x82082008,
0x821c2053, 0x822320a1, 0x82082091, 0x00182807, 0x001e0029, 0x827f001c, 0x822c2023, 0x8222200b, 0x002a2135, 0x23209983, 0xbd720982, 0x20b9820c,
0x20218211, 0x83398218, 0x8229201f, 0x002a2135, 0x210ed74f, 0x47823d02, 0x18155341, 0x8309a142, 0x154f4123, 0x3b222389, 0x11431000, 0x821f2016,
0x002324cb, 0x9839021d, 0x001d2621, 0x0023002c, 0x95218423, 0x20218767, 0x9543823b, 0x21658621, 0x219a0904, 0x1e002029, 0x0a041f00, 0x95000f00,
0x00232643, 0x022e0026, 0x221f8279, 0x82240020, 0x002a2423, 0x5b290008, 0x03210feb, 0x411f829f, 0xa54213e9, 0xf1012106, 0x29201f82, 0x2522f382,
0x6f822a00, 0x25001c22, 0x08db5218, 0xe5821820, 0xdf022b22, 0x65461f82, 0x205f8206, 0x20618219, 0x5f2d8226, 0x03230871, 0x430e009d, 0x0221190d,
0x261d82c7, 0x002c0029, 0x8222001a, 0x2267833d, 0x84270024, 0x00262447, 0x8476022f, 0x4219203b, 0x8d6f08d1, 0x5104210c, 0x0f423b84, 0x0ef75607,
0x003a0223, 0x16c1410d, 0x3b020c22, 0x33411b82, 0x030b2215, 0x201b82a3, 0x24b18229, 0x001d001d, 0x22978220, 0x82230008, 0x821e2007, 0x822b204b,
0x820d20ad, 0x21ad87df, 0xe9850023, 0x25002026, 0x59011e00, 0x18213782, 0x20ab8900, 0x22d58219, 0x822b002b, 0x02252223, 0x208b9839, 0x951b840d,
0x840d208b, 0x15cd42a7, 0x3c020b22, 0x0a22c398, 0xc384a403, 0x6b58a787, 0x3501210c, 0x0820a78a, 0x2620df82, 0x2c22df82, 0xc3822400, 0xa2032a22,
0x4c18a786, 0x242a09ab, 0x2a001800, 0x2a002200, 0x538e4a01, 0x18001c21, 0x2108d183, 0x8b983a02, 0xa7840c20, 0x0a22c395, 0x17413d02, 0x02092218,
0x201b8277, 0x239f8220, 0x001c0022, 0x20059945, 0x20a58220, 0x20ad8227, 0x4137841c, 0x09221533, 0xa7845104, 0x23142544, 0x0c008e02, 0x21157b46,
0x1982c802, 0x2c098742, 0x00260024, 0x0020002d, 0x031e0025, 0x20198ca5, 0x28158227, 0x0022001a, 0x0127002c, 0x201984ff, 0x154d1818, 0x492c2008,
0x0021077b, 0x431982da, 0x7d460973, 0x4402210a, 0x8946198c, 0xf503210a, 0xbd451982, 0x827f2015, 0x141b4519, 0x00ac0222, 0x47055d50, 0x01210eb7,
0x2217849d, 0x8224002c, 0x592a2091, 0x012109af, 0x431782f1, 0xbc2013cb, 0x1c241782, 0x2b002f00, 0x1f222b82, 0xd1821c00, 0x1f001e22, 0x9a200d82,
0x18201782, 0x4506d342, 0x03230ab9, 0x430a009f, 0x012111d3, 0x21158203, 0x7585001f, 0x3d820820, 0x1a001826, 0x37042200, 0x1c231582, 0x18002500,
0x2009a350, 0x200d821e, 0x851584bd, 0x002e2471, 0x821b0020, 0x021f222f, 0x43578475, 0x18220943, 0x17822300, 0x158a9b20, 0x11820820, 0x2a002026,
0xa1032b00, 0x1c204184, 0x1f201f82, 0x2622b582, 0xb7822700, 0xdf012522, 0x26201582, 0x1e206b82, 0x1c202782, 0x1d241784, 0xcf031d00, 0x29201584,
0x20206782, 0x1e201382, 0x2b24bb82, 0x3a041c00, 0x29201582, 0x20200b82, 0x08208f82, 0x0b834782, 0x19022422, 0x23205784, 0x2d214d82, 0xdd611800,
0x5e042108, 0x4b47af8a, 0x7f032108, 0x20201582, 0x4a183d82, 0x77200d61, 0x1a221584, 0x43822200, 0xc5841983, 0x84a80221, 0x002c216d, 0x2005e944,
0x2777821d, 0x022b002a, 0x00090017, 0x1b207783, 0x24202b82, 0x29241382, 0x03012200, 0x47411382, 0x822b2007, 0x21318213, 0x1382e001, 0x2522d78d,
0x3b864a02, 0x84052f47, 0x50042165, 0x2008cd70, 0x087b512a, 0x13826920, 0x65822c20, 0x09422520, 0x203b8e09, 0x2265821a, 0x8a9c0125, 0x243d8377,
0x0027002c, 0x47338299, 0x1820058d, 0x1e244182, 0xd0011c00, 0x1c221182, 0xdb842300, 0x21823020, 0x7e001c22, 0x20221182, 0x11822400, 0x20002324,
0x23822500, 0x23846520, 0x13822920, 0x99820f83, 0x00ab0223, 0x08794307, 0x2a002b24, 0x0f826a02, 0x67829387, 0x82140321, 0x0026220f, 0x20578226,
0x22058219, 0x829b002f, 0x4177850f, 0xf62005ed, 0x29200f82, 0x1a224182, 0x1f822b00, 0x15032922, 0x08280f82, 0x1f002a00, 0x29002000, 0x35201382,
0x20201f86, 0x29249984, 0x06008201, 0x83411982, 0x19022106, 0x2d200d82, 0x2008db55, 0x880d8215, 0x38042139, 0x77430d82, 0x76022108, 0xc5450d82,
0x06012108, 0x29200d82, 0x27206f82, 0x30246782, 0x05009d00, 0xe7835382, 0xa0032a22, 0x1c200b82, 0x2b24f182, 0x1b011f00, 0x2406b765, 0x032a0022,
0x830b8281, 0x211782c7, 0x23843704, 0x1e002526, 0x2f011c00, 0x5f440b82, 0x80032106, 0x29204784, 0x1b223d82, 0x2f863904, 0x2a002324, 0x47842d01,
0xc1831920, 0x84fe0121, 0x8218202f, 0x0125226f, 0x240b86d7, 0x031f002a, 0x282f84ce, 0x00180029, 0x00c6021f, 0x24078204, 0x041c0027, 0x8309823a,
0x01242213, 0x200984ba, 0x205b821c, 0x260982c9, 0x00250020, 0x84b4002b, 0x821e2027, 0x84b92061, 0x822f2009, 0x007f2855, 0x00290003, 0x82d00130,
0x002b2407, 0x82b30030, 0x00182a07, 0x0019021e, 0x002d0002, 0x0805829a, 0x38001f3a, 0xb8007200, 0x0801e200, 0x4c012a01, 0x88016a01, 0xc401a601,
0xfc01e001, 0x30021602, 0x60024802, 0x90027802, 0xbe02a802, 0xea02d402, 0x16030003, 0x42032c03, 0x6e035803, 0x08c94018, 0x03da3308, 0x040204ee,
0x042a0416, 0x0450043e, 0x04740462, 0x04980486, 0x04bc04aa, 0x04e004ce, 0x050005f0, 0x051e0510, 0x053a052c, 0x05500546, 0x007b025a, 0x97180022,
0x18200f31, 0x0dfb9118, 0x00080022, 0x5c090966, 0x1a200995, 0xeb83f182, 0x29001c26, 0x14006102, 0xbf5c4590, 0x1e012314, 0x29841200, 0x8909015e,
0x087f5a5b, 0x00270225, 0x5d250010, 0x2a2208b9, 0x81821800, 0x05820820, 0x1a001a22, 0x2a247582, 0xcb022a00, 0x2a202182, 0x29200b82, 0x18209d84,
0x55052943, 0x7c240cbf, 0x25000e00, 0x26203782, 0x22203382, 0x22201982, 0x30242d82, 0x26001f00, 0x1c221382, 0x1d82cc02, 0x18243f87, 0x2b002a00,
0x26204182, 0x18262f82, 0x2b002c00, 0x1d828203, 0x19002422, 0x1c201382, 0x23202d82, 0x08207982, 0x1c200d82, 0x1f208184, 0x0e207b82, 0x1c203182,
0xdb5a1d82, 0x47022312, 0x4d820d00, 0x4b821c20, 0x20002a22, 0x2a22b784, 0x75822700, 0x25002624, 0x1b82d202, 0x1e207587, 0x18223f82, 0x6f821b00,
0x2b001828, 0xf7031c00, 0x55880c00, 0x3d822020, 0x19822120, 0xb3822920, 0xd1021b22, 0x1d20198a, 0x20203582, 0x25201582, 0x2a243982, 0x0b00e901,
0x57833388, 0xb1841a20, 0x36022b22, 0x0b47178a, 0x5000210a, 0x2b7c1788, 0xd602210c, 0x1f20478c, 0x1c26b782, 0x1b002300, 0x178a4401, 0xc3821b20,
0xa9821a20, 0x29002626, 0x0a007c01, 0x200c5b41, 0x222d8218, 0x82fc012b, 0x412a2015, 0x2b580693, 0x8ace2009, 0x411a2015, 0x0221078f, 0x20158ad4,
0x266f8224, 0x002c0025, 0x8ad7022a, 0x08f34515, 0x8ccd0221, 0x821f2041, 0x001a2261, 0x206d8c22, 0x2041822b, 0x22178224, 0x8a53042a, 0x2153832b,
0x91820029, 0x84ae0121, 0x002021af, 0x2005494d, 0x242d822a, 0x0230002b, 0x202b8cd5, 0x24d18220, 0x02180021, 0x22158a78, 0x42180023, 0x02210559,
0x241588da, 0x0008002a, 0x826b821e, 0xd1022119, 0x13831588, 0x2600292a, 0x27002c00, 0x0900d002, 0x28089541, 0x001b001c, 0x012b0020, 0x22138afb,
0x84230027, 0x8ad320ed, 0x82232013, 0x001a243b, 0x8acf0222, 0x21658613, 0x13822c01, 0x55182520, 0xa78308f1, 0x8f821c20, 0x8f836387, 0x3d821a20,
0x48021e22, 0x2b209982, 0x25209982, 0x20207d82, 0x2a226382, 0x11824902, 0x26203983, 0x20089946, 0x410982d9, 0x2b2007a3, 0x1c229982, 0x118cd802,
0x1e001822, 0x08208382, 0x5985bf88, 0x238ad020, 0x2005f547, 0x20598436, 0x2177822a, 0x73830029, 0x3e011b22, 0x33431182, 0x7802210c, 0x1820358a,
0x2b268f82, 0x07005802, 0x15822700, 0x2520ed83, 0x5c206982, 0x1b280f86, 0x2e002600, 0x44012500, 0x9d870f82, 0x1b002428, 0x06006b01, 0x39822500,
0x05822020, 0x07012222, 0x27200d82, 0x26220d82, 0x1b821800, 0x1b860b20, 0x1a002629, 0x1f012200, 0x85000500, 0x002a2439, 0x85040097, 0x3a01210b,
0xff850982, 0x03000422, 0x4a081382, 0x0022001b, 0x00700046, 0x00b40094, 0x01ea00d0, 0x011e0104, 0x01520138, 0x0184016c, 0x01b4019c, 0x01e401cc,
0x021402fc, 0x0240022a, 0x026c0256, 0x02940280, 0x02b602a6, 0x02d002c4, 0x02e802dc, 0x030003f4, 0x0216030c, 0x7014002a, 0x00210939, 0x20818208,
0x44a18226, 0x23200543, 0xdb5a0f82, 0x91002308, 0x51181100, 0x27850847, 0x0f822d20, 0x23821b20, 0x2209df42, 0x840f008f, 0x0023254d, 0x0030001c,
0x091d5918, 0x03230986, 0x820d0083, 0x431a2019, 0x3984057b, 0x2508e354, 0x0c00f803, 0x13822900, 0x18001a22, 0x1b200782, 0x200a3f74, 0x22198255,
0x502a001c, 0x2b200897, 0x1f21a582, 0x21118200, 0x1982d103, 0x8208f770, 0x083d433b, 0x82c50021, 0x00202219, 0x2025821b, 0x18178226, 0x210a7755,
0x4d84f201, 0x2c002522, 0x08205182, 0x26202182, 0x19240982, 0x1c002300, 0xf9434d90, 0xaf002308, 0x25410b00, 0x06e5410c, 0x82c90221, 0x41658917,
0x00210807, 0x262f8eb0, 0x0020001f, 0x821f001e, 0x20478d61, 0x247b8224, 0x001c002b, 0x20478452, 0x08377c29, 0x18002322, 0x1f229d82, 0x17827103,
0x25001822, 0xd55dc182, 0x9000210c, 0x1a242f8c, 0x2d002600, 0x1b246182, 0x0a00f401, 0xdb874d82, 0x45822420, 0x47822920, 0x1582ae20, 0x260b2541,
0x001d0026, 0x868f021d, 0x0dab4115, 0x2b8eaf20, 0x5b822320, 0xcf822e20, 0xff8c0920, 0x27002c25, 0x83006604, 0x00202213, 0x8371821a, 0x00202469,
0x820b0423, 0x002621a9, 0x0822d183, 0x17823000, 0x53001824, 0x35420700, 0x001c2608, 0x00d0032a, 0x200f8206, 0x2499841f, 0x00c50018, 0x08d97105,
0xf148ed20, 0x822c2006, 0x828020b1, 0x0018280b, 0x0023002c, 0x8235022b, 0x0713420b, 0x2f845120, 0x19822920, 0xae022a22, 0x18200b84, 0x2a242382,
0x0400ad02, 0x0b834782, 0x09825420, 0x83826782, 0x001e4008, 0x0066003e, 0x00a80088, 0x01e600c8, 0x01220104, 0x015a013e, 0x018e0174, 0x01c001a8,
0x02f001d8, 0x021c0206, 0x02460232, 0x02680258, 0x02860278, 0x02a20294, 0x02bc02b0, 0x00d002c6, 0x64130081, 0x2420084d, 0x1e200982, 0x1a205f82,
0x2a20dd82, 0x0d9b4118, 0x00850323, 0x20198210, 0x21eb8225, 0x41180008, 0x0223146d, 0x840f0042, 0x05334221, 0x24000822, 0x20200d84, 0x31240784,
0x41021c00, 0xf57b1f90, 0x0084220d, 0x0a554d0e, 0x5e000821, 0x7f820c57, 0x7f940e20, 0x23001826, 0x43022b00, 0x20213b82, 0x05374400, 0xbd822e20,
0x230cf752, 0x0d001c04, 0x0c115d18, 0x0321c18a, 0x201b82f9, 0x21398418, 0xf38f0008, 0x0c007e23, 0x09e54f00, 0x0b822320, 0x1b001b22, 0x2922a382,
0x19827902, 0x25476f8b, 0x822a2005, 0x82b020e5, 0x091b4e19, 0x1a205383, 0x23263782, 0xd4011c00, 0xc1820b00, 0x03821d20, 0x2b2a1583, 0x26002900,
0x1e002500, 0x17825404, 0x2d001822, 0x210fc177, 0x2f84fb03, 0x17842520, 0x230a1179, 0x0a002e01, 0x2111b141, 0x1582aa01, 0x2b821f20, 0x23001c26,
0x1f001a00, 0x20242182, 0xca022900, 0xa7831582, 0x8a001c21, 0xaf0223f3, 0x1f820900, 0x2d822920, 0x26001f25, 0x82002c00, 0x930121b7, 0x8f832182,
0x20229b83, 0x99821e00, 0x0700ee22, 0x25212584, 0x22418300, 0x8416031e, 0x08d5790f, 0x001a0123, 0x20c38206, 0x8229821c, 0x20dd826f, 0x22dd8806,
0x82b0020c, 0x0805411b, 0x82170321, 0x8218200d, 0x82232097, 0x042b2471, 0x4105000c, 0x35820755, 0x35850420, 0x00fa0322, 0x25220983, 0x89821b00,
0x95820320, 0x0f822520, 0x24000a2a, 0x4a003e00, 0x0c00da00, 0x18200982, 0x22206d82, 0x2950a582, 0x8424200f, 0x1b7218a5, 0x829d200f, 0x21198665,
0x0b82b102, 0x3d820820, 0x30001824, 0x41840300, 0xd2032c22, 0xd7830782, 0x13820820, 0x25001826, 0x91011e00, 0xcd831182, 0x82080141, 0x00032211,
0x241b821c, 0x01040001, 0x2639823c, 0x00270018, 0x821a0001, 0x8219206f, 0x821b2005, 0x001d241b, 0x821f001e, 0x002122c1, 0x20df8222, 0x202b8224,
0x34238226, 0x00290028, 0x002b002a, 0x002d002c, 0x002f002e, 0x00310030, 0x2cfa0500, 0x00ae8b9b,
};
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/FontAwesomeSolid.hpp
|
C++
|
gpl-3.0
| 1,544,163
|
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../common/TracySocket.hpp"
#include "../server/TracyVersion.hpp"
#include "HttpRequest.hpp"
#if defined _WIN32
# include <windows.h>
extern "C" typedef LONG (WINAPI *t_RtlGetVersion)( PRTL_OSVERSIONINFOW );
#elif defined __linux__
# include <sys/utsname.h>
#elif defined __APPLE__
# include "TargetConditionals.h"
#endif
static constexpr char CRLF[2] = { '\r', '\n' };
static const char* GetOsInfo()
{
static char buf[1024];
#if defined _WIN32
t_RtlGetVersion RtlGetVersion = (t_RtlGetVersion)GetProcAddress( GetModuleHandleA( "ntdll.dll" ), "RtlGetVersion" );
if( !RtlGetVersion )
{
# ifdef __MINGW32__
sprintf( buf, "Windows (MingW)" );
# else
sprintf( buf, "Windows" );
# endif
}
else
{
RTL_OSVERSIONINFOW ver = { sizeof( RTL_OSVERSIONINFOW ) };
RtlGetVersion( &ver );
# ifdef __MINGW32__
sprintf( buf, "Windows %i.%i.%i (MingW)", (int)ver.dwMajorVersion, (int)ver.dwMinorVersion, (int)ver.dwBuildNumber );
# else
sprintf( buf, "Windows %i.%i.%i", ver.dwMajorVersion, ver.dwMinorVersion, ver.dwBuildNumber );
# endif
}
#elif defined __linux__
struct utsname utsName;
uname( &utsName );
# if defined __ANDROID__
sprintf( buf, "Linux %s (Android)", utsName.release );
# else
sprintf( buf, "Linux %s", utsName.release );
# endif
#elif defined __APPLE__
# if TARGET_OS_IPHONE == 1
sprintf( buf, "Darwin (iOS)" );
# elif TARGET_OS_MAC == 1
sprintf( buf, "Darwin (OSX)" );
# else
sprintf( buf, "Darwin (unknown)" );
# endif
#elif defined __DragonFly__
sprintf( buf, "BSD (DragonFly)" );
#elif defined __FreeBSD__
sprintf( buf, "BSD (FreeBSD)" );
#elif defined __NetBSD__
sprintf( buf, "BSD (NetBSD)" );
#elif defined __OpenBSD__
sprintf( buf, "BSD (OpenBSD)" );
#else
sprintf( buf, "unknown" );
#endif
return buf;
}
void HttpRequest( const char* server, const char* resource, int port, std::function<void(int, char*)> cb )
{
tracy::Socket sock;
if( !sock.ConnectBlocking( server, port ) ) return;
char request[4096];
const auto len = sprintf( request, "GET %s HTTP/1.1\r\nHost: %s\r\nUser-Agent: Tracy Profiler %i.%i.%i (%s)\r\nConnection: close\r\nCache-Control: no-cache, no-store, must-revalidate\r\n\r\n", resource, server, tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch, GetOsInfo() );
sock.Send( request, len );
char response[4096];
const auto sz = sock.ReadUpTo( response, 4096, 15 );
if( sz < 13 ) return;
if( memcmp( response, "HTTP/1.1 200", 12 ) != 0 ) return;
auto hdr = response + 13;
int contentLength = 0;
for(;;)
{
while( memcmp( hdr, CRLF, 2 ) != 0 ) hdr++;
hdr += 2;
if( memcmp( hdr, "Content-Length: ", 16 ) == 0 )
{
hdr += 16;
contentLength = atoi( hdr );
break;
}
}
assert( contentLength != 0 );
for(;;)
{
while( memcmp( hdr, CRLF, 2 ) != 0 ) hdr++;
hdr += 2;
if( memcmp( hdr, CRLF, 2 ) == 0 )
{
hdr += 2;
break;
}
hdr += 2;
}
const auto hdrSize = hdr - response;
const auto partSize = sz - hdrSize;
char* data = new char[contentLength];
memcpy( data, hdr, partSize );
auto remaining = contentLength - partSize;
if( remaining > 0 ) sock.Read( data + partSize, remaining, 15 );
cb( contentLength, data );
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/HttpRequest.cpp
|
C++
|
gpl-3.0
| 3,538
|
#ifndef __HTTPREQUEST_HPP__
#define __HTTPREQUEST_HPP__
#include <functional>
void HttpRequest( const char* server, const char* resource, int port, std::function<void(int, char*)> cb );
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/HttpRequest.hpp
|
C++
|
gpl-3.0
| 196
|
#include "NativeWindow.hpp"
#include <GLFW/glfw3.h>
#ifdef _WIN32
# define GLFW_EXPOSE_NATIVE_WIN32
# include <GLFW/glfw3native.h>
#elif defined __linux__
# ifdef DISPLAY_SERVER_X11
# define GLFW_EXPOSE_NATIVE_X11
# elif defined DISPLAY_SERVER_WAYLAND
# define GLFW_EXPOSE_NATIVE_WAYLAND
# else
# error "unsupported linux display server"
# endif
# include <GLFW/glfw3native.h>
#endif
extern GLFWwindow* s_glfwWindow;
void* GetMainWindowNative()
{
#ifdef _WIN32
return (void*)glfwGetWin32Window( s_glfwWindow );
#elif defined __linux__
# ifdef DISPLAY_SERVER_X11
return (void*)glfwGetX11Window( s_glfwWindow );
# elif defined DISPLAY_SERVER_WAYLAND
return (void*)glfwGetWaylandWindow( s_glfwWindow );
# endif
#else
return nullptr;
#endif
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/NativeWindow.cpp
|
C++
|
gpl-3.0
| 778
|
#ifndef __NATIVEWINDOW_HPP__
#define __NATIVEWINDOW_HPP__
void* GetMainWindowNative();
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/NativeWindow.hpp
|
C++
|
gpl-3.0
| 96
|
#ifdef _WIN32
# include <ws2tcpip.h>
#else
# include <arpa/inet.h>
# include <sys/socket.h>
# include <netdb.h>
#endif
#include "ResolvService.hpp"
ResolvService::ResolvService( uint16_t port )
: m_exit( false )
, m_port( port )
, m_thread( [this] { Worker(); } )
{
}
ResolvService::~ResolvService()
{
m_exit.store( true, std::memory_order_relaxed );
m_cv.notify_one();
m_thread.join();
}
void ResolvService::Query( uint32_t ip, const std::function<void(std::string&&)>& callback )
{
std::lock_guard<std::mutex> lock( m_lock );
m_queue.emplace_back( QueueItem { ip, callback } );
m_cv.notify_one();
}
void ResolvService::Worker()
{
struct sockaddr_in addr = {};
addr.sin_family = AF_INET;
addr.sin_port = htons( m_port );
char buf[128];
for(;;)
{
std::unique_lock<std::mutex> lock( m_lock );
m_cv.wait( lock, [this] { return !m_queue.empty() || m_exit.load( std::memory_order_relaxed ); } );
if( m_exit.load( std::memory_order_relaxed ) ) return;
auto query = m_queue.back();
m_queue.pop_back();
lock.unlock();
addr.sin_addr.s_addr = query.ip;
if( getnameinfo( (const struct sockaddr*)&addr, sizeof( sockaddr_in ), buf, 128, nullptr, 0, NI_NOFQDN ) != 0 )
{
inet_ntop( AF_INET, &query.ip, buf, 17 );
}
query.callback( buf );
}
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/ResolvService.cpp
|
C++
|
gpl-3.0
| 1,405
|
#ifndef __RESOLVSERVICE_HPP__
#define __RESOLVSERVICE_HPP__
#include <atomic>
#include <condition_variable>
#include <functional>
#include <mutex>
#include <stdint.h>
#include <string>
#include <thread>
#include <vector>
class ResolvService
{
struct QueueItem
{
uint32_t ip;
std::function<void(std::string&&)> callback;
};
public:
ResolvService( uint16_t port );
~ResolvService();
void Query( uint32_t ip, const std::function<void(std::string&&)>& callback );
private:
void Worker();
std::atomic<bool> m_exit;
std::mutex m_lock;
std::condition_variable m_cv;
std::vector<QueueItem> m_queue;
uint16_t m_port;
std::thread m_thread;
};
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/ResolvService.hpp
|
C++
|
gpl-3.0
| 715
|
// File: 'icon.png' (854 bytes)
// Exported using binary_to_compressed_c.cpp
static const unsigned int Icon_size = 854;
static const unsigned int Icon_data[856/4] =
{
0x474e5089, 0x0a1a0a0d, 0x0d000000, 0x52444849, 0x00010000, 0x00010000, 0x00000308, 0x58ac6b00, 0x00000054, 0x59487009, 0x0a000073, 0x0a000000,
0x82430100, 0x00003ccc, 0x42730300, 0x08085449, 0x4fe1db08, 0x000000e0, 0x544c50b4, 0x00000045, 0x00000000, 0x00000000, 0xffe4d600, 0xb9f1d1bd,
0xc8b0efcf, 0xe8c5adea, 0x9de7c4ab, 0xb191dfb9, 0xcda27ed8, 0x72c99e77, 0x9a72c79a, 0xbc8b5fc6, 0x56bc8b5e, 0x713cb684, 0xa67039a7, 0x35a66e37,
0x6b34a46d, 0xa36b33a3, 0x009d642a, 0x6126d66e, 0xcc69009b, 0x00cb6800, 0x6300c364, 0xbc6000c1, 0x19ba6000, 0x5b009458, 0xab5800b1, 0x00a95700,
0x5300a655, 0x8e4f0ea0, 0x008e4f0d, 0x5100a052, 0x9d51009e, 0x00994e00, 0x4d00974d, 0x944c0096, 0x00914b00, 0x4700914a, 0x8a47008b, 0x00894700,
0x45008946, 0x14121186, 0x01110f0e, 0x00000101, 0x56a20400, 0x0000006f, 0x4e527404, 0x521b0053, 0xb06c3055, 0x020000a6, 0x41444929, 0xedda7854,
0x2c95c5db, 0xc1441449, 0x66666a62, 0xf5fd6666, 0xe7ce5a9a, 0xc4dce8c8, 0xd822bb2b, 0x24378fd6, 0x3db35249, 0x027f3561, 0x584d7d68, 0x0000002d,
0x00000000, 0x005f8000, 0xf7023f3e, 0xdef00099, 0xdffbdc09, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x0587f400, 0xe011afd6, 0x0ec0adf0, 0x700004eb, 0xb7585fbb, 0x6e5c0335, 0x3e65d616, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0xac2d3c78, 0x0c013ac7, 0xd9e75b23, 0xf3b37c5d, 0x01b2b6ec, 0x9beded6a, 0xbf8f3f15, 0xce3db801, 0xc00436ee, 0x277666c9, 0x000001a5,
0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xa39b8000, 0x078a6eec, 0xe8008c30, 0xb30ee6f5, 0x4af5eb9b, 0xf3371807, 0xa74cdd96,
0xeae00313, 0x40aba32c, 0x199bdb00, 0x0009976d, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0e000000, 0x883a32f6, 0x01186001,
0x568d1dd0, 0x195a3236, 0x0021ba8d, 0x5fe61dc6, 0xbc00a35f, 0x25ec543c, 0x66e5c018, 0x05cb2ec5, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0xbb153bd7, 0x1860040e, 0xbb3d3001, 0x85b15ab0, 0x0038e9d9, 0x2adea6e3, 0x00e9d536, 0xbbb00608, 0xe16edc99, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x53f3c000, 0x9186cf72, 0xc5830070, 0xe4b5a5c5, 0x07171696, 0xadc600c1, 0xdeb725bf,
0x1e200719, 0x524efdc0, 0xee0161f7, 0x03ba9336, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x11000000, 0x92ef5e00, 0xc48c357a,
0x4e5f9804, 0x804cbe6e, 0x00000202, 0x00000000, 0x00000000, 0x00000000, 0x0000043f, 0x00000000, 0x00000000, 0xe047e7c0, 0xe200133e, 0x00000007,
0x00000000, 0xcd43f000, 0x6cd584f6, 0x24927c4c, 0x8a1907fd, 0xabe6918e, 0x00003480, 0x45490000, 0x42ae444e, 0x00008260,
};
|
whupdup/frame
|
real/third_party/tracy/profiler/src/icon.hpp
|
C++
|
gpl-3.0
| 2,829
|
// dear imgui: Platform Backend for GLFW
// This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan, WebGPU..)
// (Info: GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.)
// (Requires: GLFW 3.1+. Prefer GLFW 3.3+ for full feature support.)
// Implemented features:
// [X] Platform: Clipboard support.
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy GLFW_KEY_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set]
// [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange' (note: the resizing cursors requires GLFW 3.4+).
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
// Issues:
// [ ] Platform: Multi-viewport support: ParentViewportID not honored, and so io.ConfigViewportsNoDefaultParent has no effect (minor).
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
// CHANGELOG
// (minor and older changes stripped away, please see git history for details)
// 2022-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
// 2022-04-30: Inputs: Fixed ImGui_ImplGlfw_TranslateUntranslatedKey() for lower case letters on OSX.
// 2022-03-23: Inputs: Fixed a regression in 1.87 which resulted in keyboard modifiers events being reported incorrectly on Linux/X11.
// 2022-02-07: Added ImGui_ImplGlfw_InstallCallbacks()/ImGui_ImplGlfw_RestoreCallbacks() helpers to facilitate user installing callbacks after initializing backend.
// 2022-01-26: Inputs: replaced short-lived io.AddKeyModsEvent() (added two weeks ago)with io.AddKeyEvent() using ImGuiKey_ModXXX flags. Sorry for the confusion.
// 2021-01-20: Inputs: calling new io.AddKeyAnalogEvent() for gamepad support, instead of writing directly to io.NavInputs[].
// 2022-01-17: Inputs: calling new io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() API (1.87+).
// 2022-01-17: Inputs: always update key mods next and before key event (not in NewFrame) to fix input queue with very low framerates.
// 2022-01-12: *BREAKING CHANGE*: Now using glfwSetCursorPosCallback(). If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetCursorPosCallback() and forward it to the backend via ImGui_ImplGlfw_CursorPosCallback().
// 2022-01-10: Inputs: calling new io.AddKeyEvent(), io.AddKeyModsEvent() + io.SetKeyEventNativeData() API (1.87+). Support for full ImGuiKey range.
// 2022-01-05: Inputs: Converting GLFW untranslated keycodes back to translated keycodes (in the ImGui_ImplGlfw_KeyCallback() function) in order to match the behavior of every other backend, and facilitate the use of GLFW with lettered-shortcuts API.
// 2021-08-17: *BREAKING CHANGE*: Now using glfwSetWindowFocusCallback() to calling io.AddFocusEvent(). If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetWindowFocusCallback() and forward it to the backend via ImGui_ImplGlfw_WindowFocusCallback().
// 2021-07-29: *BREAKING CHANGE*: Now using glfwSetCursorEnterCallback(). MousePos is correctly reported when the host platform window is hovered but not focused. If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetWindowFocusCallback() callback and forward it to the backend via ImGui_ImplGlfw_CursorEnterCallback().
// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX).
// 2020-01-17: Inputs: Disable error callback while assigning mouse cursors because some X11 setup don't have them and it generates errors.
// 2019-12-05: Inputs: Added support for new mouse cursors added in GLFW 3.4+ (resizing cursors, not allowed cursor).
// 2019-10-18: Misc: Previously installed user callbacks are now restored on shutdown.
// 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter.
// 2019-05-11: Inputs: Don't filter value from character callback before calling AddInputCharacter().
// 2019-03-12: Misc: Preserve DisplayFramebufferScale when main window is minimized.
// 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
// 2018-11-07: Inputs: When installing our GLFW callbacks, we save user's previously installed ones - if any - and chain call them.
// 2018-08-01: Inputs: Workaround for Emscripten which doesn't seem to handle focus related calls.
// 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor.
// 2018-06-08: Misc: Extracted imgui_impl_glfw.cpp/.h away from the old combined GLFW+OpenGL/Vulkan examples.
// 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
// 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value, passed to glfwSetCursor()).
// 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves.
// 2018-02-06: Inputs: Added mapping for ImGuiKey_Space.
// 2018-01-25: Inputs: Added gamepad support if ImGuiConfigFlags_NavEnableGamepad is set.
// 2018-01-25: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set).
// 2018-01-20: Inputs: Added Horizontal Mouse Wheel support.
// 2018-01-18: Inputs: Added mapping for ImGuiKey_Insert.
// 2017-08-25: Inputs: MousePos set to -FLT_MAX,-FLT_MAX when mouse is unavailable/missing (instead of -1,-1).
// 2016-10-15: Misc: Added a void* user_data parameter to Clipboard function handlers.
#include "imgui.h"
#include "imgui_impl_glfw.h"
// Clang warnings with -Weverything
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast
#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
#if __has_warning("-Wzero-as-null-pointer-constant")
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif
#endif
// GLFW
#include <GLFW/glfw3.h>
#ifdef _WIN32
#undef APIENTRY
#define GLFW_EXPOSE_NATIVE_WIN32
#include <GLFW/glfw3native.h> // for glfwGetWin32Window()
#endif
#ifdef __APPLE__
#define GLFW_EXPOSE_NATIVE_COCOA
#include <GLFW/glfw3native.h> // for glfwGetCocoaWindow()
#endif
#define GLFW_HAS_WINDOW_TOPMOST (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ GLFW_FLOATING
#define GLFW_HAS_WINDOW_HOVERED (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ GLFW_HOVERED
#define GLFW_HAS_WINDOW_ALPHA (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwSetWindowOpacity
#define GLFW_HAS_PER_MONITOR_DPI (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwGetMonitorContentScale
#define GLFW_HAS_VULKAN (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ glfwCreateWindowSurface
#define GLFW_HAS_FOCUS_WINDOW (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ glfwFocusWindow
#define GLFW_HAS_FOCUS_ON_SHOW (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ GLFW_FOCUS_ON_SHOW
#define GLFW_HAS_MONITOR_WORK_AREA (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwGetMonitorWorkarea
#define GLFW_HAS_OSX_WINDOW_POS_FIX (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 + GLFW_VERSION_REVISION * 10 >= 3310) // 3.3.1+ Fixed: Resizing window repositions it on MacOS #1553
#ifdef GLFW_RESIZE_NESW_CURSOR // Let's be nice to people who pulled GLFW between 2019-04-16 (3.4 define) and 2019-11-29 (cursors defines) // FIXME: Remove when GLFW 3.4 is released?
#define GLFW_HAS_NEW_CURSORS (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3400) // 3.4+ GLFW_RESIZE_ALL_CURSOR, GLFW_RESIZE_NESW_CURSOR, GLFW_RESIZE_NWSE_CURSOR, GLFW_NOT_ALLOWED_CURSOR
#else
#define GLFW_HAS_NEW_CURSORS (0)
#endif
#ifdef GLFW_MOUSE_PASSTHROUGH // Let's be nice to people who pulled GLFW between 2019-04-16 (3.4 define) and 2020-07-17 (passthrough)
#define GLFW_HAS_MOUSE_PASSTHROUGH (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3400) // 3.4+ GLFW_MOUSE_PASSTHROUGH
#else
#define GLFW_HAS_MOUSE_PASSTHROUGH (0)
#endif
#define GLFW_HAS_GAMEPAD_API (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwGetGamepadState() new api
#define GLFW_HAS_GET_KEY_NAME (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ glfwGetKeyName()
// GLFW data
enum GlfwClientApi
{
GlfwClientApi_Unknown,
GlfwClientApi_OpenGL,
GlfwClientApi_Vulkan
};
struct ImGui_ImplGlfw_Data
{
GLFWwindow* Window;
GlfwClientApi ClientApi;
double Time;
GLFWwindow* MouseWindow;
GLFWcursor* MouseCursors[ImGuiMouseCursor_COUNT];
ImVec2 LastValidMousePos;
GLFWwindow* KeyOwnerWindows[GLFW_KEY_LAST];
bool InstalledCallbacks;
bool WantUpdateMonitors;
// Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
GLFWwindowfocusfun PrevUserCallbackWindowFocus;
GLFWcursorposfun PrevUserCallbackCursorPos;
GLFWcursorenterfun PrevUserCallbackCursorEnter;
GLFWmousebuttonfun PrevUserCallbackMousebutton;
GLFWscrollfun PrevUserCallbackScroll;
GLFWkeyfun PrevUserCallbackKey;
GLFWcharfun PrevUserCallbackChar;
GLFWmonitorfun PrevUserCallbackMonitor;
ImGui_ImplGlfw_Data() { memset((void*)this, 0, sizeof(*this)); }
};
// Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
// FIXME: multi-context support is not well tested and probably dysfunctional in this backend.
// - Because glfwPollEvents() process all windows and some events may be called outside of it, you will need to register your own callbacks
// (passing install_callbacks=false in ImGui_ImplGlfw_InitXXX functions), set the current dear imgui context and then call our callbacks.
// - Otherwise we may need to store a GLFWWindow* -> ImGuiContext* map and handle this in the backend, adding a little bit of extra complexity to it.
// FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context.
static ImGui_ImplGlfw_Data* ImGui_ImplGlfw_GetBackendData()
{
return ImGui::GetCurrentContext() ? (ImGui_ImplGlfw_Data*)ImGui::GetIO().BackendPlatformUserData : NULL;
}
// Forward Declarations
static void ImGui_ImplGlfw_UpdateMonitors();
static void ImGui_ImplGlfw_InitPlatformInterface();
static void ImGui_ImplGlfw_ShutdownPlatformInterface();
// Functions
static const char* ImGui_ImplGlfw_GetClipboardText(void* user_data)
{
return glfwGetClipboardString((GLFWwindow*)user_data);
}
static void ImGui_ImplGlfw_SetClipboardText(void* user_data, const char* text)
{
glfwSetClipboardString((GLFWwindow*)user_data, text);
}
static ImGuiKey ImGui_ImplGlfw_KeyToImGuiKey(int key)
{
switch (key)
{
case GLFW_KEY_TAB: return ImGuiKey_Tab;
case GLFW_KEY_LEFT: return ImGuiKey_LeftArrow;
case GLFW_KEY_RIGHT: return ImGuiKey_RightArrow;
case GLFW_KEY_UP: return ImGuiKey_UpArrow;
case GLFW_KEY_DOWN: return ImGuiKey_DownArrow;
case GLFW_KEY_PAGE_UP: return ImGuiKey_PageUp;
case GLFW_KEY_PAGE_DOWN: return ImGuiKey_PageDown;
case GLFW_KEY_HOME: return ImGuiKey_Home;
case GLFW_KEY_END: return ImGuiKey_End;
case GLFW_KEY_INSERT: return ImGuiKey_Insert;
case GLFW_KEY_DELETE: return ImGuiKey_Delete;
case GLFW_KEY_BACKSPACE: return ImGuiKey_Backspace;
case GLFW_KEY_SPACE: return ImGuiKey_Space;
case GLFW_KEY_ENTER: return ImGuiKey_Enter;
case GLFW_KEY_ESCAPE: return ImGuiKey_Escape;
case GLFW_KEY_APOSTROPHE: return ImGuiKey_Apostrophe;
case GLFW_KEY_COMMA: return ImGuiKey_Comma;
case GLFW_KEY_MINUS: return ImGuiKey_Minus;
case GLFW_KEY_PERIOD: return ImGuiKey_Period;
case GLFW_KEY_SLASH: return ImGuiKey_Slash;
case GLFW_KEY_SEMICOLON: return ImGuiKey_Semicolon;
case GLFW_KEY_EQUAL: return ImGuiKey_Equal;
case GLFW_KEY_LEFT_BRACKET: return ImGuiKey_LeftBracket;
case GLFW_KEY_BACKSLASH: return ImGuiKey_Backslash;
case GLFW_KEY_RIGHT_BRACKET: return ImGuiKey_RightBracket;
case GLFW_KEY_GRAVE_ACCENT: return ImGuiKey_GraveAccent;
case GLFW_KEY_CAPS_LOCK: return ImGuiKey_CapsLock;
case GLFW_KEY_SCROLL_LOCK: return ImGuiKey_ScrollLock;
case GLFW_KEY_NUM_LOCK: return ImGuiKey_NumLock;
case GLFW_KEY_PRINT_SCREEN: return ImGuiKey_PrintScreen;
case GLFW_KEY_PAUSE: return ImGuiKey_Pause;
case GLFW_KEY_KP_0: return ImGuiKey_Keypad0;
case GLFW_KEY_KP_1: return ImGuiKey_Keypad1;
case GLFW_KEY_KP_2: return ImGuiKey_Keypad2;
case GLFW_KEY_KP_3: return ImGuiKey_Keypad3;
case GLFW_KEY_KP_4: return ImGuiKey_Keypad4;
case GLFW_KEY_KP_5: return ImGuiKey_Keypad5;
case GLFW_KEY_KP_6: return ImGuiKey_Keypad6;
case GLFW_KEY_KP_7: return ImGuiKey_Keypad7;
case GLFW_KEY_KP_8: return ImGuiKey_Keypad8;
case GLFW_KEY_KP_9: return ImGuiKey_Keypad9;
case GLFW_KEY_KP_DECIMAL: return ImGuiKey_KeypadDecimal;
case GLFW_KEY_KP_DIVIDE: return ImGuiKey_KeypadDivide;
case GLFW_KEY_KP_MULTIPLY: return ImGuiKey_KeypadMultiply;
case GLFW_KEY_KP_SUBTRACT: return ImGuiKey_KeypadSubtract;
case GLFW_KEY_KP_ADD: return ImGuiKey_KeypadAdd;
case GLFW_KEY_KP_ENTER: return ImGuiKey_KeypadEnter;
case GLFW_KEY_KP_EQUAL: return ImGuiKey_KeypadEqual;
case GLFW_KEY_LEFT_SHIFT: return ImGuiKey_LeftShift;
case GLFW_KEY_LEFT_CONTROL: return ImGuiKey_LeftCtrl;
case GLFW_KEY_LEFT_ALT: return ImGuiKey_LeftAlt;
case GLFW_KEY_LEFT_SUPER: return ImGuiKey_LeftSuper;
case GLFW_KEY_RIGHT_SHIFT: return ImGuiKey_RightShift;
case GLFW_KEY_RIGHT_CONTROL: return ImGuiKey_RightCtrl;
case GLFW_KEY_RIGHT_ALT: return ImGuiKey_RightAlt;
case GLFW_KEY_RIGHT_SUPER: return ImGuiKey_RightSuper;
case GLFW_KEY_MENU: return ImGuiKey_Menu;
case GLFW_KEY_0: return ImGuiKey_0;
case GLFW_KEY_1: return ImGuiKey_1;
case GLFW_KEY_2: return ImGuiKey_2;
case GLFW_KEY_3: return ImGuiKey_3;
case GLFW_KEY_4: return ImGuiKey_4;
case GLFW_KEY_5: return ImGuiKey_5;
case GLFW_KEY_6: return ImGuiKey_6;
case GLFW_KEY_7: return ImGuiKey_7;
case GLFW_KEY_8: return ImGuiKey_8;
case GLFW_KEY_9: return ImGuiKey_9;
case GLFW_KEY_A: return ImGuiKey_A;
case GLFW_KEY_B: return ImGuiKey_B;
case GLFW_KEY_C: return ImGuiKey_C;
case GLFW_KEY_D: return ImGuiKey_D;
case GLFW_KEY_E: return ImGuiKey_E;
case GLFW_KEY_F: return ImGuiKey_F;
case GLFW_KEY_G: return ImGuiKey_G;
case GLFW_KEY_H: return ImGuiKey_H;
case GLFW_KEY_I: return ImGuiKey_I;
case GLFW_KEY_J: return ImGuiKey_J;
case GLFW_KEY_K: return ImGuiKey_K;
case GLFW_KEY_L: return ImGuiKey_L;
case GLFW_KEY_M: return ImGuiKey_M;
case GLFW_KEY_N: return ImGuiKey_N;
case GLFW_KEY_O: return ImGuiKey_O;
case GLFW_KEY_P: return ImGuiKey_P;
case GLFW_KEY_Q: return ImGuiKey_Q;
case GLFW_KEY_R: return ImGuiKey_R;
case GLFW_KEY_S: return ImGuiKey_S;
case GLFW_KEY_T: return ImGuiKey_T;
case GLFW_KEY_U: return ImGuiKey_U;
case GLFW_KEY_V: return ImGuiKey_V;
case GLFW_KEY_W: return ImGuiKey_W;
case GLFW_KEY_X: return ImGuiKey_X;
case GLFW_KEY_Y: return ImGuiKey_Y;
case GLFW_KEY_Z: return ImGuiKey_Z;
case GLFW_KEY_F1: return ImGuiKey_F1;
case GLFW_KEY_F2: return ImGuiKey_F2;
case GLFW_KEY_F3: return ImGuiKey_F3;
case GLFW_KEY_F4: return ImGuiKey_F4;
case GLFW_KEY_F5: return ImGuiKey_F5;
case GLFW_KEY_F6: return ImGuiKey_F6;
case GLFW_KEY_F7: return ImGuiKey_F7;
case GLFW_KEY_F8: return ImGuiKey_F8;
case GLFW_KEY_F9: return ImGuiKey_F9;
case GLFW_KEY_F10: return ImGuiKey_F10;
case GLFW_KEY_F11: return ImGuiKey_F11;
case GLFW_KEY_F12: return ImGuiKey_F12;
default: return ImGuiKey_None;
}
}
static int ImGui_ImplGlfw_KeyToModifier(int key)
{
if (key == GLFW_KEY_LEFT_CONTROL || key == GLFW_KEY_RIGHT_CONTROL)
return GLFW_MOD_CONTROL;
if (key == GLFW_KEY_LEFT_SHIFT || key == GLFW_KEY_RIGHT_SHIFT)
return GLFW_MOD_SHIFT;
if (key == GLFW_KEY_LEFT_ALT || key == GLFW_KEY_RIGHT_ALT)
return GLFW_MOD_ALT;
if (key == GLFW_KEY_LEFT_SUPER || key == GLFW_KEY_RIGHT_SUPER)
return GLFW_MOD_SUPER;
return 0;
}
static void ImGui_ImplGlfw_UpdateKeyModifiers(int mods)
{
ImGuiIO& io = ImGui::GetIO();
io.AddKeyEvent(ImGuiKey_ModCtrl, (mods & GLFW_MOD_CONTROL) != 0);
io.AddKeyEvent(ImGuiKey_ModShift, (mods & GLFW_MOD_SHIFT) != 0);
io.AddKeyEvent(ImGuiKey_ModAlt, (mods & GLFW_MOD_ALT) != 0);
io.AddKeyEvent(ImGuiKey_ModSuper, (mods & GLFW_MOD_SUPER) != 0);
}
void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackMousebutton != NULL && window == bd->Window)
bd->PrevUserCallbackMousebutton(window, button, action, mods);
ImGui_ImplGlfw_UpdateKeyModifiers(mods);
ImGuiIO& io = ImGui::GetIO();
if (button >= 0 && button < ImGuiMouseButton_COUNT)
io.AddMouseButtonEvent(button, action == GLFW_PRESS);
}
void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackScroll != NULL && window == bd->Window)
bd->PrevUserCallbackScroll(window, xoffset, yoffset);
ImGuiIO& io = ImGui::GetIO();
io.AddMouseWheelEvent((float)xoffset, (float)yoffset);
}
static int ImGui_ImplGlfw_TranslateUntranslatedKey(int key, int scancode)
{
#if GLFW_HAS_GET_KEY_NAME && !defined(__EMSCRIPTEN__)
// GLFW 3.1+ attempts to "untranslate" keys, which goes the opposite of what every other framework does, making using lettered shortcuts difficult.
// (It had reasons to do so: namely GLFW is/was more likely to be used for WASD-type game controls rather than lettered shortcuts, but IHMO the 3.1 change could have been done differently)
// See https://github.com/glfw/glfw/issues/1502 for details.
// Adding a workaround to undo this (so our keys are translated->untranslated->translated, likely a lossy process).
// This won't cover edge cases but this is at least going to cover common cases.
if (key >= GLFW_KEY_KP_0 && key <= GLFW_KEY_KP_EQUAL)
return key;
const char* key_name = glfwGetKeyName(key, scancode);
if (key_name && key_name[0] != 0 && key_name[1] == 0)
{
const char char_names[] = "`-=[]\\,;\'./";
const int char_keys[] = { GLFW_KEY_GRAVE_ACCENT, GLFW_KEY_MINUS, GLFW_KEY_EQUAL, GLFW_KEY_LEFT_BRACKET, GLFW_KEY_RIGHT_BRACKET, GLFW_KEY_BACKSLASH, GLFW_KEY_COMMA, GLFW_KEY_SEMICOLON, GLFW_KEY_APOSTROPHE, GLFW_KEY_PERIOD, GLFW_KEY_SLASH, 0 };
IM_ASSERT(IM_ARRAYSIZE(char_names) == IM_ARRAYSIZE(char_keys));
if (key_name[0] >= '0' && key_name[0] <= '9') { key = GLFW_KEY_0 + (key_name[0] - '0'); }
else if (key_name[0] >= 'A' && key_name[0] <= 'Z') { key = GLFW_KEY_A + (key_name[0] - 'A'); }
else if (key_name[0] >= 'a' && key_name[0] <= 'z') { key = GLFW_KEY_A + (key_name[0] - 'a'); }
else if (const char* p = strchr(char_names, key_name[0])) { key = char_keys[p - char_names]; }
}
// if (action == GLFW_PRESS) printf("key %d scancode %d name '%s'\n", key, scancode, key_name);
#else
IM_UNUSED(scancode);
#endif
return key;
}
void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int keycode, int scancode, int action, int mods)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackKey != NULL && window == bd->Window)
bd->PrevUserCallbackKey(window, keycode, scancode, action, mods);
if (action != GLFW_PRESS && action != GLFW_RELEASE)
return;
// Workaround: X11 does not include current pressed/released modifier key in 'mods' flags. https://github.com/glfw/glfw/issues/1630
if (int keycode_to_mod = ImGui_ImplGlfw_KeyToModifier(keycode))
mods = (action == GLFW_PRESS) ? (mods | keycode_to_mod) : (mods & ~keycode_to_mod);
ImGui_ImplGlfw_UpdateKeyModifiers(mods);
if (keycode >= 0 && keycode < IM_ARRAYSIZE(bd->KeyOwnerWindows))
bd->KeyOwnerWindows[keycode] = (action == GLFW_PRESS) ? window : NULL;
keycode = ImGui_ImplGlfw_TranslateUntranslatedKey(keycode, scancode);
ImGuiIO& io = ImGui::GetIO();
ImGuiKey imgui_key = ImGui_ImplGlfw_KeyToImGuiKey(keycode);
io.AddKeyEvent(imgui_key, (action == GLFW_PRESS));
io.SetKeyEventNativeData(imgui_key, keycode, scancode); // To support legacy indexing (<1.87 user code)
}
void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window, int focused)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackWindowFocus != NULL && window == bd->Window)
bd->PrevUserCallbackWindowFocus(window, focused);
ImGuiIO& io = ImGui::GetIO();
io.AddFocusEvent(focused != 0);
}
void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window, double x, double y)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackCursorPos != NULL && window == bd->Window)
bd->PrevUserCallbackCursorPos(window, x, y);
ImGuiIO& io = ImGui::GetIO();
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
{
int window_x, window_y;
glfwGetWindowPos(window, &window_x, &window_y);
x += window_x;
y += window_y;
}
io.AddMousePosEvent((float)x, (float)y);
bd->LastValidMousePos = ImVec2((float)x, (float)y);
}
// Workaround: X11 seems to send spurious Leave/Enter events which would make us lose our position,
// so we back it up and restore on Leave/Enter (see https://github.com/ocornut/imgui/issues/4984)
void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window, int entered)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackCursorEnter != NULL && window == bd->Window)
bd->PrevUserCallbackCursorEnter(window, entered);
ImGuiIO& io = ImGui::GetIO();
if (entered)
{
bd->MouseWindow = window;
io.AddMousePosEvent(bd->LastValidMousePos.x, bd->LastValidMousePos.y);
}
else if (!entered && bd->MouseWindow == window)
{
bd->LastValidMousePos = io.MousePos;
bd->MouseWindow = NULL;
io.AddMousePosEvent(-FLT_MAX, -FLT_MAX);
}
}
void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (bd->PrevUserCallbackChar != NULL && window == bd->Window)
bd->PrevUserCallbackChar(window, c);
ImGuiIO& io = ImGui::GetIO();
io.AddInputCharacter(c);
}
void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor*, int)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
bd->WantUpdateMonitors = true;
}
void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
IM_ASSERT(bd->InstalledCallbacks == false && "Callbacks already installed!");
IM_ASSERT(bd->Window == window);
bd->PrevUserCallbackWindowFocus = glfwSetWindowFocusCallback(window, ImGui_ImplGlfw_WindowFocusCallback);
bd->PrevUserCallbackCursorEnter = glfwSetCursorEnterCallback(window, ImGui_ImplGlfw_CursorEnterCallback);
bd->PrevUserCallbackCursorPos = glfwSetCursorPosCallback(window, ImGui_ImplGlfw_CursorPosCallback);
bd->PrevUserCallbackMousebutton = glfwSetMouseButtonCallback(window, ImGui_ImplGlfw_MouseButtonCallback);
bd->PrevUserCallbackScroll = glfwSetScrollCallback(window, ImGui_ImplGlfw_ScrollCallback);
bd->PrevUserCallbackKey = glfwSetKeyCallback(window, ImGui_ImplGlfw_KeyCallback);
bd->PrevUserCallbackChar = glfwSetCharCallback(window, ImGui_ImplGlfw_CharCallback);
bd->PrevUserCallbackMonitor = glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
bd->InstalledCallbacks = true;
}
void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
IM_ASSERT(bd->InstalledCallbacks == true && "Callbacks not installed!");
IM_ASSERT(bd->Window == window);
glfwSetWindowFocusCallback(window, bd->PrevUserCallbackWindowFocus);
glfwSetCursorEnterCallback(window, bd->PrevUserCallbackCursorEnter);
glfwSetCursorPosCallback(window, bd->PrevUserCallbackCursorPos);
glfwSetMouseButtonCallback(window, bd->PrevUserCallbackMousebutton);
glfwSetScrollCallback(window, bd->PrevUserCallbackScroll);
glfwSetKeyCallback(window, bd->PrevUserCallbackKey);
glfwSetCharCallback(window, bd->PrevUserCallbackChar);
glfwSetMonitorCallback(bd->PrevUserCallbackMonitor);
bd->InstalledCallbacks = false;
bd->PrevUserCallbackWindowFocus = NULL;
bd->PrevUserCallbackCursorEnter = NULL;
bd->PrevUserCallbackCursorPos = NULL;
bd->PrevUserCallbackMousebutton = NULL;
bd->PrevUserCallbackScroll = NULL;
bd->PrevUserCallbackKey = NULL;
bd->PrevUserCallbackChar = NULL;
bd->PrevUserCallbackMonitor = NULL;
}
static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, GlfwClientApi client_api)
{
ImGuiIO& io = ImGui::GetIO();
IM_ASSERT(io.BackendPlatformUserData == NULL && "Already initialized a platform backend!");
// Setup backend capabilities flags
ImGui_ImplGlfw_Data* bd = IM_NEW(ImGui_ImplGlfw_Data)();
io.BackendPlatformUserData = (void*)bd;
io.BackendPlatformName = "imgui_impl_glfw";
io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional)
io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used)
io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports; // We can create multi-viewports on the Platform side (optional)
#if GLFW_HAS_MOUSE_PASSTHROUGH || (GLFW_HAS_WINDOW_HOVERED && defined(_WIN32))
io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can call io.AddMouseViewportEvent() with correct data (optional)
#endif
bd->Window = window;
bd->Time = 0.0;
bd->WantUpdateMonitors = true;
io.SetClipboardTextFn = ImGui_ImplGlfw_SetClipboardText;
io.GetClipboardTextFn = ImGui_ImplGlfw_GetClipboardText;
io.ClipboardUserData = bd->Window;
// Create mouse cursors
// (By design, on X11 cursors are user configurable and some cursors may be missing. When a cursor doesn't exist,
// GLFW will emit an error which will often be printed by the app, so we temporarily disable error reporting.
// Missing cursors will return NULL and our _UpdateMouseCursor() function will use the Arrow cursor instead.)
GLFWerrorfun prev_error_callback = glfwSetErrorCallback(NULL);
bd->MouseCursors[ImGuiMouseCursor_Arrow] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_TextInput] = glfwCreateStandardCursor(GLFW_IBEAM_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeNS] = glfwCreateStandardCursor(GLFW_VRESIZE_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeEW] = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_Hand] = glfwCreateStandardCursor(GLFW_HAND_CURSOR);
#if GLFW_HAS_NEW_CURSORS
bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_RESIZE_ALL_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_RESIZE_NESW_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_RESIZE_NWSE_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_NOT_ALLOWED_CURSOR);
#else
bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
#endif
glfwSetErrorCallback(prev_error_callback);
// Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
if (install_callbacks)
ImGui_ImplGlfw_InstallCallbacks(window);
// Update monitors the first time (note: monitor callback are broken in GLFW 3.2 and earlier, see github.com/glfw/glfw/issues/784)
ImGui_ImplGlfw_UpdateMonitors();
glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
// Our mouse update function expect PlatformHandle to be filled for the main viewport
ImGuiViewport* main_viewport = ImGui::GetMainViewport();
main_viewport->PlatformHandle = (void*)bd->Window;
#ifdef _WIN32
main_viewport->PlatformHandleRaw = glfwGetWin32Window(bd->Window);
#elif defined(__APPLE__)
main_viewport->PlatformHandleRaw = (void*)glfwGetCocoaWindow(bd->Window);
#endif
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
ImGui_ImplGlfw_InitPlatformInterface();
bd->ClientApi = client_api;
return true;
}
bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks)
{
return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_OpenGL);
}
bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks)
{
return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Vulkan);
}
bool ImGui_ImplGlfw_InitForOther(GLFWwindow* window, bool install_callbacks)
{
return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Unknown);
}
void ImGui_ImplGlfw_Shutdown()
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
IM_ASSERT(bd != NULL && "No platform backend to shutdown, or already shutdown?");
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplGlfw_ShutdownPlatformInterface();
if (bd->InstalledCallbacks)
ImGui_ImplGlfw_RestoreCallbacks(bd->Window);
for (ImGuiMouseCursor cursor_n = 0; cursor_n < ImGuiMouseCursor_COUNT; cursor_n++)
glfwDestroyCursor(bd->MouseCursors[cursor_n]);
io.BackendPlatformName = NULL;
io.BackendPlatformUserData = NULL;
IM_DELETE(bd);
}
static void ImGui_ImplGlfw_UpdateMouseData()
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGuiIO& io = ImGui::GetIO();
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
ImGuiID mouse_viewport_id = 0;
const ImVec2 mouse_pos_prev = io.MousePos;
for (int n = 0; n < platform_io.Viewports.Size; n++)
{
ImGuiViewport* viewport = platform_io.Viewports[n];
GLFWwindow* window = (GLFWwindow*)viewport->PlatformHandle;
#ifdef __EMSCRIPTEN__
const bool is_window_focused = true;
#else
const bool is_window_focused = glfwGetWindowAttrib(window, GLFW_FOCUSED) != 0;
#endif
if (is_window_focused)
{
// (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when ImGuiConfigFlags_NavEnableSetMousePos is enabled by user)
// When multi-viewports are enabled, all Dear ImGui positions are same as OS positions.
if (io.WantSetMousePos)
glfwSetCursorPos(window, (double)(mouse_pos_prev.x - viewport->Pos.x), (double)(mouse_pos_prev.y - viewport->Pos.y));
// (Optional) Fallback to provide mouse position when focused (ImGui_ImplGlfw_CursorPosCallback already provides this when hovered or captured)
if (bd->MouseWindow == NULL)
{
double mouse_x, mouse_y;
glfwGetCursorPos(window, &mouse_x, &mouse_y);
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
{
// Single viewport mode: mouse position in client window coordinates (io.MousePos is (0,0) when the mouse is on the upper-left corner of the app window)
// Multi-viewport mode: mouse position in OS absolute coordinates (io.MousePos is (0,0) when the mouse is on the upper-left of the primary monitor)
int window_x, window_y;
glfwGetWindowPos(window, &window_x, &window_y);
mouse_x += window_x;
mouse_y += window_y;
}
bd->LastValidMousePos = ImVec2((float)mouse_x, (float)mouse_y);
io.AddMousePosEvent((float)mouse_x, (float)mouse_y);
}
}
// (Optional) When using multiple viewports: call io.AddMouseViewportEvent() with the viewport the OS mouse cursor is hovering.
// If ImGuiBackendFlags_HasMouseHoveredViewport is not set by the backend, Dear imGui will ignore this field and infer the information using its flawed heuristic.
// - [X] GLFW >= 3.3 backend ON WINDOWS ONLY does correctly ignore viewports with the _NoInputs flag.
// - [!] GLFW <= 3.2 backend CANNOT correctly ignore viewports with the _NoInputs flag, and CANNOT reported Hovered Viewport because of mouse capture.
// Some backend are not able to handle that correctly. If a backend report an hovered viewport that has the _NoInputs flag (e.g. when dragging a window
// for docking, the viewport has the _NoInputs flag in order to allow us to find the viewport under), then Dear ImGui is forced to ignore the value reported
// by the backend, and use its flawed heuristic to guess the viewport behind.
// - [X] GLFW backend correctly reports this regardless of another viewport behind focused and dragged from (we need this to find a useful drag and drop target).
// FIXME: This is currently only correct on Win32. See what we do below with the WM_NCHITTEST, missing an equivalent for other systems.
// See https://github.com/glfw/glfw/issues/1236 if you want to help in making this a GLFW feature.
#if GLFW_HAS_MOUSE_PASSTHROUGH || (GLFW_HAS_WINDOW_HOVERED && defined(_WIN32))
const bool window_no_input = (viewport->Flags & ImGuiViewportFlags_NoInputs) != 0;
#if GLFW_HAS_MOUSE_PASSTHROUGH
glfwSetWindowAttrib(window, GLFW_MOUSE_PASSTHROUGH, window_no_input);
#endif
if (glfwGetWindowAttrib(window, GLFW_HOVERED) && !window_no_input)
mouse_viewport_id = viewport->ID;
#else
// We cannot use bd->MouseWindow maintained from CursorEnter/Leave callbacks, because it is locked to the window capturing mouse.
#endif
}
if (io.BackendFlags & ImGuiBackendFlags_HasMouseHoveredViewport)
io.AddMouseViewportEvent(mouse_viewport_id);
}
static void ImGui_ImplGlfw_UpdateMouseCursor()
{
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if ((io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) || glfwGetInputMode(bd->Window, GLFW_CURSOR) == GLFW_CURSOR_DISABLED)
return;
ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor();
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
for (int n = 0; n < platform_io.Viewports.Size; n++)
{
GLFWwindow* window = (GLFWwindow*)platform_io.Viewports[n]->PlatformHandle;
if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor)
{
// Hide OS mouse cursor if imgui is drawing it or if it wants no cursor
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN);
}
else
{
// Show OS mouse cursor
// FIXME-PLATFORM: Unfocused windows seems to fail changing the mouse cursor with GLFW 3.2, but 3.3 works here.
glfwSetCursor(window, bd->MouseCursors[imgui_cursor] ? bd->MouseCursors[imgui_cursor] : bd->MouseCursors[ImGuiMouseCursor_Arrow]);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
}
}
}
// Update gamepad inputs
static inline float Saturate(float v) { return v < 0.0f ? 0.0f : v > 1.0f ? 1.0f : v; }
static void ImGui_ImplGlfw_UpdateGamepads()
{
ImGuiIO& io = ImGui::GetIO();
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0)
return;
io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
#if GLFW_HAS_GAMEPAD_API
GLFWgamepadstate gamepad;
if (!glfwGetGamepadState(GLFW_JOYSTICK_1, &gamepad))
return;
#define MAP_BUTTON(KEY_NO, BUTTON_NO, _UNUSED) do { io.AddKeyEvent(KEY_NO, gamepad.buttons[BUTTON_NO] != 0); } while (0)
#define MAP_ANALOG(KEY_NO, AXIS_NO, _UNUSED, V0, V1) do { float v = gamepad.axes[AXIS_NO]; v = (v - V0) / (V1 - V0); io.AddKeyAnalogEvent(KEY_NO, v > 0.10f, Saturate(v)); } while (0)
#else
int axes_count = 0, buttons_count = 0;
const float* axes = glfwGetJoystickAxes(GLFW_JOYSTICK_1, &axes_count);
const unsigned char* buttons = glfwGetJoystickButtons(GLFW_JOYSTICK_1, &buttons_count);
if (axes_count == 0 || buttons_count == 0)
return;
#define MAP_BUTTON(KEY_NO, _UNUSED, BUTTON_NO) do { io.AddKeyEvent(KEY_NO, (buttons_count > BUTTON_NO && buttons[BUTTON_NO] == GLFW_PRESS)); } while (0)
#define MAP_ANALOG(KEY_NO, _UNUSED, AXIS_NO, V0, V1) do { float v = (axes_count > AXIS_NO) ? axes[AXIS_NO] : V0; v = (v - V0) / (V1 - V0); io.AddKeyAnalogEvent(KEY_NO, v > 0.10f, Saturate(v)); } while (0)
#endif
io.BackendFlags |= ImGuiBackendFlags_HasGamepad;
MAP_BUTTON(ImGuiKey_GamepadStart, GLFW_GAMEPAD_BUTTON_START, 7);
MAP_BUTTON(ImGuiKey_GamepadBack, GLFW_GAMEPAD_BUTTON_BACK, 6);
MAP_BUTTON(ImGuiKey_GamepadFaceDown, GLFW_GAMEPAD_BUTTON_A, 0); // Xbox A, PS Cross
MAP_BUTTON(ImGuiKey_GamepadFaceRight, GLFW_GAMEPAD_BUTTON_B, 1); // Xbox B, PS Circle
MAP_BUTTON(ImGuiKey_GamepadFaceLeft, GLFW_GAMEPAD_BUTTON_X, 2); // Xbox X, PS Square
MAP_BUTTON(ImGuiKey_GamepadFaceUp, GLFW_GAMEPAD_BUTTON_Y, 3); // Xbox Y, PS Triangle
MAP_BUTTON(ImGuiKey_GamepadDpadLeft, GLFW_GAMEPAD_BUTTON_DPAD_LEFT, 13);
MAP_BUTTON(ImGuiKey_GamepadDpadRight, GLFW_GAMEPAD_BUTTON_DPAD_RIGHT, 11);
MAP_BUTTON(ImGuiKey_GamepadDpadUp, GLFW_GAMEPAD_BUTTON_DPAD_UP, 10);
MAP_BUTTON(ImGuiKey_GamepadDpadDown, GLFW_GAMEPAD_BUTTON_DPAD_DOWN, 12);
MAP_BUTTON(ImGuiKey_GamepadL1, GLFW_GAMEPAD_BUTTON_LEFT_BUMPER, 4);
MAP_BUTTON(ImGuiKey_GamepadR1, GLFW_GAMEPAD_BUTTON_RIGHT_BUMPER, 5);
MAP_ANALOG(ImGuiKey_GamepadL2, GLFW_GAMEPAD_AXIS_LEFT_TRIGGER, 4, -0.75f, +1.0f);
MAP_ANALOG(ImGuiKey_GamepadR2, GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER, 5, -0.75f, +1.0f);
MAP_BUTTON(ImGuiKey_GamepadL3, GLFW_GAMEPAD_BUTTON_LEFT_THUMB, 8);
MAP_BUTTON(ImGuiKey_GamepadR3, GLFW_GAMEPAD_BUTTON_RIGHT_THUMB, 9);
MAP_ANALOG(ImGuiKey_GamepadLStickLeft, GLFW_GAMEPAD_AXIS_LEFT_X, 0, -0.25f, -1.0f);
MAP_ANALOG(ImGuiKey_GamepadLStickRight, GLFW_GAMEPAD_AXIS_LEFT_X, 0, +0.25f, +1.0f);
MAP_ANALOG(ImGuiKey_GamepadLStickUp, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, -0.25f, -1.0f);
MAP_ANALOG(ImGuiKey_GamepadLStickDown, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, +0.25f, +1.0f);
MAP_ANALOG(ImGuiKey_GamepadRStickLeft, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, -0.25f, -1.0f);
MAP_ANALOG(ImGuiKey_GamepadRStickRight, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, +0.25f, +1.0f);
MAP_ANALOG(ImGuiKey_GamepadRStickUp, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, -0.25f, -1.0f);
MAP_ANALOG(ImGuiKey_GamepadRStickDown, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, +0.25f, +1.0f);
#undef MAP_BUTTON
#undef MAP_ANALOG
}
static void ImGui_ImplGlfw_UpdateMonitors()
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
int monitors_count = 0;
GLFWmonitor** glfw_monitors = glfwGetMonitors(&monitors_count);
platform_io.Monitors.resize(0);
for (int n = 0; n < monitors_count; n++)
{
ImGuiPlatformMonitor monitor;
int x, y;
glfwGetMonitorPos(glfw_monitors[n], &x, &y);
const GLFWvidmode* vid_mode = glfwGetVideoMode(glfw_monitors[n]);
monitor.MainPos = monitor.WorkPos = ImVec2((float)x, (float)y);
monitor.MainSize = monitor.WorkSize = ImVec2((float)vid_mode->width, (float)vid_mode->height);
#if GLFW_HAS_MONITOR_WORK_AREA
int w, h;
glfwGetMonitorWorkarea(glfw_monitors[n], &x, &y, &w, &h);
if (w > 0 && h > 0) // Workaround a small GLFW issue reporting zero on monitor changes: https://github.com/glfw/glfw/pull/1761
{
monitor.WorkPos = ImVec2((float)x, (float)y);
monitor.WorkSize = ImVec2((float)w, (float)h);
}
#endif
#if GLFW_HAS_PER_MONITOR_DPI
// Warning: the validity of monitor DPI information on Windows depends on the application DPI awareness settings, which generally needs to be set in the manifest or at runtime.
float x_scale, y_scale;
glfwGetMonitorContentScale(glfw_monitors[n], &x_scale, &y_scale);
monitor.DpiScale = x_scale;
#endif
platform_io.Monitors.push_back(monitor);
}
bd->WantUpdateMonitors = false;
}
void ImGui_ImplGlfw_NewFrame()
{
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
IM_ASSERT(bd != NULL && "Did you call ImGui_ImplGlfw_InitForXXX()?");
// Setup display size (every frame to accommodate for window resizing)
int w, h;
int display_w, display_h;
glfwGetWindowSize(bd->Window, &w, &h);
glfwGetFramebufferSize(bd->Window, &display_w, &display_h);
io.DisplaySize = ImVec2((float)w, (float)h);
if (w > 0 && h > 0)
io.DisplayFramebufferScale = ImVec2((float)display_w / (float)w, (float)display_h / (float)h);
if (bd->WantUpdateMonitors)
ImGui_ImplGlfw_UpdateMonitors();
// Setup time step
double current_time = glfwGetTime();
io.DeltaTime = bd->Time > 0.0 ? (float)(current_time - bd->Time) : (float)(1.0f / 60.0f);
bd->Time = current_time;
ImGui_ImplGlfw_UpdateMouseData();
ImGui_ImplGlfw_UpdateMouseCursor();
// Update game controllers (if enabled and available)
ImGui_ImplGlfw_UpdateGamepads();
}
//--------------------------------------------------------------------------------------------------------
// MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT
// This is an _advanced_ and _optional_ feature, allowing the backend to create and handle multiple viewports simultaneously.
// If you are new to dear imgui or creating a new binding for dear imgui, it is recommended that you completely ignore this section first..
//--------------------------------------------------------------------------------------------------------
// Helper structure we store in the void* RenderUserData field of each ImGuiViewport to easily retrieve our backend data.
struct ImGui_ImplGlfw_ViewportData
{
GLFWwindow* Window;
bool WindowOwned;
int IgnoreWindowPosEventFrame;
int IgnoreWindowSizeEventFrame;
ImGui_ImplGlfw_ViewportData() { Window = NULL; WindowOwned = false; IgnoreWindowSizeEventFrame = IgnoreWindowPosEventFrame = -1; }
~ImGui_ImplGlfw_ViewportData() { IM_ASSERT(Window == NULL); }
};
static void ImGui_ImplGlfw_WindowCloseCallback(GLFWwindow* window)
{
if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
viewport->PlatformRequestClose = true;
}
// GLFW may dispatch window pos/size events after calling glfwSetWindowPos()/glfwSetWindowSize().
// However: depending on the platform the callback may be invoked at different time:
// - on Windows it appears to be called within the glfwSetWindowPos()/glfwSetWindowSize() call
// - on Linux it is queued and invoked during glfwPollEvents()
// Because the event doesn't always fire on glfwSetWindowXXX() we use a frame counter tag to only
// ignore recent glfwSetWindowXXX() calls.
static void ImGui_ImplGlfw_WindowPosCallback(GLFWwindow* window, int, int)
{
if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
{
if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
{
bool ignore_event = (ImGui::GetFrameCount() <= vd->IgnoreWindowPosEventFrame + 1);
//data->IgnoreWindowPosEventFrame = -1;
if (ignore_event)
return;
}
viewport->PlatformRequestMove = true;
}
}
static void ImGui_ImplGlfw_WindowSizeCallback(GLFWwindow* window, int, int)
{
if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
{
if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
{
bool ignore_event = (ImGui::GetFrameCount() <= vd->IgnoreWindowSizeEventFrame + 1);
//data->IgnoreWindowSizeEventFrame = -1;
if (ignore_event)
return;
}
viewport->PlatformRequestResize = true;
}
}
static void ImGui_ImplGlfw_CreateWindow(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGui_ImplGlfw_ViewportData* vd = IM_NEW(ImGui_ImplGlfw_ViewportData)();
viewport->PlatformUserData = vd;
// GLFW 3.2 unfortunately always set focus on glfwCreateWindow() if GLFW_VISIBLE is set, regardless of GLFW_FOCUSED
// With GLFW 3.3, the hint GLFW_FOCUS_ON_SHOW fixes this problem
glfwWindowHint(GLFW_VISIBLE, false);
glfwWindowHint(GLFW_FOCUSED, false);
#if GLFW_HAS_FOCUS_ON_SHOW
glfwWindowHint(GLFW_FOCUS_ON_SHOW, false);
#endif
glfwWindowHint(GLFW_DECORATED, (viewport->Flags & ImGuiViewportFlags_NoDecoration) ? false : true);
#if GLFW_HAS_WINDOW_TOPMOST
glfwWindowHint(GLFW_FLOATING, (viewport->Flags & ImGuiViewportFlags_TopMost) ? true : false);
#endif
GLFWwindow* share_window = (bd->ClientApi == GlfwClientApi_OpenGL) ? bd->Window : NULL;
vd->Window = glfwCreateWindow((int)viewport->Size.x, (int)viewport->Size.y, "No Title Yet", NULL, share_window);
vd->WindowOwned = true;
viewport->PlatformHandle = (void*)vd->Window;
#ifdef _WIN32
viewport->PlatformHandleRaw = glfwGetWin32Window(vd->Window);
#elif defined(__APPLE__)
viewport->PlatformHandleRaw = (void*)glfwGetCocoaWindow(vd->Window);
#endif
glfwSetWindowPos(vd->Window, (int)viewport->Pos.x, (int)viewport->Pos.y);
// Install GLFW callbacks for secondary viewports
glfwSetWindowFocusCallback(vd->Window, ImGui_ImplGlfw_WindowFocusCallback);
glfwSetCursorEnterCallback(vd->Window, ImGui_ImplGlfw_CursorEnterCallback);
glfwSetCursorPosCallback(vd->Window, ImGui_ImplGlfw_CursorPosCallback);
glfwSetMouseButtonCallback(vd->Window, ImGui_ImplGlfw_MouseButtonCallback);
glfwSetScrollCallback(vd->Window, ImGui_ImplGlfw_ScrollCallback);
glfwSetKeyCallback(vd->Window, ImGui_ImplGlfw_KeyCallback);
glfwSetCharCallback(vd->Window, ImGui_ImplGlfw_CharCallback);
glfwSetWindowCloseCallback(vd->Window, ImGui_ImplGlfw_WindowCloseCallback);
glfwSetWindowPosCallback(vd->Window, ImGui_ImplGlfw_WindowPosCallback);
glfwSetWindowSizeCallback(vd->Window, ImGui_ImplGlfw_WindowSizeCallback);
if (bd->ClientApi == GlfwClientApi_OpenGL)
{
glfwMakeContextCurrent(vd->Window);
glfwSwapInterval(0);
}
}
static void ImGui_ImplGlfw_DestroyWindow(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
{
if (vd->WindowOwned)
{
#if !GLFW_HAS_MOUSE_PASSTHROUGH && GLFW_HAS_WINDOW_HOVERED && defined(_WIN32)
HWND hwnd = (HWND)viewport->PlatformHandleRaw;
::RemovePropA(hwnd, "IMGUI_VIEWPORT");
#endif
// Release any keys that were pressed in the window being destroyed and are still held down,
// because we will not receive any release events after window is destroyed.
for (int i = 0; i < IM_ARRAYSIZE(bd->KeyOwnerWindows); i++)
if (bd->KeyOwnerWindows[i] == vd->Window)
ImGui_ImplGlfw_KeyCallback(vd->Window, i, 0, GLFW_RELEASE, 0); // Later params are only used for main viewport, on which this function is never called.
glfwDestroyWindow(vd->Window);
}
vd->Window = NULL;
IM_DELETE(vd);
}
viewport->PlatformUserData = viewport->PlatformHandle = NULL;
}
// We have submitted https://github.com/glfw/glfw/pull/1568 to allow GLFW to support "transparent inputs".
// In the meanwhile we implement custom per-platform workarounds here (FIXME-VIEWPORT: Implement same work-around for Linux/OSX!)
#if !GLFW_HAS_MOUSE_PASSTHROUGH && GLFW_HAS_WINDOW_HOVERED && defined(_WIN32)
static WNDPROC g_GlfwWndProc = NULL;
static LRESULT CALLBACK WndProcNoInputs(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
if (msg == WM_NCHITTEST)
{
// Let mouse pass-through the window. This will allow the backend to call io.AddMouseViewportEvent() properly (which is OPTIONAL).
// The ImGuiViewportFlags_NoInputs flag is set while dragging a viewport, as want to detect the window behind the one we are dragging.
// If you cannot easily access those viewport flags from your windowing/event code: you may manually synchronize its state e.g. in
// your main loop after calling UpdatePlatformWindows(). Iterate all viewports/platform windows and pass the flag to your windowing system.
ImGuiViewport* viewport = (ImGuiViewport*)::GetPropA(hWnd, "IMGUI_VIEWPORT");
if (viewport->Flags & ImGuiViewportFlags_NoInputs)
return HTTRANSPARENT;
}
return ::CallWindowProc(g_GlfwWndProc, hWnd, msg, wParam, lParam);
}
#endif
static void ImGui_ImplGlfw_ShowWindow(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
#if defined(_WIN32)
// GLFW hack: Hide icon from task bar
HWND hwnd = (HWND)viewport->PlatformHandleRaw;
if (viewport->Flags & ImGuiViewportFlags_NoTaskBarIcon)
{
LONG ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
ex_style &= ~WS_EX_APPWINDOW;
ex_style |= WS_EX_TOOLWINDOW;
::SetWindowLong(hwnd, GWL_EXSTYLE, ex_style);
}
// GLFW hack: install hook for WM_NCHITTEST message handler
#if !GLFW_HAS_MOUSE_PASSTHROUGH && GLFW_HAS_WINDOW_HOVERED && defined(_WIN32)
::SetPropA(hwnd, "IMGUI_VIEWPORT", viewport);
if (g_GlfwWndProc == NULL)
g_GlfwWndProc = (WNDPROC)::GetWindowLongPtr(hwnd, GWLP_WNDPROC);
::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)WndProcNoInputs);
#endif
#if !GLFW_HAS_FOCUS_ON_SHOW
// GLFW hack: GLFW 3.2 has a bug where glfwShowWindow() also activates/focus the window.
// The fix was pushed to GLFW repository on 2018/01/09 and should be included in GLFW 3.3 via a GLFW_FOCUS_ON_SHOW window attribute.
// See https://github.com/glfw/glfw/issues/1189
// FIXME-VIEWPORT: Implement same work-around for Linux/OSX in the meanwhile.
if (viewport->Flags & ImGuiViewportFlags_NoFocusOnAppearing)
{
::ShowWindow(hwnd, SW_SHOWNA);
return;
}
#endif
#endif
glfwShowWindow(vd->Window);
}
static ImVec2 ImGui_ImplGlfw_GetWindowPos(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
int x = 0, y = 0;
glfwGetWindowPos(vd->Window, &x, &y);
return ImVec2((float)x, (float)y);
}
static void ImGui_ImplGlfw_SetWindowPos(ImGuiViewport* viewport, ImVec2 pos)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
vd->IgnoreWindowPosEventFrame = ImGui::GetFrameCount();
glfwSetWindowPos(vd->Window, (int)pos.x, (int)pos.y);
}
static ImVec2 ImGui_ImplGlfw_GetWindowSize(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
int w = 0, h = 0;
glfwGetWindowSize(vd->Window, &w, &h);
return ImVec2((float)w, (float)h);
}
static void ImGui_ImplGlfw_SetWindowSize(ImGuiViewport* viewport, ImVec2 size)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
#if __APPLE__ && !GLFW_HAS_OSX_WINDOW_POS_FIX
// Native OS windows are positioned from the bottom-left corner on macOS, whereas on other platforms they are
// positioned from the upper-left corner. GLFW makes an effort to convert macOS style coordinates, however it
// doesn't handle it when changing size. We are manually moving the window in order for changes of size to be based
// on the upper-left corner.
int x, y, width, height;
glfwGetWindowPos(vd->Window, &x, &y);
glfwGetWindowSize(vd->Window, &width, &height);
glfwSetWindowPos(vd->Window, x, y - height + size.y);
#endif
vd->IgnoreWindowSizeEventFrame = ImGui::GetFrameCount();
glfwSetWindowSize(vd->Window, (int)size.x, (int)size.y);
}
static void ImGui_ImplGlfw_SetWindowTitle(ImGuiViewport* viewport, const char* title)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
glfwSetWindowTitle(vd->Window, title);
}
static void ImGui_ImplGlfw_SetWindowFocus(ImGuiViewport* viewport)
{
#if GLFW_HAS_FOCUS_WINDOW
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
glfwFocusWindow(vd->Window);
#else
// FIXME: What are the effect of not having this function? At the moment imgui doesn't actually call SetWindowFocus - we set that up ahead, will answer that question later.
(void)viewport;
#endif
}
static bool ImGui_ImplGlfw_GetWindowFocus(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
return glfwGetWindowAttrib(vd->Window, GLFW_FOCUSED) != 0;
}
static bool ImGui_ImplGlfw_GetWindowMinimized(ImGuiViewport* viewport)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
return glfwGetWindowAttrib(vd->Window, GLFW_ICONIFIED) != 0;
}
#if GLFW_HAS_WINDOW_ALPHA
static void ImGui_ImplGlfw_SetWindowAlpha(ImGuiViewport* viewport, float alpha)
{
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
glfwSetWindowOpacity(vd->Window, alpha);
}
#endif
static void ImGui_ImplGlfw_RenderWindow(ImGuiViewport* viewport, void*)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
if (bd->ClientApi == GlfwClientApi_OpenGL)
glfwMakeContextCurrent(vd->Window);
}
static void ImGui_ImplGlfw_SwapBuffers(ImGuiViewport* viewport, void*)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
if (bd->ClientApi == GlfwClientApi_OpenGL)
{
glfwMakeContextCurrent(vd->Window);
glfwSwapBuffers(vd->Window);
}
}
//--------------------------------------------------------------------------------------------------------
// Vulkan support (the Vulkan renderer needs to call a platform-side support function to create the surface)
//--------------------------------------------------------------------------------------------------------
// Avoid including <vulkan.h> so we can build without it
#if GLFW_HAS_VULKAN
#ifndef VULKAN_H_
#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object;
#if defined(__LP64__) || defined(_WIN64) || defined(__x86_64__) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object;
#else
#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object;
#endif
VK_DEFINE_HANDLE(VkInstance)
VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR)
struct VkAllocationCallbacks;
enum VkResult { VK_RESULT_MAX_ENUM = 0x7FFFFFFF };
#endif // VULKAN_H_
extern "C" { extern GLFWAPI VkResult glfwCreateWindowSurface(VkInstance instance, GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface); }
static int ImGui_ImplGlfw_CreateVkSurface(ImGuiViewport* viewport, ImU64 vk_instance, const void* vk_allocator, ImU64* out_vk_surface)
{
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
IM_UNUSED(bd);
IM_ASSERT(bd->ClientApi == GlfwClientApi_Vulkan);
VkResult err = glfwCreateWindowSurface((VkInstance)vk_instance, vd->Window, (const VkAllocationCallbacks*)vk_allocator, (VkSurfaceKHR*)out_vk_surface);
return (int)err;
}
#endif // GLFW_HAS_VULKAN
static void ImGui_ImplGlfw_InitPlatformInterface()
{
// Register platform interface (will be coupled with a renderer interface)
ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
platform_io.Platform_CreateWindow = ImGui_ImplGlfw_CreateWindow;
platform_io.Platform_DestroyWindow = ImGui_ImplGlfw_DestroyWindow;
platform_io.Platform_ShowWindow = ImGui_ImplGlfw_ShowWindow;
platform_io.Platform_SetWindowPos = ImGui_ImplGlfw_SetWindowPos;
platform_io.Platform_GetWindowPos = ImGui_ImplGlfw_GetWindowPos;
platform_io.Platform_SetWindowSize = ImGui_ImplGlfw_SetWindowSize;
platform_io.Platform_GetWindowSize = ImGui_ImplGlfw_GetWindowSize;
platform_io.Platform_SetWindowFocus = ImGui_ImplGlfw_SetWindowFocus;
platform_io.Platform_GetWindowFocus = ImGui_ImplGlfw_GetWindowFocus;
platform_io.Platform_GetWindowMinimized = ImGui_ImplGlfw_GetWindowMinimized;
platform_io.Platform_SetWindowTitle = ImGui_ImplGlfw_SetWindowTitle;
platform_io.Platform_RenderWindow = ImGui_ImplGlfw_RenderWindow;
platform_io.Platform_SwapBuffers = ImGui_ImplGlfw_SwapBuffers;
#if GLFW_HAS_WINDOW_ALPHA
platform_io.Platform_SetWindowAlpha = ImGui_ImplGlfw_SetWindowAlpha;
#endif
#if GLFW_HAS_VULKAN
platform_io.Platform_CreateVkSurface = ImGui_ImplGlfw_CreateVkSurface;
#endif
// Register main window handle (which is owned by the main application, not by us)
// This is mostly for simplicity and consistency, so that our code (e.g. mouse handling etc.) can use same logic for main and secondary viewports.
ImGuiViewport* main_viewport = ImGui::GetMainViewport();
ImGui_ImplGlfw_ViewportData* vd = IM_NEW(ImGui_ImplGlfw_ViewportData)();
vd->Window = bd->Window;
vd->WindowOwned = false;
main_viewport->PlatformUserData = vd;
main_viewport->PlatformHandle = (void*)bd->Window;
}
static void ImGui_ImplGlfw_ShutdownPlatformInterface()
{
ImGui::DestroyPlatformWindows();
}
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/imgui_impl_glfw.cpp
|
C++
|
gpl-3.0
| 60,913
|
// dear imgui: Platform Backend for GLFW
// This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan, WebGPU..)
// (Info: GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.)
// (Requires: GLFW 3.1+. Prefer GLFW 3.3+ for full feature support.)
// Implemented features:
// [X] Platform: Clipboard support.
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy GLFW_KEY_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set]
// [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
// [x] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange' (note: the resizing cursors requires GLFW 3.4+).
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
// Issues:
// [ ] Platform: Multi-viewport support: ParentViewportID not honored, and so io.ConfigViewportsNoDefaultParent has no effect (minor).
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
// About GLSL version:
// The 'glsl_version' initialization parameter defaults to "#version 150" if NULL.
// Only override if your GL version doesn't handle this GLSL version. Keep NULL if unsure!
#pragma once
#include "imgui.h" // IMGUI_IMPL_API
struct GLFWwindow;
struct GLFWmonitor;
IMGUI_IMPL_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks);
IMGUI_IMPL_API bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks);
IMGUI_IMPL_API bool ImGui_ImplGlfw_InitForOther(GLFWwindow* window, bool install_callbacks);
IMGUI_IMPL_API void ImGui_ImplGlfw_Shutdown();
IMGUI_IMPL_API void ImGui_ImplGlfw_NewFrame();
// GLFW callbacks (installer)
// - When calling Init with 'install_callbacks=true': ImGui_ImplGlfw_InstallCallbacks() is called. GLFW callbacks will be installed for you. They will chain-call user's previously installed callbacks, if any.
// - When calling Init with 'install_callbacks=false': GLFW callbacks won't be installed. You will need to call individual function yourself from your own GLFW callbacks.
IMGUI_IMPL_API void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window);
IMGUI_IMPL_API void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window);
// GLFW callbacks (individual callbacks to call if you didn't install callbacks)
IMGUI_IMPL_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window, int focused); // Since 1.84
IMGUI_IMPL_API void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window, int entered); // Since 1.84
IMGUI_IMPL_API void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window, double x, double y); // Since 1.87
IMGUI_IMPL_API void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods);
IMGUI_IMPL_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset);
IMGUI_IMPL_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods);
IMGUI_IMPL_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c);
IMGUI_IMPL_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor, int event);
|
whupdup/frame
|
real/third_party/tracy/profiler/src/imgui_impl_glfw.h
|
C++
|
gpl-3.0
| 3,825
|
// dear imgui: Renderer Backend for modern OpenGL with shaders / programmatic pipeline
// - Desktop GL: 2.x 3.x 4.x
// - Embedded GL: ES 2.0 (WebGL 1.0), ES 3.0 (WebGL 2.0)
// This needs to be used along with a Platform Backend (e.g. GLFW, SDL, Win32, custom..)
// Implemented features:
// [X] Renderer: User texture binding. Use 'GLuint' OpenGL texture identifier as void*/ImTextureID. Read the FAQ about ImTextureID!
// [X] Renderer: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
// [x] Renderer: Large meshes support (64k+ vertices) with 16-bit indices (Desktop OpenGL only).
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
// CHANGELOG
// (minor and older changes stripped away, please see git history for details)
// 2022-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
// 2022-05-23: OpenGL: Reworking 2021-12-15 "Using buffer orphaning" so it only happens on Intel GPU, seems to cause problems otherwise. (#4468, #4825, #4832, #5127).
// 2022-05-13: OpenGL: Fix state corruption on OpenGL ES 2.0 due to not preserving GL_ELEMENT_ARRAY_BUFFER_BINDING and vertex attribute states.
// 2021-12-15: OpenGL: Using buffer orphaning + glBufferSubData(), seems to fix leaks with multi-viewports with some Intel HD drivers.
// 2021-08-23: OpenGL: Fixed ES 3.0 shader ("#version 300 es") use normal precision floats to avoid wobbly rendering at HD resolutions.
// 2021-08-19: OpenGL: Embed and use our own minimal GL loader (imgui_impl_opengl3_loader.h), removing requirement and support for third-party loader.
// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX).
// 2021-06-25: OpenGL: Use OES_vertex_array extension on Emscripten + backup/restore current state.
// 2021-06-21: OpenGL: Destroy individual vertex/fragment shader objects right after they are linked into the main shader.
// 2021-05-24: OpenGL: Access GL_CLIP_ORIGIN when "GL_ARB_clip_control" extension is detected, inside of just OpenGL 4.5 version.
// 2021-05-19: OpenGL: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::GetTexID(). (will become a requirement)
// 2021-04-06: OpenGL: Don't try to read GL_CLIP_ORIGIN unless we're OpenGL 4.5 or greater.
// 2021-02-18: OpenGL: Change blending equation to preserve alpha in output buffer.
// 2021-01-03: OpenGL: Backup, setup and restore GL_STENCIL_TEST state.
// 2020-10-23: OpenGL: Backup, setup and restore GL_PRIMITIVE_RESTART state.
// 2020-10-15: OpenGL: Use glGetString(GL_VERSION) instead of glGetIntegerv(GL_MAJOR_VERSION, ...) when the later returns zero (e.g. Desktop GL 2.x)
// 2020-09-17: OpenGL: Fix to avoid compiling/calling glBindSampler() on ES or pre 3.3 context which have the defines set by a loader.
// 2020-07-10: OpenGL: Added support for glad2 OpenGL loader.
// 2020-05-08: OpenGL: Made default GLSL version 150 (instead of 130) on OSX.
// 2020-04-21: OpenGL: Fixed handling of glClipControl(GL_UPPER_LEFT) by inverting projection matrix.
// 2020-04-12: OpenGL: Fixed context version check mistakenly testing for 4.0+ instead of 3.2+ to enable ImGuiBackendFlags_RendererHasVtxOffset.
// 2020-03-24: OpenGL: Added support for glbinding 2.x OpenGL loader.
// 2020-01-07: OpenGL: Added support for glbinding 3.x OpenGL loader.
// 2019-10-25: OpenGL: Using a combination of GL define and runtime GL version to decide whether to use glDrawElementsBaseVertex(). Fix building with pre-3.2 GL loaders.
// 2019-09-22: OpenGL: Detect default GL loader using __has_include compiler facility.
// 2019-09-16: OpenGL: Tweak initialization code to allow application calling ImGui_ImplOpenGL3_CreateFontsTexture() before the first NewFrame() call.
// 2019-05-29: OpenGL: Desktop GL only: Added support for large mesh (64K+ vertices), enable ImGuiBackendFlags_RendererHasVtxOffset flag.
// 2019-04-30: OpenGL: Added support for special ImDrawCallback_ResetRenderState callback to reset render state.
// 2019-03-29: OpenGL: Not calling glBindBuffer more than necessary in the render loop.
// 2019-03-15: OpenGL: Added a GL call + comments in ImGui_ImplOpenGL3_Init() to detect uninitialized GL function loaders early.
// 2019-03-03: OpenGL: Fix support for ES 2.0 (WebGL 1.0).
// 2019-02-20: OpenGL: Fix for OSX not supporting OpenGL 4.5, we don't try to read GL_CLIP_ORIGIN even if defined by the headers/loader.
// 2019-02-11: OpenGL: Projecting clipping rectangles correctly using draw_data->FramebufferScale to allow multi-viewports for retina display.
// 2019-02-01: OpenGL: Using GLSL 410 shaders for any version over 410 (e.g. 430, 450).
// 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window.
// 2018-11-13: OpenGL: Support for GL 4.5's glClipControl(GL_UPPER_LEFT) / GL_CLIP_ORIGIN.
// 2018-08-29: OpenGL: Added support for more OpenGL loaders: glew and glad, with comments indicative that any loader can be used.
// 2018-08-09: OpenGL: Default to OpenGL ES 3 on iOS and Android. GLSL version default to "#version 300 ES".
// 2018-07-30: OpenGL: Support for GLSL 300 ES and 410 core. Fixes for Emscripten compilation.
// 2018-07-10: OpenGL: Support for more GLSL versions (based on the GLSL version string). Added error output when shaders fail to compile/link.
// 2018-06-08: Misc: Extracted imgui_impl_opengl3.cpp/.h away from the old combined GLFW/SDL+OpenGL3 examples.
// 2018-06-08: OpenGL: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle.
// 2018-05-25: OpenGL: Removed unnecessary backup/restore of GL_ELEMENT_ARRAY_BUFFER_BINDING since this is part of the VAO state.
// 2018-05-14: OpenGL: Making the call to glBindSampler() optional so 3.2 context won't fail if the function is a NULL pointer.
// 2018-03-06: OpenGL: Added const char* glsl_version parameter to ImGui_ImplOpenGL3_Init() so user can override the GLSL version e.g. "#version 150".
// 2018-02-23: OpenGL: Create the VAO in the render function so the setup can more easily be used with multiple shared GL context.
// 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplSdlGL3_RenderDrawData() in the .h file so you can call it yourself.
// 2018-01-07: OpenGL: Changed GLSL shader version from 330 to 150.
// 2017-09-01: OpenGL: Save and restore current bound sampler. Save and restore current polygon mode.
// 2017-05-01: OpenGL: Fixed save and restore of current blend func state.
// 2017-05-01: OpenGL: Fixed save and restore of current GL_ACTIVE_TEXTURE.
// 2016-09-05: OpenGL: Fixed save and restore of current scissor rectangle.
// 2016-07-29: OpenGL: Explicitly setting GL_UNPACK_ROW_LENGTH to reduce issues because SDL changes it. (#752)
//----------------------------------------
// OpenGL GLSL GLSL
// version version string
//----------------------------------------
// 2.0 110 "#version 110"
// 2.1 120 "#version 120"
// 3.0 130 "#version 130"
// 3.1 140 "#version 140"
// 3.2 150 "#version 150"
// 3.3 330 "#version 330 core"
// 4.0 400 "#version 400 core"
// 4.1 410 "#version 410 core"
// 4.2 420 "#version 410 core"
// 4.3 430 "#version 430 core"
// ES 2.0 100 "#version 100" = WebGL 1.0
// ES 3.0 300 "#version 300 es" = WebGL 2.0
//----------------------------------------
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "imgui.h"
#include "imgui_impl_opengl3.h"
#include <stdio.h>
#if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier
#include <stddef.h> // intptr_t
#else
#include <stdint.h> // intptr_t
#endif
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif
// Clang warnings with -Weverything
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast
#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
#if __has_warning("-Wzero-as-null-pointer-constant")
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif
#endif
// GL includes
#if defined(IMGUI_IMPL_OPENGL_ES2)
#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV))
#include <OpenGLES/ES2/gl.h> // Use GL ES 2
#else
#include <GLES2/gl2.h> // Use GL ES 2
#endif
#if defined(__EMSCRIPTEN__)
#ifndef GL_GLEXT_PROTOTYPES
#define GL_GLEXT_PROTOTYPES
#endif
#include <GLES2/gl2ext.h>
#endif
#elif defined(IMGUI_IMPL_OPENGL_ES3)
#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV))
#include <OpenGLES/ES3/gl.h> // Use GL ES 3
#else
#include <GLES3/gl3.h> // Use GL ES 3
#endif
#elif !defined(IMGUI_IMPL_OPENGL_LOADER_CUSTOM)
// Modern desktop OpenGL doesn't have a standard portable header file to load OpenGL function pointers.
// Helper libraries are often used for this purpose! Here we are using our own minimal custom loader based on gl3w.
// In the rest of your app/engine, you can use another loader of your choice (gl3w, glew, glad, glbinding, glext, glLoadGen, etc.).
// If you happen to be developing a new feature for this backend (imgui_impl_opengl3.cpp):
// - You may need to regenerate imgui_impl_opengl3_loader.h to add new symbols. See https://github.com/dearimgui/gl3w_stripped
// - You can temporarily use an unstripped version. See https://github.com/dearimgui/gl3w_stripped/releases
// Changes to this backend using new APIs should be accompanied by a regenerated stripped loader version.
#define IMGL3W_IMPL
#include "imgui_impl_opengl3_loader.h"
#endif
// Vertex arrays are not supported on ES2/WebGL1 unless Emscripten which uses an extension
#ifndef IMGUI_IMPL_OPENGL_ES2
#define IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
#elif defined(__EMSCRIPTEN__)
#define IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
#define glBindVertexArray glBindVertexArrayOES
#define glGenVertexArrays glGenVertexArraysOES
#define glDeleteVertexArrays glDeleteVertexArraysOES
#define GL_VERTEX_ARRAY_BINDING GL_VERTEX_ARRAY_BINDING_OES
#endif
// Desktop GL 2.0+ has glPolygonMode() which GL ES and WebGL don't have.
#ifdef GL_POLYGON_MODE
#define IMGUI_IMPL_HAS_POLYGON_MODE
#endif
// Desktop GL 3.2+ has glDrawElementsBaseVertex() which GL ES and WebGL don't have.
#if !defined(IMGUI_IMPL_OPENGL_ES2) && !defined(IMGUI_IMPL_OPENGL_ES3) && defined(GL_VERSION_3_2)
#define IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET
#endif
// Desktop GL 3.3+ has glBindSampler()
#if !defined(IMGUI_IMPL_OPENGL_ES2) && !defined(IMGUI_IMPL_OPENGL_ES3) && defined(GL_VERSION_3_3)
#define IMGUI_IMPL_OPENGL_MAY_HAVE_BIND_SAMPLER
#endif
// Desktop GL 3.1+ has GL_PRIMITIVE_RESTART state
#if !defined(IMGUI_IMPL_OPENGL_ES2) && !defined(IMGUI_IMPL_OPENGL_ES3) && defined(GL_VERSION_3_1)
#define IMGUI_IMPL_OPENGL_MAY_HAVE_PRIMITIVE_RESTART
#endif
// Desktop GL use extension detection
#if !defined(IMGUI_IMPL_OPENGL_ES2) && !defined(IMGUI_IMPL_OPENGL_ES3)
#define IMGUI_IMPL_OPENGL_MAY_HAVE_EXTENSIONS
#endif
// OpenGL Data
struct ImGui_ImplOpenGL3_Data
{
GLuint GlVersion; // Extracted at runtime using GL_MAJOR_VERSION, GL_MINOR_VERSION queries (e.g. 320 for GL 3.2)
char GlslVersionString[32]; // Specified by user or detected based on compile time GL settings.
GLuint FontTexture;
GLuint ShaderHandle;
GLint AttribLocationTex; // Uniforms location
GLint AttribLocationProjMtx;
GLuint AttribLocationVtxPos; // Vertex attributes location
GLuint AttribLocationVtxUV;
GLuint AttribLocationVtxColor;
unsigned int VboHandle, ElementsHandle;
GLsizeiptr VertexBufferSize;
GLsizeiptr IndexBufferSize;
bool HasClipOrigin;
bool UseBufferSubData;
ImGui_ImplOpenGL3_Data() { memset((void*)this, 0, sizeof(*this)); }
};
// Backend data stored in io.BackendRendererUserData to allow support for multiple Dear ImGui contexts
// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
static ImGui_ImplOpenGL3_Data* ImGui_ImplOpenGL3_GetBackendData()
{
return ImGui::GetCurrentContext() ? (ImGui_ImplOpenGL3_Data*)ImGui::GetIO().BackendRendererUserData : NULL;
}
// Forward Declarations
static void ImGui_ImplOpenGL3_InitPlatformInterface();
static void ImGui_ImplOpenGL3_ShutdownPlatformInterface();
// OpenGL vertex attribute state (for ES 1.0 and ES 2.0 only)
#ifndef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
struct ImGui_ImplOpenGL3_VtxAttribState
{
GLint Enabled, Size, Type, Normalized, Stride;
GLvoid* Ptr;
void GetState(GLint index)
{
glGetVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &Enabled);
glGetVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_SIZE, &Size);
glGetVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_TYPE, &Type);
glGetVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_NORMALIZED, &Normalized);
glGetVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_STRIDE, &Stride);
glGetVertexAttribPointerv(index, GL_VERTEX_ATTRIB_ARRAY_POINTER, &Ptr);
}
void SetState(GLint index)
{
glVertexAttribPointer(index, Size, Type, (GLboolean)Normalized, Stride, Ptr);
if (Enabled) glEnableVertexAttribArray(index); else glDisableVertexAttribArray(index);
}
};
#endif
// Functions
bool ImGui_ImplOpenGL3_Init(const char* glsl_version)
{
ImGuiIO& io = ImGui::GetIO();
IM_ASSERT(io.BackendRendererUserData == NULL && "Already initialized a renderer backend!");
// Initialize our loader
#if !defined(IMGUI_IMPL_OPENGL_ES2) && !defined(IMGUI_IMPL_OPENGL_ES3) && !defined(IMGUI_IMPL_OPENGL_LOADER_CUSTOM)
if (imgl3wInit() != 0)
{
fprintf(stderr, "Failed to initialize OpenGL loader!\n");
return false;
}
#endif
// Setup backend capabilities flags
ImGui_ImplOpenGL3_Data* bd = IM_NEW(ImGui_ImplOpenGL3_Data)();
io.BackendRendererUserData = (void*)bd;
io.BackendRendererName = "imgui_impl_opengl3";
// Query for GL version (e.g. 320 for GL 3.2)
#if !defined(IMGUI_IMPL_OPENGL_ES2)
GLint major = 0;
GLint minor = 0;
glGetIntegerv(GL_MAJOR_VERSION, &major);
glGetIntegerv(GL_MINOR_VERSION, &minor);
if (major == 0 && minor == 0)
{
// Query GL_VERSION in desktop GL 2.x, the string will start with "<major>.<minor>"
const char* gl_version = (const char*)glGetString(GL_VERSION);
sscanf(gl_version, "%d.%d", &major, &minor);
}
bd->GlVersion = (GLuint)(major * 100 + minor * 10);
// Query vendor to enable glBufferSubData kludge
#ifdef _WIN32
if (const char* vendor = (const char*)glGetString(GL_VENDOR))
if (strncmp(vendor, "Intel", 5) == 0)
bd->UseBufferSubData = true;
#endif
//printf("GL_MAJOR_VERSION = %d\nGL_MINOR_VERSION = %d\nGL_VENDOR = '%s'\nGL_RENDERER = '%s'\n", major, minor, (const char*)glGetString(GL_VENDOR), (const char*)glGetString(GL_RENDERER)); // [DEBUG]
#else
bd->GlVersion = 200; // GLES 2
#endif
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET
if (bd->GlVersion >= 320)
io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffset field, allowing for large meshes.
#endif
io.BackendFlags |= ImGuiBackendFlags_RendererHasViewports; // We can create multi-viewports on the Renderer side (optional)
// Store GLSL version string so we can refer to it later in case we recreate shaders.
// Note: GLSL version is NOT the same as GL version. Leave this to NULL if unsure.
if (glsl_version == NULL)
{
#if defined(IMGUI_IMPL_OPENGL_ES2)
glsl_version = "#version 100";
#elif defined(IMGUI_IMPL_OPENGL_ES3)
glsl_version = "#version 300 es";
#elif defined(__APPLE__)
glsl_version = "#version 150";
#else
glsl_version = "#version 130";
#endif
}
IM_ASSERT((int)strlen(glsl_version) + 2 < IM_ARRAYSIZE(bd->GlslVersionString));
strcpy(bd->GlslVersionString, glsl_version);
strcat(bd->GlslVersionString, "\n");
// Make an arbitrary GL call (we don't actually need the result)
// IF YOU GET A CRASH HERE: it probably means the OpenGL function loader didn't do its job. Let us know!
GLint current_texture;
glGetIntegerv(GL_TEXTURE_BINDING_2D, ¤t_texture);
// Detect extensions we support
bd->HasClipOrigin = (bd->GlVersion >= 450);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_EXTENSIONS
GLint num_extensions = 0;
glGetIntegerv(GL_NUM_EXTENSIONS, &num_extensions);
for (GLint i = 0; i < num_extensions; i++)
{
const char* extension = (const char*)glGetStringi(GL_EXTENSIONS, i);
if (extension != NULL && strcmp(extension, "GL_ARB_clip_control") == 0)
bd->HasClipOrigin = true;
}
#endif
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
ImGui_ImplOpenGL3_InitPlatformInterface();
return true;
}
void ImGui_ImplOpenGL3_Shutdown()
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
IM_ASSERT(bd != NULL && "No renderer backend to shutdown, or already shutdown?");
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplOpenGL3_ShutdownPlatformInterface();
ImGui_ImplOpenGL3_DestroyDeviceObjects();
io.BackendRendererName = NULL;
io.BackendRendererUserData = NULL;
IM_DELETE(bd);
}
void ImGui_ImplOpenGL3_NewFrame()
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
IM_ASSERT(bd != NULL && "Did you call ImGui_ImplOpenGL3_Init()?");
if (!bd->ShaderHandle)
ImGui_ImplOpenGL3_CreateDeviceObjects();
}
static void ImGui_ImplOpenGL3_SetupRenderState(ImDrawData* draw_data, int fb_width, int fb_height, GLuint vertex_array_object)
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
// Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill
glEnable(GL_BLEND);
glBlendEquation(GL_FUNC_ADD);
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
glDisable(GL_CULL_FACE);
glDisable(GL_DEPTH_TEST);
glDisable(GL_STENCIL_TEST);
glEnable(GL_SCISSOR_TEST);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_PRIMITIVE_RESTART
if (bd->GlVersion >= 310)
glDisable(GL_PRIMITIVE_RESTART);
#endif
#ifdef IMGUI_IMPL_HAS_POLYGON_MODE
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
#endif
// Support for GL 4.5 rarely used glClipControl(GL_UPPER_LEFT)
#if defined(GL_CLIP_ORIGIN)
bool clip_origin_lower_left = true;
if (bd->HasClipOrigin)
{
GLenum current_clip_origin = 0; glGetIntegerv(GL_CLIP_ORIGIN, (GLint*)¤t_clip_origin);
if (current_clip_origin == GL_UPPER_LEFT)
clip_origin_lower_left = false;
}
#endif
// Setup viewport, orthographic projection matrix
// Our visible imgui space lies from draw_data->DisplayPos (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayPos is (0,0) for single viewport apps.
glViewport(0, 0, (GLsizei)fb_width, (GLsizei)fb_height);
float L = draw_data->DisplayPos.x;
float R = draw_data->DisplayPos.x + draw_data->DisplaySize.x;
float T = draw_data->DisplayPos.y;
float B = draw_data->DisplayPos.y + draw_data->DisplaySize.y;
#if defined(GL_CLIP_ORIGIN)
if (!clip_origin_lower_left) { float tmp = T; T = B; B = tmp; } // Swap top and bottom if origin is upper left
#endif
const float ortho_projection[4][4] =
{
{ 2.0f/(R-L), 0.0f, 0.0f, 0.0f },
{ 0.0f, 2.0f/(T-B), 0.0f, 0.0f },
{ 0.0f, 0.0f, -1.0f, 0.0f },
{ (R+L)/(L-R), (T+B)/(B-T), 0.0f, 1.0f },
};
glUseProgram(bd->ShaderHandle);
glUniform1i(bd->AttribLocationTex, 0);
glUniformMatrix4fv(bd->AttribLocationProjMtx, 1, GL_FALSE, &ortho_projection[0][0]);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_BIND_SAMPLER
if (bd->GlVersion >= 330)
glBindSampler(0, 0); // We use combined texture/sampler state. Applications using GL 3.3 may set that otherwise.
#endif
(void)vertex_array_object;
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glBindVertexArray(vertex_array_object);
#endif
// Bind vertex/index buffers and setup attributes for ImDrawVert
glBindBuffer(GL_ARRAY_BUFFER, bd->VboHandle);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bd->ElementsHandle);
glEnableVertexAttribArray(bd->AttribLocationVtxPos);
glEnableVertexAttribArray(bd->AttribLocationVtxUV);
glEnableVertexAttribArray(bd->AttribLocationVtxColor);
glVertexAttribPointer(bd->AttribLocationVtxPos, 2, GL_FLOAT, GL_FALSE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, pos));
glVertexAttribPointer(bd->AttribLocationVtxUV, 2, GL_FLOAT, GL_FALSE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, uv));
glVertexAttribPointer(bd->AttribLocationVtxColor, 4, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, col));
}
// OpenGL3 Render function.
// Note that this implementation is little overcomplicated because we are saving/setting up/restoring every OpenGL state explicitly.
// This is in order to be able to run within an OpenGL engine that doesn't do so.
void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data)
{
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
int fb_width = (int)(draw_data->DisplaySize.x * draw_data->FramebufferScale.x);
int fb_height = (int)(draw_data->DisplaySize.y * draw_data->FramebufferScale.y);
if (fb_width <= 0 || fb_height <= 0)
return;
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
// Backup GL state
GLenum last_active_texture; glGetIntegerv(GL_ACTIVE_TEXTURE, (GLint*)&last_active_texture);
glActiveTexture(GL_TEXTURE0);
GLuint last_program; glGetIntegerv(GL_CURRENT_PROGRAM, (GLint*)&last_program);
GLuint last_texture; glGetIntegerv(GL_TEXTURE_BINDING_2D, (GLint*)&last_texture);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_BIND_SAMPLER
GLuint last_sampler; if (bd->GlVersion >= 330) { glGetIntegerv(GL_SAMPLER_BINDING, (GLint*)&last_sampler); } else { last_sampler = 0; }
#endif
GLuint last_array_buffer; glGetIntegerv(GL_ARRAY_BUFFER_BINDING, (GLint*)&last_array_buffer);
#ifndef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
// This is part of VAO on OpenGL 3.0+ and OpenGL ES 3.0+.
GLint last_element_array_buffer; glGetIntegerv(GL_ELEMENT_ARRAY_BUFFER_BINDING, &last_element_array_buffer);
ImGui_ImplOpenGL3_VtxAttribState last_vtx_attrib_state_pos; last_vtx_attrib_state_pos.GetState(bd->AttribLocationVtxPos);
ImGui_ImplOpenGL3_VtxAttribState last_vtx_attrib_state_uv; last_vtx_attrib_state_uv.GetState(bd->AttribLocationVtxUV);
ImGui_ImplOpenGL3_VtxAttribState last_vtx_attrib_state_color; last_vtx_attrib_state_color.GetState(bd->AttribLocationVtxColor);
#endif
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
GLuint last_vertex_array_object; glGetIntegerv(GL_VERTEX_ARRAY_BINDING, (GLint*)&last_vertex_array_object);
#endif
#ifdef IMGUI_IMPL_HAS_POLYGON_MODE
GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);
#endif
GLint last_viewport[4]; glGetIntegerv(GL_VIEWPORT, last_viewport);
GLint last_scissor_box[4]; glGetIntegerv(GL_SCISSOR_BOX, last_scissor_box);
GLenum last_blend_src_rgb; glGetIntegerv(GL_BLEND_SRC_RGB, (GLint*)&last_blend_src_rgb);
GLenum last_blend_dst_rgb; glGetIntegerv(GL_BLEND_DST_RGB, (GLint*)&last_blend_dst_rgb);
GLenum last_blend_src_alpha; glGetIntegerv(GL_BLEND_SRC_ALPHA, (GLint*)&last_blend_src_alpha);
GLenum last_blend_dst_alpha; glGetIntegerv(GL_BLEND_DST_ALPHA, (GLint*)&last_blend_dst_alpha);
GLenum last_blend_equation_rgb; glGetIntegerv(GL_BLEND_EQUATION_RGB, (GLint*)&last_blend_equation_rgb);
GLenum last_blend_equation_alpha; glGetIntegerv(GL_BLEND_EQUATION_ALPHA, (GLint*)&last_blend_equation_alpha);
GLboolean last_enable_blend = glIsEnabled(GL_BLEND);
GLboolean last_enable_cull_face = glIsEnabled(GL_CULL_FACE);
GLboolean last_enable_depth_test = glIsEnabled(GL_DEPTH_TEST);
GLboolean last_enable_stencil_test = glIsEnabled(GL_STENCIL_TEST);
GLboolean last_enable_scissor_test = glIsEnabled(GL_SCISSOR_TEST);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_PRIMITIVE_RESTART
GLboolean last_enable_primitive_restart = (bd->GlVersion >= 310) ? glIsEnabled(GL_PRIMITIVE_RESTART) : GL_FALSE;
#endif
// Setup desired GL state
// Recreate the VAO every time (this is to easily allow multiple GL contexts to be rendered to. VAO are not shared among GL contexts)
// The renderer would actually work without any VAO bound, but then our VertexAttrib calls would overwrite the default one currently bound.
GLuint vertex_array_object = 0;
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glGenVertexArrays(1, &vertex_array_object);
#endif
ImGui_ImplOpenGL3_SetupRenderState(draw_data, fb_width, fb_height, vertex_array_object);
// Will project scissor/clipping rectangles into framebuffer space
ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
ImVec2 clip_scale = draw_data->FramebufferScale; // (1,1) unless using retina display which are often (2,2)
// Render command lists
for (int n = 0; n < draw_data->CmdListsCount; n++)
{
const ImDrawList* cmd_list = draw_data->CmdLists[n];
// Upload vertex/index buffers
// - On Intel windows drivers we got reports that regular glBufferData() led to accumulating leaks when using multi-viewports, so we started using orphaning + glBufferSubData(). (See https://github.com/ocornut/imgui/issues/4468)
// - On NVIDIA drivers we got reports that using orphaning + glBufferSubData() led to glitches when using multi-viewports.
// - OpenGL drivers are in a very sorry state in 2022, for now we are switching code path based on vendors.
const GLsizeiptr vtx_buffer_size = (GLsizeiptr)cmd_list->VtxBuffer.Size * (int)sizeof(ImDrawVert);
const GLsizeiptr idx_buffer_size = (GLsizeiptr)cmd_list->IdxBuffer.Size * (int)sizeof(ImDrawIdx);
if (bd->UseBufferSubData)
{
if (bd->VertexBufferSize < vtx_buffer_size)
{
bd->VertexBufferSize = vtx_buffer_size;
glBufferData(GL_ARRAY_BUFFER, bd->VertexBufferSize, NULL, GL_STREAM_DRAW);
}
if (bd->IndexBufferSize < idx_buffer_size)
{
bd->IndexBufferSize = idx_buffer_size;
glBufferData(GL_ELEMENT_ARRAY_BUFFER, bd->IndexBufferSize, NULL, GL_STREAM_DRAW);
}
glBufferSubData(GL_ARRAY_BUFFER, 0, vtx_buffer_size, (const GLvoid*)cmd_list->VtxBuffer.Data);
glBufferSubData(GL_ELEMENT_ARRAY_BUFFER, 0, idx_buffer_size, (const GLvoid*)cmd_list->IdxBuffer.Data);
}
else
{
glBufferData(GL_ARRAY_BUFFER, vtx_buffer_size, (const GLvoid*)cmd_list->VtxBuffer.Data, GL_STREAM_DRAW);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, idx_buffer_size, (const GLvoid*)cmd_list->IdxBuffer.Data, GL_STREAM_DRAW);
}
for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++)
{
const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i];
if (pcmd->UserCallback != NULL)
{
// User callback, registered via ImDrawList::AddCallback()
// (ImDrawCallback_ResetRenderState is a special callback value used by the user to request the renderer to reset render state.)
if (pcmd->UserCallback == ImDrawCallback_ResetRenderState)
ImGui_ImplOpenGL3_SetupRenderState(draw_data, fb_width, fb_height, vertex_array_object);
else
pcmd->UserCallback(cmd_list, pcmd);
}
else
{
// Project scissor/clipping rectangles into framebuffer space
ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y);
ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y);
if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y)
continue;
// Apply scissor/clipping rectangle (Y is inverted in OpenGL)
glScissor((int)clip_min.x, (int)((float)fb_height - clip_max.y), (int)(clip_max.x - clip_min.x), (int)(clip_max.y - clip_min.y));
// Bind texture, Draw
glBindTexture(GL_TEXTURE_2D, (GLuint)(intptr_t)pcmd->GetTexID());
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET
if (bd->GlVersion >= 320)
glDrawElementsBaseVertex(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, (void*)(intptr_t)(pcmd->IdxOffset * sizeof(ImDrawIdx)), (GLint)pcmd->VtxOffset);
else
#endif
glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, (void*)(intptr_t)(pcmd->IdxOffset * sizeof(ImDrawIdx)));
}
}
}
// Destroy the temporary VAO
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glDeleteVertexArrays(1, &vertex_array_object);
#endif
// Restore modified GL state
glUseProgram(last_program);
glBindTexture(GL_TEXTURE_2D, last_texture);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_BIND_SAMPLER
if (bd->GlVersion >= 330)
glBindSampler(0, last_sampler);
#endif
glActiveTexture(last_active_texture);
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glBindVertexArray(last_vertex_array_object);
#endif
glBindBuffer(GL_ARRAY_BUFFER, last_array_buffer);
#ifndef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, last_element_array_buffer);
last_vtx_attrib_state_pos.SetState(bd->AttribLocationVtxPos);
last_vtx_attrib_state_uv.SetState(bd->AttribLocationVtxUV);
last_vtx_attrib_state_color.SetState(bd->AttribLocationVtxColor);
#endif
glBlendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);
glBlendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);
if (last_enable_blend) glEnable(GL_BLEND); else glDisable(GL_BLEND);
if (last_enable_cull_face) glEnable(GL_CULL_FACE); else glDisable(GL_CULL_FACE);
if (last_enable_depth_test) glEnable(GL_DEPTH_TEST); else glDisable(GL_DEPTH_TEST);
if (last_enable_stencil_test) glEnable(GL_STENCIL_TEST); else glDisable(GL_STENCIL_TEST);
if (last_enable_scissor_test) glEnable(GL_SCISSOR_TEST); else glDisable(GL_SCISSOR_TEST);
#ifdef IMGUI_IMPL_OPENGL_MAY_HAVE_PRIMITIVE_RESTART
if (bd->GlVersion >= 310) { if (last_enable_primitive_restart) glEnable(GL_PRIMITIVE_RESTART); else glDisable(GL_PRIMITIVE_RESTART); }
#endif
#ifdef IMGUI_IMPL_HAS_POLYGON_MODE
glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);
#endif
glViewport(last_viewport[0], last_viewport[1], (GLsizei)last_viewport[2], (GLsizei)last_viewport[3]);
glScissor(last_scissor_box[0], last_scissor_box[1], (GLsizei)last_scissor_box[2], (GLsizei)last_scissor_box[3]);
(void)bd; // Not all compilation paths use this
}
bool ImGui_ImplOpenGL3_CreateFontsTexture()
{
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
// Build texture atlas
unsigned char* pixels;
int width, height;
io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); // Load as RGBA 32-bit (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.
// Upload texture to graphics system
// (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling)
GLint last_texture;
glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture);
glGenTextures(1, &bd->FontTexture);
glBindTexture(GL_TEXTURE_2D, bd->FontTexture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
#ifdef GL_UNPACK_ROW_LENGTH // Not on WebGL/ES
glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
#endif
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
// Store our identifier
io.Fonts->SetTexID((ImTextureID)(intptr_t)bd->FontTexture);
// Restore state
glBindTexture(GL_TEXTURE_2D, last_texture);
return true;
}
void ImGui_ImplOpenGL3_DestroyFontsTexture()
{
ImGuiIO& io = ImGui::GetIO();
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
if (bd->FontTexture)
{
glDeleteTextures(1, &bd->FontTexture);
io.Fonts->SetTexID(0);
bd->FontTexture = 0;
}
}
// If you get an error please report on github. You may try different GL context version or GLSL version. See GL<>GLSL version table at the top of this file.
static bool CheckShader(GLuint handle, const char* desc)
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
GLint status = 0, log_length = 0;
glGetShaderiv(handle, GL_COMPILE_STATUS, &status);
glGetShaderiv(handle, GL_INFO_LOG_LENGTH, &log_length);
if ((GLboolean)status == GL_FALSE)
fprintf(stderr, "ERROR: ImGui_ImplOpenGL3_CreateDeviceObjects: failed to compile %s! With GLSL: %s\n", desc, bd->GlslVersionString);
if (log_length > 1)
{
ImVector<char> buf;
buf.resize((int)(log_length + 1));
glGetShaderInfoLog(handle, log_length, NULL, (GLchar*)buf.begin());
fprintf(stderr, "%s\n", buf.begin());
}
return (GLboolean)status == GL_TRUE;
}
// If you get an error please report on GitHub. You may try different GL context version or GLSL version.
static bool CheckProgram(GLuint handle, const char* desc)
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
GLint status = 0, log_length = 0;
glGetProgramiv(handle, GL_LINK_STATUS, &status);
glGetProgramiv(handle, GL_INFO_LOG_LENGTH, &log_length);
if ((GLboolean)status == GL_FALSE)
fprintf(stderr, "ERROR: ImGui_ImplOpenGL3_CreateDeviceObjects: failed to link %s! With GLSL %s\n", desc, bd->GlslVersionString);
if (log_length > 1)
{
ImVector<char> buf;
buf.resize((int)(log_length + 1));
glGetProgramInfoLog(handle, log_length, NULL, (GLchar*)buf.begin());
fprintf(stderr, "%s\n", buf.begin());
}
return (GLboolean)status == GL_TRUE;
}
bool ImGui_ImplOpenGL3_CreateDeviceObjects()
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
// Backup GL state
GLint last_texture, last_array_buffer;
glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture);
glGetIntegerv(GL_ARRAY_BUFFER_BINDING, &last_array_buffer);
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
GLint last_vertex_array;
glGetIntegerv(GL_VERTEX_ARRAY_BINDING, &last_vertex_array);
#endif
// Parse GLSL version string
int glsl_version = 130;
sscanf(bd->GlslVersionString, "#version %d", &glsl_version);
const GLchar* vertex_shader_glsl_120 =
"uniform mat4 ProjMtx;\n"
"attribute vec2 Position;\n"
"attribute vec2 UV;\n"
"attribute vec4 Color;\n"
"varying vec2 Frag_UV;\n"
"varying vec4 Frag_Color;\n"
"void main()\n"
"{\n"
" Frag_UV = UV;\n"
" Frag_Color = Color;\n"
" gl_Position = ProjMtx * vec4(Position.xy,0,1);\n"
"}\n";
const GLchar* vertex_shader_glsl_130 =
"uniform mat4 ProjMtx;\n"
"in vec2 Position;\n"
"in vec2 UV;\n"
"in vec4 Color;\n"
"out vec2 Frag_UV;\n"
"out vec4 Frag_Color;\n"
"void main()\n"
"{\n"
" Frag_UV = UV;\n"
" Frag_Color = Color;\n"
" gl_Position = ProjMtx * vec4(Position.xy,0,1);\n"
"}\n";
const GLchar* vertex_shader_glsl_300_es =
"precision highp float;\n"
"layout (location = 0) in vec2 Position;\n"
"layout (location = 1) in vec2 UV;\n"
"layout (location = 2) in vec4 Color;\n"
"uniform mat4 ProjMtx;\n"
"out vec2 Frag_UV;\n"
"out vec4 Frag_Color;\n"
"void main()\n"
"{\n"
" Frag_UV = UV;\n"
" Frag_Color = Color;\n"
" gl_Position = ProjMtx * vec4(Position.xy,0,1);\n"
"}\n";
const GLchar* vertex_shader_glsl_410_core =
"layout (location = 0) in vec2 Position;\n"
"layout (location = 1) in vec2 UV;\n"
"layout (location = 2) in vec4 Color;\n"
"uniform mat4 ProjMtx;\n"
"out vec2 Frag_UV;\n"
"out vec4 Frag_Color;\n"
"void main()\n"
"{\n"
" Frag_UV = UV;\n"
" Frag_Color = Color;\n"
" gl_Position = ProjMtx * vec4(Position.xy,0,1);\n"
"}\n";
const GLchar* fragment_shader_glsl_120 =
"#ifdef GL_ES\n"
" precision mediump float;\n"
"#endif\n"
"uniform sampler2D Texture;\n"
"varying vec2 Frag_UV;\n"
"varying vec4 Frag_Color;\n"
"void main()\n"
"{\n"
" gl_FragColor = Frag_Color * texture2D(Texture, Frag_UV.st);\n"
"}\n";
const GLchar* fragment_shader_glsl_130 =
"uniform sampler2D Texture;\n"
"in vec2 Frag_UV;\n"
"in vec4 Frag_Color;\n"
"out vec4 Out_Color;\n"
"void main()\n"
"{\n"
" Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n"
"}\n";
const GLchar* fragment_shader_glsl_300_es =
"precision mediump float;\n"
"uniform sampler2D Texture;\n"
"in vec2 Frag_UV;\n"
"in vec4 Frag_Color;\n"
"layout (location = 0) out vec4 Out_Color;\n"
"void main()\n"
"{\n"
" Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n"
"}\n";
const GLchar* fragment_shader_glsl_410_core =
"in vec2 Frag_UV;\n"
"in vec4 Frag_Color;\n"
"uniform sampler2D Texture;\n"
"layout (location = 0) out vec4 Out_Color;\n"
"void main()\n"
"{\n"
" Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n"
"}\n";
// Select shaders matching our GLSL versions
const GLchar* vertex_shader = NULL;
const GLchar* fragment_shader = NULL;
if (glsl_version < 130)
{
vertex_shader = vertex_shader_glsl_120;
fragment_shader = fragment_shader_glsl_120;
}
else if (glsl_version >= 410)
{
vertex_shader = vertex_shader_glsl_410_core;
fragment_shader = fragment_shader_glsl_410_core;
}
else if (glsl_version == 300)
{
vertex_shader = vertex_shader_glsl_300_es;
fragment_shader = fragment_shader_glsl_300_es;
}
else
{
vertex_shader = vertex_shader_glsl_130;
fragment_shader = fragment_shader_glsl_130;
}
// Create shaders
const GLchar* vertex_shader_with_version[2] = { bd->GlslVersionString, vertex_shader };
GLuint vert_handle = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vert_handle, 2, vertex_shader_with_version, NULL);
glCompileShader(vert_handle);
CheckShader(vert_handle, "vertex shader");
const GLchar* fragment_shader_with_version[2] = { bd->GlslVersionString, fragment_shader };
GLuint frag_handle = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(frag_handle, 2, fragment_shader_with_version, NULL);
glCompileShader(frag_handle);
CheckShader(frag_handle, "fragment shader");
// Link
bd->ShaderHandle = glCreateProgram();
glAttachShader(bd->ShaderHandle, vert_handle);
glAttachShader(bd->ShaderHandle, frag_handle);
glLinkProgram(bd->ShaderHandle);
CheckProgram(bd->ShaderHandle, "shader program");
glDetachShader(bd->ShaderHandle, vert_handle);
glDetachShader(bd->ShaderHandle, frag_handle);
glDeleteShader(vert_handle);
glDeleteShader(frag_handle);
bd->AttribLocationTex = glGetUniformLocation(bd->ShaderHandle, "Texture");
bd->AttribLocationProjMtx = glGetUniformLocation(bd->ShaderHandle, "ProjMtx");
bd->AttribLocationVtxPos = (GLuint)glGetAttribLocation(bd->ShaderHandle, "Position");
bd->AttribLocationVtxUV = (GLuint)glGetAttribLocation(bd->ShaderHandle, "UV");
bd->AttribLocationVtxColor = (GLuint)glGetAttribLocation(bd->ShaderHandle, "Color");
// Create buffers
glGenBuffers(1, &bd->VboHandle);
glGenBuffers(1, &bd->ElementsHandle);
ImGui_ImplOpenGL3_CreateFontsTexture();
// Restore modified GL state
glBindTexture(GL_TEXTURE_2D, last_texture);
glBindBuffer(GL_ARRAY_BUFFER, last_array_buffer);
#ifdef IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY
glBindVertexArray(last_vertex_array);
#endif
return true;
}
void ImGui_ImplOpenGL3_DestroyDeviceObjects()
{
ImGui_ImplOpenGL3_Data* bd = ImGui_ImplOpenGL3_GetBackendData();
if (bd->VboHandle) { glDeleteBuffers(1, &bd->VboHandle); bd->VboHandle = 0; }
if (bd->ElementsHandle) { glDeleteBuffers(1, &bd->ElementsHandle); bd->ElementsHandle = 0; }
if (bd->ShaderHandle) { glDeleteProgram(bd->ShaderHandle); bd->ShaderHandle = 0; }
ImGui_ImplOpenGL3_DestroyFontsTexture();
}
//--------------------------------------------------------------------------------------------------------
// MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT
// This is an _advanced_ and _optional_ feature, allowing the backend to create and handle multiple viewports simultaneously.
// If you are new to dear imgui or creating a new binding for dear imgui, it is recommended that you completely ignore this section first..
//--------------------------------------------------------------------------------------------------------
static void ImGui_ImplOpenGL3_RenderWindow(ImGuiViewport* viewport, void*)
{
if (!(viewport->Flags & ImGuiViewportFlags_NoRendererClear))
{
ImVec4 clear_color = ImVec4(0.0f, 0.0f, 0.0f, 1.0f);
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
glClear(GL_COLOR_BUFFER_BIT);
}
ImGui_ImplOpenGL3_RenderDrawData(viewport->DrawData);
}
static void ImGui_ImplOpenGL3_InitPlatformInterface()
{
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
platform_io.Renderer_RenderWindow = ImGui_ImplOpenGL3_RenderWindow;
}
static void ImGui_ImplOpenGL3_ShutdownPlatformInterface()
{
ImGui::DestroyPlatformWindows();
}
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/imgui_impl_opengl3.cpp
|
C++
|
gpl-3.0
| 43,733
|
// dear imgui: Renderer Backend for modern OpenGL with shaders / programmatic pipeline
// - Desktop GL: 2.x 3.x 4.x
// - Embedded GL: ES 2.0 (WebGL 1.0), ES 3.0 (WebGL 2.0)
// This needs to be used along with a Platform Backend (e.g. GLFW, SDL, Win32, custom..)
// Implemented features:
// [X] Renderer: User texture binding. Use 'GLuint' OpenGL texture identifier as void*/ImTextureID. Read the FAQ about ImTextureID!
// [X] Renderer: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
// [x] Renderer: Large meshes support (64k+ vertices) with 16-bit indices (Desktop OpenGL only).
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
// About GLSL version:
// The 'glsl_version' initialization parameter should be NULL (default) or a "#version XXX" string.
// On computer platform the GLSL version default to "#version 130". On OpenGL ES 3 platform it defaults to "#version 300 es"
// Only override if your GL version doesn't handle this GLSL version. See GLSL version table at the top of imgui_impl_opengl3.cpp.
#pragma once
#include "imgui.h" // IMGUI_IMPL_API
// Backend API
IMGUI_IMPL_API bool ImGui_ImplOpenGL3_Init(const char* glsl_version = NULL);
IMGUI_IMPL_API void ImGui_ImplOpenGL3_Shutdown();
IMGUI_IMPL_API void ImGui_ImplOpenGL3_NewFrame();
IMGUI_IMPL_API void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data);
// (Optional) Called by Init/NewFrame/Shutdown
IMGUI_IMPL_API bool ImGui_ImplOpenGL3_CreateFontsTexture();
IMGUI_IMPL_API void ImGui_ImplOpenGL3_DestroyFontsTexture();
IMGUI_IMPL_API bool ImGui_ImplOpenGL3_CreateDeviceObjects();
IMGUI_IMPL_API void ImGui_ImplOpenGL3_DestroyDeviceObjects();
// Specific OpenGL ES versions
//#define IMGUI_IMPL_OPENGL_ES2 // Auto-detected on Emscripten
//#define IMGUI_IMPL_OPENGL_ES3 // Auto-detected on iOS/Android
// You can explicitly select GLES2 or GLES3 API by using one of the '#define IMGUI_IMPL_OPENGL_LOADER_XXX' in imconfig.h or compiler command-line.
#if !defined(IMGUI_IMPL_OPENGL_ES2) \
&& !defined(IMGUI_IMPL_OPENGL_ES3)
// Try to detect GLES on matching platforms
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif
#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV)) || (defined(__ANDROID__))
#define IMGUI_IMPL_OPENGL_ES3 // iOS, Android -> GL ES 3, "#version 300 es"
#elif defined(__EMSCRIPTEN__) || defined(__amigaos4__)
#define IMGUI_IMPL_OPENGL_ES2 // Emscripten -> GL ES 2, "#version 100"
#else
// Otherwise imgui_impl_opengl3_loader.h will be used.
#endif
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/imgui_impl_opengl3.h
|
C++
|
gpl-3.0
| 2,995
|
//-----------------------------------------------------------------------------
// About imgui_impl_opengl3_loader.h:
//
// We embed our own OpenGL loader to not require user to provide their own or to have to use ours,
// which proved to be endless problems for users.
// Our loader is custom-generated, based on gl3w but automatically filtered to only include
// enums/functions that we use in our imgui_impl_opengl3.cpp source file in order to be small.
//
// YOU SHOULD NOT NEED TO INCLUDE/USE THIS DIRECTLY. THIS IS USED BY imgui_impl_opengl3.cpp ONLY.
// THE REST OF YOUR APP SHOULD USE A DIFFERENT GL LOADER: ANY GL LOADER OF YOUR CHOICE.
//
// Regenerate with:
// python gl3w_gen.py --output ../imgui/backends/imgui_impl_opengl3_loader.h --ref ../imgui/backends/imgui_impl_opengl3.cpp ./extra_symbols.txt
//
// More info:
// https://github.com/dearimgui/gl3w_stripped
// https://github.com/ocornut/imgui/issues/4445
//-----------------------------------------------------------------------------
/*
* This file was generated with gl3w_gen.py, part of imgl3w
* (hosted at https://github.com/dearimgui/gl3w_stripped)
*
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef __gl3w_h_
#define __gl3w_h_
// Adapted from KHR/khrplatform.h to avoid including entire file.
#ifndef __khrplatform_h_
typedef float khronos_float_t;
typedef signed char khronos_int8_t;
typedef unsigned char khronos_uint8_t;
typedef signed short int khronos_int16_t;
typedef unsigned short int khronos_uint16_t;
#ifdef _WIN64
typedef signed long long int khronos_intptr_t;
typedef signed long long int khronos_ssize_t;
#else
typedef signed long int khronos_intptr_t;
typedef signed long int khronos_ssize_t;
#endif
#if defined(_MSC_VER) && !defined(__clang__)
typedef signed __int64 khronos_int64_t;
typedef unsigned __int64 khronos_uint64_t;
#elif (defined(__clang__) || defined(__GNUC__)) && (__cplusplus < 201100)
#include <stdint.h>
typedef int64_t khronos_int64_t;
typedef uint64_t khronos_uint64_t;
#else
typedef signed long long khronos_int64_t;
typedef unsigned long long khronos_uint64_t;
#endif
#endif // __khrplatform_h_
#ifndef __gl_glcorearb_h_
#define __gl_glcorearb_h_ 1
#ifdef __cplusplus
extern "C" {
#endif
/*
** Copyright 2013-2020 The Khronos Group Inc.
** SPDX-License-Identifier: MIT
**
** This header is generated from the Khronos OpenGL / OpenGL ES XML
** API Registry. The current version of the Registry, generator scripts
** used to make the header, and the header can be found at
** https://github.com/KhronosGroup/OpenGL-Registry
*/
#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include <windows.h>
#endif
#ifndef APIENTRY
#define APIENTRY
#endif
#ifndef APIENTRYP
#define APIENTRYP APIENTRY *
#endif
#ifndef GLAPI
#define GLAPI extern
#endif
/* glcorearb.h is for use with OpenGL core profile implementations.
** It should should be placed in the same directory as gl.h and
** included as <GL/glcorearb.h>.
**
** glcorearb.h includes only APIs in the latest OpenGL core profile
** implementation together with APIs in newer ARB extensions which
** can be supported by the core profile. It does not, and never will
** include functionality removed from the core profile, such as
** fixed-function vertex and fragment processing.
**
** Do not #include both <GL/glcorearb.h> and either of <GL/gl.h> or
** <GL/glext.h> in the same source file.
*/
/* Generated C header for:
* API: gl
* Profile: core
* Versions considered: .*
* Versions emitted: .*
* Default extensions included: glcore
* Additional extensions included: _nomatch_^
* Extensions removed: _nomatch_^
*/
#ifndef GL_VERSION_1_0
typedef void GLvoid;
typedef unsigned int GLenum;
typedef khronos_float_t GLfloat;
typedef int GLint;
typedef int GLsizei;
typedef unsigned int GLbitfield;
typedef double GLdouble;
typedef unsigned int GLuint;
typedef unsigned char GLboolean;
typedef khronos_uint8_t GLubyte;
#define GL_COLOR_BUFFER_BIT 0x00004000
#define GL_FALSE 0
#define GL_TRUE 1
#define GL_TRIANGLES 0x0004
#define GL_ONE 1
#define GL_SRC_ALPHA 0x0302
#define GL_ONE_MINUS_SRC_ALPHA 0x0303
#define GL_FRONT_AND_BACK 0x0408
#define GL_POLYGON_MODE 0x0B40
#define GL_CULL_FACE 0x0B44
#define GL_DEPTH_TEST 0x0B71
#define GL_STENCIL_TEST 0x0B90
#define GL_VIEWPORT 0x0BA2
#define GL_BLEND 0x0BE2
#define GL_SCISSOR_BOX 0x0C10
#define GL_SCISSOR_TEST 0x0C11
#define GL_UNPACK_ROW_LENGTH 0x0CF2
#define GL_PACK_ALIGNMENT 0x0D05
#define GL_TEXTURE_2D 0x0DE1
#define GL_UNSIGNED_BYTE 0x1401
#define GL_UNSIGNED_SHORT 0x1403
#define GL_UNSIGNED_INT 0x1405
#define GL_FLOAT 0x1406
#define GL_RGBA 0x1908
#define GL_FILL 0x1B02
#define GL_VENDOR 0x1F00
#define GL_RENDERER 0x1F01
#define GL_VERSION 0x1F02
#define GL_EXTENSIONS 0x1F03
#define GL_LINEAR 0x2601
#define GL_TEXTURE_MAG_FILTER 0x2800
#define GL_TEXTURE_MIN_FILTER 0x2801
#define GL_TEXTURE_WRAP_S 0x2802
#define GL_TEXTURE_WRAP_T 0x2803
typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) (GLenum face, GLenum mode);
typedef void (APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height);
typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param);
typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels);
typedef void (APIENTRYP PFNGLCLEARPROC) (GLbitfield mask);
typedef void (APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
typedef void (APIENTRYP PFNGLDISABLEPROC) (GLenum cap);
typedef void (APIENTRYP PFNGLENABLEPROC) (GLenum cap);
typedef void (APIENTRYP PFNGLFLUSHPROC) (void);
typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param);
typedef void (APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels);
typedef GLenum (APIENTRYP PFNGLGETERRORPROC) (void);
typedef void (APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data);
typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGPROC) (GLenum name);
typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) (GLenum cap);
typedef void (APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glPolygonMode (GLenum face, GLenum mode);
GLAPI void APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height);
GLAPI void APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param);
GLAPI void APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels);
GLAPI void APIENTRY glClear (GLbitfield mask);
GLAPI void APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
GLAPI void APIENTRY glDisable (GLenum cap);
GLAPI void APIENTRY glEnable (GLenum cap);
GLAPI void APIENTRY glFlush (void);
GLAPI void APIENTRY glPixelStorei (GLenum pname, GLint param);
GLAPI void APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels);
GLAPI GLenum APIENTRY glGetError (void);
GLAPI void APIENTRY glGetIntegerv (GLenum pname, GLint *data);
GLAPI const GLubyte *APIENTRY glGetString (GLenum name);
GLAPI GLboolean APIENTRY glIsEnabled (GLenum cap);
GLAPI void APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);
#endif
#endif /* GL_VERSION_1_0 */
#ifndef GL_VERSION_1_1
typedef khronos_float_t GLclampf;
typedef double GLclampd;
#define GL_TEXTURE_BINDING_2D 0x8069
typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices);
typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures);
typedef void (APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices);
GLAPI void APIENTRY glBindTexture (GLenum target, GLuint texture);
GLAPI void APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures);
GLAPI void APIENTRY glGenTextures (GLsizei n, GLuint *textures);
#endif
#endif /* GL_VERSION_1_1 */
#ifndef GL_VERSION_1_2
#define GL_CLAMP_TO_EDGE 0x812F
#endif /* GL_VERSION_1_2 */
#ifndef GL_VERSION_1_3
#define GL_TEXTURE0 0x84C0
#define GL_ACTIVE_TEXTURE 0x84E0
typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glActiveTexture (GLenum texture);
GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data);
#endif
#endif /* GL_VERSION_1_3 */
#ifndef GL_VERSION_1_4
#define GL_BLEND_DST_RGB 0x80C8
#define GL_BLEND_SRC_RGB 0x80C9
#define GL_BLEND_DST_ALPHA 0x80CA
#define GL_BLEND_SRC_ALPHA 0x80CB
#define GL_FUNC_ADD 0x8006
typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
GLAPI void APIENTRY glBlendEquation (GLenum mode);
#endif
#endif /* GL_VERSION_1_4 */
#ifndef GL_VERSION_1_5
typedef khronos_ssize_t GLsizeiptr;
typedef khronos_intptr_t GLintptr;
#define GL_ARRAY_BUFFER 0x8892
#define GL_ELEMENT_ARRAY_BUFFER 0x8893
#define GL_ARRAY_BUFFER_BINDING 0x8894
#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895
#define GL_STREAM_DRAW 0x88E0
typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers);
typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers);
typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer);
GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers);
GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers);
GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
#endif
#endif /* GL_VERSION_1_5 */
#ifndef GL_VERSION_2_0
typedef char GLchar;
typedef khronos_int16_t GLshort;
typedef khronos_int8_t GLbyte;
typedef khronos_uint16_t GLushort;
#define GL_BLEND_EQUATION_RGB 0x8009
#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622
#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623
#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624
#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625
#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645
#define GL_BLEND_EQUATION_ALPHA 0x883D
#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A
#define GL_FRAGMENT_SHADER 0x8B30
#define GL_VERTEX_SHADER 0x8B31
#define GL_COMPILE_STATUS 0x8B81
#define GL_LINK_STATUS 0x8B82
#define GL_INFO_LOG_LENGTH 0x8B84
#define GL_CURRENT_PROGRAM 0x8B8D
#define GL_UPPER_LEFT 0x8CA2
typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha);
typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader);
typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader);
typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void);
typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type);
typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program);
typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader);
typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader);
typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name);
typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params);
typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params);
typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name);
typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer);
typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program);
typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length);
typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program);
typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0);
typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha);
GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader);
GLAPI void APIENTRY glCompileShader (GLuint shader);
GLAPI GLuint APIENTRY glCreateProgram (void);
GLAPI GLuint APIENTRY glCreateShader (GLenum type);
GLAPI void APIENTRY glDeleteProgram (GLuint program);
GLAPI void APIENTRY glDeleteShader (GLuint shader);
GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader);
GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index);
GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index);
GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name);
GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params);
GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params);
GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name);
GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params);
GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer);
GLAPI void APIENTRY glLinkProgram (GLuint program);
GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length);
GLAPI void APIENTRY glUseProgram (GLuint program);
GLAPI void APIENTRY glUniform1i (GLint location, GLint v0);
GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer);
#endif
#endif /* GL_VERSION_2_0 */
#ifndef GL_VERSION_3_0
typedef khronos_uint16_t GLhalf;
#define GL_MAJOR_VERSION 0x821B
#define GL_MINOR_VERSION 0x821C
#define GL_NUM_EXTENSIONS 0x821D
#define GL_FRAMEBUFFER_SRGB 0x8DB9
#define GL_VERTEX_ARRAY_BINDING 0x85B5
typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data);
typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data);
typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index);
typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array);
typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays);
typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI const GLubyte *APIENTRY glGetStringi (GLenum name, GLuint index);
GLAPI void APIENTRY glBindVertexArray (GLuint array);
GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays);
GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays);
#endif
#endif /* GL_VERSION_3_0 */
#ifndef GL_VERSION_3_1
#define GL_VERSION_3_1 1
#define GL_PRIMITIVE_RESTART 0x8F9D
#endif /* GL_VERSION_3_1 */
#ifndef GL_VERSION_3_2
#define GL_VERSION_3_2 1
typedef struct __GLsync *GLsync;
typedef khronos_uint64_t GLuint64;
typedef khronos_int64_t GLint64;
typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex);
typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex);
#endif
#endif /* GL_VERSION_3_2 */
#ifndef GL_VERSION_3_3
#define GL_VERSION_3_3 1
#define GL_SAMPLER_BINDING 0x8919
typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler);
#ifdef GL_GLEXT_PROTOTYPES
GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler);
#endif
#endif /* GL_VERSION_3_3 */
#ifndef GL_VERSION_4_1
typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data);
typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data);
#endif /* GL_VERSION_4_1 */
#ifndef GL_VERSION_4_3
typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam);
#endif /* GL_VERSION_4_3 */
#ifndef GL_VERSION_4_5
#define GL_CLIP_ORIGIN 0x935C
typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param);
typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param);
#endif /* GL_VERSION_4_5 */
#ifndef GL_ARB_bindless_texture
typedef khronos_uint64_t GLuint64EXT;
#endif /* GL_ARB_bindless_texture */
#ifndef GL_ARB_cl_event
struct _cl_context;
struct _cl_event;
#endif /* GL_ARB_cl_event */
#ifndef GL_ARB_clip_control
#define GL_ARB_clip_control 1
#endif /* GL_ARB_clip_control */
#ifndef GL_ARB_debug_output
typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam);
#endif /* GL_ARB_debug_output */
#ifndef GL_EXT_EGL_image_storage
typedef void *GLeglImageOES;
#endif /* GL_EXT_EGL_image_storage */
#ifndef GL_EXT_direct_state_access
typedef void (APIENTRYP PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat *params);
typedef void (APIENTRYP PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble *params);
typedef void (APIENTRYP PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void **params);
typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param);
typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void **param);
#endif /* GL_EXT_direct_state_access */
#ifndef GL_NV_draw_vulkan_image
typedef void (APIENTRY *GLVULKANPROCNV)(void);
#endif /* GL_NV_draw_vulkan_image */
#ifndef GL_NV_gpu_shader5
typedef khronos_int64_t GLint64EXT;
#endif /* GL_NV_gpu_shader5 */
#ifndef GL_NV_vertex_buffer_unified_memory
typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result);
#endif /* GL_NV_vertex_buffer_unified_memory */
#ifdef __cplusplus
}
#endif
#endif
#ifndef GL3W_API
#define GL3W_API
#endif
#ifndef __gl_h_
#define __gl_h_
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define GL3W_OK 0
#define GL3W_ERROR_INIT -1
#define GL3W_ERROR_LIBRARY_OPEN -2
#define GL3W_ERROR_OPENGL_VERSION -3
typedef void (*GL3WglProc)(void);
typedef GL3WglProc (*GL3WGetProcAddressProc)(const char *proc);
/* gl3w api */
GL3W_API int imgl3wInit(void);
GL3W_API int imgl3wInit2(GL3WGetProcAddressProc proc);
GL3W_API int imgl3wIsSupported(int major, int minor);
GL3W_API GL3WglProc imgl3wGetProcAddress(const char *proc);
/* gl3w internal state */
union GL3WProcs {
GL3WglProc ptr[59];
struct {
PFNGLACTIVETEXTUREPROC ActiveTexture;
PFNGLATTACHSHADERPROC AttachShader;
PFNGLBINDBUFFERPROC BindBuffer;
PFNGLBINDSAMPLERPROC BindSampler;
PFNGLBINDTEXTUREPROC BindTexture;
PFNGLBINDVERTEXARRAYPROC BindVertexArray;
PFNGLBLENDEQUATIONPROC BlendEquation;
PFNGLBLENDEQUATIONSEPARATEPROC BlendEquationSeparate;
PFNGLBLENDFUNCSEPARATEPROC BlendFuncSeparate;
PFNGLBUFFERDATAPROC BufferData;
PFNGLBUFFERSUBDATAPROC BufferSubData;
PFNGLCLEARPROC Clear;
PFNGLCLEARCOLORPROC ClearColor;
PFNGLCOMPILESHADERPROC CompileShader;
PFNGLCOMPRESSEDTEXIMAGE2DPROC CompressedTexImage2D;
PFNGLCREATEPROGRAMPROC CreateProgram;
PFNGLCREATESHADERPROC CreateShader;
PFNGLDELETEBUFFERSPROC DeleteBuffers;
PFNGLDELETEPROGRAMPROC DeleteProgram;
PFNGLDELETESHADERPROC DeleteShader;
PFNGLDELETETEXTURESPROC DeleteTextures;
PFNGLDELETEVERTEXARRAYSPROC DeleteVertexArrays;
PFNGLDETACHSHADERPROC DetachShader;
PFNGLDISABLEPROC Disable;
PFNGLDISABLEVERTEXATTRIBARRAYPROC DisableVertexAttribArray;
PFNGLDRAWELEMENTSPROC DrawElements;
PFNGLDRAWELEMENTSBASEVERTEXPROC DrawElementsBaseVertex;
PFNGLENABLEPROC Enable;
PFNGLENABLEVERTEXATTRIBARRAYPROC EnableVertexAttribArray;
PFNGLFLUSHPROC Flush;
PFNGLGENBUFFERSPROC GenBuffers;
PFNGLGENTEXTURESPROC GenTextures;
PFNGLGENVERTEXARRAYSPROC GenVertexArrays;
PFNGLGETATTRIBLOCATIONPROC GetAttribLocation;
PFNGLGETERRORPROC GetError;
PFNGLGETINTEGERVPROC GetIntegerv;
PFNGLGETPROGRAMINFOLOGPROC GetProgramInfoLog;
PFNGLGETPROGRAMIVPROC GetProgramiv;
PFNGLGETSHADERINFOLOGPROC GetShaderInfoLog;
PFNGLGETSHADERIVPROC GetShaderiv;
PFNGLGETSTRINGPROC GetString;
PFNGLGETSTRINGIPROC GetStringi;
PFNGLGETUNIFORMLOCATIONPROC GetUniformLocation;
PFNGLGETVERTEXATTRIBPOINTERVPROC GetVertexAttribPointerv;
PFNGLGETVERTEXATTRIBIVPROC GetVertexAttribiv;
PFNGLISENABLEDPROC IsEnabled;
PFNGLLINKPROGRAMPROC LinkProgram;
PFNGLPIXELSTOREIPROC PixelStorei;
PFNGLPOLYGONMODEPROC PolygonMode;
PFNGLREADPIXELSPROC ReadPixels;
PFNGLSCISSORPROC Scissor;
PFNGLSHADERSOURCEPROC ShaderSource;
PFNGLTEXIMAGE2DPROC TexImage2D;
PFNGLTEXPARAMETERIPROC TexParameteri;
PFNGLUNIFORM1IPROC Uniform1i;
PFNGLUNIFORMMATRIX4FVPROC UniformMatrix4fv;
PFNGLUSEPROGRAMPROC UseProgram;
PFNGLVERTEXATTRIBPOINTERPROC VertexAttribPointer;
PFNGLVIEWPORTPROC Viewport;
} gl;
};
GL3W_API extern union GL3WProcs imgl3wProcs;
/* OpenGL functions */
#define glActiveTexture imgl3wProcs.gl.ActiveTexture
#define glAttachShader imgl3wProcs.gl.AttachShader
#define glBindBuffer imgl3wProcs.gl.BindBuffer
#define glBindSampler imgl3wProcs.gl.BindSampler
#define glBindTexture imgl3wProcs.gl.BindTexture
#define glBindVertexArray imgl3wProcs.gl.BindVertexArray
#define glBlendEquation imgl3wProcs.gl.BlendEquation
#define glBlendEquationSeparate imgl3wProcs.gl.BlendEquationSeparate
#define glBlendFuncSeparate imgl3wProcs.gl.BlendFuncSeparate
#define glBufferData imgl3wProcs.gl.BufferData
#define glBufferSubData imgl3wProcs.gl.BufferSubData
#define glClear imgl3wProcs.gl.Clear
#define glClearColor imgl3wProcs.gl.ClearColor
#define glCompileShader imgl3wProcs.gl.CompileShader
#define glCompressedTexImage2D imgl3wProcs.gl.CompressedTexImage2D
#define glCreateProgram imgl3wProcs.gl.CreateProgram
#define glCreateShader imgl3wProcs.gl.CreateShader
#define glDeleteBuffers imgl3wProcs.gl.DeleteBuffers
#define glDeleteProgram imgl3wProcs.gl.DeleteProgram
#define glDeleteShader imgl3wProcs.gl.DeleteShader
#define glDeleteTextures imgl3wProcs.gl.DeleteTextures
#define glDeleteVertexArrays imgl3wProcs.gl.DeleteVertexArrays
#define glDetachShader imgl3wProcs.gl.DetachShader
#define glDisable imgl3wProcs.gl.Disable
#define glDisableVertexAttribArray imgl3wProcs.gl.DisableVertexAttribArray
#define glDrawElements imgl3wProcs.gl.DrawElements
#define glDrawElementsBaseVertex imgl3wProcs.gl.DrawElementsBaseVertex
#define glEnable imgl3wProcs.gl.Enable
#define glEnableVertexAttribArray imgl3wProcs.gl.EnableVertexAttribArray
#define glFlush imgl3wProcs.gl.Flush
#define glGenBuffers imgl3wProcs.gl.GenBuffers
#define glGenTextures imgl3wProcs.gl.GenTextures
#define glGenVertexArrays imgl3wProcs.gl.GenVertexArrays
#define glGetAttribLocation imgl3wProcs.gl.GetAttribLocation
#define glGetError imgl3wProcs.gl.GetError
#define glGetIntegerv imgl3wProcs.gl.GetIntegerv
#define glGetProgramInfoLog imgl3wProcs.gl.GetProgramInfoLog
#define glGetProgramiv imgl3wProcs.gl.GetProgramiv
#define glGetShaderInfoLog imgl3wProcs.gl.GetShaderInfoLog
#define glGetShaderiv imgl3wProcs.gl.GetShaderiv
#define glGetString imgl3wProcs.gl.GetString
#define glGetStringi imgl3wProcs.gl.GetStringi
#define glGetUniformLocation imgl3wProcs.gl.GetUniformLocation
#define glGetVertexAttribPointerv imgl3wProcs.gl.GetVertexAttribPointerv
#define glGetVertexAttribiv imgl3wProcs.gl.GetVertexAttribiv
#define glIsEnabled imgl3wProcs.gl.IsEnabled
#define glLinkProgram imgl3wProcs.gl.LinkProgram
#define glPixelStorei imgl3wProcs.gl.PixelStorei
#define glPolygonMode imgl3wProcs.gl.PolygonMode
#define glReadPixels imgl3wProcs.gl.ReadPixels
#define glScissor imgl3wProcs.gl.Scissor
#define glShaderSource imgl3wProcs.gl.ShaderSource
#define glTexImage2D imgl3wProcs.gl.TexImage2D
#define glTexParameteri imgl3wProcs.gl.TexParameteri
#define glUniform1i imgl3wProcs.gl.Uniform1i
#define glUniformMatrix4fv imgl3wProcs.gl.UniformMatrix4fv
#define glUseProgram imgl3wProcs.gl.UseProgram
#define glVertexAttribPointer imgl3wProcs.gl.VertexAttribPointer
#define glViewport imgl3wProcs.gl.Viewport
#ifdef __cplusplus
}
#endif
#endif
#ifdef IMGL3W_IMPL
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
#if defined(_WIN32)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include <windows.h>
static HMODULE libgl;
typedef PROC(__stdcall* GL3WglGetProcAddr)(LPCSTR);
static GL3WglGetProcAddr wgl_get_proc_address;
static int open_libgl(void)
{
libgl = LoadLibraryA("opengl32.dll");
if (!libgl)
return GL3W_ERROR_LIBRARY_OPEN;
wgl_get_proc_address = (GL3WglGetProcAddr)GetProcAddress(libgl, "wglGetProcAddress");
return GL3W_OK;
}
static void close_libgl(void) { FreeLibrary(libgl); }
static GL3WglProc get_proc(const char *proc)
{
GL3WglProc res;
res = (GL3WglProc)wgl_get_proc_address(proc);
if (!res)
res = (GL3WglProc)GetProcAddress(libgl, proc);
return res;
}
#elif defined(__APPLE__)
#include <dlfcn.h>
static void *libgl;
static int open_libgl(void)
{
libgl = dlopen("/System/Library/Frameworks/OpenGL.framework/OpenGL", RTLD_LAZY | RTLD_LOCAL);
if (!libgl)
return GL3W_ERROR_LIBRARY_OPEN;
return GL3W_OK;
}
static void close_libgl(void) { dlclose(libgl); }
static GL3WglProc get_proc(const char *proc)
{
GL3WglProc res;
*(void **)(&res) = dlsym(libgl, proc);
return res;
}
#else
#include <dlfcn.h>
static void *libgl;
static GL3WglProc (*glx_get_proc_address)(const GLubyte *);
static int open_libgl(void)
{
libgl = dlopen("libGL.so.1", RTLD_LAZY | RTLD_LOCAL);
if (!libgl)
return GL3W_ERROR_LIBRARY_OPEN;
*(void **)(&glx_get_proc_address) = dlsym(libgl, "glXGetProcAddressARB");
return GL3W_OK;
}
static void close_libgl(void) { dlclose(libgl); }
static GL3WglProc get_proc(const char *proc)
{
GL3WglProc res;
res = glx_get_proc_address((const GLubyte *)proc);
if (!res)
*(void **)(&res) = dlsym(libgl, proc);
return res;
}
#endif
static struct { int major, minor; } version;
static int parse_version(void)
{
if (!glGetIntegerv)
return GL3W_ERROR_INIT;
glGetIntegerv(GL_MAJOR_VERSION, &version.major);
glGetIntegerv(GL_MINOR_VERSION, &version.minor);
if (version.major < 3)
return GL3W_ERROR_OPENGL_VERSION;
return GL3W_OK;
}
static void load_procs(GL3WGetProcAddressProc proc);
int imgl3wInit(void)
{
int res = open_libgl();
if (res)
return res;
atexit(close_libgl);
return imgl3wInit2(get_proc);
}
int imgl3wInit2(GL3WGetProcAddressProc proc)
{
load_procs(proc);
return parse_version();
}
int imgl3wIsSupported(int major, int minor)
{
if (major < 3)
return 0;
if (version.major == major)
return version.minor >= minor;
return version.major >= major;
}
GL3WglProc imgl3wGetProcAddress(const char *proc) { return get_proc(proc); }
static const char *proc_names[] = {
"glActiveTexture",
"glAttachShader",
"glBindBuffer",
"glBindSampler",
"glBindTexture",
"glBindVertexArray",
"glBlendEquation",
"glBlendEquationSeparate",
"glBlendFuncSeparate",
"glBufferData",
"glBufferSubData",
"glClear",
"glClearColor",
"glCompileShader",
"glCompressedTexImage2D",
"glCreateProgram",
"glCreateShader",
"glDeleteBuffers",
"glDeleteProgram",
"glDeleteShader",
"glDeleteTextures",
"glDeleteVertexArrays",
"glDetachShader",
"glDisable",
"glDisableVertexAttribArray",
"glDrawElements",
"glDrawElementsBaseVertex",
"glEnable",
"glEnableVertexAttribArray",
"glFlush",
"glGenBuffers",
"glGenTextures",
"glGenVertexArrays",
"glGetAttribLocation",
"glGetError",
"glGetIntegerv",
"glGetProgramInfoLog",
"glGetProgramiv",
"glGetShaderInfoLog",
"glGetShaderiv",
"glGetString",
"glGetStringi",
"glGetUniformLocation",
"glGetVertexAttribPointerv",
"glGetVertexAttribiv",
"glIsEnabled",
"glLinkProgram",
"glPixelStorei",
"glPolygonMode",
"glReadPixels",
"glScissor",
"glShaderSource",
"glTexImage2D",
"glTexParameteri",
"glUniform1i",
"glUniformMatrix4fv",
"glUseProgram",
"glVertexAttribPointer",
"glViewport",
};
GL3W_API union GL3WProcs imgl3wProcs;
static void load_procs(GL3WGetProcAddressProc proc)
{
size_t i;
for (i = 0; i < ARRAY_SIZE(proc_names); i++)
imgl3wProcs.ptr[i] = proc(proc_names[i]);
}
#ifdef __cplusplus
}
#endif
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/imgui_impl_opengl3_loader.h
|
C++
|
gpl-3.0
| 35,335
|
#include <algorithm>
#include <assert.h>
#include <atomic>
#include <chrono>
#include <inttypes.h>
#include <imgui.h>
#include "imgui_impl_glfw.h"
#include "imgui_impl_opengl3.h"
#include "imgui_impl_opengl3_loader.h"
#include <mutex>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <unordered_map>
#include <GLFW/glfw3.h>
#include <memory>
#include <sys/stat.h>
#include <locale.h>
#ifndef TRACY_NO_FILESELECTOR
# include "../nfd/nfd.h"
#endif
#ifdef _WIN32
# include <windows.h>
#endif
#define STB_IMAGE_IMPLEMENTATION
#define STBI_ONLY_PNG
#include "stb_image.h"
#include "../../common/TracyProtocol.hpp"
#include "../../server/tracy_pdqsort.h"
#include "../../server/tracy_robin_hood.h"
#include "../../server/TracyBadVersion.hpp"
#include "../../server/TracyFileHeader.hpp"
#include "../../server/TracyFileRead.hpp"
#include "../../server/TracyImGui.hpp"
#include "../../server/TracyMouse.hpp"
#include "../../server/TracyPrint.hpp"
#include "../../server/TracyStorage.hpp"
#include "../../server/TracyVersion.hpp"
#include "../../server/TracyView.hpp"
#include "../../server/TracyWeb.hpp"
#include "../../server/TracyWorker.hpp"
#include "../../server/TracyVersion.hpp"
#include "../../server/IconsFontAwesome5.h"
#include "misc/freetype/imgui_freetype.h"
#include "DroidSans.hpp"
#include "FiraCodeRetina.hpp"
#include "FontAwesomeSolid.hpp"
#include "icon.hpp"
#include "ResolvService.hpp"
#include "NativeWindow.hpp"
#include "HttpRequest.hpp"
static void glfw_error_callback(int error, const char* description)
{
fprintf(stderr, "Error %d: %s\n", error, description);
}
GLFWwindow* s_glfwWindow = nullptr;
static bool s_customTitle = false;
static void SetWindowTitleCallback( const char* title )
{
assert( s_glfwWindow );
char tmp[1024];
sprintf( tmp, "%s - Tracy Profiler %i.%i.%i", title, tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
glfwSetWindowTitle( s_glfwWindow, tmp );
s_customTitle = true;
}
static void DrawContents();
static void WindowRefreshCallback( GLFWwindow* window )
{
DrawContents();
}
std::vector<std::unordered_map<std::string, uint64_t>::const_iterator> RebuildConnectionHistory( const std::unordered_map<std::string, uint64_t>& connHistMap )
{
std::vector<std::unordered_map<std::string, uint64_t>::const_iterator> ret;
ret.reserve( connHistMap.size() );
for( auto it = connHistMap.begin(); it != connHistMap.end(); ++it )
{
ret.emplace_back( it );
}
tracy::pdqsort_branchless( ret.begin(), ret.end(), []( const auto& lhs, const auto& rhs ) { return lhs->second > rhs->second; } );
return ret;
}
struct ClientData
{
int64_t time;
uint32_t protocolVersion;
int32_t activeTime;
uint16_t port;
std::string procName;
std::string address;
};
enum class ViewShutdown { False, True, Join };
static tracy::unordered_flat_map<uint64_t, ClientData> clients;
static std::unique_ptr<tracy::View> view;
static tracy::BadVersionState badVer;
static uint16_t port = 8086;
static const char* connectTo = nullptr;
static char title[128];
static std::thread loadThread, updateThread, updateNotesThread;
static std::unique_ptr<tracy::UdpListen> broadcastListen;
static std::mutex resolvLock;
static tracy::unordered_flat_map<std::string, std::string> resolvMap;
static ResolvService resolv( port );
static ImFont* bigFont;
static ImFont* smallFont;
static ImFont* fixedWidth;
static char addr[1024] = { "127.0.0.1" };
static std::unordered_map<std::string, uint64_t> connHistMap;
static std::vector<std::unordered_map<std::string, uint64_t>::const_iterator> connHistVec;
static std::atomic<ViewShutdown> viewShutdown { ViewShutdown::False };
static double animTime = 0;
static float dpiScale = 1.f;
static ImGuiTextFilter addrFilter, portFilter, progFilter;
static std::thread::id mainThread;
static std::vector<std::function<void()>> mainThreadTasks;
static std::mutex mainThreadLock;
static uint32_t updateVersion = 0;
static bool showReleaseNotes = false;
static std::string releaseNotes;
void RunOnMainThread( std::function<void()> cb, bool forceDelay = false )
{
if( !forceDelay && std::this_thread::get_id() == mainThread )
{
cb();
}
else
{
std::lock_guard<std::mutex> lock( mainThreadLock );
mainThreadTasks.emplace_back( cb );
}
}
static void LoadFonts( float scale, ImFont*& cb_fixedWidth, ImFont*& cb_bigFont, ImFont*& cb_smallFont )
{
static const ImWchar rangesBasic[] = {
0x0020, 0x00FF, // Basic Latin + Latin Supplement
0x03BC, 0x03BC, // micro
0x03C3, 0x03C3, // small sigma
0x2013, 0x2013, // en dash
0x2264, 0x2264, // less-than or equal to
0,
};
static const ImWchar rangesIcons[] = {
ICON_MIN_FA, ICON_MAX_FA,
0
};
ImGuiIO& io = ImGui::GetIO();
ImFontConfig configBasic;
configBasic.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_LightHinting;
ImFontConfig configMerge;
configMerge.MergeMode = true;
configMerge.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_LightHinting;
io.Fonts->Clear();
io.Fonts->AddFontFromMemoryCompressedTTF( tracy::DroidSans_compressed_data, tracy::DroidSans_compressed_size, round( 15.0f * scale ), &configBasic, rangesBasic );
io.Fonts->AddFontFromMemoryCompressedTTF( tracy::FontAwesomeSolid_compressed_data, tracy::FontAwesomeSolid_compressed_size, round( 14.0f * scale ), &configMerge, rangesIcons );
fixedWidth = cb_fixedWidth = io.Fonts->AddFontFromMemoryCompressedTTF( tracy::FiraCodeRetina_compressed_data, tracy::FiraCodeRetina_compressed_size, round( 15.0f * scale ), &configBasic );
bigFont = cb_bigFont = io.Fonts->AddFontFromMemoryCompressedTTF( tracy::DroidSans_compressed_data, tracy::DroidSans_compressed_size, round( 21.0f * scale ), &configBasic );
io.Fonts->AddFontFromMemoryCompressedTTF( tracy::FontAwesomeSolid_compressed_data, tracy::FontAwesomeSolid_compressed_size, round( 20.0f * scale ), &configMerge, rangesIcons );
smallFont = cb_smallFont = io.Fonts->AddFontFromMemoryCompressedTTF( tracy::DroidSans_compressed_data, tracy::DroidSans_compressed_size, round( 10.0f * scale ), &configBasic );
ImGui_ImplOpenGL3_DestroyFontsTexture();
ImGui_ImplOpenGL3_CreateFontsTexture();
}
static void SetupDPIScale( float scale, ImFont*& cb_fixedWidth, ImFont*& cb_bigFont, ImFont*& cb_smallFont )
{
LoadFonts( scale, cb_fixedWidth, cb_bigFont, cb_smallFont );
auto& style = ImGui::GetStyle();
style = ImGuiStyle();
ImGui::StyleColorsDark();
style.WindowBorderSize = 1.f * scale;
style.FrameBorderSize = 1.f * scale;
style.FrameRounding = 5.f;
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4( 1, 1, 1, 0.03f );
style.Colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.25f);
style.Colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f);
style.Colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.45f);
style.ScaleAllSizes( scale );
}
static void SetupScaleCallback( float scale, ImFont*& cb_fixedWidth, ImFont*& cb_bigFont, ImFont*& cb_smallFont )
{
RunOnMainThread( [scale, &cb_fixedWidth, &cb_bigFont, &cb_smallFont] { SetupDPIScale( scale * dpiScale, cb_fixedWidth, cb_bigFont, cb_smallFont ); }, true );
}
int main( int argc, char** argv )
{
sprintf( title, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
std::unique_ptr<tracy::FileRead> initFileOpen;
if( argc == 2 )
{
if( strcmp( argv[1], "--help" ) == 0 )
{
printf( "%s\n\n", title );
printf( "Usage:\n\n" );
printf( " Open trace file stored on disk:\n" );
printf( " %s file.tracy\n\n", argv[0] );
printf( " Connect to a running client:\n" );
printf( " %s -a address [-p port]\n", argv[0] );
exit( 0 );
}
initFileOpen = std::unique_ptr<tracy::FileRead>( tracy::FileRead::Open( argv[1] ) );
if( !initFileOpen )
{
fprintf( stderr, "Cannot open trace file: %s\n", argv[1] );
exit( 1 );
}
}
else
{
while( argc >= 3 )
{
if( strcmp( argv[1], "-a" ) == 0 )
{
connectTo = argv[2];
}
else if( strcmp( argv[1], "-p" ) == 0 )
{
port = (uint16_t)atoi( argv[2] );
}
else
{
fprintf( stderr, "Bad parameter: %s", argv[1] );
exit( 1 );
}
argc -= 2;
argv += 2;
}
}
std::string winPosFile = tracy::GetSavePath( "window.position" );
int x = 200, y = 200, w = 1650, h = 960, maximize = 0;
{
FILE* f = fopen( winPosFile.c_str(), "rb" );
if( f )
{
uint32_t data[5];
fread( data, 1, sizeof( data ), f );
fclose( f );
x = data[0];
y = data[1];
w = data[2];
h = data[3];
maximize = data[4];
}
if( w <= 0 || h <= 0 )
{
x = 200;
y = 200;
w = 1650;
h = 960;
maximize = 0;
}
}
std::string connHistFile = tracy::GetSavePath( "connection.history" );
{
FILE* f = fopen( connHistFile.c_str(), "rb" );
if( f )
{
uint64_t sz;
fread( &sz, 1, sizeof( sz ), f );
for( uint64_t i=0; i<sz; i++ )
{
uint64_t ssz, cnt;
fread( &ssz, 1, sizeof( ssz ), f );
assert( ssz < 1024 );
char tmp[1024];
fread( tmp, 1, ssz, f );
fread( &cnt, 1, sizeof( cnt ), f );
connHistMap.emplace( std::string( tmp, tmp+ssz ), cnt );
}
fclose( f );
connHistVec = RebuildConnectionHistory( connHistMap );
}
}
std::string filtersFile = tracy::GetSavePath( "client.filters" );
{
FILE* f = fopen( filtersFile.c_str(), "rb" );
if( f )
{
uint8_t sz;
fread( &sz, 1, sizeof( sz ), f );
fread( addrFilter.InputBuf, 1, sz, f );
addrFilter.Build();
fread( &sz, 1, sizeof( sz ), f );
fread( portFilter.InputBuf, 1, sz, f );
portFilter.Build();
fread( &sz, 1, sizeof( sz ), f );
fread( progFilter.InputBuf, 1, sz, f );
progFilter.Build();
fclose( f );
}
}
mainThread = std::this_thread::get_id();
updateThread = std::thread( [] {
HttpRequest( "nereid.pl", "/tracy/version", 8099, [] ( int size, char* data ) {
if( size == 4 )
{
uint32_t ver;
memcpy( &ver, data, 4 );
RunOnMainThread( [ver] { updateVersion = ver; } );
}
delete[] data;
} );
} );
// Setup window
glfwSetErrorCallback(glfw_error_callback);
if( !glfwInit() ) return 1;
#ifdef DISPLAY_SERVER_WAYLAND
glfwWindowHint(GLFW_ALPHA_BITS, 0);
#else
glfwWindowHint(GLFW_VISIBLE, 0);
#endif
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
#if __APPLE__
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
#endif
GLFWwindow* window = glfwCreateWindow( w, h, title, NULL, NULL);
if( !window ) return 1;
{
GLFWimage icon;
icon.pixels = stbi_load_from_memory( (const stbi_uc*)Icon_data, Icon_size, &icon.width, &icon.height, nullptr, 4 );
glfwSetWindowIcon( window, 1, &icon );
free( icon.pixels );
}
glfwSetWindowPos( window, x, y );
#ifdef GLFW_MAXIMIZED
if( maximize ) glfwMaximizeWindow( window );
#endif
s_glfwWindow = window;
glfwMakeContextCurrent(window);
glfwSwapInterval(1); // Enable vsync
glfwSetWindowRefreshCallback( window, WindowRefreshCallback );
#ifdef _WIN32
typedef UINT(*GDFS)(void);
GDFS getDpiForSystem = nullptr;
HMODULE dll = GetModuleHandleW(L"user32.dll");
if( dll != INVALID_HANDLE_VALUE ) getDpiForSystem = (GDFS)GetProcAddress(dll, "GetDpiForSystem");
if( getDpiForSystem ) dpiScale = getDpiForSystem() / 96.f;
#elif defined __linux__
# if GLFW_VERSION_MAJOR > 3 || ( GLFW_VERSION_MAJOR == 3 && GLFW_VERSION_MINOR >= 3 )
auto monitor = glfwGetWindowMonitor( window );
if( !monitor ) monitor = glfwGetPrimaryMonitor();
if( monitor )
{
float x, y;
glfwGetMonitorContentScale( monitor, &x, &y );
dpiScale = x;
}
# endif
#endif
const auto envDpiScale = getenv( "TRACY_DPI_SCALE" );
if( envDpiScale )
{
const auto cnv = atof( envDpiScale );
if( cnv != 0 ) dpiScale = cnv;
}
// Setup ImGui binding
IMGUI_CHECKVERSION();
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
std::string iniFileName = tracy::GetSavePath( "imgui.ini" );
io.IniFilename = iniFileName.c_str();
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard | ImGuiConfigFlags_DockingEnable;
ImGui_ImplGlfw_InitForOpenGL( window, true );
ImGui_ImplOpenGL3_Init( "#version 150" );
SetupDPIScale( dpiScale, fixedWidth, bigFont, smallFont );
if( initFileOpen )
{
view = std::make_unique<tracy::View>( RunOnMainThread, *initFileOpen, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
initFileOpen.reset();
}
else if( connectTo )
{
view = std::make_unique<tracy::View>( RunOnMainThread, connectTo, port, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
#ifndef TRACY_NO_FILESELECTOR
NFD_Init();
#endif
glfwShowWindow( window );
// Main loop
while (!glfwWindowShouldClose(window))
{
glfwPollEvents();
if( glfwGetWindowAttrib( window, GLFW_ICONIFIED ) )
{
std::this_thread::sleep_for( std::chrono::milliseconds( 50 ) );
continue;
}
DrawContents();
if( !glfwGetWindowAttrib( window, GLFW_FOCUSED ) )
{
std::this_thread::sleep_for( std::chrono::milliseconds( 50 ) );
}
std::unique_lock<std::mutex> lock( mainThreadLock );
if( !mainThreadTasks.empty() )
{
std::vector<std::function<void()>> tmp;
std::swap( tmp, mainThreadTasks );
lock.unlock();
for( auto& cb : tmp ) cb();
}
}
if( loadThread.joinable() ) loadThread.join();
if( updateThread.joinable() ) updateThread.join();
if( updateNotesThread.joinable() ) updateNotesThread.join();
view.reset();
{
FILE* f = fopen( winPosFile.c_str(), "wb" );
if( f )
{
#ifdef GLFW_MAXIMIZED
uint32_t maximized = glfwGetWindowAttrib( window, GLFW_MAXIMIZED );
if( maximized ) glfwRestoreWindow( window );
#else
uint32_t maximized = 0;
#endif
glfwGetWindowPos( window, &x, &y );
glfwGetWindowSize( window, &w, &h );
uint32_t data[5] = { uint32_t( x ), uint32_t( y ), uint32_t( w ), uint32_t( h ), maximized };
fwrite( data, 1, sizeof( data ), f );
fclose( f );
}
}
// Cleanup
ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext();
glfwDestroyWindow(window);
#ifndef TRACY_NO_FILESELECTOR
NFD_Quit();
#endif
glfwTerminate();
{
FILE* f = fopen( connHistFile.c_str(), "wb" );
if( f )
{
uint64_t sz = uint64_t( connHistMap.size() );
fwrite( &sz, 1, sizeof( uint64_t ), f );
for( auto& v : connHistMap )
{
sz = uint64_t( v.first.size() );
fwrite( &sz, 1, sizeof( uint64_t ), f );
fwrite( v.first.c_str(), 1, sz, f );
fwrite( &v.second, 1, sizeof( v.second ), f );
}
fclose( f );
}
}
{
FILE* f = fopen( filtersFile.c_str(), "wb" );
if( f )
{
uint8_t sz = strlen( addrFilter.InputBuf );
fwrite( &sz, 1, sizeof( sz ), f );
fwrite( addrFilter.InputBuf, 1, sz, f );
sz = strlen( portFilter.InputBuf );
fwrite( &sz, 1, sizeof( sz ), f );
fwrite( portFilter.InputBuf, 1, sz, f );
sz = strlen( progFilter.InputBuf );
fwrite( &sz, 1, sizeof( sz ), f );
fwrite( progFilter.InputBuf, 1, sz, f );
fclose( f );
}
}
return 0;
}
static void DrawContents()
{
static bool reconnect = false;
static std::string reconnectAddr;
static uint16_t reconnectPort;
static bool showFilter = false;
const ImVec4 clear_color = ImColor( 114, 144, 154 );
int display_w, display_h;
glfwGetFramebufferSize(s_glfwWindow, &display_w, &display_h);
ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
tracy::MouseFrame();
setlocale( LC_NUMERIC, "C" );
if( !view )
{
if( s_customTitle )
{
s_customTitle = false;
glfwSetWindowTitle( s_glfwWindow, title );
}
const auto time = std::chrono::duration_cast<std::chrono::milliseconds>( std::chrono::system_clock::now().time_since_epoch() ).count();
if( !broadcastListen )
{
broadcastListen = std::make_unique<tracy::UdpListen>();
if( !broadcastListen->Listen( port ) )
{
broadcastListen.reset();
}
}
else
{
tracy::IpAddress addr;
size_t len;
for(;;)
{
auto msg = broadcastListen->Read( len, addr, 0 );
if( !msg ) break;
if( len > sizeof( tracy::BroadcastMessage ) ) continue;
tracy::BroadcastMessage bm;
memcpy( &bm, msg, len );
if( bm.broadcastVersion == tracy::BroadcastVersion )
{
const uint32_t protoVer = bm.protocolVersion;
const auto procname = bm.programName;
const auto activeTime = bm.activeTime;
const auto listenPort = bm.listenPort;
auto address = addr.GetText();
const auto ipNumerical = addr.GetNumber();
const auto clientId = uint64_t( ipNumerical ) | ( uint64_t( listenPort ) << 32 );
auto it = clients.find( clientId );
if( activeTime >= 0 )
{
if( it == clients.end() )
{
std::string ip( address );
resolvLock.lock();
if( resolvMap.find( ip ) == resolvMap.end() )
{
resolvMap.emplace( ip, ip );
resolv.Query( ipNumerical, [ip] ( std::string&& name ) {
std::lock_guard<std::mutex> lock( resolvLock );
auto it = resolvMap.find( ip );
assert( it != resolvMap.end() );
std::swap( it->second, name );
} );
}
resolvLock.unlock();
clients.emplace( clientId, ClientData { time, protoVer, activeTime, listenPort, procname, std::move( ip ) } );
}
else
{
it->second.time = time;
it->second.activeTime = activeTime;
it->second.port = listenPort;
if( it->second.protocolVersion != protoVer ) it->second.protocolVersion = protoVer;
if( strcmp( it->second.procName.c_str(), procname ) != 0 ) it->second.procName = procname;
}
}
else if( it != clients.end() )
{
clients.erase( it );
}
}
}
auto it = clients.begin();
while( it != clients.end() )
{
const auto diff = time - it->second.time;
if( diff > 4000 ) // 4s
{
it = clients.erase( it );
}
else
{
++it;
}
}
}
auto& style = ImGui::GetStyle();
style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.129f, 0.137f, 0.11f, 1.f );
ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse );
char buf[128];
sprintf( buf, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
ImGui::PushFont( bigFont );
tracy::TextCentered( buf );
ImGui::PopFont();
ImGui::SameLine( ImGui::GetWindowContentRegionMax().x - ImGui::CalcTextSize( ICON_FA_WRENCH ).x - ImGui::GetStyle().FramePadding.x * 2 );
if( ImGui::Button( ICON_FA_WRENCH ) )
{
ImGui::OpenPopup( "About Tracy" );
}
bool keepOpenAbout = true;
if( ImGui::BeginPopupModal( "About Tracy", &keepOpenAbout, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( bigFont );
tracy::TextCentered( buf );
ImGui::PopFont();
ImGui::Spacing();
ImGui::TextUnformatted( "A real time, nanosecond resolution, remote telemetry, hybrid\nframe and sampling profiler for games and other applications." );
ImGui::Spacing();
ImGui::TextUnformatted( "Created by Bartosz Taudul" );
ImGui::SameLine();
tracy::TextDisabledUnformatted( "<wolf@nereid.pl>" );
tracy::TextDisabledUnformatted( "Additional authors listed in AUTHORS file and in git history." );
ImGui::Separator();
tracy::TextFocused( "Protocol version", tracy::RealToString( tracy::ProtocolVersion ) );
tracy::TextFocused( "Broadcast version", tracy::RealToString( tracy::BroadcastVersion ) );
tracy::TextFocused( "Build date", __DATE__ ", " __TIME__ );
ImGui::EndPopup();
}
ImGui::Spacing();
if( ImGui::Button( ICON_FA_BOOK " Manual" ) )
{
tracy::OpenWebpage( "https://github.com/wolfpld/tracy/releases" );
}
ImGui::SameLine();
if( ImGui::Button( ICON_FA_GLOBE_AMERICAS " Web" ) )
{
ImGui::OpenPopup( "web" );
}
if( ImGui::BeginPopup( "web" ) )
{
if( ImGui::Selectable( ICON_FA_HOME " Tracy Profiler home page" ) )
{
tracy::OpenWebpage( "https://github.com/wolfpld/tracy" );
}
ImGui::Separator();
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.8" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=30wpRpHTTag" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.7" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=_hU7vw00MZ4" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.6" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.5" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=P6E7qLMmzTQ" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.4" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=eAkgkaO8B9o" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " New features in v0.3" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=3SXpDpDh2Uo" );
}
if( ImGui::Selectable( ICON_FA_VIDEO " Overview of v0.2" ) )
{
tracy::OpenWebpage( "https://www.youtube.com/watch?v=fB5B46lbapc" );
}
ImGui::EndPopup();
}
ImGui::SameLine();
if( ImGui::Button( ICON_FA_COMMENT " Chat" ) )
{
tracy::OpenWebpage( "https://discord.gg/pk78auc" );
}
ImGui::SameLine();
if( ImGui::Button( ICON_FA_HEART " Sponsor" ) )
{
tracy::OpenWebpage( "https://github.com/sponsors/wolfpld/" );
}
if( updateVersion != 0 && updateVersion > tracy::FileVersion( tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ) )
{
ImGui::Separator();
ImGui::TextColored( ImVec4( 1, 1, 0, 1 ), ICON_FA_EXCLAMATION " Update to %i.%i.%i is available!", ( updateVersion >> 16 ) & 0xFF, ( updateVersion >> 8 ) & 0xFF, updateVersion & 0xFF );
ImGui::SameLine();
if( ImGui::SmallButton( ICON_FA_GIFT " Get it!" ) )
{
showReleaseNotes = true;
if( !updateNotesThread.joinable() )
{
updateNotesThread = std::thread( [] {
HttpRequest( "nereid.pl", "/tracy/notes", 8099, [] ( int size, char* data ) {
std::string notes( data, data+size );
delete[] data;
RunOnMainThread( [notes = move( notes )] { releaseNotes = std::move( notes ); } );
} );
} );
}
}
}
ImGui::Separator();
ImGui::TextUnformatted( "Client address" );
bool connectClicked = false;
connectClicked |= ImGui::InputTextWithHint( "###connectaddress", "Enter address", addr, 1024, ImGuiInputTextFlags_EnterReturnsTrue );
if( !connHistVec.empty() )
{
ImGui::SameLine();
if( ImGui::BeginCombo( "##frameCombo", nullptr, ImGuiComboFlags_NoPreview ) )
{
int idxRemove = -1;
const auto sz = std::min<size_t>( 5, connHistVec.size() );
for( size_t i=0; i<sz; i++ )
{
const auto& str = connHistVec[i]->first;
if( ImGui::Selectable( str.c_str() ) )
{
memcpy( addr, str.c_str(), str.size() + 1 );
}
if( ImGui::IsItemHovered() && ImGui::IsKeyPressed( ImGui::GetKeyIndex( ImGuiKey_Delete ), false ) )
{
idxRemove = (int)i;
}
}
if( idxRemove >= 0 )
{
connHistMap.erase( connHistVec[idxRemove] );
connHistVec = RebuildConnectionHistory( connHistMap );
}
ImGui::EndCombo();
}
}
connectClicked |= ImGui::Button( ICON_FA_WIFI " Connect" );
if( connectClicked && *addr && !loadThread.joinable() )
{
const auto addrLen = strlen( addr );
std::string addrStr( addr, addr+addrLen );
auto it = connHistMap.find( addrStr );
if( it != connHistMap.end() )
{
it->second++;
}
else
{
connHistMap.emplace( std::move( addrStr ), 1 );
}
connHistVec = RebuildConnectionHistory( connHistMap );
auto ptr = addr + addrLen - 1;
while( ptr > addr && *ptr != ':' ) ptr--;
if( *ptr == ':' )
{
std::string addrPart = std::string( addr, ptr );
uint16_t portPart = (uint16_t)atoi( ptr+1 );
view = std::make_unique<tracy::View>( RunOnMainThread, addrPart.c_str(), portPart, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
else
{
view = std::make_unique<tracy::View>( RunOnMainThread, addr, port, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
}
ImGui::SameLine( 0, ImGui::GetTextLineHeight() * 2 );
#ifndef TRACY_NO_FILESELECTOR
if( ImGui::Button( ICON_FA_FOLDER_OPEN " Open saved trace" ) && !loadThread.joinable() )
{
nfdu8filteritem_t filter = { "Tracy Profiler trace file", "tracy" };
nfdu8char_t* fn;
auto res = NFD_OpenDialogU8( &fn, &filter, 1, nullptr );
if( res == NFD_OKAY )
{
try
{
auto f = std::shared_ptr<tracy::FileRead>( tracy::FileRead::Open( fn ) );
if( f )
{
loadThread = std::thread( [f] {
try
{
view = std::make_unique<tracy::View>( RunOnMainThread, *f, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
catch( const tracy::UnsupportedVersion& e )
{
badVer.state = tracy::BadVersionState::UnsupportedVersion;
badVer.version = e.version;
}
catch( const tracy::LegacyVersion& e )
{
badVer.state = tracy::BadVersionState::LegacyVersion;
badVer.version = e.version;
}
} );
}
}
catch( const tracy::NotTracyDump& )
{
badVer.state = tracy::BadVersionState::BadFile;
}
catch( const tracy::FileReadError& )
{
badVer.state = tracy::BadVersionState::ReadError;
}
NFD_FreePathU8( fn );
}
}
if( badVer.state != tracy::BadVersionState::Ok )
{
if( loadThread.joinable() ) { loadThread.join(); }
tracy::BadVersion( badVer, bigFont );
}
#endif
if( !clients.empty() )
{
ImGui::Separator();
ImGui::TextUnformatted( "Discovered clients:" );
ImGui::SameLine();
tracy::SmallToggleButton( ICON_FA_FILTER " Filter", showFilter );
if( addrFilter.IsActive() || portFilter.IsActive() || progFilter.IsActive() )
{
ImGui::SameLine();
tracy::TextColoredUnformatted( 0xFF00FFFF, ICON_FA_EXCLAMATION_TRIANGLE );
tracy::TooltipIfHovered( "Filters are active" );
if( showFilter )
{
ImGui::SameLine();
if( ImGui::SmallButton( ICON_FA_BACKSPACE " Clear" ) )
{
addrFilter.Clear();
portFilter.Clear();
progFilter.Clear();
}
}
}
if( showFilter )
{
const auto w = ImGui::GetTextLineHeight() * 12;
ImGui::Separator();
addrFilter.Draw( "Address filter", w );
portFilter.Draw( "Port filter", w );
progFilter.Draw( "Program filter", w );
}
ImGui::Separator();
static bool widthSet = false;
ImGui::Columns( 3 );
if( !widthSet )
{
widthSet = true;
const auto w = ImGui::GetWindowWidth();
ImGui::SetColumnWidth( 0, w * 0.35f );
ImGui::SetColumnWidth( 1, w * 0.175f );
ImGui::SetColumnWidth( 2, w * 0.425f );
}
std::lock_guard<std::mutex> lock( resolvLock );
int idx = 0;
int passed = 0;
for( auto& v : clients )
{
const bool badProto = v.second.protocolVersion != tracy::ProtocolVersion;
bool sel = false;
const auto& name = resolvMap.find( v.second.address );
assert( name != resolvMap.end() );
if( addrFilter.IsActive() && !addrFilter.PassFilter( name->second.c_str() ) && !addrFilter.PassFilter( v.second.address.c_str() ) ) continue;
if( portFilter.IsActive() )
{
char buf[32];
sprintf( buf, "%" PRIu16, v.second.port );
if( !portFilter.PassFilter( buf ) ) continue;
}
if( progFilter.IsActive() && !progFilter.PassFilter( v.second.procName.c_str() ) ) continue;
ImGuiSelectableFlags flags = ImGuiSelectableFlags_SpanAllColumns;
if( badProto ) flags |= ImGuiSelectableFlags_Disabled;
ImGui::PushID( idx++ );
const bool selected = ImGui::Selectable( name->second.c_str(), &sel, flags );
ImGui::PopID();
if( ImGui::IsItemHovered( ImGuiHoveredFlags_AllowWhenDisabled ) )
{
char portstr[32];
sprintf( portstr, "%" PRIu16, v.second.port );
ImGui::BeginTooltip();
if( badProto )
{
tracy::TextColoredUnformatted( 0xFF0000FF, "Incompatible protocol!" );
ImGui::SameLine();
ImGui::TextDisabled( "(used: %i, required: %i)", v.second.protocolVersion, tracy::ProtocolVersion );
}
tracy::TextFocused( "IP:", v.second.address.c_str() );
tracy::TextFocused( "Port:", portstr );
ImGui::EndTooltip();
}
if( v.second.port != port )
{
ImGui::SameLine();
ImGui::TextDisabled( ":%" PRIu16, v.second.port );
}
if( selected && !loadThread.joinable() )
{
view = std::make_unique<tracy::View>( RunOnMainThread, v.second.address.c_str(), v.second.port, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
ImGui::NextColumn();
const auto acttime = ( v.second.activeTime + ( time - v.second.time ) / 1000 ) * 1000000000ll;
if( badProto )
{
tracy::TextDisabledUnformatted( tracy::TimeToString( acttime ) );
}
else
{
ImGui::TextUnformatted( tracy::TimeToString( acttime ) );
}
ImGui::NextColumn();
if( badProto )
{
tracy::TextDisabledUnformatted( v.second.procName.c_str() );
}
else
{
ImGui::TextUnformatted( v.second.procName.c_str() );
}
ImGui::NextColumn();
passed++;
}
ImGui::EndColumns();
if( passed == 0 )
{
ImGui::TextUnformatted( "All clients are filtered." );
}
}
ImGui::End();
if( showReleaseNotes )
{
assert( updateNotesThread.joinable() );
ImGui::SetNextWindowSize( ImVec2( 600 * dpiScale, 400 * dpiScale ), ImGuiCond_FirstUseEver );
ImGui::Begin( "Update available!", &showReleaseNotes );
if( ImGui::Button( ICON_FA_DOWNLOAD " Download" ) )
{
tracy::OpenWebpage( "https://github.com/wolfpld/tracy/releases" );
}
ImGui::BeginChild( "###notes", ImVec2( 0, 0 ), true );
if( releaseNotes.empty() )
{
static float rnTime = 0;
rnTime += ImGui::GetIO().DeltaTime;
tracy::TextCentered( "Fetching release notes..." );
tracy::DrawWaitingDots( rnTime );
}
else
{
ImGui::PushFont( fixedWidth );
ImGui::TextUnformatted( releaseNotes.c_str() );
ImGui::PopFont();
}
ImGui::EndChild();
ImGui::End();
}
}
else
{
if( showReleaseNotes ) showReleaseNotes = false;
if( broadcastListen )
{
broadcastListen.reset();
clients.clear();
}
if( loadThread.joinable() ) loadThread.join();
view->NotifyRootWindowSize( display_w, display_h );
if( !view->Draw() )
{
viewShutdown.store( ViewShutdown::True, std::memory_order_relaxed );
reconnect = view->ReconnectRequested();
if( reconnect )
{
reconnectAddr = view->GetAddress();
reconnectPort = view->GetPort();
}
loadThread = std::thread( [view = std::move( view )] () mutable {
view.reset();
viewShutdown.store( ViewShutdown::Join, std::memory_order_relaxed );
} );
}
}
auto& progress = tracy::Worker::GetLoadProgress();
auto totalProgress = progress.total.load( std::memory_order_relaxed );
if( totalProgress != 0 )
{
ImGui::OpenPopup( "Loading trace..." );
}
if( ImGui::BeginPopupModal( "Loading trace...", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( bigFont );
tracy::TextCentered( ICON_FA_HOURGLASS_HALF );
ImGui::PopFont();
animTime += ImGui::GetIO().DeltaTime;
tracy::DrawWaitingDots( animTime );
auto currProgress = progress.progress.load( std::memory_order_relaxed );
if( totalProgress == 0 )
{
ImGui::CloseCurrentPopup();
totalProgress = currProgress;
}
switch( currProgress )
{
case tracy::LoadProgress::Initialization:
ImGui::TextUnformatted( "Initialization..." );
break;
case tracy::LoadProgress::Locks:
ImGui::TextUnformatted( "Locks..." );
break;
case tracy::LoadProgress::Messages:
ImGui::TextUnformatted( "Messages..." );
break;
case tracy::LoadProgress::Zones:
ImGui::TextUnformatted( "CPU zones..." );
break;
case tracy::LoadProgress::GpuZones:
ImGui::TextUnformatted( "GPU zones..." );
break;
case tracy::LoadProgress::Plots:
ImGui::TextUnformatted( "Plots..." );
break;
case tracy::LoadProgress::Memory:
ImGui::TextUnformatted( "Memory..." );
break;
case tracy::LoadProgress::CallStacks:
ImGui::TextUnformatted( "Call stacks..." );
break;
case tracy::LoadProgress::FrameImages:
ImGui::TextUnformatted( "Frame images..." );
break;
case tracy::LoadProgress::ContextSwitches:
ImGui::TextUnformatted( "Context switches..." );
break;
case tracy::LoadProgress::ContextSwitchesPerCpu:
ImGui::TextUnformatted( "CPU context switches..." );
break;
default:
assert( false );
break;
}
ImGui::ProgressBar( float( currProgress ) / totalProgress, ImVec2( 200 * dpiScale, 0 ) );
ImGui::TextUnformatted( "Progress..." );
auto subTotal = progress.subTotal.load( std::memory_order_relaxed );
auto subProgress = progress.subProgress.load( std::memory_order_relaxed );
if( subTotal == 0 )
{
ImGui::ProgressBar( 1.f, ImVec2( 200 * dpiScale, 0 ) );
}
else
{
ImGui::ProgressBar( float( subProgress ) / subTotal, ImVec2( 200 * dpiScale, 0 ) );
}
ImGui::EndPopup();
}
switch( viewShutdown.load( std::memory_order_relaxed ) )
{
case ViewShutdown::True:
ImGui::OpenPopup( "Capture cleanup..." );
break;
case ViewShutdown::Join:
loadThread.join();
viewShutdown.store( ViewShutdown::False, std::memory_order_relaxed );
if( reconnect )
{
view = std::make_unique<tracy::View>( RunOnMainThread, reconnectAddr.c_str(), reconnectPort, fixedWidth, smallFont, bigFont, SetWindowTitleCallback, GetMainWindowNative, SetupScaleCallback );
}
break;
default:
break;
}
if( ImGui::BeginPopupModal( "Capture cleanup...", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
if( viewShutdown.load( std::memory_order_relaxed ) != ViewShutdown::True ) ImGui::CloseCurrentPopup();
ImGui::PushFont( bigFont );
tracy::TextCentered( ICON_FA_BROOM );
ImGui::PopFont();
animTime += ImGui::GetIO().DeltaTime;
tracy::DrawWaitingDots( animTime );
ImGui::TextUnformatted( "Please wait, cleanup is in progress" );
ImGui::EndPopup();
}
// Rendering
ImGui::Render();
glViewport(0, 0, display_w, display_h);
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
glClear(GL_COLOR_BUFFER_BIT);
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
// Update and Render additional Platform Windows
// (Platform functions may change the current OpenGL context, so we save/restore it to make it easier to paste this code elsewhere.
// For this specific demo app we could also call glfwMakeContextCurrent(window) directly)
if (ImGui::GetIO().ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
{
GLFWwindow* backup_current_context = glfwGetCurrentContext();
ImGui::UpdatePlatformWindows();
ImGui::RenderPlatformWindowsDefault();
glfwMakeContextCurrent(backup_current_context);
}
glfwSwapBuffers(s_glfwWindow);
}
|
whupdup/frame
|
real/third_party/tracy/profiler/src/main.cpp
|
C++
|
gpl-3.0
| 42,907
|
/* stb_image - v2.27 - public domain image loader - http://nothings.org/stb
no warranty implied; use at your own risk
Do this:
#define STB_IMAGE_IMPLEMENTATION
before you include this file in *one* C or C++ file to create the implementation.
// i.e. it should look like this:
#include ...
#include ...
#include ...
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
You can #define STBI_ASSERT(x) before the #include to avoid using assert.h.
And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free
QUICK NOTES:
Primarily of interest to game developers and other people who can
avoid problematic images and only need the trivial interface
JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib)
PNG 1/2/4/8/16-bit-per-channel
TGA (not sure what subset, if a subset)
BMP non-1bpp, non-RLE
PSD (composited view only, no extra channels, 8/16 bit-per-channel)
GIF (*comp always reports as 4-channel)
HDR (radiance rgbE format)
PIC (Softimage PIC)
PNM (PPM and PGM binary only)
Animated GIF still needs a proper API, but here's one way to do it:
http://gist.github.com/urraka/685d9a6340b26b830d49
- decode from memory or through FILE (define STBI_NO_STDIO to remove code)
- decode from arbitrary I/O callbacks
- SIMD acceleration on x86/x64 (SSE2) and ARM (NEON)
Full documentation under "DOCUMENTATION" below.
LICENSE
See end of file for license information.
RECENT REVISION HISTORY:
2.27 (2021-07-11) document stbi_info better, 16-bit PNM support, bug fixes
2.26 (2020-07-13) many minor fixes
2.25 (2020-02-02) fix warnings
2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically
2.23 (2019-08-11) fix clang static analysis warning
2.22 (2019-03-04) gif fixes, fix warnings
2.21 (2019-02-25) fix typo in comment
2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs
2.19 (2018-02-11) fix warning
2.18 (2018-01-30) fix warnings
2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings
2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes
2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC
2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs
2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes
2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes
2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64
RGB-format JPEG; remove white matting in PSD;
allocate large structures on the stack;
correct channel count for PNG & BMP
2.10 (2016-01-22) avoid warning introduced in 2.09
2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED
See end of file for full revision history.
============================ Contributors =========================
Image formats Extensions, features
Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info)
Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info)
Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG)
Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks)
Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG)
Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip)
Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD)
github:urraka (animated gif) Junggon Kim (PNM comments)
Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA)
socks-the-fox (16-bit PNG)
Jeremy Sawicki (handle all ImageNet JPGs)
Optimizations & bugfixes Mikhail Morozov (1-bit BMP)
Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query)
Arseny Kapoulkine Simon Breuss (16-bit PNM)
John-Mark Allen
Carmelo J Fdez-Aguera
Bug & warning fixes
Marc LeBlanc David Woo Guillaume George Martins Mozeiko
Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski
Phil Jordan Dave Moore Roy Eltham
Hayaki Saito Nathan Reed Won Chun
Luke Graham Johan Duparc Nick Verigakis the Horde3D community
Thomas Ruf Ronny Chevalier github:rlyeh
Janez Zemva John Bartholomew Michal Cichon github:romigrou
Jonathan Blow Ken Hamada Tero Hanninen github:svdijk
Eugene Golushkov Laurent Gomila Cort Stratton github:snagar
Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex
Cass Everitt Ryamond Barbiero github:grim210
Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw
Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus
Josh Tobin Matthew Gregan github:poppolopoppo
Julian Raschke Gregory Mullen Christian Floisand github:darealshinji
Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007
Brad Weinberger Matvey Cherevko github:mosra
Luca Sas Alexander Veselov Zack Middleton [reserved]
Ryan C. Gordon [reserved] [reserved]
DO NOT ADD YOUR NAME HERE
Jacko Dirks
To add your name to the credits, pick a random blank space in the middle and fill it.
80% of merge conflicts on stb PRs are due to people adding their name at the end
of the credits.
*/
#ifndef STBI_INCLUDE_STB_IMAGE_H
#define STBI_INCLUDE_STB_IMAGE_H
// DOCUMENTATION
//
// Limitations:
// - no 12-bit-per-channel JPEG
// - no JPEGs with arithmetic coding
// - GIF always returns *comp=4
//
// Basic usage (see HDR discussion below for HDR usage):
// int x,y,n;
// unsigned char *data = stbi_load(filename, &x, &y, &n, 0);
// // ... process data if not NULL ...
// // ... x = width, y = height, n = # 8-bit components per pixel ...
// // ... replace '0' with '1'..'4' to force that many components per pixel
// // ... but 'n' will always be the number that it would have been if you said 0
// stbi_image_free(data)
//
// Standard parameters:
// int *x -- outputs image width in pixels
// int *y -- outputs image height in pixels
// int *channels_in_file -- outputs # of image components in image file
// int desired_channels -- if non-zero, # of image components requested in result
//
// The return value from an image loader is an 'unsigned char *' which points
// to the pixel data, or NULL on an allocation failure or if the image is
// corrupt or invalid. The pixel data consists of *y scanlines of *x pixels,
// with each pixel consisting of N interleaved 8-bit components; the first
// pixel pointed to is top-left-most in the image. There is no padding between
// image scanlines or between pixels, regardless of format. The number of
// components N is 'desired_channels' if desired_channels is non-zero, or
// *channels_in_file otherwise. If desired_channels is non-zero,
// *channels_in_file has the number of components that _would_ have been
// output otherwise. E.g. if you set desired_channels to 4, you will always
// get RGBA output, but you can check *channels_in_file to see if it's trivially
// opaque because e.g. there were only 3 channels in the source image.
//
// An output image with N components has the following components interleaved
// in this order in each pixel:
//
// N=#comp components
// 1 grey
// 2 grey, alpha
// 3 red, green, blue
// 4 red, green, blue, alpha
//
// If image loading fails for any reason, the return value will be NULL,
// and *x, *y, *channels_in_file will be unchanged. The function
// stbi_failure_reason() can be queried for an extremely brief, end-user
// unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS
// to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly
// more user-friendly ones.
//
// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized.
//
// To query the width, height and component count of an image without having to
// decode the full file, you can use the stbi_info family of functions:
//
// int x,y,n,ok;
// ok = stbi_info(filename, &x, &y, &n);
// // returns ok=1 and sets x, y, n if image is a supported format,
// // 0 otherwise.
//
// Note that stb_image pervasively uses ints in its public API for sizes,
// including sizes of memory buffers. This is now part of the API and thus
// hard to change without causing breakage. As a result, the various image
// loaders all have certain limits on image size; these differ somewhat
// by format but generally boil down to either just under 2GB or just under
// 1GB. When the decoded image would be larger than this, stb_image decoding
// will fail.
//
// Additionally, stb_image will reject image files that have any of their
// dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS,
// which defaults to 2**24 = 16777216 pixels. Due to the above memory limit,
// the only way to have an image with such dimensions load correctly
// is for it to have a rather extreme aspect ratio. Either way, the
// assumption here is that such larger images are likely to be malformed
// or malicious. If you do need to load an image with individual dimensions
// larger than that, and it still fits in the overall size limit, you can
// #define STBI_MAX_DIMENSIONS on your own to be something larger.
//
// ===========================================================================
//
// UNICODE:
//
// If compiling for Windows and you wish to use Unicode filenames, compile
// with
// #define STBI_WINDOWS_UTF8
// and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert
// Windows wchar_t filenames to utf8.
//
// ===========================================================================
//
// Philosophy
//
// stb libraries are designed with the following priorities:
//
// 1. easy to use
// 2. easy to maintain
// 3. good performance
//
// Sometimes I let "good performance" creep up in priority over "easy to maintain",
// and for best performance I may provide less-easy-to-use APIs that give higher
// performance, in addition to the easy-to-use ones. Nevertheless, it's important
// to keep in mind that from the standpoint of you, a client of this library,
// all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all.
//
// Some secondary priorities arise directly from the first two, some of which
// provide more explicit reasons why performance can't be emphasized.
//
// - Portable ("ease of use")
// - Small source code footprint ("easy to maintain")
// - No dependencies ("ease of use")
//
// ===========================================================================
//
// I/O callbacks
//
// I/O callbacks allow you to read from arbitrary sources, like packaged
// files or some other source. Data read from callbacks are processed
// through a small internal buffer (currently 128 bytes) to try to reduce
// overhead.
//
// The three functions you must define are "read" (reads some bytes of data),
// "skip" (skips some bytes of data), "eof" (reports if the stream is at the end).
//
// ===========================================================================
//
// SIMD support
//
// The JPEG decoder will try to automatically use SIMD kernels on x86 when
// supported by the compiler. For ARM Neon support, you must explicitly
// request it.
//
// (The old do-it-yourself SIMD API is no longer supported in the current
// code.)
//
// On x86, SSE2 will automatically be used when available based on a run-time
// test; if not, the generic C versions are used as a fall-back. On ARM targets,
// the typical path is to have separate builds for NEON and non-NEON devices
// (at least this is true for iOS and Android). Therefore, the NEON support is
// toggled by a build flag: define STBI_NEON to get NEON loops.
//
// If for some reason you do not want to use any of SIMD code, or if
// you have issues compiling it, you can disable it entirely by
// defining STBI_NO_SIMD.
//
// ===========================================================================
//
// HDR image support (disable by defining STBI_NO_HDR)
//
// stb_image supports loading HDR images in general, and currently the Radiance
// .HDR file format specifically. You can still load any file through the existing
// interface; if you attempt to load an HDR file, it will be automatically remapped
// to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1;
// both of these constants can be reconfigured through this interface:
//
// stbi_hdr_to_ldr_gamma(2.2f);
// stbi_hdr_to_ldr_scale(1.0f);
//
// (note, do not use _inverse_ constants; stbi_image will invert them
// appropriately).
//
// Additionally, there is a new, parallel interface for loading files as
// (linear) floats to preserve the full dynamic range:
//
// float *data = stbi_loadf(filename, &x, &y, &n, 0);
//
// If you load LDR images through this interface, those images will
// be promoted to floating point values, run through the inverse of
// constants corresponding to the above:
//
// stbi_ldr_to_hdr_scale(1.0f);
// stbi_ldr_to_hdr_gamma(2.2f);
//
// Finally, given a filename (or an open file or memory block--see header
// file for details) containing image data, you can query for the "most
// appropriate" interface to use (that is, whether the image is HDR or
// not), using:
//
// stbi_is_hdr(char *filename);
//
// ===========================================================================
//
// iPhone PNG support:
//
// We optionally support converting iPhone-formatted PNGs (which store
// premultiplied BGRA) back to RGB, even though they're internally encoded
// differently. To enable this conversion, call
// stbi_convert_iphone_png_to_rgb(1).
//
// Call stbi_set_unpremultiply_on_load(1) as well to force a divide per
// pixel to remove any premultiplied alpha *only* if the image file explicitly
// says there's premultiplied data (currently only happens in iPhone images,
// and only if iPhone convert-to-rgb processing is on).
//
// ===========================================================================
//
// ADDITIONAL CONFIGURATION
//
// - You can suppress implementation of any of the decoders to reduce
// your code footprint by #defining one or more of the following
// symbols before creating the implementation.
//
// STBI_NO_JPEG
// STBI_NO_PNG
// STBI_NO_BMP
// STBI_NO_PSD
// STBI_NO_TGA
// STBI_NO_GIF
// STBI_NO_HDR
// STBI_NO_PIC
// STBI_NO_PNM (.ppm and .pgm)
//
// - You can request *only* certain decoders and suppress all other ones
// (this will be more forward-compatible, as addition of new decoders
// doesn't require you to disable them explicitly):
//
// STBI_ONLY_JPEG
// STBI_ONLY_PNG
// STBI_ONLY_BMP
// STBI_ONLY_PSD
// STBI_ONLY_TGA
// STBI_ONLY_GIF
// STBI_ONLY_HDR
// STBI_ONLY_PIC
// STBI_ONLY_PNM (.ppm and .pgm)
//
// - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still
// want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB
//
// - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater
// than that size (in either width or height) without further processing.
// This is to let programs in the wild set an upper bound to prevent
// denial-of-service attacks on untrusted data, as one could generate a
// valid image of gigantic dimensions and force stb_image to allocate a
// huge block of memory and spend disproportionate time decoding it. By
// default this is set to (1 << 24), which is 16777216, but that's still
// very big.
#ifndef STBI_NO_STDIO
#include <stdio.h>
#endif // STBI_NO_STDIO
#define STBI_VERSION 1
enum
{
STBI_default = 0, // only used for desired_channels
STBI_grey = 1,
STBI_grey_alpha = 2,
STBI_rgb = 3,
STBI_rgb_alpha = 4
};
#include <stdlib.h>
typedef unsigned char stbi_uc;
typedef unsigned short stbi_us;
#ifdef __cplusplus
extern "C" {
#endif
#ifndef STBIDEF
#ifdef STB_IMAGE_STATIC
#define STBIDEF static
#else
#define STBIDEF extern
#endif
#endif
//////////////////////////////////////////////////////////////////////////////
//
// PRIMARY API - works on images of any type
//
//
// load image by filename, open file, or memory buffer
//
typedef struct
{
int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read
void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative
int (*eof) (void *user); // returns nonzero if we are at end of file/data
} stbi_io_callbacks;
////////////////////////////////////
//
// 8-bits-per-channel interface
//
STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels);
#ifndef STBI_NO_STDIO
STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
// for stbi_load_from_file, file pointer is left pointing immediately after image
#endif
#ifndef STBI_NO_GIF
STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp);
#endif
#ifdef STBI_WINDOWS_UTF8
STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input);
#endif
////////////////////////////////////
//
// 16-bits-per-channel interface
//
STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels);
#ifndef STBI_NO_STDIO
STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
#endif
////////////////////////////////////
//
// float-per-channel interface
//
#ifndef STBI_NO_LINEAR
STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels);
#ifndef STBI_NO_STDIO
STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
#endif
#endif
#ifndef STBI_NO_HDR
STBIDEF void stbi_hdr_to_ldr_gamma(float gamma);
STBIDEF void stbi_hdr_to_ldr_scale(float scale);
#endif // STBI_NO_HDR
#ifndef STBI_NO_LINEAR
STBIDEF void stbi_ldr_to_hdr_gamma(float gamma);
STBIDEF void stbi_ldr_to_hdr_scale(float scale);
#endif // STBI_NO_LINEAR
// stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR
STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user);
STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len);
#ifndef STBI_NO_STDIO
STBIDEF int stbi_is_hdr (char const *filename);
STBIDEF int stbi_is_hdr_from_file(FILE *f);
#endif // STBI_NO_STDIO
// get a VERY brief reason for failure
// on most compilers (and ALL modern mainstream compilers) this is threadsafe
STBIDEF const char *stbi_failure_reason (void);
// free the loaded image -- this is just free()
STBIDEF void stbi_image_free (void *retval_from_stbi_load);
// get image dimensions & components without fully decoding
STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp);
STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len);
STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user);
#ifndef STBI_NO_STDIO
STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp);
STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp);
STBIDEF int stbi_is_16_bit (char const *filename);
STBIDEF int stbi_is_16_bit_from_file(FILE *f);
#endif
// for image formats that explicitly notate that they have premultiplied alpha,
// we just return the colors as stored in the file. set this flag to force
// unpremultiplication. results are undefined if the unpremultiply overflow.
STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply);
// indicate whether we should process iphone images back to canonical format,
// or just pass them through "as-is"
STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert);
// flip the image vertically, so the first pixel in the output array is the bottom left
STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip);
// as above, but only applies to images loaded on the thread that calls the function
// this function is only available if your compiler supports thread-local variables;
// calling it will fail to link if your compiler doesn't
STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply);
STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert);
STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip);
// ZLIB client - used by PNG, available for other purposes
STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen);
STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header);
STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen);
STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen);
STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
#ifdef __cplusplus
}
#endif
//
//
//// end header file /////////////////////////////////////////////////////
#endif // STBI_INCLUDE_STB_IMAGE_H
#ifdef STB_IMAGE_IMPLEMENTATION
#if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \
|| defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \
|| defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \
|| defined(STBI_ONLY_ZLIB)
#ifndef STBI_ONLY_JPEG
#define STBI_NO_JPEG
#endif
#ifndef STBI_ONLY_PNG
#define STBI_NO_PNG
#endif
#ifndef STBI_ONLY_BMP
#define STBI_NO_BMP
#endif
#ifndef STBI_ONLY_PSD
#define STBI_NO_PSD
#endif
#ifndef STBI_ONLY_TGA
#define STBI_NO_TGA
#endif
#ifndef STBI_ONLY_GIF
#define STBI_NO_GIF
#endif
#ifndef STBI_ONLY_HDR
#define STBI_NO_HDR
#endif
#ifndef STBI_ONLY_PIC
#define STBI_NO_PIC
#endif
#ifndef STBI_ONLY_PNM
#define STBI_NO_PNM
#endif
#endif
#if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB)
#define STBI_NO_ZLIB
#endif
#include <stdarg.h>
#include <stddef.h> // ptrdiff_t on osx
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR)
#include <math.h> // ldexp, pow
#endif
#ifndef STBI_NO_STDIO
#include <stdio.h>
#endif
#ifndef STBI_ASSERT
#include <assert.h>
#define STBI_ASSERT(x) assert(x)
#endif
#ifdef __cplusplus
#define STBI_EXTERN extern "C"
#else
#define STBI_EXTERN extern
#endif
#ifndef _MSC_VER
#ifdef __cplusplus
#define stbi_inline inline
#else
#define stbi_inline
#endif
#else
#define stbi_inline __forceinline
#endif
#ifndef STBI_NO_THREAD_LOCALS
#if defined(__cplusplus) && __cplusplus >= 201103L
#define STBI_THREAD_LOCAL thread_local
#elif defined(__GNUC__) && __GNUC__ < 5
#define STBI_THREAD_LOCAL __thread
#elif defined(_MSC_VER)
#define STBI_THREAD_LOCAL __declspec(thread)
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__)
#define STBI_THREAD_LOCAL _Thread_local
#endif
#ifndef STBI_THREAD_LOCAL
#if defined(__GNUC__)
#define STBI_THREAD_LOCAL __thread
#endif
#endif
#endif
#ifdef _MSC_VER
typedef unsigned short stbi__uint16;
typedef signed short stbi__int16;
typedef unsigned int stbi__uint32;
typedef signed int stbi__int32;
#else
#include <stdint.h>
typedef uint16_t stbi__uint16;
typedef int16_t stbi__int16;
typedef uint32_t stbi__uint32;
typedef int32_t stbi__int32;
#endif
// should produce compiler error if size is wrong
typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
#ifdef _MSC_VER
#define STBI_NOTUSED(v) (void)(v)
#else
#define STBI_NOTUSED(v) (void)sizeof(v)
#endif
#ifdef _MSC_VER
#define STBI_HAS_LROTL
#endif
#ifdef STBI_HAS_LROTL
#define stbi_lrot(x,y) _lrotl(x,y)
#else
#define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (-(y) & 31)))
#endif
#if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED))
// ok
#elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED)
// ok
#else
#error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)."
#endif
#ifndef STBI_MALLOC
#define STBI_MALLOC(sz) malloc(sz)
#define STBI_REALLOC(p,newsz) realloc(p,newsz)
#define STBI_FREE(p) free(p)
#endif
#ifndef STBI_REALLOC_SIZED
#define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz)
#endif
// x86/x64 detection
#if defined(__x86_64__) || defined(_M_X64)
#define STBI__X64_TARGET
#elif defined(__i386) || defined(_M_IX86)
#define STBI__X86_TARGET
#endif
#if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD)
// gcc doesn't support sse2 intrinsics unless you compile with -msse2,
// which in turn means it gets to use SSE2 everywhere. This is unfortunate,
// but previous attempts to provide the SSE2 functions with runtime
// detection caused numerous issues. The way architecture extensions are
// exposed in GCC/Clang is, sadly, not really suited for one-file libs.
// New behavior: if compiled with -msse2, we use SSE2 without any
// detection; if not, we don't use it at all.
#define STBI_NO_SIMD
#endif
#if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD)
// Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET
//
// 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the
// Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant.
// As a result, enabling SSE2 on 32-bit MinGW is dangerous when not
// simultaneously enabling "-mstackrealign".
//
// See https://github.com/nothings/stb/issues/81 for more information.
//
// So default to no SSE2 on 32-bit MinGW. If you've read this far and added
// -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2.
#define STBI_NO_SIMD
#endif
#if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET))
#define STBI_SSE2
#include <emmintrin.h>
#ifdef _MSC_VER
#if _MSC_VER >= 1400 // not VC6
#include <intrin.h> // __cpuid
static int stbi__cpuid3(void)
{
int info[4];
__cpuid(info,1);
return info[3];
}
#else
static int stbi__cpuid3(void)
{
int res;
__asm {
mov eax,1
cpuid
mov res,edx
}
return res;
}
#endif
#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name
#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2)
static int stbi__sse2_available(void)
{
int info3 = stbi__cpuid3();
return ((info3 >> 26) & 1) != 0;
}
#endif
#else // assume GCC-style if not VC++
#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16)))
#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2)
static int stbi__sse2_available(void)
{
// If we're even attempting to compile this on GCC/Clang, that means
// -msse2 is on, which means the compiler is allowed to use SSE2
// instructions at will, and so are we.
return 1;
}
#endif
#endif
#endif
// ARM NEON
#if defined(STBI_NO_SIMD) && defined(STBI_NEON)
#undef STBI_NEON
#endif
#ifdef STBI_NEON
#include <arm_neon.h>
#ifdef _MSC_VER
#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name
#else
#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16)))
#endif
#endif
#ifndef STBI_SIMD_ALIGN
#define STBI_SIMD_ALIGN(type, name) type name
#endif
#ifndef STBI_MAX_DIMENSIONS
#define STBI_MAX_DIMENSIONS (1 << 24)
#endif
///////////////////////////////////////////////
//
// stbi__context struct and start_xxx functions
// stbi__context structure is our basic context used by all images, so it
// contains all the IO context, plus some basic image information
typedef struct
{
stbi__uint32 img_x, img_y;
int img_n, img_out_n;
stbi_io_callbacks io;
void *io_user_data;
int read_from_callbacks;
int buflen;
stbi_uc buffer_start[128];
int callback_already_read;
stbi_uc *img_buffer, *img_buffer_end;
stbi_uc *img_buffer_original, *img_buffer_original_end;
} stbi__context;
static void stbi__refill_buffer(stbi__context *s);
// initialize a memory-decode context
static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len)
{
s->io.read = NULL;
s->read_from_callbacks = 0;
s->callback_already_read = 0;
s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer;
s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len;
}
// initialize a callback-based context
static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user)
{
s->io = *c;
s->io_user_data = user;
s->buflen = sizeof(s->buffer_start);
s->read_from_callbacks = 1;
s->callback_already_read = 0;
s->img_buffer = s->img_buffer_original = s->buffer_start;
stbi__refill_buffer(s);
s->img_buffer_original_end = s->img_buffer_end;
}
#ifndef STBI_NO_STDIO
static int stbi__stdio_read(void *user, char *data, int size)
{
return (int) fread(data,1,size,(FILE*) user);
}
static void stbi__stdio_skip(void *user, int n)
{
int ch;
fseek((FILE*) user, n, SEEK_CUR);
ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */
if (ch != EOF) {
ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */
}
}
static int stbi__stdio_eof(void *user)
{
return feof((FILE*) user) || ferror((FILE *) user);
}
static stbi_io_callbacks stbi__stdio_callbacks =
{
stbi__stdio_read,
stbi__stdio_skip,
stbi__stdio_eof,
};
static void stbi__start_file(stbi__context *s, FILE *f)
{
stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f);
}
//static void stop_file(stbi__context *s) { }
#endif // !STBI_NO_STDIO
static void stbi__rewind(stbi__context *s)
{
// conceptually rewind SHOULD rewind to the beginning of the stream,
// but we just rewind to the beginning of the initial buffer, because
// we only use it after doing 'test', which only ever looks at at most 92 bytes
s->img_buffer = s->img_buffer_original;
s->img_buffer_end = s->img_buffer_original_end;
}
enum
{
STBI_ORDER_RGB,
STBI_ORDER_BGR
};
typedef struct
{
int bits_per_channel;
int num_channels;
int channel_order;
} stbi__result_info;
#ifndef STBI_NO_JPEG
static int stbi__jpeg_test(stbi__context *s);
static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_PNG
static int stbi__png_test(stbi__context *s);
static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp);
static int stbi__png_is16(stbi__context *s);
#endif
#ifndef STBI_NO_BMP
static int stbi__bmp_test(stbi__context *s);
static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_TGA
static int stbi__tga_test(stbi__context *s);
static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_PSD
static int stbi__psd_test(stbi__context *s);
static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc);
static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp);
static int stbi__psd_is16(stbi__context *s);
#endif
#ifndef STBI_NO_HDR
static int stbi__hdr_test(stbi__context *s);
static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_PIC
static int stbi__pic_test(stbi__context *s);
static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_GIF
static int stbi__gif_test(stbi__context *s);
static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp);
static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp);
#endif
#ifndef STBI_NO_PNM
static int stbi__pnm_test(stbi__context *s);
static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp);
static int stbi__pnm_is16(stbi__context *s);
#endif
static
#ifdef STBI_THREAD_LOCAL
STBI_THREAD_LOCAL
#endif
const char *stbi__g_failure_reason;
STBIDEF const char *stbi_failure_reason(void)
{
return stbi__g_failure_reason;
}
#ifndef STBI_NO_FAILURE_STRINGS
static int stbi__err(const char *str)
{
stbi__g_failure_reason = str;
return 0;
}
#endif
static void *stbi__malloc(size_t size)
{
return STBI_MALLOC(size);
}
// stb_image uses ints pervasively, including for offset calculations.
// therefore the largest decoded image size we can support with the
// current code, even on 64-bit targets, is INT_MAX. this is not a
// significant limitation for the intended use case.
//
// we do, however, need to make sure our size calculations don't
// overflow. hence a few helper functions for size calculations that
// multiply integers together, making sure that they're non-negative
// and no overflow occurs.
// return 1 if the sum is valid, 0 on overflow.
// negative terms are considered invalid.
static int stbi__addsizes_valid(int a, int b)
{
if (b < 0) return 0;
// now 0 <= b <= INT_MAX, hence also
// 0 <= INT_MAX - b <= INTMAX.
// And "a + b <= INT_MAX" (which might overflow) is the
// same as a <= INT_MAX - b (no overflow)
return a <= INT_MAX - b;
}
// returns 1 if the product is valid, 0 on overflow.
// negative factors are considered invalid.
static int stbi__mul2sizes_valid(int a, int b)
{
if (a < 0 || b < 0) return 0;
if (b == 0) return 1; // mul-by-0 is always safe
// portable way to check for no overflows in a*b
return a <= INT_MAX/b;
}
#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR)
// returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow
static int stbi__mad2sizes_valid(int a, int b, int add)
{
return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add);
}
#endif
// returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow
static int stbi__mad3sizes_valid(int a, int b, int c, int add)
{
return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) &&
stbi__addsizes_valid(a*b*c, add);
}
// returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow
#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR)
static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add)
{
return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) &&
stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add);
}
#endif
#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR)
// mallocs with size overflow checking
static void *stbi__malloc_mad2(int a, int b, int add)
{
if (!stbi__mad2sizes_valid(a, b, add)) return NULL;
return stbi__malloc(a*b + add);
}
#endif
static void *stbi__malloc_mad3(int a, int b, int c, int add)
{
if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL;
return stbi__malloc(a*b*c + add);
}
#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR)
static void *stbi__malloc_mad4(int a, int b, int c, int d, int add)
{
if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL;
return stbi__malloc(a*b*c*d + add);
}
#endif
// stbi__err - error
// stbi__errpf - error returning pointer to float
// stbi__errpuc - error returning pointer to unsigned char
#ifdef STBI_NO_FAILURE_STRINGS
#define stbi__err(x,y) 0
#elif defined(STBI_FAILURE_USERMSG)
#define stbi__err(x,y) stbi__err(y)
#else
#define stbi__err(x,y) stbi__err(x)
#endif
#define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL))
#define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL))
STBIDEF void stbi_image_free(void *retval_from_stbi_load)
{
STBI_FREE(retval_from_stbi_load);
}
#ifndef STBI_NO_LINEAR
static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp);
#endif
#ifndef STBI_NO_HDR
static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp);
#endif
static int stbi__vertically_flip_on_load_global = 0;
STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip)
{
stbi__vertically_flip_on_load_global = flag_true_if_should_flip;
}
#ifndef STBI_THREAD_LOCAL
#define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global
#else
static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip)
{
stbi__vertically_flip_on_load_local = flag_true_if_should_flip;
stbi__vertically_flip_on_load_set = 1;
}
#define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \
? stbi__vertically_flip_on_load_local \
: stbi__vertically_flip_on_load_global)
#endif // STBI_THREAD_LOCAL
static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
{
memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields
ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed
ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order
ri->num_channels = 0;
// test the formats with a very explicit header first (at least a FOURCC
// or distinctive magic number first)
#ifndef STBI_NO_PNG
if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri);
#endif
#ifndef STBI_NO_BMP
if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri);
#endif
#ifndef STBI_NO_GIF
if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri);
#endif
#ifndef STBI_NO_PSD
if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc);
#else
STBI_NOTUSED(bpc);
#endif
#ifndef STBI_NO_PIC
if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri);
#endif
// then the formats that can end up attempting to load with just 1 or 2
// bytes matching expectations; these are prone to false positives, so
// try them later
#ifndef STBI_NO_JPEG
if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri);
#endif
#ifndef STBI_NO_PNM
if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri);
#endif
#ifndef STBI_NO_HDR
if (stbi__hdr_test(s)) {
float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri);
return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp);
}
#endif
#ifndef STBI_NO_TGA
// test tga last because it's a crappy test!
if (stbi__tga_test(s))
return stbi__tga_load(s,x,y,comp,req_comp, ri);
#endif
return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt");
}
static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels)
{
int i;
int img_len = w * h * channels;
stbi_uc *reduced;
reduced = (stbi_uc *) stbi__malloc(img_len);
if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory");
for (i = 0; i < img_len; ++i)
reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling
STBI_FREE(orig);
return reduced;
}
static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels)
{
int i;
int img_len = w * h * channels;
stbi__uint16 *enlarged;
enlarged = (stbi__uint16 *) stbi__malloc(img_len*2);
if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory");
for (i = 0; i < img_len; ++i)
enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff
STBI_FREE(orig);
return enlarged;
}
static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel)
{
int row;
size_t bytes_per_row = (size_t)w * bytes_per_pixel;
stbi_uc temp[2048];
stbi_uc *bytes = (stbi_uc *)image;
for (row = 0; row < (h>>1); row++) {
stbi_uc *row0 = bytes + row*bytes_per_row;
stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row;
// swap row0 with row1
size_t bytes_left = bytes_per_row;
while (bytes_left) {
size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp);
memcpy(temp, row0, bytes_copy);
memcpy(row0, row1, bytes_copy);
memcpy(row1, temp, bytes_copy);
row0 += bytes_copy;
row1 += bytes_copy;
bytes_left -= bytes_copy;
}
}
}
#ifndef STBI_NO_GIF
static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel)
{
int slice;
int slice_size = w * h * bytes_per_pixel;
stbi_uc *bytes = (stbi_uc *)image;
for (slice = 0; slice < z; ++slice) {
stbi__vertical_flip(bytes, w, h, bytes_per_pixel);
bytes += slice_size;
}
}
#endif
static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
{
stbi__result_info ri;
void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8);
if (result == NULL)
return NULL;
// it is the responsibility of the loaders to make sure we get either 8 or 16 bit.
STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16);
if (ri.bits_per_channel != 8) {
result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp);
ri.bits_per_channel = 8;
}
// @TODO: move stbi__convert_format to here
if (stbi__vertically_flip_on_load) {
int channels = req_comp ? req_comp : *comp;
stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc));
}
return (unsigned char *) result;
}
static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
{
stbi__result_info ri;
void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16);
if (result == NULL)
return NULL;
// it is the responsibility of the loaders to make sure we get either 8 or 16 bit.
STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16);
if (ri.bits_per_channel != 16) {
result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp);
ri.bits_per_channel = 16;
}
// @TODO: move stbi__convert_format16 to here
// @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision
if (stbi__vertically_flip_on_load) {
int channels = req_comp ? req_comp : *comp;
stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16));
}
return (stbi__uint16 *) result;
}
#if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR)
static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp)
{
if (stbi__vertically_flip_on_load && result != NULL) {
int channels = req_comp ? req_comp : *comp;
stbi__vertical_flip(result, *x, *y, channels * sizeof(float));
}
}
#endif
#ifndef STBI_NO_STDIO
#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide);
STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default);
#endif
#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input)
{
return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL);
}
#endif
static FILE *stbi__fopen(char const *filename, char const *mode)
{
FILE *f;
#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
wchar_t wMode[64];
wchar_t wFilename[1024];
if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename)))
return 0;
if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode)))
return 0;
#if defined(_MSC_VER) && _MSC_VER >= 1400
if (0 != _wfopen_s(&f, wFilename, wMode))
f = 0;
#else
f = _wfopen(wFilename, wMode);
#endif
#elif defined(_MSC_VER) && _MSC_VER >= 1400
if (0 != fopen_s(&f, filename, mode))
f=0;
#else
f = fopen(filename, mode);
#endif
return f;
}
STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp)
{
FILE *f = stbi__fopen(filename, "rb");
unsigned char *result;
if (!f) return stbi__errpuc("can't fopen", "Unable to open file");
result = stbi_load_from_file(f,x,y,comp,req_comp);
fclose(f);
return result;
}
STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
{
unsigned char *result;
stbi__context s;
stbi__start_file(&s,f);
result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
if (result) {
// need to 'unget' all the characters in the IO buffer
fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR);
}
return result;
}
STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp)
{
stbi__uint16 *result;
stbi__context s;
stbi__start_file(&s,f);
result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp);
if (result) {
// need to 'unget' all the characters in the IO buffer
fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR);
}
return result;
}
STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp)
{
FILE *f = stbi__fopen(filename, "rb");
stbi__uint16 *result;
if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file");
result = stbi_load_from_file_16(f,x,y,comp,req_comp);
fclose(f);
return result;
}
#endif //!STBI_NO_STDIO
STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels);
}
STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels)
{
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user);
return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels);
}
STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
}
STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
{
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
}
#ifndef STBI_NO_GIF
STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
{
unsigned char *result;
stbi__context s;
stbi__start_mem(&s,buffer,len);
result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp);
if (stbi__vertically_flip_on_load) {
stbi__vertical_flip_slices( result, *x, *y, *z, *comp );
}
return result;
}
#endif
#ifndef STBI_NO_LINEAR
static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp)
{
unsigned char *data;
#ifndef STBI_NO_HDR
if (stbi__hdr_test(s)) {
stbi__result_info ri;
float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri);
if (hdr_data)
stbi__float_postprocess(hdr_data,x,y,comp,req_comp);
return hdr_data;
}
#endif
data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp);
if (data)
return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp);
return stbi__errpf("unknown image type", "Image not of any known type, or corrupt");
}
STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__loadf_main(&s,x,y,comp,req_comp);
}
STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
{
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
return stbi__loadf_main(&s,x,y,comp,req_comp);
}
#ifndef STBI_NO_STDIO
STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp)
{
float *result;
FILE *f = stbi__fopen(filename, "rb");
if (!f) return stbi__errpf("can't fopen", "Unable to open file");
result = stbi_loadf_from_file(f,x,y,comp,req_comp);
fclose(f);
return result;
}
STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
{
stbi__context s;
stbi__start_file(&s,f);
return stbi__loadf_main(&s,x,y,comp,req_comp);
}
#endif // !STBI_NO_STDIO
#endif // !STBI_NO_LINEAR
// these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is
// defined, for API simplicity; if STBI_NO_LINEAR is defined, it always
// reports false!
STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len)
{
#ifndef STBI_NO_HDR
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__hdr_test(&s);
#else
STBI_NOTUSED(buffer);
STBI_NOTUSED(len);
return 0;
#endif
}
#ifndef STBI_NO_STDIO
STBIDEF int stbi_is_hdr (char const *filename)
{
FILE *f = stbi__fopen(filename, "rb");
int result=0;
if (f) {
result = stbi_is_hdr_from_file(f);
fclose(f);
}
return result;
}
STBIDEF int stbi_is_hdr_from_file(FILE *f)
{
#ifndef STBI_NO_HDR
long pos = ftell(f);
int res;
stbi__context s;
stbi__start_file(&s,f);
res = stbi__hdr_test(&s);
fseek(f, pos, SEEK_SET);
return res;
#else
STBI_NOTUSED(f);
return 0;
#endif
}
#endif // !STBI_NO_STDIO
STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user)
{
#ifndef STBI_NO_HDR
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
return stbi__hdr_test(&s);
#else
STBI_NOTUSED(clbk);
STBI_NOTUSED(user);
return 0;
#endif
}
#ifndef STBI_NO_LINEAR
static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; }
STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; }
#endif
static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; }
STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; }
//////////////////////////////////////////////////////////////////////////////
//
// Common code used by all image loaders
//
enum
{
STBI__SCAN_load=0,
STBI__SCAN_type,
STBI__SCAN_header
};
static void stbi__refill_buffer(stbi__context *s)
{
int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen);
s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original);
if (n == 0) {
// at end of file, treat same as if from memory, but need to handle case
// where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file
s->read_from_callbacks = 0;
s->img_buffer = s->buffer_start;
s->img_buffer_end = s->buffer_start+1;
*s->img_buffer = 0;
} else {
s->img_buffer = s->buffer_start;
s->img_buffer_end = s->buffer_start + n;
}
}
stbi_inline static stbi_uc stbi__get8(stbi__context *s)
{
if (s->img_buffer < s->img_buffer_end)
return *s->img_buffer++;
if (s->read_from_callbacks) {
stbi__refill_buffer(s);
return *s->img_buffer++;
}
return 0;
}
#if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
// nothing
#else
stbi_inline static int stbi__at_eof(stbi__context *s)
{
if (s->io.read) {
if (!(s->io.eof)(s->io_user_data)) return 0;
// if feof() is true, check if buffer = end
// special case: we've only got the special 0 character at the end
if (s->read_from_callbacks == 0) return 1;
}
return s->img_buffer >= s->img_buffer_end;
}
#endif
#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC)
// nothing
#else
static void stbi__skip(stbi__context *s, int n)
{
if (n == 0) return; // already there!
if (n < 0) {
s->img_buffer = s->img_buffer_end;
return;
}
if (s->io.read) {
int blen = (int) (s->img_buffer_end - s->img_buffer);
if (blen < n) {
s->img_buffer = s->img_buffer_end;
(s->io.skip)(s->io_user_data, n - blen);
return;
}
}
s->img_buffer += n;
}
#endif
#if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM)
// nothing
#else
static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n)
{
if (s->io.read) {
int blen = (int) (s->img_buffer_end - s->img_buffer);
if (blen < n) {
int res, count;
memcpy(buffer, s->img_buffer, blen);
count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen);
res = (count == (n-blen));
s->img_buffer = s->img_buffer_end;
return res;
}
}
if (s->img_buffer+n <= s->img_buffer_end) {
memcpy(buffer, s->img_buffer, n);
s->img_buffer += n;
return 1;
} else
return 0;
}
#endif
#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC)
// nothing
#else
static int stbi__get16be(stbi__context *s)
{
int z = stbi__get8(s);
return (z << 8) + stbi__get8(s);
}
#endif
#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC)
// nothing
#else
static stbi__uint32 stbi__get32be(stbi__context *s)
{
stbi__uint32 z = stbi__get16be(s);
return (z << 16) + stbi__get16be(s);
}
#endif
#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF)
// nothing
#else
static int stbi__get16le(stbi__context *s)
{
int z = stbi__get8(s);
return z + (stbi__get8(s) << 8);
}
#endif
#ifndef STBI_NO_BMP
static stbi__uint32 stbi__get32le(stbi__context *s)
{
stbi__uint32 z = stbi__get16le(s);
z += (stbi__uint32)stbi__get16le(s) << 16;
return z;
}
#endif
#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings
#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
// nothing
#else
//////////////////////////////////////////////////////////////////////////////
//
// generic converter from built-in img_n to req_comp
// individual types do this automatically as much as possible (e.g. jpeg
// does all cases internally since it needs to colorspace convert anyway,
// and it never has alpha, so very few cases ). png can automatically
// interleave an alpha=255 channel, but falls back to this for other cases
//
// assume data buffer is malloced, so malloc a new one and free that one
// only failure mode is malloc failing
static stbi_uc stbi__compute_y(int r, int g, int b)
{
return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8);
}
#endif
#if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
// nothing
#else
static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y)
{
int i,j;
unsigned char *good;
if (req_comp == img_n) return data;
STBI_ASSERT(req_comp >= 1 && req_comp <= 4);
good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0);
if (good == NULL) {
STBI_FREE(data);
return stbi__errpuc("outofmem", "Out of memory");
}
for (j=0; j < (int) y; ++j) {
unsigned char *src = data + j * x * img_n ;
unsigned char *dest = good + j * x * req_comp;
#define STBI__COMBO(a,b) ((a)*8+(b))
#define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b)
// convert source image with img_n components to one with req_comp components;
// avoid switch per pixel, so use switch per scanline and massive macros
switch (STBI__COMBO(img_n, req_comp)) {
STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break;
STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break;
STBI__CASE(2,1) { dest[0]=src[0]; } break;
STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break;
STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break;
STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break;
STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break;
STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break;
STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break;
STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break;
default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion");
}
#undef STBI__CASE
}
STBI_FREE(data);
return good;
}
#endif
#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD)
// nothing
#else
static stbi__uint16 stbi__compute_y_16(int r, int g, int b)
{
return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8);
}
#endif
#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD)
// nothing
#else
static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y)
{
int i,j;
stbi__uint16 *good;
if (req_comp == img_n) return data;
STBI_ASSERT(req_comp >= 1 && req_comp <= 4);
good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2);
if (good == NULL) {
STBI_FREE(data);
return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory");
}
for (j=0; j < (int) y; ++j) {
stbi__uint16 *src = data + j * x * img_n ;
stbi__uint16 *dest = good + j * x * req_comp;
#define STBI__COMBO(a,b) ((a)*8+(b))
#define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b)
// convert source image with img_n components to one with req_comp components;
// avoid switch per pixel, so use switch per scanline and massive macros
switch (STBI__COMBO(img_n, req_comp)) {
STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break;
STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break;
STBI__CASE(2,1) { dest[0]=src[0]; } break;
STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break;
STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break;
STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break;
STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break;
STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break;
STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break;
STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break;
default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion");
}
#undef STBI__CASE
}
STBI_FREE(data);
return good;
}
#endif
#ifndef STBI_NO_LINEAR
static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp)
{
int i,k,n;
float *output;
if (!data) return NULL;
output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0);
if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); }
// compute number of non-alpha components
if (comp & 1) n = comp; else n = comp-1;
for (i=0; i < x*y; ++i) {
for (k=0; k < n; ++k) {
output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale);
}
}
if (n < comp) {
for (i=0; i < x*y; ++i) {
output[i*comp + n] = data[i*comp + n]/255.0f;
}
}
STBI_FREE(data);
return output;
}
#endif
#ifndef STBI_NO_HDR
#define stbi__float2int(x) ((int) (x))
static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp)
{
int i,k,n;
stbi_uc *output;
if (!data) return NULL;
output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0);
if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); }
// compute number of non-alpha components
if (comp & 1) n = comp; else n = comp-1;
for (i=0; i < x*y; ++i) {
for (k=0; k < n; ++k) {
float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f;
if (z < 0) z = 0;
if (z > 255) z = 255;
output[i*comp + k] = (stbi_uc) stbi__float2int(z);
}
if (k < comp) {
float z = data[i*comp+k] * 255 + 0.5f;
if (z < 0) z = 0;
if (z > 255) z = 255;
output[i*comp + k] = (stbi_uc) stbi__float2int(z);
}
}
STBI_FREE(data);
return output;
}
#endif
//////////////////////////////////////////////////////////////////////////////
//
// "baseline" JPEG/JFIF decoder
//
// simple implementation
// - doesn't support delayed output of y-dimension
// - simple interface (only one output format: 8-bit interleaved RGB)
// - doesn't try to recover corrupt jpegs
// - doesn't allow partial loading, loading multiple at once
// - still fast on x86 (copying globals into locals doesn't help x86)
// - allocates lots of intermediate memory (full size of all components)
// - non-interleaved case requires this anyway
// - allows good upsampling (see next)
// high-quality
// - upsampled channels are bilinearly interpolated, even across blocks
// - quality integer IDCT derived from IJG's 'slow'
// performance
// - fast huffman; reasonable integer IDCT
// - some SIMD kernels for common paths on targets with SSE2/NEON
// - uses a lot of intermediate memory, could cache poorly
#ifndef STBI_NO_JPEG
// huffman decoding acceleration
#define FAST_BITS 9 // larger handles more cases; smaller stomps less cache
typedef struct
{
stbi_uc fast[1 << FAST_BITS];
// weirdly, repacking this into AoS is a 10% speed loss, instead of a win
stbi__uint16 code[256];
stbi_uc values[256];
stbi_uc size[257];
unsigned int maxcode[18];
int delta[17]; // old 'firstsymbol' - old 'firstcode'
} stbi__huffman;
typedef struct
{
stbi__context *s;
stbi__huffman huff_dc[4];
stbi__huffman huff_ac[4];
stbi__uint16 dequant[4][64];
stbi__int16 fast_ac[4][1 << FAST_BITS];
// sizes for components, interleaved MCUs
int img_h_max, img_v_max;
int img_mcu_x, img_mcu_y;
int img_mcu_w, img_mcu_h;
// definition of jpeg image component
struct
{
int id;
int h,v;
int tq;
int hd,ha;
int dc_pred;
int x,y,w2,h2;
stbi_uc *data;
void *raw_data, *raw_coeff;
stbi_uc *linebuf;
short *coeff; // progressive only
int coeff_w, coeff_h; // number of 8x8 coefficient blocks
} img_comp[4];
stbi__uint32 code_buffer; // jpeg entropy-coded buffer
int code_bits; // number of valid bits
unsigned char marker; // marker seen while filling entropy buffer
int nomore; // flag if we saw a marker so must stop
int progressive;
int spec_start;
int spec_end;
int succ_high;
int succ_low;
int eob_run;
int jfif;
int app14_color_transform; // Adobe APP14 tag
int rgb;
int scan_n, order[4];
int restart_interval, todo;
// kernels
void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]);
void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step);
stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs);
} stbi__jpeg;
static int stbi__build_huffman(stbi__huffman *h, int *count)
{
int i,j,k=0;
unsigned int code;
// build size list for each symbol (from JPEG spec)
for (i=0; i < 16; ++i)
for (j=0; j < count[i]; ++j)
h->size[k++] = (stbi_uc) (i+1);
h->size[k] = 0;
// compute actual symbols (from jpeg spec)
code = 0;
k = 0;
for(j=1; j <= 16; ++j) {
// compute delta to add to code to compute symbol id
h->delta[j] = k - code;
if (h->size[k] == j) {
while (h->size[k] == j)
h->code[k++] = (stbi__uint16) (code++);
if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG");
}
// compute largest code + 1 for this size, preshifted as needed later
h->maxcode[j] = code << (16-j);
code <<= 1;
}
h->maxcode[j] = 0xffffffff;
// build non-spec acceleration table; 255 is flag for not-accelerated
memset(h->fast, 255, 1 << FAST_BITS);
for (i=0; i < k; ++i) {
int s = h->size[i];
if (s <= FAST_BITS) {
int c = h->code[i] << (FAST_BITS-s);
int m = 1 << (FAST_BITS-s);
for (j=0; j < m; ++j) {
h->fast[c+j] = (stbi_uc) i;
}
}
}
return 1;
}
// build a table that decodes both magnitude and value of small ACs in
// one go.
static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h)
{
int i;
for (i=0; i < (1 << FAST_BITS); ++i) {
stbi_uc fast = h->fast[i];
fast_ac[i] = 0;
if (fast < 255) {
int rs = h->values[fast];
int run = (rs >> 4) & 15;
int magbits = rs & 15;
int len = h->size[fast];
if (magbits && len + magbits <= FAST_BITS) {
// magnitude code followed by receive_extend code
int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits);
int m = 1 << (magbits - 1);
if (k < m) k += (~0U << magbits) + 1;
// if the result is small enough, we can fit it in fast_ac table
if (k >= -128 && k <= 127)
fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits));
}
}
}
}
static void stbi__grow_buffer_unsafe(stbi__jpeg *j)
{
do {
unsigned int b = j->nomore ? 0 : stbi__get8(j->s);
if (b == 0xff) {
int c = stbi__get8(j->s);
while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes
if (c != 0) {
j->marker = (unsigned char) c;
j->nomore = 1;
return;
}
}
j->code_buffer |= b << (24 - j->code_bits);
j->code_bits += 8;
} while (j->code_bits <= 24);
}
// (1 << n) - 1
static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535};
// decode a jpeg huffman value from the bitstream
stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h)
{
unsigned int temp;
int c,k;
if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
// look at the top FAST_BITS and determine what symbol ID it is,
// if the code is <= FAST_BITS
c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
k = h->fast[c];
if (k < 255) {
int s = h->size[k];
if (s > j->code_bits)
return -1;
j->code_buffer <<= s;
j->code_bits -= s;
return h->values[k];
}
// naive test is to shift the code_buffer down so k bits are
// valid, then test against maxcode. To speed this up, we've
// preshifted maxcode left so that it has (16-k) 0s at the
// end; in other words, regardless of the number of bits, it
// wants to be compared against something shifted to have 16;
// that way we don't need to shift inside the loop.
temp = j->code_buffer >> 16;
for (k=FAST_BITS+1 ; ; ++k)
if (temp < h->maxcode[k])
break;
if (k == 17) {
// error! code not found
j->code_bits -= 16;
return -1;
}
if (k > j->code_bits)
return -1;
// convert the huffman code to the symbol id
c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k];
STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]);
// convert the id to a symbol
j->code_bits -= k;
j->code_buffer <<= k;
return h->values[c];
}
// bias[n] = (-1<<n) + 1
static const int stbi__jbias[16] = {0,-1,-3,-7,-15,-31,-63,-127,-255,-511,-1023,-2047,-4095,-8191,-16383,-32767};
// combined JPEG 'receive' and JPEG 'extend', since baseline
// always extends everything it receives.
stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n)
{
unsigned int k;
int sgn;
if (j->code_bits < n) stbi__grow_buffer_unsafe(j);
sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative)
k = stbi_lrot(j->code_buffer, n);
j->code_buffer = k & ~stbi__bmask[n];
k &= stbi__bmask[n];
j->code_bits -= n;
return k + (stbi__jbias[n] & (sgn - 1));
}
// get some unsigned bits
stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n)
{
unsigned int k;
if (j->code_bits < n) stbi__grow_buffer_unsafe(j);
k = stbi_lrot(j->code_buffer, n);
j->code_buffer = k & ~stbi__bmask[n];
k &= stbi__bmask[n];
j->code_bits -= n;
return k;
}
stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j)
{
unsigned int k;
if (j->code_bits < 1) stbi__grow_buffer_unsafe(j);
k = j->code_buffer;
j->code_buffer <<= 1;
--j->code_bits;
return k & 0x80000000;
}
// given a value that's at position X in the zigzag stream,
// where does it appear in the 8x8 matrix coded as row-major?
static const stbi_uc stbi__jpeg_dezigzag[64+15] =
{
0, 1, 8, 16, 9, 2, 3, 10,
17, 24, 32, 25, 18, 11, 4, 5,
12, 19, 26, 33, 40, 48, 41, 34,
27, 20, 13, 6, 7, 14, 21, 28,
35, 42, 49, 56, 57, 50, 43, 36,
29, 22, 15, 23, 30, 37, 44, 51,
58, 59, 52, 45, 38, 31, 39, 46,
53, 60, 61, 54, 47, 55, 62, 63,
// let corrupt input sample past end
63, 63, 63, 63, 63, 63, 63, 63,
63, 63, 63, 63, 63, 63, 63
};
// decode one 64-entry block--
static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant)
{
int diff,dc,k;
int t;
if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
t = stbi__jpeg_huff_decode(j, hdc);
if (t < 0 || t > 15) return stbi__err("bad huffman code","Corrupt JPEG");
// 0 all the ac values now so we can do it 32-bits at a time
memset(data,0,64*sizeof(data[0]));
diff = t ? stbi__extend_receive(j, t) : 0;
dc = j->img_comp[b].dc_pred + diff;
j->img_comp[b].dc_pred = dc;
data[0] = (short) (dc * dequant[0]);
// decode AC components, see JPEG spec
k = 1;
do {
unsigned int zig;
int c,r,s;
if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
r = fac[c];
if (r) { // fast-AC path
k += (r >> 4) & 15; // run
s = r & 15; // combined length
j->code_buffer <<= s;
j->code_bits -= s;
// decode into unzigzag'd location
zig = stbi__jpeg_dezigzag[k++];
data[zig] = (short) ((r >> 8) * dequant[zig]);
} else {
int rs = stbi__jpeg_huff_decode(j, hac);
if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
s = rs & 15;
r = rs >> 4;
if (s == 0) {
if (rs != 0xf0) break; // end block
k += 16;
} else {
k += r;
// decode into unzigzag'd location
zig = stbi__jpeg_dezigzag[k++];
data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]);
}
}
} while (k < 64);
return 1;
}
static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b)
{
int diff,dc;
int t;
if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
if (j->succ_high == 0) {
// first scan for DC coefficient, must be first
memset(data,0,64*sizeof(data[0])); // 0 all the ac values now
t = stbi__jpeg_huff_decode(j, hdc);
if (t < 0 || t > 15) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
diff = t ? stbi__extend_receive(j, t) : 0;
dc = j->img_comp[b].dc_pred + diff;
j->img_comp[b].dc_pred = dc;
data[0] = (short) (dc * (1 << j->succ_low));
} else {
// refinement scan for DC coefficient
if (stbi__jpeg_get_bit(j))
data[0] += (short) (1 << j->succ_low);
}
return 1;
}
// @OPTIMIZE: store non-zigzagged during the decode passes,
// and only de-zigzag when dequantizing
static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac)
{
int k;
if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
if (j->succ_high == 0) {
int shift = j->succ_low;
if (j->eob_run) {
--j->eob_run;
return 1;
}
k = j->spec_start;
do {
unsigned int zig;
int c,r,s;
if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
r = fac[c];
if (r) { // fast-AC path
k += (r >> 4) & 15; // run
s = r & 15; // combined length
j->code_buffer <<= s;
j->code_bits -= s;
zig = stbi__jpeg_dezigzag[k++];
data[zig] = (short) ((r >> 8) * (1 << shift));
} else {
int rs = stbi__jpeg_huff_decode(j, hac);
if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
s = rs & 15;
r = rs >> 4;
if (s == 0) {
if (r < 15) {
j->eob_run = (1 << r);
if (r)
j->eob_run += stbi__jpeg_get_bits(j, r);
--j->eob_run;
break;
}
k += 16;
} else {
k += r;
zig = stbi__jpeg_dezigzag[k++];
data[zig] = (short) (stbi__extend_receive(j,s) * (1 << shift));
}
}
} while (k <= j->spec_end);
} else {
// refinement scan for these AC coefficients
short bit = (short) (1 << j->succ_low);
if (j->eob_run) {
--j->eob_run;
for (k = j->spec_start; k <= j->spec_end; ++k) {
short *p = &data[stbi__jpeg_dezigzag[k]];
if (*p != 0)
if (stbi__jpeg_get_bit(j))
if ((*p & bit)==0) {
if (*p > 0)
*p += bit;
else
*p -= bit;
}
}
} else {
k = j->spec_start;
do {
int r,s;
int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh
if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
s = rs & 15;
r = rs >> 4;
if (s == 0) {
if (r < 15) {
j->eob_run = (1 << r) - 1;
if (r)
j->eob_run += stbi__jpeg_get_bits(j, r);
r = 64; // force end of block
} else {
// r=15 s=0 should write 16 0s, so we just do
// a run of 15 0s and then write s (which is 0),
// so we don't have to do anything special here
}
} else {
if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG");
// sign bit
if (stbi__jpeg_get_bit(j))
s = bit;
else
s = -bit;
}
// advance by r
while (k <= j->spec_end) {
short *p = &data[stbi__jpeg_dezigzag[k++]];
if (*p != 0) {
if (stbi__jpeg_get_bit(j))
if ((*p & bit)==0) {
if (*p > 0)
*p += bit;
else
*p -= bit;
}
} else {
if (r == 0) {
*p = (short) s;
break;
}
--r;
}
}
} while (k <= j->spec_end);
}
}
return 1;
}
// take a -128..127 value and stbi__clamp it and convert to 0..255
stbi_inline static stbi_uc stbi__clamp(int x)
{
// trick to use a single test to catch both cases
if ((unsigned int) x > 255) {
if (x < 0) return 0;
if (x > 255) return 255;
}
return (stbi_uc) x;
}
#define stbi__f2f(x) ((int) (((x) * 4096 + 0.5)))
#define stbi__fsh(x) ((x) * 4096)
// derived from jidctint -- DCT_ISLOW
#define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \
int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \
p2 = s2; \
p3 = s6; \
p1 = (p2+p3) * stbi__f2f(0.5411961f); \
t2 = p1 + p3*stbi__f2f(-1.847759065f); \
t3 = p1 + p2*stbi__f2f( 0.765366865f); \
p2 = s0; \
p3 = s4; \
t0 = stbi__fsh(p2+p3); \
t1 = stbi__fsh(p2-p3); \
x0 = t0+t3; \
x3 = t0-t3; \
x1 = t1+t2; \
x2 = t1-t2; \
t0 = s7; \
t1 = s5; \
t2 = s3; \
t3 = s1; \
p3 = t0+t2; \
p4 = t1+t3; \
p1 = t0+t3; \
p2 = t1+t2; \
p5 = (p3+p4)*stbi__f2f( 1.175875602f); \
t0 = t0*stbi__f2f( 0.298631336f); \
t1 = t1*stbi__f2f( 2.053119869f); \
t2 = t2*stbi__f2f( 3.072711026f); \
t3 = t3*stbi__f2f( 1.501321110f); \
p1 = p5 + p1*stbi__f2f(-0.899976223f); \
p2 = p5 + p2*stbi__f2f(-2.562915447f); \
p3 = p3*stbi__f2f(-1.961570560f); \
p4 = p4*stbi__f2f(-0.390180644f); \
t3 += p1+p4; \
t2 += p2+p3; \
t1 += p2+p4; \
t0 += p1+p3;
static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64])
{
int i,val[64],*v=val;
stbi_uc *o;
short *d = data;
// columns
for (i=0; i < 8; ++i,++d, ++v) {
// if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing
if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0
&& d[40]==0 && d[48]==0 && d[56]==0) {
// no shortcut 0 seconds
// (1|2|3|4|5|6|7)==0 0 seconds
// all separate -0.047 seconds
// 1 && 2|3 && 4|5 && 6|7: -0.047 seconds
int dcterm = d[0]*4;
v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm;
} else {
STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56])
// constants scaled things up by 1<<12; let's bring them back
// down, but keep 2 extra bits of precision
x0 += 512; x1 += 512; x2 += 512; x3 += 512;
v[ 0] = (x0+t3) >> 10;
v[56] = (x0-t3) >> 10;
v[ 8] = (x1+t2) >> 10;
v[48] = (x1-t2) >> 10;
v[16] = (x2+t1) >> 10;
v[40] = (x2-t1) >> 10;
v[24] = (x3+t0) >> 10;
v[32] = (x3-t0) >> 10;
}
}
for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) {
// no fast case since the first 1D IDCT spread components out
STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7])
// constants scaled things up by 1<<12, plus we had 1<<2 from first
// loop, plus horizontal and vertical each scale by sqrt(8) so together
// we've got an extra 1<<3, so 1<<17 total we need to remove.
// so we want to round that, which means adding 0.5 * 1<<17,
// aka 65536. Also, we'll end up with -128 to 127 that we want
// to encode as 0..255 by adding 128, so we'll add that before the shift
x0 += 65536 + (128<<17);
x1 += 65536 + (128<<17);
x2 += 65536 + (128<<17);
x3 += 65536 + (128<<17);
// tried computing the shifts into temps, or'ing the temps to see
// if any were out of range, but that was slower
o[0] = stbi__clamp((x0+t3) >> 17);
o[7] = stbi__clamp((x0-t3) >> 17);
o[1] = stbi__clamp((x1+t2) >> 17);
o[6] = stbi__clamp((x1-t2) >> 17);
o[2] = stbi__clamp((x2+t1) >> 17);
o[5] = stbi__clamp((x2-t1) >> 17);
o[3] = stbi__clamp((x3+t0) >> 17);
o[4] = stbi__clamp((x3-t0) >> 17);
}
}
#ifdef STBI_SSE2
// sse2 integer IDCT. not the fastest possible implementation but it
// produces bit-identical results to the generic C version so it's
// fully "transparent".
static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
{
// This is constructed to match our regular (generic) integer IDCT exactly.
__m128i row0, row1, row2, row3, row4, row5, row6, row7;
__m128i tmp;
// dot product constant: even elems=x, odd elems=y
#define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y))
// out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit)
// out(1) = c1[even]*x + c1[odd]*y
#define dct_rot(out0,out1, x,y,c0,c1) \
__m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \
__m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \
__m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \
__m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \
__m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \
__m128i out1##_h = _mm_madd_epi16(c0##hi, c1)
// out = in << 12 (in 16-bit, out 32-bit)
#define dct_widen(out, in) \
__m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \
__m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4)
// wide add
#define dct_wadd(out, a, b) \
__m128i out##_l = _mm_add_epi32(a##_l, b##_l); \
__m128i out##_h = _mm_add_epi32(a##_h, b##_h)
// wide sub
#define dct_wsub(out, a, b) \
__m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \
__m128i out##_h = _mm_sub_epi32(a##_h, b##_h)
// butterfly a/b, add bias, then shift by "s" and pack
#define dct_bfly32o(out0, out1, a,b,bias,s) \
{ \
__m128i abiased_l = _mm_add_epi32(a##_l, bias); \
__m128i abiased_h = _mm_add_epi32(a##_h, bias); \
dct_wadd(sum, abiased, b); \
dct_wsub(dif, abiased, b); \
out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \
out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \
}
// 8-bit interleave step (for transposes)
#define dct_interleave8(a, b) \
tmp = a; \
a = _mm_unpacklo_epi8(a, b); \
b = _mm_unpackhi_epi8(tmp, b)
// 16-bit interleave step (for transposes)
#define dct_interleave16(a, b) \
tmp = a; \
a = _mm_unpacklo_epi16(a, b); \
b = _mm_unpackhi_epi16(tmp, b)
#define dct_pass(bias,shift) \
{ \
/* even part */ \
dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \
__m128i sum04 = _mm_add_epi16(row0, row4); \
__m128i dif04 = _mm_sub_epi16(row0, row4); \
dct_widen(t0e, sum04); \
dct_widen(t1e, dif04); \
dct_wadd(x0, t0e, t3e); \
dct_wsub(x3, t0e, t3e); \
dct_wadd(x1, t1e, t2e); \
dct_wsub(x2, t1e, t2e); \
/* odd part */ \
dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \
dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \
__m128i sum17 = _mm_add_epi16(row1, row7); \
__m128i sum35 = _mm_add_epi16(row3, row5); \
dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \
dct_wadd(x4, y0o, y4o); \
dct_wadd(x5, y1o, y5o); \
dct_wadd(x6, y2o, y5o); \
dct_wadd(x7, y3o, y4o); \
dct_bfly32o(row0,row7, x0,x7,bias,shift); \
dct_bfly32o(row1,row6, x1,x6,bias,shift); \
dct_bfly32o(row2,row5, x2,x5,bias,shift); \
dct_bfly32o(row3,row4, x3,x4,bias,shift); \
}
__m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f));
__m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f));
__m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f));
__m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f));
__m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f));
__m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f));
__m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f));
__m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f));
// rounding biases in column/row passes, see stbi__idct_block for explanation.
__m128i bias_0 = _mm_set1_epi32(512);
__m128i bias_1 = _mm_set1_epi32(65536 + (128<<17));
// load
row0 = _mm_load_si128((const __m128i *) (data + 0*8));
row1 = _mm_load_si128((const __m128i *) (data + 1*8));
row2 = _mm_load_si128((const __m128i *) (data + 2*8));
row3 = _mm_load_si128((const __m128i *) (data + 3*8));
row4 = _mm_load_si128((const __m128i *) (data + 4*8));
row5 = _mm_load_si128((const __m128i *) (data + 5*8));
row6 = _mm_load_si128((const __m128i *) (data + 6*8));
row7 = _mm_load_si128((const __m128i *) (data + 7*8));
// column pass
dct_pass(bias_0, 10);
{
// 16bit 8x8 transpose pass 1
dct_interleave16(row0, row4);
dct_interleave16(row1, row5);
dct_interleave16(row2, row6);
dct_interleave16(row3, row7);
// transpose pass 2
dct_interleave16(row0, row2);
dct_interleave16(row1, row3);
dct_interleave16(row4, row6);
dct_interleave16(row5, row7);
// transpose pass 3
dct_interleave16(row0, row1);
dct_interleave16(row2, row3);
dct_interleave16(row4, row5);
dct_interleave16(row6, row7);
}
// row pass
dct_pass(bias_1, 17);
{
// pack
__m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7
__m128i p1 = _mm_packus_epi16(row2, row3);
__m128i p2 = _mm_packus_epi16(row4, row5);
__m128i p3 = _mm_packus_epi16(row6, row7);
// 8bit 8x8 transpose pass 1
dct_interleave8(p0, p2); // a0e0a1e1...
dct_interleave8(p1, p3); // c0g0c1g1...
// transpose pass 2
dct_interleave8(p0, p1); // a0c0e0g0...
dct_interleave8(p2, p3); // b0d0f0h0...
// transpose pass 3
dct_interleave8(p0, p2); // a0b0c0d0...
dct_interleave8(p1, p3); // a4b4c4d4...
// store
_mm_storel_epi64((__m128i *) out, p0); out += out_stride;
_mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride;
_mm_storel_epi64((__m128i *) out, p2); out += out_stride;
_mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride;
_mm_storel_epi64((__m128i *) out, p1); out += out_stride;
_mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride;
_mm_storel_epi64((__m128i *) out, p3); out += out_stride;
_mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e));
}
#undef dct_const
#undef dct_rot
#undef dct_widen
#undef dct_wadd
#undef dct_wsub
#undef dct_bfly32o
#undef dct_interleave8
#undef dct_interleave16
#undef dct_pass
}
#endif // STBI_SSE2
#ifdef STBI_NEON
// NEON integer IDCT. should produce bit-identical
// results to the generic C version.
static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
{
int16x8_t row0, row1, row2, row3, row4, row5, row6, row7;
int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f));
int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f));
int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f));
int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f));
int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f));
int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f));
int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f));
int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f));
int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f));
int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f));
int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f));
int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f));
#define dct_long_mul(out, inq, coeff) \
int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \
int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff)
#define dct_long_mac(out, acc, inq, coeff) \
int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \
int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff)
#define dct_widen(out, inq) \
int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \
int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12)
// wide add
#define dct_wadd(out, a, b) \
int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \
int32x4_t out##_h = vaddq_s32(a##_h, b##_h)
// wide sub
#define dct_wsub(out, a, b) \
int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \
int32x4_t out##_h = vsubq_s32(a##_h, b##_h)
// butterfly a/b, then shift using "shiftop" by "s" and pack
#define dct_bfly32o(out0,out1, a,b,shiftop,s) \
{ \
dct_wadd(sum, a, b); \
dct_wsub(dif, a, b); \
out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \
out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \
}
#define dct_pass(shiftop, shift) \
{ \
/* even part */ \
int16x8_t sum26 = vaddq_s16(row2, row6); \
dct_long_mul(p1e, sum26, rot0_0); \
dct_long_mac(t2e, p1e, row6, rot0_1); \
dct_long_mac(t3e, p1e, row2, rot0_2); \
int16x8_t sum04 = vaddq_s16(row0, row4); \
int16x8_t dif04 = vsubq_s16(row0, row4); \
dct_widen(t0e, sum04); \
dct_widen(t1e, dif04); \
dct_wadd(x0, t0e, t3e); \
dct_wsub(x3, t0e, t3e); \
dct_wadd(x1, t1e, t2e); \
dct_wsub(x2, t1e, t2e); \
/* odd part */ \
int16x8_t sum15 = vaddq_s16(row1, row5); \
int16x8_t sum17 = vaddq_s16(row1, row7); \
int16x8_t sum35 = vaddq_s16(row3, row5); \
int16x8_t sum37 = vaddq_s16(row3, row7); \
int16x8_t sumodd = vaddq_s16(sum17, sum35); \
dct_long_mul(p5o, sumodd, rot1_0); \
dct_long_mac(p1o, p5o, sum17, rot1_1); \
dct_long_mac(p2o, p5o, sum35, rot1_2); \
dct_long_mul(p3o, sum37, rot2_0); \
dct_long_mul(p4o, sum15, rot2_1); \
dct_wadd(sump13o, p1o, p3o); \
dct_wadd(sump24o, p2o, p4o); \
dct_wadd(sump23o, p2o, p3o); \
dct_wadd(sump14o, p1o, p4o); \
dct_long_mac(x4, sump13o, row7, rot3_0); \
dct_long_mac(x5, sump24o, row5, rot3_1); \
dct_long_mac(x6, sump23o, row3, rot3_2); \
dct_long_mac(x7, sump14o, row1, rot3_3); \
dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \
dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \
dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \
dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \
}
// load
row0 = vld1q_s16(data + 0*8);
row1 = vld1q_s16(data + 1*8);
row2 = vld1q_s16(data + 2*8);
row3 = vld1q_s16(data + 3*8);
row4 = vld1q_s16(data + 4*8);
row5 = vld1q_s16(data + 5*8);
row6 = vld1q_s16(data + 6*8);
row7 = vld1q_s16(data + 7*8);
// add DC bias
row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0));
// column pass
dct_pass(vrshrn_n_s32, 10);
// 16bit 8x8 transpose
{
// these three map to a single VTRN.16, VTRN.32, and VSWP, respectively.
// whether compilers actually get this is another story, sadly.
#define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; }
#define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); }
#define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); }
// pass 1
dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6
dct_trn16(row2, row3);
dct_trn16(row4, row5);
dct_trn16(row6, row7);
// pass 2
dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4
dct_trn32(row1, row3);
dct_trn32(row4, row6);
dct_trn32(row5, row7);
// pass 3
dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0
dct_trn64(row1, row5);
dct_trn64(row2, row6);
dct_trn64(row3, row7);
#undef dct_trn16
#undef dct_trn32
#undef dct_trn64
}
// row pass
// vrshrn_n_s32 only supports shifts up to 16, we need
// 17. so do a non-rounding shift of 16 first then follow
// up with a rounding shift by 1.
dct_pass(vshrn_n_s32, 16);
{
// pack and round
uint8x8_t p0 = vqrshrun_n_s16(row0, 1);
uint8x8_t p1 = vqrshrun_n_s16(row1, 1);
uint8x8_t p2 = vqrshrun_n_s16(row2, 1);
uint8x8_t p3 = vqrshrun_n_s16(row3, 1);
uint8x8_t p4 = vqrshrun_n_s16(row4, 1);
uint8x8_t p5 = vqrshrun_n_s16(row5, 1);
uint8x8_t p6 = vqrshrun_n_s16(row6, 1);
uint8x8_t p7 = vqrshrun_n_s16(row7, 1);
// again, these can translate into one instruction, but often don't.
#define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; }
#define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); }
#define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); }
// sadly can't use interleaved stores here since we only write
// 8 bytes to each scan line!
// 8x8 8-bit transpose pass 1
dct_trn8_8(p0, p1);
dct_trn8_8(p2, p3);
dct_trn8_8(p4, p5);
dct_trn8_8(p6, p7);
// pass 2
dct_trn8_16(p0, p2);
dct_trn8_16(p1, p3);
dct_trn8_16(p4, p6);
dct_trn8_16(p5, p7);
// pass 3
dct_trn8_32(p0, p4);
dct_trn8_32(p1, p5);
dct_trn8_32(p2, p6);
dct_trn8_32(p3, p7);
// store
vst1_u8(out, p0); out += out_stride;
vst1_u8(out, p1); out += out_stride;
vst1_u8(out, p2); out += out_stride;
vst1_u8(out, p3); out += out_stride;
vst1_u8(out, p4); out += out_stride;
vst1_u8(out, p5); out += out_stride;
vst1_u8(out, p6); out += out_stride;
vst1_u8(out, p7);
#undef dct_trn8_8
#undef dct_trn8_16
#undef dct_trn8_32
}
#undef dct_long_mul
#undef dct_long_mac
#undef dct_widen
#undef dct_wadd
#undef dct_wsub
#undef dct_bfly32o
#undef dct_pass
}
#endif // STBI_NEON
#define STBI__MARKER_none 0xff
// if there's a pending marker from the entropy stream, return that
// otherwise, fetch from the stream and get a marker. if there's no
// marker, return 0xff, which is never a valid marker value
static stbi_uc stbi__get_marker(stbi__jpeg *j)
{
stbi_uc x;
if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; }
x = stbi__get8(j->s);
if (x != 0xff) return STBI__MARKER_none;
while (x == 0xff)
x = stbi__get8(j->s); // consume repeated 0xff fill bytes
return x;
}
// in each scan, we'll have scan_n components, and the order
// of the components is specified by order[]
#define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7)
// after a restart interval, stbi__jpeg_reset the entropy decoder and
// the dc prediction
static void stbi__jpeg_reset(stbi__jpeg *j)
{
j->code_bits = 0;
j->code_buffer = 0;
j->nomore = 0;
j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0;
j->marker = STBI__MARKER_none;
j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff;
j->eob_run = 0;
// no more than 1<<31 MCUs if no restart_interal? that's plenty safe,
// since we don't even allow 1<<30 pixels
}
static int stbi__parse_entropy_coded_data(stbi__jpeg *z)
{
stbi__jpeg_reset(z);
if (!z->progressive) {
if (z->scan_n == 1) {
int i,j;
STBI_SIMD_ALIGN(short, data[64]);
int n = z->order[0];
// non-interleaved data, we just need to process one block at a time,
// in trivial scanline order
// number of blocks to do just depends on how many actual "pixels" this
// component has, independent of interleaved MCU blocking and such
int w = (z->img_comp[n].x+7) >> 3;
int h = (z->img_comp[n].y+7) >> 3;
for (j=0; j < h; ++j) {
for (i=0; i < w; ++i) {
int ha = z->img_comp[n].ha;
if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0;
z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data);
// every data block is an MCU, so countdown the restart interval
if (--z->todo <= 0) {
if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
// if it's NOT a restart, then just bail, so we get corrupt data
// rather than no data
if (!STBI__RESTART(z->marker)) return 1;
stbi__jpeg_reset(z);
}
}
}
return 1;
} else { // interleaved
int i,j,k,x,y;
STBI_SIMD_ALIGN(short, data[64]);
for (j=0; j < z->img_mcu_y; ++j) {
for (i=0; i < z->img_mcu_x; ++i) {
// scan an interleaved mcu... process scan_n components in order
for (k=0; k < z->scan_n; ++k) {
int n = z->order[k];
// scan out an mcu's worth of this component; that's just determined
// by the basic H and V specified for the component
for (y=0; y < z->img_comp[n].v; ++y) {
for (x=0; x < z->img_comp[n].h; ++x) {
int x2 = (i*z->img_comp[n].h + x)*8;
int y2 = (j*z->img_comp[n].v + y)*8;
int ha = z->img_comp[n].ha;
if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0;
z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data);
}
}
}
// after all interleaved components, that's an interleaved MCU,
// so now count down the restart interval
if (--z->todo <= 0) {
if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
if (!STBI__RESTART(z->marker)) return 1;
stbi__jpeg_reset(z);
}
}
}
return 1;
}
} else {
if (z->scan_n == 1) {
int i,j;
int n = z->order[0];
// non-interleaved data, we just need to process one block at a time,
// in trivial scanline order
// number of blocks to do just depends on how many actual "pixels" this
// component has, independent of interleaved MCU blocking and such
int w = (z->img_comp[n].x+7) >> 3;
int h = (z->img_comp[n].y+7) >> 3;
for (j=0; j < h; ++j) {
for (i=0; i < w; ++i) {
short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w);
if (z->spec_start == 0) {
if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n))
return 0;
} else {
int ha = z->img_comp[n].ha;
if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha]))
return 0;
}
// every data block is an MCU, so countdown the restart interval
if (--z->todo <= 0) {
if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
if (!STBI__RESTART(z->marker)) return 1;
stbi__jpeg_reset(z);
}
}
}
return 1;
} else { // interleaved
int i,j,k,x,y;
for (j=0; j < z->img_mcu_y; ++j) {
for (i=0; i < z->img_mcu_x; ++i) {
// scan an interleaved mcu... process scan_n components in order
for (k=0; k < z->scan_n; ++k) {
int n = z->order[k];
// scan out an mcu's worth of this component; that's just determined
// by the basic H and V specified for the component
for (y=0; y < z->img_comp[n].v; ++y) {
for (x=0; x < z->img_comp[n].h; ++x) {
int x2 = (i*z->img_comp[n].h + x);
int y2 = (j*z->img_comp[n].v + y);
short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w);
if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n))
return 0;
}
}
}
// after all interleaved components, that's an interleaved MCU,
// so now count down the restart interval
if (--z->todo <= 0) {
if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
if (!STBI__RESTART(z->marker)) return 1;
stbi__jpeg_reset(z);
}
}
}
return 1;
}
}
}
static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant)
{
int i;
for (i=0; i < 64; ++i)
data[i] *= dequant[i];
}
static void stbi__jpeg_finish(stbi__jpeg *z)
{
if (z->progressive) {
// dequantize and idct the data
int i,j,n;
for (n=0; n < z->s->img_n; ++n) {
int w = (z->img_comp[n].x+7) >> 3;
int h = (z->img_comp[n].y+7) >> 3;
for (j=0; j < h; ++j) {
for (i=0; i < w; ++i) {
short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w);
stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]);
z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data);
}
}
}
}
}
static int stbi__process_marker(stbi__jpeg *z, int m)
{
int L;
switch (m) {
case STBI__MARKER_none: // no marker found
return stbi__err("expected marker","Corrupt JPEG");
case 0xDD: // DRI - specify restart interval
if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG");
z->restart_interval = stbi__get16be(z->s);
return 1;
case 0xDB: // DQT - define quantization table
L = stbi__get16be(z->s)-2;
while (L > 0) {
int q = stbi__get8(z->s);
int p = q >> 4, sixteen = (p != 0);
int t = q & 15,i;
if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG");
if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG");
for (i=0; i < 64; ++i)
z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s));
L -= (sixteen ? 129 : 65);
}
return L==0;
case 0xC4: // DHT - define huffman table
L = stbi__get16be(z->s)-2;
while (L > 0) {
stbi_uc *v;
int sizes[16],i,n=0;
int q = stbi__get8(z->s);
int tc = q >> 4;
int th = q & 15;
if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG");
for (i=0; i < 16; ++i) {
sizes[i] = stbi__get8(z->s);
n += sizes[i];
}
L -= 17;
if (tc == 0) {
if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0;
v = z->huff_dc[th].values;
} else {
if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0;
v = z->huff_ac[th].values;
}
for (i=0; i < n; ++i)
v[i] = stbi__get8(z->s);
if (tc != 0)
stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th);
L -= n;
}
return L==0;
}
// check for comment block or APP blocks
if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) {
L = stbi__get16be(z->s);
if (L < 2) {
if (m == 0xFE)
return stbi__err("bad COM len","Corrupt JPEG");
else
return stbi__err("bad APP len","Corrupt JPEG");
}
L -= 2;
if (m == 0xE0 && L >= 5) { // JFIF APP0 segment
static const unsigned char tag[5] = {'J','F','I','F','\0'};
int ok = 1;
int i;
for (i=0; i < 5; ++i)
if (stbi__get8(z->s) != tag[i])
ok = 0;
L -= 5;
if (ok)
z->jfif = 1;
} else if (m == 0xEE && L >= 12) { // Adobe APP14 segment
static const unsigned char tag[6] = {'A','d','o','b','e','\0'};
int ok = 1;
int i;
for (i=0; i < 6; ++i)
if (stbi__get8(z->s) != tag[i])
ok = 0;
L -= 6;
if (ok) {
stbi__get8(z->s); // version
stbi__get16be(z->s); // flags0
stbi__get16be(z->s); // flags1
z->app14_color_transform = stbi__get8(z->s); // color transform
L -= 6;
}
}
stbi__skip(z->s, L);
return 1;
}
return stbi__err("unknown marker","Corrupt JPEG");
}
// after we see SOS
static int stbi__process_scan_header(stbi__jpeg *z)
{
int i;
int Ls = stbi__get16be(z->s);
z->scan_n = stbi__get8(z->s);
if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG");
if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG");
for (i=0; i < z->scan_n; ++i) {
int id = stbi__get8(z->s), which;
int q = stbi__get8(z->s);
for (which = 0; which < z->s->img_n; ++which)
if (z->img_comp[which].id == id)
break;
if (which == z->s->img_n) return 0; // no match
z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG");
z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG");
z->order[i] = which;
}
{
int aa;
z->spec_start = stbi__get8(z->s);
z->spec_end = stbi__get8(z->s); // should be 63, but might be 0
aa = stbi__get8(z->s);
z->succ_high = (aa >> 4);
z->succ_low = (aa & 15);
if (z->progressive) {
if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13)
return stbi__err("bad SOS", "Corrupt JPEG");
} else {
if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG");
if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG");
z->spec_end = 63;
}
}
return 1;
}
static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why)
{
int i;
for (i=0; i < ncomp; ++i) {
if (z->img_comp[i].raw_data) {
STBI_FREE(z->img_comp[i].raw_data);
z->img_comp[i].raw_data = NULL;
z->img_comp[i].data = NULL;
}
if (z->img_comp[i].raw_coeff) {
STBI_FREE(z->img_comp[i].raw_coeff);
z->img_comp[i].raw_coeff = 0;
z->img_comp[i].coeff = 0;
}
if (z->img_comp[i].linebuf) {
STBI_FREE(z->img_comp[i].linebuf);
z->img_comp[i].linebuf = NULL;
}
}
return why;
}
static int stbi__process_frame_header(stbi__jpeg *z, int scan)
{
stbi__context *s = z->s;
int Lf,p,i,q, h_max=1,v_max=1,c;
Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG
p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline
s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG
s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires
if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
c = stbi__get8(s);
if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG");
s->img_n = c;
for (i=0; i < c; ++i) {
z->img_comp[i].data = NULL;
z->img_comp[i].linebuf = NULL;
}
if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG");
z->rgb = 0;
for (i=0; i < s->img_n; ++i) {
static const unsigned char rgb[3] = { 'R', 'G', 'B' };
z->img_comp[i].id = stbi__get8(s);
if (s->img_n == 3 && z->img_comp[i].id == rgb[i])
++z->rgb;
q = stbi__get8(s);
z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG");
z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG");
z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG");
}
if (scan != STBI__SCAN_load) return 1;
if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode");
for (i=0; i < s->img_n; ++i) {
if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h;
if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v;
}
// compute interleaved mcu info
z->img_h_max = h_max;
z->img_v_max = v_max;
z->img_mcu_w = h_max * 8;
z->img_mcu_h = v_max * 8;
// these sizes can't be more than 17 bits
z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w;
z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h;
for (i=0; i < s->img_n; ++i) {
// number of effective pixels (e.g. for non-interleaved MCU)
z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max;
z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max;
// to simplify generation, we'll allocate enough memory to decode
// the bogus oversized data from using interleaved MCUs and their
// big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't
// discard the extra data until colorspace conversion
//
// img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier)
// so these muls can't overflow with 32-bit ints (which we require)
z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8;
z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8;
z->img_comp[i].coeff = 0;
z->img_comp[i].raw_coeff = 0;
z->img_comp[i].linebuf = NULL;
z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15);
if (z->img_comp[i].raw_data == NULL)
return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory"));
// align blocks for idct using mmx/sse
z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15);
if (z->progressive) {
// w2, h2 are multiples of 8 (see above)
z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8;
z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8;
z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15);
if (z->img_comp[i].raw_coeff == NULL)
return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory"));
z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15);
}
}
return 1;
}
// use comparisons since in some cases we handle more than one case (e.g. SOF)
#define stbi__DNL(x) ((x) == 0xdc)
#define stbi__SOI(x) ((x) == 0xd8)
#define stbi__EOI(x) ((x) == 0xd9)
#define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2)
#define stbi__SOS(x) ((x) == 0xda)
#define stbi__SOF_progressive(x) ((x) == 0xc2)
static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan)
{
int m;
z->jfif = 0;
z->app14_color_transform = -1; // valid values are 0,1,2
z->marker = STBI__MARKER_none; // initialize cached marker to empty
m = stbi__get_marker(z);
if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG");
if (scan == STBI__SCAN_type) return 1;
m = stbi__get_marker(z);
while (!stbi__SOF(m)) {
if (!stbi__process_marker(z,m)) return 0;
m = stbi__get_marker(z);
while (m == STBI__MARKER_none) {
// some files have extra padding after their blocks, so ok, we'll scan
if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG");
m = stbi__get_marker(z);
}
}
z->progressive = stbi__SOF_progressive(m);
if (!stbi__process_frame_header(z, scan)) return 0;
return 1;
}
// decode image to YCbCr format
static int stbi__decode_jpeg_image(stbi__jpeg *j)
{
int m;
for (m = 0; m < 4; m++) {
j->img_comp[m].raw_data = NULL;
j->img_comp[m].raw_coeff = NULL;
}
j->restart_interval = 0;
if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0;
m = stbi__get_marker(j);
while (!stbi__EOI(m)) {
if (stbi__SOS(m)) {
if (!stbi__process_scan_header(j)) return 0;
if (!stbi__parse_entropy_coded_data(j)) return 0;
if (j->marker == STBI__MARKER_none ) {
// handle 0s at the end of image data from IP Kamera 9060
while (!stbi__at_eof(j->s)) {
int x = stbi__get8(j->s);
if (x == 255) {
j->marker = stbi__get8(j->s);
break;
}
}
// if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0
}
} else if (stbi__DNL(m)) {
int Ld = stbi__get16be(j->s);
stbi__uint32 NL = stbi__get16be(j->s);
if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG");
if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG");
} else {
if (!stbi__process_marker(j, m)) return 0;
}
m = stbi__get_marker(j);
}
if (j->progressive)
stbi__jpeg_finish(j);
return 1;
}
// static jfif-centered resampling (across block boundaries)
typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1,
int w, int hs);
#define stbi__div4(x) ((stbi_uc) ((x) >> 2))
static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
STBI_NOTUSED(out);
STBI_NOTUSED(in_far);
STBI_NOTUSED(w);
STBI_NOTUSED(hs);
return in_near;
}
static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
// need to generate two samples vertically for every one in input
int i;
STBI_NOTUSED(hs);
for (i=0; i < w; ++i)
out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2);
return out;
}
static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
// need to generate two samples horizontally for every one in input
int i;
stbi_uc *input = in_near;
if (w == 1) {
// if only one sample, can't do any interpolation
out[0] = out[1] = input[0];
return out;
}
out[0] = input[0];
out[1] = stbi__div4(input[0]*3 + input[1] + 2);
for (i=1; i < w-1; ++i) {
int n = 3*input[i]+2;
out[i*2+0] = stbi__div4(n+input[i-1]);
out[i*2+1] = stbi__div4(n+input[i+1]);
}
out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2);
out[i*2+1] = input[w-1];
STBI_NOTUSED(in_far);
STBI_NOTUSED(hs);
return out;
}
#define stbi__div16(x) ((stbi_uc) ((x) >> 4))
static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
// need to generate 2x2 samples for every one in input
int i,t0,t1;
if (w == 1) {
out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2);
return out;
}
t1 = 3*in_near[0] + in_far[0];
out[0] = stbi__div4(t1+2);
for (i=1; i < w; ++i) {
t0 = t1;
t1 = 3*in_near[i]+in_far[i];
out[i*2-1] = stbi__div16(3*t0 + t1 + 8);
out[i*2 ] = stbi__div16(3*t1 + t0 + 8);
}
out[w*2-1] = stbi__div4(t1+2);
STBI_NOTUSED(hs);
return out;
}
#if defined(STBI_SSE2) || defined(STBI_NEON)
static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
// need to generate 2x2 samples for every one in input
int i=0,t0,t1;
if (w == 1) {
out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2);
return out;
}
t1 = 3*in_near[0] + in_far[0];
// process groups of 8 pixels for as long as we can.
// note we can't handle the last pixel in a row in this loop
// because we need to handle the filter boundary conditions.
for (; i < ((w-1) & ~7); i += 8) {
#if defined(STBI_SSE2)
// load and perform the vertical filtering pass
// this uses 3*x + y = 4*x + (y - x)
__m128i zero = _mm_setzero_si128();
__m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i));
__m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i));
__m128i farw = _mm_unpacklo_epi8(farb, zero);
__m128i nearw = _mm_unpacklo_epi8(nearb, zero);
__m128i diff = _mm_sub_epi16(farw, nearw);
__m128i nears = _mm_slli_epi16(nearw, 2);
__m128i curr = _mm_add_epi16(nears, diff); // current row
// horizontal filter works the same based on shifted vers of current
// row. "prev" is current row shifted right by 1 pixel; we need to
// insert the previous pixel value (from t1).
// "next" is current row shifted left by 1 pixel, with first pixel
// of next block of 8 pixels added in.
__m128i prv0 = _mm_slli_si128(curr, 2);
__m128i nxt0 = _mm_srli_si128(curr, 2);
__m128i prev = _mm_insert_epi16(prv0, t1, 0);
__m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7);
// horizontal filter, polyphase implementation since it's convenient:
// even pixels = 3*cur + prev = cur*4 + (prev - cur)
// odd pixels = 3*cur + next = cur*4 + (next - cur)
// note the shared term.
__m128i bias = _mm_set1_epi16(8);
__m128i curs = _mm_slli_epi16(curr, 2);
__m128i prvd = _mm_sub_epi16(prev, curr);
__m128i nxtd = _mm_sub_epi16(next, curr);
__m128i curb = _mm_add_epi16(curs, bias);
__m128i even = _mm_add_epi16(prvd, curb);
__m128i odd = _mm_add_epi16(nxtd, curb);
// interleave even and odd pixels, then undo scaling.
__m128i int0 = _mm_unpacklo_epi16(even, odd);
__m128i int1 = _mm_unpackhi_epi16(even, odd);
__m128i de0 = _mm_srli_epi16(int0, 4);
__m128i de1 = _mm_srli_epi16(int1, 4);
// pack and write output
__m128i outv = _mm_packus_epi16(de0, de1);
_mm_storeu_si128((__m128i *) (out + i*2), outv);
#elif defined(STBI_NEON)
// load and perform the vertical filtering pass
// this uses 3*x + y = 4*x + (y - x)
uint8x8_t farb = vld1_u8(in_far + i);
uint8x8_t nearb = vld1_u8(in_near + i);
int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb));
int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2));
int16x8_t curr = vaddq_s16(nears, diff); // current row
// horizontal filter works the same based on shifted vers of current
// row. "prev" is current row shifted right by 1 pixel; we need to
// insert the previous pixel value (from t1).
// "next" is current row shifted left by 1 pixel, with first pixel
// of next block of 8 pixels added in.
int16x8_t prv0 = vextq_s16(curr, curr, 7);
int16x8_t nxt0 = vextq_s16(curr, curr, 1);
int16x8_t prev = vsetq_lane_s16(t1, prv0, 0);
int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7);
// horizontal filter, polyphase implementation since it's convenient:
// even pixels = 3*cur + prev = cur*4 + (prev - cur)
// odd pixels = 3*cur + next = cur*4 + (next - cur)
// note the shared term.
int16x8_t curs = vshlq_n_s16(curr, 2);
int16x8_t prvd = vsubq_s16(prev, curr);
int16x8_t nxtd = vsubq_s16(next, curr);
int16x8_t even = vaddq_s16(curs, prvd);
int16x8_t odd = vaddq_s16(curs, nxtd);
// undo scaling and round, then store with even/odd phases interleaved
uint8x8x2_t o;
o.val[0] = vqrshrun_n_s16(even, 4);
o.val[1] = vqrshrun_n_s16(odd, 4);
vst2_u8(out + i*2, o);
#endif
// "previous" value for next iter
t1 = 3*in_near[i+7] + in_far[i+7];
}
t0 = t1;
t1 = 3*in_near[i] + in_far[i];
out[i*2] = stbi__div16(3*t1 + t0 + 8);
for (++i; i < w; ++i) {
t0 = t1;
t1 = 3*in_near[i]+in_far[i];
out[i*2-1] = stbi__div16(3*t0 + t1 + 8);
out[i*2 ] = stbi__div16(3*t1 + t0 + 8);
}
out[w*2-1] = stbi__div4(t1+2);
STBI_NOTUSED(hs);
return out;
}
#endif
static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
{
// resample with nearest-neighbor
int i,j;
STBI_NOTUSED(in_far);
for (i=0; i < w; ++i)
for (j=0; j < hs; ++j)
out[i*hs+j] = in_near[i];
return out;
}
// this is a reduced-precision calculation of YCbCr-to-RGB introduced
// to make sure the code produces the same results in both SIMD and scalar
#define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8)
static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step)
{
int i;
for (i=0; i < count; ++i) {
int y_fixed = (y[i] << 20) + (1<<19); // rounding
int r,g,b;
int cr = pcr[i] - 128;
int cb = pcb[i] - 128;
r = y_fixed + cr* stbi__float2fixed(1.40200f);
g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000);
b = y_fixed + cb* stbi__float2fixed(1.77200f);
r >>= 20;
g >>= 20;
b >>= 20;
if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; }
if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; }
if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; }
out[0] = (stbi_uc)r;
out[1] = (stbi_uc)g;
out[2] = (stbi_uc)b;
out[3] = 255;
out += step;
}
}
#if defined(STBI_SSE2) || defined(STBI_NEON)
static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step)
{
int i = 0;
#ifdef STBI_SSE2
// step == 3 is pretty ugly on the final interleave, and i'm not convinced
// it's useful in practice (you wouldn't use it for textures, for example).
// so just accelerate step == 4 case.
if (step == 4) {
// this is a fairly straightforward implementation and not super-optimized.
__m128i signflip = _mm_set1_epi8(-0x80);
__m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f));
__m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f));
__m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f));
__m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f));
__m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128);
__m128i xw = _mm_set1_epi16(255); // alpha channel
for (; i+7 < count; i += 8) {
// load
__m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i));
__m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i));
__m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i));
__m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128
__m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128
// unpack to short (and left-shift cr, cb by 8)
__m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes);
__m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased);
__m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased);
// color transform
__m128i yws = _mm_srli_epi16(yw, 4);
__m128i cr0 = _mm_mulhi_epi16(cr_const0, crw);
__m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw);
__m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1);
__m128i cr1 = _mm_mulhi_epi16(crw, cr_const1);
__m128i rws = _mm_add_epi16(cr0, yws);
__m128i gwt = _mm_add_epi16(cb0, yws);
__m128i bws = _mm_add_epi16(yws, cb1);
__m128i gws = _mm_add_epi16(gwt, cr1);
// descale
__m128i rw = _mm_srai_epi16(rws, 4);
__m128i bw = _mm_srai_epi16(bws, 4);
__m128i gw = _mm_srai_epi16(gws, 4);
// back to byte, set up for transpose
__m128i brb = _mm_packus_epi16(rw, bw);
__m128i gxb = _mm_packus_epi16(gw, xw);
// transpose to interleave channels
__m128i t0 = _mm_unpacklo_epi8(brb, gxb);
__m128i t1 = _mm_unpackhi_epi8(brb, gxb);
__m128i o0 = _mm_unpacklo_epi16(t0, t1);
__m128i o1 = _mm_unpackhi_epi16(t0, t1);
// store
_mm_storeu_si128((__m128i *) (out + 0), o0);
_mm_storeu_si128((__m128i *) (out + 16), o1);
out += 32;
}
}
#endif
#ifdef STBI_NEON
// in this version, step=3 support would be easy to add. but is there demand?
if (step == 4) {
// this is a fairly straightforward implementation and not super-optimized.
uint8x8_t signflip = vdup_n_u8(0x80);
int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f));
int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f));
int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f));
int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f));
for (; i+7 < count; i += 8) {
// load
uint8x8_t y_bytes = vld1_u8(y + i);
uint8x8_t cr_bytes = vld1_u8(pcr + i);
uint8x8_t cb_bytes = vld1_u8(pcb + i);
int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip));
int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip));
// expand to s16
int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4));
int16x8_t crw = vshll_n_s8(cr_biased, 7);
int16x8_t cbw = vshll_n_s8(cb_biased, 7);
// color transform
int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0);
int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0);
int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1);
int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1);
int16x8_t rws = vaddq_s16(yws, cr0);
int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1);
int16x8_t bws = vaddq_s16(yws, cb1);
// undo scaling, round, convert to byte
uint8x8x4_t o;
o.val[0] = vqrshrun_n_s16(rws, 4);
o.val[1] = vqrshrun_n_s16(gws, 4);
o.val[2] = vqrshrun_n_s16(bws, 4);
o.val[3] = vdup_n_u8(255);
// store, interleaving r/g/b/a
vst4_u8(out, o);
out += 8*4;
}
}
#endif
for (; i < count; ++i) {
int y_fixed = (y[i] << 20) + (1<<19); // rounding
int r,g,b;
int cr = pcr[i] - 128;
int cb = pcb[i] - 128;
r = y_fixed + cr* stbi__float2fixed(1.40200f);
g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000);
b = y_fixed + cb* stbi__float2fixed(1.77200f);
r >>= 20;
g >>= 20;
b >>= 20;
if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; }
if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; }
if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; }
out[0] = (stbi_uc)r;
out[1] = (stbi_uc)g;
out[2] = (stbi_uc)b;
out[3] = 255;
out += step;
}
}
#endif
// set up the kernels
static void stbi__setup_jpeg(stbi__jpeg *j)
{
j->idct_block_kernel = stbi__idct_block;
j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row;
j->resample_row_hv_2_kernel = stbi__resample_row_hv_2;
#ifdef STBI_SSE2
if (stbi__sse2_available()) {
j->idct_block_kernel = stbi__idct_simd;
j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd;
j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd;
}
#endif
#ifdef STBI_NEON
j->idct_block_kernel = stbi__idct_simd;
j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd;
j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd;
#endif
}
// clean up the temporary component buffers
static void stbi__cleanup_jpeg(stbi__jpeg *j)
{
stbi__free_jpeg_components(j, j->s->img_n, 0);
}
typedef struct
{
resample_row_func resample;
stbi_uc *line0,*line1;
int hs,vs; // expansion factor in each axis
int w_lores; // horizontal pixels pre-expansion
int ystep; // how far through vertical expansion we are
int ypos; // which pre-expansion row we're on
} stbi__resample;
// fast 0..255 * 0..255 => 0..255 rounded multiplication
static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y)
{
unsigned int t = x*y + 128;
return (stbi_uc) ((t + (t >>8)) >> 8);
}
static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp)
{
int n, decode_n, is_rgb;
z->s->img_n = 0; // make stbi__cleanup_jpeg safe
// validate req_comp
if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error");
// load a jpeg image from whichever source, but leave in YCbCr format
if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; }
// determine actual number of components to generate
n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1;
is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif));
if (z->s->img_n == 3 && n < 3 && !is_rgb)
decode_n = 1;
else
decode_n = z->s->img_n;
// nothing to do if no components requested; check this now to avoid
// accessing uninitialized coutput[0] later
if (decode_n <= 0) { stbi__cleanup_jpeg(z); return NULL; }
// resample and color-convert
{
int k;
unsigned int i,j;
stbi_uc *output;
stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL };
stbi__resample res_comp[4];
for (k=0; k < decode_n; ++k) {
stbi__resample *r = &res_comp[k];
// allocate line buffer big enough for upsampling off the edges
// with upsample factor of 4
z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3);
if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); }
r->hs = z->img_h_max / z->img_comp[k].h;
r->vs = z->img_v_max / z->img_comp[k].v;
r->ystep = r->vs >> 1;
r->w_lores = (z->s->img_x + r->hs-1) / r->hs;
r->ypos = 0;
r->line0 = r->line1 = z->img_comp[k].data;
if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1;
else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2;
else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2;
else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel;
else r->resample = stbi__resample_row_generic;
}
// can't error after this so, this is safe
output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1);
if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); }
// now go ahead and resample
for (j=0; j < z->s->img_y; ++j) {
stbi_uc *out = output + n * z->s->img_x * j;
for (k=0; k < decode_n; ++k) {
stbi__resample *r = &res_comp[k];
int y_bot = r->ystep >= (r->vs >> 1);
coutput[k] = r->resample(z->img_comp[k].linebuf,
y_bot ? r->line1 : r->line0,
y_bot ? r->line0 : r->line1,
r->w_lores, r->hs);
if (++r->ystep >= r->vs) {
r->ystep = 0;
r->line0 = r->line1;
if (++r->ypos < z->img_comp[k].y)
r->line1 += z->img_comp[k].w2;
}
}
if (n >= 3) {
stbi_uc *y = coutput[0];
if (z->s->img_n == 3) {
if (is_rgb) {
for (i=0; i < z->s->img_x; ++i) {
out[0] = y[i];
out[1] = coutput[1][i];
out[2] = coutput[2][i];
out[3] = 255;
out += n;
}
} else {
z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
}
} else if (z->s->img_n == 4) {
if (z->app14_color_transform == 0) { // CMYK
for (i=0; i < z->s->img_x; ++i) {
stbi_uc m = coutput[3][i];
out[0] = stbi__blinn_8x8(coutput[0][i], m);
out[1] = stbi__blinn_8x8(coutput[1][i], m);
out[2] = stbi__blinn_8x8(coutput[2][i], m);
out[3] = 255;
out += n;
}
} else if (z->app14_color_transform == 2) { // YCCK
z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
for (i=0; i < z->s->img_x; ++i) {
stbi_uc m = coutput[3][i];
out[0] = stbi__blinn_8x8(255 - out[0], m);
out[1] = stbi__blinn_8x8(255 - out[1], m);
out[2] = stbi__blinn_8x8(255 - out[2], m);
out += n;
}
} else { // YCbCr + alpha? Ignore the fourth channel for now
z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
}
} else
for (i=0; i < z->s->img_x; ++i) {
out[0] = out[1] = out[2] = y[i];
out[3] = 255; // not used if n==3
out += n;
}
} else {
if (is_rgb) {
if (n == 1)
for (i=0; i < z->s->img_x; ++i)
*out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]);
else {
for (i=0; i < z->s->img_x; ++i, out += 2) {
out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]);
out[1] = 255;
}
}
} else if (z->s->img_n == 4 && z->app14_color_transform == 0) {
for (i=0; i < z->s->img_x; ++i) {
stbi_uc m = coutput[3][i];
stbi_uc r = stbi__blinn_8x8(coutput[0][i], m);
stbi_uc g = stbi__blinn_8x8(coutput[1][i], m);
stbi_uc b = stbi__blinn_8x8(coutput[2][i], m);
out[0] = stbi__compute_y(r, g, b);
out[1] = 255;
out += n;
}
} else if (z->s->img_n == 4 && z->app14_color_transform == 2) {
for (i=0; i < z->s->img_x; ++i) {
out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]);
out[1] = 255;
out += n;
}
} else {
stbi_uc *y = coutput[0];
if (n == 1)
for (i=0; i < z->s->img_x; ++i) out[i] = y[i];
else
for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; }
}
}
}
stbi__cleanup_jpeg(z);
*out_x = z->s->img_x;
*out_y = z->s->img_y;
if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output
return output;
}
}
static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
unsigned char* result;
stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg));
if (!j) return stbi__errpuc("outofmem", "Out of memory");
STBI_NOTUSED(ri);
j->s = s;
stbi__setup_jpeg(j);
result = load_jpeg_image(j, x,y,comp,req_comp);
STBI_FREE(j);
return result;
}
static int stbi__jpeg_test(stbi__context *s)
{
int r;
stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg));
if (!j) return stbi__err("outofmem", "Out of memory");
j->s = s;
stbi__setup_jpeg(j);
r = stbi__decode_jpeg_header(j, STBI__SCAN_type);
stbi__rewind(s);
STBI_FREE(j);
return r;
}
static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp)
{
if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) {
stbi__rewind( j->s );
return 0;
}
if (x) *x = j->s->img_x;
if (y) *y = j->s->img_y;
if (comp) *comp = j->s->img_n >= 3 ? 3 : 1;
return 1;
}
static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp)
{
int result;
stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg)));
if (!j) return stbi__err("outofmem", "Out of memory");
j->s = s;
result = stbi__jpeg_info_raw(j, x, y, comp);
STBI_FREE(j);
return result;
}
#endif
// public domain zlib decode v0.2 Sean Barrett 2006-11-18
// simple implementation
// - all input must be provided in an upfront buffer
// - all output is written to a single output buffer (can malloc/realloc)
// performance
// - fast huffman
#ifndef STBI_NO_ZLIB
// fast-way is faster to check than jpeg huffman, but slow way is slower
#define STBI__ZFAST_BITS 9 // accelerate all cases in default tables
#define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1)
#define STBI__ZNSYMS 288 // number of symbols in literal/length alphabet
// zlib-style huffman encoding
// (jpegs packs from left, zlib from right, so can't share code)
typedef struct
{
stbi__uint16 fast[1 << STBI__ZFAST_BITS];
stbi__uint16 firstcode[16];
int maxcode[17];
stbi__uint16 firstsymbol[16];
stbi_uc size[STBI__ZNSYMS];
stbi__uint16 value[STBI__ZNSYMS];
} stbi__zhuffman;
stbi_inline static int stbi__bitreverse16(int n)
{
n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1);
n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2);
n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4);
n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8);
return n;
}
stbi_inline static int stbi__bit_reverse(int v, int bits)
{
STBI_ASSERT(bits <= 16);
// to bit reverse n bits, reverse 16 and shift
// e.g. 11 bits, bit reverse and shift away 5
return stbi__bitreverse16(v) >> (16-bits);
}
static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num)
{
int i,k=0;
int code, next_code[16], sizes[17];
// DEFLATE spec for generating codes
memset(sizes, 0, sizeof(sizes));
memset(z->fast, 0, sizeof(z->fast));
for (i=0; i < num; ++i)
++sizes[sizelist[i]];
sizes[0] = 0;
for (i=1; i < 16; ++i)
if (sizes[i] > (1 << i))
return stbi__err("bad sizes", "Corrupt PNG");
code = 0;
for (i=1; i < 16; ++i) {
next_code[i] = code;
z->firstcode[i] = (stbi__uint16) code;
z->firstsymbol[i] = (stbi__uint16) k;
code = (code + sizes[i]);
if (sizes[i])
if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG");
z->maxcode[i] = code << (16-i); // preshift for inner loop
code <<= 1;
k += sizes[i];
}
z->maxcode[16] = 0x10000; // sentinel
for (i=0; i < num; ++i) {
int s = sizelist[i];
if (s) {
int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s];
stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i);
z->size [c] = (stbi_uc ) s;
z->value[c] = (stbi__uint16) i;
if (s <= STBI__ZFAST_BITS) {
int j = stbi__bit_reverse(next_code[s],s);
while (j < (1 << STBI__ZFAST_BITS)) {
z->fast[j] = fastv;
j += (1 << s);
}
}
++next_code[s];
}
}
return 1;
}
// zlib-from-memory implementation for PNG reading
// because PNG allows splitting the zlib stream arbitrarily,
// and it's annoying structurally to have PNG call ZLIB call PNG,
// we require PNG read all the IDATs and combine them into a single
// memory buffer
typedef struct
{
stbi_uc *zbuffer, *zbuffer_end;
int num_bits;
stbi__uint32 code_buffer;
char *zout;
char *zout_start;
char *zout_end;
int z_expandable;
stbi__zhuffman z_length, z_distance;
} stbi__zbuf;
stbi_inline static int stbi__zeof(stbi__zbuf *z)
{
return (z->zbuffer >= z->zbuffer_end);
}
stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z)
{
return stbi__zeof(z) ? 0 : *z->zbuffer++;
}
static void stbi__fill_bits(stbi__zbuf *z)
{
do {
if (z->code_buffer >= (1U << z->num_bits)) {
z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */
return;
}
z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits;
z->num_bits += 8;
} while (z->num_bits <= 24);
}
stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n)
{
unsigned int k;
if (z->num_bits < n) stbi__fill_bits(z);
k = z->code_buffer & ((1 << n) - 1);
z->code_buffer >>= n;
z->num_bits -= n;
return k;
}
static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z)
{
int b,s,k;
// not resolved by fast table, so compute it the slow way
// use jpeg approach, which requires MSbits at top
k = stbi__bit_reverse(a->code_buffer, 16);
for (s=STBI__ZFAST_BITS+1; ; ++s)
if (k < z->maxcode[s])
break;
if (s >= 16) return -1; // invalid code!
// code size is s, so:
b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s];
if (b >= STBI__ZNSYMS) return -1; // some data was corrupt somewhere!
if (z->size[b] != s) return -1; // was originally an assert, but report failure instead.
a->code_buffer >>= s;
a->num_bits -= s;
return z->value[b];
}
stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z)
{
int b,s;
if (a->num_bits < 16) {
if (stbi__zeof(a)) {
return -1; /* report error for unexpected end of data. */
}
stbi__fill_bits(a);
}
b = z->fast[a->code_buffer & STBI__ZFAST_MASK];
if (b) {
s = b >> 9;
a->code_buffer >>= s;
a->num_bits -= s;
return b & 511;
}
return stbi__zhuffman_decode_slowpath(a, z);
}
static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes
{
char *q;
unsigned int cur, limit, old_limit;
z->zout = zout;
if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG");
cur = (unsigned int) (z->zout - z->zout_start);
limit = old_limit = (unsigned) (z->zout_end - z->zout_start);
if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory");
while (cur + n > limit) {
if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory");
limit *= 2;
}
q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit);
STBI_NOTUSED(old_limit);
if (q == NULL) return stbi__err("outofmem", "Out of memory");
z->zout_start = q;
z->zout = q + cur;
z->zout_end = q + limit;
return 1;
}
static const int stbi__zlength_base[31] = {
3,4,5,6,7,8,9,10,11,13,
15,17,19,23,27,31,35,43,51,59,
67,83,99,115,131,163,195,227,258,0,0 };
static const int stbi__zlength_extra[31]=
{ 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 };
static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,
257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0};
static const int stbi__zdist_extra[32] =
{ 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
static int stbi__parse_huffman_block(stbi__zbuf *a)
{
char *zout = a->zout;
for(;;) {
int z = stbi__zhuffman_decode(a, &a->z_length);
if (z < 256) {
if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes
if (zout >= a->zout_end) {
if (!stbi__zexpand(a, zout, 1)) return 0;
zout = a->zout;
}
*zout++ = (char) z;
} else {
stbi_uc *p;
int len,dist;
if (z == 256) {
a->zout = zout;
return 1;
}
z -= 257;
len = stbi__zlength_base[z];
if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]);
z = stbi__zhuffman_decode(a, &a->z_distance);
if (z < 0) return stbi__err("bad huffman code","Corrupt PNG");
dist = stbi__zdist_base[z];
if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]);
if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG");
if (zout + len > a->zout_end) {
if (!stbi__zexpand(a, zout, len)) return 0;
zout = a->zout;
}
p = (stbi_uc *) (zout - dist);
if (dist == 1) { // run of one byte; common in images.
stbi_uc v = *p;
if (len) { do *zout++ = v; while (--len); }
} else {
if (len) { do *zout++ = *p++; while (--len); }
}
}
}
}
static int stbi__compute_huffman_codes(stbi__zbuf *a)
{
static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 };
stbi__zhuffman z_codelength;
stbi_uc lencodes[286+32+137];//padding for maximum single op
stbi_uc codelength_sizes[19];
int i,n;
int hlit = stbi__zreceive(a,5) + 257;
int hdist = stbi__zreceive(a,5) + 1;
int hclen = stbi__zreceive(a,4) + 4;
int ntot = hlit + hdist;
memset(codelength_sizes, 0, sizeof(codelength_sizes));
for (i=0; i < hclen; ++i) {
int s = stbi__zreceive(a,3);
codelength_sizes[length_dezigzag[i]] = (stbi_uc) s;
}
if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0;
n = 0;
while (n < ntot) {
int c = stbi__zhuffman_decode(a, &z_codelength);
if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG");
if (c < 16)
lencodes[n++] = (stbi_uc) c;
else {
stbi_uc fill = 0;
if (c == 16) {
c = stbi__zreceive(a,2)+3;
if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG");
fill = lencodes[n-1];
} else if (c == 17) {
c = stbi__zreceive(a,3)+3;
} else if (c == 18) {
c = stbi__zreceive(a,7)+11;
} else {
return stbi__err("bad codelengths", "Corrupt PNG");
}
if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG");
memset(lencodes+n, fill, c);
n += c;
}
}
if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG");
if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0;
if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0;
return 1;
}
static int stbi__parse_uncompressed_block(stbi__zbuf *a)
{
stbi_uc header[4];
int len,nlen,k;
if (a->num_bits & 7)
stbi__zreceive(a, a->num_bits & 7); // discard
// drain the bit-packed data into header
k = 0;
while (a->num_bits > 0) {
header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check
a->code_buffer >>= 8;
a->num_bits -= 8;
}
if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG");
// now fill header the normal way
while (k < 4)
header[k++] = stbi__zget8(a);
len = header[1] * 256 + header[0];
nlen = header[3] * 256 + header[2];
if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG");
if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG");
if (a->zout + len > a->zout_end)
if (!stbi__zexpand(a, a->zout, len)) return 0;
memcpy(a->zout, a->zbuffer, len);
a->zbuffer += len;
a->zout += len;
return 1;
}
static int stbi__parse_zlib_header(stbi__zbuf *a)
{
int cmf = stbi__zget8(a);
int cm = cmf & 15;
/* int cinfo = cmf >> 4; */
int flg = stbi__zget8(a);
if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec
if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec
if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png
if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png
// window = 1 << (8 + cinfo)... but who cares, we fully buffer output
return 1;
}
static const stbi_uc stbi__zdefault_length[STBI__ZNSYMS] =
{
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8
};
static const stbi_uc stbi__zdefault_distance[32] =
{
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
};
/*
Init algorithm:
{
int i; // use <= to match clearly with spec
for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8;
for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9;
for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7;
for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8;
for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5;
}
*/
static int stbi__parse_zlib(stbi__zbuf *a, int parse_header)
{
int final, type;
if (parse_header)
if (!stbi__parse_zlib_header(a)) return 0;
a->num_bits = 0;
a->code_buffer = 0;
do {
final = stbi__zreceive(a,1);
type = stbi__zreceive(a,2);
if (type == 0) {
if (!stbi__parse_uncompressed_block(a)) return 0;
} else if (type == 3) {
return 0;
} else {
if (type == 1) {
// use fixed code lengths
if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , STBI__ZNSYMS)) return 0;
if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0;
} else {
if (!stbi__compute_huffman_codes(a)) return 0;
}
if (!stbi__parse_huffman_block(a)) return 0;
}
} while (!final);
return 1;
}
static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header)
{
a->zout_start = obuf;
a->zout = obuf;
a->zout_end = obuf + olen;
a->z_expandable = exp;
return stbi__parse_zlib(a, parse_header);
}
STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen)
{
stbi__zbuf a;
char *p = (char *) stbi__malloc(initial_size);
if (p == NULL) return NULL;
a.zbuffer = (stbi_uc *) buffer;
a.zbuffer_end = (stbi_uc *) buffer + len;
if (stbi__do_zlib(&a, p, initial_size, 1, 1)) {
if (outlen) *outlen = (int) (a.zout - a.zout_start);
return a.zout_start;
} else {
STBI_FREE(a.zout_start);
return NULL;
}
}
STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen)
{
return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen);
}
STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header)
{
stbi__zbuf a;
char *p = (char *) stbi__malloc(initial_size);
if (p == NULL) return NULL;
a.zbuffer = (stbi_uc *) buffer;
a.zbuffer_end = (stbi_uc *) buffer + len;
if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) {
if (outlen) *outlen = (int) (a.zout - a.zout_start);
return a.zout_start;
} else {
STBI_FREE(a.zout_start);
return NULL;
}
}
STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen)
{
stbi__zbuf a;
a.zbuffer = (stbi_uc *) ibuffer;
a.zbuffer_end = (stbi_uc *) ibuffer + ilen;
if (stbi__do_zlib(&a, obuffer, olen, 0, 1))
return (int) (a.zout - a.zout_start);
else
return -1;
}
STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen)
{
stbi__zbuf a;
char *p = (char *) stbi__malloc(16384);
if (p == NULL) return NULL;
a.zbuffer = (stbi_uc *) buffer;
a.zbuffer_end = (stbi_uc *) buffer+len;
if (stbi__do_zlib(&a, p, 16384, 1, 0)) {
if (outlen) *outlen = (int) (a.zout - a.zout_start);
return a.zout_start;
} else {
STBI_FREE(a.zout_start);
return NULL;
}
}
STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen)
{
stbi__zbuf a;
a.zbuffer = (stbi_uc *) ibuffer;
a.zbuffer_end = (stbi_uc *) ibuffer + ilen;
if (stbi__do_zlib(&a, obuffer, olen, 0, 0))
return (int) (a.zout - a.zout_start);
else
return -1;
}
#endif
// public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18
// simple implementation
// - only 8-bit samples
// - no CRC checking
// - allocates lots of intermediate memory
// - avoids problem of streaming data between subsystems
// - avoids explicit window management
// performance
// - uses stb_zlib, a PD zlib implementation with fast huffman decoding
#ifndef STBI_NO_PNG
typedef struct
{
stbi__uint32 length;
stbi__uint32 type;
} stbi__pngchunk;
static stbi__pngchunk stbi__get_chunk_header(stbi__context *s)
{
stbi__pngchunk c;
c.length = stbi__get32be(s);
c.type = stbi__get32be(s);
return c;
}
static int stbi__check_png_header(stbi__context *s)
{
static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 };
int i;
for (i=0; i < 8; ++i)
if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG");
return 1;
}
typedef struct
{
stbi__context *s;
stbi_uc *idata, *expanded, *out;
int depth;
} stbi__png;
enum {
STBI__F_none=0,
STBI__F_sub=1,
STBI__F_up=2,
STBI__F_avg=3,
STBI__F_paeth=4,
// synthetic filters used for first scanline to avoid needing a dummy row of 0s
STBI__F_avg_first,
STBI__F_paeth_first
};
static stbi_uc first_row_filter[5] =
{
STBI__F_none,
STBI__F_sub,
STBI__F_none,
STBI__F_avg_first,
STBI__F_paeth_first
};
static int stbi__paeth(int a, int b, int c)
{
int p = a + b - c;
int pa = abs(p-a);
int pb = abs(p-b);
int pc = abs(p-c);
if (pa <= pb && pa <= pc) return a;
if (pb <= pc) return b;
return c;
}
static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 };
// create the png data from post-deflated data
static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color)
{
int bytes = (depth == 16? 2 : 1);
stbi__context *s = a->s;
stbi__uint32 i,j,stride = x*out_n*bytes;
stbi__uint32 img_len, img_width_bytes;
int k;
int img_n = s->img_n; // copy it into a local for later
int output_bytes = out_n*bytes;
int filter_bytes = img_n*bytes;
int width = x;
STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1);
a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into
if (!a->out) return stbi__err("outofmem", "Out of memory");
if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG");
img_width_bytes = (((img_n * x * depth) + 7) >> 3);
img_len = (img_width_bytes + 1) * y;
// we used to check for exact match between raw_len and img_len on non-interlaced PNGs,
// but issue #276 reported a PNG in the wild that had extra data at the end (all zeros),
// so just check for raw_len < img_len always.
if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG");
for (j=0; j < y; ++j) {
stbi_uc *cur = a->out + stride*j;
stbi_uc *prior;
int filter = *raw++;
if (filter > 4)
return stbi__err("invalid filter","Corrupt PNG");
if (depth < 8) {
if (img_width_bytes > x) return stbi__err("invalid width","Corrupt PNG");
cur += x*out_n - img_width_bytes; // store output to the rightmost img_len bytes, so we can decode in place
filter_bytes = 1;
width = img_width_bytes;
}
prior = cur - stride; // bugfix: need to compute this after 'cur +=' computation above
// if first row, use special filter that doesn't sample previous row
if (j == 0) filter = first_row_filter[filter];
// handle first byte explicitly
for (k=0; k < filter_bytes; ++k) {
switch (filter) {
case STBI__F_none : cur[k] = raw[k]; break;
case STBI__F_sub : cur[k] = raw[k]; break;
case STBI__F_up : cur[k] = STBI__BYTECAST(raw[k] + prior[k]); break;
case STBI__F_avg : cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1)); break;
case STBI__F_paeth : cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(0,prior[k],0)); break;
case STBI__F_avg_first : cur[k] = raw[k]; break;
case STBI__F_paeth_first: cur[k] = raw[k]; break;
}
}
if (depth == 8) {
if (img_n != out_n)
cur[img_n] = 255; // first pixel
raw += img_n;
cur += out_n;
prior += out_n;
} else if (depth == 16) {
if (img_n != out_n) {
cur[filter_bytes] = 255; // first pixel top byte
cur[filter_bytes+1] = 255; // first pixel bottom byte
}
raw += filter_bytes;
cur += output_bytes;
prior += output_bytes;
} else {
raw += 1;
cur += 1;
prior += 1;
}
// this is a little gross, so that we don't switch per-pixel or per-component
if (depth < 8 || img_n == out_n) {
int nk = (width - 1)*filter_bytes;
#define STBI__CASE(f) \
case f: \
for (k=0; k < nk; ++k)
switch (filter) {
// "none" filter turns into a memcpy here; make that explicit.
case STBI__F_none: memcpy(cur, raw, nk); break;
STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); } break;
STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break;
STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); } break;
STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],prior[k],prior[k-filter_bytes])); } break;
STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); } break;
STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],0,0)); } break;
}
#undef STBI__CASE
raw += nk;
} else {
STBI_ASSERT(img_n+1 == out_n);
#define STBI__CASE(f) \
case f: \
for (i=x-1; i >= 1; --i, cur[filter_bytes]=255,raw+=filter_bytes,cur+=output_bytes,prior+=output_bytes) \
for (k=0; k < filter_bytes; ++k)
switch (filter) {
STBI__CASE(STBI__F_none) { cur[k] = raw[k]; } break;
STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k- output_bytes]); } break;
STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break;
STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k- output_bytes])>>1)); } break;
STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],prior[k],prior[k- output_bytes])); } break;
STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k- output_bytes] >> 1)); } break;
STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break;
}
#undef STBI__CASE
// the loop above sets the high byte of the pixels' alpha, but for
// 16 bit png files we also need the low byte set. we'll do that here.
if (depth == 16) {
cur = a->out + stride*j; // start at the beginning of the row again
for (i=0; i < x; ++i,cur+=output_bytes) {
cur[filter_bytes+1] = 255;
}
}
}
}
// we make a separate pass to expand bits to pixels; for performance,
// this could run two scanlines behind the above code, so it won't
// intefere with filtering but will still be in the cache.
if (depth < 8) {
for (j=0; j < y; ++j) {
stbi_uc *cur = a->out + stride*j;
stbi_uc *in = a->out + stride*j + x*out_n - img_width_bytes;
// unpack 1/2/4-bit into a 8-bit buffer. allows us to keep the common 8-bit path optimal at minimal cost for 1/2/4-bit
// png guarante byte alignment, if width is not multiple of 8/4/2 we'll decode dummy trailing data that will be skipped in the later loop
stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range
// note that the final byte might overshoot and write more data than desired.
// we can allocate enough data that this never writes out of memory, but it
// could also overwrite the next scanline. can it overwrite non-empty data
// on the next scanline? yes, consider 1-pixel-wide scanlines with 1-bit-per-pixel.
// so we need to explicitly clamp the final ones
if (depth == 4) {
for (k=x*img_n; k >= 2; k-=2, ++in) {
*cur++ = scale * ((*in >> 4) );
*cur++ = scale * ((*in ) & 0x0f);
}
if (k > 0) *cur++ = scale * ((*in >> 4) );
} else if (depth == 2) {
for (k=x*img_n; k >= 4; k-=4, ++in) {
*cur++ = scale * ((*in >> 6) );
*cur++ = scale * ((*in >> 4) & 0x03);
*cur++ = scale * ((*in >> 2) & 0x03);
*cur++ = scale * ((*in ) & 0x03);
}
if (k > 0) *cur++ = scale * ((*in >> 6) );
if (k > 1) *cur++ = scale * ((*in >> 4) & 0x03);
if (k > 2) *cur++ = scale * ((*in >> 2) & 0x03);
} else if (depth == 1) {
for (k=x*img_n; k >= 8; k-=8, ++in) {
*cur++ = scale * ((*in >> 7) );
*cur++ = scale * ((*in >> 6) & 0x01);
*cur++ = scale * ((*in >> 5) & 0x01);
*cur++ = scale * ((*in >> 4) & 0x01);
*cur++ = scale * ((*in >> 3) & 0x01);
*cur++ = scale * ((*in >> 2) & 0x01);
*cur++ = scale * ((*in >> 1) & 0x01);
*cur++ = scale * ((*in ) & 0x01);
}
if (k > 0) *cur++ = scale * ((*in >> 7) );
if (k > 1) *cur++ = scale * ((*in >> 6) & 0x01);
if (k > 2) *cur++ = scale * ((*in >> 5) & 0x01);
if (k > 3) *cur++ = scale * ((*in >> 4) & 0x01);
if (k > 4) *cur++ = scale * ((*in >> 3) & 0x01);
if (k > 5) *cur++ = scale * ((*in >> 2) & 0x01);
if (k > 6) *cur++ = scale * ((*in >> 1) & 0x01);
}
if (img_n != out_n) {
int q;
// insert alpha = 255
cur = a->out + stride*j;
if (img_n == 1) {
for (q=x-1; q >= 0; --q) {
cur[q*2+1] = 255;
cur[q*2+0] = cur[q];
}
} else {
STBI_ASSERT(img_n == 3);
for (q=x-1; q >= 0; --q) {
cur[q*4+3] = 255;
cur[q*4+2] = cur[q*3+2];
cur[q*4+1] = cur[q*3+1];
cur[q*4+0] = cur[q*3+0];
}
}
}
}
} else if (depth == 16) {
// force the image data from big-endian to platform-native.
// this is done in a separate pass due to the decoding relying
// on the data being untouched, but could probably be done
// per-line during decode if care is taken.
stbi_uc *cur = a->out;
stbi__uint16 *cur16 = (stbi__uint16*)cur;
for(i=0; i < x*y*out_n; ++i,cur16++,cur+=2) {
*cur16 = (cur[0] << 8) | cur[1];
}
}
return 1;
}
static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced)
{
int bytes = (depth == 16 ? 2 : 1);
int out_bytes = out_n * bytes;
stbi_uc *final;
int p;
if (!interlaced)
return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color);
// de-interlacing
final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0);
if (!final) return stbi__err("outofmem", "Out of memory");
for (p=0; p < 7; ++p) {
int xorig[] = { 0,4,0,2,0,1,0 };
int yorig[] = { 0,0,4,0,2,0,1 };
int xspc[] = { 8,8,4,4,2,2,1 };
int yspc[] = { 8,8,8,4,4,2,2 };
int i,j,x,y;
// pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1
x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p];
y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p];
if (x && y) {
stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y;
if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) {
STBI_FREE(final);
return 0;
}
for (j=0; j < y; ++j) {
for (i=0; i < x; ++i) {
int out_y = j*yspc[p]+yorig[p];
int out_x = i*xspc[p]+xorig[p];
memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes,
a->out + (j*x+i)*out_bytes, out_bytes);
}
}
STBI_FREE(a->out);
image_data += img_len;
image_data_len -= img_len;
}
}
a->out = final;
return 1;
}
static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n)
{
stbi__context *s = z->s;
stbi__uint32 i, pixel_count = s->img_x * s->img_y;
stbi_uc *p = z->out;
// compute color-based transparency, assuming we've
// already got 255 as the alpha value in the output
STBI_ASSERT(out_n == 2 || out_n == 4);
if (out_n == 2) {
for (i=0; i < pixel_count; ++i) {
p[1] = (p[0] == tc[0] ? 0 : 255);
p += 2;
}
} else {
for (i=0; i < pixel_count; ++i) {
if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2])
p[3] = 0;
p += 4;
}
}
return 1;
}
static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n)
{
stbi__context *s = z->s;
stbi__uint32 i, pixel_count = s->img_x * s->img_y;
stbi__uint16 *p = (stbi__uint16*) z->out;
// compute color-based transparency, assuming we've
// already got 65535 as the alpha value in the output
STBI_ASSERT(out_n == 2 || out_n == 4);
if (out_n == 2) {
for (i = 0; i < pixel_count; ++i) {
p[1] = (p[0] == tc[0] ? 0 : 65535);
p += 2;
}
} else {
for (i = 0; i < pixel_count; ++i) {
if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2])
p[3] = 0;
p += 4;
}
}
return 1;
}
static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n)
{
stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y;
stbi_uc *p, *temp_out, *orig = a->out;
p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0);
if (p == NULL) return stbi__err("outofmem", "Out of memory");
// between here and free(out) below, exitting would leak
temp_out = p;
if (pal_img_n == 3) {
for (i=0; i < pixel_count; ++i) {
int n = orig[i]*4;
p[0] = palette[n ];
p[1] = palette[n+1];
p[2] = palette[n+2];
p += 3;
}
} else {
for (i=0; i < pixel_count; ++i) {
int n = orig[i]*4;
p[0] = palette[n ];
p[1] = palette[n+1];
p[2] = palette[n+2];
p[3] = palette[n+3];
p += 4;
}
}
STBI_FREE(a->out);
a->out = temp_out;
STBI_NOTUSED(len);
return 1;
}
static int stbi__unpremultiply_on_load_global = 0;
static int stbi__de_iphone_flag_global = 0;
STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply)
{
stbi__unpremultiply_on_load_global = flag_true_if_should_unpremultiply;
}
STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert)
{
stbi__de_iphone_flag_global = flag_true_if_should_convert;
}
#ifndef STBI_THREAD_LOCAL
#define stbi__unpremultiply_on_load stbi__unpremultiply_on_load_global
#define stbi__de_iphone_flag stbi__de_iphone_flag_global
#else
static STBI_THREAD_LOCAL int stbi__unpremultiply_on_load_local, stbi__unpremultiply_on_load_set;
static STBI_THREAD_LOCAL int stbi__de_iphone_flag_local, stbi__de_iphone_flag_set;
STBIDEF void stbi__unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply)
{
stbi__unpremultiply_on_load_local = flag_true_if_should_unpremultiply;
stbi__unpremultiply_on_load_set = 1;
}
STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert)
{
stbi__de_iphone_flag_local = flag_true_if_should_convert;
stbi__de_iphone_flag_set = 1;
}
#define stbi__unpremultiply_on_load (stbi__unpremultiply_on_load_set \
? stbi__unpremultiply_on_load_local \
: stbi__unpremultiply_on_load_global)
#define stbi__de_iphone_flag (stbi__de_iphone_flag_set \
? stbi__de_iphone_flag_local \
: stbi__de_iphone_flag_global)
#endif // STBI_THREAD_LOCAL
static void stbi__de_iphone(stbi__png *z)
{
stbi__context *s = z->s;
stbi__uint32 i, pixel_count = s->img_x * s->img_y;
stbi_uc *p = z->out;
if (s->img_out_n == 3) { // convert bgr to rgb
for (i=0; i < pixel_count; ++i) {
stbi_uc t = p[0];
p[0] = p[2];
p[2] = t;
p += 3;
}
} else {
STBI_ASSERT(s->img_out_n == 4);
if (stbi__unpremultiply_on_load) {
// convert bgr to rgb and unpremultiply
for (i=0; i < pixel_count; ++i) {
stbi_uc a = p[3];
stbi_uc t = p[0];
if (a) {
stbi_uc half = a / 2;
p[0] = (p[2] * 255 + half) / a;
p[1] = (p[1] * 255 + half) / a;
p[2] = ( t * 255 + half) / a;
} else {
p[0] = p[2];
p[2] = t;
}
p += 4;
}
} else {
// convert bgr to rgb
for (i=0; i < pixel_count; ++i) {
stbi_uc t = p[0];
p[0] = p[2];
p[2] = t;
p += 4;
}
}
}
}
#define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d))
static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp)
{
stbi_uc palette[1024], pal_img_n=0;
stbi_uc has_trans=0, tc[3]={0};
stbi__uint16 tc16[3];
stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0;
int first=1,k,interlace=0, color=0, is_iphone=0;
stbi__context *s = z->s;
z->expanded = NULL;
z->idata = NULL;
z->out = NULL;
if (!stbi__check_png_header(s)) return 0;
if (scan == STBI__SCAN_type) return 1;
for (;;) {
stbi__pngchunk c = stbi__get_chunk_header(s);
switch (c.type) {
case STBI__PNG_TYPE('C','g','B','I'):
is_iphone = 1;
stbi__skip(s, c.length);
break;
case STBI__PNG_TYPE('I','H','D','R'): {
int comp,filter;
if (!first) return stbi__err("multiple IHDR","Corrupt PNG");
first = 0;
if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG");
s->img_x = stbi__get32be(s);
s->img_y = stbi__get32be(s);
if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only");
color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG");
if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG");
if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG");
comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG");
filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG");
interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG");
if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG");
if (!pal_img_n) {
s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0);
if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode");
if (scan == STBI__SCAN_header) return 1;
} else {
// if paletted, then pal_n is our final components, and
// img_n is # components to decompress/filter.
s->img_n = 1;
if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG");
// if SCAN_header, have to scan to see if we have a tRNS
}
break;
}
case STBI__PNG_TYPE('P','L','T','E'): {
if (first) return stbi__err("first not IHDR", "Corrupt PNG");
if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG");
pal_len = c.length / 3;
if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG");
for (i=0; i < pal_len; ++i) {
palette[i*4+0] = stbi__get8(s);
palette[i*4+1] = stbi__get8(s);
palette[i*4+2] = stbi__get8(s);
palette[i*4+3] = 255;
}
break;
}
case STBI__PNG_TYPE('t','R','N','S'): {
if (first) return stbi__err("first not IHDR", "Corrupt PNG");
if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG");
if (pal_img_n) {
if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; }
if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG");
if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG");
pal_img_n = 4;
for (i=0; i < c.length; ++i)
palette[i*4+3] = stbi__get8(s);
} else {
if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG");
if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG");
has_trans = 1;
if (z->depth == 16) {
for (k = 0; k < s->img_n; ++k) tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is
} else {
for (k = 0; k < s->img_n; ++k) tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger
}
}
break;
}
case STBI__PNG_TYPE('I','D','A','T'): {
if (first) return stbi__err("first not IHDR", "Corrupt PNG");
if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG");
if (scan == STBI__SCAN_header) { s->img_n = pal_img_n; return 1; }
if ((int)(ioff + c.length) < (int)ioff) return 0;
if (ioff + c.length > idata_limit) {
stbi__uint32 idata_limit_old = idata_limit;
stbi_uc *p;
if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096;
while (ioff + c.length > idata_limit)
idata_limit *= 2;
STBI_NOTUSED(idata_limit_old);
p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory");
z->idata = p;
}
if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG");
ioff += c.length;
break;
}
case STBI__PNG_TYPE('I','E','N','D'): {
stbi__uint32 raw_len, bpl;
if (first) return stbi__err("first not IHDR", "Corrupt PNG");
if (scan != STBI__SCAN_load) return 1;
if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG");
// initial guess for decoded data size to avoid unnecessary reallocs
bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component
raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */;
z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone);
if (z->expanded == NULL) return 0; // zlib should set error
STBI_FREE(z->idata); z->idata = NULL;
if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans)
s->img_out_n = s->img_n+1;
else
s->img_out_n = s->img_n;
if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0;
if (has_trans) {
if (z->depth == 16) {
if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0;
} else {
if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0;
}
}
if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2)
stbi__de_iphone(z);
if (pal_img_n) {
// pal_img_n == 3 or 4
s->img_n = pal_img_n; // record the actual colors we had
s->img_out_n = pal_img_n;
if (req_comp >= 3) s->img_out_n = req_comp;
if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n))
return 0;
} else if (has_trans) {
// non-paletted image with tRNS -> source image has (constant) alpha
++s->img_n;
}
STBI_FREE(z->expanded); z->expanded = NULL;
// end of PNG chunk, read and skip CRC
stbi__get32be(s);
return 1;
}
default:
// if critical, fail
if (first) return stbi__err("first not IHDR", "Corrupt PNG");
if ((c.type & (1 << 29)) == 0) {
#ifndef STBI_NO_FAILURE_STRINGS
// not threadsafe
static char invalid_chunk[] = "XXXX PNG chunk not known";
invalid_chunk[0] = STBI__BYTECAST(c.type >> 24);
invalid_chunk[1] = STBI__BYTECAST(c.type >> 16);
invalid_chunk[2] = STBI__BYTECAST(c.type >> 8);
invalid_chunk[3] = STBI__BYTECAST(c.type >> 0);
#endif
return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type");
}
stbi__skip(s, c.length);
break;
}
// end of PNG chunk, read and skip CRC
stbi__get32be(s);
}
}
static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri)
{
void *result=NULL;
if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error");
if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) {
if (p->depth <= 8)
ri->bits_per_channel = 8;
else if (p->depth == 16)
ri->bits_per_channel = 16;
else
return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth");
result = p->out;
p->out = NULL;
if (req_comp && req_comp != p->s->img_out_n) {
if (ri->bits_per_channel == 8)
result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y);
else
result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y);
p->s->img_out_n = req_comp;
if (result == NULL) return result;
}
*x = p->s->img_x;
*y = p->s->img_y;
if (n) *n = p->s->img_n;
}
STBI_FREE(p->out); p->out = NULL;
STBI_FREE(p->expanded); p->expanded = NULL;
STBI_FREE(p->idata); p->idata = NULL;
return result;
}
static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
stbi__png p;
p.s = s;
return stbi__do_png(&p, x,y,comp,req_comp, ri);
}
static int stbi__png_test(stbi__context *s)
{
int r;
r = stbi__check_png_header(s);
stbi__rewind(s);
return r;
}
static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp)
{
if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) {
stbi__rewind( p->s );
return 0;
}
if (x) *x = p->s->img_x;
if (y) *y = p->s->img_y;
if (comp) *comp = p->s->img_n;
return 1;
}
static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp)
{
stbi__png p;
p.s = s;
return stbi__png_info_raw(&p, x, y, comp);
}
static int stbi__png_is16(stbi__context *s)
{
stbi__png p;
p.s = s;
if (!stbi__png_info_raw(&p, NULL, NULL, NULL))
return 0;
if (p.depth != 16) {
stbi__rewind(p.s);
return 0;
}
return 1;
}
#endif
// Microsoft/Windows BMP image
#ifndef STBI_NO_BMP
static int stbi__bmp_test_raw(stbi__context *s)
{
int r;
int sz;
if (stbi__get8(s) != 'B') return 0;
if (stbi__get8(s) != 'M') return 0;
stbi__get32le(s); // discard filesize
stbi__get16le(s); // discard reserved
stbi__get16le(s); // discard reserved
stbi__get32le(s); // discard data offset
sz = stbi__get32le(s);
r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124);
return r;
}
static int stbi__bmp_test(stbi__context *s)
{
int r = stbi__bmp_test_raw(s);
stbi__rewind(s);
return r;
}
// returns 0..31 for the highest set bit
static int stbi__high_bit(unsigned int z)
{
int n=0;
if (z == 0) return -1;
if (z >= 0x10000) { n += 16; z >>= 16; }
if (z >= 0x00100) { n += 8; z >>= 8; }
if (z >= 0x00010) { n += 4; z >>= 4; }
if (z >= 0x00004) { n += 2; z >>= 2; }
if (z >= 0x00002) { n += 1;/* >>= 1;*/ }
return n;
}
static int stbi__bitcount(unsigned int a)
{
a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2
a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4
a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits
a = (a + (a >> 8)); // max 16 per 8 bits
a = (a + (a >> 16)); // max 32 per 8 bits
return a & 0xff;
}
// extract an arbitrarily-aligned N-bit value (N=bits)
// from v, and then make it 8-bits long and fractionally
// extend it to full full range.
static int stbi__shiftsigned(unsigned int v, int shift, int bits)
{
static unsigned int mul_table[9] = {
0,
0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/,
0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/,
};
static unsigned int shift_table[9] = {
0, 0,0,1,0,2,4,6,0,
};
if (shift < 0)
v <<= -shift;
else
v >>= shift;
STBI_ASSERT(v < 256);
v >>= (8-bits);
STBI_ASSERT(bits >= 0 && bits <= 8);
return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits];
}
typedef struct
{
int bpp, offset, hsz;
unsigned int mr,mg,mb,ma, all_a;
int extra_read;
} stbi__bmp_data;
static int stbi__bmp_set_mask_defaults(stbi__bmp_data *info, int compress)
{
// BI_BITFIELDS specifies masks explicitly, don't override
if (compress == 3)
return 1;
if (compress == 0) {
if (info->bpp == 16) {
info->mr = 31u << 10;
info->mg = 31u << 5;
info->mb = 31u << 0;
} else if (info->bpp == 32) {
info->mr = 0xffu << 16;
info->mg = 0xffu << 8;
info->mb = 0xffu << 0;
info->ma = 0xffu << 24;
info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0
} else {
// otherwise, use defaults, which is all-0
info->mr = info->mg = info->mb = info->ma = 0;
}
return 1;
}
return 0; // error
}
static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info)
{
int hsz;
if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP");
stbi__get32le(s); // discard filesize
stbi__get16le(s); // discard reserved
stbi__get16le(s); // discard reserved
info->offset = stbi__get32le(s);
info->hsz = hsz = stbi__get32le(s);
info->mr = info->mg = info->mb = info->ma = 0;
info->extra_read = 14;
if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP");
if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown");
if (hsz == 12) {
s->img_x = stbi__get16le(s);
s->img_y = stbi__get16le(s);
} else {
s->img_x = stbi__get32le(s);
s->img_y = stbi__get32le(s);
}
if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP");
info->bpp = stbi__get16le(s);
if (hsz != 12) {
int compress = stbi__get32le(s);
if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE");
if (compress >= 4) return stbi__errpuc("BMP JPEG/PNG", "BMP type not supported: unsupported compression"); // this includes PNG/JPEG modes
if (compress == 3 && info->bpp != 16 && info->bpp != 32) return stbi__errpuc("bad BMP", "bad BMP"); // bitfields requires 16 or 32 bits/pixel
stbi__get32le(s); // discard sizeof
stbi__get32le(s); // discard hres
stbi__get32le(s); // discard vres
stbi__get32le(s); // discard colorsused
stbi__get32le(s); // discard max important
if (hsz == 40 || hsz == 56) {
if (hsz == 56) {
stbi__get32le(s);
stbi__get32le(s);
stbi__get32le(s);
stbi__get32le(s);
}
if (info->bpp == 16 || info->bpp == 32) {
if (compress == 0) {
stbi__bmp_set_mask_defaults(info, compress);
} else if (compress == 3) {
info->mr = stbi__get32le(s);
info->mg = stbi__get32le(s);
info->mb = stbi__get32le(s);
info->extra_read += 12;
// not documented, but generated by photoshop and handled by mspaint
if (info->mr == info->mg && info->mg == info->mb) {
// ?!?!?
return stbi__errpuc("bad BMP", "bad BMP");
}
} else
return stbi__errpuc("bad BMP", "bad BMP");
}
} else {
// V4/V5 header
int i;
if (hsz != 108 && hsz != 124)
return stbi__errpuc("bad BMP", "bad BMP");
info->mr = stbi__get32le(s);
info->mg = stbi__get32le(s);
info->mb = stbi__get32le(s);
info->ma = stbi__get32le(s);
if (compress != 3) // override mr/mg/mb unless in BI_BITFIELDS mode, as per docs
stbi__bmp_set_mask_defaults(info, compress);
stbi__get32le(s); // discard color space
for (i=0; i < 12; ++i)
stbi__get32le(s); // discard color space parameters
if (hsz == 124) {
stbi__get32le(s); // discard rendering intent
stbi__get32le(s); // discard offset of profile data
stbi__get32le(s); // discard size of profile data
stbi__get32le(s); // discard reserved
}
}
}
return (void *) 1;
}
static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
stbi_uc *out;
unsigned int mr=0,mg=0,mb=0,ma=0, all_a;
stbi_uc pal[256][4];
int psize=0,i,j,width;
int flip_vertically, pad, target;
stbi__bmp_data info;
STBI_NOTUSED(ri);
info.all_a = 255;
if (stbi__bmp_parse_header(s, &info) == NULL)
return NULL; // error code already set
flip_vertically = ((int) s->img_y) > 0;
s->img_y = abs((int) s->img_y);
if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
mr = info.mr;
mg = info.mg;
mb = info.mb;
ma = info.ma;
all_a = info.all_a;
if (info.hsz == 12) {
if (info.bpp < 24)
psize = (info.offset - info.extra_read - 24) / 3;
} else {
if (info.bpp < 16)
psize = (info.offset - info.extra_read - info.hsz) >> 2;
}
if (psize == 0) {
if (info.offset != s->callback_already_read + (s->img_buffer - s->img_buffer_original)) {
return stbi__errpuc("bad offset", "Corrupt BMP");
}
}
if (info.bpp == 24 && ma == 0xff000000)
s->img_n = 3;
else
s->img_n = ma ? 4 : 3;
if (req_comp && req_comp >= 3) // we can directly decode 3 or 4
target = req_comp;
else
target = s->img_n; // if they want monochrome, we'll post-convert
// sanity-check size
if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0))
return stbi__errpuc("too large", "Corrupt BMP");
out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0);
if (!out) return stbi__errpuc("outofmem", "Out of memory");
if (info.bpp < 16) {
int z=0;
if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); }
for (i=0; i < psize; ++i) {
pal[i][2] = stbi__get8(s);
pal[i][1] = stbi__get8(s);
pal[i][0] = stbi__get8(s);
if (info.hsz != 12) stbi__get8(s);
pal[i][3] = 255;
}
stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4));
if (info.bpp == 1) width = (s->img_x + 7) >> 3;
else if (info.bpp == 4) width = (s->img_x + 1) >> 1;
else if (info.bpp == 8) width = s->img_x;
else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); }
pad = (-width)&3;
if (info.bpp == 1) {
for (j=0; j < (int) s->img_y; ++j) {
int bit_offset = 7, v = stbi__get8(s);
for (i=0; i < (int) s->img_x; ++i) {
int color = (v>>bit_offset)&0x1;
out[z++] = pal[color][0];
out[z++] = pal[color][1];
out[z++] = pal[color][2];
if (target == 4) out[z++] = 255;
if (i+1 == (int) s->img_x) break;
if((--bit_offset) < 0) {
bit_offset = 7;
v = stbi__get8(s);
}
}
stbi__skip(s, pad);
}
} else {
for (j=0; j < (int) s->img_y; ++j) {
for (i=0; i < (int) s->img_x; i += 2) {
int v=stbi__get8(s),v2=0;
if (info.bpp == 4) {
v2 = v & 15;
v >>= 4;
}
out[z++] = pal[v][0];
out[z++] = pal[v][1];
out[z++] = pal[v][2];
if (target == 4) out[z++] = 255;
if (i+1 == (int) s->img_x) break;
v = (info.bpp == 8) ? stbi__get8(s) : v2;
out[z++] = pal[v][0];
out[z++] = pal[v][1];
out[z++] = pal[v][2];
if (target == 4) out[z++] = 255;
}
stbi__skip(s, pad);
}
}
} else {
int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0;
int z = 0;
int easy=0;
stbi__skip(s, info.offset - info.extra_read - info.hsz);
if (info.bpp == 24) width = 3 * s->img_x;
else if (info.bpp == 16) width = 2*s->img_x;
else /* bpp = 32 and pad = 0 */ width=0;
pad = (-width) & 3;
if (info.bpp == 24) {
easy = 1;
} else if (info.bpp == 32) {
if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000)
easy = 2;
}
if (!easy) {
if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); }
// right shift amt to put high bit in position #7
rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr);
gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg);
bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb);
ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma);
if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); }
}
for (j=0; j < (int) s->img_y; ++j) {
if (easy) {
for (i=0; i < (int) s->img_x; ++i) {
unsigned char a;
out[z+2] = stbi__get8(s);
out[z+1] = stbi__get8(s);
out[z+0] = stbi__get8(s);
z += 3;
a = (easy == 2 ? stbi__get8(s) : 255);
all_a |= a;
if (target == 4) out[z++] = a;
}
} else {
int bpp = info.bpp;
for (i=0; i < (int) s->img_x; ++i) {
stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s));
unsigned int a;
out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount));
out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount));
out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount));
a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255);
all_a |= a;
if (target == 4) out[z++] = STBI__BYTECAST(a);
}
}
stbi__skip(s, pad);
}
}
// if alpha channel is all 0s, replace with all 255s
if (target == 4 && all_a == 0)
for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4)
out[i] = 255;
if (flip_vertically) {
stbi_uc t;
for (j=0; j < (int) s->img_y>>1; ++j) {
stbi_uc *p1 = out + j *s->img_x*target;
stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target;
for (i=0; i < (int) s->img_x*target; ++i) {
t = p1[i]; p1[i] = p2[i]; p2[i] = t;
}
}
}
if (req_comp && req_comp != target) {
out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y);
if (out == NULL) return out; // stbi__convert_format frees input on failure
}
*x = s->img_x;
*y = s->img_y;
if (comp) *comp = s->img_n;
return out;
}
#endif
// Targa Truevision - TGA
// by Jonathan Dummer
#ifndef STBI_NO_TGA
// returns STBI_rgb or whatever, 0 on error
static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16)
{
// only RGB or RGBA (incl. 16bit) or grey allowed
if (is_rgb16) *is_rgb16 = 0;
switch(bits_per_pixel) {
case 8: return STBI_grey;
case 16: if(is_grey) return STBI_grey_alpha;
// fallthrough
case 15: if(is_rgb16) *is_rgb16 = 1;
return STBI_rgb;
case 24: // fallthrough
case 32: return bits_per_pixel/8;
default: return 0;
}
}
static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp)
{
int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp;
int sz, tga_colormap_type;
stbi__get8(s); // discard Offset
tga_colormap_type = stbi__get8(s); // colormap type
if( tga_colormap_type > 1 ) {
stbi__rewind(s);
return 0; // only RGB or indexed allowed
}
tga_image_type = stbi__get8(s); // image type
if ( tga_colormap_type == 1 ) { // colormapped (paletted) image
if (tga_image_type != 1 && tga_image_type != 9) {
stbi__rewind(s);
return 0;
}
stbi__skip(s,4); // skip index of first colormap entry and number of entries
sz = stbi__get8(s); // check bits per palette color entry
if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) {
stbi__rewind(s);
return 0;
}
stbi__skip(s,4); // skip image x and y origin
tga_colormap_bpp = sz;
} else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE
if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) {
stbi__rewind(s);
return 0; // only RGB or grey allowed, +/- RLE
}
stbi__skip(s,9); // skip colormap specification and image x/y origin
tga_colormap_bpp = 0;
}
tga_w = stbi__get16le(s);
if( tga_w < 1 ) {
stbi__rewind(s);
return 0; // test width
}
tga_h = stbi__get16le(s);
if( tga_h < 1 ) {
stbi__rewind(s);
return 0; // test height
}
tga_bits_per_pixel = stbi__get8(s); // bits per pixel
stbi__get8(s); // ignore alpha bits
if (tga_colormap_bpp != 0) {
if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) {
// when using a colormap, tga_bits_per_pixel is the size of the indexes
// I don't think anything but 8 or 16bit indexes makes sense
stbi__rewind(s);
return 0;
}
tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL);
} else {
tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL);
}
if(!tga_comp) {
stbi__rewind(s);
return 0;
}
if (x) *x = tga_w;
if (y) *y = tga_h;
if (comp) *comp = tga_comp;
return 1; // seems to have passed everything
}
static int stbi__tga_test(stbi__context *s)
{
int res = 0;
int sz, tga_color_type;
stbi__get8(s); // discard Offset
tga_color_type = stbi__get8(s); // color type
if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed
sz = stbi__get8(s); // image type
if ( tga_color_type == 1 ) { // colormapped (paletted) image
if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9
stbi__skip(s,4); // skip index of first colormap entry and number of entries
sz = stbi__get8(s); // check bits per palette color entry
if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd;
stbi__skip(s,4); // skip image x and y origin
} else { // "normal" image w/o colormap
if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE
stbi__skip(s,9); // skip colormap specification and image x/y origin
}
if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width
if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height
sz = stbi__get8(s); // bits per pixel
if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index
if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd;
res = 1; // if we got this far, everything's good and we can return 1 instead of 0
errorEnd:
stbi__rewind(s);
return res;
}
// read 16bit value and convert to 24bit RGB
static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out)
{
stbi__uint16 px = (stbi__uint16)stbi__get16le(s);
stbi__uint16 fiveBitMask = 31;
// we have 3 channels with 5bits each
int r = (px >> 10) & fiveBitMask;
int g = (px >> 5) & fiveBitMask;
int b = px & fiveBitMask;
// Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later
out[0] = (stbi_uc)((r * 255)/31);
out[1] = (stbi_uc)((g * 255)/31);
out[2] = (stbi_uc)((b * 255)/31);
// some people claim that the most significant bit might be used for alpha
// (possibly if an alpha-bit is set in the "image descriptor byte")
// but that only made 16bit test images completely translucent..
// so let's treat all 15 and 16bit TGAs as RGB with no alpha.
}
static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
// read in the TGA header stuff
int tga_offset = stbi__get8(s);
int tga_indexed = stbi__get8(s);
int tga_image_type = stbi__get8(s);
int tga_is_RLE = 0;
int tga_palette_start = stbi__get16le(s);
int tga_palette_len = stbi__get16le(s);
int tga_palette_bits = stbi__get8(s);
int tga_x_origin = stbi__get16le(s);
int tga_y_origin = stbi__get16le(s);
int tga_width = stbi__get16le(s);
int tga_height = stbi__get16le(s);
int tga_bits_per_pixel = stbi__get8(s);
int tga_comp, tga_rgb16=0;
int tga_inverted = stbi__get8(s);
// int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?)
// image data
unsigned char *tga_data;
unsigned char *tga_palette = NULL;
int i, j;
unsigned char raw_data[4] = {0};
int RLE_count = 0;
int RLE_repeating = 0;
int read_next_pixel = 1;
STBI_NOTUSED(ri);
STBI_NOTUSED(tga_x_origin); // @TODO
STBI_NOTUSED(tga_y_origin); // @TODO
if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
// do a tiny bit of precessing
if ( tga_image_type >= 8 )
{
tga_image_type -= 8;
tga_is_RLE = 1;
}
tga_inverted = 1 - ((tga_inverted >> 5) & 1);
// If I'm paletted, then I'll use the number of bits from the palette
if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16);
else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16);
if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency
return stbi__errpuc("bad format", "Can't find out TGA pixelformat");
// tga info
*x = tga_width;
*y = tga_height;
if (comp) *comp = tga_comp;
if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0))
return stbi__errpuc("too large", "Corrupt TGA");
tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0);
if (!tga_data) return stbi__errpuc("outofmem", "Out of memory");
// skip to the data's starting position (offset usually = 0)
stbi__skip(s, tga_offset );
if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) {
for (i=0; i < tga_height; ++i) {
int row = tga_inverted ? tga_height -i - 1 : i;
stbi_uc *tga_row = tga_data + row*tga_width*tga_comp;
stbi__getn(s, tga_row, tga_width * tga_comp);
}
} else {
// do I need to load a palette?
if ( tga_indexed)
{
if (tga_palette_len == 0) { /* you have to have at least one entry! */
STBI_FREE(tga_data);
return stbi__errpuc("bad palette", "Corrupt TGA");
}
// any data to skip? (offset usually = 0)
stbi__skip(s, tga_palette_start );
// load the palette
tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0);
if (!tga_palette) {
STBI_FREE(tga_data);
return stbi__errpuc("outofmem", "Out of memory");
}
if (tga_rgb16) {
stbi_uc *pal_entry = tga_palette;
STBI_ASSERT(tga_comp == STBI_rgb);
for (i=0; i < tga_palette_len; ++i) {
stbi__tga_read_rgb16(s, pal_entry);
pal_entry += tga_comp;
}
} else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) {
STBI_FREE(tga_data);
STBI_FREE(tga_palette);
return stbi__errpuc("bad palette", "Corrupt TGA");
}
}
// load the data
for (i=0; i < tga_width * tga_height; ++i)
{
// if I'm in RLE mode, do I need to get a RLE stbi__pngchunk?
if ( tga_is_RLE )
{
if ( RLE_count == 0 )
{
// yep, get the next byte as a RLE command
int RLE_cmd = stbi__get8(s);
RLE_count = 1 + (RLE_cmd & 127);
RLE_repeating = RLE_cmd >> 7;
read_next_pixel = 1;
} else if ( !RLE_repeating )
{
read_next_pixel = 1;
}
} else
{
read_next_pixel = 1;
}
// OK, if I need to read a pixel, do it now
if ( read_next_pixel )
{
// load however much data we did have
if ( tga_indexed )
{
// read in index, then perform the lookup
int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s);
if ( pal_idx >= tga_palette_len ) {
// invalid index
pal_idx = 0;
}
pal_idx *= tga_comp;
for (j = 0; j < tga_comp; ++j) {
raw_data[j] = tga_palette[pal_idx+j];
}
} else if(tga_rgb16) {
STBI_ASSERT(tga_comp == STBI_rgb);
stbi__tga_read_rgb16(s, raw_data);
} else {
// read in the data raw
for (j = 0; j < tga_comp; ++j) {
raw_data[j] = stbi__get8(s);
}
}
// clear the reading flag for the next pixel
read_next_pixel = 0;
} // end of reading a pixel
// copy data
for (j = 0; j < tga_comp; ++j)
tga_data[i*tga_comp+j] = raw_data[j];
// in case we're in RLE mode, keep counting down
--RLE_count;
}
// do I need to invert the image?
if ( tga_inverted )
{
for (j = 0; j*2 < tga_height; ++j)
{
int index1 = j * tga_width * tga_comp;
int index2 = (tga_height - 1 - j) * tga_width * tga_comp;
for (i = tga_width * tga_comp; i > 0; --i)
{
unsigned char temp = tga_data[index1];
tga_data[index1] = tga_data[index2];
tga_data[index2] = temp;
++index1;
++index2;
}
}
}
// clear my palette, if I had one
if ( tga_palette != NULL )
{
STBI_FREE( tga_palette );
}
}
// swap RGB - if the source data was RGB16, it already is in the right order
if (tga_comp >= 3 && !tga_rgb16)
{
unsigned char* tga_pixel = tga_data;
for (i=0; i < tga_width * tga_height; ++i)
{
unsigned char temp = tga_pixel[0];
tga_pixel[0] = tga_pixel[2];
tga_pixel[2] = temp;
tga_pixel += tga_comp;
}
}
// convert to target component count
if (req_comp && req_comp != tga_comp)
tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height);
// the things I do to get rid of an error message, and yet keep
// Microsoft's C compilers happy... [8^(
tga_palette_start = tga_palette_len = tga_palette_bits =
tga_x_origin = tga_y_origin = 0;
STBI_NOTUSED(tga_palette_start);
// OK, done
return tga_data;
}
#endif
// *************************************************************************************************
// Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB
#ifndef STBI_NO_PSD
static int stbi__psd_test(stbi__context *s)
{
int r = (stbi__get32be(s) == 0x38425053);
stbi__rewind(s);
return r;
}
static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount)
{
int count, nleft, len;
count = 0;
while ((nleft = pixelCount - count) > 0) {
len = stbi__get8(s);
if (len == 128) {
// No-op.
} else if (len < 128) {
// Copy next len+1 bytes literally.
len++;
if (len > nleft) return 0; // corrupt data
count += len;
while (len) {
*p = stbi__get8(s);
p += 4;
len--;
}
} else if (len > 128) {
stbi_uc val;
// Next -len+1 bytes in the dest are replicated from next source byte.
// (Interpret len as a negative 8-bit int.)
len = 257 - len;
if (len > nleft) return 0; // corrupt data
val = stbi__get8(s);
count += len;
while (len) {
*p = val;
p += 4;
len--;
}
}
}
return 1;
}
static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
{
int pixelCount;
int channelCount, compression;
int channel, i;
int bitdepth;
int w,h;
stbi_uc *out;
STBI_NOTUSED(ri);
// Check identifier
if (stbi__get32be(s) != 0x38425053) // "8BPS"
return stbi__errpuc("not PSD", "Corrupt PSD image");
// Check file type version.
if (stbi__get16be(s) != 1)
return stbi__errpuc("wrong version", "Unsupported version of PSD image");
// Skip 6 reserved bytes.
stbi__skip(s, 6 );
// Read the number of channels (R, G, B, A, etc).
channelCount = stbi__get16be(s);
if (channelCount < 0 || channelCount > 16)
return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image");
// Read the rows and columns of the image.
h = stbi__get32be(s);
w = stbi__get32be(s);
if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
// Make sure the depth is 8 bits.
bitdepth = stbi__get16be(s);
if (bitdepth != 8 && bitdepth != 16)
return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit");
// Make sure the color mode is RGB.
// Valid options are:
// 0: Bitmap
// 1: Grayscale
// 2: Indexed color
// 3: RGB color
// 4: CMYK color
// 7: Multichannel
// 8: Duotone
// 9: Lab color
if (stbi__get16be(s) != 3)
return stbi__errpuc("wrong color format", "PSD is not in RGB color format");
// Skip the Mode Data. (It's the palette for indexed color; other info for other modes.)
stbi__skip(s,stbi__get32be(s) );
// Skip the image resources. (resolution, pen tool paths, etc)
stbi__skip(s, stbi__get32be(s) );
// Skip the reserved data.
stbi__skip(s, stbi__get32be(s) );
// Find out if the data is compressed.
// Known values:
// 0: no compression
// 1: RLE compressed
compression = stbi__get16be(s);
if (compression > 1)
return stbi__errpuc("bad compression", "PSD has an unknown compression format");
// Check size
if (!stbi__mad3sizes_valid(4, w, h, 0))
return stbi__errpuc("too large", "Corrupt PSD");
// Create the destination image.
if (!compression && bitdepth == 16 && bpc == 16) {
out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0);
ri->bits_per_channel = 16;
} else
out = (stbi_uc *) stbi__malloc(4 * w*h);
if (!out) return stbi__errpuc("outofmem", "Out of memory");
pixelCount = w*h;
// Initialize the data to zero.
//memset( out, 0, pixelCount * 4 );
// Finally, the image data.
if (compression) {
// RLE as used by .PSD and .TIFF
// Loop until you get the number of unpacked bytes you are expecting:
// Read the next source byte into n.
// If n is between 0 and 127 inclusive, copy the next n+1 bytes literally.
// Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times.
// Else if n is 128, noop.
// Endloop
// The RLE-compressed data is preceded by a 2-byte data count for each row in the data,
// which we're going to just skip.
stbi__skip(s, h * channelCount * 2 );
// Read the RLE data by channel.
for (channel = 0; channel < 4; channel++) {
stbi_uc *p;
p = out+channel;
if (channel >= channelCount) {
// Fill this channel with default data.
for (i = 0; i < pixelCount; i++, p += 4)
*p = (channel == 3 ? 255 : 0);
} else {
// Read the RLE data.
if (!stbi__psd_decode_rle(s, p, pixelCount)) {
STBI_FREE(out);
return stbi__errpuc("corrupt", "bad RLE data");
}
}
}
} else {
// We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...)
// where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image.
// Read the data by channel.
for (channel = 0; channel < 4; channel++) {
if (channel >= channelCount) {
// Fill this channel with default data.
if (bitdepth == 16 && bpc == 16) {
stbi__uint16 *q = ((stbi__uint16 *) out) + channel;
stbi__uint16 val = channel == 3 ? 65535 : 0;
for (i = 0; i < pixelCount; i++, q += 4)
*q = val;
} else {
stbi_uc *p = out+channel;
stbi_uc val = channel == 3 ? 255 : 0;
for (i = 0; i < pixelCount; i++, p += 4)
*p = val;
}
} else {
if (ri->bits_per_channel == 16) { // output bpc
stbi__uint16 *q = ((stbi__uint16 *) out) + channel;
for (i = 0; i < pixelCount; i++, q += 4)
*q = (stbi__uint16) stbi__get16be(s);
} else {
stbi_uc *p = out+channel;
if (bitdepth == 16) { // input bpc
for (i = 0; i < pixelCount; i++, p += 4)
*p = (stbi_uc) (stbi__get16be(s) >> 8);
} else {
for (i = 0; i < pixelCount; i++, p += 4)
*p = stbi__get8(s);
}
}
}
}
}
// remove weird white matte from PSD
if (channelCount >= 4) {
if (ri->bits_per_channel == 16) {
for (i=0; i < w*h; ++i) {
stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i;
if (pixel[3] != 0 && pixel[3] != 65535) {
float a = pixel[3] / 65535.0f;
float ra = 1.0f / a;
float inv_a = 65535.0f * (1 - ra);
pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a);
pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a);
pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a);
}
}
} else {
for (i=0; i < w*h; ++i) {
unsigned char *pixel = out + 4*i;
if (pixel[3] != 0 && pixel[3] != 255) {
float a = pixel[3] / 255.0f;
float ra = 1.0f / a;
float inv_a = 255.0f * (1 - ra);
pixel[0] = (unsigned char) (pixel[0]*ra + inv_a);
pixel[1] = (unsigned char) (pixel[1]*ra + inv_a);
pixel[2] = (unsigned char) (pixel[2]*ra + inv_a);
}
}
}
}
// convert to desired output format
if (req_comp && req_comp != 4) {
if (ri->bits_per_channel == 16)
out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h);
else
out = stbi__convert_format(out, 4, req_comp, w, h);
if (out == NULL) return out; // stbi__convert_format frees input on failure
}
if (comp) *comp = 4;
*y = h;
*x = w;
return out;
}
#endif
// *************************************************************************************************
// Softimage PIC loader
// by Tom Seddon
//
// See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format
// See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/
#ifndef STBI_NO_PIC
static int stbi__pic_is4(stbi__context *s,const char *str)
{
int i;
for (i=0; i<4; ++i)
if (stbi__get8(s) != (stbi_uc)str[i])
return 0;
return 1;
}
static int stbi__pic_test_core(stbi__context *s)
{
int i;
if (!stbi__pic_is4(s,"\x53\x80\xF6\x34"))
return 0;
for(i=0;i<84;++i)
stbi__get8(s);
if (!stbi__pic_is4(s,"PICT"))
return 0;
return 1;
}
typedef struct
{
stbi_uc size,type,channel;
} stbi__pic_packet;
static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest)
{
int mask=0x80, i;
for (i=0; i<4; ++i, mask>>=1) {
if (channel & mask) {
if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short");
dest[i]=stbi__get8(s);
}
}
return dest;
}
static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src)
{
int mask=0x80,i;
for (i=0;i<4; ++i, mask>>=1)
if (channel&mask)
dest[i]=src[i];
}
static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result)
{
int act_comp=0,num_packets=0,y,chained;
stbi__pic_packet packets[10];
// this will (should...) cater for even some bizarre stuff like having data
// for the same channel in multiple packets.
do {
stbi__pic_packet *packet;
if (num_packets==sizeof(packets)/sizeof(packets[0]))
return stbi__errpuc("bad format","too many packets");
packet = &packets[num_packets++];
chained = stbi__get8(s);
packet->size = stbi__get8(s);
packet->type = stbi__get8(s);
packet->channel = stbi__get8(s);
act_comp |= packet->channel;
if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)");
if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp");
} while (chained);
*comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel?
for(y=0; y<height; ++y) {
int packet_idx;
for(packet_idx=0; packet_idx < num_packets; ++packet_idx) {
stbi__pic_packet *packet = &packets[packet_idx];
stbi_uc *dest = result+y*width*4;
switch (packet->type) {
default:
return stbi__errpuc("bad format","packet has bad compression type");
case 0: {//uncompressed
int x;
for(x=0;x<width;++x, dest+=4)
if (!stbi__readval(s,packet->channel,dest))
return 0;
break;
}
case 1://Pure RLE
{
int left=width, i;
while (left>0) {
stbi_uc count,value[4];
count=stbi__get8(s);
if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)");
if (count > left)
count = (stbi_uc) left;
if (!stbi__readval(s,packet->channel,value)) return 0;
for(i=0; i<count; ++i,dest+=4)
stbi__copyval(packet->channel,dest,value);
left -= count;
}
}
break;
case 2: {//Mixed RLE
int left=width;
while (left>0) {
int count = stbi__get8(s), i;
if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)");
if (count >= 128) { // Repeated
stbi_uc value[4];
if (count==128)
count = stbi__get16be(s);
else
count -= 127;
if (count > left)
return stbi__errpuc("bad file","scanline overrun");
if (!stbi__readval(s,packet->channel,value))
return 0;
for(i=0;i<count;++i, dest += 4)
stbi__copyval(packet->channel,dest,value);
} else { // Raw
++count;
if (count>left) return stbi__errpuc("bad file","scanline overrun");
for(i=0;i<count;++i, dest+=4)
if (!stbi__readval(s,packet->channel,dest))
return 0;
}
left-=count;
}
break;
}
}
}
}
return result;
}
static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri)
{
stbi_uc *result;
int i, x,y, internal_comp;
STBI_NOTUSED(ri);
if (!comp) comp = &internal_comp;
for (i=0; i<92; ++i)
stbi__get8(s);
x = stbi__get16be(s);
y = stbi__get16be(s);
if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)");
if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode");
stbi__get32be(s); //skip `ratio'
stbi__get16be(s); //skip `fields'
stbi__get16be(s); //skip `pad'
// intermediate buffer is RGBA
result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0);
if (!result) return stbi__errpuc("outofmem", "Out of memory");
memset(result, 0xff, x*y*4);
if (!stbi__pic_load_core(s,x,y,comp, result)) {
STBI_FREE(result);
result=0;
}
*px = x;
*py = y;
if (req_comp == 0) req_comp = *comp;
result=stbi__convert_format(result,4,req_comp,x,y);
return result;
}
static int stbi__pic_test(stbi__context *s)
{
int r = stbi__pic_test_core(s);
stbi__rewind(s);
return r;
}
#endif
// *************************************************************************************************
// GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb
#ifndef STBI_NO_GIF
typedef struct
{
stbi__int16 prefix;
stbi_uc first;
stbi_uc suffix;
} stbi__gif_lzw;
typedef struct
{
int w,h;
stbi_uc *out; // output buffer (always 4 components)
stbi_uc *background; // The current "background" as far as a gif is concerned
stbi_uc *history;
int flags, bgindex, ratio, transparent, eflags;
stbi_uc pal[256][4];
stbi_uc lpal[256][4];
stbi__gif_lzw codes[8192];
stbi_uc *color_table;
int parse, step;
int lflags;
int start_x, start_y;
int max_x, max_y;
int cur_x, cur_y;
int line_size;
int delay;
} stbi__gif;
static int stbi__gif_test_raw(stbi__context *s)
{
int sz;
if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0;
sz = stbi__get8(s);
if (sz != '9' && sz != '7') return 0;
if (stbi__get8(s) != 'a') return 0;
return 1;
}
static int stbi__gif_test(stbi__context *s)
{
int r = stbi__gif_test_raw(s);
stbi__rewind(s);
return r;
}
static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp)
{
int i;
for (i=0; i < num_entries; ++i) {
pal[i][2] = stbi__get8(s);
pal[i][1] = stbi__get8(s);
pal[i][0] = stbi__get8(s);
pal[i][3] = transp == i ? 0 : 255;
}
}
static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info)
{
stbi_uc version;
if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8')
return stbi__err("not GIF", "Corrupt GIF");
version = stbi__get8(s);
if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF");
if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF");
stbi__g_failure_reason = "";
g->w = stbi__get16le(s);
g->h = stbi__get16le(s);
g->flags = stbi__get8(s);
g->bgindex = stbi__get8(s);
g->ratio = stbi__get8(s);
g->transparent = -1;
if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments
if (is_info) return 1;
if (g->flags & 0x80)
stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1);
return 1;
}
static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp)
{
stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif));
if (!g) return stbi__err("outofmem", "Out of memory");
if (!stbi__gif_header(s, g, comp, 1)) {
STBI_FREE(g);
stbi__rewind( s );
return 0;
}
if (x) *x = g->w;
if (y) *y = g->h;
STBI_FREE(g);
return 1;
}
static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code)
{
stbi_uc *p, *c;
int idx;
// recurse to decode the prefixes, since the linked-list is backwards,
// and working backwards through an interleaved image would be nasty
if (g->codes[code].prefix >= 0)
stbi__out_gif_code(g, g->codes[code].prefix);
if (g->cur_y >= g->max_y) return;
idx = g->cur_x + g->cur_y;
p = &g->out[idx];
g->history[idx / 4] = 1;
c = &g->color_table[g->codes[code].suffix * 4];
if (c[3] > 128) { // don't render transparent pixels;
p[0] = c[2];
p[1] = c[1];
p[2] = c[0];
p[3] = c[3];
}
g->cur_x += 4;
if (g->cur_x >= g->max_x) {
g->cur_x = g->start_x;
g->cur_y += g->step;
while (g->cur_y >= g->max_y && g->parse > 0) {
g->step = (1 << g->parse) * g->line_size;
g->cur_y = g->start_y + (g->step >> 1);
--g->parse;
}
}
}
static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g)
{
stbi_uc lzw_cs;
stbi__int32 len, init_code;
stbi__uint32 first;
stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear;
stbi__gif_lzw *p;
lzw_cs = stbi__get8(s);
if (lzw_cs > 12) return NULL;
clear = 1 << lzw_cs;
first = 1;
codesize = lzw_cs + 1;
codemask = (1 << codesize) - 1;
bits = 0;
valid_bits = 0;
for (init_code = 0; init_code < clear; init_code++) {
g->codes[init_code].prefix = -1;
g->codes[init_code].first = (stbi_uc) init_code;
g->codes[init_code].suffix = (stbi_uc) init_code;
}
// support no starting clear code
avail = clear+2;
oldcode = -1;
len = 0;
for(;;) {
if (valid_bits < codesize) {
if (len == 0) {
len = stbi__get8(s); // start new block
if (len == 0)
return g->out;
}
--len;
bits |= (stbi__int32) stbi__get8(s) << valid_bits;
valid_bits += 8;
} else {
stbi__int32 code = bits & codemask;
bits >>= codesize;
valid_bits -= codesize;
// @OPTIMIZE: is there some way we can accelerate the non-clear path?
if (code == clear) { // clear code
codesize = lzw_cs + 1;
codemask = (1 << codesize) - 1;
avail = clear + 2;
oldcode = -1;
first = 0;
} else if (code == clear + 1) { // end of stream code
stbi__skip(s, len);
while ((len = stbi__get8(s)) > 0)
stbi__skip(s,len);
return g->out;
} else if (code <= avail) {
if (first) {
return stbi__errpuc("no clear code", "Corrupt GIF");
}
if (oldcode >= 0) {
p = &g->codes[avail++];
if (avail > 8192) {
return stbi__errpuc("too many codes", "Corrupt GIF");
}
p->prefix = (stbi__int16) oldcode;
p->first = g->codes[oldcode].first;
p->suffix = (code == avail) ? p->first : g->codes[code].first;
} else if (code == avail)
return stbi__errpuc("illegal code in raster", "Corrupt GIF");
stbi__out_gif_code(g, (stbi__uint16) code);
if ((avail & codemask) == 0 && avail <= 0x0FFF) {
codesize++;
codemask = (1 << codesize) - 1;
}
oldcode = code;
} else {
return stbi__errpuc("illegal code in raster", "Corrupt GIF");
}
}
}
}
// this function is designed to support animated gifs, although stb_image doesn't support it
// two back is the image from two frames ago, used for a very specific disposal format
static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back)
{
int dispose;
int first_frame;
int pi;
int pcount;
STBI_NOTUSED(req_comp);
// on first frame, any non-written pixels get the background colour (non-transparent)
first_frame = 0;
if (g->out == 0) {
if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header
if (!stbi__mad3sizes_valid(4, g->w, g->h, 0))
return stbi__errpuc("too large", "GIF image is too large");
pcount = g->w * g->h;
g->out = (stbi_uc *) stbi__malloc(4 * pcount);
g->background = (stbi_uc *) stbi__malloc(4 * pcount);
g->history = (stbi_uc *) stbi__malloc(pcount);
if (!g->out || !g->background || !g->history)
return stbi__errpuc("outofmem", "Out of memory");
// image is treated as "transparent" at the start - ie, nothing overwrites the current background;
// background colour is only used for pixels that are not rendered first frame, after that "background"
// color refers to the color that was there the previous frame.
memset(g->out, 0x00, 4 * pcount);
memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent)
memset(g->history, 0x00, pcount); // pixels that were affected previous frame
first_frame = 1;
} else {
// second frame - how do we dispose of the previous one?
dispose = (g->eflags & 0x1C) >> 2;
pcount = g->w * g->h;
if ((dispose == 3) && (two_back == 0)) {
dispose = 2; // if I don't have an image to revert back to, default to the old background
}
if (dispose == 3) { // use previous graphic
for (pi = 0; pi < pcount; ++pi) {
if (g->history[pi]) {
memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 );
}
}
} else if (dispose == 2) {
// restore what was changed last frame to background before that frame;
for (pi = 0; pi < pcount; ++pi) {
if (g->history[pi]) {
memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 );
}
}
} else {
// This is a non-disposal case eithe way, so just
// leave the pixels as is, and they will become the new background
// 1: do not dispose
// 0: not specified.
}
// background is what out is after the undoing of the previou frame;
memcpy( g->background, g->out, 4 * g->w * g->h );
}
// clear my history;
memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame
for (;;) {
int tag = stbi__get8(s);
switch (tag) {
case 0x2C: /* Image Descriptor */
{
stbi__int32 x, y, w, h;
stbi_uc *o;
x = stbi__get16le(s);
y = stbi__get16le(s);
w = stbi__get16le(s);
h = stbi__get16le(s);
if (((x + w) > (g->w)) || ((y + h) > (g->h)))
return stbi__errpuc("bad Image Descriptor", "Corrupt GIF");
g->line_size = g->w * 4;
g->start_x = x * 4;
g->start_y = y * g->line_size;
g->max_x = g->start_x + w * 4;
g->max_y = g->start_y + h * g->line_size;
g->cur_x = g->start_x;
g->cur_y = g->start_y;
// if the width of the specified rectangle is 0, that means
// we may not see *any* pixels or the image is malformed;
// to make sure this is caught, move the current y down to
// max_y (which is what out_gif_code checks).
if (w == 0)
g->cur_y = g->max_y;
g->lflags = stbi__get8(s);
if (g->lflags & 0x40) {
g->step = 8 * g->line_size; // first interlaced spacing
g->parse = 3;
} else {
g->step = g->line_size;
g->parse = 0;
}
if (g->lflags & 0x80) {
stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1);
g->color_table = (stbi_uc *) g->lpal;
} else if (g->flags & 0x80) {
g->color_table = (stbi_uc *) g->pal;
} else
return stbi__errpuc("missing color table", "Corrupt GIF");
o = stbi__process_gif_raster(s, g);
if (!o) return NULL;
// if this was the first frame,
pcount = g->w * g->h;
if (first_frame && (g->bgindex > 0)) {
// if first frame, any pixel not drawn to gets the background color
for (pi = 0; pi < pcount; ++pi) {
if (g->history[pi] == 0) {
g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be;
memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 );
}
}
}
return o;
}
case 0x21: // Comment Extension.
{
int len;
int ext = stbi__get8(s);
if (ext == 0xF9) { // Graphic Control Extension.
len = stbi__get8(s);
if (len == 4) {
g->eflags = stbi__get8(s);
g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths.
// unset old transparent
if (g->transparent >= 0) {
g->pal[g->transparent][3] = 255;
}
if (g->eflags & 0x01) {
g->transparent = stbi__get8(s);
if (g->transparent >= 0) {
g->pal[g->transparent][3] = 0;
}
} else {
// don't need transparent
stbi__skip(s, 1);
g->transparent = -1;
}
} else {
stbi__skip(s, len);
break;
}
}
while ((len = stbi__get8(s)) != 0) {
stbi__skip(s, len);
}
break;
}
case 0x3B: // gif stream termination code
return (stbi_uc *) s; // using '1' causes warning on some compilers
default:
return stbi__errpuc("unknown code", "Corrupt GIF");
}
}
}
static void *stbi__load_gif_main_outofmem(stbi__gif *g, stbi_uc *out, int **delays)
{
STBI_FREE(g->out);
STBI_FREE(g->history);
STBI_FREE(g->background);
if (out) STBI_FREE(out);
if (delays && *delays) STBI_FREE(*delays);
return stbi__errpuc("outofmem", "Out of memory");
}
static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
{
if (stbi__gif_test(s)) {
int layers = 0;
stbi_uc *u = 0;
stbi_uc *out = 0;
stbi_uc *two_back = 0;
stbi__gif g;
int stride;
int out_size = 0;
int delays_size = 0;
STBI_NOTUSED(out_size);
STBI_NOTUSED(delays_size);
memset(&g, 0, sizeof(g));
if (delays) {
*delays = 0;
}
do {
u = stbi__gif_load_next(s, &g, comp, req_comp, two_back);
if (u == (stbi_uc *) s) u = 0; // end of animated gif marker
if (u) {
*x = g.w;
*y = g.h;
++layers;
stride = g.w * g.h * 4;
if (out) {
void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride );
if (!tmp)
return stbi__load_gif_main_outofmem(&g, out, delays);
else {
out = (stbi_uc*) tmp;
out_size = layers * stride;
}
if (delays) {
int *new_delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers );
if (!new_delays)
return stbi__load_gif_main_outofmem(&g, out, delays);
*delays = new_delays;
delays_size = layers * sizeof(int);
}
} else {
out = (stbi_uc*)stbi__malloc( layers * stride );
if (!out)
return stbi__load_gif_main_outofmem(&g, out, delays);
out_size = layers * stride;
if (delays) {
*delays = (int*) stbi__malloc( layers * sizeof(int) );
if (!*delays)
return stbi__load_gif_main_outofmem(&g, out, delays);
delays_size = layers * sizeof(int);
}
}
memcpy( out + ((layers - 1) * stride), u, stride );
if (layers >= 2) {
two_back = out - 2 * stride;
}
if (delays) {
(*delays)[layers - 1U] = g.delay;
}
}
} while (u != 0);
// free temp buffer;
STBI_FREE(g.out);
STBI_FREE(g.history);
STBI_FREE(g.background);
// do the final conversion after loading everything;
if (req_comp && req_comp != 4)
out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h);
*z = layers;
return out;
} else {
return stbi__errpuc("not GIF", "Image was not as a gif type.");
}
}
static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
stbi_uc *u = 0;
stbi__gif g;
memset(&g, 0, sizeof(g));
STBI_NOTUSED(ri);
u = stbi__gif_load_next(s, &g, comp, req_comp, 0);
if (u == (stbi_uc *) s) u = 0; // end of animated gif marker
if (u) {
*x = g.w;
*y = g.h;
// moved conversion to after successful load so that the same
// can be done for multiple frames.
if (req_comp && req_comp != 4)
u = stbi__convert_format(u, 4, req_comp, g.w, g.h);
} else if (g.out) {
// if there was an error and we allocated an image buffer, free it!
STBI_FREE(g.out);
}
// free buffers needed for multiple frame loading;
STBI_FREE(g.history);
STBI_FREE(g.background);
return u;
}
static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp)
{
return stbi__gif_info_raw(s,x,y,comp);
}
#endif
// *************************************************************************************************
// Radiance RGBE HDR loader
// originally by Nicolas Schulz
#ifndef STBI_NO_HDR
static int stbi__hdr_test_core(stbi__context *s, const char *signature)
{
int i;
for (i=0; signature[i]; ++i)
if (stbi__get8(s) != signature[i])
return 0;
stbi__rewind(s);
return 1;
}
static int stbi__hdr_test(stbi__context* s)
{
int r = stbi__hdr_test_core(s, "#?RADIANCE\n");
stbi__rewind(s);
if(!r) {
r = stbi__hdr_test_core(s, "#?RGBE\n");
stbi__rewind(s);
}
return r;
}
#define STBI__HDR_BUFLEN 1024
static char *stbi__hdr_gettoken(stbi__context *z, char *buffer)
{
int len=0;
char c = '\0';
c = (char) stbi__get8(z);
while (!stbi__at_eof(z) && c != '\n') {
buffer[len++] = c;
if (len == STBI__HDR_BUFLEN-1) {
// flush to end of line
while (!stbi__at_eof(z) && stbi__get8(z) != '\n')
;
break;
}
c = (char) stbi__get8(z);
}
buffer[len] = 0;
return buffer;
}
static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp)
{
if ( input[3] != 0 ) {
float f1;
// Exponent
f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8));
if (req_comp <= 2)
output[0] = (input[0] + input[1] + input[2]) * f1 / 3;
else {
output[0] = input[0] * f1;
output[1] = input[1] * f1;
output[2] = input[2] * f1;
}
if (req_comp == 2) output[1] = 1;
if (req_comp == 4) output[3] = 1;
} else {
switch (req_comp) {
case 4: output[3] = 1; /* fallthrough */
case 3: output[0] = output[1] = output[2] = 0;
break;
case 2: output[1] = 1; /* fallthrough */
case 1: output[0] = 0;
break;
}
}
}
static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
char buffer[STBI__HDR_BUFLEN];
char *token;
int valid = 0;
int width, height;
stbi_uc *scanline;
float *hdr_data;
int len;
unsigned char count, value;
int i, j, k, c1,c2, z;
const char *headerToken;
STBI_NOTUSED(ri);
// Check identifier
headerToken = stbi__hdr_gettoken(s,buffer);
if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0)
return stbi__errpf("not HDR", "Corrupt HDR image");
// Parse header
for(;;) {
token = stbi__hdr_gettoken(s,buffer);
if (token[0] == 0) break;
if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1;
}
if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format");
// Parse width and height
// can't use sscanf() if we're not using stdio!
token = stbi__hdr_gettoken(s,buffer);
if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format");
token += 3;
height = (int) strtol(token, &token, 10);
while (*token == ' ') ++token;
if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format");
token += 3;
width = (int) strtol(token, NULL, 10);
if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)");
if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)");
*x = width;
*y = height;
if (comp) *comp = 3;
if (req_comp == 0) req_comp = 3;
if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0))
return stbi__errpf("too large", "HDR image is too large");
// Read data
hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0);
if (!hdr_data)
return stbi__errpf("outofmem", "Out of memory");
// Load image data
// image data is stored as some number of sca
if ( width < 8 || width >= 32768) {
// Read flat data
for (j=0; j < height; ++j) {
for (i=0; i < width; ++i) {
stbi_uc rgbe[4];
main_decode_loop:
stbi__getn(s, rgbe, 4);
stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp);
}
}
} else {
// Read RLE-encoded data
scanline = NULL;
for (j = 0; j < height; ++j) {
c1 = stbi__get8(s);
c2 = stbi__get8(s);
len = stbi__get8(s);
if (c1 != 2 || c2 != 2 || (len & 0x80)) {
// not run-length encoded, so we have to actually use THIS data as a decoded
// pixel (note this can't be a valid pixel--one of RGB must be >= 128)
stbi_uc rgbe[4];
rgbe[0] = (stbi_uc) c1;
rgbe[1] = (stbi_uc) c2;
rgbe[2] = (stbi_uc) len;
rgbe[3] = (stbi_uc) stbi__get8(s);
stbi__hdr_convert(hdr_data, rgbe, req_comp);
i = 1;
j = 0;
STBI_FREE(scanline);
goto main_decode_loop; // yes, this makes no sense
}
len <<= 8;
len |= stbi__get8(s);
if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); }
if (scanline == NULL) {
scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0);
if (!scanline) {
STBI_FREE(hdr_data);
return stbi__errpf("outofmem", "Out of memory");
}
}
for (k = 0; k < 4; ++k) {
int nleft;
i = 0;
while ((nleft = width - i) > 0) {
count = stbi__get8(s);
if (count > 128) {
// Run
value = stbi__get8(s);
count -= 128;
if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); }
for (z = 0; z < count; ++z)
scanline[i++ * 4 + k] = value;
} else {
// Dump
if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); }
for (z = 0; z < count; ++z)
scanline[i++ * 4 + k] = stbi__get8(s);
}
}
}
for (i=0; i < width; ++i)
stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp);
}
if (scanline)
STBI_FREE(scanline);
}
return hdr_data;
}
static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp)
{
char buffer[STBI__HDR_BUFLEN];
char *token;
int valid = 0;
int dummy;
if (!x) x = &dummy;
if (!y) y = &dummy;
if (!comp) comp = &dummy;
if (stbi__hdr_test(s) == 0) {
stbi__rewind( s );
return 0;
}
for(;;) {
token = stbi__hdr_gettoken(s,buffer);
if (token[0] == 0) break;
if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1;
}
if (!valid) {
stbi__rewind( s );
return 0;
}
token = stbi__hdr_gettoken(s,buffer);
if (strncmp(token, "-Y ", 3)) {
stbi__rewind( s );
return 0;
}
token += 3;
*y = (int) strtol(token, &token, 10);
while (*token == ' ') ++token;
if (strncmp(token, "+X ", 3)) {
stbi__rewind( s );
return 0;
}
token += 3;
*x = (int) strtol(token, NULL, 10);
*comp = 3;
return 1;
}
#endif // STBI_NO_HDR
#ifndef STBI_NO_BMP
static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp)
{
void *p;
stbi__bmp_data info;
info.all_a = 255;
p = stbi__bmp_parse_header(s, &info);
if (p == NULL) {
stbi__rewind( s );
return 0;
}
if (x) *x = s->img_x;
if (y) *y = s->img_y;
if (comp) {
if (info.bpp == 24 && info.ma == 0xff000000)
*comp = 3;
else
*comp = info.ma ? 4 : 3;
}
return 1;
}
#endif
#ifndef STBI_NO_PSD
static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp)
{
int channelCount, dummy, depth;
if (!x) x = &dummy;
if (!y) y = &dummy;
if (!comp) comp = &dummy;
if (stbi__get32be(s) != 0x38425053) {
stbi__rewind( s );
return 0;
}
if (stbi__get16be(s) != 1) {
stbi__rewind( s );
return 0;
}
stbi__skip(s, 6);
channelCount = stbi__get16be(s);
if (channelCount < 0 || channelCount > 16) {
stbi__rewind( s );
return 0;
}
*y = stbi__get32be(s);
*x = stbi__get32be(s);
depth = stbi__get16be(s);
if (depth != 8 && depth != 16) {
stbi__rewind( s );
return 0;
}
if (stbi__get16be(s) != 3) {
stbi__rewind( s );
return 0;
}
*comp = 4;
return 1;
}
static int stbi__psd_is16(stbi__context *s)
{
int channelCount, depth;
if (stbi__get32be(s) != 0x38425053) {
stbi__rewind( s );
return 0;
}
if (stbi__get16be(s) != 1) {
stbi__rewind( s );
return 0;
}
stbi__skip(s, 6);
channelCount = stbi__get16be(s);
if (channelCount < 0 || channelCount > 16) {
stbi__rewind( s );
return 0;
}
STBI_NOTUSED(stbi__get32be(s));
STBI_NOTUSED(stbi__get32be(s));
depth = stbi__get16be(s);
if (depth != 16) {
stbi__rewind( s );
return 0;
}
return 1;
}
#endif
#ifndef STBI_NO_PIC
static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp)
{
int act_comp=0,num_packets=0,chained,dummy;
stbi__pic_packet packets[10];
if (!x) x = &dummy;
if (!y) y = &dummy;
if (!comp) comp = &dummy;
if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) {
stbi__rewind(s);
return 0;
}
stbi__skip(s, 88);
*x = stbi__get16be(s);
*y = stbi__get16be(s);
if (stbi__at_eof(s)) {
stbi__rewind( s);
return 0;
}
if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) {
stbi__rewind( s );
return 0;
}
stbi__skip(s, 8);
do {
stbi__pic_packet *packet;
if (num_packets==sizeof(packets)/sizeof(packets[0]))
return 0;
packet = &packets[num_packets++];
chained = stbi__get8(s);
packet->size = stbi__get8(s);
packet->type = stbi__get8(s);
packet->channel = stbi__get8(s);
act_comp |= packet->channel;
if (stbi__at_eof(s)) {
stbi__rewind( s );
return 0;
}
if (packet->size != 8) {
stbi__rewind( s );
return 0;
}
} while (chained);
*comp = (act_comp & 0x10 ? 4 : 3);
return 1;
}
#endif
// *************************************************************************************************
// Portable Gray Map and Portable Pixel Map loader
// by Ken Miller
//
// PGM: http://netpbm.sourceforge.net/doc/pgm.html
// PPM: http://netpbm.sourceforge.net/doc/ppm.html
//
// Known limitations:
// Does not support comments in the header section
// Does not support ASCII image data (formats P2 and P3)
#ifndef STBI_NO_PNM
static int stbi__pnm_test(stbi__context *s)
{
char p, t;
p = (char) stbi__get8(s);
t = (char) stbi__get8(s);
if (p != 'P' || (t != '5' && t != '6')) {
stbi__rewind( s );
return 0;
}
return 1;
}
static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
{
stbi_uc *out;
STBI_NOTUSED(ri);
ri->bits_per_channel = stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n);
if (ri->bits_per_channel == 0)
return 0;
if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
*x = s->img_x;
*y = s->img_y;
if (comp) *comp = s->img_n;
if (!stbi__mad4sizes_valid(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0))
return stbi__errpuc("too large", "PNM too large");
out = (stbi_uc *) stbi__malloc_mad4(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0);
if (!out) return stbi__errpuc("outofmem", "Out of memory");
stbi__getn(s, out, s->img_n * s->img_x * s->img_y * (ri->bits_per_channel / 8));
if (req_comp && req_comp != s->img_n) {
out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y);
if (out == NULL) return out; // stbi__convert_format frees input on failure
}
return out;
}
static int stbi__pnm_isspace(char c)
{
return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r';
}
static void stbi__pnm_skip_whitespace(stbi__context *s, char *c)
{
for (;;) {
while (!stbi__at_eof(s) && stbi__pnm_isspace(*c))
*c = (char) stbi__get8(s);
if (stbi__at_eof(s) || *c != '#')
break;
while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' )
*c = (char) stbi__get8(s);
}
}
static int stbi__pnm_isdigit(char c)
{
return c >= '0' && c <= '9';
}
static int stbi__pnm_getinteger(stbi__context *s, char *c)
{
int value = 0;
while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) {
value = value*10 + (*c - '0');
*c = (char) stbi__get8(s);
}
return value;
}
static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp)
{
int maxv, dummy;
char c, p, t;
if (!x) x = &dummy;
if (!y) y = &dummy;
if (!comp) comp = &dummy;
stbi__rewind(s);
// Get identifier
p = (char) stbi__get8(s);
t = (char) stbi__get8(s);
if (p != 'P' || (t != '5' && t != '6')) {
stbi__rewind(s);
return 0;
}
*comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm
c = (char) stbi__get8(s);
stbi__pnm_skip_whitespace(s, &c);
*x = stbi__pnm_getinteger(s, &c); // read width
stbi__pnm_skip_whitespace(s, &c);
*y = stbi__pnm_getinteger(s, &c); // read height
stbi__pnm_skip_whitespace(s, &c);
maxv = stbi__pnm_getinteger(s, &c); // read max value
if (maxv > 65535)
return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images");
else if (maxv > 255)
return 16;
else
return 8;
}
static int stbi__pnm_is16(stbi__context *s)
{
if (stbi__pnm_info(s, NULL, NULL, NULL) == 16)
return 1;
return 0;
}
#endif
static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp)
{
#ifndef STBI_NO_JPEG
if (stbi__jpeg_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_PNG
if (stbi__png_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_GIF
if (stbi__gif_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_BMP
if (stbi__bmp_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_PSD
if (stbi__psd_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_PIC
if (stbi__pic_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_PNM
if (stbi__pnm_info(s, x, y, comp)) return 1;
#endif
#ifndef STBI_NO_HDR
if (stbi__hdr_info(s, x, y, comp)) return 1;
#endif
// test tga last because it's a crappy test!
#ifndef STBI_NO_TGA
if (stbi__tga_info(s, x, y, comp))
return 1;
#endif
return stbi__err("unknown image type", "Image not of any known type, or corrupt");
}
static int stbi__is_16_main(stbi__context *s)
{
#ifndef STBI_NO_PNG
if (stbi__png_is16(s)) return 1;
#endif
#ifndef STBI_NO_PSD
if (stbi__psd_is16(s)) return 1;
#endif
#ifndef STBI_NO_PNM
if (stbi__pnm_is16(s)) return 1;
#endif
return 0;
}
#ifndef STBI_NO_STDIO
STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp)
{
FILE *f = stbi__fopen(filename, "rb");
int result;
if (!f) return stbi__err("can't fopen", "Unable to open file");
result = stbi_info_from_file(f, x, y, comp);
fclose(f);
return result;
}
STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp)
{
int r;
stbi__context s;
long pos = ftell(f);
stbi__start_file(&s, f);
r = stbi__info_main(&s,x,y,comp);
fseek(f,pos,SEEK_SET);
return r;
}
STBIDEF int stbi_is_16_bit(char const *filename)
{
FILE *f = stbi__fopen(filename, "rb");
int result;
if (!f) return stbi__err("can't fopen", "Unable to open file");
result = stbi_is_16_bit_from_file(f);
fclose(f);
return result;
}
STBIDEF int stbi_is_16_bit_from_file(FILE *f)
{
int r;
stbi__context s;
long pos = ftell(f);
stbi__start_file(&s, f);
r = stbi__is_16_main(&s);
fseek(f,pos,SEEK_SET);
return r;
}
#endif // !STBI_NO_STDIO
STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__info_main(&s,x,y,comp);
}
STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp)
{
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user);
return stbi__info_main(&s,x,y,comp);
}
STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__is_16_main(&s);
}
STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user)
{
stbi__context s;
stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user);
return stbi__is_16_main(&s);
}
#endif // STB_IMAGE_IMPLEMENTATION
/*
revision history:
2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs
2.19 (2018-02-11) fix warning
2.18 (2018-01-30) fix warnings
2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug
1-bit BMP
*_is_16_bit api
avoid warnings
2.16 (2017-07-23) all functions have 16-bit variants;
STBI_NO_STDIO works again;
compilation fixes;
fix rounding in unpremultiply;
optimize vertical flip;
disable raw_len validation;
documentation fixes
2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode;
warning fixes; disable run-time SSE detection on gcc;
uniform handling of optional "return" values;
thread-safe initialization of zlib tables
2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs
2.13 (2016-11-29) add 16-bit API, only supported for PNG right now
2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes
2.11 (2016-04-02) allocate large structures on the stack
remove white matting for transparent PSD
fix reported channel count for PNG & BMP
re-enable SSE2 in non-gcc 64-bit
support RGB-formatted JPEG
read 16-bit PNGs (only as 8-bit)
2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED
2.09 (2016-01-16) allow comments in PNM files
16-bit-per-pixel TGA (not bit-per-component)
info() for TGA could break due to .hdr handling
info() for BMP to shares code instead of sloppy parse
can use STBI_REALLOC_SIZED if allocator doesn't support realloc
code cleanup
2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA
2.07 (2015-09-13) fix compiler warnings
partial animated GIF support
limited 16-bpc PSD support
#ifdef unused functions
bug with < 92 byte PIC,PNM,HDR,TGA
2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value
2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning
2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit
2.03 (2015-04-12) extra corruption checking (mmozeiko)
stbi_set_flip_vertically_on_load (nguillemot)
fix NEON support; fix mingw support
2.02 (2015-01-19) fix incorrect assert, fix warning
2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2
2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG
2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg)
progressive JPEG (stb)
PGM/PPM support (Ken Miller)
STBI_MALLOC,STBI_REALLOC,STBI_FREE
GIF bugfix -- seemingly never worked
STBI_NO_*, STBI_ONLY_*
1.48 (2014-12-14) fix incorrectly-named assert()
1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb)
optimize PNG (ryg)
fix bug in interlaced PNG with user-specified channel count (stb)
1.46 (2014-08-26)
fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG
1.45 (2014-08-16)
fix MSVC-ARM internal compiler error by wrapping malloc
1.44 (2014-08-07)
various warning fixes from Ronny Chevalier
1.43 (2014-07-15)
fix MSVC-only compiler problem in code changed in 1.42
1.42 (2014-07-09)
don't define _CRT_SECURE_NO_WARNINGS (affects user code)
fixes to stbi__cleanup_jpeg path
added STBI_ASSERT to avoid requiring assert.h
1.41 (2014-06-25)
fix search&replace from 1.36 that messed up comments/error messages
1.40 (2014-06-22)
fix gcc struct-initialization warning
1.39 (2014-06-15)
fix to TGA optimization when req_comp != number of components in TGA;
fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite)
add support for BMP version 5 (more ignored fields)
1.38 (2014-06-06)
suppress MSVC warnings on integer casts truncating values
fix accidental rename of 'skip' field of I/O
1.37 (2014-06-04)
remove duplicate typedef
1.36 (2014-06-03)
convert to header file single-file library
if de-iphone isn't set, load iphone images color-swapped instead of returning NULL
1.35 (2014-05-27)
various warnings
fix broken STBI_SIMD path
fix bug where stbi_load_from_file no longer left file pointer in correct place
fix broken non-easy path for 32-bit BMP (possibly never used)
TGA optimization by Arseny Kapoulkine
1.34 (unknown)
use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case
1.33 (2011-07-14)
make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements
1.32 (2011-07-13)
support for "info" function for all supported filetypes (SpartanJ)
1.31 (2011-06-20)
a few more leak fixes, bug in PNG handling (SpartanJ)
1.30 (2011-06-11)
added ability to load files via callbacks to accomidate custom input streams (Ben Wenger)
removed deprecated format-specific test/load functions
removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway
error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha)
fix inefficiency in decoding 32-bit BMP (David Woo)
1.29 (2010-08-16)
various warning fixes from Aurelien Pocheville
1.28 (2010-08-01)
fix bug in GIF palette transparency (SpartanJ)
1.27 (2010-08-01)
cast-to-stbi_uc to fix warnings
1.26 (2010-07-24)
fix bug in file buffering for PNG reported by SpartanJ
1.25 (2010-07-17)
refix trans_data warning (Won Chun)
1.24 (2010-07-12)
perf improvements reading from files on platforms with lock-heavy fgetc()
minor perf improvements for jpeg
deprecated type-specific functions so we'll get feedback if they're needed
attempt to fix trans_data warning (Won Chun)
1.23 fixed bug in iPhone support
1.22 (2010-07-10)
removed image *writing* support
stbi_info support from Jetro Lauha
GIF support from Jean-Marc Lienher
iPhone PNG-extensions from James Brown
warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva)
1.21 fix use of 'stbi_uc' in header (reported by jon blow)
1.20 added support for Softimage PIC, by Tom Seddon
1.19 bug in interlaced PNG corruption check (found by ryg)
1.18 (2008-08-02)
fix a threading bug (local mutable static)
1.17 support interlaced PNG
1.16 major bugfix - stbi__convert_format converted one too many pixels
1.15 initialize some fields for thread safety
1.14 fix threadsafe conversion bug
header-file-only version (#define STBI_HEADER_FILE_ONLY before including)
1.13 threadsafe
1.12 const qualifiers in the API
1.11 Support installable IDCT, colorspace conversion routines
1.10 Fixes for 64-bit (don't use "unsigned long")
optimized upsampling by Fabian "ryg" Giesen
1.09 Fix format-conversion for PSD code (bad global variables!)
1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz
1.07 attempt to fix C++ warning/errors again
1.06 attempt to fix C++ warning/errors again
1.05 fix TGA loading to return correct *comp and use good luminance calc
1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free
1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR
1.02 support for (subset of) HDR files, float interface for preferred access to them
1.01 fix bug: possible bug in handling right-side up bmps... not sure
fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all
1.00 interface to zlib that skips zlib header
0.99 correct handling of alpha in palette
0.98 TGA loader by lonesock; dynamically add loaders (untested)
0.97 jpeg errors on too large a file; also catch another malloc failure
0.96 fix detection of invalid v value - particleman@mollyrocket forum
0.95 during header scan, seek to markers in case of padding
0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same
0.93 handle jpegtran output; verbose errors
0.92 read 4,8,16,24,32-bit BMP files of several formats
0.91 output 24-bit Windows 3.0 BMP files
0.90 fix a few more warnings; bump version number to approach 1.0
0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd
0.60 fix compiling as c++
0.59 fix warnings: merge Dave Moore's -Wall fixes
0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian
0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available
0.56 fix bug: zlib uncompressed mode len vs. nlen
0.55 fix bug: restart_interval not initialized to 0
0.54 allow NULL for 'int *comp'
0.53 fix bug in png 3->4; speedup png decoding
0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments
0.51 obey req_comp requests, 1-component jpegs return as 1-component,
on 'test' only check type, not whether we support this variant
0.50 (2006-11-19)
first released version
*/
/*
------------------------------------------------------------------------------
This software is available under 2 licenses -- choose whichever you prefer.
------------------------------------------------------------------------------
ALTERNATIVE A - MIT License
Copyright (c) 2017 Sean Barrett
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
ALTERNATIVE B - Public Domain (www.unlicense.org)
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
software, either in source code form or as a compiled binary, for any purpose,
commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this
software dedicate any and all copyright interest in the software to the public
domain. We make this dedication for the benefit of the public at large and to
the detriment of our heirs and successors. We intend this dedication to be an
overt act of relinquishment in perpetuity of all present and future rights to
this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
*/
|
whupdup/frame
|
real/third_party/tracy/profiler/src/stb_image.h
|
C++
|
gpl-3.0
| 278,901
|
#ifdef _WIN32
# include <windows.h>
# include <stdlib.h>
# include <intrin.h>
# include <stdint.h>
namespace tracy
{
bool DiscoveryAVX();
bool DiscoveryAVX2();
}
int main( int argc, char** argv );
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmd, int nCmd )
{
{
uint32_t regs[4];
__cpuidex( (int*)regs, 0, 0 );
const uint32_t maxLeaf = regs[0];
bool cpuHasAVX = false;
bool cpuHasAVX2 = false;
if( maxLeaf >= 1 )
{
__cpuidex( (int*)regs, 1, 0 );
cpuHasAVX = ( regs[2] & 0x10000000 ) != 0;
}
if( maxLeaf >= 7 )
{
__cpuidex( (int*)regs, 7, 0 );
cpuHasAVX2 = ( regs[1] & 0x00000020 ) != 0;
}
if( tracy::DiscoveryAVX2() && !cpuHasAVX2 )
{
MessageBoxA( nullptr, "This program is compiled with AVX2 instruction set, but your CPU doesn't support it. You must recompile with lower instruction set.\n\nIn Visual Studio go to Project properties -> C/C++ -> Code Generation -> Enable Enhanced Instruction Set and select appropriate value for your CPU.", "Wrong CPU architecture", MB_ICONERROR );
return 0;
}
if( tracy::DiscoveryAVX() && !cpuHasAVX )
{
MessageBoxA( nullptr, "This program is compiled with AVX instruction set, but your CPU doesn't support it. You must recompile with lower instruction set.\n\nIn Visual Studio go to Project properties -> C/C++ -> Code Generation -> Enable Enhanced Instruction Set and select appropriate value for your CPU.", "Wrong CPU architecture", MB_ICONERROR );
return 0;
}
}
return main( __argc, __argv );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/winmain.cpp
|
C++
|
gpl-3.0
| 1,728
|
#ifdef _WIN32
namespace tracy
{
bool DiscoveryAVX()
{
#ifdef __AVX__
return true;
#else
return false;
#endif
}
bool DiscoveryAVX2()
{
#ifdef __AVX2__
return true;
#else
return false;
#endif
}
}
#endif
|
whupdup/frame
|
real/third_party/tracy/profiler/src/winmainArchDiscovery.cpp
|
C++
|
gpl-3.0
| 258
|
// Copyright (c) 2017 Juliette Foucaut and Doug Binks
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py for language C89
// from https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/metadata/icons.yml
// for use with https://github.com/FortAwesome/Font-Awesome/blob/master/webfonts/fa-solid-900.ttf, https://github.com/FortAwesome/Font-Awesome/blob/master/webfonts/fa-regular-400.ttf,
#pragma once
#define FONT_ICON_FILE_NAME_FAR "fa-regular-400.ttf"
#define FONT_ICON_FILE_NAME_FAS "fa-solid-900.ttf"
#define ICON_MIN_FA 0xf000
#define ICON_MAX_FA 0xf897
#define ICON_FA_CLOUD_SHOWERS_HEAVY "\xEF\x9D\x80"
#define ICON_FA_CHEVRON_CIRCLE_RIGHT "\xEF\x84\xB8"
#define ICON_FA_DHARMACHAKRA "\xEF\x99\x95"
#define ICON_FA_BROADCAST_TOWER "\xEF\x94\x99"
#define ICON_FA_EXTERNAL_LINK_SQUARE_ALT "\xEF\x8D\xA0"
#define ICON_FA_SMOKING "\xEF\x92\x8D"
#define ICON_FA_PENCIL_ALT "\xEF\x8C\x83"
#define ICON_FA_CHESS_BISHOP "\xEF\x90\xBA"
#define ICON_FA_ICONS "\xEF\xA1\xAD"
#define ICON_FA_TV "\xEF\x89\xAC"
#define ICON_FA_CROP_ALT "\xEF\x95\xA5"
#define ICON_FA_LIST "\xEF\x80\xBA"
#define ICON_FA_BATTERY_QUARTER "\xEF\x89\x83"
#define ICON_FA_TH "\xEF\x80\x8A"
#define ICON_FA_RECYCLE "\xEF\x86\xB8"
#define ICON_FA_SMILE "\xEF\x84\x98"
#define ICON_FA_FAX "\xEF\x86\xAC"
#define ICON_FA_DRAFTING_COMPASS "\xEF\x95\xA8"
#define ICON_FA_USER_INJURED "\xEF\x9C\xA8"
#define ICON_FA_SCREWDRIVER "\xEF\x95\x8A"
#define ICON_FA_CROSSHAIRS "\xEF\x81\x9B"
#define ICON_FA_HAND_PEACE "\xEF\x89\x9B"
#define ICON_FA_FAN "\xEF\xA1\xA3"
#define ICON_FA_GOPURAM "\xEF\x99\xA4"
#define ICON_FA_CARET_UP "\xEF\x83\x98"
#define ICON_FA_SCHOOL "\xEF\x95\x89"
#define ICON_FA_FILE_PDF "\xEF\x87\x81"
#define ICON_FA_USERS_COG "\xEF\x94\x89"
#define ICON_FA_BALANCE_SCALE "\xEF\x89\x8E"
#define ICON_FA_UPLOAD "\xEF\x82\x93"
#define ICON_FA_LAPTOP_MEDICAL "\xEF\xA0\x92"
#define ICON_FA_VENUS "\xEF\x88\xA1"
#define ICON_FA_HEADING "\xEF\x87\x9C"
#define ICON_FA_ARROW_DOWN "\xEF\x81\xA3"
#define ICON_FA_BICYCLE "\xEF\x88\x86"
#define ICON_FA_TIRED "\xEF\x97\x88"
#define ICON_FA_COMMENT_MEDICAL "\xEF\x9F\xB5"
#define ICON_FA_BACON "\xEF\x9F\xA5"
#define ICON_FA_SYNC "\xEF\x80\xA1"
#define ICON_FA_PAPER_PLANE "\xEF\x87\x98"
#define ICON_FA_VOLLEYBALL_BALL "\xEF\x91\x9F"
#define ICON_FA_RIBBON "\xEF\x93\x96"
#define ICON_FA_SQUARE_ROOT_ALT "\xEF\x9A\x98"
#define ICON_FA_SUN "\xEF\x86\x85"
#define ICON_FA_FILE_POWERPOINT "\xEF\x87\x84"
#define ICON_FA_MICROCHIP "\xEF\x8B\x9B"
#define ICON_FA_TRASH_RESTORE_ALT "\xEF\xA0\xAA"
#define ICON_FA_GRADUATION_CAP "\xEF\x86\x9D"
#define ICON_FA_INFO_CIRCLE "\xEF\x81\x9A"
#define ICON_FA_TAGS "\xEF\x80\xAC"
#define ICON_FA_HAND_PAPER "\xEF\x89\x96"
#define ICON_FA_EQUALS "\xEF\x94\xAC"
#define ICON_FA_DIRECTIONS "\xEF\x97\xAB"
#define ICON_FA_FILE_INVOICE "\xEF\x95\xB0"
#define ICON_FA_SEARCH "\xEF\x80\x82"
#define ICON_FA_BIBLE "\xEF\x99\x87"
#define ICON_FA_DUMBBELL "\xEF\x91\x8B"
#define ICON_FA_WEIGHT_HANGING "\xEF\x97\x8D"
#define ICON_FA_CALENDAR_TIMES "\xEF\x89\xB3"
#define ICON_FA_GREATER_THAN_EQUAL "\xEF\x94\xB2"
#define ICON_FA_SLIDERS_H "\xEF\x87\x9E"
#define ICON_FA_EYE_SLASH "\xEF\x81\xB0"
#define ICON_FA_BIRTHDAY_CAKE "\xEF\x87\xBD"
#define ICON_FA_FEATHER_ALT "\xEF\x95\xAB"
#define ICON_FA_DNA "\xEF\x91\xB1"
#define ICON_FA_BASEBALL_BALL "\xEF\x90\xB3"
#define ICON_FA_HOSPITAL "\xEF\x83\xB8"
#define ICON_FA_COINS "\xEF\x94\x9E"
#define ICON_FA_TEMPERATURE_HIGH "\xEF\x9D\xA9"
#define ICON_FA_FONT_AWESOME_LOGO_FULL "\xEF\x93\xA6"
#define ICON_FA_PASSPORT "\xEF\x96\xAB"
#define ICON_FA_SHOPPING_CART "\xEF\x81\xBA"
#define ICON_FA_AWARD "\xEF\x95\x99"
#define ICON_FA_WINDOW_RESTORE "\xEF\x8B\x92"
#define ICON_FA_PHONE "\xEF\x82\x95"
#define ICON_FA_FLAG "\xEF\x80\xA4"
#define ICON_FA_FILE_INVOICE_DOLLAR "\xEF\x95\xB1"
#define ICON_FA_DICE_D6 "\xEF\x9B\x91"
#define ICON_FA_OUTDENT "\xEF\x80\xBB"
#define ICON_FA_LONG_ARROW_ALT_RIGHT "\xEF\x8C\x8B"
#define ICON_FA_PIZZA_SLICE "\xEF\xA0\x98"
#define ICON_FA_ADDRESS_CARD "\xEF\x8A\xBB"
#define ICON_FA_PARAGRAPH "\xEF\x87\x9D"
#define ICON_FA_MALE "\xEF\x86\x83"
#define ICON_FA_HISTORY "\xEF\x87\x9A"
#define ICON_FA_USER_TIE "\xEF\x94\x88"
#define ICON_FA_SEARCH_PLUS "\xEF\x80\x8E"
#define ICON_FA_LIFE_RING "\xEF\x87\x8D"
#define ICON_FA_STEP_FORWARD "\xEF\x81\x91"
#define ICON_FA_MOUSE_POINTER "\xEF\x89\x85"
#define ICON_FA_ALIGN_JUSTIFY "\xEF\x80\xB9"
#define ICON_FA_TOILET_PAPER "\xEF\x9C\x9E"
#define ICON_FA_BATTERY_THREE_QUARTERS "\xEF\x89\x81"
#define ICON_FA_OBJECT_UNGROUP "\xEF\x89\x88"
#define ICON_FA_BRIEFCASE "\xEF\x82\xB1"
#define ICON_FA_OIL_CAN "\xEF\x98\x93"
#define ICON_FA_THERMOMETER_FULL "\xEF\x8B\x87"
#define ICON_FA_SNOWBOARDING "\xEF\x9F\x8E"
#define ICON_FA_UNLINK "\xEF\x84\xA7"
#define ICON_FA_WINDOW_MAXIMIZE "\xEF\x8B\x90"
#define ICON_FA_YEN_SIGN "\xEF\x85\x97"
#define ICON_FA_SHARE_ALT_SQUARE "\xEF\x87\xA1"
#define ICON_FA_STEP_BACKWARD "\xEF\x81\x88"
#define ICON_FA_DRAGON "\xEF\x9B\x95"
#define ICON_FA_MICROPHONE_SLASH "\xEF\x84\xB1"
#define ICON_FA_USER_PLUS "\xEF\x88\xB4"
#define ICON_FA_WRENCH "\xEF\x82\xAD"
#define ICON_FA_AMBULANCE "\xEF\x83\xB9"
#define ICON_FA_ETHERNET "\xEF\x9E\x96"
#define ICON_FA_EGG "\xEF\x9F\xBB"
#define ICON_FA_WIND "\xEF\x9C\xAE"
#define ICON_FA_UNIVERSAL_ACCESS "\xEF\x8A\x9A"
#define ICON_FA_BURN "\xEF\x91\xAA"
#define ICON_FA_RADIATION "\xEF\x9E\xB9"
#define ICON_FA_DICE_ONE "\xEF\x94\xA5"
#define ICON_FA_KEYBOARD "\xEF\x84\x9C"
#define ICON_FA_CHECK_DOUBLE "\xEF\x95\xA0"
#define ICON_FA_HEADPHONES_ALT "\xEF\x96\x8F"
#define ICON_FA_BATTERY_HALF "\xEF\x89\x82"
#define ICON_FA_PROJECT_DIAGRAM "\xEF\x95\x82"
#define ICON_FA_PRAY "\xEF\x9A\x83"
#define ICON_FA_PHONE_ALT "\xEF\xA1\xB9"
#define ICON_FA_BABY_CARRIAGE "\xEF\x9D\xBD"
#define ICON_FA_TH_LIST "\xEF\x80\x8B"
#define ICON_FA_GRIN_TEARS "\xEF\x96\x88"
#define ICON_FA_SORT_AMOUNT_UP "\xEF\x85\xA1"
#define ICON_FA_COFFEE "\xEF\x83\xB4"
#define ICON_FA_TABLET_ALT "\xEF\x8F\xBA"
#define ICON_FA_GRIN_BEAM_SWEAT "\xEF\x96\x83"
#define ICON_FA_HAND_POINT_RIGHT "\xEF\x82\xA4"
#define ICON_FA_GRIN_STARS "\xEF\x96\x87"
#define ICON_FA_CHARGING_STATION "\xEF\x97\xA7"
#define ICON_FA_VOTE_YEA "\xEF\x9D\xB2"
#define ICON_FA_VOLUME_OFF "\xEF\x80\xA6"
#define ICON_FA_SAD_TEAR "\xEF\x96\xB4"
#define ICON_FA_CARET_RIGHT "\xEF\x83\x9A"
#define ICON_FA_BONG "\xEF\x95\x9C"
#define ICON_FA_BONE "\xEF\x97\x97"
#define ICON_FA_WEIGHT "\xEF\x92\x96"
#define ICON_FA_CARET_SQUARE_RIGHT "\xEF\x85\x92"
#define ICON_FA_FISH "\xEF\x95\xB8"
#define ICON_FA_SPIDER "\xEF\x9C\x97"
#define ICON_FA_QRCODE "\xEF\x80\xA9"
#define ICON_FA_SPINNER "\xEF\x84\x90"
#define ICON_FA_ELLIPSIS_H "\xEF\x85\x81"
#define ICON_FA_RUPEE_SIGN "\xEF\x85\x96"
#define ICON_FA_ASSISTIVE_LISTENING_SYSTEMS "\xEF\x8A\xA2"
#define ICON_FA_SMS "\xEF\x9F\x8D"
#define ICON_FA_POUND_SIGN "\xEF\x85\x94"
#define ICON_FA_HAND_POINT_DOWN "\xEF\x82\xA7"
#define ICON_FA_ADJUST "\xEF\x81\x82"
#define ICON_FA_PRINT "\xEF\x80\xAF"
#define ICON_FA_SURPRISE "\xEF\x97\x82"
#define ICON_FA_SORT_NUMERIC_UP "\xEF\x85\xA3"
#define ICON_FA_VIDEO_SLASH "\xEF\x93\xA2"
#define ICON_FA_SUBWAY "\xEF\x88\xB9"
#define ICON_FA_SORT_AMOUNT_DOWN "\xEF\x85\xA0"
#define ICON_FA_WINE_BOTTLE "\xEF\x9C\xAF"
#define ICON_FA_BOOK_READER "\xEF\x97\x9A"
#define ICON_FA_COOKIE "\xEF\x95\xA3"
#define ICON_FA_MONEY_BILL "\xEF\x83\x96"
#define ICON_FA_CHEVRON_DOWN "\xEF\x81\xB8"
#define ICON_FA_CAR_SIDE "\xEF\x97\xA4"
#define ICON_FA_FILTER "\xEF\x82\xB0"
#define ICON_FA_FOLDER_OPEN "\xEF\x81\xBC"
#define ICON_FA_SIGNATURE "\xEF\x96\xB7"
#define ICON_FA_HEARTBEAT "\xEF\x88\x9E"
#define ICON_FA_THUMBTACK "\xEF\x82\x8D"
#define ICON_FA_USER "\xEF\x80\x87"
#define ICON_FA_LAUGH_WINK "\xEF\x96\x9C"
#define ICON_FA_BREAD_SLICE "\xEF\x9F\xAC"
#define ICON_FA_TEXT_HEIGHT "\xEF\x80\xB4"
#define ICON_FA_VOLUME_MUTE "\xEF\x9A\xA9"
#define ICON_FA_GRIN_TONGUE "\xEF\x96\x89"
#define ICON_FA_CAMPGROUND "\xEF\x9A\xBB"
#define ICON_FA_MERCURY "\xEF\x88\xA3"
#define ICON_FA_USER_ASTRONAUT "\xEF\x93\xBB"
#define ICON_FA_HORSE "\xEF\x9B\xB0"
#define ICON_FA_SORT_DOWN "\xEF\x83\x9D"
#define ICON_FA_PERCENTAGE "\xEF\x95\x81"
#define ICON_FA_AIR_FRESHENER "\xEF\x97\x90"
#define ICON_FA_STORE "\xEF\x95\x8E"
#define ICON_FA_COMMENT_DOTS "\xEF\x92\xAD"
#define ICON_FA_SMILE_WINK "\xEF\x93\x9A"
#define ICON_FA_HOTEL "\xEF\x96\x94"
#define ICON_FA_PEPPER_HOT "\xEF\xA0\x96"
#define ICON_FA_CUBES "\xEF\x86\xB3"
#define ICON_FA_DUMPSTER_FIRE "\xEF\x9E\x94"
#define ICON_FA_CLOUD_SUN_RAIN "\xEF\x9D\x83"
#define ICON_FA_GLOBE_ASIA "\xEF\x95\xBE"
#define ICON_FA_VIAL "\xEF\x92\x92"
#define ICON_FA_STROOPWAFEL "\xEF\x95\x91"
#define ICON_FA_CALENDAR_MINUS "\xEF\x89\xB2"
#define ICON_FA_TREE "\xEF\x86\xBB"
#define ICON_FA_SHOWER "\xEF\x8B\x8C"
#define ICON_FA_DRUM_STEELPAN "\xEF\x95\xAA"
#define ICON_FA_FILE_UPLOAD "\xEF\x95\xB4"
#define ICON_FA_MEDKIT "\xEF\x83\xBA"
#define ICON_FA_MINUS "\xEF\x81\xA8"
#define ICON_FA_SHEKEL_SIGN "\xEF\x88\x8B"
#define ICON_FA_USER_NINJA "\xEF\x94\x84"
#define ICON_FA_KAABA "\xEF\x99\xAB"
#define ICON_FA_BELL_SLASH "\xEF\x87\xB6"
#define ICON_FA_SPELL_CHECK "\xEF\xA2\x91"
#define ICON_FA_MAIL_BULK "\xEF\x99\xB4"
#define ICON_FA_MOUNTAIN "\xEF\x9B\xBC"
#define ICON_FA_COUCH "\xEF\x92\xB8"
#define ICON_FA_CHESS "\xEF\x90\xB9"
#define ICON_FA_FILE_EXPORT "\xEF\x95\xAE"
#define ICON_FA_SIGN_LANGUAGE "\xEF\x8A\xA7"
#define ICON_FA_SNOWFLAKE "\xEF\x8B\x9C"
#define ICON_FA_PLAY "\xEF\x81\x8B"
#define ICON_FA_HEADSET "\xEF\x96\x90"
#define ICON_FA_CHART_BAR "\xEF\x82\x80"
#define ICON_FA_WAVE_SQUARE "\xEF\xA0\xBE"
#define ICON_FA_CHART_AREA "\xEF\x87\xBE"
#define ICON_FA_EURO_SIGN "\xEF\x85\x93"
#define ICON_FA_CHESS_KING "\xEF\x90\xBF"
#define ICON_FA_MOBILE "\xEF\x84\x8B"
#define ICON_FA_CLOCK "\xEF\x80\x97"
#define ICON_FA_BOX_OPEN "\xEF\x92\x9E"
#define ICON_FA_DOG "\xEF\x9B\x93"
#define ICON_FA_FUTBOL "\xEF\x87\xA3"
#define ICON_FA_LIRA_SIGN "\xEF\x86\x95"
#define ICON_FA_LIGHTBULB "\xEF\x83\xAB"
#define ICON_FA_BOMB "\xEF\x87\xA2"
#define ICON_FA_MITTEN "\xEF\x9E\xB5"
#define ICON_FA_TRUCK_MONSTER "\xEF\x98\xBB"
#define ICON_FA_RANDOM "\xEF\x81\xB4"
#define ICON_FA_CHESS_ROOK "\xEF\x91\x87"
#define ICON_FA_FIRE_EXTINGUISHER "\xEF\x84\xB4"
#define ICON_FA_ARROWS_ALT_V "\xEF\x8C\xB8"
#define ICON_FA_ICICLES "\xEF\x9E\xAD"
#define ICON_FA_FONT "\xEF\x80\xB1"
#define ICON_FA_CAMERA_RETRO "\xEF\x82\x83"
#define ICON_FA_BLENDER "\xEF\x94\x97"
#define ICON_FA_THUMBS_DOWN "\xEF\x85\xA5"
#define ICON_FA_ROCKET "\xEF\x84\xB5"
#define ICON_FA_COPYRIGHT "\xEF\x87\xB9"
#define ICON_FA_TRAM "\xEF\x9F\x9A"
#define ICON_FA_JEDI "\xEF\x99\xA9"
#define ICON_FA_HOCKEY_PUCK "\xEF\x91\x93"
#define ICON_FA_STOP_CIRCLE "\xEF\x8A\x8D"
#define ICON_FA_BEZIER_CURVE "\xEF\x95\x9B"
#define ICON_FA_FOLDER "\xEF\x81\xBB"
#define ICON_FA_CALENDAR_CHECK "\xEF\x89\xB4"
#define ICON_FA_YIN_YANG "\xEF\x9A\xAD"
#define ICON_FA_COLUMNS "\xEF\x83\x9B"
#define ICON_FA_GLASS_CHEERS "\xEF\x9E\x9F"
#define ICON_FA_GRIN_WINK "\xEF\x96\x8C"
#define ICON_FA_STOP "\xEF\x81\x8D"
#define ICON_FA_MONEY_CHECK_ALT "\xEF\x94\xBD"
#define ICON_FA_COMPASS "\xEF\x85\x8E"
#define ICON_FA_TOOLBOX "\xEF\x95\x92"
#define ICON_FA_LIST_OL "\xEF\x83\x8B"
#define ICON_FA_WINE_GLASS "\xEF\x93\xA3"
#define ICON_FA_HORSE_HEAD "\xEF\x9E\xAB"
#define ICON_FA_USER_ALT_SLASH "\xEF\x93\xBA"
#define ICON_FA_USER_TAG "\xEF\x94\x87"
#define ICON_FA_MICROSCOPE "\xEF\x98\x90"
#define ICON_FA_BRUSH "\xEF\x95\x9D"
#define ICON_FA_BAN "\xEF\x81\x9E"
#define ICON_FA_BARS "\xEF\x83\x89"
#define ICON_FA_CAR_CRASH "\xEF\x97\xA1"
#define ICON_FA_ARROW_ALT_CIRCLE_DOWN "\xEF\x8D\x98"
#define ICON_FA_MONEY_BILL_ALT "\xEF\x8F\x91"
#define ICON_FA_JOURNAL_WHILLS "\xEF\x99\xAA"
#define ICON_FA_CHALKBOARD_TEACHER "\xEF\x94\x9C"
#define ICON_FA_PORTRAIT "\xEF\x8F\xA0"
#define ICON_FA_BALANCE_SCALE_LEFT "\xEF\x94\x95"
#define ICON_FA_HAMMER "\xEF\x9B\xA3"
#define ICON_FA_RETWEET "\xEF\x81\xB9"
#define ICON_FA_HOURGLASS "\xEF\x89\x94"
#define ICON_FA_BORDER_NONE "\xEF\xA1\x90"
#define ICON_FA_FILE_ALT "\xEF\x85\x9C"
#define ICON_FA_SUBSCRIPT "\xEF\x84\xAC"
#define ICON_FA_DONATE "\xEF\x92\xB9"
#define ICON_FA_GLASS_MARTINI_ALT "\xEF\x95\xBB"
#define ICON_FA_CODE_BRANCH "\xEF\x84\xA6"
#define ICON_FA_MEH "\xEF\x84\x9A"
#define ICON_FA_LIST_ALT "\xEF\x80\xA2"
#define ICON_FA_USER_COG "\xEF\x93\xBE"
#define ICON_FA_PRESCRIPTION "\xEF\x96\xB1"
#define ICON_FA_TABLET "\xEF\x84\x8A"
#define ICON_FA_LAUGH_SQUINT "\xEF\x96\x9B"
#define ICON_FA_CREDIT_CARD "\xEF\x82\x9D"
#define ICON_FA_ARCHWAY "\xEF\x95\x97"
#define ICON_FA_HARD_HAT "\xEF\xA0\x87"
#define ICON_FA_TRAFFIC_LIGHT "\xEF\x98\xB7"
#define ICON_FA_COG "\xEF\x80\x93"
#define ICON_FA_HANUKIAH "\xEF\x9B\xA6"
#define ICON_FA_SHUTTLE_VAN "\xEF\x96\xB6"
#define ICON_FA_MONEY_CHECK "\xEF\x94\xBC"
#define ICON_FA_BELL "\xEF\x83\xB3"
#define ICON_FA_CALENDAR_DAY "\xEF\x9E\x83"
#define ICON_FA_TINT_SLASH "\xEF\x97\x87"
#define ICON_FA_PLANE_DEPARTURE "\xEF\x96\xB0"
#define ICON_FA_USER_CHECK "\xEF\x93\xBC"
#define ICON_FA_CHURCH "\xEF\x94\x9D"
#define ICON_FA_SEARCH_MINUS "\xEF\x80\x90"
#define ICON_FA_SHIPPING_FAST "\xEF\x92\x8B"
#define ICON_FA_TINT "\xEF\x81\x83"
#define ICON_FA_ALIGN_RIGHT "\xEF\x80\xB8"
#define ICON_FA_QUOTE_RIGHT "\xEF\x84\x8E"
#define ICON_FA_BEER "\xEF\x83\xBC"
#define ICON_FA_GRIN_ALT "\xEF\x96\x81"
#define ICON_FA_SORT_NUMERIC_DOWN "\xEF\x85\xA2"
#define ICON_FA_FIRE "\xEF\x81\xAD"
#define ICON_FA_FAST_FORWARD "\xEF\x81\x90"
#define ICON_FA_MAP_MARKED_ALT "\xEF\x96\xA0"
#define ICON_FA_CHILD "\xEF\x86\xAE"
#define ICON_FA_KISS_BEAM "\xEF\x96\x97"
#define ICON_FA_TRUCK_LOADING "\xEF\x93\x9E"
#define ICON_FA_EXPAND_ARROWS_ALT "\xEF\x8C\x9E"
#define ICON_FA_CARET_SQUARE_DOWN "\xEF\x85\x90"
#define ICON_FA_CRUTCH "\xEF\x9F\xB7"
#define ICON_FA_OBJECT_GROUP "\xEF\x89\x87"
#define ICON_FA_BIKING "\xEF\xA1\x8A"
#define ICON_FA_ANCHOR "\xEF\x84\xBD"
#define ICON_FA_HAND_POINT_LEFT "\xEF\x82\xA5"
#define ICON_FA_USER_TIMES "\xEF\x88\xB5"
#define ICON_FA_CALCULATOR "\xEF\x87\xAC"
#define ICON_FA_DIZZY "\xEF\x95\xA7"
#define ICON_FA_KISS_WINK_HEART "\xEF\x96\x98"
#define ICON_FA_FILE_MEDICAL "\xEF\x91\xB7"
#define ICON_FA_SWIMMING_POOL "\xEF\x97\x85"
#define ICON_FA_VR_CARDBOARD "\xEF\x9C\xA9"
#define ICON_FA_USER_FRIENDS "\xEF\x94\x80"
#define ICON_FA_FAST_BACKWARD "\xEF\x81\x89"
#define ICON_FA_SATELLITE "\xEF\x9E\xBF"
#define ICON_FA_MINUS_CIRCLE "\xEF\x81\x96"
#define ICON_FA_CHESS_PAWN "\xEF\x91\x83"
#define ICON_FA_DATABASE "\xEF\x87\x80"
#define ICON_FA_LANDMARK "\xEF\x99\xAF"
#define ICON_FA_SWATCHBOOK "\xEF\x97\x83"
#define ICON_FA_HOTDOG "\xEF\xA0\x8F"
#define ICON_FA_SNOWMAN "\xEF\x9F\x90"
#define ICON_FA_LAPTOP "\xEF\x84\x89"
#define ICON_FA_TORAH "\xEF\x9A\xA0"
#define ICON_FA_FROWN_OPEN "\xEF\x95\xBA"
#define ICON_FA_REDO_ALT "\xEF\x8B\xB9"
#define ICON_FA_AD "\xEF\x99\x81"
#define ICON_FA_USER_CIRCLE "\xEF\x8A\xBD"
#define ICON_FA_DIVIDE "\xEF\x94\xA9"
#define ICON_FA_HANDSHAKE "\xEF\x8A\xB5"
#define ICON_FA_CUT "\xEF\x83\x84"
#define ICON_FA_GAMEPAD "\xEF\x84\x9B"
#define ICON_FA_STREET_VIEW "\xEF\x88\x9D"
#define ICON_FA_GREATER_THAN "\xEF\x94\xB1"
#define ICON_FA_PASTAFARIANISM "\xEF\x99\xBB"
#define ICON_FA_MINUS_SQUARE "\xEF\x85\x86"
#define ICON_FA_SAVE "\xEF\x83\x87"
#define ICON_FA_COMMENT_DOLLAR "\xEF\x99\x91"
#define ICON_FA_TRASH_ALT "\xEF\x8B\xAD"
#define ICON_FA_PUZZLE_PIECE "\xEF\x84\xAE"
#define ICON_FA_SORT_ALPHA_UP_ALT "\xEF\xA2\x82"
#define ICON_FA_MENORAH "\xEF\x99\xB6"
#define ICON_FA_CLOUD_SUN "\xEF\x9B\x84"
#define ICON_FA_USER_EDIT "\xEF\x93\xBF"
#define ICON_FA_THEATER_MASKS "\xEF\x98\xB0"
#define ICON_FA_FILE_MEDICAL_ALT "\xEF\x91\xB8"
#define ICON_FA_BOXES "\xEF\x91\xA8"
#define ICON_FA_THERMOMETER_EMPTY "\xEF\x8B\x8B"
#define ICON_FA_EXCLAMATION_TRIANGLE "\xEF\x81\xB1"
#define ICON_FA_GIFT "\xEF\x81\xAB"
#define ICON_FA_COGS "\xEF\x82\x85"
#define ICON_FA_SIGNAL "\xEF\x80\x92"
#define ICON_FA_SHAPES "\xEF\x98\x9F"
#define ICON_FA_CLOUD_RAIN "\xEF\x9C\xBD"
#define ICON_FA_LESS_THAN_EQUAL "\xEF\x94\xB7"
#define ICON_FA_CHEVRON_CIRCLE_LEFT "\xEF\x84\xB7"
#define ICON_FA_MORTAR_PESTLE "\xEF\x96\xA7"
#define ICON_FA_SITEMAP "\xEF\x83\xA8"
#define ICON_FA_BUS_ALT "\xEF\x95\x9E"
#define ICON_FA_FILE_CODE "\xEF\x87\x89"
#define ICON_FA_BATTERY_FULL "\xEF\x89\x80"
#define ICON_FA_CROWN "\xEF\x94\xA1"
#define ICON_FA_EXCHANGE_ALT "\xEF\x8D\xA2"
#define ICON_FA_TRANSGENDER_ALT "\xEF\x88\xA5"
#define ICON_FA_STAR_OF_DAVID "\xEF\x9A\x9A"
#define ICON_FA_CASH_REGISTER "\xEF\x9E\x88"
#define ICON_FA_TOOLS "\xEF\x9F\x99"
#define ICON_FA_EXCLAMATION_CIRCLE "\xEF\x81\xAA"
#define ICON_FA_COMMENTS "\xEF\x82\x86"
#define ICON_FA_BRIEFCASE_MEDICAL "\xEF\x91\xA9"
#define ICON_FA_COMMENTS_DOLLAR "\xEF\x99\x93"
#define ICON_FA_BACKSPACE "\xEF\x95\x9A"
#define ICON_FA_SLASH "\xEF\x9C\x95"
#define ICON_FA_HOT_TUB "\xEF\x96\x93"
#define ICON_FA_SUITCASE_ROLLING "\xEF\x97\x81"
#define ICON_FA_BOLD "\xEF\x80\xB2"
#define ICON_FA_HANDS_HELPING "\xEF\x93\x84"
#define ICON_FA_SLEIGH "\xEF\x9F\x8C"
#define ICON_FA_BOLT "\xEF\x83\xA7"
#define ICON_FA_THERMOMETER_QUARTER "\xEF\x8B\x8A"
#define ICON_FA_TROPHY "\xEF\x82\x91"
#define ICON_FA_USER_ALT "\xEF\x90\x86"
#define ICON_FA_BRAILLE "\xEF\x8A\xA1"
#define ICON_FA_PLUS "\xEF\x81\xA7"
#define ICON_FA_LIST_UL "\xEF\x83\x8A"
#define ICON_FA_SMOKING_BAN "\xEF\x95\x8D"
#define ICON_FA_BOOK "\xEF\x80\xAD"
#define ICON_FA_VOLUME_DOWN "\xEF\x80\xA7"
#define ICON_FA_QUESTION_CIRCLE "\xEF\x81\x99"
#define ICON_FA_CARROT "\xEF\x9E\x87"
#define ICON_FA_BATH "\xEF\x8B\x8D"
#define ICON_FA_GAVEL "\xEF\x83\xA3"
#define ICON_FA_CANDY_CANE "\xEF\x9E\x86"
#define ICON_FA_NETWORK_WIRED "\xEF\x9B\xBF"
#define ICON_FA_CARET_SQUARE_LEFT "\xEF\x86\x91"
#define ICON_FA_PLANE_ARRIVAL "\xEF\x96\xAF"
#define ICON_FA_SHARE_SQUARE "\xEF\x85\x8D"
#define ICON_FA_MEDAL "\xEF\x96\xA2"
#define ICON_FA_THERMOMETER_HALF "\xEF\x8B\x89"
#define ICON_FA_QUESTION "\xEF\x84\xA8"
#define ICON_FA_CAR_BATTERY "\xEF\x97\x9F"
#define ICON_FA_DOOR_CLOSED "\xEF\x94\xAA"
#define ICON_FA_USER_MINUS "\xEF\x94\x83"
#define ICON_FA_MUSIC "\xEF\x80\x81"
#define ICON_FA_HOUSE_DAMAGE "\xEF\x9B\xB1"
#define ICON_FA_CHEVRON_RIGHT "\xEF\x81\x94"
#define ICON_FA_GRIP_HORIZONTAL "\xEF\x96\x8D"
#define ICON_FA_DICE_FOUR "\xEF\x94\xA4"
#define ICON_FA_DEAF "\xEF\x8A\xA4"
#define ICON_FA_MEH_BLANK "\xEF\x96\xA4"
#define ICON_FA_WINDOW_CLOSE "\xEF\x90\x90"
#define ICON_FA_LINK "\xEF\x83\x81"
#define ICON_FA_ATOM "\xEF\x97\x92"
#define ICON_FA_LESS_THAN "\xEF\x94\xB6"
#define ICON_FA_OTTER "\xEF\x9C\x80"
#define ICON_FA_DICE_TWO "\xEF\x94\xA8"
#define ICON_FA_SORT_ALPHA_DOWN_ALT "\xEF\xA2\x81"
#define ICON_FA_EJECT "\xEF\x81\x92"
#define ICON_FA_SKULL "\xEF\x95\x8C"
#define ICON_FA_GRIP_LINES "\xEF\x9E\xA4"
#define ICON_FA_SORT_AMOUNT_DOWN_ALT "\xEF\xA2\x84"
#define ICON_FA_HOSPITAL_SYMBOL "\xEF\x91\xBE"
#define ICON_FA_X_RAY "\xEF\x92\x97"
#define ICON_FA_ARROW_UP "\xEF\x81\xA2"
#define ICON_FA_MONEY_BILL_WAVE "\xEF\x94\xBA"
#define ICON_FA_DOT_CIRCLE "\xEF\x86\x92"
#define ICON_FA_IMAGES "\xEF\x8C\x82"
#define ICON_FA_STAR_HALF "\xEF\x82\x89"
#define ICON_FA_SPLOTCH "\xEF\x96\xBC"
#define ICON_FA_STAR_HALF_ALT "\xEF\x97\x80"
#define ICON_FA_SHIP "\xEF\x88\x9A"
#define ICON_FA_BOOK_DEAD "\xEF\x9A\xB7"
#define ICON_FA_CHECK "\xEF\x80\x8C"
#define ICON_FA_RAINBOW "\xEF\x9D\x9B"
#define ICON_FA_POWER_OFF "\xEF\x80\x91"
#define ICON_FA_LEMON "\xEF\x82\x94"
#define ICON_FA_GLOBE_AMERICAS "\xEF\x95\xBD"
#define ICON_FA_PEACE "\xEF\x99\xBC"
#define ICON_FA_THERMOMETER_THREE_QUARTERS "\xEF\x8B\x88"
#define ICON_FA_WAREHOUSE "\xEF\x92\x94"
#define ICON_FA_TRANSGENDER "\xEF\x88\xA4"
#define ICON_FA_PLUS_SQUARE "\xEF\x83\xBE"
#define ICON_FA_BULLSEYE "\xEF\x85\x80"
#define ICON_FA_COOKIE_BITE "\xEF\x95\xA4"
#define ICON_FA_USERS "\xEF\x83\x80"
#define ICON_FA_DRUMSTICK_BITE "\xEF\x9B\x97"
#define ICON_FA_ASTERISK "\xEF\x81\xA9"
#define ICON_FA_PLUS_CIRCLE "\xEF\x81\x95"
#define ICON_FA_CART_ARROW_DOWN "\xEF\x88\x98"
#define ICON_FA_LEAF "\xEF\x81\xAC"
#define ICON_FA_FLUSHED "\xEF\x95\xB9"
#define ICON_FA_STORE_ALT "\xEF\x95\x8F"
#define ICON_FA_PEOPLE_CARRY "\xEF\x93\x8E"
#define ICON_FA_CHESS_BOARD "\xEF\x90\xBC"
#define ICON_FA_LONG_ARROW_ALT_DOWN "\xEF\x8C\x89"
#define ICON_FA_SAD_CRY "\xEF\x96\xB3"
#define ICON_FA_DIGITAL_TACHOGRAPH "\xEF\x95\xA6"
#define ICON_FA_ANGLE_DOUBLE_DOWN "\xEF\x84\x83"
#define ICON_FA_FILE_EXCEL "\xEF\x87\x83"
#define ICON_FA_TEETH "\xEF\x98\xAE"
#define ICON_FA_HAND_SCISSORS "\xEF\x89\x97"
#define ICON_FA_STETHOSCOPE "\xEF\x83\xB1"
#define ICON_FA_BACKWARD "\xEF\x81\x8A"
#define ICON_FA_SCROLL "\xEF\x9C\x8E"
#define ICON_FA_IGLOO "\xEF\x9E\xAE"
#define ICON_FA_NOTES_MEDICAL "\xEF\x92\x81"
#define ICON_FA_CODE "\xEF\x84\xA1"
#define ICON_FA_SORT_NUMERIC_UP_ALT "\xEF\xA2\x87"
#define ICON_FA_NOT_EQUAL "\xEF\x94\xBE"
#define ICON_FA_SKIING "\xEF\x9F\x89"
#define ICON_FA_CHAIR "\xEF\x9B\x80"
#define ICON_FA_HAND_LIZARD "\xEF\x89\x98"
#define ICON_FA_QUIDDITCH "\xEF\x91\x98"
#define ICON_FA_ANGLE_DOUBLE_LEFT "\xEF\x84\x80"
#define ICON_FA_MOSQUE "\xEF\x99\xB8"
#define ICON_FA_PEN "\xEF\x8C\x84"
#define ICON_FA_HRYVNIA "\xEF\x9B\xB2"
#define ICON_FA_ANGLE_LEFT "\xEF\x84\x84"
#define ICON_FA_ATLAS "\xEF\x95\x98"
#define ICON_FA_PIGGY_BANK "\xEF\x93\x93"
#define ICON_FA_DOLLY_FLATBED "\xEF\x91\xB4"
#define ICON_FA_ARROWS_ALT_H "\xEF\x8C\xB7"
#define ICON_FA_PEN_ALT "\xEF\x8C\x85"
#define ICON_FA_PRAYING_HANDS "\xEF\x9A\x84"
#define ICON_FA_VOLUME_UP "\xEF\x80\xA8"
#define ICON_FA_CLIPBOARD_LIST "\xEF\x91\xAD"
#define ICON_FA_BORDER_ALL "\xEF\xA1\x8C"
#define ICON_FA_MAGIC "\xEF\x83\x90"
#define ICON_FA_FOLDER_MINUS "\xEF\x99\x9D"
#define ICON_FA_DEMOCRAT "\xEF\x9D\x87"
#define ICON_FA_MAGNET "\xEF\x81\xB6"
#define ICON_FA_VIHARA "\xEF\x9A\xA7"
#define ICON_FA_GRIMACE "\xEF\x95\xBF"
#define ICON_FA_CHECK_CIRCLE "\xEF\x81\x98"
#define ICON_FA_SEARCH_DOLLAR "\xEF\x9A\x88"
#define ICON_FA_LONG_ARROW_ALT_LEFT "\xEF\x8C\x8A"
#define ICON_FA_FILE_PRESCRIPTION "\xEF\x95\xB2"
#define ICON_FA_CROW "\xEF\x94\xA0"
#define ICON_FA_EYE_DROPPER "\xEF\x87\xBB"
#define ICON_FA_CROP "\xEF\x84\xA5"
#define ICON_FA_SIGN "\xEF\x93\x99"
#define ICON_FA_ARROW_CIRCLE_DOWN "\xEF\x82\xAB"
#define ICON_FA_VIDEO "\xEF\x80\xBD"
#define ICON_FA_DOWNLOAD "\xEF\x80\x99"
#define ICON_FA_CARET_DOWN "\xEF\x83\x97"
#define ICON_FA_CHEVRON_LEFT "\xEF\x81\x93"
#define ICON_FA_GLOBE_AFRICA "\xEF\x95\xBC"
#define ICON_FA_HAMSA "\xEF\x99\xA5"
#define ICON_FA_CART_PLUS "\xEF\x88\x97"
#define ICON_FA_CLIPBOARD "\xEF\x8C\xA8"
#define ICON_FA_SHOE_PRINTS "\xEF\x95\x8B"
#define ICON_FA_PHONE_SLASH "\xEF\x8F\x9D"
#define ICON_FA_REPLY "\xEF\x8F\xA5"
#define ICON_FA_HOURGLASS_HALF "\xEF\x89\x92"
#define ICON_FA_LONG_ARROW_ALT_UP "\xEF\x8C\x8C"
#define ICON_FA_CHESS_KNIGHT "\xEF\x91\x81"
#define ICON_FA_BARCODE "\xEF\x80\xAA"
#define ICON_FA_DRAW_POLYGON "\xEF\x97\xAE"
#define ICON_FA_WATER "\xEF\x9D\xB3"
#define ICON_FA_WINE_GLASS_ALT "\xEF\x97\x8E"
#define ICON_FA_PHONE_VOLUME "\xEF\x8A\xA0"
#define ICON_FA_GLASS_WHISKEY "\xEF\x9E\xA0"
#define ICON_FA_BOX "\xEF\x91\xA6"
#define ICON_FA_DIAGNOSES "\xEF\x91\xB0"
#define ICON_FA_FILE_IMAGE "\xEF\x87\x85"
#define ICON_FA_VENUS_MARS "\xEF\x88\xA8"
#define ICON_FA_TASKS "\xEF\x82\xAE"
#define ICON_FA_HIKING "\xEF\x9B\xAC"
#define ICON_FA_VECTOR_SQUARE "\xEF\x97\x8B"
#define ICON_FA_QUOTE_LEFT "\xEF\x84\x8D"
#define ICON_FA_MOBILE_ALT "\xEF\x8F\x8D"
#define ICON_FA_USER_SHIELD "\xEF\x94\x85"
#define ICON_FA_BLOG "\xEF\x9E\x81"
#define ICON_FA_MARKER "\xEF\x96\xA1"
#define ICON_FA_HAMBURGER "\xEF\xA0\x85"
#define ICON_FA_REDO "\xEF\x80\x9E"
#define ICON_FA_CLOUD "\xEF\x83\x82"
#define ICON_FA_HAND_HOLDING_USD "\xEF\x93\x80"
#define ICON_FA_CERTIFICATE "\xEF\x82\xA3"
#define ICON_FA_ANGRY "\xEF\x95\x96"
#define ICON_FA_FROG "\xEF\x94\xAE"
#define ICON_FA_CAMERA "\xEF\x80\xB0"
#define ICON_FA_DICE_THREE "\xEF\x94\xA7"
#define ICON_FA_MEMORY "\xEF\x94\xB8"
#define ICON_FA_PEN_SQUARE "\xEF\x85\x8B"
#define ICON_FA_SORT "\xEF\x83\x9C"
#define ICON_FA_PLUG "\xEF\x87\xA6"
#define ICON_FA_SHARE "\xEF\x81\xA4"
#define ICON_FA_ENVELOPE "\xEF\x83\xA0"
#define ICON_FA_LAYER_GROUP "\xEF\x97\xBD"
#define ICON_FA_TRAIN "\xEF\x88\xB8"
#define ICON_FA_BULLHORN "\xEF\x82\xA1"
#define ICON_FA_BABY "\xEF\x9D\xBC"
#define ICON_FA_CONCIERGE_BELL "\xEF\x95\xA2"
#define ICON_FA_CIRCLE "\xEF\x84\x91"
#define ICON_FA_I_CURSOR "\xEF\x89\x86"
#define ICON_FA_CAR "\xEF\x86\xB9"
#define ICON_FA_CAT "\xEF\x9A\xBE"
#define ICON_FA_WALLET "\xEF\x95\x95"
#define ICON_FA_BOOK_MEDICAL "\xEF\x9F\xA6"
#define ICON_FA_H_SQUARE "\xEF\x83\xBD"
#define ICON_FA_HEART "\xEF\x80\x84"
#define ICON_FA_LOCK_OPEN "\xEF\x8F\x81"
#define ICON_FA_STREAM "\xEF\x95\x90"
#define ICON_FA_LOCK "\xEF\x80\xA3"
#define ICON_FA_PARACHUTE_BOX "\xEF\x93\x8D"
#define ICON_FA_TAG "\xEF\x80\xAB"
#define ICON_FA_SMILE_BEAM "\xEF\x96\xB8"
#define ICON_FA_USER_NURSE "\xEF\xA0\xAF"
#define ICON_FA_MICROPHONE_ALT "\xEF\x8F\x89"
#define ICON_FA_SPA "\xEF\x96\xBB"
#define ICON_FA_CHEVRON_CIRCLE_DOWN "\xEF\x84\xBA"
#define ICON_FA_FOLDER_PLUS "\xEF\x99\x9E"
#define ICON_FA_TICKET_ALT "\xEF\x8F\xBF"
#define ICON_FA_BOOK_OPEN "\xEF\x94\x98"
#define ICON_FA_MAP "\xEF\x89\xB9"
#define ICON_FA_COCKTAIL "\xEF\x95\xA1"
#define ICON_FA_CLONE "\xEF\x89\x8D"
#define ICON_FA_ID_CARD_ALT "\xEF\x91\xBF"
#define ICON_FA_CHECK_SQUARE "\xEF\x85\x8A"
#define ICON_FA_CHART_LINE "\xEF\x88\x81"
#define ICON_FA_POO_STORM "\xEF\x9D\x9A"
#define ICON_FA_DOVE "\xEF\x92\xBA"
#define ICON_FA_MARS_STROKE "\xEF\x88\xA9"
#define ICON_FA_ENVELOPE_OPEN "\xEF\x8A\xB6"
#define ICON_FA_WHEELCHAIR "\xEF\x86\x93"
#define ICON_FA_ROBOT "\xEF\x95\x84"
#define ICON_FA_UNDO_ALT "\xEF\x8B\xAA"
#define ICON_FA_CLOUD_MEATBALL "\xEF\x9C\xBB"
#define ICON_FA_TRUCK "\xEF\x83\x91"
#define ICON_FA_FLASK "\xEF\x83\x83"
#define ICON_FA_WON_SIGN "\xEF\x85\x99"
#define ICON_FA_SUPERSCRIPT "\xEF\x84\xAB"
#define ICON_FA_TTY "\xEF\x87\xA4"
#define ICON_FA_USER_MD "\xEF\x83\xB0"
#define ICON_FA_BRAIN "\xEF\x97\x9C"
#define ICON_FA_TABLETS "\xEF\x92\x90"
#define ICON_FA_MOTORCYCLE "\xEF\x88\x9C"
#define ICON_FA_PHONE_SQUARE_ALT "\xEF\xA1\xBB"
#define ICON_FA_ANGLE_UP "\xEF\x84\x86"
#define ICON_FA_BROOM "\xEF\x94\x9A"
#define ICON_FA_DICE_D20 "\xEF\x9B\x8F"
#define ICON_FA_LEVEL_DOWN_ALT "\xEF\x8E\xBE"
#define ICON_FA_PAPERCLIP "\xEF\x83\x86"
#define ICON_FA_USER_CLOCK "\xEF\x93\xBD"
#define ICON_FA_MUG_HOT "\xEF\x9E\xB6"
#define ICON_FA_SORT_ALPHA_UP "\xEF\x85\x9E"
#define ICON_FA_AUDIO_DESCRIPTION "\xEF\x8A\x9E"
#define ICON_FA_FILE_CSV "\xEF\x9B\x9D"
#define ICON_FA_FILE_DOWNLOAD "\xEF\x95\xAD"
#define ICON_FA_SYNC_ALT "\xEF\x8B\xB1"
#define ICON_FA_ANGLE_DOUBLE_UP "\xEF\x84\x82"
#define ICON_FA_HANDS "\xEF\x93\x82"
#define ICON_FA_REPUBLICAN "\xEF\x9D\x9E"
#define ICON_FA_UNIVERSITY "\xEF\x86\x9C"
#define ICON_FA_KHANDA "\xEF\x99\xAD"
#define ICON_FA_GLASSES "\xEF\x94\xB0"
#define ICON_FA_SQUARE "\xEF\x83\x88"
#define ICON_FA_GRIN_SQUINT "\xEF\x96\x85"
#define ICON_FA_CLOSED_CAPTIONING "\xEF\x88\x8A"
#define ICON_FA_RECEIPT "\xEF\x95\x83"
#define ICON_FA_STRIKETHROUGH "\xEF\x83\x8C"
#define ICON_FA_UNLOCK "\xEF\x82\x9C"
#define ICON_FA_ARROW_LEFT "\xEF\x81\xA0"
#define ICON_FA_DICE_SIX "\xEF\x94\xA6"
#define ICON_FA_GRIP_VERTICAL "\xEF\x96\x8E"
#define ICON_FA_PILLS "\xEF\x92\x84"
#define ICON_FA_EXCLAMATION "\xEF\x84\xAA"
#define ICON_FA_PERSON_BOOTH "\xEF\x9D\x96"
#define ICON_FA_CALENDAR_PLUS "\xEF\x89\xB1"
#define ICON_FA_SMOG "\xEF\x9D\x9F"
#define ICON_FA_LOCATION_ARROW "\xEF\x84\xA4"
#define ICON_FA_UMBRELLA "\xEF\x83\xA9"
#define ICON_FA_QURAN "\xEF\x9A\x87"
#define ICON_FA_UNDO "\xEF\x83\xA2"
#define ICON_FA_DUMPSTER "\xEF\x9E\x93"
#define ICON_FA_FUNNEL_DOLLAR "\xEF\x99\xA2"
#define ICON_FA_INDENT "\xEF\x80\xBC"
#define ICON_FA_LANGUAGE "\xEF\x86\xAB"
#define ICON_FA_ARROW_ALT_CIRCLE_UP "\xEF\x8D\x9B"
#define ICON_FA_ROUTE "\xEF\x93\x97"
#define ICON_FA_HEADPHONES "\xEF\x80\xA5"
#define ICON_FA_TIMES "\xEF\x80\x8D"
#define ICON_FA_CLINIC_MEDICAL "\xEF\x9F\xB2"
#define ICON_FA_PLANE "\xEF\x81\xB2"
#define ICON_FA_TORII_GATE "\xEF\x9A\xA1"
#define ICON_FA_LEVEL_UP_ALT "\xEF\x8E\xBF"
#define ICON_FA_BLIND "\xEF\x8A\x9D"
#define ICON_FA_CHEESE "\xEF\x9F\xAF"
#define ICON_FA_PHONE_SQUARE "\xEF\x82\x98"
#define ICON_FA_SHOPPING_BASKET "\xEF\x8A\x91"
#define ICON_FA_ICE_CREAM "\xEF\xA0\x90"
#define ICON_FA_RING "\xEF\x9C\x8B"
#define ICON_FA_CITY "\xEF\x99\x8F"
#define ICON_FA_TEXT_WIDTH "\xEF\x80\xB5"
#define ICON_FA_RSS_SQUARE "\xEF\x85\x83"
#define ICON_FA_PAINT_BRUSH "\xEF\x87\xBC"
#define ICON_FA_BOOKMARK "\xEF\x80\xAE"
#define ICON_FA_PHOTO_VIDEO "\xEF\xA1\xBC"
#define ICON_FA_SIM_CARD "\xEF\x9F\x84"
#define ICON_FA_CLOUD_UPLOAD_ALT "\xEF\x8E\x82"
#define ICON_FA_COMPACT_DISC "\xEF\x94\x9F"
#define ICON_FA_SORT_UP "\xEF\x83\x9E"
#define ICON_FA_SIGN_OUT_ALT "\xEF\x8B\xB5"
#define ICON_FA_SIGN_IN_ALT "\xEF\x8B\xB6"
#define ICON_FA_FORWARD "\xEF\x81\x8E"
#define ICON_FA_SHARE_ALT "\xEF\x87\xA0"
#define ICON_FA_COPY "\xEF\x83\x85"
#define ICON_FA_RSS "\xEF\x82\x9E"
#define ICON_FA_PEN_FANCY "\xEF\x96\xAC"
#define ICON_FA_BIOHAZARD "\xEF\x9E\x80"
#define ICON_FA_BED "\xEF\x88\xB6"
#define ICON_FA_INFO "\xEF\x84\xA9"
#define ICON_FA_TOGGLE_OFF "\xEF\x88\x84"
#define ICON_FA_MAP_MARKER_ALT "\xEF\x8F\x85"
#define ICON_FA_TRACTOR "\xEF\x9C\xA2"
#define ICON_FA_CLOUD_DOWNLOAD_ALT "\xEF\x8E\x81"
#define ICON_FA_ID_BADGE "\xEF\x8B\x81"
#define ICON_FA_SORT_NUMERIC_DOWN_ALT "\xEF\xA2\x86"
#define ICON_FA_RULER_HORIZONTAL "\xEF\x95\x87"
#define ICON_FA_PAINT_ROLLER "\xEF\x96\xAA"
#define ICON_FA_HAT_WIZARD "\xEF\x9B\xA8"
#define ICON_FA_MAP_SIGNS "\xEF\x89\xB7"
#define ICON_FA_MICROPHONE "\xEF\x84\xB0"
#define ICON_FA_FOOTBALL_BALL "\xEF\x91\x8E"
#define ICON_FA_ALLERGIES "\xEF\x91\xA1"
#define ICON_FA_ID_CARD "\xEF\x8B\x82"
#define ICON_FA_USER_LOCK "\xEF\x94\x82"
#define ICON_FA_PLAY_CIRCLE "\xEF\x85\x84"
#define ICON_FA_REMOVE_FORMAT "\xEF\xA1\xBD"
#define ICON_FA_THERMOMETER "\xEF\x92\x91"
#define ICON_FA_REGISTERED "\xEF\x89\x9D"
#define ICON_FA_DOLLAR_SIGN "\xEF\x85\x95"
#define ICON_FA_DUNGEON "\xEF\x9B\x99"
#define ICON_FA_COMPRESS "\xEF\x81\xA6"
#define ICON_FA_SEARCH_LOCATION "\xEF\x9A\x89"
#define ICON_FA_UTENSILS "\xEF\x8B\xA7"
#define ICON_FA_BLENDER_PHONE "\xEF\x9A\xB6"
#define ICON_FA_ANGLE_RIGHT "\xEF\x84\x85"
#define ICON_FA_CHESS_QUEEN "\xEF\x91\x85"
#define ICON_FA_PAGER "\xEF\xA0\x95"
#define ICON_FA_SORT_AMOUNT_UP_ALT "\xEF\xA2\x85"
#define ICON_FA_CLIPBOARD_CHECK "\xEF\x91\xAC"
#define ICON_FA_HOURGLASS_END "\xEF\x89\x93"
#define ICON_FA_TOOTH "\xEF\x97\x89"
#define ICON_FA_BUSINESS_TIME "\xEF\x99\x8A"
#define ICON_FA_PLACE_OF_WORSHIP "\xEF\x99\xBF"
#define ICON_FA_GRIN_TONGUE_SQUINT "\xEF\x96\x8A"
#define ICON_FA_MEH_ROLLING_EYES "\xEF\x96\xA5"
#define ICON_FA_WALKING "\xEF\x95\x94"
#define ICON_FA_EDIT "\xEF\x81\x84"
#define ICON_FA_CARET_LEFT "\xEF\x83\x99"
#define ICON_FA_PAUSE "\xEF\x81\x8C"
#define ICON_FA_DICE "\xEF\x94\xA2"
#define ICON_FA_RUBLE_SIGN "\xEF\x85\x98"
#define ICON_FA_TERMINAL "\xEF\x84\xA0"
#define ICON_FA_RULER_VERTICAL "\xEF\x95\x88"
#define ICON_FA_HAND_POINTER "\xEF\x89\x9A"
#define ICON_FA_TAPE "\xEF\x93\x9B"
#define ICON_FA_SHOPPING_BAG "\xEF\x8A\x90"
#define ICON_FA_SKIING_NORDIC "\xEF\x9F\x8A"
#define ICON_FA_FIST_RAISED "\xEF\x9B\x9E"
#define ICON_FA_CUBE "\xEF\x86\xB2"
#define ICON_FA_CAPSULES "\xEF\x91\xAB"
#define ICON_FA_KIWI_BIRD "\xEF\x94\xB5"
#define ICON_FA_CHEVRON_CIRCLE_UP "\xEF\x84\xB9"
#define ICON_FA_MARS_STROKE_V "\xEF\x88\xAA"
#define ICON_FA_FILE_ARCHIVE "\xEF\x87\x86"
#define ICON_FA_JOINT "\xEF\x96\x95"
#define ICON_FA_MARS_STROKE_H "\xEF\x88\xAB"
#define ICON_FA_ADDRESS_BOOK "\xEF\x8A\xB9"
#define ICON_FA_PROCEDURES "\xEF\x92\x87"
#define ICON_FA_GEM "\xEF\x8E\xA5"
#define ICON_FA_RULER_COMBINED "\xEF\x95\x86"
#define ICON_FA_ALIGN_LEFT "\xEF\x80\xB6"
#define ICON_FA_STAR_AND_CRESCENT "\xEF\x9A\x99"
#define ICON_FA_FIGHTER_JET "\xEF\x83\xBB"
#define ICON_FA_SPACE_SHUTTLE "\xEF\x86\x97"
#define ICON_FA_MAP_PIN "\xEF\x89\xB6"
#define ICON_FA_GLOBE "\xEF\x82\xAC"
#define ICON_FA_ALIGN_CENTER "\xEF\x80\xB7"
#define ICON_FA_SORT_ALPHA_DOWN "\xEF\x85\x9D"
#define ICON_FA_PARKING "\xEF\x95\x80"
#define ICON_FA_CALENDAR "\xEF\x84\xB3"
#define ICON_FA_PALETTE "\xEF\x94\xBF"
#define ICON_FA_GLASS_MARTINI "\xEF\x80\x80"
#define ICON_FA_TIMES_CIRCLE "\xEF\x81\x97"
#define ICON_FA_EYE "\xEF\x81\xAE"
#define ICON_FA_MONUMENT "\xEF\x96\xA6"
#define ICON_FA_TRASH_RESTORE "\xEF\xA0\xA9"
#define ICON_FA_GUITAR "\xEF\x9E\xA6"
#define ICON_FA_GRIN_BEAM "\xEF\x96\x82"
#define ICON_FA_KEY "\xEF\x82\x84"
#define ICON_FA_FIRST_AID "\xEF\x91\xB9"
#define ICON_FA_UMBRELLA_BEACH "\xEF\x97\x8A"
#define ICON_FA_DRUM "\xEF\x95\xA9"
#define ICON_FA_FILE_CONTRACT "\xEF\x95\xAC"
#define ICON_FA_VOICEMAIL "\xEF\xA2\x97"
#define ICON_FA_RESTROOM "\xEF\x9E\xBD"
#define ICON_FA_UNLOCK_ALT "\xEF\x84\xBE"
#define ICON_FA_MICROPHONE_ALT_SLASH "\xEF\x94\xB9"
#define ICON_FA_USER_SECRET "\xEF\x88\x9B"
#define ICON_FA_ARROW_RIGHT "\xEF\x81\xA1"
#define ICON_FA_FILE_VIDEO "\xEF\x87\x88"
#define ICON_FA_ARROW_ALT_CIRCLE_RIGHT "\xEF\x8D\x9A"
#define ICON_FA_CALENDAR_WEEK "\xEF\x9E\x84"
#define ICON_FA_USER_GRADUATE "\xEF\x94\x81"
#define ICON_FA_HAND_MIDDLE_FINGER "\xEF\xA0\x86"
#define ICON_FA_POO "\xEF\x8B\xBE"
#define ICON_FA_LAUGH "\xEF\x96\x99"
#define ICON_FA_TABLE "\xEF\x83\x8E"
#define ICON_FA_POLL "\xEF\x9A\x81"
#define ICON_FA_CAR_ALT "\xEF\x97\x9E"
#define ICON_FA_THUMBS_UP "\xEF\x85\xA4"
#define ICON_FA_SWIMMER "\xEF\x97\x84"
#define ICON_FA_TRADEMARK "\xEF\x89\x9C"
#define ICON_FA_CLOUD_MOON_RAIN "\xEF\x9C\xBC"
#define ICON_FA_VIALS "\xEF\x92\x93"
#define ICON_FA_ERASER "\xEF\x84\xAD"
#define ICON_FA_MARS "\xEF\x88\xA2"
#define ICON_FA_HELICOPTER "\xEF\x94\xB3"
#define ICON_FA_FEATHER "\xEF\x94\xAD"
#define ICON_FA_SQUARE_FULL "\xEF\x91\x9C"
#define ICON_FA_DOLLY "\xEF\x91\xB2"
#define ICON_FA_HAND_HOLDING "\xEF\x92\xBD"
#define ICON_FA_HOURGLASS_START "\xEF\x89\x91"
#define ICON_FA_GRIN_HEARTS "\xEF\x96\x84"
#define ICON_FA_VENUS_DOUBLE "\xEF\x88\xA6"
#define ICON_FA_HASHTAG "\xEF\x8A\x92"
#define ICON_FA_FINGERPRINT "\xEF\x95\xB7"
#define ICON_FA_SEEDLING "\xEF\x93\x98"
#define ICON_FA_HAYKAL "\xEF\x99\xA6"
#define ICON_FA_TSHIRT "\xEF\x95\x93"
#define ICON_FA_PENCIL_RULER "\xEF\x96\xAE"
#define ICON_FA_HDD "\xEF\x82\xA0"
#define ICON_FA_NEWSPAPER "\xEF\x87\xAA"
#define ICON_FA_HOSPITAL_ALT "\xEF\x91\xBD"
#define ICON_FA_USER_SLASH "\xEF\x94\x86"
#define ICON_FA_FILE_WORD "\xEF\x87\x82"
#define ICON_FA_ENVELOPE_SQUARE "\xEF\x86\x99"
#define ICON_FA_GENDERLESS "\xEF\x88\xAD"
#define ICON_FA_DICE_FIVE "\xEF\x94\xA3"
#define ICON_FA_SYNAGOGUE "\xEF\x9A\x9B"
#define ICON_FA_PAW "\xEF\x86\xB0"
#define ICON_FA_HAND_HOLDING_HEART "\xEF\x92\xBE"
#define ICON_FA_CROSS "\xEF\x99\x94"
#define ICON_FA_ARCHIVE "\xEF\x86\x87"
#define ICON_FA_SOLAR_PANEL "\xEF\x96\xBA"
#define ICON_FA_INFINITY "\xEF\x94\xB4"
#define ICON_FA_ANKH "\xEF\x99\x84"
#define ICON_FA_MAP_MARKER "\xEF\x81\x81"
#define ICON_FA_CALENDAR_ALT "\xEF\x81\xB3"
#define ICON_FA_AMERICAN_SIGN_LANGUAGE_INTERPRETING "\xEF\x8A\xA3"
#define ICON_FA_BINOCULARS "\xEF\x87\xA5"
#define ICON_FA_STICKY_NOTE "\xEF\x89\x89"
#define ICON_FA_RUNNING "\xEF\x9C\x8C"
#define ICON_FA_PEN_NIB "\xEF\x96\xAD"
#define ICON_FA_MAP_MARKED "\xEF\x96\x9F"
#define ICON_FA_EXPAND "\xEF\x81\xA5"
#define ICON_FA_TRUCK_PICKUP "\xEF\x98\xBC"
#define ICON_FA_HOLLY_BERRY "\xEF\x9E\xAA"
#define ICON_FA_PRESCRIPTION_BOTTLE "\xEF\x92\x85"
#define ICON_FA_LAPTOP_CODE "\xEF\x97\xBC"
#define ICON_FA_GOLF_BALL "\xEF\x91\x90"
#define ICON_FA_SKULL_CROSSBONES "\xEF\x9C\x94"
#define ICON_FA_TAXI "\xEF\x86\xBA"
#define ICON_FA_COMMENT "\xEF\x81\xB5"
#define ICON_FA_KISS "\xEF\x96\x96"
#define ICON_FA_HIPPO "\xEF\x9B\xAD"
#define ICON_FA_ARROWS_ALT "\xEF\x82\xB2"
#define ICON_FA_UNDERLINE "\xEF\x83\x8D"
#define ICON_FA_ARROW_CIRCLE_UP "\xEF\x82\xAA"
#define ICON_FA_BASKETBALL_BALL "\xEF\x90\xB4"
#define ICON_FA_DESKTOP "\xEF\x84\x88"
#define ICON_FA_PALLET "\xEF\x92\x82"
#define ICON_FA_TOGGLE_ON "\xEF\x88\x85"
#define ICON_FA_STOPWATCH "\xEF\x8B\xB2"
#define ICON_FA_ARROW_ALT_CIRCLE_LEFT "\xEF\x8D\x99"
#define ICON_FA_GAS_PUMP "\xEF\x94\xAF"
#define ICON_FA_EXTERNAL_LINK_ALT "\xEF\x8D\x9D"
#define ICON_FA_FROWN "\xEF\x84\x99"
#define ICON_FA_RULER "\xEF\x95\x85"
#define ICON_FA_FLAG_USA "\xEF\x9D\x8D"
#define ICON_FA_GRIN "\xEF\x96\x80"
#define ICON_FA_ARROW_CIRCLE_LEFT "\xEF\x82\xA8"
#define ICON_FA_HIGHLIGHTER "\xEF\x96\x91"
#define ICON_FA_POLL_H "\xEF\x9A\x82"
#define ICON_FA_SERVER "\xEF\x88\xB3"
#define ICON_FA_BATTERY_EMPTY "\xEF\x89\x84"
#define ICON_FA_SPRAY_CAN "\xEF\x96\xBD"
#define ICON_FA_BOWLING_BALL "\xEF\x90\xB6"
#define ICON_FA_GRIP_LINES_VERTICAL "\xEF\x9E\xA5"
#define ICON_FA_GLOBE_EUROPE "\xEF\x9E\xA2"
#define ICON_FA_WINDOW_MINIMIZE "\xEF\x8B\x91"
#define ICON_FA_MARS_DOUBLE "\xEF\x88\xA7"
#define ICON_FA_PAUSE_CIRCLE "\xEF\x8A\x8B"
#define ICON_FA_HOME "\xEF\x80\x95"
#define ICON_FA_COMMENT_ALT "\xEF\x89\xBA"
#define ICON_FA_UTENSIL_SPOON "\xEF\x8B\xA5"
#define ICON_FA_APPLE_ALT "\xEF\x97\x91"
#define ICON_FA_MOON "\xEF\x86\x86"
#define ICON_FA_CANNABIS "\xEF\x95\x9F"
#define ICON_FA_LAUGH_BEAM "\xEF\x96\x9A"
#define ICON_FA_TEETH_OPEN "\xEF\x98\xAF"
#define ICON_FA_CHART_PIE "\xEF\x88\x80"
#define ICON_FA_SOCKS "\xEF\x9A\x96"
#define ICON_FA_SD_CARD "\xEF\x9F\x82"
#define ICON_FA_ARROW_CIRCLE_RIGHT "\xEF\x82\xA9"
#define ICON_FA_PASTE "\xEF\x83\xAA"
#define ICON_FA_OM "\xEF\x99\xB9"
#define ICON_FA_LUGGAGE_CART "\xEF\x96\x9D"
#define ICON_FA_INDUSTRY "\xEF\x89\xB5"
#define ICON_FA_STAMP "\xEF\x96\xBF"
#define ICON_FA_RADIATION_ALT "\xEF\x9E\xBA"
#define ICON_FA_COMPRESS_ARROWS_ALT "\xEF\x9E\x8C"
#define ICON_FA_ROAD "\xEF\x80\x98"
#define ICON_FA_IMAGE "\xEF\x80\xBE"
#define ICON_FA_BALANCE_SCALE_RIGHT "\xEF\x94\x96"
#define ICON_FA_ANGLE_DOUBLE_RIGHT "\xEF\x84\x81"
#define ICON_FA_CLOUD_MOON "\xEF\x9B\x83"
#define ICON_FA_DOOR_OPEN "\xEF\x94\xAB"
#define ICON_FA_GRIN_TONGUE_WINK "\xEF\x96\x8B"
#define ICON_FA_REPLY_ALL "\xEF\x84\xA2"
#define ICON_FA_TEMPERATURE_LOW "\xEF\x9D\xAB"
#define ICON_FA_INBOX "\xEF\x80\x9C"
#define ICON_FA_FEMALE "\xEF\x86\x82"
#define ICON_FA_SYRINGE "\xEF\x92\x8E"
#define ICON_FA_CIRCLE_NOTCH "\xEF\x87\x8E"
#define ICON_FA_ELLIPSIS_V "\xEF\x85\x82"
#define ICON_FA_SNOWPLOW "\xEF\x9F\x92"
#define ICON_FA_TABLE_TENNIS "\xEF\x91\x9D"
#define ICON_FA_LOW_VISION "\xEF\x8A\xA8"
#define ICON_FA_FILE_IMPORT "\xEF\x95\xAF"
#define ICON_FA_ITALIC "\xEF\x80\xB3"
#define ICON_FA_FILE_SIGNATURE "\xEF\x95\xB3"
#define ICON_FA_CHALKBOARD "\xEF\x94\x9B"
#define ICON_FA_GHOST "\xEF\x9B\xA2"
#define ICON_FA_TACHOMETER_ALT "\xEF\x8F\xBD"
#define ICON_FA_BUS "\xEF\x88\x87"
#define ICON_FA_ANGLE_DOWN "\xEF\x84\x87"
#define ICON_FA_HAND_ROCK "\xEF\x89\x95"
#define ICON_FA_BORDER_STYLE "\xEF\xA1\x93"
#define ICON_FA_STAR_OF_LIFE "\xEF\x98\xA1"
#define ICON_FA_PODCAST "\xEF\x8B\x8E"
#define ICON_FA_TRUCK_MOVING "\xEF\x93\x9F"
#define ICON_FA_BUG "\xEF\x86\x88"
#define ICON_FA_SHIELD_ALT "\xEF\x8F\xAD"
#define ICON_FA_FILL_DRIP "\xEF\x95\xB6"
#define ICON_FA_COMMENT_SLASH "\xEF\x92\xB3"
#define ICON_FA_SUITCASE "\xEF\x83\xB2"
#define ICON_FA_SKATING "\xEF\x9F\x85"
#define ICON_FA_TOILET "\xEF\x9F\x98"
#define ICON_FA_ENVELOPE_OPEN_TEXT "\xEF\x99\x98"
#define ICON_FA_HEART_BROKEN "\xEF\x9E\xA9"
#define ICON_FA_CARET_SQUARE_UP "\xEF\x85\x91"
#define ICON_FA_TH_LARGE "\xEF\x80\x89"
#define ICON_FA_AT "\xEF\x87\xBA"
#define ICON_FA_FILE "\xEF\x85\x9B"
#define ICON_FA_TENGE "\xEF\x9F\x97"
#define ICON_FA_FLAG_CHECKERED "\xEF\x84\x9E"
#define ICON_FA_FILM "\xEF\x80\x88"
#define ICON_FA_FILL "\xEF\x95\xB5"
#define ICON_FA_GRIN_SQUINT_TEARS "\xEF\x96\x86"
#define ICON_FA_PERCENT "\xEF\x8A\x95"
#define ICON_FA_METEOR "\xEF\x9D\x93"
#define ICON_FA_TRASH "\xEF\x87\xB8"
#define ICON_FA_FILE_AUDIO "\xEF\x87\x87"
#define ICON_FA_SATELLITE_DISH "\xEF\x9F\x80"
#define ICON_FA_POOP "\xEF\x98\x99"
#define ICON_FA_STAR "\xEF\x80\x85"
#define ICON_FA_GIFTS "\xEF\x9E\x9C"
#define ICON_FA_FIRE_ALT "\xEF\x9F\xA4"
#define ICON_FA_BUILDING "\xEF\x86\xAD"
#define ICON_FA_PRESCRIPTION_BOTTLE_ALT "\xEF\x92\x86"
#define ICON_FA_MONEY_BILL_WAVE_ALT "\xEF\x94\xBB"
#define ICON_FA_NEUTER "\xEF\x88\xAC"
#define ICON_FA_BAND_AID "\xEF\x91\xA2"
#define ICON_FA_WIFI "\xEF\x87\xAB"
#define ICON_FA_MASK "\xEF\x9B\xBA"
#define ICON_FA_CHEVRON_UP "\xEF\x81\xB7"
#define ICON_FA_HAND_SPOCK "\xEF\x89\x99"
#define ICON_FA_HAND_POINT_UP "\xEF\x82\xA6"
|
whupdup/frame
|
real/third_party/tracy/server/IconsFontAwesome5.h
|
C++
|
gpl-3.0
| 41,290
|
#include <assert.h>
#include "IconsFontAwesome5.h"
#include "TracyBadVersion.hpp"
#include "TracyImGui.hpp"
#include "TracyWeb.hpp"
namespace tracy
{
namespace detail
{
void BadVersionImpl( BadVersionState& badVer, ImFont* big )
{
assert( badVer.state != BadVersionState::Ok );
switch( badVer.state )
{
case BadVersionState::BadFile:
ImGui::OpenPopup( "Bad file" );
break;
case BadVersionState::ReadError:
ImGui::OpenPopup( "File read error" );
break;
case BadVersionState::UnsupportedVersion:
ImGui::OpenPopup( "Unsupported file version" );
break;
case BadVersionState::LegacyVersion:
ImGui::OpenPopup( "Legacy file version" );
break;
default:
assert( false );
break;
}
if( ImGui::BeginPopupModal( "Bad file", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( big );
TextCentered( ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::PopFont();
ImGui::Text( "The file you are trying to open is not a Tracy dump." );
ImGui::Separator();
if( ImGui::Button( "Oops" ) )
{
ImGui::CloseCurrentPopup();
badVer.state = BadVersionState::Ok;
}
ImGui::EndPopup();
}
if( ImGui::BeginPopupModal( "File read error", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( big );
TextCentered( ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::PopFont();
ImGui::Text( "The file you are trying to open cannot be mapped to memory." );
ImGui::Separator();
if( ImGui::Button( "OK" ) )
{
ImGui::CloseCurrentPopup();
badVer.state = BadVersionState::Ok;
}
ImGui::EndPopup();
}
if( ImGui::BeginPopupModal( "Unsupported file version", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( big );
TextCentered( ICON_FA_CLOUD_DOWNLOAD_ALT );
ImGui::PopFont();
ImGui::Text( "The file you are trying to open is unsupported.\nYou should update to Tracy %i.%i.%i or newer and try again.", badVer.version >> 16, ( badVer.version >> 8 ) & 0xFF, badVer.version & 0xFF );
ImGui::Separator();
if( ImGui::Button( ICON_FA_DOWNLOAD " Download update" ) )
{
tracy::OpenWebpage( "https://github.com/wolfpld/tracy/releases" );
ImGui::CloseCurrentPopup();
badVer.state = BadVersionState::Ok;
}
ImGui::SameLine();
if( ImGui::Button( "Maybe later" ) )
{
ImGui::CloseCurrentPopup();
badVer.state = BadVersionState::Ok;
}
ImGui::EndPopup();
}
if( ImGui::BeginPopupModal( "Legacy file version", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
{
ImGui::PushFont( big );
TextCentered( ICON_FA_GHOST );
ImGui::PopFont();
ImGui::Text( "You are trying to open a file which was created by legacy version %i.%i.%i.\nUse the update utility from an older version of the profiler to convert the file to a supported version.", badVer.version >> 16, ( badVer.version >> 8 ) & 0xFF, badVer.version & 0xFF );
ImGui::Separator();
if( ImGui::Button( "Maybe I don't need it" ) )
{
ImGui::CloseCurrentPopup();
badVer.state = BadVersionState::Ok;
}
ImGui::EndPopup();
}
}
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyBadVersion.cpp
|
C++
|
gpl-3.0
| 3,446
|
#ifndef __TRACYBADVERSION_HPP__
#define __TRACYBADVERSION_HPP__
#include <imgui.h>
#include "../common/TracyForceInline.hpp"
namespace tracy
{
struct BadVersionState
{
enum State
{
Ok,
BadFile,
ReadError,
UnsupportedVersion,
LegacyVersion
};
State state = Ok;
int version = 0;
};
namespace detail
{
void BadVersionImpl( BadVersionState& badVer, ImFont* big );
}
tracy_force_inline void BadVersion( BadVersionState& badVer, ImFont* big ) { if( badVer.state != BadVersionState::Ok ) detail::BadVersionImpl( badVer, big ); }
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyBadVersion.hpp
|
C++
|
gpl-3.0
| 599
|
#ifndef __TRACYBUZZANIM_HPP__
#define __TRACYBUZZANIM_HPP__
#include <assert.h>
namespace tracy
{
template<typename T>
class BuzzAnim
{
public:
bool Match( const T& comp ) const
{
return active && comp == id;
}
float Time() const
{
assert( active );
return time;
}
void Enable( const T& val, float len )
{
active = true;
time = len;
id = val;
}
void Update( float dt )
{
if( active )
{
time -= dt;
if( time <= 0 ) active = false;
}
}
private:
bool active = false;
float time;
T id;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyBuzzAnim.hpp
|
C++
|
gpl-3.0
| 659
|
#ifndef __TRACY__CHARUTIL_HPP__
#define __TRACY__CHARUTIL_HPP__
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#define XXH_INLINE_ALL
#include "tracy_xxhash.h"
namespace tracy
{
namespace charutil
{
static inline size_t hash( const char* str )
{
const auto sz = strlen( str );
return XXH3_64bits( str, sz );
}
static inline size_t hash( const char* str, size_t sz )
{
return XXH3_64bits( str, sz );
}
struct Hasher
{
size_t operator()( const char* key ) const
{
return hash( key );
}
};
struct Comparator
{
bool operator()( const char* lhs, const char* rhs ) const
{
return strcmp( lhs, rhs ) == 0;
}
};
struct LessComparator
{
bool operator()( const char* lhs, const char* rhs ) const
{
return strcmp( lhs, rhs ) < 0;
}
};
struct StringKey
{
const char* ptr;
size_t sz;
struct Hasher
{
size_t operator()( const StringKey& key ) const
{
return hash( key.ptr, key.sz );
}
};
struct Comparator
{
bool operator()( const StringKey& lhs, const StringKey& rhs ) const
{
return lhs.sz == rhs.sz && memcmp( lhs.ptr, rhs.ptr, lhs.sz ) == 0;
}
};
};
}
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyCharUtil.hpp
|
C++
|
gpl-3.0
| 1,253
|
#include <algorithm>
#include "TracyColor.hpp"
namespace tracy
{
uint32_t GetHsvColor( uint64_t hue, int value )
{
const uint8_t h = ( hue * 11400714819323198485ull ) & 0xFF;
const uint8_t s = 108;
const uint8_t v = std::max( 96, 170 - value * 8 );
const uint8_t reg = h / 43;
const uint8_t rem = ( h - ( reg * 43 ) ) * 6;
const uint8_t p = ( v * ( 255 - s ) ) >> 8;
const uint8_t q = ( v * ( 255 - ( ( s * rem ) >> 8 ) ) ) >> 8;
const uint8_t t = ( v * ( 255 - ( ( s * ( 255 - rem ) ) >> 8 ) ) ) >> 8;
uint8_t r, g, b;
switch( reg )
{
case 0: r = v; g = t; b = p; break;
case 1: r = q; g = v; b = p; break;
case 2: r = p; g = v; b = t; break;
case 3: r = p; g = q; b = v; break;
case 4: r = t; g = p; b = v; break;
default: r = v; g = p; b = q; break;
}
return 0xFF000000 | ( r << 16 ) | ( g << 8 ) | b;
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyColor.cpp
|
C++
|
gpl-3.0
| 899
|
#ifndef __TRACYCOLOR_HPP__
#define __TRACYCOLOR_HPP__
#include <stdint.h>
namespace tracy
{
uint32_t GetHsvColor( uint64_t hue, int value );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyColor.hpp
|
C++
|
gpl-3.0
| 155
|
#ifndef __TRACYDECAYVALUE_HPP__
#define __TRACYDECAYVALUE_HPP__
#include "../common/TracyForceInline.hpp"
namespace tracy
{
template<typename T>
class DecayValue
{
public:
DecayValue( const T& init, bool active = false )
: m_value( init )
, m_active( active )
{
}
tracy_force_inline operator const T& () const { return m_value; }
tracy_force_inline T operator->() const { return m_value; }
tracy_force_inline DecayValue& operator=( const T& value )
{
m_value = value;
m_active = true;
return *this;
}
tracy_force_inline void Decay( const T& value )
{
if( m_active )
{
m_active = false;
}
else
{
m_value = value;
}
}
private:
T m_value;
bool m_active;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyDecayValue.hpp
|
C++
|
gpl-3.0
| 836
|
#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
#include <assert.h>
#include <limits>
#include <stdint.h>
#include <string>
#include <string.h>
#include "TracyCharUtil.hpp"
#include "TracyShortPtr.hpp"
#include "TracySortedVector.hpp"
#include "TracyVector.hpp"
#include "tracy_robin_hood.h"
#include "../common/TracyForceInline.hpp"
#include "../common/TracyQueue.hpp"
namespace tracy
{
#pragma pack( 1 )
struct StringRef
{
enum Type { Ptr, Idx };
tracy_force_inline StringRef() : str( 0 ), __data( 0 ) {}
tracy_force_inline StringRef( Type t, uint64_t data )
: str( data )
, __data( 0 )
{
isidx = t == Idx;
active = 1;
}
uint64_t str;
union
{
struct
{
uint8_t isidx : 1;
uint8_t active : 1;
};
uint8_t __data;
};
};
struct StringRefHasher
{
size_t operator()( const StringRef& key ) const
{
return charutil::hash( (const char*)&key, sizeof( StringRef ) );
}
};
struct StringRefComparator
{
bool operator()( const StringRef& lhs, const StringRef& rhs ) const
{
return memcmp( &lhs, &rhs, sizeof( StringRef ) ) == 0;
}
};
class StringIdx
{
public:
tracy_force_inline StringIdx() { memset( m_idx, 0, sizeof( m_idx ) ); }
tracy_force_inline StringIdx( uint32_t idx )
{
SetIdx( idx );
}
tracy_force_inline void SetIdx( uint32_t idx )
{
idx++;
memcpy( m_idx, &idx, 3 );
}
tracy_force_inline uint32_t Idx() const
{
uint32_t idx = 0;
memcpy( &idx, m_idx, 3 );
assert( idx != 0 );
return idx - 1;
}
tracy_force_inline bool Active() const
{
uint32_t zero = 0;
return memcmp( m_idx, &zero, 3 ) != 0;
}
private:
uint8_t m_idx[3];
};
struct StringIdxHasher
{
size_t operator()( const StringIdx& key ) const
{
return charutil::hash( (const char*)&key, sizeof( StringIdx ) );
}
};
struct StringIdxComparator
{
bool operator()( const StringIdx& lhs, const StringIdx& rhs ) const
{
return memcmp( &lhs, &rhs, sizeof( StringIdx ) ) == 0;
}
};
class Int24
{
public:
tracy_force_inline Int24() { memset( m_val, 0, sizeof( m_val ) ); }
tracy_force_inline Int24( uint32_t val )
{
SetVal( val );
}
tracy_force_inline void SetVal( uint32_t val )
{
memcpy( m_val, &val, 2 );
val >>= 16;
memcpy( m_val+2, &val, 1 );
}
tracy_force_inline uint32_t Val() const
{
uint8_t hi;
memcpy( &hi, m_val+2, 1 );
uint16_t lo;
memcpy( &lo, m_val, 2 );
return ( uint32_t( hi ) << 16 ) | lo;
}
private:
uint8_t m_val[3];
};
class Int48
{
public:
tracy_force_inline Int48() {}
tracy_force_inline Int48( int64_t val )
{
SetVal( val );
}
tracy_force_inline void Clear()
{
memset( m_val, 0, 6 );
}
tracy_force_inline void SetVal( int64_t val )
{
memcpy( m_val, &val, 4 );
val >>= 32;
memcpy( m_val+4, &val, 2 );
}
tracy_force_inline int64_t Val() const
{
int16_t hi;
memcpy( &hi, m_val+4, 2 );
uint32_t lo;
memcpy( &lo, m_val, 4 );
return ( int64_t( uint64_t( hi ) << 32 ) ) | lo;
}
tracy_force_inline bool IsNonNegative() const
{
return ( m_val[5] >> 7 ) == 0;
}
private:
uint8_t m_val[6];
};
struct Int48Sort { bool operator()( const Int48& lhs, const Int48& rhs ) { return lhs.Val() < rhs.Val(); }; };
struct SourceLocationBase
{
StringRef name;
StringRef function;
StringRef file;
uint32_t line;
uint32_t color;
};
struct SourceLocation : public SourceLocationBase
{
mutable uint32_t namehash;
};
enum { SourceLocationSize = sizeof( SourceLocation ) };
struct ZoneEvent
{
tracy_force_inline ZoneEvent() {};
tracy_force_inline int64_t Start() const { return int64_t( _start_srcloc ) >> 16; }
tracy_force_inline void SetStart( int64_t start ) { assert( start < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_start_srcloc)+2, &start, 4 ); memcpy( ((char*)&_start_srcloc)+6, ((char*)&start)+4, 2 ); }
tracy_force_inline int64_t End() const { return int64_t( _end_child1 ) >> 16; }
tracy_force_inline void SetEnd( int64_t end ) { assert( end < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_end_child1)+2, &end, 4 ); memcpy( ((char*)&_end_child1)+6, ((char*)&end)+4, 2 ); }
tracy_force_inline bool IsEndValid() const { return ( _end_child1 >> 63 ) == 0; }
tracy_force_inline int16_t SrcLoc() const { return int16_t( _start_srcloc & 0xFFFF ); }
tracy_force_inline void SetSrcLoc( int16_t srcloc ) { memcpy( &_start_srcloc, &srcloc, 2 ); }
tracy_force_inline int32_t Child() const { int32_t child; memcpy( &child, &_child2, 4 ); return child; }
tracy_force_inline void SetChild( int32_t child ) { memcpy( &_child2, &child, 4 ); }
tracy_force_inline bool HasChildren() const { uint8_t tmp; memcpy( &tmp, ((char*)&_end_child1)+1, 1 ); return ( tmp >> 7 ) == 0; }
tracy_force_inline void SetStartSrcLoc( int64_t start, int16_t srcloc ) { assert( start < (int64_t)( 1ull << 47 ) ); start <<= 16; start |= uint16_t( srcloc ); memcpy( &_start_srcloc, &start, 8 ); }
uint64_t _start_srcloc;
uint16_t _child2;
uint64_t _end_child1;
uint32_t extra;
};
enum { ZoneEventSize = sizeof( ZoneEvent ) };
static_assert( std::is_standard_layout<ZoneEvent>::value, "ZoneEvent is not standard layout" );
struct ZoneExtra
{
Int24 callstack;
StringIdx text;
StringIdx name;
Int24 color;
};
enum { ZoneExtraSize = sizeof( ZoneExtra ) };
// This union exploits the fact that the current implementations of x64 and arm64 do not provide
// full 64 bit address space. The high bits must be bit-extended, so 0x80... is an invalid pointer.
// This allows using the highest bit as a selector between a native pointer and a table index here.
union CallstackFrameId
{
struct
{
uint64_t idx : 62;
uint64_t sel : 1;
uint64_t custom : 1;
};
uint64_t data;
};
enum { CallstackFrameIdSize = sizeof( CallstackFrameId ) };
static tracy_force_inline bool operator==( const CallstackFrameId& lhs, const CallstackFrameId& rhs ) { return lhs.data == rhs.data; }
struct SampleData
{
Int48 time;
Int24 callstack;
};
enum { SampleDataSize = sizeof( SampleData ) };
struct SampleDataSort { bool operator()( const SampleData& lhs, const SampleData& rhs ) { return lhs.time.Val() < rhs.time.Val(); }; };
struct SampleDataRange
{
Int48 time;
uint16_t thread;
CallstackFrameId ip;
};
enum { SampleDataRangeSize = sizeof( SampleDataRange ) };
struct HwSampleData
{
SortedVector<Int48, Int48Sort> cycles;
SortedVector<Int48, Int48Sort> retired;
SortedVector<Int48, Int48Sort> cacheRef;
SortedVector<Int48, Int48Sort> cacheMiss;
SortedVector<Int48, Int48Sort> branchRetired;
SortedVector<Int48, Int48Sort> branchMiss;
bool is_sorted() const
{
return
cycles.is_sorted() &&
retired.is_sorted() &&
cacheRef.is_sorted() &&
cacheMiss.is_sorted() &&
branchRetired.is_sorted() &&
branchMiss.is_sorted();
}
void sort()
{
if( !cycles.is_sorted() ) cycles.sort();
if( !retired.is_sorted() ) retired.sort();
if( !cacheRef.is_sorted() ) cacheRef.sort();
if( !cacheMiss.is_sorted() ) cacheMiss.sort();
if( !branchRetired.is_sorted() ) branchRetired.sort();
if( !branchMiss.is_sorted() ) branchMiss.sort();
}
};
enum { HwSampleDataSize = sizeof( HwSampleData ) };
struct LockEvent
{
enum class Type : uint8_t
{
Wait,
Obtain,
Release,
WaitShared,
ObtainShared,
ReleaseShared
};
tracy_force_inline int64_t Time() const { return int64_t( _time_srcloc ) >> 16; }
tracy_force_inline void SetTime( int64_t time ) { assert( time < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_time_srcloc)+2, &time, 4 ); memcpy( ((char*)&_time_srcloc)+6, ((char*)&time)+4, 2 ); }
tracy_force_inline int16_t SrcLoc() const { return int16_t( _time_srcloc & 0xFFFF ); }
tracy_force_inline void SetSrcLoc( int16_t srcloc ) { memcpy( &_time_srcloc, &srcloc, 2 ); }
uint64_t _time_srcloc;
uint8_t thread;
Type type;
};
struct LockEventShared : public LockEvent
{
uint64_t waitShared;
uint64_t sharedList;
};
struct LockEventPtr
{
short_ptr<LockEvent> ptr;
uint8_t lockingThread;
uint8_t lockCount;
uint64_t waitList;
};
enum { LockEventSize = sizeof( LockEvent ) };
enum { LockEventSharedSize = sizeof( LockEventShared ) };
enum { LockEventPtrSize = sizeof( LockEventPtr ) };
enum { MaxLockThreads = sizeof( LockEventPtr::waitList ) * 8 };
static_assert( std::numeric_limits<decltype(LockEventPtr::lockCount)>::max() >= MaxLockThreads, "Not enough space for lock count." );
struct GpuEvent
{
tracy_force_inline int64_t CpuStart() const { return int64_t( _cpuStart_srcloc ) >> 16; }
tracy_force_inline void SetCpuStart( int64_t cpuStart ) { assert( cpuStart < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_cpuStart_srcloc)+2, &cpuStart, 4 ); memcpy( ((char*)&_cpuStart_srcloc)+6, ((char*)&cpuStart)+4, 2 ); }
tracy_force_inline int64_t CpuEnd() const { return int64_t( _cpuEnd_thread ) >> 16; }
tracy_force_inline void SetCpuEnd( int64_t cpuEnd ) { assert( cpuEnd < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_cpuEnd_thread)+2, &cpuEnd, 4 ); memcpy( ((char*)&_cpuEnd_thread)+6, ((char*)&cpuEnd)+4, 2 ); }
tracy_force_inline int64_t GpuStart() const { return int64_t( _gpuStart_child1 ) >> 16; }
tracy_force_inline void SetGpuStart( int64_t gpuStart ) { /*assert( gpuStart < (int64_t)( 1ull << 47 ) );*/ memcpy( ((char*)&_gpuStart_child1)+2, &gpuStart, 4 ); memcpy( ((char*)&_gpuStart_child1)+6, ((char*)&gpuStart)+4, 2 ); }
tracy_force_inline int64_t GpuEnd() const { return int64_t( _gpuEnd_child2 ) >> 16; }
tracy_force_inline void SetGpuEnd( int64_t gpuEnd ) { assert( gpuEnd < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_gpuEnd_child2)+2, &gpuEnd, 4 ); memcpy( ((char*)&_gpuEnd_child2)+6, ((char*)&gpuEnd)+4, 2 ); }
tracy_force_inline int16_t SrcLoc() const { return int16_t( _cpuStart_srcloc & 0xFFFF ); }
tracy_force_inline void SetSrcLoc( int16_t srcloc ) { memcpy( &_cpuStart_srcloc, &srcloc, 2 ); }
tracy_force_inline uint16_t Thread() const { return uint16_t( _cpuEnd_thread & 0xFFFF ); }
tracy_force_inline void SetThread( uint16_t thread ) { memcpy( &_cpuEnd_thread, &thread, 2 ); }
tracy_force_inline int32_t Child() const { return int32_t( uint32_t( _gpuStart_child1 & 0xFFFF ) | ( uint32_t( _gpuEnd_child2 & 0xFFFF ) << 16 ) ); }
tracy_force_inline void SetChild( int32_t child ) { memcpy( &_gpuStart_child1, &child, 2 ); memcpy( &_gpuEnd_child2, ((char*)&child)+2, 2 ); }
uint64_t _cpuStart_srcloc;
uint64_t _cpuEnd_thread;
uint64_t _gpuStart_child1;
uint64_t _gpuEnd_child2;
Int24 callstack;
};
enum { GpuEventSize = sizeof( GpuEvent ) };
static_assert( std::is_standard_layout<GpuEvent>::value, "GpuEvent is not standard layout" );
struct MemEvent
{
tracy_force_inline uint64_t Ptr() const { return uint64_t( int64_t( _ptr_csalloc1 ) >> 8 ); }
tracy_force_inline void SetPtr( uint64_t ptr ) { memcpy( ((char*)&_ptr_csalloc1)+1, &ptr, 4 ); memcpy( ((char*)&_ptr_csalloc1)+5, ((char*)&ptr)+4, 2 ); memcpy( ((char*)&_ptr_csalloc1)+7, ((char*)&ptr)+6, 1 ); }
tracy_force_inline uint64_t Size() const { return _size_csalloc2 >> 16; }
tracy_force_inline void SetSize( uint64_t size ) { assert( size < ( 1ull << 47 ) ); memcpy( ((char*)&_size_csalloc2)+2, &size, 4 ); memcpy( ((char*)&_size_csalloc2)+6, ((char*)&size)+4, 2 ); }
tracy_force_inline uint32_t CsAlloc() const { return uint8_t( _ptr_csalloc1 ) | ( uint16_t( _size_csalloc2 ) << 8 ); }
tracy_force_inline void SetCsAlloc( uint32_t csAlloc ) { memcpy( &_ptr_csalloc1, &csAlloc, 1 ); memcpy( &_size_csalloc2, ((char*)&csAlloc)+1, 2 ); }
tracy_force_inline int64_t TimeAlloc() const { return int64_t( _time_thread_alloc ) >> 16; }
tracy_force_inline void SetTimeAlloc( int64_t time ) { assert( time < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_time_thread_alloc)+2, &time, 4 ); memcpy( ((char*)&_time_thread_alloc)+6, ((char*)&time)+4, 2 ); }
tracy_force_inline int64_t TimeFree() const { return int64_t( _time_thread_free ) >> 16; }
tracy_force_inline void SetTimeFree( int64_t time ) { assert( time < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_time_thread_free)+2, &time, 4 ); memcpy( ((char*)&_time_thread_free)+6, ((char*)&time)+4, 2 ); }
tracy_force_inline uint16_t ThreadAlloc() const { return uint16_t( _time_thread_alloc ); }
tracy_force_inline void SetThreadAlloc( uint16_t thread ) { memcpy( &_time_thread_alloc, &thread, 2 ); }
tracy_force_inline uint16_t ThreadFree() const { return uint16_t( _time_thread_free ); }
tracy_force_inline void SetThreadFree( uint16_t thread ) { memcpy( &_time_thread_free, &thread, 2 ); }
tracy_force_inline void SetTimeThreadAlloc( int64_t time, uint16_t thread ) { time <<= 16; time |= thread; memcpy( &_time_thread_alloc, &time, 8 ); }
tracy_force_inline void SetTimeThreadFree( int64_t time, uint16_t thread ) { uint64_t t; memcpy( &t, &time, 8 ); t <<= 16; t |= thread; memcpy( &_time_thread_free, &t, 8 ); }
uint64_t _ptr_csalloc1;
uint64_t _size_csalloc2;
Int24 csFree;
uint64_t _time_thread_alloc;
uint64_t _time_thread_free;
};
enum { MemEventSize = sizeof( MemEvent ) };
static_assert( std::is_standard_layout<MemEvent>::value, "MemEvent is not standard layout" );
struct CallstackFrameBasic
{
StringIdx name;
StringIdx file;
uint32_t line;
};
struct CallstackFrame : public CallstackFrameBasic
{
uint64_t symAddr;
};
struct SymbolData : public CallstackFrameBasic
{
StringIdx imageName;
StringIdx callFile;
uint32_t callLine;
uint8_t isInline;
Int24 size;
};
enum { CallstackFrameBasicSize = sizeof( CallstackFrameBasic ) };
enum { CallstackFrameSize = sizeof( CallstackFrame ) };
enum { SymbolDataSize = sizeof( SymbolData ) };
struct SymbolLocation
{
uint64_t addr;
uint32_t len;
};
enum { SymbolLocationSize = sizeof( SymbolLocation ) };
struct CallstackFrameData
{
short_ptr<CallstackFrame> data;
uint8_t size;
StringIdx imageName;
};
enum { CallstackFrameDataSize = sizeof( CallstackFrameData ) };
struct MemCallstackFrameTree
{
MemCallstackFrameTree( CallstackFrameId id ) : frame( id ), alloc( 0 ), count( 0 ) {}
CallstackFrameId frame;
uint64_t alloc;
uint32_t count;
unordered_flat_map<uint64_t, MemCallstackFrameTree> children;
unordered_flat_set<uint32_t> callstacks;
};
enum { MemCallstackFrameTreeSize = sizeof( MemCallstackFrameTree ) };
struct CallstackFrameTree
{
CallstackFrameTree( CallstackFrameId id ) : frame( id ), count( 0 ) {}
CallstackFrameId frame;
uint32_t count;
unordered_flat_map<uint64_t, CallstackFrameTree> children;
};
enum { CallstackFrameTreeSize = sizeof( CallstackFrameTree ) };
struct CrashEvent
{
uint64_t thread = 0;
int64_t time = 0;
uint64_t message = 0;
uint32_t callstack = 0;
};
enum { CrashEventSize = sizeof( CrashEvent ) };
struct ContextSwitchData
{
enum : int8_t { Fiber = 99 };
enum : int8_t { NoState = 100 };
enum : int8_t { Wakeup = -2 };
tracy_force_inline int64_t Start() const { return int64_t( _start_cpu ) >> 16; }
tracy_force_inline void SetStart( int64_t start ) { assert( start < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_start_cpu)+2, &start, 4 ); memcpy( ((char*)&_start_cpu)+6, ((char*)&start)+4, 2 ); }
tracy_force_inline int64_t End() const { return int64_t( _end_reason_state ) >> 16; }
tracy_force_inline void SetEnd( int64_t end ) { assert( end < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_end_reason_state)+2, &end, 4 ); memcpy( ((char*)&_end_reason_state)+6, ((char*)&end)+4, 2 ); }
tracy_force_inline bool IsEndValid() const { return ( _end_reason_state >> 63 ) == 0; }
tracy_force_inline uint8_t Cpu() const { return uint8_t( _start_cpu & 0xFF ); }
tracy_force_inline void SetCpu( uint8_t cpu ) { memcpy( &_start_cpu, &cpu, 1 ); }
tracy_force_inline int8_t Reason() const { return int8_t( (_end_reason_state >> 8) & 0xFF ); }
tracy_force_inline void SetReason( int8_t reason ) { memcpy( ((char*)&_end_reason_state)+1, &reason, 1 ); }
tracy_force_inline int8_t State() const { return int8_t( _end_reason_state & 0xFF ); }
tracy_force_inline void SetState( int8_t state ) { memcpy( &_end_reason_state, &state, 1 ); }
tracy_force_inline int64_t WakeupVal() const { return _wakeup.Val(); }
tracy_force_inline void SetWakeup( int64_t wakeup ) { assert( wakeup < (int64_t)( 1ull << 47 ) ); _wakeup.SetVal( wakeup ); }
tracy_force_inline uint16_t Thread() const { return _thread; }
tracy_force_inline void SetThread( uint16_t thread ) { _thread = thread; }
tracy_force_inline void SetStartCpu( int64_t start, uint8_t cpu ) { assert( start < (int64_t)( 1ull << 47 ) ); _start_cpu = ( uint64_t( start ) << 16 ) | cpu; }
tracy_force_inline void SetEndReasonState( int64_t end, int8_t reason, int8_t state ) { assert( end < (int64_t)( 1ull << 47 ) ); _end_reason_state = ( uint64_t( end ) << 16 ) | ( uint64_t( reason ) << 8 ) | uint8_t( state ); }
uint64_t _start_cpu;
uint64_t _end_reason_state;
Int48 _wakeup;
uint16_t _thread;
};
enum { ContextSwitchDataSize = sizeof( ContextSwitchData ) };
struct ContextSwitchCpu
{
tracy_force_inline int64_t Start() const { return int64_t( _start_thread ) >> 16; }
tracy_force_inline void SetStart( int64_t start ) { assert( start < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_start_thread)+2, &start, 4 ); memcpy( ((char*)&_start_thread)+6, ((char*)&start)+4, 2 ); }
tracy_force_inline int64_t End() const { int64_t v; memcpy( &v, ((char*)&_end)-2, 8 ); return v >> 16; }
tracy_force_inline void SetEnd( int64_t end ) { assert( end < (int64_t)( 1ull << 47 ) ); _end.SetVal( end ); }
tracy_force_inline bool IsEndValid() const { return _end.IsNonNegative(); }
tracy_force_inline uint16_t Thread() const { return uint16_t( _start_thread ); }
tracy_force_inline void SetThread( uint16_t thread ) { memcpy( &_start_thread, &thread, 2 ); }
tracy_force_inline void SetStartThread( int64_t start, uint16_t thread ) { assert( start < (int64_t)( 1ull << 47 ) ); _start_thread = ( uint64_t( start ) << 16 ) | thread; }
uint64_t _start_thread;
Int48 _end;
};
enum { ContextSwitchCpuSize = sizeof( ContextSwitchCpu ) };
struct ContextSwitchUsage
{
ContextSwitchUsage() {}
ContextSwitchUsage( int64_t time, uint8_t other, uint8_t own ) { SetTime( time ); SetOther( other ); SetOwn( own ); }
tracy_force_inline int64_t Time() const { return int64_t( _time_other_own ) >> 16; }
tracy_force_inline void SetTime( int64_t time ) { assert( time < (int64_t)( 1ull << 47 ) ); memcpy( ((char*)&_time_other_own)+2, &time, 4 ); memcpy( ((char*)&_time_other_own)+6, ((char*)&time)+4, 2 ); }
tracy_force_inline uint8_t Other() const { return uint8_t( _time_other_own ); }
tracy_force_inline void SetOther( uint8_t other ) { memcpy( &_time_other_own, &other, 1 ); }
tracy_force_inline uint8_t Own() const { uint8_t v; memcpy( &v, ((char*)&_time_other_own)+1, 1 );return v; }
tracy_force_inline void SetOwn( uint8_t own ) { memcpy( ((char*)&_time_other_own)+1, &own, 1 ); }
uint64_t _time_other_own;
};
enum { ContextSwitchUsageSize = sizeof( ContextSwitchUsage ) };
struct MessageData
{
int64_t time;
StringRef ref;
uint16_t thread;
uint32_t color;
Int24 callstack;
};
enum { MessageDataSize = sizeof( MessageData ) };
struct PlotItem
{
Int48 time;
double val;
};
enum { PlotItemSize = sizeof( PlotItem ) };
struct FrameEvent
{
int64_t start;
int64_t end;
int32_t frameImage;
};
enum { FrameEventSize = sizeof( FrameEvent ) };
struct FrameImage
{
short_ptr<const char> ptr;
uint32_t csz;
uint16_t w, h;
uint32_t frameRef;
uint8_t flip;
};
enum { FrameImageSize = sizeof( FrameImage ) };
struct GhostZone
{
Int48 start, end;
Int24 frame;
int32_t child;
};
enum { GhostZoneSize = sizeof( GhostZone ) };
struct ChildSample
{
Int48 time;
uint64_t addr;
};
enum { ChildSampleSize = sizeof( ChildSample ) };
#pragma pack()
struct ThreadData
{
uint64_t id;
uint64_t count;
Vector<short_ptr<ZoneEvent>> timeline;
Vector<short_ptr<ZoneEvent>> stack;
Vector<short_ptr<MessageData>> messages;
uint32_t nextZoneId;
Vector<uint32_t> zoneIdStack;
#ifndef TRACY_NO_STATISTICS
Vector<int64_t> childTimeStack;
Vector<GhostZone> ghostZones;
uint64_t ghostIdx;
SortedVector<SampleData, SampleDataSort> postponedSamples;
#endif
Vector<SampleData> samples;
SampleData pendingSample;
Vector<SampleData> ctxSwitchSamples;
uint64_t kernelSampleCnt;
uint8_t isFiber;
ThreadData* fiber;
uint8_t* stackCount;
tracy_force_inline void IncStackCount( int16_t srcloc ) { stackCount[uint16_t(srcloc)]++; }
tracy_force_inline bool DecStackCount( int16_t srcloc ) { return --stackCount[uint16_t(srcloc)] != 0; }
};
struct GpuCtxThreadData
{
Vector<short_ptr<GpuEvent>> timeline;
Vector<short_ptr<GpuEvent>> stack;
};
struct GpuCtxData
{
int64_t timeDiff;
uint64_t thread;
uint64_t count;
float period;
GpuContextType type;
bool hasPeriod;
bool hasCalibration;
int64_t calibratedGpuTime;
int64_t calibratedCpuTime;
double calibrationMod;
int64_t lastGpuTime;
uint64_t overflow;
uint32_t overflowMul;
StringIdx name;
unordered_flat_map<uint64_t, GpuCtxThreadData> threadData;
short_ptr<GpuEvent> query[64*1024];
};
enum { GpuCtxDataSize = sizeof( GpuCtxData ) };
enum class LockType : uint8_t;
struct LockMap
{
struct TimeRange
{
int64_t start = std::numeric_limits<int64_t>::max();
int64_t end = std::numeric_limits<int64_t>::min();
};
StringIdx customName;
int16_t srcloc;
Vector<LockEventPtr> timeline;
unordered_flat_map<uint64_t, uint8_t> threadMap;
std::vector<uint64_t> threadList;
LockType type;
int64_t timeAnnounce;
int64_t timeTerminate;
bool valid;
bool isContended;
TimeRange range[64];
};
struct LockHighlight
{
int64_t id;
int64_t begin;
int64_t end;
uint8_t thread;
bool blocked;
};
enum class PlotType : uint8_t
{
User,
Memory,
SysTime
};
enum class PlotValueFormatting : uint8_t
{
Number,
Memory,
Percentage
};
struct PlotData
{
struct PlotItemSort { bool operator()( const PlotItem& lhs, const PlotItem& rhs ) { return lhs.time.Val() < rhs.time.Val(); }; };
uint64_t name;
double min;
double max;
double sum;
SortedVector<PlotItem, PlotItemSort> data;
PlotType type;
PlotValueFormatting format;
};
struct MemData
{
Vector<MemEvent> data;
Vector<uint32_t> frees;
unordered_flat_map<uint64_t, size_t> active;
uint64_t high = std::numeric_limits<uint64_t>::min();
uint64_t low = std::numeric_limits<uint64_t>::max();
uint64_t usage = 0;
PlotData* plot = nullptr;
bool reconstruct = false;
uint64_t name = 0;
};
struct FrameData
{
uint64_t name;
Vector<FrameEvent> frames;
uint8_t continuous;
int64_t min = std::numeric_limits<int64_t>::max();
int64_t max = std::numeric_limits<int64_t>::min();
int64_t total = 0;
double sumSq = 0;
};
struct StringLocation
{
const char* ptr;
uint32_t idx;
};
struct SourceLocationHasher
{
size_t operator()( const SourceLocation* ptr ) const
{
return charutil::hash( (const char*)ptr, sizeof( SourceLocationBase ) );
}
};
struct SourceLocationComparator
{
bool operator()( const SourceLocation* lhs, const SourceLocation* rhs ) const
{
return memcmp( lhs, rhs, sizeof( SourceLocationBase ) ) == 0;
}
};
struct ContextSwitch
{
Vector<ContextSwitchData> v;
int64_t runningTime = 0;
};
struct CpuData
{
Vector<ContextSwitchCpu> cs;
};
struct CpuThreadData
{
int64_t runningTime = 0;
uint32_t runningRegions = 0;
uint32_t migrations = 0;
};
enum { CpuThreadDataSize = sizeof( CpuThreadData ) };
struct Parameter
{
uint32_t idx;
StringRef name;
bool isBool;
int32_t val;
};
struct SymbolStats
{
uint32_t incl, excl;
unordered_flat_map<uint32_t, uint32_t> parents;
unordered_flat_map<uint32_t, uint32_t> baseParents;
};
enum { SymbolStatsSize = sizeof( SymbolStats ) };
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyEvent.hpp
|
C++
|
gpl-3.0
| 24,966
|
#include <assert.h>
#include <stdio.h>
#include <inttypes.h>
#include "TracyEventDebug.hpp"
#include "../common/TracyQueue.hpp"
namespace tracy
{
void EventDebug( const QueueItem& ev )
{
static FILE* f = fopen( "eventdebug.txt", "wb" );
switch( ev.hdr.type )
{
case QueueType::ZoneText:
fprintf( f, "ev %i (ZoneText)\n", ev.hdr.idx );
break;
case QueueType::ZoneName:
fprintf( f, "ev %i (ZoneName)\n", ev.hdr.idx );
break;
case QueueType::Message:
fprintf( f, "ev %i (Message)\n", ev.hdr.idx );
break;
case QueueType::MessageColor:
fprintf( f, "ev %i (MessageColor)\n", ev.hdr.idx );
break;
case QueueType::MessageCallstack:
fprintf( f, "ev %i (MessageCallstack)\n", ev.hdr.idx );
break;
case QueueType::MessageColorCallstack:
fprintf( f, "ev %i (MessageColorCallstack)\n", ev.hdr.idx );
break;
case QueueType::MessageAppInfo:
fprintf( f, "ev %i (MessageAppInfo)\n", ev.hdr.idx );
break;
case QueueType::ZoneBeginAllocSrcLoc:
fprintf( f, "ev %i (ZoneBeginAllocSrcLoc)\n", ev.hdr.idx );
break;
case QueueType::ZoneBeginAllocSrcLocCallstack:
fprintf( f, "ev %i (ZoneBeginAllocSrcLocCallstack)\n", ev.hdr.idx );
break;
case QueueType::CallstackSerial:
fprintf( f, "ev %i (CallstackSerial)\n", ev.hdr.idx );
break;
case QueueType::Callstack:
fprintf( f, "ev %i (Callstack)\n", ev.hdr.idx );
break;
case QueueType::CallstackAlloc:
fprintf( f, "ev %i (CallstackAlloc)\n", ev.hdr.idx );
break;
case QueueType::CallstackSample:
fprintf( f, "ev %i (CallstackSample)\n", ev.hdr.idx );
break;
case QueueType::CallstackSampleContextSwitch:
fprintf( f, "ev %i (CallstackSampleContextSwitch)\n", ev.hdr.idx );
break;
case QueueType::FrameImage:
fprintf( f, "ev %i (FrameImage)\n", ev.hdr.idx );
break;
case QueueType::ZoneBegin:
fprintf( f, "ev %i (ZoneBegin)\n", ev.hdr.idx );
fprintf( f, "\ttime = %" PRIi64 "\n", ev.zoneBeginLean.time );
break;
case QueueType::ZoneBeginCallstack:
fprintf( f, "ev %i (ZoneBeginCallstack)\n", ev.hdr.idx );
break;
case QueueType::ZoneEnd:
fprintf( f, "ev %i (ZoneEnd)\n", ev.hdr.idx );
fprintf( f, "\ttime = %" PRIi64 "\n", ev.zoneEnd.time );
break;
case QueueType::LockWait:
fprintf( f, "ev %i (LockWait)\n", ev.hdr.idx );
break;
case QueueType::LockObtain:
fprintf( f, "ev %i (LockObtain)\n", ev.hdr.idx );
break;
case QueueType::LockRelease:
fprintf( f, "ev %i (LockRelease)\n", ev.hdr.idx );
break;
case QueueType::LockSharedWait:
fprintf( f, "ev %i (LockSharedWait)\n", ev.hdr.idx );
break;
case QueueType::LockSharedObtain:
fprintf( f, "ev %i (LockSharedObtain)\n", ev.hdr.idx );
break;
case QueueType::LockSharedRelease:
fprintf( f, "ev %i (LockSharedRelease)\n", ev.hdr.idx );
break;
case QueueType::LockName:
fprintf( f, "ev %i (LockName)\n", ev.hdr.idx );
break;
case QueueType::MemAlloc:
fprintf( f, "ev %i (MemAlloc)\n", ev.hdr.idx );
break;
case QueueType::MemAllocNamed:
fprintf( f, "ev %i (MemAllocNamed)\n", ev.hdr.idx );
break;
case QueueType::MemFree:
fprintf( f, "ev %i (MemFree)\n", ev.hdr.idx );
break;
case QueueType::MemFreeNamed:
fprintf( f, "ev %i (MemFreeNamed)\n", ev.hdr.idx );
break;
case QueueType::MemAllocCallstack:
fprintf( f, "ev %i (MemAllocCallstack)\n", ev.hdr.idx );
break;
case QueueType::MemAllocCallstackNamed:
fprintf( f, "ev %i (MemAllocCallstackNamed)\n", ev.hdr.idx );
break;
case QueueType::MemFreeCallstack:
fprintf( f, "ev %i (MemFreeCallstack)\n", ev.hdr.idx );
break;
case QueueType::MemFreeCallstackNamed:
fprintf( f, "ev %i (MemFreeCallstackNamed)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBegin:
fprintf( f, "ev %i (GpuZoneBegin)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginCallstack:
fprintf( f, "ev %i (GpuZoneBeginCallstack)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginAllocSrcLoc:
fprintf( f, "ev %i (GpuZoneBeginAllocSrcLoc)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginAllocSrcLocCallstack:
fprintf( f, "ev %i (GpuZoneBeginAllocSrcLocCallstack)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneEnd:
fprintf( f, "ev %i (GpuZoneEnd)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginSerial:
fprintf( f, "ev %i (GpuZoneBeginSerial)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginCallstackSerial:
fprintf( f, "ev %i (GpuZoneBeginCallstackSerial)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginAllocSrcLocSerial:
fprintf( f, "ev %i (GpuZoneBeginAllocSrcLocSerial)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneBeginAllocSrcLocCallstackSerial:
fprintf( f, "ev %i (GpuZoneBeginAllocSrcLocCallstackSerial)\n", ev.hdr.idx );
break;
case QueueType::GpuZoneEndSerial:
fprintf( f, "ev %i (GpuZoneEndSerial)\n", ev.hdr.idx );
break;
case QueueType::PlotData:
fprintf( f, "ev %i (PlotData)\n", ev.hdr.idx );
break;
case QueueType::ContextSwitch:
fprintf( f, "ev %i (ContextSwitch)\n", ev.hdr.idx );
break;
case QueueType::ThreadWakeup:
fprintf( f, "ev %i (ThreadWakeup)\n", ev.hdr.idx );
break;
case QueueType::GpuTime:
fprintf( f, "ev %i (GpuTime)\n", ev.hdr.idx );
break;
case QueueType::GpuContextName:
fprintf( f, "ev %i (GpuContextName)\n", ev.hdr.idx );
break;
case QueueType::CallstackFrameSize:
fprintf( f, "ev %i (CallstackFrameSize)\n", ev.hdr.idx );
break;
case QueueType::SymbolInformation:
fprintf( f, "ev %i (SymbolInformation)\n", ev.hdr.idx );
break;
case QueueType::CodeInformation:
fprintf( f, "ev %i (CodeInformation)\n", ev.hdr.idx );
break;
case QueueType::FiberEnter:
fprintf( f, "ev %i (FiberEnter)\n", ev.hdr.idx );
fprintf( f, "\ttime = %" PRIi64 "\n", ev.fiberEnter.time );
fprintf( f, "\tfiber = %" PRIu64 "\n", ev.fiberEnter.fiber );
fprintf( f, "\tthread = %" PRIu32 "\n", ev.fiberEnter.thread );
break;
case QueueType::FiberLeave:
fprintf( f, "ev %i (FiberLeave)\n", ev.hdr.idx );
fprintf( f, "\ttime = %" PRIi64 "\n", ev.fiberLeave.time );
fprintf( f, "\tthread = %" PRIu32 "\n", ev.fiberLeave.thread );
break;
case QueueType::Terminate:
fprintf( f, "ev %i (Terminate)\n", ev.hdr.idx );
break;
case QueueType::KeepAlive:
fprintf( f, "ev %i (KeepAlive)\n", ev.hdr.idx );
break;
case QueueType::ThreadContext:
fprintf( f, "ev %i (ThreadContext)\n", ev.hdr.idx );
fprintf( f, "\tthread = %" PRIu32 "\n", ev.threadCtx.thread );
break;
case QueueType::GpuCalibration:
fprintf( f, "ev %i (GpuCalibration)\n", ev.hdr.idx );
break;
case QueueType::Crash:
fprintf( f, "ev %i (Crash)\n", ev.hdr.idx );
break;
case QueueType::CrashReport:
fprintf( f, "ev %i (CrashReport)\n", ev.hdr.idx );
break;
case QueueType::ZoneValidation:
fprintf( f, "ev %i (ZoneValidation)\n", ev.hdr.idx );
fprintf( f, "\tid = %" PRIu32 "\n", ev.zoneValidation.id );
break;
case QueueType::ZoneColor:
fprintf( f, "ev %i (ZoneColor)\n", ev.hdr.idx );
break;
case QueueType::ZoneValue:
fprintf( f, "ev %i (ZoneValue)\n", ev.hdr.idx );
break;
case QueueType::FrameMarkMsg:
fprintf( f, "ev %i (FrameMarkMsg)\n", ev.hdr.idx );
break;
case QueueType::FrameMarkMsgStart:
fprintf( f, "ev %i (FrameMarkMsgStart)\n", ev.hdr.idx );
break;
case QueueType::FrameMarkMsgEnd:
fprintf( f, "ev %i (FrameMarkMsgEnd)\n", ev.hdr.idx );
break;
case QueueType::SourceLocation:
fprintf( f, "ev %i (SourceLocation)\n", ev.hdr.idx );
break;
case QueueType::LockAnnounce:
fprintf( f, "ev %i (LockAnnounce)\n", ev.hdr.idx );
break;
case QueueType::LockTerminate:
fprintf( f, "ev %i (LockTerminate)\n", ev.hdr.idx );
break;
case QueueType::LockMark:
fprintf( f, "ev %i (LockMark)\n", ev.hdr.idx );
break;
case QueueType::MessageLiteral:
fprintf( f, "ev %i (MessageLiteral)\n", ev.hdr.idx );
break;
case QueueType::MessageLiteralColor:
fprintf( f, "ev %i (MessageLiteralColor)\n", ev.hdr.idx );
break;
case QueueType::MessageLiteralCallstack:
fprintf( f, "ev %i (MessageLiteralCallstack)\n", ev.hdr.idx );
break;
case QueueType::MessageLiteralColorCallstack:
fprintf( f, "ev %i (MessageLiteralColorCallstack)\n", ev.hdr.idx );
break;
case QueueType::GpuNewContext:
fprintf( f, "ev %i (GpuNewContext)\n", ev.hdr.idx );
break;
case QueueType::CallstackFrame:
fprintf( f, "ev %i (CallstackFrame)\n", ev.hdr.idx );
break;
case QueueType::SysTimeReport:
fprintf( f, "ev %i (SysTimeReport)\n", ev.hdr.idx );
fprintf( f, "\ttime = %" PRIi64 "\n", ev.sysTime.time );
fprintf( f, "\tsysTime = %f\n", ev.sysTime.sysTime );
break;
case QueueType::TidToPid:
fprintf( f, "ev %i (TidToPid)\n", ev.hdr.idx );
break;
case QueueType::HwSampleCpuCycle:
fprintf( f, "ev %i (HwSampleCpuCycle)\n", ev.hdr.idx );
break;
case QueueType::HwSampleInstructionRetired:
fprintf( f, "ev %i (HwSampleInstructionRetired)\n", ev.hdr.idx );
break;
case QueueType::HwSampleCacheReference:
fprintf( f, "ev %i (HwSampleCacheReference)\n", ev.hdr.idx );
break;
case QueueType::HwSampleCacheMiss:
fprintf( f, "ev %i (HwSampleCacheMiss)\n", ev.hdr.idx );
break;
case QueueType::HwSampleBranchRetired:
fprintf( f, "ev %i (HwSampleBranchRetired)\n", ev.hdr.idx );
break;
case QueueType::HwSampleBranchMiss:
fprintf( f, "ev %i (HwSampleBranchMiss)\n", ev.hdr.idx );
break;
case QueueType::PlotConfig:
fprintf( f, "ev %i (PlotConfig)\n", ev.hdr.idx );
break;
case QueueType::ParamSetup:
fprintf( f, "ev %i (ParamSetup)\n", ev.hdr.idx );
break;
case QueueType::AckServerQueryNoop:
fprintf( f, "ev %i (AckServerQueryNoop)\n", ev.hdr.idx );
break;
case QueueType::AckSourceCodeNotAvailable:
fprintf( f, "ev %i (AckSourceCodeNotAvailable)\n", ev.hdr.idx );
break;
case QueueType::AckSymbolCodeNotAvailable:
fprintf( f, "ev %i (AckSymbolCodeNotAvailable)\n", ev.hdr.idx );
break;
case QueueType::CpuTopology:
fprintf( f, "ev %i (CpuTopology)\n", ev.hdr.idx );
fprintf( f, "\tpackage = %" PRIu32 "\n", ev.cpuTopology.package );
fprintf( f, "\tcore = %" PRIu32 "\n", ev.cpuTopology.core );
fprintf( f, "\tthread = %" PRIu32 "\n", ev.cpuTopology.thread );
break;
case QueueType::SingleStringData:
fprintf( f, "ev %i (SingleStringData)\n", ev.hdr.idx );
break;
case QueueType::SecondStringData:
fprintf( f, "ev %i (SecondStringData)\n", ev.hdr.idx );
break;
case QueueType::MemNamePayload:
fprintf( f, "ev %i (MemNamePayload)\n", ev.hdr.idx );
break;
case QueueType::StringData:
fprintf( f, "ev %i (StringData)\n", ev.hdr.idx );
break;
case QueueType::ThreadName:
fprintf( f, "ev %i (ThreadName)\n", ev.hdr.idx );
break;
case QueueType::PlotName:
fprintf( f, "ev %i (PlotName)\n", ev.hdr.idx );
break;
case QueueType::SourceLocationPayload:
fprintf( f, "ev %i (SourceLocationPayload)\n", ev.hdr.idx );
break;
case QueueType::CallstackPayload:
fprintf( f, "ev %i (CallstackPayload)\n", ev.hdr.idx );
break;
case QueueType::CallstackAllocPayload:
fprintf( f, "ev %i (CallstackAllocPayload)\n", ev.hdr.idx );
break;
case QueueType::FrameName:
fprintf( f, "ev %i (FrameName)\n", ev.hdr.idx );
break;
case QueueType::FrameImageData:
fprintf( f, "ev %i (FrameImageData)\n", ev.hdr.idx );
break;
case QueueType::ExternalName:
fprintf( f, "ev %i (ExternalName)\n", ev.hdr.idx );
break;
case QueueType::ExternalThreadName:
fprintf( f, "ev %i (ExternalThreadName)\n", ev.hdr.idx );
break;
case QueueType::SymbolCode:
fprintf( f, "ev %i (SymbolCode)\n", ev.hdr.idx );
break;
case QueueType::SourceCode:
fprintf( f, "ev %i (SourceCode)\n", ev.hdr.idx );
break;
case QueueType::FiberName:
fprintf( f, "ev %i (FiberName)\n", ev.hdr.idx );
break;
default:
assert( false );
break;
}
fflush( f );
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyEventDebug.cpp
|
C++
|
gpl-3.0
| 13,381
|
#ifndef __TRACYEVENTDEBUG_HPP__
#define __TRACYEVENTDEBUG_HPP__
namespace tracy
{
struct QueueItem;
void EventDebug( const QueueItem& ev );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyEventDebug.hpp
|
C++
|
gpl-3.0
| 151
|
#ifndef __TRACYFILEHEADER_HPP__
#define __TRACYFILEHEADER_HPP__
#include <stdint.h>
#include "../common/TracyForceInline.hpp"
namespace tracy
{
static const char Lz4Header[4] = { 't', 'l', 'Z', 4 };
static const char ZstdHeader[4] = { 't', 'Z', 's', 't' };
static constexpr tracy_force_inline int FileVersion( uint8_t h5, uint8_t h6, uint8_t h7 )
{
return ( h5 << 16 ) | ( h6 << 8 ) | h7;
}
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyFileHeader.hpp
|
C++
|
gpl-3.0
| 412
|
#ifndef __TRACYFILEREAD_HPP__
#define __TRACYFILEREAD_HPP__
#include <assert.h>
#include <atomic>
#include <algorithm>
#include <stdexcept>
#include <stdio.h>
#include <string.h>
#include <string>
#include <thread>
#include <utility>
#include <sys/stat.h>
#ifdef _MSC_VER
# define stat64 _stat64
#endif
#if defined __APPLE__
# define stat64 stat
#endif
#include "TracyFileHeader.hpp"
#include "TracyMmap.hpp"
#include "../common/TracyYield.hpp"
#include "../common/tracy_lz4.hpp"
#include "../common/TracyForceInline.hpp"
#include "../zstd/zstd.h"
namespace tracy
{
struct NotTracyDump : public std::exception {};
struct FileReadError : public std::exception {};
class FileRead
{
public:
static FileRead* Open( const char* fn )
{
auto f = fopen( fn, "rb" );
return f ? new FileRead( f, fn ) : nullptr;
}
~FileRead()
{
m_exit.store( true, std::memory_order_relaxed );
m_decThread.join();
if( m_data ) munmap( m_data, m_dataSize );
if( m_stream ) LZ4_freeStreamDecode( m_stream );
if( m_streamZstd ) ZSTD_freeDStream( m_streamZstd );
}
tracy_force_inline void Read( void* ptr, size_t size )
{
if( size <= BufSize - m_offset )
{
ReadSmall( ptr, size );
}
else
{
ReadBig( ptr, size );
}
}
tracy_force_inline void Skip( size_t size )
{
if( size <= BufSize - m_offset )
{
m_offset += size;
}
else
{
SkipBig( size );
}
}
template<class T>
tracy_force_inline void Read( T& v )
{
if( sizeof( T ) <= BufSize - m_offset )
{
memcpy( &v, m_buf + m_offset, sizeof( T ) );
m_offset += sizeof( T );
}
else
{
T tmp;
ReadBig( &tmp, sizeof( T ) );
memcpy( &v, &tmp, sizeof( T ) );
}
}
template<class T, class U>
tracy_force_inline void Read2( T& v0, U& v1 )
{
if( sizeof( T ) + sizeof( U ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
m_offset += sizeof( T ) + sizeof( U );
}
else
{
char tmp[sizeof( T ) + sizeof( U )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
}
}
template<class T, class U, class V>
tracy_force_inline void Read3( T& v0, U& v1, V& v2 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
}
}
template<class T, class U, class V, class W>
tracy_force_inline void Read4( T& v0, U& v1, V& v2, W& v3 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
}
}
template<class T, class U, class V, class W, class X>
tracy_force_inline void Read5( T& v0, U& v1, V& v2, W& v3, X& v4 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
}
}
template<class T, class U, class V, class W, class X, class Y>
tracy_force_inline void Read6( T& v0, U& v1, V& v2, W& v3, X& v4, Y& v5 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
}
}
template<class T, class U, class V, class W, class X, class Y, class Z>
tracy_force_inline void Read7( T& v0, U& v1, V& v2, W& v3, X& v4, Y& v5, Z& v6 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
}
}
template<class T, class U, class V, class W, class X, class Y, class Z, class A>
tracy_force_inline void Read8( T& v0, U& v1, V& v2, W& v3, X& v4, Y& v5, Z& v6, A& v7 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
memcpy( &v7, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ), sizeof( A ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
memcpy( &v7, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ), sizeof( A ) );
}
}
template<class T, class U, class V, class W, class X, class Y, class Z, class A, class B>
tracy_force_inline void Read9( T& v0, U& v1, V& v2, W& v3, X& v4, Y& v5, Z& v6, A& v7, B& v8 )
{
if( sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) + sizeof( B ) <= BufSize - m_offset )
{
memcpy( &v0, m_buf + m_offset, sizeof( T ) );
memcpy( &v1, m_buf + m_offset + sizeof( T ), sizeof( U ) );
memcpy( &v2, m_buf + m_offset + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
memcpy( &v7, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ), sizeof( A ) );
memcpy( &v8, m_buf + m_offset + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ), sizeof( B ) );
m_offset += sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) + sizeof( B );
}
else
{
char tmp[sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) + sizeof( B )];
ReadBig( tmp, sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ) + sizeof( B ) );
memcpy( &v0, tmp, sizeof( T ) );
memcpy( &v1, tmp + sizeof( T ), sizeof( U ) );
memcpy( &v2, tmp + sizeof( T ) + sizeof( U ), sizeof( V ) );
memcpy( &v3, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ), sizeof( W ) );
memcpy( &v4, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ), sizeof( X ) );
memcpy( &v5, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ), sizeof( Y ) );
memcpy( &v6, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ), sizeof( Z ) );
memcpy( &v7, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ), sizeof( A ) );
memcpy( &v8, tmp + sizeof( T ) + sizeof( U ) + sizeof( V ) + sizeof( W ) + sizeof( X ) + sizeof( Y ) + sizeof( Z ) + sizeof( A ), sizeof( B ) );
}
}
const std::string& GetFilename() const { return m_filename; }
private:
FileRead( FILE* f, const char* fn )
: m_stream( nullptr )
, m_streamZstd( nullptr )
, m_data( nullptr )
, m_buf( m_bufData[1] )
, m_second( m_bufData[0] )
, m_offset( 0 )
, m_lastBlock( 0 )
, m_signalSwitch( false )
, m_signalAvailable( false )
, m_exit( false )
, m_filename( fn )
{
char hdr[4];
if( fread( hdr, 1, sizeof( hdr ), f ) != sizeof( hdr ) )
{
fclose( f );
throw NotTracyDump();
}
if( memcmp( hdr, Lz4Header, sizeof( hdr ) ) == 0 )
{
m_stream = LZ4_createStreamDecode();
}
else if( memcmp( hdr, ZstdHeader, sizeof( hdr ) ) == 0 )
{
m_streamZstd = ZSTD_createDStream();
}
else
{
fclose( f );
throw NotTracyDump();
}
struct stat64 buf;
if( stat64( fn, &buf ) == 0 )
{
m_dataSize = buf.st_size;
}
else
{
fclose( f );
throw FileReadError();
}
m_data = (char*)mmap( nullptr, m_dataSize, PROT_READ, MAP_SHARED, fileno( f ), 0 );
fclose( f );
if( !m_data )
{
throw FileReadError();
}
m_dataOffset = sizeof( hdr );
ReadBlock( ReadBlockSize() );
std::swap( m_buf, m_second );
m_decThread = std::thread( [this] { Worker(); } );
}
tracy_force_inline uint32_t ReadBlockSize()
{
uint32_t sz;
memcpy( &sz, m_data + m_dataOffset, sizeof( sz ) );
m_dataOffset += sizeof( sz );
return sz;
}
void Worker()
{
uint32_t blockSz = ReadBlockSize();
for(;;)
{
ReadBlock( blockSz );
if( m_lastBlock == BufSize ) blockSz = ReadBlockSize();
for(;;)
{
if( m_exit.load( std::memory_order_relaxed ) == true ) return;
if( m_signalSwitch.load( std::memory_order_relaxed ) == true ) break;
YieldThread();
}
m_signalSwitch.store( false, std::memory_order_relaxed );
std::swap( m_buf, m_second );
m_offset = 0;
m_signalAvailable.store( true, std::memory_order_release );
if( m_lastBlock != BufSize ) return;
}
}
tracy_force_inline void ReadSmall( void* ptr, size_t size )
{
memcpy( ptr, m_buf + m_offset, size );
m_offset += size;
}
void ReadBig( void* ptr, size_t size )
{
assert( size > 0 );
auto dst = (char*)ptr;
do
{
size_t sz;
if( m_offset == BufSize )
{
sz = std::min<size_t>( size, BufSize );
m_signalSwitch.store( true, std::memory_order_relaxed );
while( m_signalAvailable.load( std::memory_order_acquire ) == false ) { YieldThread(); }
m_signalAvailable.store( false, std::memory_order_relaxed );
assert( m_offset == 0 );
memcpy( dst, m_buf, sz );
m_offset = sz;
}
else
{
sz = std::min( size, BufSize - m_offset );
memcpy( dst, m_buf + m_offset, sz );
m_offset += sz;
}
dst += sz;
size -= sz;
}
while( size > 0 );
}
void SkipBig( size_t size )
{
while( size > 0 )
{
if( m_offset == BufSize )
{
m_signalSwitch.store( true, std::memory_order_relaxed );
while( m_signalAvailable.load( std::memory_order_acquire ) == false ) { YieldThread(); }
m_signalAvailable.store( false, std::memory_order_relaxed );
}
const auto sz = std::min( size, BufSize - m_offset );
m_offset += sz;
size -= sz;
}
}
void ReadBlock( uint32_t sz )
{
if( m_stream )
{
m_lastBlock = (size_t)LZ4_decompress_safe_continue( m_stream, m_data + m_dataOffset, m_second, sz, BufSize );
m_dataOffset += sz;
}
else
{
ZSTD_outBuffer out = { m_second, BufSize, 0 };
ZSTD_inBuffer in = { m_data + m_dataOffset, sz, 0 };
m_dataOffset += sz;
const auto ret = ZSTD_decompressStream( m_streamZstd, &out, &in );
assert( ret > 0 );
m_lastBlock = out.pos;
}
}
enum { BufSize = 64 * 1024 };
enum { LZ4Size = std::max( LZ4_COMPRESSBOUND( BufSize ), ZSTD_COMPRESSBOUND( BufSize ) ) };
LZ4_streamDecode_t* m_stream;
ZSTD_DStream* m_streamZstd;
char* m_data;
uint64_t m_dataSize;
uint64_t m_dataOffset;
char* m_buf;
char* m_second;
size_t m_offset;
size_t m_lastBlock;
alignas(64) std::atomic<bool> m_signalSwitch;
alignas(64) std::atomic<bool> m_signalAvailable;
alignas(64) std::atomic<bool> m_exit;
std::thread m_decThread;
std::string m_filename;
char m_bufData[2][BufSize];
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyFileRead.hpp
|
C++
|
gpl-3.0
| 20,037
|
#ifndef __TRACYFILEWRITE_HPP__
#define __TRACYFILEWRITE_HPP__
#ifdef _MSC_VER
# pragma warning( disable: 4267 ) // conversion from don't care to whatever, possible loss of data
#endif
#include <algorithm>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <utility>
#include "TracyFileHeader.hpp"
#include "../common/tracy_lz4.hpp"
#include "../common/tracy_lz4hc.hpp"
#include "../common/TracyForceInline.hpp"
#include "../zstd/zstd.h"
namespace tracy
{
class FileWrite
{
public:
enum class Compression
{
Fast,
Slow,
Extreme,
Zstd
};
static FileWrite* Open( const char* fn, Compression comp = Compression::Fast, int level = 1 )
{
auto f = fopen( fn, "wb" );
return f ? new FileWrite( f, comp, level ) : nullptr;
}
~FileWrite()
{
if( m_offset > 0 ) WriteLz4Block();
fclose( m_file );
if( m_stream ) LZ4_freeStream( m_stream );
if( m_streamHC ) LZ4_freeStreamHC( m_streamHC );
if( m_streamZstd ) ZSTD_freeCStream( m_streamZstd );
}
void Finish()
{
if( m_offset > 0 ) WriteLz4Block();
}
tracy_force_inline void Write( const void* ptr, size_t size )
{
if( m_offset + size <= BufSize )
{
WriteSmall( ptr, size );
}
else
{
WriteBig( ptr, size );
}
}
std::pair<size_t, size_t> GetCompressionStatistics() const { return std::make_pair( m_srcBytes, m_dstBytes ); }
private:
FileWrite( FILE* f, Compression comp, int level )
: m_stream( nullptr )
, m_streamHC( nullptr )
, m_streamZstd( nullptr )
, m_file( f )
, m_buf( m_bufData[0] )
, m_second( m_bufData[1] )
, m_offset( 0 )
, m_srcBytes( 0 )
, m_dstBytes( 0 )
{
switch( comp )
{
case Compression::Fast:
m_stream = LZ4_createStream();
break;
case Compression::Slow:
m_streamHC = LZ4_createStreamHC();
break;
case Compression::Extreme:
m_streamHC = LZ4_createStreamHC();
LZ4_resetStreamHC( m_streamHC, LZ4HC_CLEVEL_MAX );
break;
case Compression::Zstd:
m_streamZstd = ZSTD_createCStream();
ZSTD_CCtx_setParameter( m_streamZstd, ZSTD_c_compressionLevel, level );
ZSTD_CCtx_setParameter( m_streamZstd, ZSTD_c_contentSizeFlag, 0 );
break;
default:
assert( false );
break;
}
if( comp == Compression::Zstd )
{
fwrite( ZstdHeader, 1, sizeof( ZstdHeader ), m_file );
}
else
{
fwrite( Lz4Header, 1, sizeof( Lz4Header ), m_file );
}
}
tracy_force_inline void WriteSmall( const void* ptr, size_t size )
{
memcpy( m_buf + m_offset, ptr, size );
m_offset += size;
}
void WriteBig( const void* ptr, size_t size )
{
auto src = (const char*)ptr;
while( size > 0 )
{
const auto sz = std::min( size, BufSize - m_offset );
memcpy( m_buf + m_offset, src, sz );
m_offset += sz;
src += sz;
size -= sz;
if( m_offset == BufSize )
{
WriteLz4Block();
}
}
}
void WriteLz4Block()
{
char lz4[LZ4Size];
uint32_t sz;
if( m_stream )
{
sz = LZ4_compress_fast_continue( m_stream, m_buf, lz4, m_offset, LZ4Size, 1 );
}
else if( m_streamZstd )
{
ZSTD_outBuffer out = { lz4, LZ4Size, 0 };
ZSTD_inBuffer in = { m_buf, m_offset, 0 };
const auto ret = ZSTD_compressStream2( m_streamZstd, &out, &in, ZSTD_e_flush );
assert( ret == 0 );
sz = out.pos;
}
else
{
sz = LZ4_compress_HC_continue( m_streamHC, m_buf, lz4, m_offset, LZ4Size );
}
m_srcBytes += m_offset;
m_dstBytes += sz;
fwrite( &sz, 1, sizeof( sz ), m_file );
fwrite( lz4, 1, sz, m_file );
m_offset = 0;
std::swap( m_buf, m_second );
}
enum { BufSize = 64 * 1024 };
enum { LZ4Size = std::max( LZ4_COMPRESSBOUND( BufSize ), ZSTD_COMPRESSBOUND( BufSize ) ) };
LZ4_stream_t* m_stream;
LZ4_streamHC_t* m_streamHC;
ZSTD_CStream* m_streamZstd;
FILE* m_file;
char m_bufData[2][BufSize];
char* m_buf;
char* m_second;
size_t m_offset;
size_t m_srcBytes;
size_t m_dstBytes;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyFileWrite.hpp
|
C++
|
gpl-3.0
| 4,653
|
#include "TracyFilesystem.hpp"
#include "TracyView.hpp"
namespace tracy
{
bool SourceFileValid( const char* fn, uint64_t olderThan, const View& view, const Worker& worker )
{
if( worker.GetSourceFileFromCache( fn ).data != nullptr ) return true;
struct stat buf;
if( stat( view.SourceSubstitution( fn ), &buf ) == 0 && ( buf.st_mode & S_IFREG ) != 0 )
{
return (uint64_t)buf.st_mtime < olderThan;
}
return false;
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyFilesystem.cpp
|
C++
|
gpl-3.0
| 452
|
#ifndef __TRACYFILESYSTEM_HPP__
#define __TRACYFILESYSTEM_HPP__
#include <stdint.h>
#include <sys/stat.h>
namespace tracy
{
class View;
class Worker;
static inline bool FileExists( const char* fn )
{
struct stat buf;
return stat( fn, &buf ) == 0 && ( buf.st_mode & S_IFREG ) != 0;
}
bool SourceFileValid( const char* fn, uint64_t olderThan, const View& view, const Worker& worker );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyFilesystem.hpp
|
C++
|
gpl-3.0
| 407
|
#ifndef __TRACYIMGUI_HPP__
#define __TRACYIMGUI_HPP__
#ifdef _MSC_VER
# pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data
#endif
#include <algorithm>
#include <assert.h>
#include <stdint.h>
#include "imgui.h"
#include "imgui_internal.h"
#include "../common/TracyForceInline.hpp"
#include "IconsFontAwesome5.h"
#if !IMGUI_DEFINE_MATH_OPERATORS
static inline ImVec2 operator+( const ImVec2& l, const ImVec2& r ) { return ImVec2( l.x + r.x, l.y + r.y ); }
static inline ImVec2 operator-( const ImVec2& l, const ImVec2& r ) { return ImVec2( l.x - r.x, l.y - r.y ); }
#endif
namespace tracy
{
static const ImVec4 SyntaxColors[] = {
{ 0.7f, 0.7f, 0.7f, 1 }, // default
{ 0.45f, 0.68f, 0.32f, 1 }, // comment
{ 0.72f, 0.37f, 0.12f, 1 }, // preprocessor
{ 0.64f, 0.64f, 1, 1 }, // string
{ 0.64f, 0.82f, 1, 1 }, // char literal
{ 1, 0.91f, 0.53f, 1 }, // keyword
{ 0.81f, 0.6f, 0.91f, 1 }, // number
{ 0.9f, 0.9f, 0.9f, 1 }, // punctuation
{ 0.78f, 0.46f, 0.75f, 1 }, // type
{ 0.21f, 0.69f, 0.89f, 1 }, // special
};
static const ImVec4 SyntaxColorsDimmed[] = {
{ 0.7f, 0.7f, 0.7f, 0.6f }, // default
{ 0.45f, 0.68f, 0.32f, 0.6f }, // comment
{ 0.72f, 0.37f, 0.12f, 0.6f }, // preprocessor
{ 0.64f, 0.64f, 1, 0.6f }, // string
{ 0.64f, 0.82f, 1, 0.6f }, // char literal
{ 1, 0.91f, 0.53f, 0.6f }, // keyword
{ 0.81f, 0.6f, 0.91f, 0.6f }, // number
{ 0.9f, 0.9f, 0.9f, 0.6f }, // punctuation
{ 0.78f, 0.46f, 0.75f, 0.6f }, // type
{ 0.21f, 0.69f, 0.89f, 0.6f }, // special
};
[[maybe_unused]] static inline float GetScale()
{
return ImGui::GetTextLineHeight() / 15.f;
}
[[maybe_unused]] static inline void TextCentered( const char* text )
{
const auto tw = ImGui::CalcTextSize( text ).x;
ImGui::SetCursorPosX( ( ImGui::GetWindowWidth() - tw ) * 0.5f );
ImGui::TextUnformatted( text );
}
[[maybe_unused]] static inline void TextColoredUnformatted( uint32_t col, const char* text, const char* end = nullptr )
{
ImGui::PushStyleColor( ImGuiCol_Text, col );
ImGui::TextUnformatted( text, end );
ImGui::PopStyleColor();
}
[[maybe_unused]] static inline void TextColoredUnformatted( const ImVec4& col, const char* text, const char* end = nullptr )
{
ImGui::PushStyleColor( ImGuiCol_Text, col );
ImGui::TextUnformatted( text, end );
ImGui::PopStyleColor();
}
[[maybe_unused]] static inline void TextDisabledUnformatted( const char* begin, const char* end = nullptr )
{
ImGui::PushStyleColor( ImGuiCol_Text, GImGui->Style.Colors[ImGuiCol_TextDisabled] );
ImGui::TextUnformatted( begin, end );
ImGui::PopStyleColor();
}
[[maybe_unused]] static inline void TextFocused( const char* label, const char* value )
{
TextDisabledUnformatted( label );
ImGui::SameLine();
ImGui::TextUnformatted( value );
}
[[maybe_unused]] static inline void DrawWaitingDots( double time )
{
ImGui::TextUnformatted( "" );
auto draw = ImGui::GetWindowDrawList();
const auto wpos = ImGui::GetWindowPos();
const auto ty = ImGui::GetTextLineHeight();
const auto h = ImGui::GetCursorPosY() - ty * 0.5f;
const auto w = ImGui::GetWindowWidth();
draw->AddCircleFilled( wpos + ImVec2( w * 0.5f - ty, h ), ty * ( 0.15f + 0.2f * ( pow( cos( time * 3.5f + 0.3f ), 16.f ) ) ), 0xFFBBBBBB, 12 );
draw->AddCircleFilled( wpos + ImVec2( w * 0.5f , h ), ty * ( 0.15f + 0.2f * ( pow( cos( time * 3.5f ), 16.f ) ) ), 0xFFBBBBBB, 12 );
draw->AddCircleFilled( wpos + ImVec2( w * 0.5f + ty, h ), ty * ( 0.15f + 0.2f * ( pow( cos( time * 3.5f - 0.3f ), 16.f ) ) ), 0xFFBBBBBB, 12 );
}
[[maybe_unused]] static inline bool SmallCheckbox( const char* label, bool* var )
{
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
auto ret = ImGui::Checkbox( label, var );
ImGui::PopStyleVar();
return ret;
}
[[maybe_unused]] static inline void SmallColorBox( uint32_t color )
{
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
ImGui::ColorButton( "c1", ImVec4( (color & 0xFF) / 255.f, ((color>>8) & 0xFF ) / 255.f, ((color>>16) & 0xFF ) / 255.f, 1.f ), ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoDragDrop );
ImGui::PopStyleVar();
}
[[maybe_unused]] static inline bool ButtonDisablable( const char* label, bool disabled )
{
if( disabled )
{
ImGui::BeginDisabled();
ImGui::Button( label );
ImGui::EndDisabled();
return false;
}
else
{
return ImGui::Button( label );
}
}
[[maybe_unused]] static inline bool SmallButtonDisablable( const char* label, bool disabled )
{
if( disabled )
{
ImGui::BeginDisabled();
ImGui::SmallButton( label );
ImGui::EndDisabled();
return false;
}
else
{
return ImGui::SmallButton( label );
}
}
[[maybe_unused]] static inline void DrawTextContrast( ImDrawList* draw, const ImVec2& pos, uint32_t color, const char* text )
{
const auto scale = round( GetScale() );
draw->AddText( pos + ImVec2( scale, scale ), 0xAA000000, text );
draw->AddText( pos, color, text );
}
[[maybe_unused]] static void SetButtonHighlightColor()
{
ImGui::PushStyleColor( ImGuiCol_Button, (ImVec4)ImColor::HSV( 0.35f, 0.6f, 0.6f ) );
ImGui::PushStyleColor( ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV( 0.35f, 0.8f, 0.8f ) );
ImGui::PushStyleColor( ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV( 0.35f, 0.7f, 0.7f ) );
}
[[maybe_unused]] static void ToggleButton( const char* label, bool& toggle )
{
const auto active = toggle;
if( active ) SetButtonHighlightColor();
if( ImGui::Button( label ) ) toggle = !toggle;
if( active ) ImGui::PopStyleColor( 3 );
}
[[maybe_unused]] static void SmallToggleButton( const char* label, bool& toggle )
{
const auto active = toggle;
if( active ) SetButtonHighlightColor();
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
if( ImGui::Button( label ) ) toggle = !toggle;
ImGui::PopStyleVar( 1 );
if( active ) ImGui::PopStyleColor( 3 );
}
[[maybe_unused]] static bool ClipboardButton( int id = 0 )
{
ImGui::PushStyleColor( ImGuiCol_Border, ImVec4( 0.43f, 0.43f, 0.50f, 0.25f ) );
ImGui::PushStyleColor( ImGuiCol_Button, ImVec4( 0.26f, 0.59f, 0.98f, 0.20f ) );
ImGui::PushStyleColor( ImGuiCol_ButtonHovered, ImVec4( 0.26f, 0.59f, 0.98f, 0.5f ) );
ImGui::PushStyleColor( ImGuiCol_ButtonActive, ImVec4( 0.06f, 0.53f, 0.98f, 0.5f ) );
ImGui::PushStyleColor( ImGuiCol_Text, GImGui->Style.Colors[ImGuiCol_TextDisabled] );
ImGui::PushID( id );
const auto res = ImGui::SmallButton( ICON_FA_CLIPBOARD );
ImGui::PopID();
ImGui::PopStyleColor( 5 );
return res;
}
[[maybe_unused]] static void DrawStripedRect( ImDrawList* draw, double x0, double y0, double x1, double y1, double sw, uint32_t color, bool fix_stripes_in_screen_space, bool inverted )
{
assert( x1 >= x0 );
assert( y1 >= y0 );
assert( sw > 0 );
const auto ww = ImGui::GetItemRectSize().x;
if( x0 > ww || x1 < 0 ) return;
if( x1 - x0 > ww )
{
x0 = std::max<double>( 0, x0 );
x1 = std::min<double>( ww, x1 );
}
ImGui::PushClipRect( ImVec2( x0, y0 ), ImVec2( x1, y1 ), true );
const auto rw = x1 - x0;
const auto rh = y1 - y0;
const auto cnt = int( ( rh + rw + sw*2 ) / ( sw*2 ) );
auto v0 = ImVec2( x0, y0 - rw );
if ( fix_stripes_in_screen_space )
{
const auto window_height = double( ImGui::GetWindowHeight() );
const auto flipped_v0y = window_height - v0.y; //we transform into a y-is-up coordinate space to achieve upper-left to lower-right stripes. If we didn't, we would calculate values for lower-left to upper-right
const auto manhatten_distance = x0 + flipped_v0y;
const auto in_multiples_of_2_times_sw = int( manhatten_distance / ( sw*2 ) );
const auto floored_manhatten_distance = double( in_multiples_of_2_times_sw*sw*2 ); //floor in terms of 2 * stripe width
const auto corrected_flipped_v0y = ( floored_manhatten_distance - x0 ); //the corrected (floored) y respects the position of the stripes
v0.y = window_height - corrected_flipped_v0y - double( inverted*sw ); //transform back into y-is-down imgui space
}
for( int i=0; i<cnt; i++ )
{
draw->PathLineTo( v0 + ImVec2( 0, i*sw*2 ) );
draw->PathLineTo( v0 + ImVec2( rw, i*sw*2 + rw ) );
draw->PathLineTo( v0 + ImVec2( rw, i*sw*2 + rw + sw ) );
draw->PathLineTo( v0 + ImVec2( 0, i*sw*2 + sw ) );
draw->PathFillConvex( color );
}
ImGui::PopClipRect();
}
[[maybe_unused]] static tracy_force_inline void DrawLine( ImDrawList* draw, const ImVec2& v1, const ImVec2& v2, uint32_t col, float thickness = 1.0f )
{
const ImVec2 data[2] = { v1, v2 };
draw->AddPolyline( data, 2, col, 0, thickness );
}
[[maybe_unused]] static tracy_force_inline void DrawLine( ImDrawList* draw, const ImVec2& v1, const ImVec2& v2, const ImVec2& v3, uint32_t col, float thickness = 1.0f )
{
const ImVec2 data[3] = { v1, v2, v3 };
draw->AddPolyline( data, 3, col, 0, thickness );
}
[[maybe_unused]] static tracy_force_inline void TooltipIfHovered( const char* text )
{
if( !ImGui::IsItemHovered() ) return;
ImGui::BeginTooltip();
ImGui::TextUnformatted( text );
ImGui::EndTooltip();
}
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyImGui.hpp
|
C++
|
gpl-3.0
| 9,557
|
#include "TracyMemory.hpp"
namespace tracy
{
size_t memUsage = 0;
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyMemory.cpp
|
C++
|
gpl-3.0
| 71
|
#ifndef __TRACYMEMORY_HPP__
#define __TRACYMEMORY_HPP__
#include <stdlib.h>
namespace tracy
{
extern size_t memUsage;
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyMemory.hpp
|
C++
|
gpl-3.0
| 132
|
#include <stdint.h>
namespace tracy
{
struct AsmDesc
{
uint8_t type;
uint16_t width;
};
struct AsmVar
{
int descNum;
AsmDesc desc[5];
int isaSet;
float tp;
int port, uops, minlat, maxlat;
bool minbound, maxbound;
};
struct AsmOp
{
int id;
int descId;
int numVariants;
const AsmVar*const* variant;
};
struct MicroArchitecture
{
int numOps;
const AsmOp*const* ops;
};
extern const char* MicroArchitectureList[];
extern const char* PortList[];
extern const char* OpsList[];
extern const char* OpDescList[];
extern const char* IsaList[];
extern const MicroArchitecture* const MicroArchitectureData[];
extern int OpsNum;
extern int MicroArchitectureNum;
};
|
whupdup/frame
|
real/third_party/tracy/server/TracyMicroArchitecture.hpp
|
C++
|
gpl-3.0
| 716
|
#include "TracyMmap.hpp"
#if defined _WIN32
# include <io.h>
# include <windows.h>
void* mmap( void* addr, size_t length, int prot, int flags, int fd, off_t offset )
{
HANDLE hnd;
void* map = nullptr;
switch( prot )
{
case PROT_READ:
if( hnd = CreateFileMapping( HANDLE( _get_osfhandle( fd ) ), nullptr, PAGE_READONLY, 0, 0, nullptr ) )
{
map = MapViewOfFile( hnd, FILE_MAP_READ, 0, 0, length );
CloseHandle( hnd );
}
break;
case PROT_WRITE:
if( hnd = CreateFileMapping( HANDLE( _get_osfhandle( fd ) ), nullptr, PAGE_READWRITE, 0, 0, nullptr ) )
{
map = MapViewOfFile( hnd, FILE_MAP_WRITE, 0, 0, length );
CloseHandle( hnd );
}
break;
}
return map ? (char*)map + offset : (void*)-1;
}
int munmap( void* addr, size_t length )
{
return UnmapViewOfFile( addr ) != 0 ? 0 : -1;
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyMmap.cpp
|
C++
|
gpl-3.0
| 938
|
#ifndef __TRACYMMAP_HPP__
#define __TRACYMMAP_HPP__
#if !defined _WIN32
# include <sys/mman.h>
#else
# include <string.h>
# include <sys/types.h>
# define PROT_READ 1
# define PROT_WRITE 2
# define MAP_SHARED 0
void* mmap( void* addr, size_t length, int prot, int flags, int fd, off_t offset );
int munmap( void* addr, size_t length );
#endif
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyMmap.hpp
|
C++
|
gpl-3.0
| 361
|
#include <cmath>
#include "TracyMouse.hpp"
#include "imgui_internal.h"
namespace tracy
{
static constexpr int MouseButtons = IM_ARRAYSIZE( ImGuiContext::IO.MouseDown );
static constexpr float MouseDragThreshold = 2;
struct Mouse
{
bool mouseDown[MouseButtons];
bool mouseClicked[MouseButtons];
bool mouseReleased[MouseButtons];
bool mouseDragging[MouseButtons];
ImVec2 mouseDragDelta[MouseButtons];
bool mousePotentialClickRelease[MouseButtons];
};
static Mouse s_mouse = {};
void MouseFrame()
{
for( int i=0; i<MouseButtons; i++ )
{
s_mouse.mouseDown[i] = ImGui::IsMouseDown( i );
s_mouse.mouseClicked[i] = ImGui::IsMouseClicked( i );
s_mouse.mouseReleased[i] = ImGui::IsMouseReleased( i );
s_mouse.mouseDragging[i] = ImGui::IsMouseDragging( i, 0 );
s_mouse.mouseDragDelta[i] = ImGui::GetMouseDragDelta( i, 0 );
if( s_mouse.mouseDragging[i] )
{
if( s_mouse.mouseClicked[i] || s_mouse.mousePotentialClickRelease[i] )
{
if( std::abs( s_mouse.mouseDragDelta[i].x ) < MouseDragThreshold && std::abs( s_mouse.mouseDragDelta[i].y ) < MouseDragThreshold )
{
s_mouse.mouseDragging[i] = false;
}
else
{
s_mouse.mousePotentialClickRelease[i] = false;
}
}
}
else if( !s_mouse.mouseDown[i] && !s_mouse.mouseReleased[i] )
{
s_mouse.mousePotentialClickRelease[i] = false;
}
}
}
bool IsMouseDown( ImGuiMouseButton button )
{
return s_mouse.mouseDown[button];
}
bool IsMouseClicked( ImGuiMouseButton button )
{
return s_mouse.mouseClicked[button];
}
bool IsMouseDragging( ImGuiMouseButton button )
{
return s_mouse.mouseDragging[button];
}
ImVec2 GetMouseDragDelta( ImGuiMouseButton button )
{
return s_mouse.mouseDragDelta[button];
}
void ConsumeMouseEvents( ImGuiMouseButton button )
{
s_mouse.mouseDown[button] = false;
s_mouse.mouseClicked[button] = false;
s_mouse.mouseDragging[button] = false;
}
bool IsMouseClickReleased( ImGuiMouseButton button )
{
if( s_mouse.mouseReleased[button] && s_mouse.mousePotentialClickRelease[button] ) return true;
if( s_mouse.mouseClicked[button] ) s_mouse.mousePotentialClickRelease[button] = true;
return false;
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyMouse.cpp
|
C++
|
gpl-3.0
| 2,404
|
#ifndef __TRACYMOUSE_HPP__
#define __TRACYMOUSE_HPP__
#include "imgui.h"
namespace tracy
{
void MouseFrame();
bool IsMouseDown( ImGuiMouseButton button );
bool IsMouseClicked( ImGuiMouseButton button );
bool IsMouseDragging( ImGuiMouseButton button );
ImVec2 GetMouseDragDelta( ImGuiMouseButton button );
void ConsumeMouseEvents( ImGuiMouseButton button );
bool IsMouseClickReleased( ImGuiMouseButton button );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyMouse.hpp
|
C++
|
gpl-3.0
| 427
|
#ifndef __TRACYPOPCNT_HPP__
#define __TRACYPOPCNT_HPP__
#include <limits.h>
#include <stdint.h>
#if defined _WIN64
# include <intrin.h>
# define TracyCountBits __popcnt64
# define TracyLzcnt __lzcnt64
#elif defined __GNUC__ || defined __clang__
static inline uint64_t TracyCountBits( uint64_t i )
{
return uint64_t( __builtin_popcountll( i ) );
}
static inline uint64_t TracyLzcnt( uint64_t i )
{
return uint64_t( __builtin_clzll( i ) );
}
#else
static inline uint64_t TracyCountBits( uint64_t i )
{
i = i - ( (i >> 1) & 0x5555555555555555 );
i = ( i & 0x3333333333333333 ) + ( (i >> 2) & 0x3333333333333333 );
i = ( (i + (i >> 4) ) & 0x0F0F0F0F0F0F0F0F );
return ( i * (0x0101010101010101) ) >> 56;
}
static inline uint64_t TracyLzcnt( uint64_t i )
{
i |= i >> 1;
i |= i >> 2;
i |= i >> 4;
i |= i >> 8;
i |= i >> 16;
i |= i >> 32;
return 64 - TracyCountBits( i );
}
#endif
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyPopcnt.hpp
|
C++
|
gpl-3.0
| 939
|
#ifdef _MSC_VER
# pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data
#endif
#ifdef __MINGW32__
# define __STDC_FORMAT_MACROS
#endif
#include <assert.h>
#include <inttypes.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h> // llabs()
#include <string.h>
#include "TracyPrint.hpp"
namespace tracy
{
static const char* IntTable100 =
"00010203040506070809"
"10111213141516171819"
"20212223242526272829"
"30313233343536373839"
"40414243444546474849"
"50515253545556575859"
"60616263646566676869"
"70717273747576777879"
"80818283848586878889"
"90919293949596979899";
static inline void PrintTinyInt( char*& buf, uint64_t v )
{
assert( v < 100 );
if( v >= 10 )
{
*buf++ = '0' + v/10;
}
*buf++ = '0' + v%10;
}
static inline void PrintTinyInt0( char*& buf, uint64_t v )
{
assert( v < 100 );
if( v >= 10 )
{
*buf++ = '0' + v/10;
}
else
{
*buf++ = '0';
}
*buf++ = '0' + v%10;
}
static inline void PrintSmallInt( char*& buf, uint64_t v )
{
assert( v < 1000 );
if( v >= 100 )
{
memcpy( buf, IntTable100 + v/10*2, 2 );
buf += 2;
}
else if( v >= 10 )
{
*buf++ = '0' + v/10;
}
*buf++ = '0' + v%10;
}
static inline void PrintSmallInt0( char*& buf, uint64_t v )
{
assert( v < 1000 );
if( v >= 100 )
{
memcpy( buf, IntTable100 + v/10*2, 2 );
buf += 2;
}
else if( v >= 10 )
{
*buf++ = '0';
*buf++ = '0' + v/10;
}
else
{
memcpy( buf, "00", 2 );
buf += 2;
}
*buf++ = '0' + v%10;
}
static inline void PrintFrac00( char*& buf, uint64_t v )
{
*buf++ = '.';
v += 5;
if( v/10%10 == 0 )
{
*buf++ = '0' + v/100;
}
else
{
memcpy( buf, IntTable100 + v/10*2, 2 );
buf += 2;
}
}
static inline void PrintFrac0( char*& buf, uint64_t v )
{
*buf++ = '.';
*buf++ = '0' + (v+50)/100;
}
static inline void PrintSmallIntFrac( char*& buf, uint64_t v )
{
uint64_t in = v / 1000;
uint64_t fr = v % 1000;
if( fr >= 995 )
{
PrintSmallInt( buf, in+1 );
}
else
{
PrintSmallInt( buf, in );
if( fr > 5 )
{
PrintFrac00( buf, fr );
}
}
}
static inline void PrintSecondsFrac( char*& buf, uint64_t v )
{
uint64_t in = v / 1000;
uint64_t fr = v % 1000;
if( fr >= 950 )
{
PrintTinyInt0( buf, in+1 );
}
else
{
PrintTinyInt0( buf, in );
if( fr > 50 )
{
PrintFrac0( buf, fr );
}
}
}
const char* TimeToString( int64_t _ns )
{
enum { Pool = 8 };
static char bufpool[Pool][64];
static int bufsel = 0;
char* buf = bufpool[bufsel];
char* bufstart = buf;
bufsel = ( bufsel + 1 ) % Pool;
uint64_t ns;
if( _ns < 0 )
{
*buf = '-';
buf++;
ns = -_ns;
}
else
{
ns = _ns;
}
if( ns < 1000 )
{
PrintSmallInt( buf, ns );
memcpy( buf, " ns", 4 );
}
else if( ns < 1000ll * 1000 )
{
PrintSmallIntFrac( buf, ns );
memcpy( buf, " \xce\xbcs", 5 );
}
else if( ns < 1000ll * 1000 * 1000 )
{
PrintSmallIntFrac( buf, ns / 1000 );
memcpy( buf, " ms", 4 );
}
else if( ns < 1000ll * 1000 * 1000 * 60 )
{
PrintSmallIntFrac( buf, ns / ( 1000ll * 1000 ) );
memcpy( buf, " s", 3 );
}
else if( ns < 1000ll * 1000 * 1000 * 60 * 60 )
{
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) );
const auto s = int64_t( ns - m * ( 1000ll * 1000 * 1000 * 60 ) ) / ( 1000ll * 1000 );
PrintTinyInt( buf, m );
*buf++ = ':';
PrintSecondsFrac( buf, s );
*buf++ = '\0';
}
else if( ns < 1000ll * 1000 * 1000 * 60 * 60 * 24 )
{
const auto h = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 ) );
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) - h * 60 );
const auto s = int64_t( ns / ( 1000ll * 1000 * 1000 ) - h * ( 60 * 60 ) - m * 60 );
PrintTinyInt( buf, h );
*buf++ = ':';
PrintTinyInt0( buf, m );
*buf++ = ':';
PrintTinyInt0( buf, s );
*buf++ = '\0';
}
else
{
const auto d = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 * 24 ) );
const auto h = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 ) - d * 24 );
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) - d * ( 60 * 24 ) - h * 60 );
const auto s = int64_t( ns / ( 1000ll * 1000 * 1000 ) - d * ( 60 * 60 * 24 ) - h * ( 60 * 60 ) - m * 60 );
assert( d < 100 );
PrintTinyInt( buf, d );
*buf++ = 'd';
PrintTinyInt0( buf, h );
*buf++ = ':';
PrintTinyInt0( buf, m );
*buf++ = ':';
PrintTinyInt0( buf, s );
*buf++ = '\0';
}
return bufstart;
}
const char* TimeToStringExact( int64_t _ns )
{
enum { Pool = 8 };
static char bufpool[Pool][64];
static int bufsel = 0;
char* buf = bufpool[bufsel];
char* bufstart = buf;
bufsel = ( bufsel + 1 ) % Pool;
uint64_t ns;
if( _ns < 0 )
{
*buf = '-';
buf++;
ns = -_ns;
}
else
{
ns = _ns;
}
const char* numStart = buf;
if( ns >= 1000ll * 1000 * 1000 * 60 * 60 * 24 )
{
const auto d = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 * 24 ) );
const auto h = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 ) - d * 24 );
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) - d * ( 60 * 24 ) - h * 60 );
const auto s = int64_t( ns / ( 1000ll * 1000 * 1000 ) - d * ( 60 * 60 * 24 ) - h * ( 60 * 60 ) - m * 60 );
if( d < 100 )
{
PrintTinyInt( buf, d );
*buf++ = 'd';
}
else
{
memcpy( buf, "100+d", 5 );
buf += 5;
}
PrintTinyInt0( buf, h );
*buf++ = ':';
PrintTinyInt0( buf, m );
*buf++ = ':';
PrintTinyInt0( buf, s );
ns %= 1000ll * 1000 * 1000;
}
else if( ns >= 1000ll * 1000 * 1000 * 60 * 60 )
{
const auto h = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 * 60 ) );
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) - h * 60 );
const auto s = int64_t( ns / ( 1000ll * 1000 * 1000 ) - h * ( 60 * 60 ) - m * 60 );
PrintTinyInt( buf, h );
*buf++ = ':';
PrintTinyInt0( buf, m );
*buf++ = ':';
PrintTinyInt0( buf, s );
ns %= 1000ll * 1000 * 1000;
}
else if( ns >= 1000ll * 1000 * 1000 * 60 )
{
const auto m = int64_t( ns / ( 1000ll * 1000 * 1000 * 60 ) );
const auto s = int64_t( ns / ( 1000ll * 1000 * 1000 ) - m * 60 );
PrintTinyInt( buf, m );
*buf++ = ':';
PrintTinyInt0( buf, s );
ns %= 1000ll * 1000 * 1000;
}
else if( ns >= 1000ll * 1000 * 1000 )
{
PrintTinyInt( buf, int64_t( ns / ( 1000ll * 1000 * 1000 ) ) );
*buf++ = 's';
ns %= 1000ll * 1000 * 1000;
}
if( ns > 0 )
{
if( buf != numStart ) *buf++ = ' ';
if( ns >= 1000ll * 1000 )
{
PrintSmallInt0( buf, int64_t( ns / ( 1000ll * 1000 ) ) );
*buf++ = ',';
ns %= 1000ll * 1000;
}
else
{
memcpy( buf, "000,", 4 );
buf += 4;
}
if( ns >= 1000ll )
{
PrintSmallInt0( buf, int64_t( ns / 1000ll ) );
*buf++ = ',';
ns %= 1000ll;
}
else
{
memcpy( buf, "000,", 4 );
buf += 4;
}
PrintSmallInt0( buf, ns );
*buf++ = 'n';
*buf++ = 's';
}
else
{
memcpy( buf, "000,000,000ns", 13 );
buf += 13;
}
*buf++ = '\0';
return bufstart;
}
const char* MemSizeToString( int64_t val )
{
enum { Pool = 8 };
static char bufpool[Pool][64];
static int bufsel = 0;
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
const auto aval = llabs( val );
if( aval < 10000ll )
{
sprintf( buf, "%" PRIi64 " bytes", val );
return buf;
}
enum class Unit
{
Kilobyte,
Megabyte,
Gigabyte,
Terabyte
};
Unit unit;
char* ptr;
if( aval < 10000ll * 1024 )
{
ptr = PrintFloat( buf, buf+64, val / 1024., 2 );
unit = Unit::Kilobyte;
}
else if( aval < 10000ll * 1024 * 1024 )
{
ptr = PrintFloat( buf, buf+64, val / ( 1024. * 1024 ), 2 );
unit = Unit::Megabyte;
}
else if( aval < 10000ll * 1024 * 1024 * 1024 )
{
ptr = PrintFloat( buf, buf+64, val / ( 1024. * 1024 * 1024 ), 2 );
unit = Unit::Gigabyte;
}
else
{
ptr = PrintFloat( buf, buf+64, val / ( 1024. * 1024 * 1024 * 1024 ), 2 );
unit = Unit::Terabyte;
}
ptr--;
while( ptr >= buf && *ptr == '0' ) ptr--;
if( *ptr != '.' ) ptr++;
*ptr++ = ' ';
switch( unit )
{
case Unit::Kilobyte:
*ptr++ = 'K';
break;
case Unit::Megabyte:
*ptr++ = 'M';
break;
case Unit::Gigabyte:
*ptr++ = 'G';
break;
case Unit::Terabyte:
*ptr++ = 'T';
break;
default:
assert( false );
break;
}
*ptr++ = 'B';
*ptr++ = '\0';
return buf;
}
const char* LocationToString( const char* fn, uint32_t line )
{
if( line == 0 ) return fn;
enum { Pool = 8 };
static char bufpool[Pool][4096];
static int bufsel = 0;
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
sprintf( buf, "%s:%i", fn, line );
return buf;
}
namespace detail
{
char* RealToStringGetBuffer()
{
enum { Pool = 8 };
static char bufpool[Pool][64];
static int bufsel = 0;
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
return buf;
}
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyPrint.cpp
|
C++
|
gpl-3.0
| 10,195
|
#ifndef __TRACYPRINT_HPP__
#define __TRACYPRINT_HPP__
#if ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L
# if __has_include(<charconv>) && __has_include(<type_traits>)
# include <charconv>
# include <type_traits>
# else
# define NO_CHARCONV
# endif
#else
# define NO_CHARCONV
#endif
#if defined _MSC_VER && _MSC_VER < 1924
# define NO_CHARCONV
#endif
#ifdef __GNUC__
# define NO_CHARCONV
#endif
#ifdef NO_CHARCONV
# include <stdio.h>
#endif
#include <stdint.h>
#include <string.h>
#include "../common/TracyForceInline.hpp"
namespace tracy
{
namespace detail
{
char* RealToStringGetBuffer();
static tracy_force_inline void RealToStringFloating( char* ptr, char* end )
{
if( *ptr == '-' ) ptr++;
const auto vbegin = ptr;
while( *ptr != '\0' && *ptr != '.' ) ptr++;
auto sz = end - ptr + 1;
while( ptr - vbegin > 3 )
{
ptr -= 3;
memmove( ptr+1, ptr, sz+3 );
*ptr = ',';
sz += 4;
}
while( *ptr != '\0' && *ptr != '.' ) ptr++;
if( *ptr == '\0' ) return;
while( *ptr != '\0' ) ptr++;
ptr--;
while( *ptr == '0' ) ptr--;
if( *ptr != '.' && *ptr != ',' ) ptr++;
*ptr = '\0';
}
static tracy_force_inline void RealToStringInteger( char* buf, char* end )
{
if( *buf == '-' ) buf++;
auto ptr = end;
auto sz = 1;
while( ptr - buf > 3 )
{
ptr -= 3;
memmove( ptr+1, ptr, sz+3 );
*ptr = ',';
sz += 4;
}
}
}
template<typename T>
static inline char* PrintFloat( char* begin, char* end, T value, int precision )
{
#ifndef NO_CHARCONV
return std::to_chars( begin, end, value, std::chars_format::fixed, precision ).ptr;
#else
return begin + sprintf( begin, "%.*f", precision, value );
#endif
}
template<typename T>
static inline char* PrintFloat( char* begin, char* end, T value )
{
#ifndef NO_CHARCONV
return std::to_chars( begin, end, value, std::chars_format::fixed ).ptr;
#else
return begin + sprintf( begin, "%f", value );
#endif
}
#ifndef NO_CHARCONV
template<typename T>
static inline const char* RealToString( T val )
{
auto buf = detail::RealToStringGetBuffer();
auto end = std::to_chars( buf, buf+64, val ).ptr;
*end = '\0';
if constexpr ( std::is_integral_v<T> )
{
detail::RealToStringInteger( buf, end );
}
else
{
detail::RealToStringFloating( buf, end );
}
return buf;
}
#else
static inline const char* RealToString( double val )
{
auto buf = detail::RealToStringGetBuffer();
const auto sz = sprintf( buf, "%f", val );
detail::RealToStringFloating( buf, buf+sz );
return buf;
}
#endif
const char* TimeToString( int64_t ns );
const char* TimeToStringExact( int64_t ns );
const char* MemSizeToString( int64_t val );
const char* LocationToString( const char* fn, uint32_t line );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyPrint.hpp
|
C++
|
gpl-3.0
| 2,872
|
#ifndef __TRACYSHORTPTR_HPP__
#define __TRACYSHORTPTR_HPP__
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include "../common/TracyForceInline.hpp"
namespace tracy
{
#if UINTPTR_MAX == 0xFFFFFFFFFFFFFFFF
template<typename T>
class short_ptr
{
public:
tracy_force_inline short_ptr() {}
tracy_force_inline short_ptr( const T* ptr ) { Set( ptr ); }
tracy_force_inline operator T*() { return Get(); }
tracy_force_inline operator const T*() const { return Get(); }
tracy_force_inline T& operator*() { return *Get(); }
tracy_force_inline const T& operator*() const { return *Get(); }
tracy_force_inline T* operator->() { return Get(); }
tracy_force_inline const T* operator->() const { return Get(); }
tracy_force_inline T* get() { return Get(); }
tracy_force_inline const T* get() const { return Get(); }
private:
tracy_force_inline void Set( const T* ptr )
{
assert( ( uint64_t( ptr ) & 0xFFFF000000000000 ) == 0 );
memcpy( m_ptr, &ptr, 4 );
memcpy( m_ptr+4, ((char*)&ptr)+4, 2 );
}
tracy_force_inline T* Get()
{
uint32_t lo;
uint16_t hi;
memcpy( &lo, m_ptr, 4 );
memcpy( &hi, m_ptr+4, 2 );
return (T*)( uint64_t( lo ) | ( ( uint64_t( hi ) << 32 ) ) );
}
tracy_force_inline const T* Get() const
{
uint32_t lo;
uint16_t hi;
memcpy( &lo, m_ptr, 4 );
memcpy( &hi, m_ptr+4, 2 );
return (T*)( uint64_t( lo ) | ( ( uint64_t( hi ) << 32 ) ) );
}
uint8_t m_ptr[6];
};
#else
template<typename T>
class short_ptr
{
public:
tracy_force_inline short_ptr() {}
tracy_force_inline short_ptr( const T* ptr ) { memcpy( &m_ptr, &ptr, sizeof( T* ) ); }
tracy_force_inline operator T*() { return m_ptr; }
tracy_force_inline operator const T*() const { return m_ptr; }
tracy_force_inline T& operator*() { return *m_ptr; }
tracy_force_inline const T& operator*() const { return *m_ptr; }
tracy_force_inline T* operator->() { return m_ptr; }
tracy_force_inline const T* operator->() const { return m_ptr; }
tracy_force_inline T* get() { return m_ptr; }
tracy_force_inline const T* get() const { return m_ptr; }
private:
T* m_ptr;
};
#endif
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyShortPtr.hpp
|
C++
|
gpl-3.0
| 2,279
|
#ifndef __TRACYSLAB_HPP__
#define __TRACYSLAB_HPP__
#include <assert.h>
#include <stdint.h>
#include <vector>
#include "TracyMemory.hpp"
#include "../common/TracyForceInline.hpp"
namespace tracy
{
template<size_t BlockSize>
class Slab
{
public:
Slab()
: m_ptr( new char[BlockSize] )
, m_offset( 0 )
, m_buffer( { m_ptr } )
, m_usage( BlockSize )
{
memUsage += BlockSize;
}
~Slab()
{
memUsage -= m_usage;
for( auto& v : m_buffer )
{
delete[] v;
}
}
tracy_force_inline void* AllocRaw( size_t size )
{
assert( size <= BlockSize );
const auto offset = m_offset;
if( offset + size > BlockSize )
{
return DoAlloc( size );
}
else
{
void* ret = m_ptr + offset;
m_offset += size;
return ret;
}
}
template<typename T>
tracy_force_inline T* AllocInit()
{
const auto size = sizeof( T );
auto ret = AllocRaw( size );
new( ret ) T;
return (T*)ret;
}
template<typename T>
tracy_force_inline T* AllocInit( size_t sz )
{
const auto size = sizeof( T ) * sz;
auto ret = AllocRaw( size );
T* ptr = (T*)ret;
for( size_t i=0; i<sz; i++ )
{
new( ptr ) T;
ptr++;
}
return (T*)ret;
}
template<typename T>
tracy_force_inline T* Alloc()
{
return (T*)AllocRaw( sizeof( T ) );
}
template<typename T>
tracy_force_inline T* Alloc( size_t size )
{
return (T*)AllocRaw( sizeof( T ) * size );
}
tracy_force_inline void Unalloc( size_t size )
{
assert( size <= m_offset );
m_offset -= size;
}
tracy_force_inline void* AllocBig( size_t size )
{
const auto offset = m_offset;
if( offset + size <= BlockSize )
{
void* ret = m_ptr + offset;
m_offset += size;
return ret;
}
else if( size <= BlockSize && BlockSize - offset <= 1024 )
{
return DoAlloc( size );
}
else
{
memUsage += size;
m_usage += size;
auto ret = new char[size];
m_buffer.emplace_back( ret );
return ret;
}
}
void Reset()
{
if( m_buffer.size() > 1 )
{
memUsage -= m_usage - BlockSize;
m_usage = BlockSize;
for( int i=1; i<m_buffer.size(); i++ )
{
delete[] m_buffer[i];
}
m_ptr = m_buffer[0];
m_buffer.clear();
m_buffer.emplace_back( m_ptr );
}
m_offset = 0;
}
Slab( const Slab& ) = delete;
Slab( Slab&& ) = delete;
Slab& operator=( const Slab& ) = delete;
Slab& operator=( Slab&& ) = delete;
private:
void* DoAlloc( uint32_t willUseBytes )
{
auto ptr = new char[BlockSize];
m_ptr = ptr;
m_offset = willUseBytes;
m_buffer.emplace_back( m_ptr );
memUsage += BlockSize;
m_usage += BlockSize;
return ptr;
}
char* m_ptr;
uint32_t m_offset;
std::vector<char*> m_buffer;
size_t m_usage;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySlab.hpp
|
C++
|
gpl-3.0
| 3,346
|
#ifndef __TRACYSORT_HPP__
#define __TRACYSORT_HPP__
#ifndef NO_PARALLEL_SORT
# if !defined __APPLE__ && ( ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L )
# if __has_include(<execution>)
# include <algorithm>
# include <execution>
# else
# define NO_PARALLEL_SORT
# endif
# else
# define NO_PARALLEL_SORT
# endif
#endif
#include "tracy_pdqsort.h"
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySort.hpp
|
C++
|
gpl-3.0
| 412
|
#ifndef __TRACYSORTEDVECTOR_HPP__
#define __TRACYSORTEDVECTOR_HPP__
#include "TracySort.hpp"
#include "TracyVector.hpp"
namespace tracy
{
#pragma pack( 1 )
template<typename T, class CompareDefault = std::less<T>>
class SortedVector
{
public:
using iterator = T*;
using const_iterator = const T*;
tracy_force_inline SortedVector()
: sortedEnd( 0 )
{}
SortedVector( const SortedVector& ) = delete;
tracy_force_inline SortedVector( SortedVector&& src ) noexcept
: v( std::move( src.v ) )
, sortedEnd( src.sortedEnd )
{
}
tracy_force_inline SortedVector( const T& value )
: v( value )
, sortedEnd( 0 )
{
}
SortedVector& operator=( const SortedVector& ) = delete;
tracy_force_inline SortedVector& operator=( SortedVector&& src ) noexcept
{
v = std::move( src.v );
sortedEnd = src.sortedEnd;
return *this;
}
tracy_force_inline void swap( SortedVector& other )
{
v.swap( other.v );
std::swap( sortedEnd, other.sortedEnd );
}
tracy_force_inline bool empty() const { return v.empty(); }
tracy_force_inline size_t size() const { return v.size(); }
tracy_force_inline bool is_sorted() const { return sortedEnd == 0; }
tracy_force_inline T* data() { return v.data(); }
tracy_force_inline const T* data() const { return v.data(); };
tracy_force_inline T* begin() { return v.begin(); }
tracy_force_inline const T* begin() const { return v.begin(); }
tracy_force_inline T* end() { return v.end(); }
tracy_force_inline const T* end() const { return v.end(); }
tracy_force_inline T& front() { return v.front(); }
tracy_force_inline const T& front() const { return v.front(); }
tracy_force_inline T& back() { return v.back(); }
tracy_force_inline const T& back() const { return v.back(); }
tracy_force_inline T& operator[]( size_t idx ) { return v[idx]; }
tracy_force_inline const T& operator[]( size_t idx ) const { return v[idx]; }
tracy_force_inline void push_back( const T& val ) { push_back( val, CompareDefault() ); }
template<class Compare>
tracy_force_inline void push_back( const T& val, Compare comp )
{
if( sortedEnd == 0 && !v.empty() && !comp( v.back(), val ) )
{
sortedEnd = (uint32_t)v.size();
}
v.push_back( val );
}
tracy_force_inline void reserve( size_t cap ) { v.reserve( cap ); }
template<size_t U>
tracy_force_inline void reserve_exact( uint32_t sz, Slab<U>& slab ) { v.reserve_exact( sz, slab ); }
tracy_force_inline void clear() { v.clear(); sortedEnd = 0; }
tracy_force_inline T* erase( T* begin, T* end )
{
assert( is_sorted() );
return v.erase( begin, end );
}
tracy_force_inline void sort() { sort( CompareDefault() ); }
tracy_force_inline void ensure_sorted() { if( !is_sorted() ) sort(); }
template<class Compare>
void sort( Compare comp )
{
assert( !is_sorted() );
const auto sb = v.begin();
const auto se = sb + sortedEnd;
const auto sl = se - 1;
const auto ue = v.end();
#ifdef NO_PARALLEL_SORT
pdqsort_branchless( se, ue, comp );
#else
std::sort( std::execution::par_unseq, se, ue, comp );
#endif
const auto ss = std::lower_bound( sb, se, *se, comp );
const auto uu = std::lower_bound( se, ue, *sl, comp );
std::inplace_merge( ss, se, uu, comp );
sortedEnd = 0;
}
private:
Vector<T> v;
uint32_t sortedEnd;
};
#pragma pack()
enum { SortedVectorSize = sizeof( SortedVector<int> ) };
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySortedVector.hpp
|
C++
|
gpl-3.0
| 3,673
|
#include "TracySourceContents.hpp"
#include "TracyView.hpp"
#include "TracyWorker.hpp"
namespace tracy
{
SourceContents::SourceContents()
: m_file( nullptr )
, m_fileStringIdx( 0 )
, m_data( nullptr )
, m_dataBuf( nullptr )
, m_dataSize( 0 )
{
}
SourceContents::~SourceContents()
{
delete[] m_dataBuf;
}
void SourceContents::Parse( const char* fileName, const Worker& worker, const View& view )
{
if( m_file == fileName ) return;
m_file = fileName;
m_fileStringIdx = worker.FindStringIdx( fileName );
m_lines.clear();
if( fileName )
{
uint32_t sz;
const auto srcCache = worker.GetSourceFileFromCache( fileName );
if( srcCache.data != nullptr )
{
m_data = srcCache.data;
sz = srcCache.len;
}
else
{
FILE* f = fopen( view.SourceSubstitution( fileName ), "rb" );
if( f )
{
fseek( f, 0, SEEK_END );
sz = ftell( f );
fseek( f, 0, SEEK_SET );
if( sz > m_dataSize )
{
delete[] m_dataBuf;
m_dataBuf = new char[sz];
m_dataSize = sz;
}
fread( m_dataBuf, 1, sz, f );
m_data = m_dataBuf;
fclose( f );
}
else
{
m_file = nullptr;
}
}
if( m_file )
{
Tokenizer tokenizer;
auto txt = m_data;
for(;;)
{
auto end = txt;
while( *end != '\n' && *end != '\r' && end - m_data < sz ) end++;
m_lines.emplace_back( Tokenizer::Line { txt, end, tokenizer.Tokenize( txt, end ) } );
if( end - m_data == sz ) break;
if( *end == '\n' )
{
end++;
if( end - m_data < sz && *end == '\r' ) end++;
}
else if( *end == '\r' )
{
end++;
if( end - m_data < sz && *end == '\n' ) end++;
}
if( end - m_data == sz ) break;
txt = end;
}
}
}
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceContents.cpp
|
C++
|
gpl-3.0
| 2,304
|
#ifndef __TRACYSOURCECONTENTS_HPP__
#define __TRACYSOURCECONTENTS_HPP__
#include <stdint.h>
#include <stddef.h>
#include <vector>
#include "TracySourceTokenizer.hpp"
namespace tracy
{
class View;
class Worker;
class SourceContents
{
public:
SourceContents();
~SourceContents();
void Parse( const char* fileName, const Worker& worker, const View& view );
const std::vector<Tokenizer::Line>& get() const { return m_lines; }
bool empty() const { return m_lines.empty(); }
const char* filename() const { return m_file; }
uint32_t idx() const { return m_fileStringIdx; }
bool is_cached() const { return m_data != m_dataBuf; }
private:
const char* m_file;
uint32_t m_fileStringIdx;
const char* m_data;
char* m_dataBuf;
size_t m_dataSize;
std::vector<Tokenizer::Line> m_lines;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceContents.hpp
|
C++
|
gpl-3.0
| 851
|
#include "tracy_robin_hood.h"
#include "TracyCharUtil.hpp"
#include "TracySourceTokenizer.hpp"
namespace tracy
{
namespace {
static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetKeywords()
{
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret;
for( auto& v : {
"alignas", "alignof", "and", "and_eq", "asm", "atomic_cancel", "atomic_commit", "atomic_noexcept",
"bitand", "bitor", "break", "case", "catch", "class", "compl", "concept", "const", "consteval",
"constexpr", "constinit", "const_cast", "continue", "co_await", "co_return", "co_yield", "decltype",
"default", "delete", "do", "dynamic_cast", "else", "enum", "explicit", "export", "extern", "for",
"friend", "if", "inline", "mutable", "namespace", "new", "noexcept", "not", "not_eq", "operator",
"or", "or_eq", "private", "protected", "public", "reflexpr", "register", "reinterpret_cast",
"return", "requires", "sizeof", "static", "static_assert", "static_cast", "struct", "switch",
"synchronized", "template", "thread_local", "throw", "try", "typedef", "typeid", "typename",
"union", "using", "virtual", "volatile", "while", "xor", "xor_eq", "override", "final", "import",
"module", "transaction_safe", "transaction_safe_dynamic" } )
{
ret.insert( v );
}
return ret;
}
static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetTypes()
{
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret;
for( auto& v : {
"bool", "char", "char8_t", "char16_t", "char32_t", "double", "float", "int", "long", "short", "signed",
"unsigned", "void", "wchar_t", "size_t", "int8_t", "int16_t", "int32_t", "int64_t", "int_fast8_t",
"int_fast16_t", "int_fast32_t", "int_fast64_t", "int_least8_t", "int_least16_t", "int_least32_t",
"int_least64_t", "intmax_t", "intptr_t", "uint8_t", "uint16_t", "uint32_t", "uint64_t", "uint_fast8_t",
"uint_fast16_t", "uint_fast32_t", "uint_fast64_t", "uint_least8_t", "uint_least16_t", "uint_least32_t",
"uint_least64_t", "uintmax_t", "uintptr_t", "type_info", "bad_typeid", "bad_cast", "type_index",
"clock_t", "time_t", "tm", "timespec", "ptrdiff_t", "nullptr_t", "max_align_t", "auto",
"__m64", "__m128", "__m128i", "__m128d", "__m256", "__m256i", "__m256d", "__m512", "__m512i",
"__m512d", "__mmask8", "__mmask16", "__mmask32", "__mmask64",
"int8x8_t", "int16x4_t", "int32x2_t", "int64x1_t", "uint8x8_t", "uint16x4_t", "uint32x2_t",
"uint64x1_t", "float32x2_t", "poly8x8_t", "poly16x4_t", "int8x16_t", "int16x8_t", "int32x4_t",
"int64x2_t", "uint8x16_t", "uint16x8_t", "uint32x4_t", "uint64x2_t", "float32x4_t", "poly8x16_t",
"poly16x8_t",
"int8x8x2_t", "int16x4x2_t", "int32x2x2_t", "int64x1x2_t", "uint8x8x2_t", "uint16x4x2_t",
"uint32x2x2_t", "uint64x1x2_t", "float32x2x2_t", "poly8x8x2_t", "poly16x4x2_t", "int8x16x2_t",
"int16x8x2_t", "int32x4x2_t", "int64x2x2_t", "uint8x16x2_t", "uint16x8x2_t", "uint32x4x2_t",
"uint64x2x2_t", "float32x4x2_t", "poly8x16x2_t", "poly16x8x2_t",
"int8x8x3_t", "int16x4x3_t", "int32x2x3_t", "int64x1x3_t", "uint8x8x3_t", "uint16x4x3_t",
"uint32x2x3_t", "uint64x1x3_t", "float32x2x3_t", "poly8x8x3_t", "poly16x4x3_t", "int8x16x3_t",
"int16x8x3_t", "int32x4x3_t", "int64x2x3_t", "uint8x16x3_t", "uint16x8x3_t", "uint32x4x3_t",
"uint64x2x3_t", "float32x4x3_t", "poly8x16x3_t", "poly16x8x3_t",
"int8x8x4_t", "int16x4x4_t", "int32x2x4_t", "int64x1x4_t", "uint8x8x4_t", "uint16x4x4_t",
"uint32x2x4_t", "uint64x1x4_t", "float32x2x4_t", "poly8x8x4_t", "poly16x4x4_t", "int8x16x4_t",
"int16x8x4_t", "int32x4x4_t", "int64x2x4_t", "uint8x16x4_t", "uint16x8x4_t", "uint32x4x4_t",
"uint64x2x4_t", "float32x4x4_t", "poly8x16x4_t", "poly16x8x4_t" } )
{
ret.insert( v );
}
return ret;
}
static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetSpecial()
{
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret;
for( auto& v : { "this", "nullptr", "true", "false", "goto", "NULL" } )
{
ret.insert( v );
}
return ret;
}
}
Tokenizer::Tokenizer()
: m_isInComment( false )
, m_isInPreprocessor( false )
{
}
std::vector<Tokenizer::Token> Tokenizer::Tokenize( const char* begin, const char* end )
{
std::vector<Token> ret;
if( m_isInPreprocessor )
{
if( begin == end )
{
m_isInPreprocessor = false;
return ret;
}
if( *(end-1) != '\\' ) m_isInPreprocessor = false;
ret.emplace_back( Token { begin, end, TokenColor::Preprocessor } );
return ret;
}
const bool first = !m_isInComment;
while( begin != end )
{
if( m_isInComment )
{
const auto pos = begin;
for(;;)
{
while( begin != end && *begin != '*' ) begin++;
begin++;
if( begin < end )
{
if( *begin == '/' )
{
begin++;
ret.emplace_back( Token { pos, begin, TokenColor::Comment } );
m_isInComment = false;
break;
}
}
else
{
ret.emplace_back( Token { pos, end, TokenColor::Comment } );
return ret;
}
}
}
else
{
while( begin != end && isspace( (uint8_t)*begin ) ) begin++;
if( first && begin < end && *begin == '#' )
{
if( *(end-1) == '\\' ) m_isInPreprocessor = true;
ret.emplace_back( Token { begin, end, TokenColor::Preprocessor } );
return ret;
}
const auto pos = begin;
const auto col = IdentifyToken( begin, end );
ret.emplace_back( Token { pos, begin, col } );
}
}
return ret;
}
static bool TokenizeNumber( const char*& begin, const char* end )
{
const bool startNum = *begin >= '0' && *begin <= '9';
if( *begin != '+' && *begin != '-' && !startNum ) return false;
begin++;
bool hasNum = startNum;
while( begin < end && ( ( *begin >= '0' && *begin <= '9' ) || *begin == '\'' ) )
{
hasNum = true;
begin++;
}
if( !hasNum ) return false;
bool isFloat = false, isBinary = false;
if( begin < end )
{
if( *begin == '.' )
{
isFloat = true;
begin++;
while( begin < end && ( ( *begin >= '0' && *begin <= '9' ) || *begin == '\'' ) ) begin++;
}
else if( *begin == 'x' || *begin == 'X' )
{
// hexadecimal
begin++;
while( begin < end && ( ( *begin >= '0' && *begin <= '9' ) || ( *begin >= 'a' && *begin <= 'f' ) || ( *begin >= 'A' && *begin <= 'F' ) || *begin == '\'' ) ) begin++;
}
else if( *begin == 'b' || *begin == 'B' )
{
isBinary = true;
begin++;
while( begin < end && ( ( *begin == '0' || *begin == '1' ) || *begin == '\'' ) ) begin++;
}
}
if( !isBinary )
{
if( begin < end && ( *begin == 'e' || *begin == 'E' || *begin == 'p' || *begin == 'P' ) )
{
isFloat = true;
begin++;
if( begin < end && ( *begin == '+' || *begin == '-' ) ) begin++;
bool hasDigits = false;
while( begin < end && ( ( *begin >= '0' && *begin <= '9' ) || ( *begin >= 'a' && *begin <= 'f' ) || ( *begin >= 'A' && *begin <= 'F' ) || *begin == '\'' ) )
{
hasDigits = true;
begin++;
}
if( !hasDigits ) return false;
}
if( begin < end && ( *begin == 'f' || *begin == 'F' || *begin == 'l' || *begin == 'L' ) ) begin++;
}
if( !isFloat )
{
while( begin < end && ( *begin == 'u' || *begin == 'U' || *begin == 'l' || *begin == 'L' ) ) begin++;
}
return true;
}
Tokenizer::TokenColor Tokenizer::IdentifyToken( const char*& begin, const char* end )
{
static const auto s_keywords = GetKeywords();
static const auto s_types = GetTypes();
static const auto s_special = GetSpecial();
if( *begin == '"' )
{
begin++;
while( begin < end )
{
if( *begin == '"' )
{
begin++;
break;
}
begin += 1 + ( *begin == '\\' && end - begin > 1 && *(begin+1) == '"' );
}
return TokenColor::String;
}
if( *begin == '\'' )
{
begin++;
if( begin < end && *begin == '\\' ) begin++;
if( begin < end ) begin++;
if( begin < end && *begin == '\'' ) begin++;
return TokenColor::CharacterLiteral;
}
if( ( *begin >= 'a' && *begin <= 'z' ) || ( *begin >= 'A' && *begin <= 'Z' ) || *begin == '_' )
{
const char* tmp = begin;
begin++;
while( begin < end && ( ( *begin >= 'a' && *begin <= 'z' ) || ( *begin >= 'A' && *begin <= 'Z' ) || ( *begin >= '0' && *begin <= '9' ) || *begin == '_' ) ) begin++;
if( begin - tmp <= 24 )
{
char buf[25];
memcpy( buf, tmp, begin-tmp );
buf[begin-tmp] = '\0';
if( s_keywords.find( buf ) != s_keywords.end() ) return TokenColor::Keyword;
if( s_types.find( buf ) != s_types.end() ) return TokenColor::Type;
if( s_special.find( buf ) != s_special.end() ) return TokenColor::Special;
}
return TokenColor::Default;
}
const char* tmp = begin;
if( TokenizeNumber( begin, end ) ) return TokenColor::Number;
begin = tmp;
if( *begin == '/' && end - begin > 1 )
{
if( *(begin+1) == '/' )
{
begin = end;
return TokenColor::Comment;
}
if( *(begin+1) == '*' )
{
begin += 2;
for(;;)
{
while( begin < end && *begin != '*' ) begin++;
if( begin == end )
{
m_isInComment = true;
return TokenColor::Comment;
}
begin++;
if( begin < end && *begin == '/' )
{
begin++;
return TokenColor::Comment;
}
}
}
}
while( begin < end )
{
switch( *begin )
{
case '[':
case ']':
case '{':
case '}':
case '!':
case '%':
case '^':
case '&':
case '*':
case '(':
case ')':
case '-':
case '+':
case '=':
case '~':
case '|':
case '<':
case '>':
case '?':
case ':':
case '/':
case ';':
case ',':
case '.':
begin++;
break;
default:
goto out;
}
}
out:
if( begin != tmp ) return TokenColor::Punctuation;
begin = end;
return TokenColor::Default;
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceTokenizer.cpp
|
C++
|
gpl-3.0
| 11,400
|
#ifndef __TRACYSOURCETOKENIZER_HPP__
#define __TRACYSOURCETOKENIZER_HPP__
#include <stdint.h>
#include <vector>
namespace tracy
{
class Tokenizer
{
public:
enum class TokenColor : uint8_t
{
Default,
Comment,
Preprocessor,
String,
CharacterLiteral,
Keyword,
Number,
Punctuation,
Type,
Special
};
struct Token
{
const char* begin;
const char* end;
TokenColor color;
};
struct Line
{
const char* begin;
const char* end;
std::vector<Token> tokens;
};
Tokenizer();
std::vector<Token> Tokenize( const char* begin, const char* end );
private:
TokenColor IdentifyToken( const char*& begin, const char* end );
bool m_isInComment;
bool m_isInPreprocessor;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceTokenizer.hpp
|
C++
|
gpl-3.0
| 853
|
#include <ctype.h>
#include <inttypes.h>
#include <stdio.h>
#include <capstone.h>
#include "imgui.h"
#include "TracyCharUtil.hpp"
#include "TracyColor.hpp"
#include "TracyFilesystem.hpp"
#include "TracyImGui.hpp"
#include "TracyMicroArchitecture.hpp"
#include "TracyPrint.hpp"
#include "TracySort.hpp"
#include "TracySourceView.hpp"
#include "TracyView.hpp"
#include "TracyWorker.hpp"
#include "IconsFontAwesome5.h"
#ifndef TRACY_NO_FILESELECTOR
# include "../nfd/nfd.h"
#endif
namespace tracy
{
struct MicroArchUx
{
const char* uArch;
const char* cpuName;
const char* moniker;
};
static constexpr MicroArchUx s_uArchUx[] = {
{ "AMD Zen 3", "Ryzen 5 5600X", "ZEN3" },
{ "AMD Zen 2", "Ryzen 7 3700X", "ZEN2" },
{ "AMD Zen+", "Ryzen 5 2600", "ZEN+" },
{ "Alder Lake P", "Core i5-12600K", "ADL-P" },
{ "Alder Lake E", "Core i5-12600K", "ADL-E" },
{ "Rocket Lake", "Core i9-11900", "RKL" },
{ "Tiger Lake", "Core i7-1165G7", "TGL" },
{ "Ice Lake", "Core i5-1035G1", "ICL" },
{ "Cascade Lake", "Core i9-10980XE", "CLX" },
{ "Cannon Lake", "Core i3-8121U", "CNL" },
{ "Coffee Lake", "Core i7-8700K", "CFL" },
{ "Kaby Lake", "Core i7-7700", "KBL" },
{ "Skylake-X", "Core i9-7900X", "SKX" },
{ "Skylake", "Core i7-6500U", "SKL" },
{ "Broadwell", "Core i5-5200U", "BDW" },
{ "Haswell", "Xeon E3-1225 v3", "HSW" },
{ "Ivy Bridge", "Core i5-3470", "IVB" },
{ "Sandy Bridge", "Core i7-2600", "SNB" },
{ "Westmere", "Core i5-650", "WSM" },
{ "Nehalem", "Core i5-750", "NHM" },
{ "Wolfdale", "Core 2 Duo E8400", "WOL" },
{ "Conroe", "Core 2 Duo E6750", "CON" },
{ "Bonnell", "Atom D525", "BNL" },
{ "Airmont", "Celeron N3000", "AMT" },
{ "Goldmont", "Celeron J3455", "GLM" },
{ "Goldmont Plus", "Celeron J4125", "GLP" },
{ "Tremont", "Pentium Silver N6005", "TRM" },
};
static constexpr const char* s_regNameX86[] = {
"invalid", "rflags",
"rax", "rbx", "rcx", "rdx", "rsi", "rdi", "rbp", "rsp", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
"mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7",
"xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "xmm8", "xmm9",
"xmm10", "xmm11", "xmm12", "xmm13", "xmm14", "xmm15", "xmm16", "xmm17", "xmm18", "xmm19",
"xmm20", "xmm21", "xmm22", "xmm23", "xmm24", "xmm25", "xmm26", "xmm27", "xmm28", "xmm29",
"xmm30", "xmm31", "k0", "k1", "k2", "k3", "k4", "k5", "k6", "k7"
};
static_assert( sizeof( s_regNameX86 ) / sizeof( *s_regNameX86 ) == (size_t)SourceView::RegsX86::NUMBER_OF_ENTRIES, "Invalid x86 register name table" );
static SourceView::RegsX86 s_regMapX86[X86_REG_ENDING];
static constexpr const char* s_CostName[] = {
"Sample count",
"Cycles",
"Branch impact",
"Cache impact",
"Retirements",
"Branches taken",
"Branch miss",
"Cache access",
"Cache miss"
};
static constexpr SourceView::CostType s_costSeparateAfter = SourceView::CostType::SlowCache;
struct ChildStat
{
uint64_t addr;
uint32_t count;
};
static size_t CountHwSamples( const SortedVector<Int48, Int48Sort>& vec, const Range& range )
{
if( vec.empty() ) return 0;
auto it = std::lower_bound( vec.begin(), vec.end(), range.min, [] ( const auto& lhs, const auto& rhs ) { return lhs.Val() < rhs; } );
if( it == vec.end() ) return 0;
auto end = std::lower_bound( it, vec.end(), range.max, [] ( const auto& lhs, const auto& rhs ) { return lhs.Val() < rhs; } );
return std::distance( it, end );
}
static void PrintHwSampleTooltip( size_t cycles, size_t retired, size_t cacheRef, size_t cacheMiss, size_t branchRetired, size_t branchMiss, bool hideFirstSeparator )
{
if( cycles || retired )
{
if( hideFirstSeparator )
{
hideFirstSeparator = false;
}
else
{
ImGui::Separator();
}
if( cycles && retired )
{
char buf[32];
auto end = PrintFloat( buf, buf+32, float( retired ) / cycles, 2 );
*end = '\0';
TextFocused( "IPC:", buf );
}
if( cycles ) TextFocused( "Cycles:", RealToString( cycles ) );
if( retired ) TextFocused( "Retirements:", RealToString( retired ) );
}
if( cacheRef || cacheMiss )
{
if( hideFirstSeparator )
{
hideFirstSeparator = false;
}
else
{
ImGui::Separator();
}
if( cacheRef )
{
char buf[32];
auto end = PrintFloat( buf, buf+32, float( 100 * cacheMiss ) / cacheRef, 2 );
memcpy( end, "%", 2 );
TextFocused( "Cache miss rate:", buf );
TextFocused( "Cache references:", RealToString( cacheRef ) );
}
if( cacheMiss ) TextFocused( "Cache misses:", RealToString( cacheMiss ) );
}
if( branchRetired || branchMiss )
{
if( hideFirstSeparator )
{
hideFirstSeparator = false;
}
else
{
ImGui::Separator();
}
if( branchRetired )
{
char buf[32];
auto end = PrintFloat( buf, buf+32, float( 100 * branchMiss ) / branchRetired, 2 );
memcpy( end, "%", 2 );
TextFocused( "Branch mispredictions rate:", buf );
TextFocused( "Retired branches:", RealToString( branchRetired ) );
}
if( branchMiss ) TextFocused( "Branch mispredictions:", RealToString( branchMiss ) );
}
}
static void PrintSourceFragment( const SourceContents& src, uint32_t srcline, int pre = 4, int post = 3 )
{
auto& lines = src.get();
const int start = std::max( 0, (int)srcline - pre );
const int end = std::min<int>( src.get().size(), srcline + post );
bool first = true;
int bottomEmpty = 0;
for( int i=start; i<end; i++ )
{
auto& line = lines[i];
if( line.begin == line.end )
{
if( !first ) bottomEmpty++;
}
else
{
first = false;
while( bottomEmpty > 0 )
{
ImGui::TextUnformatted( "" );
bottomEmpty--;
}
auto ptr = line.begin;
auto it = line.tokens.begin();
while( ptr < line.end )
{
if( it == line.tokens.end() )
{
ImGui::TextUnformatted( ptr, line.end );
ImGui::SameLine( 0, 0 );
break;
}
if( ptr < it->begin )
{
ImGui::TextUnformatted( ptr, it->begin );
ImGui::SameLine( 0, 0 );
}
TextColoredUnformatted( i == srcline-1 ? SyntaxColors[(int)it->color] : SyntaxColorsDimmed[(int)it->color], it->begin, it->end );
ImGui::SameLine( 0, 0 );
ptr = it->end;
++it;
}
ImGui::ItemSize( ImVec2( 0, 0 ), 0 );
}
}
}
enum { JumpSeparationBase = 6 };
enum { JumpArrowBase = 9 };
SourceView::SourceView( GetWindowCallback gwcb )
: m_font( nullptr )
, m_smallFont( nullptr )
, m_symAddr( 0 )
, m_targetAddr( 0 )
, m_targetLine( 0 )
, m_selectedLine( 0 )
, m_asmSelected( -1 )
, m_hoveredLine( 0 )
, m_hoveredSource( 0 )
, m_codeLen( 0 )
, m_highlightAddr( 0 )
, m_asmCountBase( -1 )
, m_asmRelative( true )
, m_asmBytes( false )
, m_asmShowSourceLocation( true )
, m_calcInlineStats( true )
, m_atnt( false )
, m_hwSamples( true )
, m_hwSamplesRelative( true )
, m_childCalls( false )
, m_childCallList( false )
, m_cost( CostType::SampleCount )
, m_showJumps( true )
, m_cpuArch( CpuArchUnknown )
, m_showLatency( false )
, m_gwcb( gwcb )
{
m_microArchOpMap.reserve( OpsNum );
for( int i=0; i<OpsNum; i++ )
{
m_microArchOpMap.emplace( OpsList[i], i );
}
memset( s_regMapX86, 0, sizeof( s_regMapX86 ) );
s_regMapX86[X86_REG_EFLAGS] = RegsX86::flags;
s_regMapX86[X86_REG_AH] = RegsX86::rax;
s_regMapX86[X86_REG_AL] = RegsX86::rax;
s_regMapX86[X86_REG_AX] = RegsX86::rax;
s_regMapX86[X86_REG_EAX] = RegsX86::rax;
s_regMapX86[X86_REG_RAX] = RegsX86::rax;
s_regMapX86[X86_REG_BH] = RegsX86::rbx;
s_regMapX86[X86_REG_BL] = RegsX86::rbx;
s_regMapX86[X86_REG_BX] = RegsX86::rbx;
s_regMapX86[X86_REG_EBX] = RegsX86::rbx;
s_regMapX86[X86_REG_RBX] = RegsX86::rbx;
s_regMapX86[X86_REG_CH] = RegsX86::rcx;
s_regMapX86[X86_REG_CL] = RegsX86::rcx;
s_regMapX86[X86_REG_CX] = RegsX86::rcx;
s_regMapX86[X86_REG_ECX] = RegsX86::rcx;
s_regMapX86[X86_REG_RCX] = RegsX86::rcx;
s_regMapX86[X86_REG_DH] = RegsX86::rdx;
s_regMapX86[X86_REG_DL] = RegsX86::rdx;
s_regMapX86[X86_REG_DX] = RegsX86::rdx;
s_regMapX86[X86_REG_EDX] = RegsX86::rdx;
s_regMapX86[X86_REG_RDX] = RegsX86::rdx;
s_regMapX86[X86_REG_SIL] = RegsX86::rsi;
s_regMapX86[X86_REG_SI] = RegsX86::rsi;
s_regMapX86[X86_REG_ESI] = RegsX86::rsi;
s_regMapX86[X86_REG_RSI] = RegsX86::rsi;
s_regMapX86[X86_REG_DIL] = RegsX86::rdi;
s_regMapX86[X86_REG_DI] = RegsX86::rdi;
s_regMapX86[X86_REG_EDI] = RegsX86::rdi;
s_regMapX86[X86_REG_RDI] = RegsX86::rdi;
s_regMapX86[X86_REG_BP] = RegsX86::rbp;
s_regMapX86[X86_REG_BP] = RegsX86::rbp;
s_regMapX86[X86_REG_EBP] = RegsX86::rbp;
s_regMapX86[X86_REG_RBP] = RegsX86::rbp;
s_regMapX86[X86_REG_SPL] = RegsX86::rsp;
s_regMapX86[X86_REG_SP] = RegsX86::rsp;
s_regMapX86[X86_REG_ESP] = RegsX86::rsp;
s_regMapX86[X86_REG_RSP] = RegsX86::rsp;
s_regMapX86[X86_REG_R8B] = RegsX86::r8;
s_regMapX86[X86_REG_R8W] = RegsX86::r8;
s_regMapX86[X86_REG_R8D] = RegsX86::r8;
s_regMapX86[X86_REG_R8] = RegsX86::r8;
s_regMapX86[X86_REG_R9B] = RegsX86::r9;
s_regMapX86[X86_REG_R9W] = RegsX86::r9;
s_regMapX86[X86_REG_R9D] = RegsX86::r9;
s_regMapX86[X86_REG_R9] = RegsX86::r9;
s_regMapX86[X86_REG_R10B] = RegsX86::r10;
s_regMapX86[X86_REG_R10W] = RegsX86::r10;
s_regMapX86[X86_REG_R10D] = RegsX86::r10;
s_regMapX86[X86_REG_R10] = RegsX86::r10;
s_regMapX86[X86_REG_R11B] = RegsX86::r11;
s_regMapX86[X86_REG_R11W] = RegsX86::r11;
s_regMapX86[X86_REG_R11D] = RegsX86::r11;
s_regMapX86[X86_REG_R11] = RegsX86::r11;
s_regMapX86[X86_REG_R12B] = RegsX86::r12;
s_regMapX86[X86_REG_R12W] = RegsX86::r12;
s_regMapX86[X86_REG_R12D] = RegsX86::r12;
s_regMapX86[X86_REG_R12] = RegsX86::r12;
s_regMapX86[X86_REG_R13B] = RegsX86::r13;
s_regMapX86[X86_REG_R13W] = RegsX86::r13;
s_regMapX86[X86_REG_R13D] = RegsX86::r13;
s_regMapX86[X86_REG_R13] = RegsX86::r13;
s_regMapX86[X86_REG_R14B] = RegsX86::r14;
s_regMapX86[X86_REG_R14W] = RegsX86::r14;
s_regMapX86[X86_REG_R14D] = RegsX86::r14;
s_regMapX86[X86_REG_R14] = RegsX86::r14;
s_regMapX86[X86_REG_R15B] = RegsX86::r15;
s_regMapX86[X86_REG_R15W] = RegsX86::r15;
s_regMapX86[X86_REG_R15D] = RegsX86::r15;
s_regMapX86[X86_REG_R15] = RegsX86::r15;
s_regMapX86[X86_REG_MM0] = RegsX86::mm0;
s_regMapX86[X86_REG_MM1] = RegsX86::mm1;
s_regMapX86[X86_REG_MM2] = RegsX86::mm2;
s_regMapX86[X86_REG_MM3] = RegsX86::mm3;
s_regMapX86[X86_REG_MM4] = RegsX86::mm4;
s_regMapX86[X86_REG_MM5] = RegsX86::mm5;
s_regMapX86[X86_REG_MM6] = RegsX86::mm6;
s_regMapX86[X86_REG_MM7] = RegsX86::mm7;
s_regMapX86[X86_REG_ST0] = RegsX86::mm0;
s_regMapX86[X86_REG_ST1] = RegsX86::mm1;
s_regMapX86[X86_REG_ST2] = RegsX86::mm2;
s_regMapX86[X86_REG_ST3] = RegsX86::mm3;
s_regMapX86[X86_REG_ST4] = RegsX86::mm4;
s_regMapX86[X86_REG_ST5] = RegsX86::mm5;
s_regMapX86[X86_REG_ST6] = RegsX86::mm6;
s_regMapX86[X86_REG_ST7] = RegsX86::mm7;
s_regMapX86[X86_REG_XMM0] = RegsX86::xmm0;
s_regMapX86[X86_REG_YMM0] = RegsX86::xmm0;
s_regMapX86[X86_REG_ZMM0] = RegsX86::xmm0;
s_regMapX86[X86_REG_XMM1] = RegsX86::xmm1;
s_regMapX86[X86_REG_YMM1] = RegsX86::xmm1;
s_regMapX86[X86_REG_ZMM1] = RegsX86::xmm1;
s_regMapX86[X86_REG_XMM2] = RegsX86::xmm2;
s_regMapX86[X86_REG_YMM2] = RegsX86::xmm2;
s_regMapX86[X86_REG_ZMM2] = RegsX86::xmm2;
s_regMapX86[X86_REG_XMM3] = RegsX86::xmm3;
s_regMapX86[X86_REG_YMM3] = RegsX86::xmm3;
s_regMapX86[X86_REG_ZMM3] = RegsX86::xmm3;
s_regMapX86[X86_REG_XMM4] = RegsX86::xmm4;
s_regMapX86[X86_REG_YMM4] = RegsX86::xmm4;
s_regMapX86[X86_REG_ZMM4] = RegsX86::xmm4;
s_regMapX86[X86_REG_XMM5] = RegsX86::xmm5;
s_regMapX86[X86_REG_YMM5] = RegsX86::xmm5;
s_regMapX86[X86_REG_ZMM5] = RegsX86::xmm5;
s_regMapX86[X86_REG_XMM6] = RegsX86::xmm6;
s_regMapX86[X86_REG_YMM6] = RegsX86::xmm6;
s_regMapX86[X86_REG_ZMM6] = RegsX86::xmm6;
s_regMapX86[X86_REG_XMM7] = RegsX86::xmm7;
s_regMapX86[X86_REG_YMM7] = RegsX86::xmm7;
s_regMapX86[X86_REG_ZMM7] = RegsX86::xmm7;
s_regMapX86[X86_REG_XMM8] = RegsX86::xmm8;
s_regMapX86[X86_REG_YMM8] = RegsX86::xmm8;
s_regMapX86[X86_REG_ZMM8] = RegsX86::xmm8;
s_regMapX86[X86_REG_XMM9] = RegsX86::xmm9;
s_regMapX86[X86_REG_YMM9] = RegsX86::xmm9;
s_regMapX86[X86_REG_ZMM9] = RegsX86::xmm9;
s_regMapX86[X86_REG_XMM10] = RegsX86::xmm10;
s_regMapX86[X86_REG_YMM10] = RegsX86::xmm10;
s_regMapX86[X86_REG_ZMM10] = RegsX86::xmm10;
s_regMapX86[X86_REG_XMM11] = RegsX86::xmm11;
s_regMapX86[X86_REG_YMM11] = RegsX86::xmm11;
s_regMapX86[X86_REG_ZMM11] = RegsX86::xmm11;
s_regMapX86[X86_REG_XMM12] = RegsX86::xmm12;
s_regMapX86[X86_REG_YMM12] = RegsX86::xmm12;
s_regMapX86[X86_REG_ZMM12] = RegsX86::xmm12;
s_regMapX86[X86_REG_XMM13] = RegsX86::xmm13;
s_regMapX86[X86_REG_YMM13] = RegsX86::xmm13;
s_regMapX86[X86_REG_ZMM13] = RegsX86::xmm13;
s_regMapX86[X86_REG_XMM14] = RegsX86::xmm14;
s_regMapX86[X86_REG_YMM14] = RegsX86::xmm14;
s_regMapX86[X86_REG_ZMM14] = RegsX86::xmm14;
s_regMapX86[X86_REG_XMM15] = RegsX86::xmm15;
s_regMapX86[X86_REG_YMM15] = RegsX86::xmm15;
s_regMapX86[X86_REG_ZMM15] = RegsX86::xmm15;
s_regMapX86[X86_REG_XMM16] = RegsX86::xmm16;
s_regMapX86[X86_REG_YMM16] = RegsX86::xmm16;
s_regMapX86[X86_REG_ZMM16] = RegsX86::xmm16;
s_regMapX86[X86_REG_XMM17] = RegsX86::xmm17;
s_regMapX86[X86_REG_YMM17] = RegsX86::xmm17;
s_regMapX86[X86_REG_ZMM17] = RegsX86::xmm17;
s_regMapX86[X86_REG_XMM18] = RegsX86::xmm18;
s_regMapX86[X86_REG_YMM18] = RegsX86::xmm18;
s_regMapX86[X86_REG_ZMM18] = RegsX86::xmm18;
s_regMapX86[X86_REG_XMM19] = RegsX86::xmm19;
s_regMapX86[X86_REG_YMM19] = RegsX86::xmm19;
s_regMapX86[X86_REG_ZMM19] = RegsX86::xmm19;
s_regMapX86[X86_REG_XMM20] = RegsX86::xmm20;
s_regMapX86[X86_REG_YMM20] = RegsX86::xmm20;
s_regMapX86[X86_REG_ZMM20] = RegsX86::xmm20;
s_regMapX86[X86_REG_XMM21] = RegsX86::xmm21;
s_regMapX86[X86_REG_YMM21] = RegsX86::xmm21;
s_regMapX86[X86_REG_ZMM21] = RegsX86::xmm21;
s_regMapX86[X86_REG_XMM22] = RegsX86::xmm22;
s_regMapX86[X86_REG_YMM22] = RegsX86::xmm22;
s_regMapX86[X86_REG_ZMM22] = RegsX86::xmm22;
s_regMapX86[X86_REG_XMM23] = RegsX86::xmm23;
s_regMapX86[X86_REG_YMM23] = RegsX86::xmm23;
s_regMapX86[X86_REG_ZMM23] = RegsX86::xmm23;
s_regMapX86[X86_REG_XMM24] = RegsX86::xmm24;
s_regMapX86[X86_REG_YMM24] = RegsX86::xmm24;
s_regMapX86[X86_REG_ZMM24] = RegsX86::xmm24;
s_regMapX86[X86_REG_XMM25] = RegsX86::xmm25;
s_regMapX86[X86_REG_YMM25] = RegsX86::xmm25;
s_regMapX86[X86_REG_ZMM25] = RegsX86::xmm25;
s_regMapX86[X86_REG_XMM26] = RegsX86::xmm26;
s_regMapX86[X86_REG_YMM26] = RegsX86::xmm26;
s_regMapX86[X86_REG_ZMM26] = RegsX86::xmm26;
s_regMapX86[X86_REG_XMM27] = RegsX86::xmm27;
s_regMapX86[X86_REG_YMM27] = RegsX86::xmm27;
s_regMapX86[X86_REG_ZMM27] = RegsX86::xmm27;
s_regMapX86[X86_REG_XMM28] = RegsX86::xmm28;
s_regMapX86[X86_REG_YMM28] = RegsX86::xmm28;
s_regMapX86[X86_REG_ZMM28] = RegsX86::xmm28;
s_regMapX86[X86_REG_XMM29] = RegsX86::xmm29;
s_regMapX86[X86_REG_YMM29] = RegsX86::xmm29;
s_regMapX86[X86_REG_ZMM29] = RegsX86::xmm29;
s_regMapX86[X86_REG_XMM30] = RegsX86::xmm30;
s_regMapX86[X86_REG_YMM30] = RegsX86::xmm30;
s_regMapX86[X86_REG_ZMM30] = RegsX86::xmm30;
s_regMapX86[X86_REG_XMM31] = RegsX86::xmm31;
s_regMapX86[X86_REG_YMM31] = RegsX86::xmm31;
s_regMapX86[X86_REG_ZMM31] = RegsX86::xmm31;
s_regMapX86[X86_REG_K0] = RegsX86::k0;
s_regMapX86[X86_REG_K1] = RegsX86::k1;
s_regMapX86[X86_REG_K2] = RegsX86::k2;
s_regMapX86[X86_REG_K3] = RegsX86::k3;
s_regMapX86[X86_REG_K4] = RegsX86::k4;
s_regMapX86[X86_REG_K5] = RegsX86::k5;
s_regMapX86[X86_REG_K6] = RegsX86::k6;
s_regMapX86[X86_REG_K7] = RegsX86::k7;
}
static constexpr uint32_t PackCpuInfo( uint32_t cpuid )
{
return ( cpuid & 0xFFF ) | ( ( cpuid & 0xFFF0000 ) >> 4 );
}
struct CpuIdMap
{
uint32_t cpuInfo;
const char* moniker;
};
// http://instlatx64.atw.hu/ seems to be a good resource
//
// .------ extended family id
// |.----- extended model id
// || .--- family id
// || |.-- model
// || ||.- stepping
// || |||
static constexpr CpuIdMap s_cpuIdMap[] = {
{ PackCpuInfo( 0x810F81 ), "ZEN+" },
{ PackCpuInfo( 0x800F82 ), "ZEN+" },
{ PackCpuInfo( 0x830F10 ), "ZEN2" },
{ PackCpuInfo( 0x840F70 ), "ZEN2" },
{ PackCpuInfo( 0x860F01 ), "ZEN2" },
{ PackCpuInfo( 0x860F81 ), "ZEN2" },
{ PackCpuInfo( 0x870F10 ), "ZEN2" },
{ PackCpuInfo( 0x890F00 ), "ZEN2" },
{ PackCpuInfo( 0x890F80 ), "ZEN2" },
{ PackCpuInfo( 0xA00F11 ), "ZEN3" },
{ PackCpuInfo( 0xA00F80 ), "ZEN3" },
{ PackCpuInfo( 0xA20F10 ), "ZEN3" },
{ PackCpuInfo( 0xA20F12 ), "ZEN3" },
{ PackCpuInfo( 0xA30F00 ), "ZEN3" },
{ PackCpuInfo( 0xA40F00 ), "ZEN3" },
{ PackCpuInfo( 0xA40F41 ), "ZEN3" },
{ PackCpuInfo( 0xA50F00 ), "ZEN3" },
{ PackCpuInfo( 0x090672 ), "ADL-P" },
{ PackCpuInfo( 0x090675 ), "ADL-P" },
{ PackCpuInfo( 0x0906A2 ), "ADL-P" },
{ PackCpuInfo( 0x0906A3 ), "ADL-P" },
{ PackCpuInfo( 0x0906A4 ), "ADL-P" },
{ PackCpuInfo( 0x0A0671 ), "RKL" },
{ PackCpuInfo( 0x0806C1 ), "TGL" },
{ PackCpuInfo( 0x0806D1 ), "TGL" },
{ PackCpuInfo( 0x0706E5 ), "ICL" },
{ PackCpuInfo( 0x0606A6 ), "ICL" },
{ PackCpuInfo( 0x050656 ), "CLX" },
{ PackCpuInfo( 0x050657 ), "CLX" },
{ PackCpuInfo( 0x060663 ), "CNL" },
{ PackCpuInfo( 0x0906EA ), "CFL" },
{ PackCpuInfo( 0x0906EB ), "CFL" },
{ PackCpuInfo( 0x0906EC ), "CFL" },
{ PackCpuInfo( 0x0906ED ), "CFL" },
{ PackCpuInfo( 0x0806E9 ), "KBL" },
{ PackCpuInfo( 0x0806EA ), "KBL" },
{ PackCpuInfo( 0x0906E9 ), "KBL" },
{ PackCpuInfo( 0x050654 ), "SKX" },
{ PackCpuInfo( 0x0406E3 ), "SKL" },
{ PackCpuInfo( 0x0506E0 ), "SKL" },
{ PackCpuInfo( 0x0506E3 ), "SKL" },
{ PackCpuInfo( 0x0306D4 ), "BDW" },
{ PackCpuInfo( 0x040671 ), "BDW" },
{ PackCpuInfo( 0x0406F1 ), "BDW" },
{ PackCpuInfo( 0x0306C3 ), "HSW" },
{ PackCpuInfo( 0x0306F2 ), "HSW" },
{ PackCpuInfo( 0x040651 ), "HSW" },
{ PackCpuInfo( 0x0306A9 ), "IVB" },
{ PackCpuInfo( 0x0306E3 ), "IVB" },
{ PackCpuInfo( 0x0306E4 ), "IVB" },
{ PackCpuInfo( 0x0206A2 ), "SNB" },
{ PackCpuInfo( 0x0206A7 ), "SNB" },
{ PackCpuInfo( 0x0206D5 ), "SNB" },
{ PackCpuInfo( 0x0206D6 ), "SNB" },
{ PackCpuInfo( 0x0206D7 ), "SNB" },
{ PackCpuInfo( 0x0206F2 ), "WSM" },
{ PackCpuInfo( 0x0206C0 ), "WSM" },
{ PackCpuInfo( 0x0206C1 ), "WSM" },
{ PackCpuInfo( 0x0206C2 ), "WSM" },
{ PackCpuInfo( 0x020652 ), "WSM" },
{ PackCpuInfo( 0x020655 ), "WSM" },
{ PackCpuInfo( 0x0206E6 ), "NHM" },
{ PackCpuInfo( 0x0106A1 ), "NHM" },
{ PackCpuInfo( 0x0106A2 ), "NHM" },
{ PackCpuInfo( 0x0106A4 ), "NHM" },
{ PackCpuInfo( 0x0106A5 ), "NHM" },
{ PackCpuInfo( 0x0106E4 ), "NHM" },
{ PackCpuInfo( 0x0106E5 ), "NHM" },
{ PackCpuInfo( 0x010676 ), "WOL" },
{ PackCpuInfo( 0x01067A ), "WOL" },
{ PackCpuInfo( 0x0006F2 ), "CON" },
{ PackCpuInfo( 0x0006F4 ), "CON" },
{ PackCpuInfo( 0x0006F6 ), "CON" },
{ PackCpuInfo( 0x0006FB ), "CON" },
{ PackCpuInfo( 0x0006FD ), "CON" },
{ PackCpuInfo( 0x0106C2 ), "BNL" },
{ PackCpuInfo( 0x0106CA ), "BNL" },
{ PackCpuInfo( 0x07065A ), "AMT" },
{ PackCpuInfo( 0x0506C9 ), "GLM" },
{ PackCpuInfo( 0x0506F1 ), "GLM" },
{ PackCpuInfo( 0x0706A1 ), "GLP" },
{ PackCpuInfo( 0x0706A8 ), "GLP" },
{ PackCpuInfo( 0x0806A1 ), "TRM" },
{ PackCpuInfo( 0x090661 ), "TRM" },
{ PackCpuInfo( 0x0906C0 ), "TRM" },
{ 0, 0 }
};
void SourceView::SetCpuId( uint32_t cpuId )
{
auto ptr = s_cpuIdMap;
while( ptr->cpuInfo )
{
if( cpuId == ptr->cpuInfo )
{
SelectMicroArchitecture( ptr->moniker );
m_profileMicroArch = m_selMicroArch;
return;
}
ptr++;
}
SelectMicroArchitecture( "ZEN2" );
m_profileMicroArch = -1;
}
void SourceView::OpenSource( const char* fileName, int line, const View& view, const Worker& worker )
{
m_targetLine = line;
m_selectedLine = line;
m_targetAddr = 0;
m_baseAddr = 0;
m_symAddr = 0;
m_sourceFiles.clear();
m_asm.clear();
ParseSource( fileName, worker, view );
assert( !m_source.empty() );
}
void SourceView::OpenSymbol( const char* fileName, int line, uint64_t baseAddr, uint64_t symAddr, Worker& worker, const View& view )
{
m_targetLine = line;
m_targetAddr = symAddr;
m_baseAddr = baseAddr;
m_symAddr = symAddr;
m_sourceFiles.clear();
m_selectedAddresses.clear();
m_selectedAddresses.emplace( symAddr );
ParseSource( fileName, worker, view );
Disassemble( baseAddr, worker );
SelectLine( line, &worker, true, symAddr );
SelectViewMode();
if( !worker.GetInlineSymbolList( baseAddr, m_codeLen ) ) m_calcInlineStats = false;
}
void SourceView::SelectViewMode()
{
if( !m_source.empty() )
{
if( !m_asm.empty() )
{
m_displayMode = DisplayMixed;
}
else
{
m_displayMode = DisplaySource;
}
}
else
{
assert( !m_asm.empty() );
m_displayMode = DisplayAsm;
}
}
void SourceView::ParseSource( const char* fileName, const Worker& worker, const View& view )
{
if( m_source.filename() != fileName )
{
m_srcWidth = 0;
m_source.Parse( fileName, worker, view );
}
}
static bool IsJumpConditionalX86( const char* op )
{
static constexpr const char* branchX86[] = {
"je", "jne", "jg", "jge", "ja", "jae", "jl", "jle", "jb", "jbe", "jo", "jno", "jz", "jnz", "js", "jns", "jcxz", "jecxz", "jrcxz", "loop", "loope",
"loopne", "loopnz", "loopz", "jnle", "jnl", "jnge", "jng", "jnbe", "jnb", "jnae", "jna", "jc", "jnc", "jp", "jpe", "jnp", "jpo", nullptr
};
auto ptr = branchX86;
while( *ptr ) if( strcmp( *ptr++, op ) == 0 ) return true;
return false;
}
bool SourceView::Disassemble( uint64_t symAddr, const Worker& worker )
{
m_asm.clear();
m_locMap.clear();
m_jumpTable.clear();
m_jumpOut.clear();
m_maxJumpLevel = 0;
m_asmSelected = -1;
m_asmCountBase = -1;
m_asmWidth = 0;
if( symAddr == 0 ) return false;
m_cpuArch = worker.GetCpuArch();
if( m_cpuArch == CpuArchUnknown ) return false;
uint32_t len;
auto code = worker.GetSymbolCode( symAddr, len );
if( !code ) return false;
m_disasmFail = -1;
csh handle;
cs_err rval = CS_ERR_ARCH;
switch( m_cpuArch )
{
case CpuArchX86:
rval = cs_open( CS_ARCH_X86, CS_MODE_32, &handle );
break;
case CpuArchX64:
rval = cs_open( CS_ARCH_X86, CS_MODE_64, &handle );
break;
case CpuArchArm32:
rval = cs_open( CS_ARCH_ARM, CS_MODE_ARM, &handle );
break;
case CpuArchArm64:
rval = cs_open( CS_ARCH_ARM64, CS_MODE_ARM, &handle );
break;
default:
assert( false );
break;
}
if( rval != CS_ERR_OK ) return false;
cs_option( handle, CS_OPT_DETAIL, CS_OPT_ON );
cs_option( handle, CS_OPT_SYNTAX, m_atnt ? CS_OPT_SYNTAX_ATT : CS_OPT_SYNTAX_INTEL );
cs_insn* insn;
size_t cnt = cs_disasm( handle, (const uint8_t*)code, len, symAddr, 0, &insn );
if( cnt > 0 )
{
if( insn[cnt-1].address - symAddr + insn[cnt-1].size < len ) m_disasmFail = insn[cnt-1].address - symAddr;
int bytesMax = 0;
int mLenMax = 0;
m_asm.reserve( cnt );
for( size_t i=0; i<cnt; i++ )
{
const auto& op = insn[i];
const auto& detail = *op.detail;
bool hasJump = false;
bool jumpConditional = false;
for( auto j=0; j<detail.groups_count; j++ )
{
if( detail.groups[j] == CS_GRP_JUMP || detail.groups[j] == CS_GRP_CALL || detail.groups[j] == CS_GRP_RET )
{
hasJump = true;
break;
}
}
uint64_t jumpAddr = 0;
if( hasJump )
{
switch( m_cpuArch )
{
case CpuArchX86:
case CpuArchX64:
if( detail.x86.op_count == 1 && detail.x86.operands[0].type == X86_OP_IMM )
{
jumpAddr = (uint64_t)detail.x86.operands[0].imm;
}
jumpConditional = IsJumpConditionalX86( op.mnemonic );
break;
case CpuArchArm32:
if( detail.arm.op_count == 1 && detail.arm.operands[0].type == ARM_OP_IMM )
{
jumpAddr = (uint64_t)detail.arm.operands[0].imm;
}
break;
case CpuArchArm64:
if( detail.arm64.op_count == 1 && detail.arm64.operands[0].type == ARM64_OP_IMM )
{
jumpAddr = (uint64_t)detail.arm64.operands[0].imm;
}
break;
default:
assert( false );
break;
}
if( jumpAddr >= symAddr && jumpAddr < symAddr + len )
{
auto fit = std::lower_bound( insn, insn+cnt, jumpAddr, []( const auto& l, const auto& r ) { return l.address < r; } );
if( fit != insn+cnt && fit->address == jumpAddr )
{
const auto min = std::min( jumpAddr, op.address );
const auto max = std::max( jumpAddr, op.address );
auto it = m_jumpTable.find( jumpAddr );
if( it == m_jumpTable.end() )
{
m_jumpTable.emplace( jumpAddr, JumpData { min, max, 0, { op.address } } );
}
else
{
if( it->second.min > min ) it->second.min = min;
else if( it->second.max < max ) it->second.max = max;
it->second.source.emplace_back( op.address );
}
}
else
{
jumpAddr = 0;
}
}
else
{
m_jumpOut.emplace( op.address );
}
}
std::vector<AsmOpParams> params;
switch( m_cpuArch )
{
case CpuArchX86:
case CpuArchX64:
for( uint8_t i=0; i<detail.x86.op_count; i++ )
{
uint8_t type = 0;
switch( detail.x86.operands[i].type )
{
case X86_OP_IMM:
type = 0;
break;
case X86_OP_REG:
type = 1;
break;
case X86_OP_MEM:
type = 2;
break;
default:
assert( false );
break;
}
params.emplace_back( AsmOpParams { type, uint16_t( detail.x86.operands[i].size * 8 ) } );
}
break;
case CpuArchArm32:
for( uint8_t i=0; i<detail.arm.op_count; i++ )
{
uint8_t type = 0;
switch( detail.arm.operands[i].type )
{
case ARM_OP_IMM:
type = 0;
break;
case ARM_OP_REG:
type = 1;
break;
case ARM_OP_MEM:
type = 2;
break;
default:
type = 255;
break;
}
params.emplace_back( AsmOpParams { type, 0 } );
}
break;
case CpuArchArm64:
for( uint8_t i=0; i<detail.arm64.op_count; i++ )
{
uint8_t type = 0;
switch( detail.arm64.operands[i].type )
{
case ARM64_OP_IMM:
type = 0;
break;
case ARM64_OP_REG:
type = 1;
break;
case ARM64_OP_MEM:
type = 2;
break;
default:
type = 255;
break;
}
params.emplace_back( AsmOpParams { type, 0 } );
}
break;
default:
assert( false );
break;
}
LeaData leaData = LeaData::none;
if( ( m_cpuArch == CpuArchX64 || m_cpuArch == CpuArchX86 ) && op.id == X86_INS_LEA )
{
assert( op.detail->x86.op_count == 2 );
const auto opidx = m_atnt ? 0 : 1;
assert( op.detail->x86.operands[opidx].type == X86_OP_MEM );
auto& mem = op.detail->x86.operands[opidx].mem;
if( mem.base == X86_REG_INVALID )
{
if( mem.index == X86_REG_INVALID )
{
leaData = LeaData::d;
}
else
{
leaData = mem.disp == 0 ? LeaData::i : LeaData::id;
}
}
else if( mem.base == X86_REG_RIP )
{
leaData = mem.disp == 0 ? LeaData::r : LeaData::rd;
}
else
{
if( mem.index == X86_REG_INVALID )
{
leaData = mem.disp == 0 ? LeaData::b : LeaData::bd;
}
else
{
leaData = mem.disp == 0 ? LeaData::bi : LeaData::bid;
}
}
}
m_asm.emplace_back( AsmLine { op.address, jumpAddr, op.mnemonic, op.op_str, (uint8_t)op.size, leaData, jumpConditional, std::move( params ) } );
#if CS_API_MAJOR >= 4
auto& entry = m_asm.back();
cs_regs read, write;
uint8_t rcnt, wcnt;
cs_regs_access( handle, &op, read, &rcnt, write, &wcnt );
int idx;
switch( m_cpuArch )
{
case CpuArchX86:
case CpuArchX64:
assert( rcnt < sizeof( entry.readX86 ) );
assert( wcnt < sizeof( entry.writeX86 ) );
idx = 0;
for( int i=0; i<rcnt; i++ )
{
if( s_regMapX86[read[i]] != RegsX86::invalid ) entry.readX86[idx++] = s_regMapX86[read[i]];
entry.readX86[idx] = RegsX86::invalid;
}
idx = 0;
for( int i=0; i<wcnt; i++ )
{
if( s_regMapX86[write[i]] != RegsX86::invalid ) entry.writeX86[idx++] = s_regMapX86[write[i]];
entry.writeX86[idx] = RegsX86::invalid;
}
break;
default:
break;
}
#endif
const auto mLen = (int)strlen( op.mnemonic );
if( mLen > mLenMax ) mLenMax = mLen;
if( op.size > bytesMax ) bytesMax = op.size;
uint32_t mLineMax = 0;
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( op.address, srcline );
if( srcline != 0 )
{
if( srcline > mLineMax ) mLineMax = srcline;
const auto idx = srcidx.Idx();
auto sit = m_sourceFiles.find( idx );
if( sit == m_sourceFiles.end() )
{
m_sourceFiles.emplace( idx, srcline );
}
}
char tmp[16];
sprintf( tmp, "%" PRIu32, mLineMax );
m_maxLine = strlen( tmp ) + 1;
}
cs_free( insn, cnt );
m_maxMnemonicLen = mLenMax + 2;
m_maxAsmBytes = bytesMax;
if( !m_jumpTable.empty() )
{
struct JumpRange
{
uint64_t target;
uint64_t len;
};
std::vector<JumpRange> jumpRange;
jumpRange.reserve( m_jumpTable.size() );
for( auto& v : m_jumpTable )
{
pdqsort_branchless( v.second.source.begin(), v.second.source.end() );
jumpRange.emplace_back( JumpRange { v.first, v.second.max - v.second.min } );
}
pdqsort_branchless( jumpRange.begin(), jumpRange.end(), []( const auto& l, const auto& r ) { return l.len < r.len; } );
std::vector<std::vector<std::pair<uint64_t, uint64_t>>> levelRanges;
for( auto& v : jumpRange )
{
auto it = m_jumpTable.find( v.target );
assert( it != m_jumpTable.end() );
size_t level = 0;
for(;;)
{
assert( levelRanges.size() >= level );
if( levelRanges.size() == level )
{
it->second.level = level;
levelRanges.push_back( { { it->second.min, it->second.max } } );
break;
}
else
{
bool validFit = true;
auto& lr = levelRanges[level];
for( auto& range : lr )
{
assert( !( it->second.min >= range.first && it->second.max <= range.second ) );
if( it->second.min <= range.second && it->second.max >= range.first )
{
validFit = false;
break;
}
}
if( validFit )
{
it->second.level = level;
lr.emplace_back( it->second.min, it->second.max );
break;
}
level++;
}
}
if( level > m_maxJumpLevel ) m_maxJumpLevel = level;
}
uint32_t locNum = 0;
for( auto& v : m_asm )
{
if( m_jumpTable.find( v.addr ) != m_jumpTable.end() )
{
m_locMap.emplace( v.addr, locNum++ );
}
}
}
}
cs_close( &handle );
m_codeLen = len;
ResetAsm();
return true;
}
void SourceView::Render( Worker& worker, View& view )
{
m_highlightAddr.Decay( 0 );
m_hoveredLine.Decay( 0 );
m_hoveredSource.Decay( 0 );
if( m_symAddr == 0 )
{
if( m_source.filename() ) TextFocused( ICON_FA_FILE " File:", m_source.filename() );
if( m_source.is_cached() )
{
TextColoredUnformatted( ImVec4( 0.4f, 0.8f, 0.4f, 1.f ), ICON_FA_DATABASE );
ImGui::SameLine();
ImGui::TextUnformatted( "Source file cached during profiling run" );
}
else
{
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 0.3f, 0.3f, 1.f ), "The source file contents might not reflect the actual profiled code!" );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
}
RenderSimpleSourceView();
}
else
{
RenderSymbolView( worker, view );
}
}
void SourceView::RenderSimpleSourceView()
{
ImGui::SetNextWindowContentSize( ImVec2( m_srcWidth, 0 ) );
ImGui::BeginChild( "##sourceView", ImVec2( 0, 0 ), true, ImGuiWindowFlags_HorizontalScrollbar );
SetFont();
auto& lines = m_source.get();
auto draw = ImGui::GetWindowDrawList();
const auto wpos = ImGui::GetWindowPos();
const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
const auto wh = ImGui::GetWindowHeight();
const auto ty = ImGui::GetTextLineHeight();
const auto ts = ImGui::CalcTextSize( " " ).x;
const auto lineCount = lines.size();
const auto tmp = RealToString( lineCount );
const auto maxLine = strlen( tmp );
const auto lx = ts * maxLine + ty + round( ts*0.4f );
DrawLine( draw, dpos + ImVec2( lx, 0 ), dpos + ImVec2( lx, wh ), 0x08FFFFFF );
const AddrStatData zero;
if( m_targetLine != 0 )
{
int lineNum = 1;
for( auto& line : lines )
{
if( m_targetLine == lineNum )
{
m_targetLine = 0;
ImGui::SetScrollHereY();
}
RenderLine( line, lineNum++, zero.ipMaxAsm, zero, nullptr, nullptr );
}
const auto win = ImGui::GetCurrentWindowRead();
m_srcWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
}
else
{
ImGuiListClipper clipper;
clipper.Begin( (int)lines.size() );
while( clipper.Step() )
{
for( auto i=clipper.DisplayStart; i<clipper.DisplayEnd; i++ )
{
RenderLine( lines[i], i+1, zero.ipMaxAsm, zero, nullptr, nullptr );
}
}
}
UnsetFont();
ImGui::EndChild();
}
void SourceView::RenderSymbolView( Worker& worker, View& view )
{
assert( m_symAddr != 0 );
auto sym = worker.GetSymbolData( m_symAddr );
assert( sym );
if( sym->isInline )
{
auto parent = worker.GetSymbolData( m_baseAddr );
if( parent )
{
TextFocused( ICON_FA_PUZZLE_PIECE " Symbol:", worker.GetString( parent->name ) );
}
else
{
char tmp[16];
sprintf( tmp, "0x%" PRIx64, m_baseAddr );
TextFocused( ICON_FA_PUZZLE_PIECE " Symbol:", tmp );
}
}
else
{
TextFocused( ICON_FA_PUZZLE_PIECE " Symbol:", worker.GetString( sym->name ) );
}
ImGui::SameLine();
TextDisabledUnformatted( worker.GetString( sym->imageName ) );
ImGui::SameLine();
ImGui::TextDisabled( "0x%" PRIx64, m_baseAddr );
const bool limitView = view.m_statRange.active;
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
if( inlineList )
{
if( m_calcInlineStats )
{
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
TooltipIfHovered( "Context is limited to an inline function" );
}
if( SmallCheckbox( ICON_FA_SITEMAP " Function:", &m_calcInlineStats ) )
{
m_asmTarget.line = 0;
SelectLine( m_selectedLine, &worker, true, 0, false );
}
ImGui::SameLine();
ImGui::SetNextItemWidth( -1 );
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
const auto currSymName = m_symAddr == m_baseAddr ? "[ - self - ]" : worker.GetString( sym->name );
if( ImGui::BeginCombo( "##functionList", currSymName, ImGuiComboFlags_HeightLarge ) )
{
const auto symEnd = m_baseAddr + m_codeLen;
unordered_flat_map<uint64_t, uint32_t> symStat;
if( limitView )
{
symStat.emplace( m_baseAddr, CountAsmIpStats( m_baseAddr, worker, true, view ) );
auto ptr = inlineList;
while( *ptr < symEnd )
{
symStat.emplace( *ptr, CountAsmIpStats( *ptr, worker, true, view ) );
ptr++;
}
}
else
{
const auto& ss = worker.GetSymbolStats();
for( auto& v : ss ) symStat.emplace( v.first, v.second.excl );
}
uint32_t totalSamples = 0;
Vector<std::pair<uint64_t, uint32_t>> symInline;
auto baseStatIt = symStat.find( m_baseAddr );
if( baseStatIt == symStat.end() || baseStatIt->second == 0 )
{
symInline.push_back( std::make_pair( m_baseAddr, 0 ) );
}
else
{
symInline.push_back( std::make_pair( m_baseAddr, baseStatIt->second ) );
totalSamples += baseStatIt->second;
}
while( *inlineList < symEnd )
{
if( *inlineList != m_baseAddr )
{
auto statIt = symStat.find( *inlineList );
if( statIt == symStat.end() || statIt->second == 0 )
{
symInline.push_back_non_empty( std::make_pair( *inlineList, 0 ) );
}
else
{
symInline.push_back_non_empty( std::make_pair( *inlineList, statIt->second ) );
totalSamples += statIt->second;
}
}
inlineList++;
}
pdqsort_branchless( symInline.begin(), symInline.end(), []( const auto& l, const auto& r ) { return l.second == r.second ? l.first < r.first : l.second > r.second; } );
if( totalSamples == 0 )
{
ImGui::Columns( 2 );
static bool widthSet = false;
if( !widthSet )
{
widthSet = true;
const auto w = ImGui::GetWindowWidth();
const auto c1 = ImGui::CalcTextSize( "0xeeeeeeeeeeeeee" ).x;
ImGui::SetColumnWidth( 0, w - c1 );
ImGui::SetColumnWidth( 1, c1 );
}
}
else
{
ImGui::Columns( 3 );
static bool widthSet = false;
if( !widthSet )
{
widthSet = true;
const auto w = ImGui::GetWindowWidth();
const auto c0 = ImGui::CalcTextSize( "12345678901234567890" ).x;
const auto c2 = ImGui::CalcTextSize( "0xeeeeeeeeeeeeee" ).x;
ImGui::SetColumnWidth( 0, c0 );
ImGui::SetColumnWidth( 1, w - c0 - c2 );
ImGui::SetColumnWidth( 2, c2 );
}
}
for( auto& v : symInline )
{
if( totalSamples != 0 )
{
if( v.second != 0 )
{
ImGui::TextUnformatted( TimeToString( v.second * worker.GetSamplingPeriod() ) );
ImGui::SameLine();
ImGui::TextDisabled( "(%.2f%%)", 100.f * v.second / totalSamples );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
TextFocused( "Sample count:", RealToString( v.second ) );
ImGui::EndTooltip();
}
}
ImGui::NextColumn();
}
auto isym = worker.GetSymbolData( v.first );
assert( isym );
const char* file;
uint32_t line;
if( isym->isInline )
{
file = worker.GetString( isym->callFile );
line = isym->callLine;
}
else
{
file = worker.GetString( isym->file );
line = isym->line;
}
ImGui::PushID( v.first );
const auto symName = v.first == m_baseAddr ? "[ - self - ]" : worker.GetString( isym->name );
if( ImGui::Selectable( symName, v.first == m_symAddr, ImGuiSelectableFlags_SpanAllColumns ) )
{
m_symAddr = v.first;
ParseSource( file, worker, view );
m_targetLine = line;
SelectLine( line, &worker, true );
SelectViewMode();
}
ImGui::PopID();
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::TextDisabled( "%s:%i", file, line );
ImGui::NextColumn();
ImGui::TextDisabled( "0x%" PRIx64, v.first );
ImGui::NextColumn();
}
ImGui::EndColumns();
ImGui::EndCombo();
}
ImGui::PopStyleVar();
}
TextDisabledUnformatted( "Mode:" );
ImGui::SameLine();
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
if( !m_source.empty() )
{
ImGui::RadioButton( "Source", &m_displayMode, DisplaySource );
if( !m_asm.empty() )
{
ImGui::SameLine();
ImGui::RadioButton( "Assembly", &m_displayMode, DisplayAsm );
ImGui::SameLine();
ImGui::RadioButton( "Combined", &m_displayMode, DisplayMixed );
}
}
else
{
ImGui::RadioButton( "Assembly", &m_displayMode, DisplayAsm );
}
if( !m_asm.empty() )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( ICON_FA_WEIGHT_HANGING " Code:", MemSizeToString( m_codeLen ) );
}
AddrStatData as;
if( m_cost == CostType::SampleCount )
{
if( m_calcInlineStats )
{
GatherIpStats( m_symAddr, as, worker, limitView, view );
GatherAdditionalIpStats( m_symAddr, as, worker, limitView, view );
}
else
{
GatherIpStats( m_baseAddr, as, worker, limitView, view );
auto iptr = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
if( iptr )
{
const auto symEnd = m_baseAddr + m_codeLen;
while( *iptr < symEnd )
{
GatherIpStats( *iptr, as, worker, limitView, view );
iptr++;
}
}
GatherAdditionalIpStats( m_baseAddr, as, worker, limitView, view );
}
}
else
{
GatherIpHwStats( as, worker, view, m_cost );
}
if( !m_calcInlineStats )
{
as.ipTotalSrc = as.ipTotalAsm;
}
if( m_hwSamplesRelative )
{
CountHwStats( as, worker, view );
}
const auto samplesReady = worker.AreSymbolSamplesReady();
if( ( as.ipTotalAsm.local + as.ipTotalAsm.ext ) > 0 || ( view.m_statRange.active && worker.GetSamplesForSymbol( m_baseAddr ) ) )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( worker.GetHwSampleCountAddress() != 0 )
{
SmallCheckbox( ICON_FA_HAMMER " Hw samples", &m_hwSamples );
ImGui::SameLine();
SmallCheckbox( ICON_FA_CAR_CRASH " Impact", &m_hwSamplesRelative );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::TextUnformatted( ICON_FA_HIGHLIGHTER " Cost" );
ImGui::SameLine();
float mw = 0;
for( auto& v : s_CostName )
{
const auto w = ImGui::CalcTextSize( v ).x;
if( w > mw ) mw = w;
}
ImGui::SetNextItemWidth( mw + ImGui::GetTextLineHeight() );
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
if( ImGui::BeginCombo( "##cost", s_CostName[(int)m_cost], ImGuiComboFlags_HeightLarge ) )
{
int idx = 0;
for( auto& v : s_CostName )
{
if( ImGui::Selectable( v, idx == (int)m_cost ) )
{
m_cost = (CostType)idx;
if( m_cost == CostType::SlowBranches && !worker.HasHwBranchRetirement() )
{
m_cost = CostType::BranchMiss;
}
}
if( (CostType)idx == s_costSeparateAfter ) ImGui::Separator();
idx++;
}
ImGui::EndCombo();
}
ImGui::PopStyleVar();
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
}
if( m_cost == CostType::SampleCount )
{
if( !samplesReady )
{
ImGui::PushItemFlag( ImGuiItemFlags_Disabled, true );
ImGui::PushStyleVar( ImGuiStyleVar_Alpha, ImGui::GetStyle().Alpha * 0.5f );
m_childCalls = false;
m_childCallList = false;
}
else if( ImGui::IsKeyDown( ImGuiKey_Z ) )
{
m_childCalls = !m_childCalls;
}
SmallCheckbox( ICON_FA_SIGN_OUT_ALT " Child calls", &m_childCalls );
if( !samplesReady )
{
ImGui::PopStyleVar();
ImGui::PopItemFlag();
TooltipIfHovered( "Please wait, processing data..." );
}
else
{
TooltipIfHovered( "Press Z key to temporarily reverse selection." );
}
ImGui::SameLine();
if( ImGui::SmallButton( m_childCallList ? " " ICON_FA_CARET_UP " " : " " ICON_FA_CARET_DOWN " " ) ) m_childCallList = !m_childCallList;
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_childCalls )
{
TextFocused( ICON_FA_STOPWATCH " Time:", TimeToString( ( as.ipTotalAsm.local + as.ipTotalAsm.ext ) * worker.GetSamplingPeriod() ) );
}
else
{
TextFocused( ICON_FA_STOPWATCH " Time:", TimeToString( as.ipTotalAsm.local * worker.GetSamplingPeriod() ) );
}
if( as.ipTotalAsm.ext )
{
ImGui::SameLine();
ImGui::TextDisabled( "(%c%s)", m_childCalls ? '-' : '+', TimeToString( as.ipTotalAsm.ext * worker.GetSamplingPeriod() ) );
TooltipIfHovered( "Child call samples" );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_childCalls )
{
TextFocused( ICON_FA_EYE_DROPPER " Samples:", RealToString( as.ipTotalAsm.local + as.ipTotalAsm.ext ) );
}
else
{
TextFocused( ICON_FA_EYE_DROPPER " Samples:", RealToString( as.ipTotalAsm.local ) );
}
if( as.ipTotalAsm.ext )
{
ImGui::SameLine();
ImGui::Text( "(%c%s)", m_childCalls ? '-' : '+', RealToString( as.ipTotalAsm.ext ) );
TooltipIfHovered( "Child call samples" );
}
}
else
{
TextFocused( "Events:", RealToString( as.ipTotalAsm.local ) );
m_childCallList = false;
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( !worker.AreSymbolSamplesReady() )
{
view.m_statRange.active = false;
bool val = false;
ImGui::PushItemFlag( ImGuiItemFlags_Disabled, true );
ImGui::PushStyleVar( ImGuiStyleVar_Alpha, ImGui::GetStyle().Alpha * 0.5f );
ImGui::Checkbox( "Limit range", &val );
ImGui::PopItemFlag();
ImGui::PopStyleVar();
TooltipIfHovered( "Please wait, processing data..." );
}
else
{
if( ImGui::Checkbox( "Limit range", &view.m_statRange.active ) )
{
if( view.m_statRange.active && view.m_statRange.min == 0 && view.m_statRange.max == 0 )
{
const auto& vd = view.GetViewData();
view.m_statRange.min = vd.zvStart;
view.m_statRange.max = vd.zvEnd;
}
}
if( view.m_statRange.active )
{
ImGui::SameLine();
TextColoredUnformatted( 0xFF00FFFF, ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::SameLine();
ToggleButton( ICON_FA_RULER " Limits", view.m_showRanges );
}
}
}
else
{
m_cost = CostType::SampleCount;
}
ImGui::PopStyleVar();
ImGui::Separator();
if( m_childCallList )
{
unordered_flat_map<uint64_t, uint32_t> map;
if( m_calcInlineStats )
{
GatherChildStats( m_symAddr, map, worker, limitView, view );
}
else
{
GatherChildStats( m_baseAddr, map, worker, limitView, view );
}
if( !map.empty() )
{
TextDisabledUnformatted( "Child call distribution" );
if( ImGui::BeginChild( "ccd", ImVec2( 0, ImGui::GetTextLineHeight() * std::min<size_t>( 4, map.size() ) + ImGui::GetStyle().WindowPadding.y ) ) )
{
std::vector<ChildStat> vec;
vec.reserve( map.size() );
for( auto& v : map ) vec.emplace_back( ChildStat { v.first, v.second } );
pdqsort_branchless( vec.begin(), vec.end(), []( const auto& lhs, const auto& rhs ) { return lhs.count > rhs.count; } );
int idx = 1;
for( auto& v : vec )
{
ImGui::TextDisabled( "%i.", idx++ );
ImGui::SameLine();
auto sd = worker.GetSymbolData( v.addr );
const auto symName = sd ? worker.GetString( sd->name ) : "[unknown]";
if( v.addr >> 63 == 0 )
{
ImGui::TextUnformatted( symName );
}
else
{
TextColoredUnformatted( 0xFF8888FF, symName );
}
ImGui::SameLine();
char tmp[16];
auto end = PrintFloat( tmp, tmp+16, 100.f * v.count / as.ipTotalAsm.ext, 2 );
*end = '\0';
ImGui::TextDisabled( "%s (%s%%)", TimeToString( v.count * worker.GetSamplingPeriod() ), tmp );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
ImGui::Text( "%s samples", RealToString( v.count ) );
ImGui::EndTooltip();
}
if( sd && sd->line != 0 )
{
const auto fileName = worker.GetString( sd->file );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::TextDisabled( "%s:%i", fileName, sd->line );
if( ImGui::IsItemHovered() && SourceFileValid( fileName, worker.GetCaptureTime(), view, worker ) )
{
m_sourceTooltip.Parse( fileName, worker, view );
if( !m_sourceTooltip.empty() )
{
ImGui::BeginTooltip();
SetFont();
PrintSourceFragment( m_sourceTooltip, sd->line, 4, 7 );
UnsetFont();
ImGui::EndTooltip();
}
if( ImGui::IsMouseClicked( 1 ) )
{
OpenSymbol( fileName, sd->line, v.addr, v.addr, worker, view );
}
}
}
}
}
ImGui::EndChild();
ImGui::Separator();
}
}
uint64_t jumpOut = 0;
switch( m_displayMode )
{
case DisplaySource:
RenderSymbolSourceView( as, worker, view );
break;
case DisplayAsm:
jumpOut = RenderSymbolAsmView( as, worker, view );
break;
case DisplayMixed:
ImGui::Columns( 2 );
RenderSymbolSourceView( as, worker, view );
ImGui::NextColumn();
jumpOut = RenderSymbolAsmView( as, worker, view );
ImGui::EndColumns();
break;
default:
assert( false );
break;
}
if( samplesReady && ImGui::IsKeyDown( ImGuiKey_Z ) ) m_childCalls = !m_childCalls;
if( jumpOut != 0 )
{
auto sym = worker.GetSymbolData( jumpOut );
if( sym )
{
auto line = sym->line;
auto file = line == 0 ? nullptr : worker.GetString( sym->file );
if( file && !SourceFileValid( file, worker.GetCaptureTime(), view, worker ) )
{
file = nullptr;
line = 0;
}
if( line > 0 || sym->size.Val() > 0 )
{
OpenSymbol( file, line, jumpOut, jumpOut, worker, view );
}
}
}
}
static uint32_t GetHotnessColor( uint32_t count, uint32_t maxCount )
{
const auto ratio = float( 2 * count ) / maxCount;
if( ratio <= 0.5f )
{
const auto a = int( ( ratio * 1.5f + 0.25f ) * 255 );
return 0x000000FF | ( a << 24 );
}
else if( ratio <= 1.f )
{
const auto g = int( ( ratio - 0.5f ) * 511 );
return 0xFF0000FF | ( g << 8 );
}
else if( ratio <= 2.f )
{
const auto b = int( ( ratio - 1.f ) * 255 );
return 0xFF00FFFF | ( b << 16 );
}
else
{
return 0xFFFFFFFF;
}
}
static uint32_t GetHotnessGlow( uint32_t count, uint32_t maxCount )
{
const auto ratio = float( 2 * count ) / maxCount;
if( ratio <= 0.5f )
{
return 0;
}
else if( ratio <= 1.f )
{
const auto a = int( ( ratio * 2.f - 1.f ) * 102 );
return 0x000000FF | ( a << 24 );
}
else if( ratio <= 2.f )
{
const auto g = int( ( ratio - 1.f ) * 192 );
return 0x660000FF | ( g << 8 );
}
else
{
return 0x6600C0FF;
}
}
static constexpr uint32_t GoodnessColor[256] = {
0xFF3232FF, 0xFF3235FE, 0xFF3238FE, 0xFF323AFD, 0xFF323DFD, 0xFF323FFC, 0xFF3242FC, 0xFF3244FB,
0xFF3246FB, 0xFF3248FB, 0xFF324AFA, 0xFF324CFA, 0xFF324EF9, 0xFF3250F9, 0xFF3252F8, 0xFF3254F8,
0xFF3255F8, 0xFF3257F7, 0xFF3259F7, 0xFF325AF6, 0xFF325CF6, 0xFF325EF5, 0xFF325FF5, 0xFF3260F4,
0xFF3262F4, 0xFF3263F3, 0xFF3265F3, 0xFF3266F3, 0xFF3268F2, 0xFF3269F2, 0xFF326AF1, 0xFF326BF1,
0xFF326DF0, 0xFF326EF0, 0xFF326FEF, 0xFF3270EF, 0xFF3272EE, 0xFF3273EE, 0xFF3274EE, 0xFF3275ED,
0xFF3276ED, 0xFF3277EC, 0xFF3279EC, 0xFF327AEB, 0xFF327BEB, 0xFF327CEA, 0xFF327DEA, 0xFF327EE9,
0xFF327FE9, 0xFF3280E8, 0xFF3281E8, 0xFF3282E7, 0xFF3283E7, 0xFF3284E6, 0xFF3285E6, 0xFF3286E5,
0xFF3287E5, 0xFF3288E4, 0xFF3289E4, 0xFF328AE3, 0xFF328BE3, 0xFF328CE2, 0xFF328DE2, 0xFF328EE1,
0xFF328EE1, 0xFF328FE0, 0xFF3290E0, 0xFF3291DF, 0xFF3292DF, 0xFF3293DE, 0xFF3294DE, 0xFF3295DD,
0xFF3295DD, 0xFF3296DC, 0xFF3297DC, 0xFF3298DB, 0xFF3299DB, 0xFF329ADA, 0xFF329ADA, 0xFF329BD9,
0xFF329CD9, 0xFF329DD8, 0xFF329ED8, 0xFF329ED7, 0xFF329FD7, 0xFF32A0D6, 0xFF32A1D5, 0xFF32A2D5,
0xFF32A2D4, 0xFF32A3D4, 0xFF32A4D3, 0xFF32A5D3, 0xFF32A5D2, 0xFF32A6D2, 0xFF32A7D1, 0xFF32A8D1,
0xFF32A8D0, 0xFF32A9CF, 0xFF32AACF, 0xFF32AACE, 0xFF32ABCE, 0xFF32ACCD, 0xFF32ADCD, 0xFF32ADCC,
0xFF32AECC, 0xFF32AFCB, 0xFF32AFCA, 0xFF32B0CA, 0xFF32B1C9, 0xFF32B1C9, 0xFF32B2C8, 0xFF32B3C7,
0xFF32B3C7, 0xFF32B4C6, 0xFF32B5C6, 0xFF32B5C5, 0xFF32B6C5, 0xFF32B7C4, 0xFF32B7C3, 0xFF32B8C3,
0xFF32B9C2, 0xFF32B9C2, 0xFF32BAC1, 0xFF32BBC0, 0xFF32BBC0, 0xFF32BCBF, 0xFF32BDBE, 0xFF32BDBE,
0xFF32BEBD, 0xFF32BEBD, 0xFF32BFBC, 0xFF32C0BB, 0xFF32C0BB, 0xFF32C1BA, 0xFF32C2B9, 0xFF32C2B9,
0xFF32C3B8, 0xFF32C3B7, 0xFF32C4B7, 0xFF32C5B6, 0xFF32C5B5, 0xFF32C6B5, 0xFF32C6B4, 0xFF32C7B3,
0xFF32C7B3, 0xFF32C8B2, 0xFF32C9B1, 0xFF32C9B1, 0xFF32CAB0, 0xFF32CAAF, 0xFF32CBAF, 0xFF32CCAE,
0xFF32CCAD, 0xFF32CDAD, 0xFF32CDAC, 0xFF32CEAB, 0xFF32CEAA, 0xFF32CFAA, 0xFF32CFA9, 0xFF32D0A8,
0xFF32D1A8, 0xFF32D1A7, 0xFF32D2A6, 0xFF32D2A5, 0xFF32D3A5, 0xFF32D3A4, 0xFF32D4A3, 0xFF32D4A2,
0xFF32D5A2, 0xFF32D5A1, 0xFF32D6A0, 0xFF32D79F, 0xFF32D79E, 0xFF32D89E, 0xFF32D89D, 0xFF32D99C,
0xFF32D99B, 0xFF32DA9A, 0xFF32DA9A, 0xFF32DB99, 0xFF32DB98, 0xFF32DC97, 0xFF32DC96, 0xFF32DD95,
0xFF32DD95, 0xFF32DE94, 0xFF32DE93, 0xFF32DF92, 0xFF32DF91, 0xFF32E090, 0xFF32E08F, 0xFF32E18E,
0xFF32E18E, 0xFF32E28D, 0xFF32E28C, 0xFF32E38B, 0xFF32E38A, 0xFF32E489, 0xFF32E488, 0xFF32E587,
0xFF32E586, 0xFF32E685, 0xFF32E684, 0xFF32E783, 0xFF32E782, 0xFF32E881, 0xFF32E880, 0xFF32E97F,
0xFF32E97E, 0xFF32EA7D, 0xFF32EA7C, 0xFF32EB7B, 0xFF32EB7A, 0xFF32EC79, 0xFF32EC77, 0xFF32ED76,
0xFF32ED75, 0xFF32EE74, 0xFF32EE73, 0xFF32EE72, 0xFF32EF70, 0xFF32EF6F, 0xFF32F06E, 0xFF32F06D,
0xFF32F16B, 0xFF32F16A, 0xFF32F269, 0xFF32F268, 0xFF32F366, 0xFF32F365, 0xFF32F363, 0xFF32F462,
0xFF32F460, 0xFF32F55F, 0xFF32F55E, 0xFF32F65C, 0xFF32F65A, 0xFF32F759, 0xFF32F757, 0xFF32F855,
0xFF32F854, 0xFF32F852, 0xFF32F950, 0xFF32F94E, 0xFF32FA4C, 0xFF32FA4A, 0xFF32FB48, 0xFF32FB46,
0xFF32FB44, 0xFF32FC42, 0xFF32FC3F, 0xFF32FD3D, 0xFF32FD3A, 0xFF32FE38, 0xFF32FE35, 0xFF32FF32,
};
static uint32_t GetGoodnessColor( float inRatio )
{
const auto ratio = std::clamp( int( inRatio * 255.f ), 0, 255 );
return GoodnessColor[ratio];
}
void SourceView::RenderSymbolSourceView( const AddrStatData& as, Worker& worker, const View& view )
{
const auto scale = GetScale();
if( m_sourceFiles.empty() )
{
if( m_source.is_cached() )
{
TextColoredUnformatted( ImVec4( 0.4f, 0.8f, 0.4f, 1.f ), ICON_FA_DATABASE );
ImGui::SameLine();
ImGui::TextUnformatted( "Source file cached during profiling run" );
}
else
{
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 0.3f, 0.3f, 1.f ), "The source file contents might not reflect the actual profiled code!" );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
}
}
else
{
if( m_source.is_cached() )
{
TextColoredUnformatted( ImVec4( 0.4f, 0.8f, 0.4f, 1.f ), ICON_FA_DATABASE );
TooltipIfHovered( "Source file cached during profiling run" );
}
else
{
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 0.3f, 0.3f, 1.f ), "The source file contents might not reflect the actual profiled code!" );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
ImGui::EndTooltip();
}
}
ImGui::SameLine();
TextDisabledUnformatted( ICON_FA_FILE " File:" );
ImGui::SameLine();
const auto fileColor = GetHsvColor( m_source.idx(), 0 );
SmallColorBox( fileColor );
ImGui::SameLine();
ImGui::SetNextItemWidth( -1 );
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
if( ImGui::BeginCombo( "##fileList", m_source.filename(), ImGuiComboFlags_HeightLarge ) )
{
if( m_asm.empty() )
{
for( auto& v : m_sourceFiles )
{
const auto color = GetHsvColor( v.first, 0 );
SmallColorBox( color );
ImGui::SameLine();
auto fstr = worker.GetString( StringIdx( v.first ) );
if( SourceFileValid( fstr, worker.GetCaptureTime(), view, worker ) )
{
ImGui::PushID( v.first );
if( ImGui::Selectable( fstr, fstr == m_source.filename() ) )
{
ParseSource( fstr, worker, view );
m_targetLine = v.second;
SelectLine( v.second, &worker );
}
ImGui::PopID();
}
else
{
TextDisabledUnformatted( fstr );
}
}
}
else
{
AddrStat totalSamples = {};
unordered_flat_map<uint32_t, AddrStat> fileCounts;
for( auto& v : m_asm )
{
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( v.addr, srcline );
if( srcline != 0 )
{
AddrStat cnt = {};
auto ait = as.ipCountAsm.find( v.addr );
if( ait != as.ipCountAsm.end() ) cnt = ait->second;
auto fit = fileCounts.find( srcidx.Idx() );
if( fit == fileCounts.end() )
{
fileCounts.emplace( srcidx.Idx(), cnt );
}
else
{
fit->second += cnt;
}
totalSamples += cnt;
}
}
std::vector<std::pair<uint32_t, AddrStat>> fileCountsVec;
fileCountsVec.reserve( fileCounts.size() );
for( auto& v : fileCounts ) fileCountsVec.emplace_back( v.first, v.second );
if( m_childCalls )
{
pdqsort_branchless( fileCountsVec.begin(), fileCountsVec.end(), [&worker] (const auto& l, const auto& r ) { return ( l.second.local + l.second.ext == r.second.local + r.second.ext ) ? strcmp( worker.GetString( l.first ), worker.GetString( r.first ) ) < 0 : ( l.second.local + l.second.ext > r.second.local + r.second.ext ); } );
}
else
{
pdqsort_branchless( fileCountsVec.begin(), fileCountsVec.end(), [&worker] (const auto& l, const auto& r ) { return l.second.local == r.second.local ? strcmp( worker.GetString( l.first ), worker.GetString( r.first ) ) < 0 : l.second.local > r.second.local; } );
}
const auto hasSamples = totalSamples.local + totalSamples.ext != 0;
if( hasSamples )
{
ImGui::Columns( 2 );
static bool widthSet = false;
if( !widthSet )
{
widthSet = true;
const auto w = ImGui::GetWindowWidth();
const auto c0 = ImGui::CalcTextSize( "12345678901234567890" ).x;
ImGui::SetColumnWidth( 0, c0 );
ImGui::SetColumnWidth( 1, w - c0 );
}
}
for( auto& v : fileCountsVec )
{
if( hasSamples )
{
auto fit = fileCounts.find( v.first );
assert( fit != fileCounts.end() );
if( fit->second.local + fit->second.ext != 0 )
{
if( m_cost == CostType::SampleCount )
{
if( m_childCalls )
{
ImGui::TextUnformatted( TimeToString( ( fit->second.local + fit->second.ext ) * worker.GetSamplingPeriod() ) );
}
else
{
ImGui::TextUnformatted( TimeToString( fit->second.local * worker.GetSamplingPeriod() ) );
}
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
if( fit->second.local )
{
TextFocused( "Local time:", TimeToString( fit->second.local * worker.GetSamplingPeriod() ) );
TextFocused( "Local samples:", RealToString( fit->second.local ) );
}
if( fit->second.ext )
{
TextFocused( "Child time:", TimeToString( fit->second.ext * worker.GetSamplingPeriod() ) );
TextFocused( "Child samples:", RealToString( fit->second.ext ) );
}
ImGui::EndTooltip();
}
}
else
{
ImGui::TextUnformatted( RealToString( fit->second.local ) );
}
ImGui::SameLine();
if( m_childCalls )
{
ImGui::TextDisabled( "(%.2f%%)", 100.f * ( fit->second.local + fit->second.ext ) / ( totalSamples.local + totalSamples.ext ) );
}
else if( totalSamples.local != 0 )
{
ImGui::TextDisabled( "(%.2f%%)", 100.f * fit->second.local / totalSamples.local );
}
else
{
TextDisabledUnformatted( "(0.00%%)" );
}
}
ImGui::NextColumn();
}
const auto color = GetHsvColor( v.first, 0 );
SmallColorBox( color );
ImGui::SameLine();
auto fstr = worker.GetString( StringIdx( v.first ) );
if( SourceFileValid( fstr, worker.GetCaptureTime(), view, worker ) )
{
ImGui::PushID( v.first );
if( ImGui::Selectable( fstr, fstr == m_source.filename(), ImGuiSelectableFlags_SpanAllColumns ) )
{
uint32_t line = 0;
for( auto& file : m_sourceFiles )
{
if( file.first == v.first )
{
line = file.second;
break;
}
}
ParseSource( fstr, worker, view );
m_targetLine = line;
SelectLine( line, &worker );
}
ImGui::PopID();
}
else
{
TextDisabledUnformatted( fstr );
}
if( hasSamples ) ImGui::NextColumn();
}
if( hasSamples ) ImGui::EndColumns();
}
ImGui::EndCombo();
}
ImGui::PopStyleVar();
}
const float bottom = m_srcSampleSelect.empty() ? 0 : ImGui::GetFrameHeight();
ImGui::SetNextWindowContentSize( ImVec2( m_srcWidth, 0 ) );
ImGui::BeginChild( "##sourceView", ImVec2( 0, -bottom ), true, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_HorizontalScrollbar );
SetFont();
auto& lines = m_source.get();
auto draw = ImGui::GetWindowDrawList();
const auto wpos = ImGui::GetWindowPos() - ImVec2( ImGui::GetCurrentWindowRead()->Scroll.x, 0 );
const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
const auto wh = ImGui::GetWindowHeight();
const auto ty = ImGui::GetTextLineHeight();
const auto ts = ImGui::CalcTextSize( " " ).x;
const auto lineCount = lines.size();
const auto tmp = RealToString( lineCount );
const auto maxLine = strlen( tmp );
auto lx = ts * maxLine + ty + round( ts*0.4f );
if( as.ipTotalSrc.local + as.ipTotalSrc.ext != 0 ) lx += ts * 7 + ty;
if( !m_asm.empty() )
{
const auto tmp = RealToString( m_asm.size() );
const auto maxAsm = strlen( tmp ) + 1;
lx += ts * maxAsm + ty;
}
if( m_hwSamples && worker.GetHwSampleCountAddress() != 0 ) lx += 17 * ts + ty;
DrawLine( draw, dpos + ImVec2( lx, 0 ), dpos + ImVec2( lx, wh ), 0x08FFFFFF );
const AddrStatData zero;
m_selectedAddressesHover.clear();
if( m_targetLine != 0 )
{
int lineNum = 1;
for( auto& line : lines )
{
if( m_targetLine == lineNum )
{
m_targetLine = 0;
ImGui::SetScrollHereY();
}
RenderLine( line, lineNum++, zero.ipMaxAsm, as, &worker, &view );
}
const auto win = ImGui::GetCurrentWindowRead();
m_srcWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
}
else
{
ImGuiListClipper clipper;
clipper.Begin( (int)lines.size() );
while( clipper.Step() )
{
if( as.ipTotalSrc.local + as.ipTotalSrc.ext == 0 )
{
for( auto i=clipper.DisplayStart; i<clipper.DisplayEnd; i++ )
{
RenderLine( lines[i], i+1, zero.ipMaxAsm, zero, &worker, &view );
}
}
else
{
for( auto i=clipper.DisplayStart; i<clipper.DisplayEnd; i++ )
{
auto it = as.ipCountSrc.find( i+1 );
const auto ipcnt = it == as.ipCountSrc.end() ? zero.ipMaxAsm : it->second;
RenderLine( lines[i], i+1, ipcnt, as, &worker, &view );
}
}
}
}
const auto win = ImGui::GetCurrentWindowRead();
if( win->ScrollbarY )
{
auto draw = ImGui::GetWindowDrawList();
auto rect = ImGui::GetWindowScrollbarRect( win, ImGuiAxis_Y );
ImGui::PushClipRect( rect.Min, rect.Max, false );
if( m_selectedLine != 0 )
{
const auto ly = round( rect.Min.y + ( m_selectedLine - 0.5f ) / lines.size() * rect.GetHeight() );
DrawLine( draw, ImVec2( rect.Min.x + 0.5f, ly + 0.5f ), ImVec2( rect.Max.x + 0.5f, ly + 0.5f ), 0x8899994C, 3 );
}
if( m_source.idx() == m_hoveredSource && m_hoveredLine != 0 )
{
const auto ly = round( rect.Min.y + ( m_hoveredLine - 0.5f ) / lines.size() * rect.GetHeight() );
DrawLine( draw, ImVec2( rect.Min.x + 0.5f, ly + 0.5f ), ImVec2( rect.Max.x + 0.5f, ly + 0.5f ), 0x88888888, 3 );
}
std::vector<std::pair<uint64_t, AddrStat>> ipData;
ipData.reserve( as.ipCountSrc.size() );
for( auto& v : as.ipCountSrc ) ipData.emplace_back( v.first, v.second );
for( uint32_t lineNum = 1; lineNum <= lines.size(); lineNum++ )
{
if( as.ipCountSrc.find( lineNum ) == as.ipCountSrc.end() )
{
auto addresses = worker.GetAddressesForLocation( m_source.idx(), lineNum );
if( addresses )
{
for( auto& addr : *addresses )
{
if( addr >= m_baseAddr && addr < m_baseAddr + m_codeLen )
{
ipData.emplace_back( lineNum, AddrStat {} );
break;
}
}
}
}
}
pdqsort_branchless( ipData.begin(), ipData.end(), []( const auto& l, const auto& r ) { return l.first < r.first; } );
const auto step = uint32_t( lines.size() * 2 / rect.GetHeight() );
const auto x14 = round( rect.Min.x + rect.GetWidth() * 0.4f );
const auto x34 = round( rect.Min.x + rect.GetWidth() * 0.6f );
auto it = ipData.begin();
while( it != ipData.end() )
{
const auto firstLine = it->first;
AddrStat ipSum = {};
while( it != ipData.end() && it->first <= firstLine + step )
{
ipSum += it->second;
++it;
}
const auto ly = round( rect.Min.y + float( firstLine ) / lines.size() * rect.GetHeight() );
if( m_childCalls )
{
const auto color = ( ipSum.local + ipSum.ext == 0 ) ? 0x22FFFFFF : GetHotnessColor( ipSum.local + ipSum.ext, as.ipMaxSrc.local + as.ipMaxSrc.ext );
draw->AddRectFilled( ImVec2( x14, ly ), ImVec2( x34, ly+3*scale ), color );
}
else
{
const auto color = ipSum.local == 0 ? 0x22FFFFFF : GetHotnessColor( ipSum.local, as.ipMaxSrc.local );
draw->AddRectFilled( ImVec2( x14, ly ), ImVec2( x34, ly+3*scale ), color );
}
}
ImGui::PopClipRect();
}
UnsetFont();
ImGui::EndChild();
if( !m_srcSampleSelect.empty() )
{
AddrStat count = {};
uint32_t numLines = 0;
for( auto& idx : m_srcSampleSelect )
{
auto it = as.ipCountSrc.find( idx );
if( it != as.ipCountSrc.end() )
{
count += it->second;
numLines++;
}
}
ImGui::BeginChild( "##srcSelect" );
if( ImGui::SmallButton( ICON_FA_TIMES ) )
{
m_srcSampleSelect.clear();
m_srcGroupSelect = -1;
}
ImGui::SameLine();
char buf[16];
char* end;
if( m_childCalls )
{
end = PrintFloat( buf, buf+16, 100.f * ( count.local + count.ext ) / ( as.ipTotalSrc.local + as.ipTotalSrc.ext ), 2 );
}
else if( as.ipTotalSrc.local != 0 )
{
end = PrintFloat( buf, buf+16, 100.f * count.local / as.ipTotalSrc.local, 2 );
}
else
{
end = PrintFloat( buf, buf+16, 0.f, 2 );
}
memcpy( end, "%", 2 );
TextFocused( "Selected:", buf );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_cost == CostType::SampleCount )
{
if( m_childCalls )
{
TextFocused( "Time:", TimeToString( ( count.local + count.ext ) * worker.GetSamplingPeriod() ) );
}
else
{
TextFocused( "Time:", TimeToString( count.local * worker.GetSamplingPeriod() ) );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_childCalls )
{
TextFocused( "Sample count:", RealToString( count.local + count.ext ) );
}
else
{
TextFocused( "Sample count:", RealToString( count.local ) );
}
}
else
{
TextFocused( "Events:", RealToString( count.local ) );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( "Lines:", RealToString( numLines ) );
ImGui::EndChild();
}
}
static constexpr char HexPrint[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
static int PrintHexBytesRaw( char* buf, const uint8_t* bytes, size_t len )
{
const auto start = buf;
for( size_t i=0; i<len; i++ )
{
const auto byte = bytes[i];
*buf++ = HexPrint[byte >> 4];
*buf++ = HexPrint[byte & 0xF];
*buf++ = ' ';
}
*--buf = '\0';
return buf - start;
}
static int PrintHexBytesArm( char* buf, const uint8_t* bytes )
{
const auto start = buf;
for( int i=3; i>=0; i-- )
{
const auto byte = bytes[i];
*buf++ = HexPrint[byte >> 4];
*buf++ = HexPrint[byte & 0xF];
*buf++ = ' ';
}
*--buf = '\0';
return buf - start;
}
static int PrintHexBytes( char* buf, const uint8_t* bytes, size_t len, CpuArchitecture arch )
{
switch( arch )
{
case CpuArchX86:
case CpuArchX64:
return PrintHexBytesRaw( buf, bytes, len );
case CpuArchArm32:
case CpuArchArm64:
assert( len == 4 );
return PrintHexBytesArm( buf, bytes );
default:
assert( false );
return 0;
}
}
uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker, View& view )
{
const auto scale = GetScale();
if( m_disasmFail >= 0 )
{
TextColoredUnformatted( ImVec4( 1.f, 1.f, 0.2f, 1.f ), ICON_FA_EXCLAMATION_TRIANGLE );
if( ImGui::IsItemHovered() )
{
const bool clicked = ImGui::IsItemClicked();
ImGui::BeginTooltip();
TextColoredUnformatted( ImVec4( 1, 0, 0, 1 ), "Disassembly failure." );
ImGui::TextUnformatted( "Some instructions weren't properly decoded. Possible reasons:" );
ImGui::TextUnformatted( " 1. Old version of capstone library doesn't support some instructions." );
ImGui::TextUnformatted( " 2. Trying to decode data part of the symbol (e.g. jump arrays, etc.)" );
TextFocused( "Code size:", RealToString( m_codeLen ) );
TextFocused( "Disassembled bytes:", RealToString( m_disasmFail ) );
char tmp[64];
auto bytesLeft = std::min( 16u, m_codeLen - m_disasmFail );
auto code = worker.GetSymbolCode( m_baseAddr, m_codeLen );
assert( code );
PrintHexBytesRaw( tmp, (const uint8_t*)code, bytesLeft );
TextFocused( "Failure bytes:", tmp );
TextDisabledUnformatted( "Click to copy to clipboard." );
ImGui::EndTooltip();
if( clicked ) ImGui::SetClipboardText( tmp );
}
ImGui::SameLine();
}
SmallCheckbox( ICON_FA_SEARCH_LOCATION " Relative loc.", &m_asmRelative );
if( !m_sourceFiles.empty() )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
SmallCheckbox( ICON_FA_FILE_IMPORT " Source loc.", &m_asmShowSourceLocation );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
SmallCheckbox( ICON_FA_COGS " Machine code", &m_asmBytes );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
SmallCheckbox( ICON_FA_SHARE " Jumps", &m_showJumps );
if( m_cpuArch == CpuArchX64 || m_cpuArch == CpuArchX86 )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( SmallCheckbox( "AT&T", &m_atnt ) ) Disassemble( m_baseAddr, worker );
if( !m_atnt )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
float mw = 0;
for( auto& v : s_uArchUx )
{
const auto w = ImGui::CalcTextSize( v.uArch ).x;
if( w > mw ) mw = w;
}
if( m_selMicroArch == m_profileMicroArch )
{
TextColoredUnformatted( ImVec4( 0.4f, 0.8f, 0.4f, 1.f ), ICON_FA_MICROCHIP );
TooltipIfHovered( "Selected microarchitecture is the same as the profiled application was running on" );
}
else
{
TextColoredUnformatted( ImVec4( 1.f, 0.3f, 0.3f, 1.f ), ICON_FA_MICROCHIP );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Selected microarchitecture does not match the one profiled application was running on" );
if( m_profileMicroArch >= 0 )
{
ImGui::Text( "Measurements were performed on the %s microarchitecture", s_uArchUx[m_profileMicroArch].uArch );
}
else
{
ImGui::TextUnformatted( "Measurements were performed on an unknown microarchitecture" );
}
ImGui::EndTooltip();
}
}
ImGui::SameLine( 0, 0 );
ImGui::TextUnformatted( " \xce\xbc""arch:" );
ImGui::SameLine();
ImGui::SetNextItemWidth( mw + ImGui::GetTextLineHeight() );
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
if( ImGui::BeginCombo( "##uarch", s_uArchUx[m_selMicroArch].uArch, ImGuiComboFlags_HeightLarge ) )
{
int idx = 0;
for( auto& v : s_uArchUx )
{
if( ImGui::Selectable( v.uArch, idx == m_selMicroArch ) ) SelectMicroArchitecture( v.moniker );
ImGui::SameLine();
TextDisabledUnformatted( v.cpuName );
idx++;
}
ImGui::EndCombo();
}
ImGui::PopStyleVar();
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
SmallCheckbox( ICON_FA_TRUCK_LOADING " Latency", &m_showLatency );
}
}
#ifndef TRACY_NO_FILESELECTOR
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( ImGui::SmallButton( ICON_FA_FILE_IMPORT " Save" ) )
{
Save( worker );
}
#endif
const float bottom = m_asmSampleSelect.empty() ? 0 : ImGui::GetFrameHeight();
ImGui::SetNextWindowContentSize( ImVec2( m_asmWidth, 0 ) );
ImGui::BeginChild( "##asmView", ImVec2( 0, -bottom ), true, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_HorizontalScrollbar );
SetFont();
int maxAddrLen;
{
char tmp[32];
sprintf( tmp, "%" PRIx64, m_baseAddr + m_codeLen );
maxAddrLen = strlen( tmp );
}
uint64_t selJumpStart = 0;
uint64_t selJumpEnd;
uint64_t selJumpTarget;
uint64_t jumpOut = 0;
const AddrStatData zero;
if( m_targetAddr != 0 )
{
for( auto& line : m_asm )
{
if( m_targetAddr == line.addr )
{
m_targetAddr = 0;
ImGui::SetScrollHereY();
}
RenderAsmLine( line, zero.ipMaxAsm, as, worker, jumpOut, maxAddrLen, view );
}
const auto win = ImGui::GetCurrentWindowRead();
m_asmWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
}
else
{
const auto th = (int)ImGui::GetTextLineHeightWithSpacing();
ImGuiListClipper clipper;
clipper.Begin( (int)m_asm.size(), th );
while( clipper.Step() )
{
const auto wpos = ImGui::GetCursorScreenPos();
const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
static std::vector<uint64_t> insList;
insList.clear();
if( as.ipTotalAsm.local + as.ipTotalAsm.ext == 0 )
{
for( auto i=clipper.DisplayStart; i<clipper.DisplayEnd; i++ )
{
RenderAsmLine( m_asm[i], zero.ipMaxAsm, zero, worker, jumpOut, maxAddrLen, view );
insList.emplace_back( m_asm[i].addr );
const auto win = ImGui::GetCurrentWindowRead();
const auto lineWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
if( lineWidth > m_asmWidth ) m_asmWidth = lineWidth;
}
}
else
{
for( auto i=clipper.DisplayStart; i<clipper.DisplayEnd; i++ )
{
auto& line = m_asm[i];
auto it = as.ipCountAsm.find( line.addr );
const auto ipcnt = it == as.ipCountAsm.end() ? zero.ipMaxAsm : it->second;
RenderAsmLine( line, ipcnt, as, worker, jumpOut, maxAddrLen, view );
insList.emplace_back( line.addr );
const auto win = ImGui::GetCurrentWindowRead();
const auto lineWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
if( lineWidth > m_asmWidth ) m_asmWidth = lineWidth;
}
}
if( m_showJumps && !m_jumpTable.empty() && clipper.DisplayStart != clipper.DisplayEnd )
{
auto draw = ImGui::GetWindowDrawList();
const auto ts = ImGui::CalcTextSize( " " );
const auto th2 = floor( ts.y / 2 );
const auto th4 = floor( ts.y / 4 );
const auto xoff = m_jumpOffset;
const auto minAddr = m_asm[clipper.DisplayStart].addr;
const auto maxAddr = m_asm[clipper.DisplayEnd-1].addr;
const auto mjl = m_maxJumpLevel;
const auto JumpArrow = JumpArrowBase * ts.y / 15;
const auto JumpSeparation = round( JumpSeparationBase * ts.y / 15 );
int i = -1;
for( auto& v : m_jumpTable )
{
i++;
if( v.second.min > maxAddr || v.second.max < minAddr ) continue;
const auto col = GetHsvColor( i, 0 );
auto it0 = std::lower_bound( insList.begin(), insList.end(), v.second.min );
auto it1 = std::lower_bound( insList.begin(), insList.end(), v.second.max );
const auto y0 = ( it0 == insList.end() || *it0 != v.second.min ) ? -th : ( it0 - insList.begin() ) * th;
const auto y1 = it1 == insList.end() ? ( insList.size() + 1 ) * th : ( it1 - insList.begin() ) * th;
float thickness = 1;
if( ImGui::IsWindowHovered() && ImGui::IsMouseHoveringRect( wpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ) - JumpSeparation / 2, y0 + th2 ), wpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ) + JumpSeparation / 2, y1 + th2 ) ) )
{
thickness = 2;
UnsetFont();
ImGui::BeginTooltip();
char tmp[32];
sprintf( tmp, "+%" PRIu64, v.first - m_baseAddr );
TextFocused( "Jump target:", tmp );
ImGui::SameLine();
sprintf( tmp, "(0x%" PRIx64 ")", v.first );
TextDisabledUnformatted( tmp );
auto lit = m_locMap.find( v.first );
assert( lit != m_locMap.end() );
sprintf( tmp, ".L%" PRIu32, lit->second );
TextFocused( "Jump label:", tmp );
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( v.first, srcline );
if( srcline != 0 )
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
TextDisabledUnformatted( "Target location:" );
SmallColorBox( fileColor );
ImGui::SameLine();
ImGui::Text( "%s:%i", fileName, srcline );
const auto symAddr = worker.GetInlineSymbolForAddress( v.first );
if( symAddr != 0 )
{
const auto symData = worker.GetSymbolData( symAddr );
if( symData )
{
ImGui::SameLine();
ImGui::PushFont( m_smallFont );
ImGui::AlignTextToFramePadding();
TextDisabledUnformatted( worker.GetString( symData->name ) );
ImGui::PopFont();
}
}
}
TextFocused( "Jump range:", MemSizeToString( v.second.max - v.second.min ) );
ImGui::Separator();
TextFocused( "Jump sources:", RealToString( v.second.source.size() ) );
const auto ssz = std::min<size_t>( v.second.source.size(), 10 );
for( int j=0; j<ssz; j++ )
{
const auto sidx = worker.GetLocationForAddress( v.second.source[j], srcline );
if( srcline == 0 )
{
SmallColorBox( 0 );
ImGui::SameLine();
ImGui::TextDisabled( "%i. 0x%" PRIx64, j+1, v.second.source[j] );
}
else
{
const auto fn = worker.GetString( sidx );
const auto fc = GetHsvColor( sidx.Idx(), 0 );
SmallColorBox( fc );
ImGui::SameLine();
ImGui::Text( "%i. %s:%i", j+1, fn, srcline );
const auto symAddr = worker.GetInlineSymbolForAddress( v.second.source[j] );
if( symAddr != 0 )
{
const auto symData = worker.GetSymbolData( symAddr );
if( symData )
{
ImGui::SameLine();
ImGui::PushFont( m_smallFont );
ImGui::AlignTextToFramePadding();
TextDisabledUnformatted( worker.GetString( symData->name ) );
ImGui::PopFont();
}
}
}
}
if( ssz != v.second.source.size() )
{
ImGui::TextUnformatted( "..." );
}
ImGui::EndTooltip();
SetFont();
if( ImGui::IsMouseClicked( 0 ) )
{
m_targetAddr = v.first;
m_selectedAddresses.clear();
m_selectedAddresses.emplace( v.first );
}
else if( ImGui::IsMouseClicked( 1 ) )
{
ImGui::OpenPopup( "jumpPopup" );
m_jumpPopupAddr = v.first;
}
selJumpStart = v.second.min;
selJumpEnd = v.second.max;
selJumpTarget = v.first;
}
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ), y0 + th2 ), dpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ), y1 + th2 ), col, thickness );
if( v.first >= minAddr && v.first <= maxAddr )
{
auto iit = std::lower_bound( insList.begin(), insList.end(), v.first );
assert( iit != insList.end() );
const auto y = ( iit - insList.begin() ) * th;
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ), y + th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow + 1, y + th2 ), col, thickness );
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow, y + th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow - th4, y + th2 - th4 ), col, thickness );
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow, y + th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow - th4, y + th2 + th4 ), col, thickness );
}
for( auto& s : v.second.source )
{
if( s >= minAddr && s <= maxAddr )
{
auto iit = std::lower_bound( insList.begin(), insList.end(), s );
assert( iit != insList.end() );
const auto y = ( iit - insList.begin() ) * th;
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * ( mjl - v.second.level ), y + th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + JumpArrow, y + th2 ), col, thickness );
}
}
}
}
}
UnsetFont();
if( ImGui::BeginPopup( "jumpPopup" ) )
{
auto it = m_jumpTable.find( m_jumpPopupAddr );
assert( it != m_jumpTable.end() );
#ifndef TRACY_NO_FILESELECTOR
if( ImGui::MenuItem( ICON_FA_FILE_IMPORT " Save jump range" ) )
{
size_t minIdx = 0, maxIdx = 0;
size_t i;
for( i=0; i<m_asm.size(); i++ )
{
if( m_asm[i].addr == it->second.min )
{
minIdx = i++;
break;
}
}
assert( i != m_asm.size() );
for( ; i<m_asm.size(); i++ )
{
if( m_asm[i].addr == it->second.max )
{
maxIdx = i+1;
break;
}
}
assert( i != m_asm.size() );
Save( worker, minIdx, maxIdx );
ImGui::CloseCurrentPopup();
}
ImGui::Separator();
#endif
if( ImGui::BeginMenu( "Sources" ) )
{
for( auto& src : it->second.source )
{
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( src, srcline );
if( srcline == 0 )
{
SmallColorBox( 0 );
ImGui::SameLine();
ImGui::TextDisabled( "0x%" PRIx64, src );
}
else
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
SmallColorBox( fileColor );
ImGui::SameLine();
char buf[1024];
snprintf( buf, 1024, "%s:%i", fileName, srcline );
ImGui::PushID( src );
if( ImGui::BeginMenu( buf ) )
{
if( SourceFileValid( fileName, worker.GetCaptureTime(), view, worker ) )
{
m_sourceTooltip.Parse( fileName, worker, view );
if( !m_sourceTooltip.empty() )
{
SetFont();
PrintSourceFragment( m_sourceTooltip, srcline );
UnsetFont();
}
}
else
{
TextDisabledUnformatted( "Source not available" );
}
ImGui::EndMenu();
if( ImGui::IsItemClicked() )
{
m_targetAddr = src;
m_selectedAddresses.clear();
m_selectedAddresses.emplace( src );
}
}
ImGui::PopID();
}
}
ImGui::EndMenu();
}
if( ImGui::BeginMenu( "Target" ) )
{
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( m_jumpPopupAddr, srcline );
if( srcline != 0 )
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
SmallColorBox( fileColor );
ImGui::SameLine();
char buf[1024];
snprintf( buf, 1024, "%s:%i", fileName, srcline );
if( ImGui::BeginMenu( buf ) )
{
if( SourceFileValid( fileName, worker.GetCaptureTime(), view, worker ) )
{
m_sourceTooltip.Parse( fileName, worker, view );
if( !m_sourceTooltip.empty() )
{
SetFont();
PrintSourceFragment( m_sourceTooltip, srcline );
UnsetFont();
}
}
else
{
TextDisabledUnformatted( "Source not available" );
}
ImGui::EndMenu();
if( ImGui::IsItemClicked() )
{
m_targetAddr = m_jumpPopupAddr;
m_selectedAddresses.clear();
m_selectedAddresses.emplace( m_jumpPopupAddr );
}
}
}
ImGui::EndMenu();
}
ImGui::EndPopup();
}
SetFont();
}
const auto win = ImGui::GetCurrentWindowRead();
if( win->ScrollbarY )
{
auto draw = ImGui::GetWindowDrawList();
auto rect = ImGui::GetWindowScrollbarRect( win, ImGuiAxis_Y );
ImGui::PushClipRect( rect.Min, rect.Max, false );
std::vector<uint32_t> lineOff;
lineOff.reserve( std::max( m_selectedAddresses.size(), m_selectedAddressesHover.size() ) );
if( !m_selectedAddresses.empty() )
{
for( size_t i=0; i<m_asm.size(); i++ )
{
if( m_selectedAddresses.find( m_asm[i].addr ) != m_selectedAddresses.end() )
{
lineOff.push_back( uint32_t( i ) );
}
}
float lastLine = 0;
for( auto& v : lineOff )
{
const auto ly = round( rect.Min.y + ( v - 0.5f ) / m_asm.size() * rect.GetHeight() );
if( ly > lastLine )
{
lastLine = ly;
DrawLine( draw, ImVec2( rect.Min.x + 0.5f, ly + 0.5f ), ImVec2( rect.Max.x + 0.5f, ly + 0.5f ), 0x8899994C, 1 );
}
}
}
if( !m_selectedAddressesHover.empty() )
{
lineOff.clear();
for( size_t i=0; i<m_asm.size(); i++ )
{
if( m_selectedAddressesHover.find( m_asm[i].addr ) != m_selectedAddressesHover.end() )
{
lineOff.push_back( uint32_t( i ) );
}
}
float lastLine = 0;
for( auto& v : lineOff )
{
const auto ly = round( rect.Min.y + ( v - 0.5f ) / m_asm.size() * rect.GetHeight() );
if( ly > lastLine )
{
lastLine = ly;
DrawLine( draw, ImVec2( rect.Min.x + 0.5f, ly + 0.5f ), ImVec2( rect.Max.x + 0.5f, ly + 0.5f ), 0x88888888, 1 );
}
}
}
uint32_t selJumpLineStart, selJumpLineEnd, selJumpLineTarget;
std::vector<std::pair<uint64_t, AddrStat>> ipData;
ipData.reserve( as.ipCountAsm.size() );
if( selJumpStart == 0 )
{
for( size_t i=0; i<m_asm.size(); i++ )
{
auto it = as.ipCountAsm.find( m_asm[i].addr );
if( it == as.ipCountAsm.end() ) continue;
ipData.emplace_back( i, it->second );
}
}
else
{
for( size_t i=0; i<m_asm.size(); i++ )
{
if( selJumpStart == m_asm[i].addr ) selJumpLineStart = i;
if( selJumpEnd == m_asm[i].addr ) selJumpLineEnd = i;
if( selJumpTarget == m_asm[i].addr ) selJumpLineTarget = i;
auto it = as.ipCountAsm.find( m_asm[i].addr );
if( it == as.ipCountAsm.end() ) continue;
ipData.emplace_back( i, it->second );
}
}
pdqsort_branchless( ipData.begin(), ipData.end(), []( const auto& l, const auto& r ) { return l.first < r.first; } );
const auto step = uint32_t( m_asm.size() * 2 / rect.GetHeight() );
const auto x40 = round( rect.Min.x + rect.GetWidth() * 0.4f );
const auto x60 = round( rect.Min.x + rect.GetWidth() * 0.6f );
auto it = ipData.begin();
while( it != ipData.end() )
{
const auto firstLine = it->first;
AddrStat ipSum = {};
while( it != ipData.end() && it->first <= firstLine + step )
{
ipSum += it->second;
++it;
}
const auto ly = round( rect.Min.y + float( firstLine ) / m_asm.size() * rect.GetHeight() );
if( m_childCalls )
{
const auto color = GetHotnessColor( ipSum.local + ipSum.ext, as.ipMaxAsm.local + as.ipMaxAsm.ext );
draw->AddRectFilled( ImVec2( x40, ly ), ImVec2( x60, ly+3*scale ), color );
}
else if( as.ipMaxAsm.local != 0 )
{
const auto color = GetHotnessColor( ipSum.local, as.ipMaxAsm.local );
draw->AddRectFilled( ImVec2( x40, ly ), ImVec2( x60, ly+3*scale ), color );
}
}
if( selJumpStart != 0 )
{
const auto yStart = 0.5f + rect.Min.y + float( selJumpLineStart ) / m_asm.size() * rect.GetHeight();
const auto yEnd = 0.5f + rect.Min.y + float( selJumpLineEnd ) / m_asm.size() * rect.GetHeight();
const auto yTarget = 0.5f + rect.Min.y + float( selJumpLineTarget ) / m_asm.size() * rect.GetHeight();
const auto x50 = 0.5f + round( rect.Min.x + rect.GetWidth() * 0.5f ) - 1;
const auto x25 = 0.5f + round( rect.Min.x + rect.GetWidth() * 0.25f );
const auto x75 = 0.5f + round( rect.Min.x + rect.GetWidth() * 0.75f );
DrawLine( draw, ImVec2( x50, yStart ), ImVec2( x50, yEnd ), 0xFF00FF00 );
DrawLine( draw, ImVec2( x25, yTarget ), ImVec2( x75, yTarget ), 0xFF00FF00 );
}
if( m_asmSelected >= 0 )
{
const auto x0 = rect.Min.x;
const auto x1 = rect.Min.x + rect.GetWidth() * 0.2f;
float sy;
for( int i=0; i<(int)m_asm.size(); i++ )
{
if( i == m_asmSelected )
{
sy = round( rect.Min.y + ( i - 0.5f ) / m_asm.size() * rect.GetHeight() );
}
else if( m_asm[i].regData[0] != 0 )
{
int flags = 0;
int idx = 0;
for(;;)
{
const auto& v = m_asm[i].regData[idx++];
if( v == 0 ) break;
flags |= v & FlagMask;
}
uint32_t col = 0;
if( ( flags & ( WriteBit | ReadBit ) ) == ( WriteBit | ReadBit ) ) col = 0xFF00FFFF;
else if( flags & WriteBit ) col = 0xFF0000FF;
else if( flags & ReadBit ) col = 0xFF00FF00;
if( col != 0 )
{
const auto ly = round( rect.Min.y + ( i - 0.5f ) / m_asm.size() * rect.GetHeight() );
DrawLine( draw, ImVec2( x0 + 0.5f, ly + 0.5f ), ImVec2( x1 + 0.5f, ly + 0.5f ), col, 3 );
}
}
}
DrawLine( draw, ImVec2( x0 + 0.5f, sy + 0.5f ), ImVec2( x1 + 0.5f, sy + 0.5f ), 0xFFFF9900, 3 );
}
}
UnsetFont();
ImGui::EndChild();
if( !m_asmSampleSelect.empty() )
{
AddrStat count = {};
uint32_t numLines = 0;
for( auto& idx : m_asmSampleSelect )
{
auto it = as.ipCountAsm.find( m_asm[idx].addr );
if( it != as.ipCountAsm.end() )
{
count += it->second;
numLines++;
}
}
ImGui::BeginChild( "##asmSelect" );
if( ImGui::SmallButton( ICON_FA_TIMES ) )
{
m_asmSampleSelect.clear();
m_asmGroupSelect = -1;
}
ImGui::SameLine();
char buf[16];
char* end;
if( m_childCalls )
{
end = PrintFloat( buf, buf+16, 100.f * ( count.local + count.ext ) / ( as.ipTotalAsm.local + as.ipTotalAsm.ext ), 2 );
}
else if( as.ipTotalAsm.local != 0 )
{
end = PrintFloat( buf, buf+16, 100.f * count.local / as.ipTotalAsm.local, 2 );
}
else
{
end = PrintFloat( buf, buf+16, 0.f, 2 );
}
memcpy( end, "%", 2 );
TextFocused( "Selected:", buf );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_cost == CostType::SampleCount )
{
if( m_childCalls )
{
TextFocused( "Time:", TimeToString( ( count.local + count.ext ) * worker.GetSamplingPeriod() ) );
}
else
{
TextFocused( "Time:", TimeToString( count.local * worker.GetSamplingPeriod() ) );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( m_childCalls )
{
TextFocused( "Sample count:", RealToString( count.local + count.ext ) );
}
else
{
TextFocused( "Sample count:", RealToString( count.local ) );
}
}
else
{
TextFocused( "Events:", RealToString( count.local ) );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( "Lines:", RealToString( numLines ) );
ImGui::EndChild();
}
return jumpOut;
}
static bool PrintPercentage( float val, uint32_t col = 0xFFFFFFFF )
{
const auto ty = ImGui::GetTextLineHeight();
auto draw = ImGui::GetWindowDrawList();
const auto wpos = ImGui::GetCursorScreenPos();
const auto stw = ImGui::CalcTextSize( " " ).x;
const auto htw = stw / 2;
const auto tw = stw * 8;
char tmp[16];
auto end = PrintFloat( tmp, tmp+16, val, 2 );
memcpy( end, "%", 2 );
end++;
const auto sz = end - tmp;
char buf[16];
memset( buf, ' ', 7-sz );
memcpy( buf + 7 - sz, tmp, sz+1 );
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( val * tw / 100, ty ), 0xFF444444 );
DrawTextContrast( draw, wpos + ImVec2( htw, 0 ), col, buf );
ImGui::ItemSize( ImVec2( stw * 7, ty ), 0 );
return ImGui::IsWindowHovered() && ImGui::IsMouseHoveringRect( wpos, wpos + ImVec2( stw * 7, ty ) );
}
void SourceView::RenderLine( const Tokenizer::Line& line, int lineNum, const AddrStat& ipcnt, const AddrStatData& as, Worker* worker, const View* view )
{
const auto scale = GetScale();
const auto ts = ImGui::CalcTextSize( " " );
const auto ty = ImGui::GetTextLineHeight();
auto draw = ImGui::GetWindowDrawList();
const auto w = std::max( m_srcWidth, ImGui::GetWindowWidth() );
const auto wpos = ImGui::GetCursorScreenPos();
const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
if( m_source.idx() == m_hoveredSource && lineNum == m_hoveredLine )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0x22FFFFFF );
}
else if( lineNum == m_selectedLine )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0xFF333322 );
}
bool hasHwData = false;
size_t cycles = 0, retired = 0, cacheRef = 0, cacheMiss = 0, branchRetired = 0, branchMiss = 0;
uint32_t match = 0;
if( !m_asm.empty() )
{
assert( worker && view );
auto addresses = worker->GetAddressesForLocation( m_source.idx(), lineNum );
if( addresses )
{
for( auto& addr : *addresses )
{
if( addr >= m_baseAddr && addr < m_baseAddr + m_codeLen )
{
if( !m_calcInlineStats || worker->GetInlineSymbolForAddress( addr ) == m_symAddr )
{
match++;
const auto hw = worker->GetHwSampleData( addr );
if( hw )
{
hasHwData = true;
auto& statRange = view->m_statRange;
if( statRange.active )
{
hw->sort();
cycles += CountHwSamples( hw->cycles, statRange );
retired += CountHwSamples( hw->retired, statRange );
cacheRef += CountHwSamples( hw->cacheRef, statRange );
cacheMiss += CountHwSamples( hw->cacheMiss, statRange );
branchRetired += CountHwSamples( hw->branchRetired, statRange );
branchMiss += CountHwSamples( hw->branchMiss, statRange );
}
else
{
cycles += hw->cycles.size();
retired += hw->retired.size();
cacheRef += hw->cacheRef.size();
cacheMiss += hw->cacheMiss.size();
branchRetired += hw->branchRetired.size();
branchMiss += hw->branchMiss.size();
}
}
}
}
}
}
}
bool mouseHandled = false;
if( as.ipTotalSrc.local + as.ipTotalSrc.ext != 0 )
{
if( ( m_childCalls && ipcnt.local + ipcnt.ext == 0 ) || ( !m_childCalls && ipcnt.local == 0 ) )
{
const auto ts = ImGui::CalcTextSize( " " );
ImGui::ItemSize( ImVec2( 7 * ts.x, ts.y ) );
if( hasHwData && ImGui::IsWindowHovered() && ImGui::IsMouseHoveringRect( wpos, wpos + ImVec2( ts.x * 7, ty ) ) )
{
UnsetFont();
ImGui::BeginTooltip();
PrintHwSampleTooltip( cycles, retired, cacheRef, cacheMiss, branchRetired, branchMiss, true );
ImGui::EndTooltip();
SetFont();
}
}
else
{
auto sit = m_srcSampleSelect.find( lineNum );
bool hover;
if( m_childCalls )
{
hover = PrintPercentage( 100.f * ( ipcnt.local + ipcnt.ext ) / ( as.ipTotalSrc.local + as.ipTotalSrc.ext ), sit == m_srcSampleSelect.end() ? 0xFFFFFFFF : 0xFF8888FF );
}
else
{
hover = PrintPercentage( 100.f * ipcnt.local / as.ipTotalSrc.local, sit == m_srcSampleSelect.end() ? 0xFFFFFFFF : 0xFF8888FF );
}
if( hover )
{
UnsetFont();
ImGui::BeginTooltip();
if( ipcnt.local )
{
if( m_cost == CostType::SampleCount )
{
if( worker ) TextFocused( "Local time:", TimeToString( ipcnt.local * worker->GetSamplingPeriod() ) );
TextFocused( "Local samples:", RealToString( ipcnt.local ) );
}
else
{
TextFocused( "Events:", RealToString( ipcnt.local ) );
}
}
if( ipcnt.ext )
{
if( worker ) TextFocused( "Child time:", TimeToString( ipcnt.ext * worker->GetSamplingPeriod() ) );
TextFocused( "Child samples:", RealToString( ipcnt.ext ) );
}
if( hasHwData ) PrintHwSampleTooltip( cycles, retired, cacheRef, cacheMiss, branchRetired, branchMiss, false );
ImGui::EndTooltip();
SetFont();
if( ImGui::IsMouseClicked( 0 ) )
{
mouseHandled = true;
auto& io = ImGui::GetIO();
if( io.KeyCtrl )
{
m_srcGroupSelect = lineNum;
if( sit == m_srcSampleSelect.end() )
{
m_srcSampleSelect.emplace( lineNum );
}
else
{
m_srcSampleSelect.erase( sit );
}
}
else if( io.KeyShift )
{
m_srcSampleSelect.clear();
if( m_srcGroupSelect == -1 )
{
m_srcGroupSelect = lineNum;
m_srcSampleSelect.insert( lineNum );
}
else
{
if( lineNum < m_srcGroupSelect )
{
for( int i=lineNum; i<=m_srcGroupSelect; i++ )
{
m_srcSampleSelect.insert( i );
}
}
else
{
for( int i=m_srcGroupSelect; i<=lineNum; i++ )
{
m_srcSampleSelect.insert( i );
}
}
}
}
else
{
m_srcSampleSelect.clear();
m_srcSampleSelect.insert( lineNum );
m_srcGroupSelect = lineNum;
}
}
else if( ImGui::IsMouseClicked( 1 ) )
{
mouseHandled = true;
m_srcSampleSelect.clear();
m_srcGroupSelect = -1;
}
}
uint32_t col, glow;
if( m_childCalls )
{
col = GetHotnessColor( ipcnt.local + ipcnt.ext, as.ipMaxSrc.local + as.ipMaxSrc.ext );
glow = GetHotnessGlow( ipcnt.local + ipcnt.ext, as.ipMaxSrc.local + as.ipMaxSrc.ext );
}
else
{
col = GetHotnessColor( ipcnt.local, as.ipMaxSrc.local );
glow = GetHotnessGlow( ipcnt.local, as.ipMaxSrc.local );
}
if( glow )
{
DrawLine( draw, dpos + ImVec2( scale, 2 ), dpos + ImVec2( scale, ty-1 ), glow, scale );
DrawLine( draw, dpos + ImVec2( -scale, 2 ), dpos + ImVec2( -scale, ty-1 ), glow, scale );
}
DrawLine( draw, dpos + ImVec2( 0, 2 ), dpos + ImVec2( 0, ty-1 ), col, scale );
}
ImGui::SameLine( 0, ty );
}
const bool showHwSamples = worker && m_hwSamples && worker->GetHwSampleCountAddress() != 0;
if( showHwSamples )
{
const auto startPos = ImGui::GetCursorScreenPos();
if( hasHwData )
{
if( m_hwSamplesRelative )
{
auto it = as.hwCountSrc.find( lineNum );
if( it == as.hwCountSrc.end() )
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts );
}
else
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, it->second.local, as.hwMaxSrc.local, it->second.ext, as.hwMaxSrc.ext, ts );
}
}
else
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts );
}
ImGui::SameLine( 0, 0 );
}
const auto endPos = ImGui::GetCursorScreenPos();
const auto itemsWidth = ( endPos - startPos ).x;
const auto fixedWidth = 17 * ts.x;
ImGui::ItemSize( ImVec2( fixedWidth - itemsWidth, 0 ) );
ImGui::SameLine( 0, ty );
}
const auto lineCount = m_source.get().size();
const auto tmp = RealToString( lineCount );
const auto maxLine = strlen( tmp );
const auto lineString = RealToString( lineNum );
const auto linesz = strlen( lineString );
char buf[16];
memset( buf, ' ', maxLine - linesz );
memcpy( buf + maxLine - linesz, lineString, linesz+1 );
TextDisabledUnformatted( buf );
ImGui::SameLine( 0, ty );
if( !m_asm.empty() )
{
const auto tmp = RealToString( m_asm.size() );
const auto maxAsm = strlen( tmp ) + 1;
if( match > 0 )
{
const auto asmString = RealToString( match );
sprintf( buf, "@%s", asmString );
const auto asmsz = strlen( buf );
TextDisabledUnformatted( buf );
ImGui::SameLine( 0, 0 );
ImGui::ItemSize( ImVec2( ts.x * ( maxAsm - asmsz ), ty ), 0 );
}
else
{
ImGui::ItemSize( ImVec2( ts.x * maxAsm, ty ), 0 );
}
}
ImGui::SameLine( 0, ty );
auto ptr = line.begin;
auto it = line.tokens.begin();
while( ptr < line.end )
{
if( it == line.tokens.end() )
{
ImGui::TextUnformatted( ptr, line.end );
ImGui::SameLine( 0, 0 );
break;
}
if( ptr < it->begin )
{
ImGui::TextUnformatted( ptr, it->begin );
ImGui::SameLine( 0, 0 );
}
TextColoredUnformatted( SyntaxColors[(int)it->color], it->begin, it->end );
ImGui::SameLine( 0, 0 );
ptr = it->end;
++it;
}
ImGui::ItemSize( ImVec2( 0, 0 ), 0 );
if( match > 0 && ImGui::IsWindowHovered() && ImGui::IsMouseHoveringRect( wpos, wpos + ImVec2( w, ty ) ) )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0x11FFFFFF );
if( !mouseHandled && ( ImGui::IsMouseClicked( 0 ) || ImGui::IsMouseClicked( 1 ) ) )
{
m_displayMode = DisplayMixed;
SelectLine( lineNum, worker, ImGui::IsMouseClicked( 1 ) );
}
else
{
SelectAsmLinesHover( m_source.idx(), lineNum, *worker );
}
}
DrawLine( draw, dpos + ImVec2( 0, ty ), dpos + ImVec2( w, ty ), 0x08FFFFFF );
}
void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const AddrStatData& as, Worker& worker, uint64_t& jumpOut, int maxAddrLen, View& view )
{
const auto scale = GetScale();
const auto ty = ImGui::GetTextLineHeight();
auto draw = ImGui::GetWindowDrawList();
const auto w = std::max( m_asmWidth, ImGui::GetWindowWidth() );
const auto wpos = ImGui::GetCursorScreenPos();
const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
if( m_selectedAddressesHover.find( line.addr ) != m_selectedAddressesHover.end() )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0x22FFFFFF );
}
else if( m_selectedAddresses.find( line.addr ) != m_selectedAddresses.end() )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0xFF333322 );
}
if( line.addr == m_highlightAddr )
{
draw->AddRectFilled( wpos + ImVec2( 0, 1 ), wpos + ImVec2( w, ty ), 0xFF222233 );
}
const auto asmIdx = &line - m_asm.data();
const auto hw = worker.GetHwSampleData( line.addr );
size_t cycles = 0, retired = 0, cacheRef = 0, cacheMiss = 0, branchRetired = 0, branchMiss = 0;
if( hw && ( !m_calcInlineStats || worker.GetInlineSymbolForAddress( line.addr ) == m_symAddr ) )
{
if( view.m_statRange.active )
{
hw->sort();
cycles = CountHwSamples( hw->cycles, view.m_statRange );
retired = CountHwSamples( hw->retired, view.m_statRange );
cacheRef = CountHwSamples( hw->cacheRef, view.m_statRange );
cacheMiss = CountHwSamples( hw->cacheMiss, view.m_statRange );
branchRetired = CountHwSamples( hw->branchRetired, view.m_statRange );
branchMiss = CountHwSamples( hw->branchMiss, view.m_statRange );
}
else
{
cycles = hw->cycles.size();
retired = hw->retired.size();
cacheRef = hw->cacheRef.size();
cacheMiss = hw->cacheMiss.size();
branchRetired = hw->branchRetired.size();
branchMiss = hw->branchMiss.size();
}
}
const auto ts = ImGui::CalcTextSize( " " );
if( as.ipTotalAsm.local + as.ipTotalAsm.ext != 0 )
{
if( ( m_childCalls && ipcnt.local + ipcnt.ext == 0 ) || ( !m_childCalls && ipcnt.local == 0 ) )
{
ImGui::ItemSize( ImVec2( 7 * ts.x, ts.y ) );
if( hw && ImGui::IsWindowHovered() && ImGui::IsMouseHoveringRect( wpos, wpos + ImVec2( ts.x * 7, ty ) ) )
{
UnsetFont();
ImGui::BeginTooltip();
PrintHwSampleTooltip( cycles, retired, cacheRef, cacheMiss, branchRetired, branchMiss, true );
ImGui::EndTooltip();
SetFont();
}
}
else
{
const auto idx = &line - m_asm.data();
auto sit = m_asmSampleSelect.find( idx );
bool hover;
if( m_childCalls )
{
hover = PrintPercentage( 100.f * ( ipcnt.local + ipcnt.ext ) / ( as.ipTotalAsm.local + as.ipTotalAsm.ext ), sit == m_asmSampleSelect.end() ? 0xFFFFFFFF : 0xFF8888FF );
}
else
{
hover = PrintPercentage( 100.f * ipcnt.local / as.ipTotalAsm.local, sit == m_asmSampleSelect.end() ? 0xFFFFFFFF : 0xFF8888FF );
}
if( hover )
{
uint64_t symAddrParents = m_baseAddr;
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
if( inlineList )
{
const auto cfi = worker.PackPointer( line.addr );
const auto symEnd = m_baseAddr + m_codeLen;
while( *inlineList < symEnd )
{
auto ipmap = worker.GetSymbolInstructionPointers( *inlineList );
if( ipmap )
{
if( ipmap->find( cfi ) != ipmap->end() )
{
symAddrParents = *inlineList;
break;
}
}
inlineList++;
}
}
UnsetFont();
ImGui::BeginTooltip();
if( ipcnt.local )
{
if( m_cost == CostType::SampleCount )
{
TextFocused( "Local time:", TimeToString( ipcnt.local * worker.GetSamplingPeriod() ) );
TextFocused( "Local samples:", RealToString( ipcnt.local ) );
}
else
{
TextFocused( "Events:", RealToString( ipcnt.local ) );
}
}
if( ipcnt.ext )
{
TextFocused( "Child time:", TimeToString( ipcnt.ext * worker.GetSamplingPeriod() ) );
TextFocused( "Child samples:", RealToString( ipcnt.ext ) );
}
if( hw ) PrintHwSampleTooltip( cycles, retired, cacheRef, cacheMiss, branchRetired, branchMiss, false );
const auto& stats = *worker.GetSymbolStats( symAddrParents );
if( !stats.parents.empty() )
{
ImGui::Separator();
TextFocused( "Entry call stacks:", RealToString( stats.parents.size() ) );
ImGui::SameLine();
TextDisabledUnformatted( "(middle click to view)" );
}
ImGui::EndTooltip();
SetFont();
if( ImGui::IsMouseClicked( 0 ) )
{
auto& io = ImGui::GetIO();
if( io.KeyCtrl )
{
m_asmGroupSelect = idx;
if( sit == m_asmSampleSelect.end() )
{
m_asmSampleSelect.emplace( idx );
}
else
{
m_asmSampleSelect.erase( sit );
}
}
else if( io.KeyShift )
{
m_asmSampleSelect.clear();
if( m_asmGroupSelect == -1 )
{
m_asmGroupSelect = idx;
m_asmSampleSelect.insert( idx );
}
else
{
if( idx < m_asmGroupSelect )
{
for( int i=idx; i<=m_asmGroupSelect; i++ )
{
m_asmSampleSelect.insert( i );
}
}
else
{
for( int i=m_asmGroupSelect; i<=idx; i++ )
{
m_asmSampleSelect.insert( i );
}
}
}
}
else
{
m_asmSampleSelect.clear();
m_asmSampleSelect.insert( idx );
m_asmGroupSelect = idx;
}
}
else if( ImGui::IsMouseClicked( 1 ) )
{
m_asmSampleSelect.clear();
m_asmGroupSelect = -1;
}
else if( !stats.parents.empty() && ImGui::IsMouseClicked( 2 ) )
{
view.ShowSampleParents( symAddrParents, false );
}
}
uint32_t col, glow;
if( m_childCalls )
{
col = GetHotnessColor( ipcnt.local + ipcnt.ext, as.ipMaxAsm.local + as.ipMaxAsm.ext );
glow = GetHotnessGlow( ipcnt.local + ipcnt.ext, as.ipMaxAsm.local + as.ipMaxAsm.ext );
}
else
{
col = GetHotnessColor( ipcnt.local, as.ipMaxAsm.local );
glow = GetHotnessGlow( ipcnt.local, as.ipMaxAsm.local );
}
if( glow )
{
DrawLine( draw, dpos + ImVec2( scale, 2 ), dpos + ImVec2( scale, ty-1 ), glow, scale );
DrawLine( draw, dpos + ImVec2( -scale, 2 ), dpos + ImVec2( -scale, ty-1 ), glow, scale );
}
DrawLine( draw, dpos + ImVec2( 0, 2 ), dpos + ImVec2( 0, ty-1 ), col, scale );
}
ImGui::SameLine( 0, ty );
}
const bool showHwSamples = m_hwSamples && worker.GetHwSampleCountAddress() != 0;
if( showHwSamples )
{
const auto startPos = ImGui::GetCursorScreenPos();
if( hw )
{
if( m_hwSamplesRelative )
{
auto it = as.hwCountAsm.find( line.addr );
if( it == as.hwCountAsm.end() )
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts );
}
else
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, it->second.local, as.hwMaxAsm.local, it->second.ext, as.hwMaxAsm.ext, ts );
}
}
else
{
RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts );
}
ImGui::SameLine( 0, 0 );
}
const auto endPos = ImGui::GetCursorScreenPos();
const auto itemsWidth = ( endPos - startPos ).x;
const auto fixedWidth = 17 * ts.x;
ImGui::ItemSize( ImVec2( fixedWidth - itemsWidth, 0 ) );
ImGui::SameLine( 0, ty );
}
char buf[256];
if( m_asmCountBase >= 0 )
{
sprintf( buf, "[%i]", int( asmIdx - m_asmCountBase ) );
}
else if( m_asmRelative )
{
sprintf( buf, "+%" PRIu64, line.addr - m_baseAddr );
}
else
{
sprintf( buf, "%" PRIx64, line.addr );
}
const auto asz = strlen( buf );
memset( buf+asz, ' ', maxAddrLen-asz );
buf[maxAddrLen] = '\0';
if( m_asmCountBase >= 0 )
{
TextColoredUnformatted( asmIdx - m_asmCountBase < 0 ? 0xFFBB6666 : 0xFF66BBBB, buf );
}
else
{
TextDisabledUnformatted( buf );
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
if( m_asmCountBase >= 0 )
{
TextDisabledUnformatted( "Absolute address:" );
ImGui::SameLine();
ImGui::Text( "%" PRIx64, line.addr );
TextDisabledUnformatted( "Relative address:" );
ImGui::SameLine();
ImGui::Text( "+%" PRIx64, line.addr - m_baseAddr );
}
else if( m_asmRelative )
{
TextDisabledUnformatted( "Absolute address:" );
ImGui::SameLine();
ImGui::Text( "%" PRIx64, line.addr );
}
else
{
TextDisabledUnformatted( "Relative address:" );
ImGui::SameLine();
ImGui::Text( "+%" PRIx64, line.addr - m_baseAddr );
}
ImGui::EndTooltip();
SetFont();
if( ImGui::IsItemClicked( 0 ) )
{
m_asmCountBase = asmIdx;
}
else if( ImGui::IsItemClicked( 1 ) )
{
m_asmCountBase = -1;
}
}
const auto stw = ImGui::CalcTextSize( " " ).x;
bool lineHovered = false;
if( m_asmShowSourceLocation && !m_sourceFiles.empty() )
{
ImGui::SameLine();
ImVec2 startPos;
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( line.addr, srcline );
if( srcline != 0 )
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
ImGui::ColorButton( "c1", ImVec4( (fileColor & 0xFF) / 255.f, ((fileColor>>8) & 0xFF ) / 255.f, ((fileColor>>16) & 0xFF ) / 255.f, 1.f ), ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoDragDrop, ImVec2( ty - 3 * scale, ty - 3 * scale) );
ImGui::PopStyleVar();
ImGui::SameLine();
startPos = ImGui::GetCursorScreenPos();
char buf[64];
const auto fnsz = strlen( fileName );
if( fnsz < 30 - m_maxLine )
{
sprintf( buf, "%s:%i", fileName, srcline );
}
else
{
sprintf( buf, "...%s:%i", fileName+fnsz-(30-3-1-m_maxLine), srcline );
}
TextDisabledUnformatted( buf );
if( ImGui::IsItemHovered() )
{
lineHovered = true;
UnsetFont();
ImGui::BeginTooltip();
if( worker.HasInlineSymbolAddresses() )
{
const auto symAddr = worker.GetInlineSymbolForAddress( line.addr );
if( symAddr != 0 )
{
const auto symData = worker.GetSymbolData( symAddr );
if( symData )
{
TextFocused( "Function:", worker.GetString( symData->name ) );
ImGui::SameLine();
ImGui::TextDisabled( "(0x%" PRIx64 ")", symAddr );
}
}
}
TextFocused( "File:", fileName );
TextFocused( "Line:", RealToString( srcline ) );
if( SourceFileValid( fileName, worker.GetCaptureTime(), view, worker ) )
{
m_sourceTooltip.Parse( fileName, worker, view );
if( !m_sourceTooltip.empty() )
{
ImGui::Separator();
SetFont();
PrintSourceFragment( m_sourceTooltip, srcline );
UnsetFont();
}
}
ImGui::EndTooltip();
SetFont();
if( ImGui::IsItemClicked( 0 ) || ImGui::IsItemClicked( 1 ) )
{
if( m_source.filename() == fileName )
{
if( ImGui::IsMouseClicked( 1 ) ) m_targetLine = srcline;
SelectLine( srcline, &worker, false );
m_displayMode = DisplayMixed;
}
else if( SourceFileValid( fileName, worker.GetCaptureTime(), view, worker ) )
{
ParseSource( fileName, worker, view );
m_targetLine = srcline;
SelectLine( srcline, &worker, false );
SelectViewMode();
}
else
{
SelectAsmLines( srcidx.Idx(), srcline, worker, false );
}
}
else
{
m_hoveredLine = srcline;
m_hoveredSource = srcidx.Idx();
}
}
}
else
{
SmallColorBox( 0 );
ImGui::SameLine();
startPos = ImGui::GetCursorScreenPos();
TextDisabledUnformatted( "[unknown]" );
}
ImGui::SameLine( 0, 0 );
const auto endPos = ImGui::GetCursorScreenPos();
const auto itemsWidth = ( endPos - startPos ).x;
const auto fixedWidth = 32 * ts.x;
ImGui::ItemSize( ImVec2( fixedWidth - itemsWidth, 0 ) );
}
if( m_asmBytes )
{
auto code = (const uint8_t*)worker.GetSymbolCode( m_baseAddr, m_codeLen );
assert( code );
char tmp[64];
const auto len = PrintHexBytes( tmp, code + line.addr - m_baseAddr, line.len, worker.GetCpuArch() );
ImGui::SameLine();
TextColoredUnformatted( ImVec4( 0.5, 0.5, 1, 1 ), tmp );
ImGui::SameLine( 0, 0 );
ImGui::ItemSize( ImVec2( stw * ( m_maxAsmBytes*3 - len ), ty ), 0 );
}
if( m_showJumps )
{
ImGui::SameLine( 0, 0 );
const auto xoff = ImGui::GetCursorScreenPos().x - wpos.x + round( ty * 0.66f );
m_jumpOffset = xoff;
const auto JumpArrow = JumpArrowBase * ty / 15;
const auto JumpSeparation = round( JumpSeparationBase * ts.y / 15 );
ImGui::SameLine( 0, ty + JumpArrow + m_maxJumpLevel * JumpSeparation );
auto jit = m_jumpOut.find( line.addr );
if( jit != m_jumpOut.end() )
{
const auto th2 = floor( ts.y / 2 );
const auto th4 = floor( ts.y / 4 );
const auto& mjl = m_maxJumpLevel;
const auto col = GetHsvColor( line.jumpAddr, 6 );
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * mjl + th2, th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + th2 + JumpArrow / 2, th2 ), col );
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * mjl + th2, th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + th2 + th4, th2 - th4 ), col );
DrawLine( draw, dpos + ImVec2( xoff + JumpSeparation * mjl + th2, th2 ), dpos + ImVec2( xoff + JumpSeparation * mjl + th2 + th4, th2 + th4 ), col );
}
}
else
{
ImGui::SameLine( 0, ty );
}
int opdesc = 0;
const AsmVar* asmVar = nullptr;
if( !m_atnt && ( m_cpuArch == CpuArchX64 || m_cpuArch == CpuArchX86 ) )
{
auto uarch = MicroArchitectureData[m_idxMicroArch];
char tmp[32];
for( size_t i=0; i<line.mnemonic.size(); i++ )
{
auto c = line.mnemonic[i];
if( c >= 'a' && c <= 'z' ) c = c - 'a' + 'A';
tmp[i] = c;
}
tmp[line.mnemonic.size()] = '\0';
const char* mnemonic = tmp;
if( strcmp( mnemonic, "LEA" ) == 0 )
{
static constexpr const char* LeaTable[] = { "LEA", "LEA_B", "LEA_BD", "LEA_BI", "LEA_BID", "LEA_D", "LEA_I", "LEA_ID", "LEA_R", "LEA_RD" };
mnemonic = LeaTable[(int)line.leaData];
}
auto it = m_microArchOpMap.find( mnemonic );
if( it != m_microArchOpMap.end() )
{
const auto opid = it->second;
auto oit = std::lower_bound( uarch->ops, uarch->ops + uarch->numOps, opid, []( const auto& l, const auto& r ) { return l->id < r; } );
if( oit != uarch->ops + uarch->numOps && (*oit)->id == opid )
{
const auto& op = *oit;
opdesc = op->descId;
std::vector<std::pair<int, int>> res;
res.reserve( op->numVariants );
for( int i=0; i<op->numVariants; i++ )
{
const auto& var = *op->variant[i];
if( var.descNum == (int)line.params.size() )
{
int penalty = 0;
bool match = true;
for( int j=0; j<var.descNum; j++ )
{
if( var.desc[j].type != line.params[j].type )
{
match = false;
break;
}
if( var.desc[j].width != line.params[j].width ) penalty++;
}
if( match )
{
res.emplace_back( i, penalty );
}
}
}
if( !res.empty() )
{
pdqsort_branchless( res.begin(), res.end(), []( const auto& l, const auto& r ) { return l.second < r.second; } );
asmVar = op->variant[res[0].first];
}
}
}
}
if( m_showLatency && asmVar && asmVar->minlat >= 0 )
{
const auto pos = ImVec2( (int)ImGui::GetCursorScreenPos().x, (int)ImGui::GetCursorScreenPos().y );
const auto ty = ImGui::GetTextLineHeight();
if( asmVar->minlat == 0 )
{
DrawLine( draw, pos + ImVec2( 0.5f, -0.5f ), pos + ImVec2( 0.5f, ty + 0.5f ), 0x660000FF );
}
else
{
draw->AddRectFilled( pos, pos + ImVec2( ty * asmVar->minlat + 1, ty + 1 ), 0x660000FF );
}
if( asmVar->minlat != asmVar->maxlat )
{
draw->AddRectFilled( pos + ImVec2( ty * asmVar->minlat + 1, 0 ), pos + ImVec2( ty * asmVar->maxlat + 1, ty + 1 ), 0x5500FFFF );
}
}
const auto msz = line.mnemonic.size();
memcpy( buf, line.mnemonic.c_str(), msz );
memset( buf+msz, ' ', m_maxMnemonicLen-msz );
bool hasJump = false;
if( line.jumpAddr != 0 )
{
auto lit = m_locMap.find( line.jumpAddr );
if( lit != m_locMap.end() )
{
char tmp[64];
sprintf( tmp, ".L%" PRIu32, lit->second );
strcpy( buf+m_maxMnemonicLen, tmp );
hasJump = true;
}
}
if( !hasJump )
{
memcpy( buf+m_maxMnemonicLen, line.operands.c_str(), line.operands.size() + 1 );
}
const bool isInContext = IsInContext( worker, line.addr );
if( asmIdx == m_asmSelected )
{
TextColoredUnformatted( ImVec4( 1, 0.25f, 0.25f, isInContext ? 1.f : 0.5f ), buf );
}
else if( line.regData[0] != 0 )
{
bool hasDepencency = false;
int idx = 0;
for(;;)
{
if( line.regData[idx] == 0 ) break;
if( line.regData[idx] & ( WriteBit | ReadBit ) )
{
hasDepencency = true;
break;
}
idx++;
}
if( hasDepencency )
{
TextColoredUnformatted( ImVec4( 1, 0.5f, 1, isInContext ? 1.f : 0.5f ), buf );
}
else
{
if( isInContext )
{
ImGui::TextUnformatted( buf );
}
else
{
TextDisabledUnformatted( buf );
}
}
}
else
{
if( isInContext )
{
ImGui::TextUnformatted( buf );
}
else
{
TextDisabledUnformatted( buf );
}
}
uint32_t jumpOffset;
uint64_t jumpBase;
const char* jumpName = nullptr;
if( line.jumpAddr != 0 )
{
jumpOffset = 0;
jumpBase = worker.GetSymbolForAddress( line.jumpAddr, jumpOffset );
auto jumpSym = jumpBase == 0 ? worker.GetSymbolData( line.jumpAddr ) : worker.GetSymbolData( jumpBase );
if( jumpSym ) jumpName = worker.GetString( jumpSym->name );
}
if( ImGui::IsItemHovered() )
{
if( asmVar )
{
const auto& var = *asmVar;
UnsetFont();
ImGui::BeginTooltip();
if( jumpName || opdesc != 0 )
{
if( opdesc != 0 ) ImGui::TextUnformatted( OpDescList[opdesc] );
if( jumpName )
{
if( jumpBase == m_baseAddr )
{
TextDisabledUnformatted( "Local target:" );
}
else
{
TextDisabledUnformatted( "External target:" );
}
ImGui::SameLine();
ImGui::Text( "%s+%" PRIu32, jumpName, jumpOffset );
if( jumpBase == m_baseAddr )
{
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( line.jumpAddr, srcline );
if( srcline != 0 )
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
TextDisabledUnformatted( "Target location:" );
ImGui::SameLine();
SmallColorBox( fileColor );
ImGui::SameLine();
ImGui::Text( "%s:%i", fileName, srcline );
}
}
}
ImGui::Separator();
}
TextFocused( "Throughput:", RealToString( var.tp ) );
ImGui::SameLine();
TextDisabledUnformatted( "(cycles per instruction, lower is better)" );
if( var.maxlat >= 0 )
{
bool exact = false;
TextDisabledUnformatted( "Latency:" );
ImGui::SameLine();
if( var.minlat == var.maxlat && var.minbound == var.maxbound )
{
if( var.minbound )
{
ImGui::Text( "\xe2\x89\xa4%s", RealToString( var.minlat ) );
}
else
{
ImGui::TextUnformatted( RealToString( var.minlat ) );
exact = true;
}
}
else
{
if( var.minbound )
{
ImGui::Text( "[\xe2\x89\xa4%s", RealToString( var.minlat ) );
}
else
{
ImGui::Text( "[%s", RealToString( var.minlat ) );
}
ImGui::SameLine( 0, 0 );
if( var.maxbound )
{
ImGui::Text( " \xE2\x80\x93 \xe2\x89\xa4%s]", RealToString( var.maxlat ) );
}
else
{
ImGui::Text( " \xE2\x80\x93 %s]", RealToString( var.maxlat ) );
}
}
ImGui::SameLine();
if( exact )
{
TextDisabledUnformatted( "(cycles in execution)" );
}
else
{
TextDisabledUnformatted( "(cycles in execution, may vary by used output)" );
}
}
TextFocused( "\xce\xbcops:", RealToString( var.uops ) );
if( var.port != -1 ) TextFocused( "Ports:", PortList[var.port] );
ImGui::Separator();
TextFocused( "ISA set:", IsaList[var.isaSet] );
if( var.descNum > 0 )
{
TextDisabledUnformatted( "Operands:" );
ImGui::SameLine();
bool first = true;
for( int i=0; i<var.descNum; i++ )
{
const char* t = "?";
switch( var.desc[i].type )
{
case 0:
t = "Imm";
break;
case 1:
t = "Reg";
break;
case 2:
t = var.desc[i].width == 0 ? "AGen" : "Mem";
break;
default:
assert( false );
break;
}
if( first )
{
first = false;
if( var.desc[i].width == 0 )
{
ImGui::TextUnformatted( t );
}
else
{
ImGui::Text( "%s%i", t, var.desc[i].width );
}
}
else
{
ImGui::SameLine( 0, 0 );
if( var.desc[i].width == 0 )
{
ImGui::Text( ", %s", t );
}
else
{
ImGui::Text( ", %s%i", t, var.desc[i].width );
}
}
}
}
ImGui::EndTooltip();
SetFont();
}
else if( jumpName )
{
UnsetFont();
ImGui::BeginTooltip();
if( jumpBase == m_baseAddr )
{
TextDisabledUnformatted( "Local target:" );
}
else
{
TextDisabledUnformatted( "External target:" );
}
ImGui::SameLine();
ImGui::Text( "%s+%" PRIu32, jumpName, jumpOffset );
if( jumpBase == m_baseAddr )
{
uint32_t srcline;
const auto srcidx = worker.GetLocationForAddress( line.jumpAddr, srcline );
if( srcline != 0 )
{
const auto fileName = worker.GetString( srcidx );
const auto fileColor = GetHsvColor( srcidx.Idx(), 0 );
TextDisabledUnformatted( "Target location:" );
ImGui::SameLine();
SmallColorBox( fileColor );
ImGui::SameLine();
ImGui::Text( "%s:%i", fileName, srcline );
}
}
ImGui::EndTooltip();
SetFont();
}
if( m_cpuArch == CpuArchX86 || m_cpuArch == CpuArchX64 )
{
if( line.readX86[0] != RegsX86::invalid || line.writeX86[0] != RegsX86::invalid )
{
UnsetFont();
ImGui::BeginTooltip();
if( asmVar ) ImGui::Separator();
if( line.readX86[0] != RegsX86::invalid )
{
TextDisabledUnformatted( "Read:" );
ImGui::SameLine();
int idx = 0;
for(;;)
{
if( line.readX86[idx] == RegsX86::invalid ) break;
if( idx == 0 )
{
ImGui::TextUnformatted( s_regNameX86[(int)line.readX86[idx++]] );
}
else
{
ImGui::SameLine( 0, 0 );
ImGui::Text( ", %s", s_regNameX86[(int)line.readX86[idx++]] );
}
}
}
if( line.writeX86[0] != RegsX86::invalid )
{
TextDisabledUnformatted( "Write:" );
ImGui::SameLine();
int idx = 0;
for(;;)
{
if( line.writeX86[idx] == RegsX86::invalid ) break;
if( idx == 0 )
{
ImGui::TextUnformatted( s_regNameX86[(int)line.writeX86[idx++]] );
}
else
{
ImGui::SameLine( 0, 0 );
ImGui::Text( ", %s", s_regNameX86[(int)line.writeX86[idx++]] );
}
}
}
ImGui::EndTooltip();
SetFont();
}
}
if( ImGui::IsMouseClicked( 0 ) )
{
m_asmSelected = asmIdx;
ResetAsm();
int idx = 0;
for(;;)
{
if( line.readX86[idx] == RegsX86::invalid ) break;
line.regData[idx] = ReadBit | (int)line.readX86[idx];
FollowWrite( asmIdx, line.readX86[idx++], 64 );
}
idx = 0;
for(;;)
{
if( line.writeX86[idx] == RegsX86::invalid ) break;
int ridx = 0;
for(;;)
{
if( line.regData[ridx] == 0 )
{
line.regData[ridx] = WriteBit | (int)line.writeX86[idx];
break;
}
else if( ( line.regData[ridx] & RegMask ) == (int)line.writeX86[idx] )
{
line.regData[ridx] |= WriteBit;
break;
}
ridx++;
}
FollowRead( asmIdx, line.writeX86[idx++], 64 );
}
}
else if( ImGui::IsMouseClicked( 1 ) )
{
m_asmSelected = -1;
ResetAsm();
}
}
auto lit = m_locMap.find( line.addr );
if( lit != m_locMap.end() )
{
ImGui::SameLine();
ImGui::TextDisabled( " ; .L%" PRIu32, lit->second );
}
if( line.regData[0] != 0 )
{
if( !line.params.empty() )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
}
else
{
ImGui::SameLine( 0, 0 );
}
TextColoredUnformatted( ImVec4( 0.5f, 0.5, 1, 1 ), " {" );
ImGui::SameLine( 0, 0 );
int idx = 0;
for(;;)
{
ImVec4 col;
if( line.regData[idx] == 0 ) break;
if( ( line.regData[idx] & ( WriteBit | ReadBit ) ) == ( WriteBit | ReadBit ) ) col = ImVec4( 1, 1, 0.5f, 1 );
else if( line.regData[idx] & WriteBit ) col = ImVec4( 1, 0.5f, 0.5f, 1 );
else if( line.regData[idx] & ReadBit ) col = ImVec4( 0.5f, 1, 0.5f, 1 );
else col = ImVec4( 0.5f, 0.5f, 0.5f, 1 );
if( idx > 0 )
{
ImGui::SameLine( 0, 0 );
TextColoredUnformatted( ImVec4( 0.5f, 0.5, 1, 1 ), ", " );
ImGui::SameLine( 0, 0 );
}
TextColoredUnformatted( col, s_regNameX86[line.regData[idx] & RegMask] );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
if( ( line.regData[idx] & ( WriteBit | ReadBit ) ) == ( WriteBit | ReadBit ) ) ImGui::TextUnformatted( "Read and write" );
else if( line.regData[idx] & WriteBit ) ImGui::TextUnformatted( "Write" );
else if( line.regData[idx] & ReadBit ) ImGui::TextUnformatted( "Read" );
else ImGui::TextUnformatted( "Previous read" );
ImGui::EndTooltip();
}
idx++;
}
ImGui::SameLine( 0, 0 );
TextColoredUnformatted( ImVec4( 0.5f, 0.5, 1, 1 ), "}" );
}
if( jumpName )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( jumpBase == m_baseAddr )
{
ImGui::TextDisabled( " -> [%s+%" PRIu32"]", jumpName, jumpOffset );
if( ImGui::IsItemHovered() )
{
m_highlightAddr = line.jumpAddr;
if( ImGui::IsItemClicked() )
{
m_targetAddr = line.jumpAddr;
m_selectedAddresses.clear();
m_selectedAddresses.emplace( line.jumpAddr );
}
}
}
else
{
ImGui::TextDisabled( " [%s+%" PRIu32"]", jumpName, jumpOffset );
if( ImGui::IsItemClicked() ) jumpOut = line.jumpAddr;
}
}
if( lineHovered )
{
draw->AddRectFilled( wpos, wpos + ImVec2( w, ty+1 ), 0x11FFFFFF );
}
DrawLine( draw, dpos + ImVec2( 0, ty ), dpos + ImVec2( w, ty ), 0x08FFFFFF );
}
void SourceView::RenderHwLinePart( size_t cycles, size_t retired, size_t branchRetired, size_t branchMiss, size_t cacheRef, size_t cacheMiss, size_t branchRel, size_t branchRelMax, size_t cacheRel, size_t cacheRelMax, const ImVec2& ts )
{
if( cycles )
{
const bool unreliable = cycles < 10 || retired < 10;
const float ipc = float( retired ) / cycles;
uint32_t col = unreliable ? 0x44FFFFFF : GetGoodnessColor( ipc * 0.25f );
if( ipc >= 10 )
{
TextColoredUnformatted( col, " 10+ " );
}
else
{
char buf[16];
*buf = ' ';
const auto end = PrintFloat( buf+1, buf+16, ipc, 2 );
assert( end == buf + 5 );
memcpy( end, " ", 2 );
TextColoredUnformatted( col, buf );
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Instructions Per Cycle (IPC)" );
ImGui::SameLine();
TextDisabledUnformatted( "Higher is better" );
ImGui::Separator();
TextFocused( "Cycles:", RealToString( cycles ) );
TextFocused( "Retirements:", RealToString( retired ) );
if( unreliable ) TextColoredUnformatted( 0xFF4444FF, "Not enough samples for reliable data!" );
ImGui::EndTooltip();
SetFont();
}
}
else
{
ImGui::ItemSize( ImVec2( 6 * ts.x, ts.y ) );
}
ImGui::SameLine( 0, 0 );
if( m_hwSamplesRelative )
{
if( branchRel && branchRelMax )
{
const float rate = float( branchRel ) / branchRelMax;
uint32_t col = GetGoodnessColor( 1.f - rate * 3.f );
if( rate >= 1.f )
{
TextColoredUnformatted( col, " 100% " );
}
else
{
char buf[16];
if( rate >= 0.1f )
{
const auto end = PrintFloat( buf, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
else
{
*buf = ' ';
const auto end = PrintFloat( buf+1, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
memcpy( buf+4, "% ", 3 );
TextColoredUnformatted( col, buf );
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Branch mispredictions impact" );
ImGui::SameLine();
TextDisabledUnformatted( "Lower is better" );
ImGui::Separator();
TextFocused( "Impact value:", RealToString( branchRel ) );
TextFocused( "Relative to:", RealToString( branchRelMax ) );
ImGui::EndTooltip();
SetFont();
}
}
else
{
ImGui::ItemSize( ImVec2( 6 * ts.x, ts.y ) );
}
ImGui::SameLine( 0, 0 );
if( cacheRel && cacheRelMax )
{
const float rate = float( cacheRel ) / cacheRelMax;
uint32_t col = GetGoodnessColor( 1.f - rate * 3.f );
if( rate >= 1.f )
{
TextColoredUnformatted( col, " 100%" );
}
else
{
char buf[16];
const auto end = PrintFloat( buf, buf+16, rate * 100, 1 );
memcpy( end, "%", 2 );
if( end - buf == 4 )
{
TextColoredUnformatted( col, buf );
}
else
{
ImGui::SameLine( 0, ts.x );
TextColoredUnformatted( col, buf );
}
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Cache miss rate impact" );
ImGui::SameLine();
TextDisabledUnformatted( "Lower is better" );
ImGui::Separator();
TextFocused( "Impact value:", RealToString( cacheRel ) );
TextFocused( "Relative to:", RealToString( cacheRelMax ) );
ImGui::EndTooltip();
SetFont();
}
}
else
{
ImGui::ItemSize( ImVec2( 5 * ts.x, ts.y ) );
}
}
else
{
if( branchRetired )
{
const bool unreliable = branchRetired < 10;
const float rate = float( branchMiss ) / branchRetired;
uint32_t col = unreliable ? 0x44FFFFFF : GetGoodnessColor( 1.f - rate * 3.f );
if( branchMiss == 0 )
{
TextColoredUnformatted( col, " 0% " );
}
else if( rate >= 1.f )
{
TextColoredUnformatted( col, " 100% " );
}
else
{
char buf[16];
if( rate >= 0.1f )
{
const auto end = PrintFloat( buf, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
else
{
*buf = ' ';
const auto end = PrintFloat( buf+1, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
memcpy( buf+4, "% ", 3 );
TextColoredUnformatted( col, buf );
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Branch mispredictions rate" );
ImGui::SameLine();
TextDisabledUnformatted( "Lower is better" );
ImGui::Separator();
TextFocused( "Retired branches:", RealToString( branchRetired ) );
TextFocused( "Branch mispredictions:", RealToString( branchMiss ) );
if( unreliable ) TextColoredUnformatted( 0xFF4444FF, "Not enough samples for reliable data!" );
ImGui::EndTooltip();
SetFont();
}
}
else
{
ImGui::ItemSize( ImVec2( 6 * ts.x, ts.y ) );
}
ImGui::SameLine( 0, 0 );
if( cacheRef )
{
const bool unreliable = cacheRef < 10;
const float rate = float( cacheMiss ) / cacheRef;
uint32_t col = unreliable ? 0x44FFFFFF : GetGoodnessColor( 1.f - rate * 3.f );
if( cacheMiss == 0 )
{
TextColoredUnformatted( col, " 0%" );
}
else if( rate >= 1.f )
{
TextColoredUnformatted( col, " 100%" );
}
else
{
char buf[16];
if( rate >= 0.1f )
{
const auto end = PrintFloat( buf, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
else
{
*buf = ' ';
const auto end = PrintFloat( buf+1, buf+16, rate * 100, 1 );
assert( end == buf+4 );
}
memcpy( buf+4, "%", 2 );
TextColoredUnformatted( col, buf );
}
if( ImGui::IsItemHovered() )
{
UnsetFont();
ImGui::BeginTooltip();
ImGui::TextUnformatted( "Cache miss rate" );
ImGui::SameLine();
TextDisabledUnformatted( "Lower is better" );
ImGui::Separator();
TextFocused( "Cache references:", RealToString( cacheRef ) );
TextFocused( "Cache misses:", RealToString( cacheMiss ) );
if( unreliable ) TextColoredUnformatted( 0xFF4444FF, "Not enough samples for reliable data!" );
ImGui::EndTooltip();
SetFont();
}
}
else
{
ImGui::ItemSize( ImVec2( 5 * ts.x, ts.y ) );
}
}
}
void SourceView::SelectLine( uint32_t line, const Worker* worker, bool updateAsmLine, uint64_t targetAddr, bool changeAsmLine )
{
m_selectedLine = line;
if( m_symAddr == 0 ) return;
assert( worker );
SelectAsmLines( m_source.idx(), line, *worker, updateAsmLine, targetAddr, changeAsmLine );
}
void SourceView::SelectAsmLines( uint32_t file, uint32_t line, const Worker& worker, bool updateAsmLine, uint64_t targetAddr, bool changeAsmLine )
{
m_selectedAddresses.clear();
auto addresses = worker.GetAddressesForLocation( file, line );
if( addresses )
{
const auto& addr = *addresses;
if( updateAsmLine )
{
for( auto& v : addr )
{
if( v >= m_baseAddr && v < m_baseAddr + m_codeLen )
{
if( IsInContext( worker, v ) ) m_selectedAddresses.emplace( v );
}
}
if( targetAddr != 0 )
{
if( changeAsmLine ) m_targetAddr = targetAddr;
}
else if( !m_selectedAddresses.empty() )
{
if( m_asmTarget.file != file || m_asmTarget.line != line )
{
m_asmTarget.file = file;
m_asmTarget.line = line;
m_asmTarget.sel = 0;
m_asmTarget.target.clear();
std::vector<uint64_t> tmp;
tmp.reserve( m_selectedAddresses.size() );
for( auto& v : m_selectedAddresses ) tmp.emplace_back( v );
pdqsort_branchless( tmp.begin(), tmp.end() );
bool first = true;
auto lit = m_asm.begin();
for( auto& v : tmp )
{
const auto prev = lit;
while( lit->addr != v ) lit++;
if( first || lit - prev > 1 )
{
first = false;
m_asmTarget.target.emplace_back( v );
}
}
if( changeAsmLine ) m_targetAddr = m_asmTarget.target[0];
}
else if( changeAsmLine )
{
m_asmTarget.sel = ( m_asmTarget.sel + 1 ) % m_asmTarget.target.size();
m_targetAddr = m_asmTarget.target[m_asmTarget.sel];
}
}
}
}
}
void SourceView::SelectAsmLinesHover( uint32_t file, uint32_t line, const Worker& worker )
{
assert( m_selectedAddressesHover.empty() );
auto addresses = worker.GetAddressesForLocation( file, line );
if( addresses )
{
for( auto& v : *addresses )
{
if( v >= m_baseAddr && v < m_baseAddr + m_codeLen )
{
if( IsInContext( worker, v ) ) m_selectedAddressesHover.emplace( v );
}
}
}
}
void SourceView::GatherIpHwStats( AddrStatData& as, Worker& worker, const View& view, CostType cost )
{
auto filename = m_source.filename();
for( auto& v : m_asm )
{
const auto& addr = v.addr;
if( m_calcInlineStats && worker.GetInlineSymbolForAddress( addr ) != m_symAddr ) continue;
const auto hw = worker.GetHwSampleData( addr );
if( !hw ) continue;
uint64_t stat;
if( view.m_statRange.active )
{
switch( cost )
{
case CostType::Cycles: stat = CountHwSamples( hw->cycles, view.m_statRange ); break;
case CostType::Retirements: stat = CountHwSamples( hw->retired, view.m_statRange ); break;
case CostType::BranchesTaken: stat = CountHwSamples( hw->branchRetired, view.m_statRange ); break;
case CostType::BranchMiss: stat = CountHwSamples( hw->branchMiss, view.m_statRange ); break;
case CostType::SlowBranches: stat = sqrt( CountHwSamples( hw->branchMiss, view.m_statRange ) * CountHwSamples( hw->branchRetired, view.m_statRange ) ); break;
case CostType::CacheAccess: stat = CountHwSamples( hw->cacheRef, view.m_statRange ); break;
case CostType::CacheMiss: stat = CountHwSamples( hw->cacheMiss, view.m_statRange ); break;
case CostType::SlowCache: stat = sqrt( CountHwSamples( hw->cacheMiss, view.m_statRange ) * CountHwSamples( hw->cacheRef, view.m_statRange ) ); break;
default: assert( false ); return;
}
}
else
{
switch( cost )
{
case CostType::Cycles: stat = hw->cycles.size(); break;
case CostType::Retirements: stat = hw->retired.size(); break;
case CostType::BranchesTaken: stat = hw->branchRetired.size(); break;
case CostType::BranchMiss: stat = hw->branchMiss.size(); break;
case CostType::SlowBranches: stat = sqrt( hw->branchMiss.size() * hw->branchRetired.size() ); break;
case CostType::CacheAccess: stat = hw->cacheRef.size(); break;
case CostType::CacheMiss: stat = hw->cacheMiss.size(); break;
case CostType::SlowCache: stat = sqrt( hw->cacheMiss.size() * hw->cacheRef.size() ); break;
default: assert( false ); return;
}
}
assert( as.ipCountAsm.find( addr ) == as.ipCountAsm.end() );
as.ipCountAsm.emplace( addr, AddrStat { stat, 0 } );
as.ipTotalAsm.local += stat;
if( as.ipMaxAsm.local < stat ) as.ipMaxAsm.local = stat;
if( filename )
{
uint32_t line;
const auto fref = worker.GetLocationForAddress( addr, line );
if( line != 0 )
{
auto ffn = worker.GetString( fref );
if( strcmp( ffn, filename ) == 0 )
{
auto it = as.ipCountSrc.find( line );
if( it == as.ipCountSrc.end() )
{
as.ipCountSrc.emplace( line, AddrStat{ stat, 0 } );
if( as.ipMaxSrc.local < stat ) as.ipMaxSrc.local = stat;
}
else
{
const auto sum = it->second.local + stat;
it->second.local = sum;
if( as.ipMaxSrc.local < sum ) as.ipMaxSrc.local = sum;
}
as.ipTotalSrc.local += stat;
}
}
}
}
}
void SourceView::CountHwStats( AddrStatData& as, Worker& worker, const View& view )
{
const auto hasBranchRetirement = worker.HasHwBranchRetirement();
auto filename = m_source.filename();
for( auto& v : m_asm )
{
const auto& addr = v.addr;
if( m_calcInlineStats && worker.GetInlineSymbolForAddress( addr ) != m_symAddr ) continue;
const auto hw = worker.GetHwSampleData( addr );
if( !hw ) continue;
uint64_t branch, cache;
if( view.m_statRange.active )
{
if( hasBranchRetirement )
{
branch = sqrt( CountHwSamples( hw->branchMiss, view.m_statRange ) * CountHwSamples( hw->branchRetired, view.m_statRange ) );
}
else
{
branch = CountHwSamples( hw->branchMiss, view.m_statRange );
}
cache = sqrt( CountHwSamples( hw->cacheMiss, view.m_statRange ) * CountHwSamples( hw->cacheRef, view.m_statRange ) );
}
else
{
if( hasBranchRetirement )
{
branch = sqrt( hw->branchMiss.size() * hw->branchRetired.size() );
}
else
{
branch = hw->branchMiss.size();
}
cache = sqrt( hw->cacheMiss.size() * hw->cacheRef.size() );
}
assert( as.hwCountAsm.find( addr ) == as.hwCountAsm.end() );
as.hwCountAsm.emplace( addr, AddrStat { branch, cache } );
if( as.hwMaxAsm.local < branch ) as.hwMaxAsm.local = branch;
if( as.hwMaxAsm.ext < cache ) as.hwMaxAsm.ext = cache;
if( filename )
{
uint32_t line;
const auto fref = worker.GetLocationForAddress( addr, line );
if( line != 0 )
{
auto ffn = worker.GetString( fref );
if( strcmp( ffn, filename ) == 0 )
{
auto it = as.hwCountSrc.find( line );
if( it == as.hwCountSrc.end() )
{
as.hwCountSrc.emplace( line, AddrStat{ branch, cache } );
if( as.hwMaxSrc.local < branch ) as.hwMaxSrc.local = branch;
if( as.hwMaxSrc.ext < cache ) as.hwMaxSrc.ext = cache;
}
else
{
const auto branchSum = it->second.local + branch;
const auto cacheSum = it->second.ext + cache;
it->second.local = branchSum;
it->second.ext = cacheSum;
if( as.hwMaxSrc.local < branchSum ) as.hwMaxSrc.local = branchSum;
if( as.hwMaxSrc.ext < cacheSum ) as.hwMaxSrc.ext = cacheSum;
}
}
}
}
}
}
void SourceView::GatherIpStats( uint64_t baseAddr, AddrStatData& as, const Worker& worker, bool limitView, const View& view )
{
auto filename = m_source.filename();
if( limitView )
{
auto vec = worker.GetSamplesForSymbol( baseAddr );
if( !vec ) return;
auto it = std::lower_bound( vec->begin(), vec->end(), view.m_statRange.min, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
if( it == vec->end() ) return;
auto end = std::lower_bound( it, vec->end(), view.m_statRange.max, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
as.ipTotalAsm.local += end - it;
while( it != end )
{
if( filename )
{
auto frame = worker.GetCallstackFrame( it->ip );
if( frame )
{
auto ffn = worker.GetString( frame->data[0].file );
if( strcmp( ffn, filename ) == 0 )
{
const auto line = frame->data[0].line;
if( line != 0 )
{
auto sit = as.ipCountSrc.find( line );
if( sit == as.ipCountSrc.end() )
{
as.ipCountSrc.emplace( line, AddrStat { 1, 0 } );
if( as.ipMaxSrc.local < 1 ) as.ipMaxSrc.local = 1;
}
else
{
const auto sum = sit->second.local + 1;
sit->second.local = sum;
if( as.ipMaxSrc.local < sum ) as.ipMaxSrc.local = sum;
}
as.ipTotalSrc.local++;
}
}
}
}
auto addr = worker.GetCanonicalPointer( it->ip );
auto sit = as.ipCountAsm.find( addr );
if( sit == as.ipCountAsm.end() )
{
as.ipCountAsm.emplace( addr, AddrStat{ 1, 0 } );
if( as.ipMaxAsm.local < 1 ) as.ipMaxAsm.local = 1;
}
else
{
const auto sum = sit->second.local + 1;
sit->second.local = sum;
if( as.ipMaxAsm.local < sum ) as.ipMaxAsm.local = sum;
}
++it;
}
}
else
{
auto ipmap = worker.GetSymbolInstructionPointers( baseAddr );
if( !ipmap ) return;
for( auto& ip : *ipmap )
{
auto addr = worker.GetCanonicalPointer( ip.first );
assert( as.ipCountAsm.find( addr ) == as.ipCountAsm.end() );
as.ipCountAsm.emplace( addr, AddrStat { ip.second, 0 } );
as.ipTotalAsm.local += ip.second;
if( as.ipMaxAsm.local < ip.second ) as.ipMaxAsm.local = ip.second;
if( filename )
{
auto frame = worker.GetCallstackFrame( ip.first );
if( frame )
{
auto ffn = worker.GetString( frame->data[0].file );
if( strcmp( ffn, filename ) == 0 )
{
const auto line = frame->data[0].line;
if( line != 0 )
{
auto it = as.ipCountSrc.find( line );
if( it == as.ipCountSrc.end() )
{
as.ipCountSrc.emplace( line, AddrStat{ ip.second, 0 } );
if( as.ipMaxSrc.local < ip.second ) as.ipMaxSrc.local = ip.second;
}
else
{
const auto sum = it->second.local + ip.second;
it->second.local = sum;
if( as.ipMaxSrc.local < sum ) as.ipMaxSrc.local = sum;
}
as.ipTotalSrc.local += ip.second;
}
}
}
}
}
}
}
void SourceView::GatherAdditionalIpStats( uint64_t baseAddr, AddrStatData& as, const Worker& worker, bool limitView, const View& view )
{
if( !worker.AreSymbolSamplesReady() ) return;
auto sym = worker.GetSymbolData( baseAddr );
if( !sym ) return;
auto filename = m_source.filename();
if( limitView )
{
for( uint64_t ip = baseAddr; ip < baseAddr + sym->size.Val(); ip++ )
{
auto cp = worker.GetChildSamples( ip );
if( !cp ) continue;
auto it = std::lower_bound( cp->begin(), cp->end(), view.m_statRange.min, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
if( it == cp->end() ) continue;
auto end = std::lower_bound( it, cp->end(), view.m_statRange.max, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
const auto ccnt = uint64_t( end - it );
auto eit = as.ipCountAsm.find( ip );
if( eit == as.ipCountAsm.end() )
{
as.ipCountAsm.emplace( ip, AddrStat { 0, ccnt } );
}
else
{
eit->second.ext += ccnt;
}
as.ipTotalAsm.ext += ccnt;
if( as.ipMaxAsm.ext < ccnt ) as.ipMaxAsm.ext = ccnt;
if( filename )
{
auto frame = worker.GetCallstackFrame( worker.PackPointer( ip ) );
if( frame )
{
auto ffn = worker.GetString( frame->data[0].file );
if( strcmp( ffn, filename ) == 0 )
{
const auto line = frame->data[0].line;
if( line != 0 )
{
auto sit = as.ipCountSrc.find( line );
if( sit == as.ipCountSrc.end() )
{
as.ipCountSrc.emplace( line, AddrStat{ 0, ccnt } );
if( as.ipMaxSrc.ext < ccnt ) as.ipMaxSrc.ext = ccnt;
}
else
{
const auto csum = sit->second.ext + ccnt;
sit->second.ext = csum;
if( as.ipMaxSrc.ext < csum ) as.ipMaxSrc.ext = csum;
}
as.ipTotalSrc.ext += ccnt;
}
}
}
}
}
}
else
{
for( uint64_t ip = baseAddr; ip < baseAddr + sym->size.Val(); ip++ )
{
auto cp = worker.GetChildSamples( ip );
if( !cp ) continue;
const auto ccnt = cp->size();
auto eit = as.ipCountAsm.find( ip );
if( eit == as.ipCountAsm.end() )
{
as.ipCountAsm.emplace( ip, AddrStat { 0, ccnt } );
}
else
{
eit->second.ext += ccnt;
}
as.ipTotalAsm.ext += ccnt;
if( as.ipMaxAsm.ext < ccnt ) as.ipMaxAsm.ext = ccnt;
if( filename )
{
auto frame = worker.GetCallstackFrame( worker.PackPointer( ip ) );
if( frame )
{
auto ffn = worker.GetString( frame->data[0].file );
if( strcmp( ffn, filename ) == 0 )
{
const auto line = frame->data[0].line;
if( line != 0 )
{
auto sit = as.ipCountSrc.find( line );
if( sit == as.ipCountSrc.end() )
{
as.ipCountSrc.emplace( line, AddrStat{ 0, ccnt } );
if( as.ipMaxSrc.ext < ccnt ) as.ipMaxSrc.ext = ccnt;
}
else
{
const auto csum = sit->second.ext + ccnt;
sit->second.ext = csum;
if( as.ipMaxSrc.ext < csum ) as.ipMaxSrc.ext = csum;
}
as.ipTotalSrc.ext += ccnt;
}
}
}
}
}
}
}
void SourceView::GatherChildStats( uint64_t baseAddr, unordered_flat_map<uint64_t, uint32_t>& map, Worker& worker, bool limitView, const View& view )
{
if( !worker.AreSymbolSamplesReady() ) return;
auto sym = worker.GetSymbolData( baseAddr );
if( !sym ) return;
if( limitView )
{
for( uint64_t ip = baseAddr; ip < baseAddr + sym->size.Val(); ip++ )
{
auto cp = worker.GetChildSamples( ip );
if( !cp ) continue;
auto it = std::lower_bound( cp->begin(), cp->end(), view.m_statRange.min, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
if( it == cp->end() ) continue;
auto end = std::lower_bound( it, cp->end(), view.m_statRange.max, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
while( it != end )
{
auto child = worker.GetSymbolForAddress( it->addr );
auto mit = map.find( child );
if( mit == map.end() )
{
map.emplace( child, 1 );
}
else
{
mit->second++;
}
++it;
}
}
}
else
{
for( uint64_t ip = baseAddr; ip < baseAddr + sym->size.Val(); ip++ )
{
auto cp = worker.GetChildSamples( ip );
if( !cp ) continue;
for( auto& s : *cp )
{
auto child = worker.GetSymbolForAddress( s.addr );
auto mit = map.find( child );
if( mit == map.end() )
{
map.emplace( child, 1 );
}
else
{
mit->second++;
}
}
}
}
}
uint32_t SourceView::CountAsmIpStats( uint64_t baseAddr, const Worker& worker, bool limitView, const View& view )
{
if( limitView )
{
auto vec = worker.GetSamplesForSymbol( baseAddr );
if( !vec ) return 0;
auto it = std::lower_bound( vec->begin(), vec->end(), view.m_statRange.min, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
if( it == vec->end() ) return 0;
auto end = std::lower_bound( it, vec->end(), view.m_statRange.max, [] ( const auto& lhs, const auto& rhs ) { return lhs.time.Val() < rhs; } );
return end - it;
}
else
{
uint32_t cnt = 0;
auto ipmap = worker.GetSymbolInstructionPointers( baseAddr );
if( !ipmap ) return 0;
for( auto& ip : *ipmap ) cnt += ip.second;
return cnt;
}
}
void SourceView::SelectMicroArchitecture( const char* moniker )
{
int idx = 0;
for( auto& v : s_uArchUx )
{
if( strcmp( v.moniker, moniker ) == 0 )
{
m_selMicroArch = idx;
break;
}
idx++;
}
for( idx=0; idx<MicroArchitectureNum; idx++ )
{
if( strcmp( MicroArchitectureList[idx], moniker ) == 0 )
{
m_idxMicroArch = idx;
break;
}
}
assert( idx != MicroArchitectureNum );
}
void SourceView::ResetAsm()
{
for( auto& line : m_asm ) memset( line.regData, 0, sizeof( line.regData ) );
}
void SourceView::FollowRead( size_t line, RegsX86 reg, size_t limit )
{
if( limit == 0 ) return;
const auto& data = m_asm[line];
if( m_jumpOut.find( data.addr ) != m_jumpOut.end() && !data.jumpConditional ) return;
if( data.jumpAddr != 0 )
{
auto fit = std::lower_bound( m_asm.begin(), m_asm.end(), data.jumpAddr, []( const auto& l, const auto& r ) { return l.addr < r; } );
if( fit != m_asm.end() && fit->addr == data.jumpAddr )
{
CheckRead( fit - m_asm.begin(), reg, limit );
}
if( !data.jumpConditional ) return;
}
if( line+1 < m_asm.size() )
{
CheckRead( line+1, reg, limit );
}
}
void SourceView::FollowWrite( size_t line, RegsX86 reg, size_t limit )
{
if( limit == 0 ) return;
const auto& data = m_asm[line];
if( m_jumpOut.find( data.addr ) != m_jumpOut.end() && !data.jumpConditional ) return;
auto it = m_jumpTable.find( data.addr );
if( it != m_jumpTable.end() )
{
for( auto& v : it->second.source )
{
auto fit = std::lower_bound( m_asm.begin(), m_asm.end(), v, []( const auto& l, const auto& r ) { return l.addr < r; } );
assert( fit != m_asm.end() && fit->addr == v );
CheckWrite( fit - m_asm.begin(), reg, limit );
}
}
if( line > 0 )
{
CheckWrite( line-1, reg, limit );
}
}
void SourceView::CheckRead( size_t line, RegsX86 reg, size_t limit )
{
assert( limit > 0 );
auto& data = m_asm[line];
int idx = 0;
for(;;)
{
if( data.readX86[idx] == RegsX86::invalid )
{
idx = 0;
for(;;)
{
if( data.writeX86[idx] == RegsX86::invalid )
{
FollowRead( line, reg, limit - 1 );
return;
}
if( data.writeX86[idx] == reg )
{
idx = 0;
for(;;)
{
if( data.regData[idx] == 0 )
{
data.regData[idx] = ReuseBit | (int)reg;
return;
}
if( ( data.regData[idx] & RegMask ) == (int)reg )
{
data.regData[idx] |= ReuseBit;
return;
}
idx++;
}
}
idx++;
}
}
if( data.readX86[idx] == reg )
{
idx = 0;
for(;;)
{
if( data.regData[idx] == 0 )
{
data.regData[idx] = ReadBit | (int)reg;
return;
}
if( ( data.regData[idx] & RegMask ) == (int)reg )
{
data.regData[idx] |= ReadBit;
return;
}
idx++;
}
}
idx++;
}
}
void SourceView::CheckWrite( size_t line, RegsX86 reg, size_t limit )
{
assert( limit > 0 );
auto& data = m_asm[line];
int idx = 0;
for(;;)
{
if( data.writeX86[idx] == RegsX86::invalid )
{
idx = 0;
for(;;)
{
if( data.readX86[idx] == RegsX86::invalid )
{
FollowWrite( line, reg, limit - 1 );
return;
}
if( data.readX86[idx] == reg )
{
idx = 0;
for(;;)
{
if( data.regData[idx] == 0 )
{
data.regData[idx] = ReuseBit | (int)reg;
return;
}
if( ( data.regData[idx] & RegMask ) == (int)reg )
{
data.regData[idx] |= ReuseBit;
return;
}
idx++;
}
}
idx++;
}
}
if( data.writeX86[idx] == reg )
{
idx = 0;
for(;;)
{
if( data.regData[idx] == 0 )
{
data.regData[idx] = WriteBit | (int)reg;
return;
}
else if( ( data.regData[idx] & RegMask ) == (int)reg )
{
data.regData[idx] |= WriteBit;
return;
}
idx++;
}
}
idx++;
}
}
bool SourceView::IsInContext( const Worker& worker, uint64_t addr ) const
{
return !m_calcInlineStats || !worker.HasInlineSymbolAddresses() || worker.GetInlineSymbolForAddress( addr ) == m_symAddr;
}
#ifndef TRACY_NO_FILESELECTOR
void SourceView::Save( const Worker& worker, size_t start, size_t stop )
{
assert( start < m_asm.size() );
assert( start < stop );
nfdu8filteritem_t filter = { "Assembly file", "asm" };
nfdu8char_t* fn;
auto res = NFD_SaveDialogU8( &fn, &filter, 1, nullptr, nullptr );
if( res == NFD_OKAY )
{
FILE* f = nullptr;
const auto sz = strlen( fn );
if( sz < 5 || memcmp( fn + sz - 4, ".asm", 4 ) != 0 )
{
char tmp[1024];
sprintf( tmp, "%s.asm", fn );
f = fopen( tmp, "wb" );
}
else
{
f = fopen( fn, "wb" );
}
if( f )
{
char tmp[16];
auto sym = worker.GetSymbolData( m_symAddr );
assert( sym );
const char* symName;
if( sym->isInline )
{
auto parent = worker.GetSymbolData( m_baseAddr );
if( parent )
{
symName = worker.GetString( parent->name );
}
else
{
sprintf( tmp, "0x%" PRIx64, m_baseAddr );
symName = tmp;
}
}
else
{
symName = worker.GetString( sym->name );
}
fprintf( f, "; Tracy Profiler disassembly of symbol %s [%s]\n\n", symName, worker.GetCaptureProgram().c_str() );
if( !m_atnt ) fprintf( f, ".intel_syntax\n\n" );
const auto end = m_asm.size() < stop ? m_asm.size() : stop;
for( size_t i=start; i<end; i++ )
{
const auto& v = m_asm[i];
auto it = m_locMap.find( v.addr );
if( it != m_locMap.end() )
{
fprintf( f, ".L%" PRIu32 ":\n", it->second );
}
bool hasJump = false;
if( v.jumpAddr != 0 )
{
auto lit = m_locMap.find( v.jumpAddr );
if( lit != m_locMap.end() )
{
fprintf( f, "\t%-*s.L%" PRIu32 "\n", m_maxMnemonicLen, v.mnemonic.c_str(), lit->second );
hasJump = true;
}
}
if( !hasJump )
{
if( v.operands.empty() )
{
fprintf( f, "\t%s\n", v.mnemonic.c_str() );
}
else
{
fprintf( f, "\t%-*s%s\n", m_maxMnemonicLen, v.mnemonic.c_str(), v.operands.c_str() );
}
}
}
fclose( f );
}
NFD_FreePathU8( fn );
}
}
#endif
void SourceView::SetFont()
{
ImGui::PushFont( m_font );
ImGui::PushStyleVar( ImGuiStyleVar_ItemSpacing, ImVec2( 0, 0 ) );
}
void SourceView::UnsetFont()
{
ImGui::PopStyleVar();
ImGui::PopFont();
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceView.cpp
|
C++
|
gpl-3.0
| 200,403
|
#ifndef __TRACYSOURCEVIEW_HPP__
#define __TRACYSOURCEVIEW_HPP__
#include <limits>
#include <string>
#include <vector>
#include <imgui.h>
#include "tracy_robin_hood.h"
#include "TracyCharUtil.hpp"
#include "TracyDecayValue.hpp"
#include "TracySourceContents.hpp"
#include "TracySourceTokenizer.hpp"
#include "../common/TracyForceInline.hpp"
#include "../common/TracyProtocol.hpp"
struct ImFont;
namespace tracy
{
class View;
class Worker;
class SourceView
{
public:
enum class RegsX86 : uint8_t
{
invalid, flags,
rax, rbx, rcx, rdx, rsi, rdi, rbp, rsp, r8, r9, r10, r11, r12, r13, r14, r15,
mm0, mm1, mm2, mm3, mm4, mm5, mm6, mm7,
xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9,
xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm16, xmm17, xmm18, xmm19,
xmm20, xmm21, xmm22, xmm23, xmm24, xmm25, xmm26, xmm27, xmm28, xmm29,
xmm30, xmm31, k0, k1, k2, k3, k4, k5, k6, k7,
NUMBER_OF_ENTRIES
};
enum class CostType
{
SampleCount,
Cycles,
SlowBranches,
SlowCache,
Retirements,
BranchesTaken,
BranchMiss,
CacheAccess,
CacheMiss
};
private:
struct AsmOpParams
{
uint8_t type;
uint16_t width;
};
enum class LeaData : uint8_t
{
none,
b,
bd,
bi,
bid,
d,
i,
id,
r,
rd
};
enum { ReadBit = 0x100 };
enum { WriteBit = 0x200 };
enum { ReuseBit = 0x400 };
enum { RegMask = 0x0FF };
enum { FlagMask = 0xF00 };
struct AsmLine
{
uint64_t addr;
uint64_t jumpAddr;
std::string mnemonic;
std::string operands;
uint8_t len;
LeaData leaData;
bool jumpConditional;
std::vector<AsmOpParams> params;
union
{
RegsX86 readX86[12];
};
union
{
RegsX86 writeX86[20];
};
uint16_t regData[20];
};
enum { AsmLineSize = sizeof( AsmLine ) };
struct JumpData
{
uint64_t min;
uint64_t max;
size_t level;
std::vector<uint64_t> source;
};
enum
{
DisplaySource,
DisplayAsm,
DisplayMixed
};
struct AddrStat
{
uint64_t local;
uint64_t ext;
AddrStat& operator+=( const AddrStat& other )
{
local += other.local;
ext += other.ext;
return *this;
}
};
struct AddrStatData
{
AddrStat ipTotalSrc = {};
AddrStat ipTotalAsm = {};
AddrStat ipMaxSrc = {};
AddrStat ipMaxAsm = {};
AddrStat hwMaxSrc = {};
AddrStat hwMaxAsm = {};
unordered_flat_map<uint64_t, AddrStat> ipCountSrc, ipCountAsm;
unordered_flat_map<uint64_t, AddrStat> hwCountSrc, hwCountAsm;
};
public:
using GetWindowCallback = void*(*)();
SourceView( GetWindowCallback gwcb );
void UpdateFont( ImFont* fixed, ImFont* small ) { m_font = fixed; m_smallFont = small; }
void SetCpuId( uint32_t cpuid );
void OpenSource( const char* fileName, int line, const View& view, const Worker& worker );
void OpenSymbol( const char* fileName, int line, uint64_t baseAddr, uint64_t symAddr, Worker& worker, const View& view );
void Render( Worker& worker, View& view );
void CalcInlineStats( bool val ) { m_calcInlineStats = val; }
bool IsSymbolView() const { return !m_asm.empty(); }
private:
void ParseSource( const char* fileName, const Worker& worker, const View& view );
bool Disassemble( uint64_t symAddr, const Worker& worker );
void SelectViewMode();
void RenderSimpleSourceView();
void RenderSymbolView( Worker& worker, View& view );
void RenderSymbolSourceView( const AddrStatData& as, Worker& worker, const View& view );
uint64_t RenderSymbolAsmView( const AddrStatData& as, Worker& worker, View& view );
void RenderLine( const Tokenizer::Line& line, int lineNum, const AddrStat& ipcnt, const AddrStatData& as, Worker* worker, const View* view );
void RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const AddrStatData& as, Worker& worker, uint64_t& jumpOut, int maxAddrLen, View& view );
void RenderHwLinePart( size_t cycles, size_t retired, size_t branchRetired, size_t branchMiss, size_t cacheRef, size_t cacheMiss, size_t branchRel, size_t branchRelMax, size_t cacheRel, size_t cacheRelMax, const ImVec2& ts );
void SelectLine( uint32_t line, const Worker* worker, bool updateAsmLine = true, uint64_t targetAddr = 0, bool changeAsmLine = true );
void SelectAsmLines( uint32_t file, uint32_t line, const Worker& worker, bool updateAsmLine = true, uint64_t targetAddr = 0, bool changeAsmLine = true );
void SelectAsmLinesHover( uint32_t file, uint32_t line, const Worker& worker );
void GatherIpHwStats( AddrStatData& as, Worker& worker, const View& view, CostType cost );
void GatherIpStats( uint64_t baseAddr, AddrStatData& as, const Worker& worker, bool limitView, const View& view );
void GatherAdditionalIpStats( uint64_t baseAddr, AddrStatData& as, const Worker& worker, bool limitView, const View& view );
void GatherChildStats( uint64_t baseAddr, unordered_flat_map<uint64_t, uint32_t>& vec, Worker& worker, bool limitView, const View& view );
uint32_t CountAsmIpStats( uint64_t baseAddr, const Worker& worker, bool limitView, const View& view );
void CountHwStats( AddrStatData& as, Worker& worker, const View& view );
void SelectMicroArchitecture( const char* moniker );
void ResetAsm();
void FollowRead( size_t line, RegsX86 reg, size_t limit );
void FollowWrite( size_t line, RegsX86 reg, size_t limit );
void CheckRead( size_t line, RegsX86 reg, size_t limit );
void CheckWrite( size_t line, RegsX86 reg, size_t limit );
bool IsInContext( const Worker& worker, uint64_t addr ) const;
#ifndef TRACY_NO_FILESELECTOR
void Save( const Worker& worker, size_t start = 0, size_t stop = std::numeric_limits<size_t>::max() );
#endif
tracy_force_inline void SetFont();
tracy_force_inline void UnsetFont();
ImFont* m_font;
ImFont* m_smallFont;
uint64_t m_symAddr;
uint64_t m_baseAddr;
uint64_t m_targetAddr;
int m_targetLine;
int m_selectedLine;
int m_asmSelected;
DecayValue<int> m_hoveredLine;
DecayValue<uint32_t> m_hoveredSource;
int m_displayMode;
uint32_t m_codeLen;
int32_t m_disasmFail;
DecayValue<uint64_t> m_highlightAddr;
int m_asmCountBase;
bool m_asmRelative;
bool m_asmBytes;
bool m_asmShowSourceLocation;
bool m_calcInlineStats;
uint8_t m_maxAsmBytes;
bool m_atnt;
uint64_t m_jumpPopupAddr;
bool m_hwSamples, m_hwSamplesRelative;
bool m_childCalls;
bool m_childCallList;
CostType m_cost;
SourceContents m_source;
SourceContents m_sourceTooltip;
std::vector<AsmLine> m_asm;
unordered_flat_map<uint64_t, uint32_t> m_locMap;
unordered_flat_map<uint64_t, JumpData> m_jumpTable;
unordered_flat_set<uint64_t> m_jumpOut;
size_t m_maxJumpLevel;
bool m_showJumps;
unordered_flat_map<uint32_t, uint32_t> m_sourceFiles;
unordered_flat_set<uint64_t> m_selectedAddresses;
unordered_flat_set<uint64_t> m_selectedAddressesHover;
uint32_t m_maxLine;
int m_maxMnemonicLen;
unordered_flat_map<const char*, int, charutil::Hasher, charutil::Comparator> m_microArchOpMap;
CpuArchitecture m_cpuArch;
int m_selMicroArch;
int m_idxMicroArch, m_profileMicroArch;
bool m_showLatency;
unordered_flat_set<uint32_t> m_asmSampleSelect;
unordered_flat_set<uint32_t> m_srcSampleSelect;
int32_t m_asmGroupSelect = -1;
int32_t m_srcGroupSelect = -1;
float m_srcWidth;
float m_asmWidth;
float m_jumpOffset;
GetWindowCallback m_gwcb;
Tokenizer m_tokenizer;
struct
{
uint32_t file = 0;
uint32_t line = 0;
size_t sel;
std::vector<uint64_t> target;
} m_asmTarget;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracySourceView.hpp
|
C++
|
gpl-3.0
| 8,134
|
#ifdef __MINGW32__
# define __STDC_FORMAT_MACROS
#endif
#include <assert.h>
#include <inttypes.h>
#include <string>
#include <string.h>
#ifdef _WIN32
# include <direct.h>
# include <windows.h>
#else
# include <dirent.h>
# include <sys/types.h>
# include <unistd.h>
# include <errno.h>
#endif
#include <sys/stat.h>
#include "TracyStorage.hpp"
namespace tracy
{
static bool CreateDirStruct( const std::string& path )
{
struct stat buf;
if( stat( path.c_str(), &buf ) == 0 ) return true;
if( errno != ENOENT )
{
return false;
}
size_t pos = 0;
do
{
pos = path.find( '/', pos+1 );
#ifdef _WIN32
if( pos == 2 && path[1] == ':' ) continue; // Don't create drive name.
if( _mkdir( path.substr( 0, pos ).c_str() ) != 0 )
#else
if( mkdir( path.substr( 0, pos ).c_str(), S_IRWXU ) != 0 )
#endif
{
if( errno != EEXIST )
{
return false;
}
}
}
while( pos != std::string::npos );
return true;
}
static void GetConfigDirectory( char* buf, size_t& sz )
{
#ifdef _WIN32
auto path = getenv( "APPDATA" );
sz = strlen( path );
memcpy( buf, path, sz );
for( size_t i=0; i<sz; i++ )
{
if( buf[i] == '\\' )
{
buf[i] = '/';
}
}
#else
auto path = getenv( "XDG_CONFIG_HOME" );
if( path && *path )
{
sz = strlen( path );
memcpy( buf, path, sz );
}
else
{
path = getenv( "HOME" );
assert( path && *path );
sz = strlen( path );
memcpy( buf, path, sz );
memcpy( buf+sz, "/.config", 8 );
sz += 8;
}
#endif
}
const char* GetSavePath( const char* file )
{
assert( file && *file );
enum { Pool = 8 };
enum { MaxPath = 512 };
static char bufpool[Pool][MaxPath];
static int bufsel = 0;
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
size_t sz;
GetConfigDirectory( buf, sz );
memcpy( buf+sz, "/tracy/", 8 );
sz += 7;
auto status = CreateDirStruct( buf );
assert( status );
const auto fsz = strlen( file );
assert( sz + fsz < MaxPath );
memcpy( buf+sz, file, fsz+1 );
return buf;
}
const char* GetSavePath( const char* program, uint64_t time, const char* file, bool create )
{
assert( program && *program );
enum { Pool = 8 };
enum { MaxPath = 512 };
static char bufpool[Pool][MaxPath];
static int bufsel = 0;
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
size_t sz;
GetConfigDirectory( buf, sz );
const auto psz = strlen( program );
assert( psz < 512 );
char tmp[512];
strcpy( tmp, program );
for( size_t i=0; i<psz; i++ )
{
switch( tmp[i] )
{
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
case 10:
case 11:
case 12:
case 13:
case 14:
case 15:
case 16:
case 17:
case 18:
case 19:
case 20:
case 21:
case 22:
case 23:
case 24:
case 25:
case 26:
case 27:
case 28:
case 29:
case 30:
case 31:
case 0x7F:
case '<':
case '>':
case ':':
case '"':
case '/':
case '\\':
case '|':
case '?':
case '*':
tmp[i] = '_';
break;
default:
break;
}
}
// 604800 = 7 days
sz += sprintf( buf+sz, "/tracy/user/%c/%s/%" PRIu64 "/%" PRIu64 "/", tmp[0], tmp, uint64_t( time / 604800 ), time );
if( create )
{
auto status = CreateDirStruct( buf );
assert( status );
}
if( file )
{
const auto fsz = strlen( file );
assert( sz + fsz < MaxPath );
memcpy( buf+sz, file, fsz+1 );
}
else
{
buf[sz] = '\0';
}
return buf;
}
}
|
whupdup/frame
|
real/third_party/tracy/server/TracyStorage.cpp
|
C++
|
gpl-3.0
| 4,072
|
#ifndef __TRACYSTORAGE_HPP__
#define __TRACYSTORAGE_HPP__
#include <stdint.h>
namespace tracy
{
const char* GetSavePath( const char* file );
const char* GetSavePath( const char* program, uint64_t time, const char* file, bool create );
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyStorage.hpp
|
C++
|
gpl-3.0
| 249
|
#ifndef __TRACYSTRINGDISCOVERY_HPP__
#define __TRACYSTRINGDISCOVERY_HPP__
#include "../common/TracyForceInline.hpp"
#include "tracy_robin_hood.h"
#include "TracyCharUtil.hpp"
#include "TracyEvent.hpp"
#include "TracyVector.hpp"
namespace tracy
{
template<typename T>
class StringDiscovery
{
public:
tracy_force_inline Vector<T>& Data() { return m_data; }
tracy_force_inline const Vector<T>& Data() const { return m_data; }
tracy_force_inline bool IsPending() const { return !m_pending.empty(); }
// Merge( destination, postponed )
template<typename U>
tracy_force_inline void StringDiscovered( uint64_t name, const StringLocation& sl, U& stringMap, std::function<void(T,T)> Merge )
{
auto pit = m_pending.find( name );
assert( pit != m_pending.end() );
auto it = m_rev.find( sl.ptr );
if( it == m_rev.end() )
{
m_map.emplace( name, pit->second );
m_rev.emplace( sl.ptr, pit->second );
m_data.push_back( pit->second );
stringMap.emplace( name, sl.ptr );
}
else
{
auto item = it->second;
m_map.emplace( name, item );
Merge( item, pit->second );
}
m_pending.erase( pit );
}
tracy_force_inline T Retrieve( uint64_t name, std::function<T(uint64_t)> Create, std::function<void(uint64_t)> Query )
{
auto it = m_map.find( name );
if( it == m_map.end() )
{
auto pit = m_pending.find( name );
if( pit == m_pending.end() )
{
T item = Create( name );
m_pending.emplace( name, item );
Query( name );
return item;
}
else
{
return pit->second;
}
}
else
{
return it->second;
}
}
private:
Vector<T> m_data;
unordered_flat_map<uint64_t, T> m_pending;
unordered_flat_map<uint64_t, T> m_map;
unordered_flat_map<const char*, T, charutil::Hasher, charutil::Comparator> m_rev;
};
}
#endif
|
whupdup/frame
|
real/third_party/tracy/server/TracyStringDiscovery.hpp
|
C++
|
gpl-3.0
| 2,133
|