From 7c29af90be81901414f9d13ebcf0af8d28266160 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Tue, 28 Jan 2025 18:19:42 -0800
Subject: [PATCH] testgputext: added an SDF shader and command line option
---
examples/testgputext.c | 116 ++++--
.../testgputext/shaders/shader-sdf.frag.dxil | Bin 0 -> 3972 bytes
.../shaders/shader-sdf.frag.dxil.h | 334 ++++++++++++++++++
.../testgputext/shaders/shader-sdf.frag.hlsl | 20 ++
.../testgputext/shaders/shader-sdf.frag.msl | 23 ++
.../testgputext/shaders/shader-sdf.frag.msl.h | 51 +++
.../testgputext/shaders/shader-sdf.frag.spv | Bin 0 -> 1148 bytes
.../testgputext/shaders/shader-sdf.frag.spv.h | 99 ++++++
8 files changed, 623 insertions(+), 20 deletions(-)
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.dxil
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.dxil.h
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.hlsl
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.msl
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.msl.h
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.spv
create mode 100644 examples/testgputext/shaders/shader-sdf.frag.spv.h
diff --git a/examples/testgputext.c b/examples/testgputext.c
index 3e5a2b9a..5a663e79 100644
--- a/examples/testgputext.c
+++ b/examples/testgputext.c
@@ -2,12 +2,17 @@
#include <SDL3/SDL_main.h>
#include <SDL3_ttf/SDL_ttf.h>
+// Shaders
#include "testgputext/shaders/shader.vert.spv.h"
#include "testgputext/shaders/shader.frag.spv.h"
+#include "testgputext/shaders/shader-sdf.frag.spv.h"
#include "testgputext/shaders/shader.vert.dxil.h"
#include "testgputext/shaders/shader.frag.dxil.h"
+#include "testgputext/shaders/shader-sdf.frag.dxil.h"
#include "testgputext/shaders/shader.vert.msl.h"
#include "testgputext/shaders/shader.frag.msl.h"
+#include "testgputext/shaders/shader-sdf.frag.msl.h"
+
#define SDL_MATH_3D_IMPLEMENTATION
#include "testgputext/SDL_math3d.h"
@@ -15,6 +20,13 @@
#define MAX_INDEX_COUNT 6000
#define SUPPORTED_SHADER_FORMATS (SDL_GPU_SHADERFORMAT_SPIRV | SDL_GPU_SHADERFORMAT_DXIL | SDL_GPU_SHADERFORMAT_MSL)
+typedef enum
+{
+ VertexShader,
+ PixelShader,
+ PixelShader_SDF,
+} Shader;
+
typedef SDL_FPoint Vec2;
typedef struct Vec3
@@ -67,7 +79,7 @@ void *check_error_ptr(void *ptr)
SDL_GPUShader *load_shader(
SDL_GPUDevice *device,
- bool is_vertex,
+ Shader shader,
Uint32 sampler_count,
Uint32 uniform_buffer_count,
Uint32 storage_buffer_count,
@@ -83,22 +95,68 @@ SDL_GPUShader *load_shader(
SDL_GPUShaderFormat format = SDL_GetGPUShaderFormats(device);
if (format & SDL_GPU_SHADERFORMAT_DXIL) {
createinfo.format = SDL_GPU_SHADERFORMAT_DXIL;
- createinfo.code = is_vertex ? shader_vert_dxil : shader_frag_dxil;
- createinfo.code_size = is_vertex ? shader_vert_dxil_len : shader_frag_dxil_len;
- createinfo.entrypoint = is_vertex ? "VSMain" : "PSMain";
+ switch (shader) {
+ case VertexShader:
+ createinfo.code = shader_vert_dxil;
+ createinfo.code_size = shader_vert_dxil_len;
+ createinfo.entrypoint = "VSMain";
+ break;
+ case PixelShader:
+ createinfo.code = shader_frag_dxil;
+ createinfo.code_size = shader_frag_dxil_len;
+ createinfo.entrypoint = "PSMain";
+ break;
+ case PixelShader_SDF:
+ createinfo.code = shader_sdf_frag_dxil;
+ createinfo.code_size = shader_sdf_frag_dxil_len;
+ createinfo.entrypoint = "PSMain";
+ break;
+ }
} else if (format & SDL_GPU_SHADERFORMAT_MSL) {
createinfo.format = SDL_GPU_SHADERFORMAT_MSL;
- createinfo.code = is_vertex ? shader_vert_msl : shader_frag_msl;
- createinfo.code_size = is_vertex ? shader_vert_msl_len : shader_frag_msl_len;
- createinfo.entrypoint = "main0";
+ switch (shader) {
+ case VertexShader:
+ createinfo.code = shader_vert_msl;
+ createinfo.code_size = shader_vert_msl_len;
+ createinfo.entrypoint = "main0";
+ break;
+ case PixelShader:
+ createinfo.code = shader_frag_msl;
+ createinfo.code_size = shader_frag_msl_len;
+ createinfo.entrypoint = "main0";
+ break;
+ case PixelShader_SDF:
+ createinfo.code = shader_sdf_frag_msl;
+ createinfo.code_size = shader_sdf_frag_msl_len;
+ createinfo.entrypoint = "main0";
+ break;
+ }
} else {
createinfo.format = SDL_GPU_SHADERFORMAT_SPIRV;
- createinfo.code = is_vertex ? shader_vert_spv : shader_frag_spv;
- createinfo.code_size = is_vertex ? shader_vert_spv_len : shader_frag_spv_len;
- createinfo.entrypoint = "main";
+ switch (shader) {
+ case VertexShader:
+ createinfo.code = shader_vert_spv;
+ createinfo.code_size = shader_vert_spv_len;
+ createinfo.entrypoint = "main";
+ break;
+ case PixelShader:
+ createinfo.code = shader_frag_spv;
+ createinfo.code_size = shader_frag_spv_len;
+ createinfo.entrypoint = "main";
+ break;
+ case PixelShader_SDF:
+ createinfo.code = shader_sdf_frag_spv;
+ createinfo.code_size = shader_sdf_frag_spv_len;
+ createinfo.entrypoint = "main";
+ break;
+ }
}
- createinfo.stage = is_vertex ? SDL_GPU_SHADERSTAGE_VERTEX : SDL_GPU_SHADERSTAGE_FRAGMENT;
+ if (shader == VertexShader) {
+ createinfo.stage = SDL_GPU_SHADERSTAGE_VERTEX;
+ } else {
+ createinfo.stage = SDL_GPU_SHADERSTAGE_FRAGMENT;
+ }
return SDL_CreateGPUShader(device, &createinfo);
}
@@ -221,12 +279,22 @@ void free_context(Context *context)
int main(int argc, char *argv[])
{
- const char *font_filename;
-
- if (argc > 1) {
- font_filename = argv[1];
- } else {
- SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Usage: testgputext FONT_FILENAME");
+ const char *font_filename = NULL;
+ bool use_SDF = false;
+
+ (void)argc;
+ for (int i = 1; argv[i]; ++i) {
+ if (SDL_strcasecmp(argv[i], "-sdf") == 0) {
+ use_SDF = true;
+ } else if (*argv[i] == '-') {
+ break;
+ } else {
+ font_filename = argv[i];
+ break;
+ }
+ }
+ if (!font_filename) {
+ SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Usage: testgputext [-sdf] FONT_FILENAME");
return 2;
}
@@ -240,8 +308,8 @@ int main(int argc, char *argv[])
context.device = check_error_ptr(SDL_CreateGPUDevice(SUPPORTED_SHADER_FORMATS, true, NULL));
check_error_bool(SDL_ClaimWindowForGPUDevice(context.device, context.window));
- SDL_GPUShader *vertex_shader = check_error_ptr(load_shader(context.device, true, 0, 1, 0, 0));
- SDL_GPUShader *fragment_shader = check_error_ptr(load_shader(context.device, false, 1, 0, 0, 0));
+ SDL_GPUShader *vertex_shader = check_error_ptr(load_shader(context.device, VertexShader, 0, 1, 0, 0));
+ SDL_GPUShader *fragment_shader = check_error_ptr(load_shader(context.device, use_SDF ? PixelShader_SDF : PixelShader, 1, 0, 0, 0));
SDL_GPUGraphicsPipelineCreateInfo pipeline_create_info = {
.target_info = {
@@ -331,8 +399,11 @@ int main(int argc, char *argv[])
check_error_bool(TTF_Init());
TTF_Font *font = check_error_ptr(TTF_OpenFont(font_filename, 50)); /* Preferably use a Monospaced font */
- if (!font)
+ if (!font) {
running = false;
+ }
+ SDL_Log("SDF %s", use_SDF ? "enabled" : "disabled");
+ TTF_SetFontSDF(font, use_SDF);
TTF_SetFontWrapAlignment(font, TTF_HORIZONTAL_ALIGN_CENTER);
TTF_TextEngine *engine = check_error_ptr(TTF_CreateGPUTextEngine(context.device));
@@ -351,6 +422,11 @@ int main(int argc, char *argv[])
SDL_Event event;
while (SDL_PollEvent(&event)) {
switch (event.type) {
+ case SDL_EVENT_KEY_UP:
+ if (event.key.key == SDLK_ESCAPE) {
+ running = false;
+ }
+ break;
case SDL_EVENT_QUIT:
running = false;
break;
diff --git a/examples/testgputext/shaders/shader-sdf.frag.dxil b/examples/testgputext/shaders/shader-sdf.frag.dxil
new file mode 100644
index 0000000000000000000000000000000000000000..0de2fc22dd4c60457878898fe29ba64def9ee687
GIT binary patch
literal 3972
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
L`S{$QH%R{m-6z6e
literal 0
HcmV?d00001
diff --git a/examples/testgputext/shaders/shader-sdf.frag.dxil.h b/examples/testgputext/shaders/shader-sdf.frag.dxil.h
new file mode 100644
index 00000000..5d2547a7
--- /dev/null
+++ b/examples/testgputext/shaders/shader-sdf.frag.dxil.h
@@ -0,0 +1,334 @@
+static const unsigned char shader_sdf_frag_dxil[] = {
+ 0x44, 0x58, 0x42, 0x43, 0xac, 0x2e, 0xf5, 0x28, 0x61, 0xcf, 0x6c, 0xaa,
+ 0xb4, 0xaa, 0xd1, 0x6c, 0x85, 0xed, 0x95, 0xe3, 0x01, 0x00, 0x00, 0x00,
+ 0x84, 0x0f, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x4c, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
+ 0xd8, 0x01, 0x00, 0x00, 0x4c, 0x08, 0x00, 0x00, 0x68, 0x08, 0x00, 0x00,
+ 0x53, 0x46, 0x49, 0x30, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x49, 0x53, 0x47, 0x31, 0x54, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x54, 0x45, 0x58, 0x43, 0x4f, 0x4f, 0x52, 0x44, 0x00, 0x00, 0x00, 0x00,
+ 0x4f, 0x53, 0x47, 0x31, 0x34, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x53, 0x56, 0x5f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x00, 0x00, 0x00,
+ 0x50, 0x53, 0x56, 0x30, 0xec, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x13, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x00, 0x54, 0x45, 0x58, 0x43, 0x4f, 0x4f, 0x52,
+ 0x44, 0x00, 0x54, 0x45, 0x58, 0x43, 0x4f, 0x4f, 0x52, 0x44, 0x00, 0x6d,
+ 0x61, 0x69, 0x6e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x03, 0x02, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x01, 0x42, 0x00,
+ 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x44, 0x10, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x53, 0x54, 0x41, 0x54, 0x6c, 0x06, 0x00, 0x00,
+ 0x60, 0x00, 0x00, 0x00, 0x9b, 0x01, 0x00, 0x00, 0x44, 0x58, 0x49, 0x4c,
+ 0x00, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x54, 0x06, 0x00, 0x00,
+ 0x42, 0x43, 0xc0, 0xde, 0x21, 0x0c, 0x00, 0x00, 0x92, 0x01, 0x00, 0x00,
+ 0x0b, 0x82, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x07, 0x81, 0x23, 0x91, 0x41, 0xc8, 0x04, 0x49, 0x06, 0x10, 0x32, 0x39,
+ 0x92, 0x01, 0x84, 0x0c, 0x25, 0x05, 0x08, 0x19, 0x1e, 0x04, 0x8b, 0x62,
+ 0x80, 0x14, 0x45, 0x02, 0x42, 0x92, 0x0b, 0x42, 0xa4, 0x10, 0x32, 0x14,
+ 0x38, 0x08, 0x18, 0x4b, 0x0a, 0x32, 0x52, 0x88, 0x48, 0x90, 0x14, 0x20,
+ 0x43, 0x46, 0x88, 0xa5, 0x00, 0x19, 0x32, 0x42, 0xe4, 0x48, 0x0e, 0x90,
+ 0x91, 0x22, 0xc4, 0x50, 0x41, 0x51, 0x81, 0x8c, 0xe1, 0x83, 0xe5, 0x8a,
+ 0x04, 0x29, 0x46, 0x06, 0x51, 0x18, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x1b, 0x8c, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x07, 0x40, 0x02, 0xa8, 0x0d,
+ 0x84, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x03, 0x20, 0x6d, 0x30, 0x86, 0xff,
+ 0xff, 0xff, 0xff, 0x1f, 0x00, 0x09, 0xa8, 0x00, 0x49, 0x18, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x13, 0x82, 0x60, 0x42, 0x20, 0x4c, 0x08, 0x06,
+ 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00,
+ 0x32, 0x22, 0x48, 0x09, 0x20, 0x64, 0x85, 0x04, 0x93, 0x22, 0xa4, 0x84,
+ 0x04, 0x93, 0x22, 0xe3, 0x84, 0xa1, 0x90, 0x14, 0x12, 0x4c, 0x8a, 0x8c,
+ 0x0b, 0x84, 0xa4, 0x4c, 0x10, 0x70, 0x23, 0x00, 0x25, 0x00, 0x14, 0x66,
+ 0x00, 0xe6, 0x08, 0xc0, 0x60, 0x8e, 0x00, 0x29, 0xc6, 0x20, 0x84, 0x14,
+ 0x42, 0xa6, 0x18, 0x80, 0x10, 0x52, 0x06, 0xa1, 0x32, 0x0c, 0x32, 0x48,
+ 0xdd, 0x34, 0x5c, 0xfe, 0x84, 0x3d, 0x84, 0xe4, 0xaf, 0x84, 0xb4, 0x12,
+ 0x93, 0x5f, 0xdc, 0x36, 0x2a, 0xc6, 0x18, 0x83, 0x50, 0xb9, 0x67, 0xb8,
+ 0xfc, 0x09, 0x7b, 0x08, 0xc9, 0x0f, 0x81, 0x66, 0x58, 0x08, 0x14, 0xb4,
+ 0xc2, 0x30, 0xe2, 0xdc, 0x18, 0x63, 0x10, 0x42, 0x06, 0xbd, 0x39, 0x82,
+ 0xa0, 0x18, 0x8e, 0x14, 0x42, 0x22, 0xc9, 0x81, 0x80, 0x61, 0x04, 0x62,
+ 0x98, 0xa9, 0x0d, 0xc6, 0x81, 0x1d, 0xc2, 0x61, 0x1e, 0xe6, 0xc1, 0x0d,
+ 0x68, 0xa1, 0x1c, 0xf0, 0x81, 0x1e, 0xea, 0x41, 0x1e, 0xca, 0x41, 0x0e,
+ 0x48, 0x81, 0x0f, 0xec, 0xa1, 0x1c, 0xc6, 0x81, 0x1e, 0xde, 0x41, 0x1e,
+ 0xf8, 0xc0, 0x1c, 0xd8, 0xe1, 0x1d, 0xc2, 0x81, 0x1e, 0xd8, 0x00, 0x0c,
+ 0xe8, 0xc0, 0x0f, 0xc0, 0xc0, 0x0f, 0xf4, 0x40, 0x0f, 0xda, 0x21, 0x1d,
+ 0xe0, 0x61, 0x1e, 0x7e, 0x81, 0x1e, 0xf2, 0x01, 0x1e, 0xca, 0x01, 0x05,
+ 0x64, 0x26, 0x31, 0x18, 0x07, 0x76, 0x08, 0x87, 0x79, 0x98, 0x07, 0x37,
+ 0xa0, 0x85, 0x72, 0xc0, 0x07, 0x7a, 0xa8, 0x07, 0x79, 0x28, 0x07, 0x39,
+ 0x20, 0x05, 0x3e, 0xb0, 0x87, 0x72, 0x18, 0x07, 0x7a, 0x78, 0x07, 0x79,
+ 0xe0, 0x03, 0x73, 0x60, 0x87, 0x77, 0x08, 0x07, 0x7a, 0x60, 0x03, 0x30,
+ 0xa0, 0x03, 0x3f, 0x00, 0x03, 0x3f, 0x40, 0x42, 0xb5, 0x74, 0x6f, 0x92,
+ 0xa6, 0x88, 0x12, 0x26, 0x9f, 0x05, 0x98, 0x67, 0x21, 0x22, 0x76, 0x02,
+ 0x26, 0x02, 0x05, 0x84, 0x72, 0x22, 0x10, 0x00, 0x13, 0x14, 0x72, 0xc0,
+ 0x87, 0x74, 0x60, 0x87, 0x36, 0x68, 0x87, 0x79, 0x68, 0x03, 0x72, 0xc0,
+ 0x87, 0x0d, 0xaf, 0x50, 0x0e, 0x6d, 0xd0, 0x0e, 0x7a, 0x50, 0x0e, 0x6d,
+ 0x00, 0x0f, 0x7a, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d,
+ 0x90, 0x0e, 0x71, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x78,
+ 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x71, 0x60, 0x07, 0x7a,
+ 0x30, 0x07, 0x72, 0xd0, 0x06, 0xe9, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x73,
+ 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x76, 0x40, 0x07, 0x7a, 0x60, 0x07, 0x74,
+ 0xd0, 0x06, 0xe6, 0x10, 0x07, 0x76, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d,
+ 0x60, 0x0e, 0x73, 0x20, 0x07, 0x7a, 0x30, 0x07, 0x72, 0xd0, 0x06, 0xe6,
+ 0x60, 0x07, 0x74, 0xa0, 0x07, 0x76, 0x40, 0x07, 0x6d, 0xe0, 0x0e, 0x78,
+ 0xa0, 0x07, 0x71, 0x60, 0x07, 0x7a, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x76,
+ 0x40, 0x07, 0x43, 0x9e, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x86, 0x3c, 0x06, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x0c, 0x79, 0x10, 0x20, 0x00, 0x04, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xf2, 0x28, 0x40, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0xe4, 0x79, 0x80, 0x00, 0x18,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xc8, 0x23, 0x01, 0x01,
+ 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x16, 0x08, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x32, 0x1e, 0x98, 0x14, 0x19, 0x11, 0x4c, 0x90,
+ 0x8c, 0x09, 0x26, 0x47, 0xc6, 0x04, 0x43, 0x22, 0x25, 0x30, 0x02, 0x50,
+ 0x0c, 0x45, 0x50, 0x12, 0x65, 0x50, 0x1e, 0x05, 0x51, 0x2e, 0x85, 0x40,
+ 0xa5, 0x24, 0x46, 0x00, 0x8a, 0xa0, 0x10, 0x0a, 0x84, 0xf0, 0x0c, 0x00,
+ 0xe9, 0x19, 0x00, 0xda, 0x63, 0x21, 0x06, 0x11, 0x08, 0x04, 0x82, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x79, 0x18, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00,
+ 0x1a, 0x03, 0x4c, 0x90, 0x46, 0x02, 0x13, 0xc4, 0x8f, 0x0c, 0x6f, 0x0c,
+ 0x05, 0x4e, 0x2e, 0xcd, 0x2e, 0x8c, 0xae, 0x2c, 0x05, 0x24, 0xc6, 0x05,
+ 0xc7, 0x05, 0xc6, 0x25, 0x06, 0x04, 0x25, 0x6c, 0x6c, 0xc6, 0x26, 0xec,
+ 0x26, 0xe7, 0x26, 0x65, 0x43, 0x10, 0x4c, 0x10, 0x08, 0x63, 0x82, 0x40,
+ 0x1c, 0x1b, 0x84, 0x81, 0xd8, 0x20, 0x10, 0x04, 0x05, 0xb8, 0xb9, 0x09,
+ 0x02, 0x81, 0x6c, 0x18, 0x0e, 0x84, 0x98, 0x20, 0x60, 0x15, 0x07, 0xba,
+ 0x32, 0xbc, 0x09, 0x02, 0x91, 0x4c, 0x10, 0x08, 0x65, 0x83, 0x40, 0x34,
+ 0x1b, 0x12, 0x42, 0x59, 0x18, 0x62, 0x60, 0x08, 0x67, 0x43, 0xf0, 0x4c,
+ 0x10, 0x34, 0x8b, 0xc4, 0x5c, 0x58, 0x1b, 0xdc, 0x06, 0x84, 0x88, 0x24,
+ 0x86, 0x18, 0x08, 0x60, 0x43, 0x30, 0x6d, 0x20, 0x20, 0x00, 0xa0, 0x26,
+ 0x08, 0x02, 0xb0, 0x01, 0xd8, 0x30, 0x10, 0xd7, 0xb5, 0x21, 0xc0, 0x36,
+ 0x0c, 0x83, 0x95, 0x4d, 0x10, 0xb6, 0x6b, 0x43, 0xb0, 0x91, 0x68, 0x0b,
+ 0x4b, 0x73, 0x23, 0x42, 0x55, 0x84, 0x35, 0xf4, 0xf4, 0x24, 0x45, 0x34,
+ 0x41, 0x28, 0xa0, 0x09, 0x42, 0x11, 0x6d, 0x08, 0x88, 0x09, 0x42, 0x21,
+ 0x4d, 0x10, 0x8a, 0x69, 0x82, 0x40, 0x2c, 0x13, 0x04, 0x82, 0xd9, 0x20,
+ 0x90, 0x41, 0x19, 0x6c, 0x58, 0x08, 0xef, 0x03, 0x83, 0x30, 0x10, 0x83,
+ 0x61, 0x0c, 0x08, 0x30, 0x30, 0x83, 0x0d, 0xc1, 0xb0, 0x41, 0x20, 0x03,
+ 0x32, 0xd8, 0xb0, 0x0c, 0xde, 0x07, 0x06, 0x68, 0x20, 0x06, 0x83, 0x18,
+ 0x0c, 0x60, 0x90, 0x06, 0x1b, 0x84, 0x33, 0x50, 0x03, 0x26, 0x53, 0x56,
+ 0x5f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x13, 0x84, 0x82, 0xda, 0xb0,
+ 0x10, 0x6c, 0xf0, 0xb5, 0x41, 0x18, 0x80, 0xc1, 0x30, 0x06, 0x04, 0x18,
+ 0x98, 0xc1, 0x86, 0xc0, 0x0d, 0x36, 0x0c, 0x6b, 0xf0, 0x06, 0xc0, 0x86,
+ 0xc2, 0xea, 0xe0, 0xa0, 0x02, 0x68, 0x98, 0xb1, 0xbd, 0x85, 0xd1, 0xcd,
+ 0x4d, 0x10, 0x88, 0x86, 0x45, 0x9a, 0xdb, 0x1c, 0xdd, 0xdc, 0x04, 0x81,
+ 0x70, 0x68, 0xcc, 0xa5, 0x9d, 0x7d, 0xb1, 0x91, 0xd1, 0x98, 0x4b, 0x3b,
+ 0xfb, 0x9a, 0xa3, 0x9b, 0x20, 0x10, 0x0f, 0x11, 0xba, 0x32, 0xbc, 0x2f,
+ 0xb7, 0x37, 0xb9, 0xb6, 0x0d, 0x8a, 0x1c, 0xcc, 0x01, 0x1d, 0xd4, 0x81,
+ 0x1d, 0x20, 0x77, 0x80, 0x07, 0x79, 0x30, 0x54, 0x61, 0x63, 0xb3, 0x6b,
+ 0x73, 0x49, 0x23, 0x2b, 0x73, 0xa3, 0x9b, 0x12, 0x04, 0x55, 0xc8, 0xf0,
+ 0x5c, 0xec, 0xca, 0xe4, 0xe6, 0xd2, 0xde, 0xdc, 0xa6, 0x04, 0x44, 0x13,
+ 0x32, 0x3c, 0x17, 0xbb, 0x30, 0x36, 0xbb, 0x32, 0xb9, 0x29, 0x41, 0x51,
+ 0x87, 0x0c, 0xcf, 0x65, 0x0e, 0x2d, 0x8c, 0xac, 0x4c, 0xae, 0xe9, 0x8d,
+ 0xac, 0x8c, 0x6d, 0x4a, 0x80, 0x94, 0x21, 0xc3, 0x73, 0x91, 0x2b, 0x9b,
+ 0x7b, 0xab, 0x93, 0x1b, 0x2b, 0x9b, 0x9b, 0x12, 0x50, 0x95, 0xc8, 0xf0,
+ 0x5c, 0xe8, 0xf2, 0xe0, 0xca, 0x82, 0xdc, 0xdc, 0xde, 0xe8, 0xc2, 0xe8,
+ 0xd2, 0xde, 0xdc, 0xe6, 0xa6, 0x04, 0x59, 0x1d, 0x32, 0x3c, 0x17, 0xbb,
+ 0xb4, 0xb2, 0xbb, 0x24, 0xb2, 0x29, 0xba, 0x30, 0xba, 0xb2, 0x29, 0xc1,
+ 0x56, 0x87, 0x0c, 0xcf, 0xa5, 0xcc, 0x8d, 0x4e, 0x2e, 0x0f, 0xea, 0x2d,
+ 0xcd, 0x8d, 0x6e, 0x6e, 0x4a, 0x00, 0x07, 0x5d, 0xc8, 0xf0, 0x5c, 0xc6,
+ 0xde, 0xea, 0xdc, 0xe8, 0xca, 0xe4, 0xe6, 0xa6, 0x04, 0x79, 0x00, 0x00,
+ 0x79, 0x18, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x33, 0x08, 0x80, 0x1c,
+ 0xc4, 0xe1, 0x1c, 0x66, 0x14, 0x01, 0x3d, 0x88, 0x43, 0x38, 0x84, 0xc3,
+ 0x8c, 0x42, 0x80, 0x07, 0x79, 0x78, 0x07, 0x73, 0x98, 0x71, 0x0c, 0xe6,
+ 0x00, 0x0f, 0xed, 0x10, 0x0e, 0xf4, 0x80, 0x0e, 0x33, 0x0c, 0x42, 0x1e,
+ 0xc2, 0xc1, 0x1d, 0xce, 0xa1, 0x1c, 0x66, 0x30, 0x05, 0x3d, 0x88, 0x43,
+ 0x38, 0x84, 0x83, 0x1b, 0xcc, 0x03, 0x3d, 0xc8, 0x43, 0x3d, 0x8c, 0x03,
+ 0x3d, 0xcc, 0x78, 0x8c, 0x74, 0x70, 0x07, 0x7b, 0x08, 0x07, 0x79, 0x48,
+ 0x87, 0x70, 0x70, 0x07, 0x7a, 0x70, 0x03, 0x76, 0x78, 0x87, 0x70, 0x20,
+ 0x87, 0x19, 0xcc, 0x11, 0x0e, 0xec, 0x90, 0x0e, 0xe1, 0x30, 0x0f, 0x6e,
+ 0x30, 0x0f, 0xe3, 0xf0, 0x0e, 0xf0, 0x50, 0x0e, 0x33, 0x10, 0xc4, 0x1d,
+ 0xde, 0x21, 0x1c, 0xd8, 0x21, 0x1d, 0xc2, 0x61, 0x1e, 0x66, 0x30, 0x89,
+ 0x3b, 0xbc, 0x83, 0x3b, 0xd0, 0x43, 0x39, 0xb4, 0x03, 0x3c, 0xbc, 0x83,
+ 0x3c, 0x84, 0x03, 0x3b, 0xcc, 0xf0, 0x14, 0x76, 0x60, 0x07, 0x7b, 0x68,
+ 0x07, 0x37, 0x68, 0x87, 0x72, 0x68, 0x07, 0x37, 0x80, 0x87, 0x70, 0x90,
+ 0x87, 0x70, 0x60, 0x07, 0x76, 0x28, 0x07, 0x76, 0xf8, 0x05, 0x76, 0x78,
+ 0x87, 0x77, 0x80, 0x87, 0x5f, 0x08, 0x87, 0x71, 0x18, 0x87, 0x72, 0x98,
+ 0x87, 0x79, 0x98, 0x81, 0x2c, 0xee, 0xf0, 0x0e, 0xee, 0xe0, 0x0e, 0xf5,
+ 0xc0, 0x0e, 0xec, 0x30, 0x03, 0x62, 0xc8, 0xa1, 0x1c, 0xe4, 0xa1, 0x1c,
+ 0xcc, 0xa1, 0x1c, 0xe4, 0xa1, 0x1c, 0xdc, 0x61, 0x1c, 0xca, 0x21, 0x1c,
+ 0xc4, 0x81, 0x1d, 0xca, 0x61, 0x06, 0xd6, 0x90, 0x43, 0x39, 0xc8, 0x43,
+ 0x39, 0x98, 0x43, 0x39, 0xc8, 0x43, 0x39, 0xb8, 0xc3, 0x38, 0x94, 0x43,
+ 0x38, 0x88, 0x03, 0x3b, 0x94, 0xc3, 0x2f, 0xbc, 0x83, 0x3c, 0xfc, 0x82,
+ 0x3b, 0xd4, 0x03, 0x3b, 0xb0, 0xc3, 0x8c, 0xc8, 0x21, 0x07, 0x7c, 0x70,
+ 0x03, 0x72, 0x10, 0x87, 0x73, 0x70, 0x03, 0x7b, 0x08, 0x07, 0x79, 0x60,
+ 0x87, 0x70, 0xc8, 0x87, 0x77, 0xa8, 0x07, 0x7a, 0x98, 0x81, 0x3c, 0xe4,
+ 0x80, 0x0f, 0x6e, 0x40, 0x0f, 0xe5, 0xd0, 0x0e, 0xf0, 0x00, 0x00, 0x00,
+ 0x71, 0x20, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x56, 0x20, 0x0d, 0x97,
+ 0xef, 0x3c, 0xbe, 0x10, 0x11, 0xc0, 0x44, 0x84, 0x40, 0x33, 0x2c, 0x84,
+ 0x05, 0x4c, 0xc3, 0xe5, 0x3b, 0x8f, 0xbf, 0x38, 0xc0, 0x20, 0x36, 0x0f,
+ 0x35, 0xf9, 0xc5, 0x6d, 0x1b, 0x01, 0x34, 0x5c, 0xbe, 0xf3, 0xf8, 0x12,
+ 0xc0, 0x3c, 0x0b, 0xe1, 0x17, 0xb7, 0x6d, 0x02, 0xd5, 0x70, 0xf9, 0xce,
+ 0xe3, 0x4b, 0x93, 0x13, 0x11, 0x28, 0x35, 0x3d, 0xd4, 0xe4, 0x17, 0xb7,
+ 0x6d, 0x03, 0xcf, 0x70, 0xf9, 0xce, 0xe3, 0x53, 0x0d, 0x10, 0x61, 0x7e,
+ 0x71, 0xdb, 0x06, 0x40, 0x30, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x48, 0x41, 0x53, 0x48, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x25, 0xe6, 0x79, 0x2d, 0x0e, 0x6b, 0x12, 0x67, 0xa9, 0xac, 0x59, 0xb4,
+ 0x1e, 0x07, 0xeb, 0x3d, 0x44, 0x58, 0x49, 0x4c, 0x14, 0x07, 0x00, 0x00,
+ 0x60, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x44, 0x58, 0x49, 0x4c,
+ 0x00, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xfc, 0x06, 0x00, 0x00,
+ 0x42, 0x43, 0xc0, 0xde, 0x21, 0x0c, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00,
+ 0x0b, 0x82, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x07, 0x81, 0x23, 0x91, 0x41, 0xc8, 0x04, 0x49, 0x06, 0x10, 0x32, 0x39,
+ 0x92, 0x01, 0x84, 0x0c, 0x25, 0x05, 0x08, 0x19, 0x1e, 0x04, 0x8b, 0x62,
+ 0x80, 0x14, 0x45, 0x02, 0x42, 0x92, 0x0b, 0x42, 0xa4, 0x10, 0x32, 0x14,
+ 0x38, 0x08, 0x18, 0x4b, 0x0a, 0x32, 0x52, 0x88, 0x48, 0x90, 0x14, 0x20,
+ 0x43, 0x46, 0x88, 0xa5, 0x00, 0x19, 0x32, 0x42, 0xe4, 0x48, 0x0e, 0x90,
+ 0x91, 0x22, 0xc4, 0x50, 0x41, 0x51, 0x81, 0x8c, 0xe1, 0x83, 0xe5, 0x8a,
+ 0x04, 0x29, 0x46, 0x06, 0x51, 0x18, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x1b, 0x8c, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x07, 0x40, 0x02, 0xa8, 0x0d,
+ 0x84, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x03, 0x20, 0x6d, 0x30, 0x86, 0xff,
+ 0xff, 0xff, 0xff, 0x1f, 0x00, 0x09, 0xa8, 0x00, 0x49, 0x18, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x13, 0x82, 0x60, 0x42, 0x20, 0x4c, 0x08, 0x06,
+ 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00,
+ 0x32, 0x22, 0x48, 0x09, 0x20, 0x64, 0x85, 0x04, 0x93, 0x22, 0xa4, 0x84,
+ 0x04, 0x93, 0x22, 0xe3, 0x84, 0xa1, 0x90, 0x14, 0x12, 0x4c, 0x8a, 0x8c,
+ 0x0b, 0x84, 0xa4, 0x4c, 0x10, 0x70, 0x23, 0x00, 0x25, 0x00, 0x14, 0x66,
+ 0x00, 0xe6, 0x08, 0xc0, 0x60, 0x8e, 0x00, 0x29, 0xc6, 0x20, 0x84, 0x14,
+ 0x42, 0xa6, 0x18, 0x80, 0x10, 0x52, 0x06, 0xa1, 0x32, 0x0c, 0x32, 0x48,
+ 0xdd, 0x34, 0x5c, 0xfe, 0x84, 0x3d, 0x84, 0xe4, 0xaf, 0x84, 0xb4, 0x12,
+ 0x93, 0x5f, 0xdc, 0x36, 0x2a, 0xc6, 0x18, 0x83, 0x50, 0xb9, 0x67, 0xb8,
+ 0xfc, 0x09, 0x7b, 0x08, 0xc9, 0x0f, 0x81, 0x66, 0x58, 0x08, 0x14, 0xb4,
+ 0xc2, 0x30, 0xe2, 0xdc, 0x18, 0x63, 0x10, 0x42, 0x06, 0xbd, 0x39, 0x82,
+ 0xa0, 0x18, 0x8e, 0x14, 0x42, 0x22, 0xc9, 0x81, 0x80, 0x61, 0x04, 0x62,
+ 0x98, 0xa9, 0x0d, 0xc6, 0x81, 0x1d, 0xc2, 0x61, 0x1e, 0xe6, 0xc1, 0x0d,
+ 0x68, 0xa1, 0x1c, 0xf0, 0x81, 0x1e, 0xea, 0x41, 0x1e, 0xca, 0x41, 0x0e,
+ 0x48, 0x81, 0x0f, 0xec, 0xa1, 0x1c, 0xc6, 0x81, 0x1e, 0xde, 0x41, 0x1e,
+ 0xf8, 0xc0, 0x1c, 0xd8, 0xe1, 0x1d, 0xc2, 0x81, 0x1e, 0xd8, 0x00, 0x0c,
+ 0xe8, 0xc0, 0x0f, 0xc0, 0xc0, 0x0f, 0xf4, 0x40, 0x0f, 0xda, 0x21, 0x1d,
+ 0xe0, 0x61, 0x1e, 0x7e, 0x81, 0x1e, 0xf2, 0x01, 0x1e, 0xca, 0x01, 0x05,
+ 0x64, 0x26, 0x31, 0x18, 0x07, 0x76, 0x08, 0x87, 0x79, 0x98, 0x07, 0x37,
+ 0xa0, 0x85, 0x72, 0xc0, 0x07, 0x7a, 0xa8, 0x07, 0x79, 0x28, 0x07, 0x39,
+ 0x20, 0x05, 0x3e, 0xb0, 0x87, 0x72, 0x18, 0x07, 0x7a, 0x78, 0x07, 0x79,
+ 0xe0, 0x03, 0x73, 0x60, 0x87, 0x77, 0x08, 0x07, 0x7a, 0x60, 0x03, 0x30,
+ 0xa0, 0x03, 0x3f, 0x00, 0x03, 0x3f, 0x40, 0x42, 0xb5, 0x74, 0x6f, 0x92,
+ 0xa6, 0x88, 0x12, 0x26, 0x9f, 0x05, 0x98, 0x67, 0x21, 0x22, 0x76, 0x02,
+ 0x26, 0x02, 0x05, 0x84, 0x72, 0x22, 0x10, 0x00, 0x13, 0x14, 0x72, 0xc0,
+ 0x87, 0x74, 0x60, 0x87, 0x36, 0x68, 0x87, 0x79, 0x68, 0x03, 0x72, 0xc0,
+ 0x87, 0x0d, 0xaf, 0x50, 0x0e, 0x6d, 0xd0, 0x0e, 0x7a, 0x50, 0x0e, 0x6d,
+ 0x00, 0x0f, 0x7a, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d,
+ 0x90, 0x0e, 0x71, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x78,
+ 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x71, 0x60, 0x07, 0x7a,
+ 0x30, 0x07, 0x72, 0xd0, 0x06, 0xe9, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x73,
+ 0x20, 0x07, 0x6d, 0x90, 0x0e, 0x76, 0x40, 0x07, 0x7a, 0x60, 0x07, 0x74,
+ 0xd0, 0x06, 0xe6, 0x10, 0x07, 0x76, 0xa0, 0x07, 0x73, 0x20, 0x07, 0x6d,
+ 0x60, 0x0e, 0x73, 0x20, 0x07, 0x7a, 0x30, 0x07, 0x72, 0xd0, 0x06, 0xe6,
+ 0x60, 0x07, 0x74, 0xa0, 0x07, 0x76, 0x40, 0x07, 0x6d, 0xe0, 0x0e, 0x78,
+ 0xa0, 0x07, 0x71, 0x60, 0x07, 0x7a, 0x30, 0x07, 0x72, 0xa0, 0x07, 0x76,
+ 0x40, 0x07, 0x43, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x86, 0x3c, 0x06, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x0c, 0x79, 0x10, 0x20, 0x00, 0x04, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xf2, 0x28, 0x40, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0xe4, 0x79, 0x80, 0x00, 0x18,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xc8, 0x23, 0x01, 0x01,
+ 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x16, 0x08, 0x00,
+ 0x0e, 0x00, 0x00, 0x00, 0x32, 0x1e, 0x98, 0x14, 0x19, 0x11, 0x4c, 0x90,
+ 0x8c, 0x09, 0x26, 0x47, 0xc6, 0x04, 0x43, 0x22, 0x25, 0x30, 0x02, 0x50,
+ 0x10, 0xc5, 0x50, 0x04, 0x25, 0x51, 0x06, 0xe5, 0x41, 0xa5, 0x24, 0x46,
+ 0x00, 0x8a, 0xa0, 0x10, 0x0a, 0x84, 0xf0, 0x0c, 0x00, 0xe9, 0x19, 0x00,
+ 0xda, 0x63, 0x21, 0x06, 0x11, 0x08, 0x04, 0x82, 0x20, 0x00, 0x00, 0x00,
+ 0x79, 0x18, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x1a, 0x03, 0x4c, 0x90,
+ 0x46, 0x02, 0x13, 0xc4, 0x8f, 0x0c, 0x6f, 0x0c, 0x05, 0x4e, 0x2e, 0xcd,
+ 0x2e, 0x8c, 0xae, 0x2c, 0x05, 0x24, 0xc6, 0x05, 0xc7, 0x05, 0xc6, 0x25,
+ 0x06, 0x04, 0x25, 0x6c, 0x6c, 0xc6, 0x26, 0xec, 0x26, 0xe7, 0x26, 0x65,
+ 0x43, 0x10, 0x4c, 0x10, 0x08, 0x63, 0x82, 0x40, 0x1c, 0x1b, 0x84, 0x81,
+ 0x98, 0x20, 0x10, 0xc8, 0x06, 0x61, 0x30, 0x28, 0xc0, 0xcd, 0x4d, 0x10,
+ 0x88, 0x64, 0xc3, 0x80, 0x24, 0xc4, 0x04, 0x01, 0x9b, 0x08, 0x4c, 0x10,
+ 0x08, 0x65, 0x82, 0x40, 0x2c, 0x1b, 0x04, 0xc2, 0xd9, 0x90, 0x10, 0x0b,
+ 0xd3, 0x10, 0x43, 0x43, 0x3c, 0x1b, 0x02, 0x68, 0x82, 0xa0, 0x51, 0x1b,
+ 0x10, 0x42, 0x62, 0x1a, 0x62, 0x20, 0x80, 0x0d, 0xc1, 0xb4, 0x81, 0x88,
+ 0x00, 0x80, 0x9a, 0x20, 0x6c, 0xd5, 0x86, 0xc0, 0x9a, 0x20, 0x08, 0x00,
+ 0x89, 0xb6, 0xb0, 0x34, 0x37, 0x22, 0x54, 0x45, 0x58, 0x43, 0x4f, 0x4f,
+ 0x52, 0x44, 0x13, 0x84, 0xc2, 0x99, 0x20, 0x14, 0xcf, 0x86, 0x80, 0x98,
+ 0x20, 0x14, 0xd0, 0x04, 0xa1, 0x88, 0x26, 0x08, 0x04, 0x33, 0x41, 0x20,
+ 0x9a, 0x0d, 0x02, 0x18, 0x84, 0xc1, 0x86, 0x85, 0xd0, 0x36, 0xae, 0xf3,
+ 0x86, 0x8f, 0xe0, 0xc4, 0x60, 0x43, 0x30, 0x6c, 0x10, 0xc0, 0x00, 0x0c,
+ 0x36, 0x2c, 0x83, 0xb6, 0x71, 0x64, 0xe0, 0x0d, 0xde, 0xc0, 0x95, 0xc1,
+ 0x06, 0x61, 0x0c, 0xcc, 0x80, 0xc9, 0x94, 0xd5, 0x17, 0x55, 0x98, 0xdc,
+ 0x59, 0x19, 0xdd, 0x04, 0xa1, 0x90, 0x36, 0x2c, 0x04, 0x1a, 0x6c, 0x69,
+ 0xd0, 0x71, 0xc3, 0x47, 0x70, 0x62, 0xb0, 0x21, 0x50, 0x83, 0x0d, 0xc3,
+ 0x19, 0xac, 0x01, 0xb0, 0xa1, 0xc0, 0x32,
(Patch may be truncated, please check the link at the top of this post.)