Browse Source

Added a workaround for PDBs with empty defines. (#4945)

PDBs compiled with /D "" results in an empty define in the PDB/debug DXIL, which causes IDxcPdbUtils to crash when reading the defines. This change does not fix the empty define, just makes IDxcPdbUtils not crash when reading PDBs like this.

The test consists of a compiled DXIL with embedded debug with an empty define. If we decide to fix the empty define later, this test would continue to test for regression.
Adam Yang 2 năm trước cách đây
mục cha
commit
ce9b3a2c8b

+ 4 - 0
tools/clang/tools/dxcompiler/dxcpdbutils.cpp

@@ -721,6 +721,10 @@ private:
   HRESULT AddArgPair(StringRef name, StringRef value) {
     const llvm::opt::OptTable *optTable = hlsl::options::getHlslOptTable();
 
+    // If the value for define is somehow empty, do not add it.
+    if (name == "D" && value.empty())
+      return S_OK;
+
     SmallVector<char, 32> fusedArgStorage;
     if (name.size() && value.size()) {
       // Handling case where old positional arguments used to have

+ 21 - 0
tools/clang/unittests/HLSL/CompilerTest.cpp

@@ -150,6 +150,7 @@ public:
   TEST_METHOD(CompileThenSetRootSignatureThenValidate)
   TEST_METHOD(CompileSetPrivateThenWithStripPrivate)
   TEST_METHOD(CompileWithMultiplePrivateOptionsThenFail)
+  TEST_METHOD(TestPdbUtilsWithEmptyDefine)
 
   void CompileThenTestReflectionThreadSize(const char *source, const WCHAR *target, UINT expectedX, UINT expectedY, UINT expectedZ);
 
@@ -2009,6 +2010,26 @@ TEST_F(CompilerTest, CompileThenTestPdbUtilsEmptyEntry) {
   VERIFY_ARE_EQUAL(pEntryName, L"main");
 }
 
+TEST_F(CompilerTest, TestPdbUtilsWithEmptyDefine) {
+#include "TestHeaders/TestDxilWithEmptyDefine.h"
+  CComPtr<IDxcUtils> pUtils;
+  VERIFY_SUCCEEDED(m_dllSupport.CreateInstance(CLSID_DxcUtils, &pUtils));
+
+  CComPtr<IDxcBlobEncoding> pBlob;
+  VERIFY_SUCCEEDED(pUtils->CreateBlobFromPinned(g_TestDxilWithEmptyDefine, sizeof(g_TestDxilWithEmptyDefine), CP_ACP, &pBlob));
+
+  CComPtr<IDxcPdbUtils> pPdbUtils;
+  VERIFY_SUCCEEDED(m_dllSupport.CreateInstance(CLSID_DxcPdbUtils, &pPdbUtils));
+  VERIFY_SUCCEEDED(pPdbUtils->Load(pBlob));
+
+  UINT32 uCount = 0;
+  VERIFY_SUCCEEDED(pPdbUtils->GetDefineCount(&uCount));
+  for (UINT i = 0; i < uCount; i++) {
+    CComBSTR pDefine;
+    VERIFY_SUCCEEDED(pPdbUtils->GetDefine(i, &pDefine));
+  }
+}
+
 #endif //  _WIN32 - No PDBUtil support
 
 void CompilerTest::TestResourceBindingImpl(

+ 354 - 0
tools/clang/unittests/HLSL/TestHeaders/TestDxilWithEmptyDefine.h

@@ -0,0 +1,354 @@
+#if 0
+;
+; Input signature:
+;
+; Name                 Index   Mask Register SysValue  Format   Used
+; -------------------- ----- ------ -------- -------- ------- ------
+; no parameters
+;
+; Output signature:
+;
+; Name                 Index   Mask Register SysValue  Format   Used
+; -------------------- ----- ------ -------- -------- ------- ------
+; SV_Target                0   x           0   TARGET   float   x   
+;
+; shader debug name: 21c11f2029d870c04dedb3fe6b46bf27.pdb
+; shader hash: 21c11f2029d870c04dedb3fe6b46bf27
+;
+; Pipeline Runtime Information: 
+;
+; Pixel Shader
+; DepthOutput=0
+; SampleFrequency=0
+;
+;
+; Output signature:
+;
+; Name                 Index             InterpMode DynIdx
+; -------------------- ----- ---------------------- ------
+; SV_Target                0                              
+;
+; Buffer Definitions:
+;
+;
+; Resource Bindings:
+;
+; Name                                 Type  Format         Dim      ID      HLSL Bind  Count
+; ------------------------------ ---------- ------- ----------- ------- -------------- ------
+;
+;
+; ViewId state:
+;
+; Number of inputs: 0, outputs: 1
+; Outputs dependent on ViewId: {  }
+; Inputs contributing to computation of Outputs:
+;
+target datalayout = "e-m:e-p:32:32-i1:32-i8:32-i16:32-i32:32-i64:64-f16:32-f32:32-f64:64-n8:16:32:64"
+target triple = "dxil-ms-dx"
+
+define void @main() {
+entry:
+  call void @dx.op.storeOutput.f32(i32 5, i32 0, i32 0, i8 0, float 0.000000e+00), !dbg !28 ; line:1 col:28  ; StoreOutput(outputSigId,rowIndex,colIndex,value)
+  ret void, !dbg !28 ; line:1 col:28
+}
+
+; Function Attrs: nounwind
+declare void @dx.op.storeOutput.f32(i32, i32, i32, i8, float) #0
+
+attributes #0 = { nounwind }
+
+!llvm.dbg.cu = !{!0}
+!llvm.module.flags = !{!8, !9}
+!llvm.ident = !{!10}
+!dx.source.contents = !{!11}
+!dx.source.defines = !{!12}
+!dx.source.mainFileName = !{!13}
+!dx.source.args = !{!14}
+!dx.version = !{!15}
+!dx.valver = !{!16}
+!dx.shaderModel = !{!17}
+!dx.typeAnnotations = !{!18}
+!dx.viewIdState = !{!21}
+!dx.entryPoints = !{!22}
+
+!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "dxc(private) 1.7.0.13784 (main, e93cb6343)", isOptimized: false, runtimeVersion: 0, emissionKind: 1, enums: !2, subprograms: !3)
+!1 = !DIFile(filename: "F:\5Ctest\5Cbad.hlsl", directory: "")
+!2 = !{}
+!3 = !{!4}
+!4 = !DISubprogram(name: "main", scope: !1, file: !1, line: 1, type: !5, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: false, function: void ()* @main)
+!5 = !DISubroutineType(types: !6)
+!6 = !{!7}
+!7 = !DIBasicType(name: "float", size: 32, align: 32, encoding: DW_ATE_float)
+!8 = !{i32 2, !"Dwarf Version", i32 4}
+!9 = !{i32 2, !"Debug Info Version", i32 3}
+!10 = !{!"dxc(private) 1.7.0.13784 (main, e93cb6343)"}
+!11 = !{!"F:\5Ctest\5Cbad.hlsl", !"float main() : SV_Target { return 0; }\0D\0A"}
+!12 = !{!"OTHER_DEFINE=1", !"OTHER_DEFINE=1"}
+!13 = !{!"F:\5Ctest\5Cbad.hlsl"}
+!14 = !{!"-E", !"main", !"-T", !"ps_6_0", !"/Zi", !"/Qstrip_reflect", !"/Qembed_debug", !"/D", !"", !"/D", !"OTHER_DEFINE=1", !"-D", !"OTHER_DEFINE=1"}
+!15 = !{i32 1, i32 0}
+!16 = !{i32 1, i32 5}
+!17 = !{!"ps", i32 6, i32 0}
+!18 = !{i32 1, void ()* @main, !19}
+!19 = !{!20}
+!20 = !{i32 0, !2, !2}
+!21 = !{[2 x i32] [i32 0, i32 1]}
+!22 = !{void ()* @main, !"main", !23, null, null}
+!23 = !{null, !24, null}
+!24 = !{!25}
+!25 = !{i32 0, !"SV_Target", i8 9, i8 16, !26, i8 0, i32 1, i8 1, i32 0, i8 0, !27}
+!26 = !{i32 0}
+!27 = !{i32 3, i32 1}
+!28 = !DILocation(line: 1, column: 28, scope: !4)
+
+#endif
+
+const unsigned char g_TestDxilWithEmptyDefine[] = {
+  0x44, 0x58, 0x42, 0x43, 0x3a, 0x12, 0x2e, 0xe6, 0x05, 0x8d, 0xbf, 0xab,
+  0xa6, 0xa9, 0x93, 0x31, 0x0d, 0xf0, 0x60, 0x11, 0x01, 0x00, 0x00, 0x00,
+  0x8e, 0x0b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+  0x50, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00,
+  0xf2, 0x00, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x36, 0x07, 0x00, 0x00,
+  0x52, 0x07, 0x00, 0x00, 0x53, 0x46, 0x49, 0x30, 0x08, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x53, 0x47, 0x31,
+  0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+  0x4f, 0x53, 0x47, 0x31, 0x32, 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, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x53, 0x56, 0x5f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x00, 0x50, 0x53,
+  0x56, 0x30, 0x50, 0x00, 0x00, 0x00, 0x24, 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, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x41, 0x10, 0x03, 0x00,
+  0x00, 0x00, 0x49, 0x4c, 0x44, 0x42, 0x08, 0x06, 0x00, 0x00, 0x60, 0x00,
+  0x00, 0x00, 0x82, 0x01, 0x00, 0x00, 0x44, 0x58, 0x49, 0x4c, 0x00, 0x01,
+  0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xf0, 0x05, 0x00, 0x00, 0x42, 0x43,
+  0xc0, 0xde, 0x21, 0x0c, 0x00, 0x00, 0x79, 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, 0x10,
+  0x45, 0x02, 0x42, 0x92, 0x0b, 0x42, 0x84, 0x10, 0x32, 0x14, 0x38, 0x08,
+  0x18, 0x4b, 0x0a, 0x32, 0x42, 0x88, 0x48, 0x90, 0x14, 0x20, 0x43, 0x46,
+  0x88, 0xa5, 0x00, 0x19, 0x32, 0x42, 0xe4, 0x48, 0x0e, 0x90, 0x11, 0x22,
+  0xc4, 0x50, 0x41, 0x51, 0x81, 0x8c, 0xe1, 0x83, 0xe5, 0x8a, 0x04, 0x21,
+  0x46, 0x06, 0x51, 0x18, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1b, 0x88,
+  0xe0, 0xff, 0xff, 0xff, 0xff, 0x07, 0x40, 0x02, 0x00, 0x00, 0x49, 0x18,
+  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x82, 0x00, 0x00, 0x89, 0x20,
+  0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x32, 0x22, 0x08, 0x09, 0x20, 0x64,
+  0x85, 0x04, 0x13, 0x22, 0xa4, 0x84, 0x04, 0x13, 0x22, 0xe3, 0x84, 0xa1,
+  0x90, 0x14, 0x12, 0x4c, 0x88, 0x8c, 0x0b, 0x84, 0x84, 0x4c, 0x10, 0x28,
+  0x23, 0x00, 0x25, 0x00, 0x8a, 0x39, 0x02, 0x30, 0x98, 0x23, 0x40, 0x66,
+  0x00, 0x8a, 0x01, 0x33, 0x43, 0x45, 0x36, 0x10, 0x90, 0x02, 0x03, 0x00,
+  0x00, 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, 0x64, 0x81,
+  0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x32, 0x1e, 0x98, 0x10, 0x19, 0x11,
+  0x4c, 0x90, 0x8c, 0x09, 0x26, 0x47, 0xc6, 0x04, 0x43, 0x9a, 0x22, 0x28,
+  0x84, 0x32, 0x28, 0x81, 0x11, 0x80, 0x52, 0x28, 0x06, 0xa2, 0x92, 0x28,
+  0x90, 0x11, 0x80, 0x12, 0xa0, 0x1c, 0x4b, 0x00, 0x02, 0x00, 0x79, 0x18,
+  0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x1a, 0x03, 0x4c, 0x90, 0x46, 0x02,
+  0x13, 0x44, 0xc8, 0x48, 0x87, 0x8b, 0xae, 0x6c, 0x8e, 0x8e, 0x4b, 0x2c,
+  0x8c, 0xcc, 0x05, 0x8d, 0x6d, 0x8e, 0x6d, 0xd0, 0x00, 0x04, 0x00, 0xd5,
+  0x80, 0x0c, 0x6f, 0x0c, 0x05, 0x4e, 0x2e, 0xcd, 0x2e, 0x8c, 0xae, 0x2c,
+  0x05, 0x24, 0xc6, 0xe5, 0xc6, 0x05, 0xc6, 0x25, 0x66, 0xe6, 0x06, 0x87,
+  0x06, 0x04, 0xa5, 0x2d, 0x2c, 0xcd, 0x8d, 0x05, 0xa4, 0x2c, 0x67, 0x66,
+  0x4c, 0xcc, 0x66, 0x86, 0x66, 0x26, 0x65, 0x03, 0x40, 0xa2, 0x2d, 0x2c,
+  0xcd, 0x8d, 0x85, 0x19, 0xdb, 0x5b, 0x18, 0xdd, 0x1e, 0x03, 0x20, 0x03,
+  0x03, 0x0c, 0xc0, 0x80, 0xd8, 0x10, 0x1c, 0x9b, 0x06, 0x00, 0x40, 0x26,
+  0x08, 0x02, 0xb0, 0x6a, 0x02, 0x84, 0x02, 0x10, 0x82, 0x04, 0x08, 0x02,
+  0x00, 0x00, 0x40, 0x04, 0x50, 0x00, 0x00, 0xd8, 0x10, 0x2c, 0xa3, 0x9e,
+  0x80, 0x10, 0x06, 0x00, 0x00, 0x80, 0x80, 0x00, 0x18, 0x00, 0x00, 0x26,
+  0x08, 0x83, 0xc0, 0x86, 0xe8, 0x2e, 0x4c, 0xce, 0x0c, 0xc4, 0xaa, 0x4c,
+  0x6e, 0x2e, 0xed, 0xcd, 0x6d, 0x82, 0x30, 0x0c, 0x1b, 0x06, 0xe7, 0x81,
+  0x28, 0x11, 0x95, 0x89, 0xd5, 0x9d, 0x81, 0x24, 0xb9, 0x99, 0xbd, 0x81,
+  0x58, 0x95, 0xc9, 0xcd, 0xa5, 0xbd, 0xb9, 0x4d, 0x10, 0x06, 0x62, 0xc3,
+  0xe0, 0x48, 0xd3, 0x86, 0x60, 0x20, 0x1a, 0x98, 0xb1, 0xbd, 0x85, 0xd1,
+  0x81, 0xb4, 0x85, 0xa5, 0xb9, 0xa1, 0xa4, 0x80, 0xe8, 0x80, 0x4c, 0x59,
+  0x7d, 0x51, 0x85, 0xc9, 0x9d, 0x95, 0xd1, 0x81, 0xec, 0x81, 0xc8, 0x95,
+  0xd1, 0xd5, 0xc9, 0xb9, 0x81, 0xc0, 0xec, 0x80, 0xf4, 0x35, 0x28, 0x6c,
+  0x10, 0x02, 0x8b, 0xce, 0x13, 0x15, 0x52, 0x91, 0xd4, 0x17, 0x51, 0x91,
+  0x51, 0x92, 0x53, 0x51, 0x4f, 0xcc, 0x06, 0x01, 0xc3, 0x36, 0x04, 0x01,
+  0x85, 0x96, 0x22, 0x0a, 0x2d, 0x54, 0x34, 0xe0, 0xe6, 0xbe, 0x6c, 0xbe,
+  0x60, 0x38, 0xbc, 0x68, 0xa5, 0xf1, 0x79, 0x89, 0x9a, 0xa3, 0x93, 0x4b,
+  0x83, 0xfb, 0x92, 0x2b, 0x33, 0x63, 0x2b, 0x1b, 0xa3, 0x63, 0xf3, 0x12,
+  0x55, 0xd6, 0x26, 0x56, 0x46, 0xf6, 0x45, 0x56, 0x26, 0x56, 0x77, 0x46,
+  0xe1, 0x85, 0x88, 0x00, 0x85, 0x16, 0xa2, 0x0d, 0xcd, 0x56, 0x70, 0x9d,
+  0xf7, 0x81, 0x41, 0x18, 0x88, 0x41, 0x18, 0x60, 0x63, 0x80, 0x4d, 0x10,
+  0x86, 0x62, 0x82, 0x30, 0x18, 0x1b, 0x84, 0x32, 0x30, 0x83, 0x09, 0xc2,
+  0x70, 0x6c, 0x10, 0xca, 0x00, 0x0d, 0x28, 0xc0, 0xcd, 0x4d, 0x10, 0x06,
+  0x64, 0xc3, 0xa0, 0x06, 0x6b, 0x60, 0x06, 0x1b, 0x06, 0x33, 0x20, 0x88,
+  0x0d, 0x41, 0x1b, 0x6c, 0x18, 0xca, 0x40, 0x71, 0x83, 0x09, 0x42, 0xd2,
+  0x6c, 0x08, 0xe0, 0x80, 0xc9, 0x94, 0xd5, 0x17, 0x55, 0x98, 0xdc, 0x59,
+  0x19, 0xdd, 0x04, 0x81, 0x48, 0x26, 0x08, 0x84, 0xb2, 0x21, 0x30, 0x83,
+  0x09, 0x02, 0xb1, 0x4c, 0x10, 0x08, 0x66, 0x83, 0x30, 0x95, 0xc1, 0x86,
+  0xc5, 0x0c, 0xe4, 0x60, 0x0e, 0xe8, 0xa0, 0x0e, 0xec, 0xa0, 0x0c, 0xee,
+  0xc0, 0x0c, 0xec, 0x00, 0x0f, 0x36, 0x04, 0x79, 0xb0, 0x61, 0x00, 0xf4,
+  0x00, 0xd8, 0x50, 0x28, 0xc5, 0x1e, 0x00, 0x40, 0x17, 0x36, 0x36, 0xbb,
+  0x36, 0x17, 0x32, 0xb1, 0x33, 0x97, 0xb1, 0xba, 0x29, 0x01, 0xd3, 0x88,
+  0x8d, 0xcd, 0xae, 0xcd, 0xa5, 0xed, 0x8d, 0xac, 0x8e, 0xad, 0xcc, 0xc5,
+  0x8c, 0x2d, 0xec, 0x6c, 0x6e, 0x8a, 0x00, 0x4d, 0x55, 0xd8, 0xd8, 0xec,
+  0xda, 0x5c, 0xd2, 0xc8, 0xca, 0xdc, 0xe8, 0xa6, 0x04, 0x54, 0x25, 0x32,
+  0x3c, 0x97, 0xb9, 0xb7, 0x3a, 0xb9, 0xb1, 0x32, 0x97, 0xb1, 0x37, 0x37,
+  0xba, 0x32, 0x37, 0xba, 0xb9, 0x29, 0x81, 0xd5, 0x88, 0x0c, 0xcf, 0x65,
+  0xee, 0xad, 0x4e, 0x6e, 0xac, 0xcc, 0x85, 0xac, 0xcc, 0x2c, 0xcd, 0xad,
+  0x6c, 0x6e, 0x4a, 0x80, 0xd5, 0x22, 0xc3, 0x73, 0x99, 0x7b, 0xab, 0x93,
+  0x1b, 0x2b, 0x73, 0x69, 0x0b, 0x4b, 0x73, 0x33, 0x4a, 0x63, 0x2b, 0x73,
+  0x0a, 0x6b, 0x2b, 0x9b, 0x12, 0x64, 0x75, 0xc8, 0xf0, 0x5c, 0xe6, 0xde,
+  0xea, 0xe4, 0xc6, 0xca, 0x5c, 0xc2, 0xe4, 0xce, 0xe6, 0xa6, 0x04, 0x63,
+  0x50, 0x85, 0x0c, 0xcf, 0xc5, 0xae, 0x4c, 0x6e, 0x2e, 0xed, 0xcd, 0x6d,
+  0x4a, 0x60, 0x06, 0x4d, 0xc8, 0xf0, 0x5c, 0xec, 0xc2, 0xd8, 0xec, 0xca,
+  0xe4, 0xa6, 0x04, 0x68, 0x50, 0x87, 0x0c, 0xcf, 0x65, 0x0e, 0x2d, 0x8c,
+  0xac, 0x4c, 0xae, 0xe9, 0x8d, 0xac, 0x8c, 0x6d, 0x4a, 0xb0, 0x06, 0x95,
+  0xc8, 0xf0, 0x5c, 0xe8, 0xf2, 0xe0, 0xca, 0x82, 0xdc, 0xdc, 0xde, 0xe8,
+  0xc2, 0xe8, 0xd2, 0xde, 0xdc, 0xe6, 0xa6, 0x04, 0x6e, 0x50, 0x87, 0x0c,
+  0xcf, 0xc5, 0x2e, 0xad, 0xec, 0x2e, 0x89, 0x6c, 0x8a, 0x2e, 0x8c, 0xae,
+  0x6c, 0x4a, 0x00, 0x07, 0x75, 0xc8, 0xf0, 0x5c, 0xca, 0xdc, 0xe8, 0xe4,
+  0xf2, 0xa0, 0xde, 0xd2, 0xdc, 0xe8, 0xe6, 0xa6, 0x04, 0x7b, 0x00, 0x00,
+  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, 0x0c, 0xc4, 0x21, 0x07,
+  0x7c, 0x70, 0x03, 0x7a, 0x28, 0x87, 0x76, 0x80, 0x87, 0x19, 0xd1, 0x43,
+  0x0e, 0xf8, 0xe0, 0x06, 0xe4, 0x20, 0x0e, 0xe7, 0xe0, 0x06, 0xf6, 0x10,
+  0x0e, 0xf2, 0xc0, 0x0e, 0xe1, 0x90, 0x0f, 0xef, 0x50, 0x0f, 0xf4, 0x00,
+  0x00, 0x00, 0x71, 0x20, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x16, 0x50,
+  0x0d, 0x97, 0xef, 0x3c, 0xbe, 0x34, 0x39, 0x11, 0x81, 0x52, 0xd3, 0x43,
+  0x4d, 0x7e, 0x71, 0xdb, 0x06, 0x40, 0x30, 0x00, 0xd2, 0x00, 0x61, 0x20,
+  0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x04, 0x41, 0x2c, 0x10, 0x00,
+  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x54, 0x23, 0x00, 0x00, 0x23, 0x06,
+  0x09, 0x00, 0x82, 0x60, 0x60, 0x38, 0x48, 0x92, 0x10, 0xc1, 0x8c, 0x01,
+  0x11, 0x70, 0x0b, 0x80, 0x13, 0x06, 0x40, 0x38, 0x10, 0x00, 0x02, 0x00,
+  0x00, 0x00, 0x07, 0x50, 0x10, 0xcd, 0x14, 0x61, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x4c, 0x44, 0x4e, 0x2c, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x32, 0x31, 0x63, 0x31, 0x31, 0x66,
+  0x32, 0x30, 0x32, 0x39, 0x64, 0x38, 0x37, 0x30, 0x63, 0x30, 0x34, 0x64,
+  0x65, 0x64, 0x62, 0x33, 0x66, 0x65, 0x36, 0x62, 0x34, 0x36, 0x62, 0x66,
+  0x32, 0x37, 0x2e, 0x70, 0x64, 0x62, 0x00, 0x00, 0x00, 0x00, 0x48, 0x41,
+  0x53, 0x48, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0xc1,
+  0x1f, 0x20, 0x29, 0xd8, 0x70, 0xc0, 0x4d, 0xed, 0xb3, 0xfe, 0x6b, 0x46,
+  0xbf, 0x27, 0x44, 0x58, 0x49, 0x4c, 0x34, 0x04, 0x00, 0x00, 0x60, 0x00,
+  0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x44, 0x58, 0x49, 0x4c, 0x00, 0x01,
+  0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00, 0x42, 0x43,
+  0xc0, 0xde, 0x21, 0x0c, 0x00, 0x00, 0x04, 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, 0x10,
+  0x45, 0x02, 0x42, 0x92, 0x0b, 0x42, 0x84, 0x10, 0x32, 0x14, 0x38, 0x08,
+  0x18, 0x4b, 0x0a, 0x32, 0x42, 0x88, 0x48, 0x90, 0x14, 0x20, 0x43, 0x46,
+  0x88, 0xa5, 0x00, 0x19, 0x32, 0x42, 0xe4, 0x48, 0x0e, 0x90, 0x11, 0x22,
+  0xc4, 0x50, 0x41, 0x51, 0x81, 0x8c, 0xe1, 0x83, 0xe5, 0x8a, 0x04, 0x21,
+  0x46, 0x06, 0x51, 0x18, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1b, 0x88,
+  0xe0, 0xff, 0xff, 0xff, 0xff, 0x07, 0x40, 0x02, 0x00, 0x00, 0x49, 0x18,
+  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x82, 0x00, 0x00, 0x89, 0x20,
+  0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x32, 0x22, 0x08, 0x09, 0x20, 0x64,
+  0x85, 0x04, 0x13, 0x22, 0xa4, 0x84, 0x04, 0x13, 0x22, 0xe3, 0x84, 0xa1,
+  0x90, 0x14, 0x12, 0x4c, 0x88, 0x8c, 0x0b, 0x84, 0x84, 0x4c, 0x10, 0x28,
+  0x23, 0x00, 0x25, 0x00, 0x8a, 0x39, 0x02, 0x30, 0x98, 0x23, 0x40, 0x66,
+  0x00, 0x8a, 0x01, 0x33, 0x43, 0x45, 0x36, 0x10, 0x90, 0x02, 0x03, 0x00,
+  0x00, 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, 0x64, 0x81,
+  0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x32, 0x1e, 0x98, 0x10, 0x19, 0x11,
+  0x4c, 0x90, 0x8c, 0x09, 0x26, 0x47, 0xc6, 0x04, 0x43, 0x9a, 0x12, 0x18,
+  0x01, 0x28, 0x85, 0x62, 0x28, 0x03, 0xa2, 0x92, 0x28, 0x90, 0x11, 0x80,
+  0x12, 0xa0, 0x1c, 0x4b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x79, 0x18,
+  0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x1a, 0x03, 0x4c, 0x90, 0x46, 0x02,
+  0x13, 0x44, 0x35, 0x20, 0xc3, 0x1b, 0x43, 0x81, 0x93, 0x4b, 0xb3, 0x0b,
+  0xa3, 0x2b, 0x4b, 0x01, 0x89, 0x71, 0xb9, 0x71, 0x81, 0x71, 0x89, 0x99,
+  0xb9, 0xc1, 0xa1, 0x01, 0x41, 0x69, 0x0b, 0x4b, 0x73, 0x63, 0x01, 0x29,
+  0xcb, 0x99, 0x19, 0x13, 0xb3, 0x99, 0xa1, 0x99, 0x49, 0xd9, 0x10, 0x04,
+  0x13, 0x84, 0x41, 0x98, 0x20, 0x0c, 0xc3, 0x06, 0x61, 0x20, 0x26, 0x08,
+  0x03, 0xb1, 0x41, 0x18, 0x0c, 0x0a, 0x70, 0x73, 0x13, 0x84, 0xa1, 0xd8,
+  0x30, 0x20, 0x09, 0x31, 0x41, 0x48, 0x96, 0x0d, 0xc1, 0x32, 0x41, 0x10,
+  0x00, 0x12, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0xa6, 0xac, 0xbe, 0xa8, 0xc2,
+  0xe4, 0xce, 0xca, 0xe8, 0x26, 0x08, 0xc4, 0x31, 0x41, 0x20, 0x90, 0x0d,
+  0x01, 0x31, 0x41, 0x20, 0x92, 0x09, 0x02, 0xa1, 0x4c, 0x10, 0x06, 0x63,
+  0x83, 0x50, 0x0d, 0x1b, 0x16, 0xe2, 0x81, 0x22, 0x69, 0x1a, 0x28, 0x62,
+  0xb2, 0x36, 0x04, 0xd7, 0x86, 0x01, 0xc0, 0x80, 0x0d, 0x45, 0xe3, 0x64,
+  0x00, 0x50, 0x85, 0x8d, 0xcd, 0xae, 0xcd, 0x25, 0x8d, 0xac, 0xcc, 0x8d,
+  0x6e, 0x4a, 0x10, 0x54, 0x21, 0xc3, 0x73, 0xb1, 0x2b, 0x93, 0x9b, 0x4b,
+  0x7b, 0x73, 0x9b, 0x12, 0x10, 0x4d, 0xc8, 0xf0, 0x5c, 0xec, 0xc2, 0xd8,
+  0xec, 0xca, 0xe4, 0xa6, 0x04, 0x46, 0x1d, 0x32, 0x3c, 0x97, 0x39, 0xb4,
+  0x30, 0xb2, 0x32, 0xb9, 0xa6, 0x37, 0xb2, 0x32, 0xb6, 0x29, 0x41, 0x52,
+  0x87, 0x0c, 0xcf, 0xc5, 0x2e, 0xad, 0xec, 0x2e, 0x89, 0x6c, 0x8a, 0x2e,
+  0x8c, 0xae, 0x6c, 0x4a, 0xb0, 0xd4, 0x21, 0xc3, 0x73, 0x29, 0x73, 0xa3,
+  0x93, 0xcb, 0x83, 0x7a, 0x4b, 0x73, 0xa3, 0x9b, 0x9b, 0x12, 0x64, 0x00,
+  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, 0x0c, 0xc4, 0x21, 0x07,
+  0x7c, 0x70, 0x03, 0x7a, 0x28, 0x87, 0x76, 0x80, 0x87, 0x19, 0xd1, 0x43,
+  0x0e, 0xf8, 0xe0, 0x06, 0xe4, 0x20, 0x0e, 0xe7, 0xe0, 0x06, 0xf6, 0x10,
+  0x0e, 0xf2, 0xc0, 0x0e, 0xe1, 0x90, 0x0f, 0xef, 0x50, 0x0f, 0xf4, 0x00,
+  0x00, 0x00, 0x71, 0x20, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x16, 0x50,
+  0x0d, 0x97, 0xef, 0x3c, 0xbe, 0x34, 0x39, 0x11, 0x81, 0x52, 0xd3, 0x43,
+  0x4d, 0x7e, 0x71, 0xdb, 0x06, 0x40, 0x30, 0x00, 0xd2, 0x00, 0x61, 0x20,
+  0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x13, 0x04, 0x41, 0x2c, 0x10, 0x00,
+  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x54, 0x23, 0x00, 0x00, 0x23, 0x06,
+  0x09, 0x00, 0x82, 0x60, 0x60, 0x30, 0x89, 0xa2, 0x10, 0x01, 0x02, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};