arm.v4a works: ELF layout for page holes

modified:   p_lx_elf.cpp
	modified:   stub/src/i386-linux.elf-main.c
	modified:   stub/src/arm.v4a-linux.elf-entry.S
	modified:   stub/src/arm.v4a-linux.elf-fold.S

	modified:   stub/arm.v4a-linux.elf-entry.h
	modified:   stub/arm.v4a-linux.elf-fold.h
	modified:   stub/arm.v5a-linux.elf-entry.h
	modified:   stub/arm.v5a-linux.elf-fold.h
	modified:   stub/armeb.v4a-linux.elf-entry.h
	modified:   stub/armeb.v4a-linux.elf-fold.h
	modified:   stub/i386-linux.elf-fold.h
	modified:   stub/mips.r3000-linux.elf-fold.h
	modified:   stub/mipsel.r3000-linux.elf-fold.h
	modified:   stub/powerpc-linux.elf-fold.h
	modified:   stub/tmp/arm.v4a-linux.elf-entry.bin.dump
	modified:   stub/tmp/arm.v4a-linux.elf-fold.map
	modified:   stub/tmp/arm.v5a-linux.elf-entry.bin.dump
	modified:   stub/tmp/arm.v5a-linux.elf-fold.map
	modified:   stub/tmp/armeb.v4a-linux.elf-entry.bin.dump
	modified:   stub/tmp/armeb.v4a-linux.elf-fold.map
	modified:   stub/tmp/i386-linux.elf-fold.map
	modified:   stub/tmp/mips.r3000-linux.elf-fold.map
	modified:   stub/tmp/mipsel.r3000-linux.elf-fold.map
	modified:   stub/tmp/powerpc-linux.elf-fold.map
This commit is contained in:
John Reiser 2020-05-14 15:10:40 -07:00 committed by Markus F.X.J. Oberhumer
parent b463f24eda
commit 80c27e0822
24 changed files with 3003 additions and 2988 deletions

View File

@ -412,23 +412,18 @@ off_t PackLinuxElf32::pack3(OutputFile *fo, Filter &ft)
set_te32(&elfout.phdr[C_TEXT].p_filesz, sz_pack2 + lsize);
set_te32(&elfout.phdr[C_TEXT].p_memsz, sz_pack2 + lsize);
if (0==xct_off) { // not shared library; adjust PT_LOAD
// .p_align can be big for segments, but Linux uses 4KiB pages.
// This allows [vvar], [vdso], etc to sneak into the gap
// between end_text and data, which we wish to prevent
// because the expanded program will use that space.
// So: pretend 4KiB pages.
unsigned pm = (Elf64_Ehdr::EM_PPC64 == e_machine)
? page_mask // reducing to 4KiB DOES NOT WORK ??
: ((~(unsigned)0)<<12);
pm = page_mask; // Revert until consequences can be analyzed
v_hole = pm & (~pm + v_hole + get_te32(&elfout.phdr[C_TEXT].p_vaddr));
set_te32(&elfout.phdr[C_BASE].p_vaddr, v_hole);
set_te32(&elfout.phdr[C_BASE].p_align, ((unsigned)0) - pm);
if (0==xct_off) { // not shared library
set_te32(&elfout.phdr[C_BASE].p_align, 0u - page_mask);
elfout.phdr[C_BASE].p_paddr = elfout.phdr[C_BASE].p_vaddr;
elfout.phdr[C_BASE].p_offset = 0;
set_te32(&elfout.phdr[C_BASE].p_memsz, getbrk(phdri, e_phnum) - v_hole);
unsigned vbase = get_te32(&elfout.phdr[C_BASE].p_vaddr);
unsigned abrk = getbrk(phdri, e_phnum);
set_te32(&elfout.phdr[C_BASE].p_filesz, 0x1000); // Linux kernel SIGSEGV if (0==.p_filesz)
set_te32(&elfout.phdr[C_BASE].p_memsz, abrk - vbase);
set_te32(&elfout.phdr[C_BASE].p_flags, Elf32_Phdr::PF_W|Elf32_Phdr::PF_R);
set_te32(&elfout.phdr[C_TEXT].p_vaddr, abrk= (page_mask & (~page_mask + abrk)));
elfout.phdr[C_TEXT].p_paddr = elfout.phdr[C_TEXT].p_vaddr;
set_te32(&elfout.ehdr.e_entry, abrk + get_te32(&elfout.ehdr.e_entry) - vbase);
}
if (0!=xct_off) { // shared library
unsigned word = (Elf32_Ehdr::EM_ARM==e_machine) + load_va + sz_pack2; // Thumb mode
@ -2725,15 +2720,20 @@ PackLinuxElf32::generateElfHdr(
{
cprElfHdr2 *const h2 = (cprElfHdr2 *)(void *)&elfout;
cprElfHdr3 *const h3 = (cprElfHdr3 *)(void *)&elfout;
memcpy(h3, proto, sizeof(*h3)); // reads beyond, but OK
h3->ehdr = ((cprElfHdr3 const *)proto)->ehdr;
h3->phdr[C_BASE] = ((cprElfHdr3 const *)proto)->phdr[1]; // .data; .p_align
h3->phdr[C_TEXT] = ((cprElfHdr3 const *)proto)->phdr[0]; // .text
memset(&h3->linfo, 0, sizeof(h3->linfo));
h3->ehdr.e_type = ehdri.e_type; // ET_EXEC vs ET_DYN (gcc -pie -fPIC)
h3->ehdr.e_ident[Elf32_Ehdr::EI_OSABI] = ei_osabi;
unsigned phnum_o = get_te16(&h2->ehdr.e_phnum);
if (Elf32_Ehdr::EM_MIPS==e_machine) { // MIPS R3000 FIXME
h3->ehdr.e_ident[Elf32_Ehdr::EI_OSABI] = Elf32_Ehdr::ELFOSABI_NONE;
h3->ehdr.e_flags = ehdri.e_flags;
}
unsigned phnum_o = get_te16(&h2->ehdr.e_phnum);
assert(get_te32(&h2->ehdr.e_phoff) == sizeof(Elf32_Ehdr));
h2->ehdr.e_shoff = 0;
assert(get_te16(&h2->ehdr.e_ehsize) == sizeof(Elf32_Ehdr));
@ -2768,26 +2768,21 @@ PackLinuxElf32::generateElfHdr(
if (brka) {
// linux-2.6.14 binfmt_elf.c: SIGKILL if (0==.p_memsz) on a page boundary
upx_uint32_t lo_va_user = ~0u; // infinity
upx_uint32_t memsz(0);
for (int j= e_phnum; --j>=0; ) {
if (PT_LOAD32 == get_te32(&phdri[j].p_type)) {
upx_uint32_t const vaddr = get_te32(&phdri[j].p_vaddr);
lo_va_user = umin(lo_va_user, vaddr);
if (vaddr == lo_va_user) {
memsz = get_te32(&phdri[j].p_memsz);
}
}
}
set_te32(&h2->phdr[C_TEXT].p_paddr, lo_va_user);
set_te32(&h2->phdr[C_TEXT].p_vaddr, lo_va_user);
unsigned const brkb = page_mask & (~page_mask +
get_te32(&h2->phdr[C_TEXT].p_vaddr) + memsz);
set_te32( &h2->phdr[C_BASE].p_vaddr, lo_va_user);
h2->phdr[C_BASE].p_paddr = h2->phdr[C_BASE].p_vaddr;
h2->phdr[C_TEXT].p_vaddr = h2->phdr[C_BASE].p_vaddr;
h2->phdr[C_TEXT].p_paddr = h2->phdr[C_BASE].p_vaddr;
set_te32(&h2->phdr[C_BASE].p_type, PT_LOAD32); // be sure
h2->phdr[C_BASE].p_offset = 0;
set_te32(&h2->phdr[C_BASE].p_vaddr, brkb);
set_te32(&h2->phdr[C_BASE].p_paddr, brkb);
h2->phdr[C_BASE].p_filesz = 0;
set_te32(&h2->phdr[C_BASE].p_memsz, brka - brkb);
// .p_memsz = brka; temporary until sz_pack2
set_te32(&h2->phdr[C_BASE].p_memsz, brka);
set_te32(&h2->phdr[C_BASE].p_flags, Elf32_Phdr::PF_R | Elf32_Phdr::PF_W);
}
if (ph.format==getFormat()) {
@ -3051,8 +3046,10 @@ PackLinuxElf64::generateElfHdr(
lo_va_user = umin64(lo_va_user, vaddr);
}
}
set_te64(&h2->phdr[C_TEXT].p_paddr, lo_va_user);
set_te64(&h2->phdr[C_TEXT].p_vaddr, lo_va_user);
set_te64( &h2->phdr[C_BASE].p_vaddr, lo_va_user);
h2->phdr[C_BASE].p_paddr = h2->phdr[C_BASE].p_vaddr;
h2->phdr[C_TEXT].p_vaddr = h2->phdr[C_BASE].p_vaddr;
h2->phdr[C_TEXT].p_paddr = h2->phdr[C_BASE].p_vaddr;
set_te32(&h2->phdr[C_BASE].p_type, PT_LOAD64); // be sure
h2->phdr[C_BASE].p_offset = 0;
h2->phdr[C_BASE].p_filesz = 0;

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/* arm.v4a-linux.elf-fold.h
created from arm.v4a-linux.elf-fold.bin, 2756 (0xac4) bytes
created from arm.v4a-linux.elf-fold.bin, 2836 (0xb14) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_ARM_V4A_LINUX_ELF_FOLD_SIZE 2756
#define STUB_ARM_V4A_LINUX_ELF_FOLD_ADLER32 0x8c6d7847
#define STUB_ARM_V4A_LINUX_ELF_FOLD_CRC32 0x5883eed1
#define STUB_ARM_V4A_LINUX_ELF_FOLD_SIZE 2836
#define STUB_ARM_V4A_LINUX_ELF_FOLD_ADLER32 0x8ff7991a
#define STUB_ARM_V4A_LINUX_ELF_FOLD_CRC32 0x17767e70
unsigned char stub_arm_v4a_linux_elf_fold[2756] = {
unsigned char stub_arm_v4a_linux_elf_fold[2836] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 97, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 2, 0, 40, 0, 1, 0, 0, 0,128,128, 0, 0, 52, 0, 0, 0,
/* 0x0020 */ 0, 0, 0, 0, 2, 0, 0, 0, 52, 0, 32, 0, 2, 0, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0,
/* 0x0040 */ 0,128, 0, 0,196, 10, 0, 0,196, 10, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0,128, 0, 0, 1, 0, 0, 0,196, 10, 0, 0, 0, 0, 0, 0,
/* 0x0040 */ 0,128, 0, 0, 20, 11, 0, 0, 20, 11, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0,128, 0, 0, 1, 0, 0, 0, 20, 11, 0, 0, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 34, 0, 0, 0,192, 31,189,232, 13, 16,160,225, 1,218, 77,226,
@ -50,7 +50,7 @@ unsigned char stub_arm_v4a_linux_elf_fold[2756] = {
/* 0x00b0 */ 4, 48,145,228, 0, 0, 83,227, 4, 48,128,228,251,255,255, 26,
/* 0x00c0 */ 1, 80,160,225, 12, 0,177,232, 0, 0, 82,227, 12, 0,160,232,
/* 0x00d0 */ 251,255,255, 26, 1, 96,160,225, 0,144,160,225, 1, 42,160,227,
/* 0x00e0 */ 0, 16,160,225, 14, 0,160,225, 1, 32, 66,226,115, 0, 0,235,
/* 0x00e0 */ 0, 16,160,225, 14, 0,160,225, 1, 32, 66,226,120, 0, 0,235,
/* 0x00f0 */ 1, 10,112,227, 14, 16,160, 33, 14, 0,160, 35, 0, 32,129,224,
/* 0x0100 */ 6, 0,160,225, 0, 48,160,227, 1, 48, 96,229, 1, 48,114,229,
/* 0x0110 */ 1, 48, 96,229, 2, 0, 81,225,251,255,255, 26, 61, 48,160,227,
@ -60,153 +60,158 @@ unsigned char stub_arm_v4a_linux_elf_fold[2756] = {
/* 0x0150 */ 6, 48, 64,224, 5, 48,131,224, 9, 16,160,225, 24, 80,157,229,
/* 0x0160 */ 24, 0,141,229, 4, 32, 49,229, 13, 0, 81,225, 4, 32, 32,229,
/* 0x0170 */ 251,255,255, 26, 0,208,160,225, 16, 12,189,232, 10,220, 77,226,
/* 0x0180 */ 4,144,154,229, 13,128,160,225, 0,112,154,229,156, 96,143,226,
/* 0x0190 */ 12,144,137,226,248, 15, 45,233, 15, 0,189,232,251, 1, 0,235,
/* 0x01a0 */ 20,208,141,226, 10,220,141,226, 16, 0,141,229, 4, 64,157,228,
/* 0x01b0 */ 0, 80,160,227, 48, 0, 45,233, 2, 48,160,227, 1, 32,160,227,
/* 0x01c0 */ 1, 26,160,227, 0, 0,160,227, 69, 0, 0,235, 3, 0,189,232,
/* 0x01d0 */ 50, 0, 0,235, 7, 64,189,232, 0, 48,160,227, 0, 64,160,227,
/* 0x01e0 */ 0, 80,160,227, 0, 96,160,227, 0,128,160,227, 0,144,160,227,
/* 0x01f0 */ 0,160,160,227, 0,176,160,227, 1,199, 77,226, 32,112, 29,228,
/* 0x0200 */ 0,112,141,229, 0,112,157,229, 13, 0, 92,225,250,255,255, 58,
/* 0x0210 */ 1,215,141,226, 0,112,160,227, 0,192,160,227, 4,240, 18,229,
/* 0x0220 */ 47,112,114,111, 99, 47,115,101,108,102, 47,101,120,101, 0, 0,
/* 0x0230 */ 255, 48, 3,226, 80, 0, 83,227, 14,240,160, 17, 33, 17,176,225,
/* 0x0240 */ 0, 0, 80, 19, 14,240,160, 1, 1, 16, 65,226, 1, 33,144,231,
/* 0x0250 */ 15, 52, 2,226, 11, 4, 83,227, 4, 0, 0, 26,255, 52, 2,226,
/* 0x0260 */ 1, 32, 66,224,255, 36,194,227, 3, 32,130,225, 1, 33,128,231,
/* 0x0270 */ 0, 0, 81,227,243,255,255, 26, 14,240,160,225,240, 1,240,231,
/* 0x0280 */ 14,240,160,225, 1, 0,144,239, 3, 0,144,239, 14,240,160,225,
/* 0x0290 */ 4, 0,144,239, 14,240,160,225, 5, 0,144,239, 14,240,160,225,
/* 0x02a0 */ 6, 0,144,239, 14,240,160,225, 10, 0,144,239, 14,240,160,225,
/* 0x02b0 */ 20, 0,144,239, 14,240,160,225, 45, 0,144,239, 14,240,160,225,
/* 0x02c0 */ 85, 0,144,239, 14,240,160,225, 91, 0,144,239, 14,240,160,225,
/* 0x02d0 */ 125, 0,144,239, 14,240,160,225, 0, 32,160,227, 2, 0,159,239,
/* 0x02e0 */ 14,240,160,225, 48, 64, 45,233, 16, 80,157,229, 12, 64,157,229,
/* 0x02f0 */ 37, 86,160,225,192, 0,144,239, 48,128,189,232, 60, 0, 31,229,
/* 0x0300 */ 14,240,160,225, 48, 64, 45,233,144, 66, 31,229, 0, 80,160,227,
/* 0x0310 */ 4, 48,131,225, 0, 64,224,227,245,255,255,234, 0,192,160,225,
/* 0x0320 */ 1, 16, 65,224, 0, 32,160,225,128, 1,144,224,129, 17,161,224,
/* 0x0330 */ 162, 30,129,224, 0, 32,160,225, 0, 2,144,224, 1, 18,161,224,
/* 0x0340 */ 34, 30,129,224, 0, 32,160,225, 0, 4,144,224, 1, 20,161,224,
/* 0x0350 */ 34, 28,129,224, 0, 32,160,225, 0, 8,144,224, 1, 24,161,224,
/* 0x0360 */ 34, 24,129,224,140, 15, 80,224,172, 16,193,224, 12, 0,144,224,
/* 0x0370 */ 0, 0,161,226, 14,240,160,225, 0, 0, 80,227, 14,240,160, 1,
/* 0x0380 */ 0, 48,144,229, 1, 0, 83,225, 8, 0,128, 18,251,255,255, 26,
/* 0x0390 */ 4, 32,128,229, 14,240,160,225, 0, 0,159,229, 14,240,160,225,
/* 0x03a0 */ 0,240,255,255, 0, 48,144,229, 2, 0, 83,225, 4, 48,144,229,
/* 0x03b0 */ 4,224, 45,229, 3,192,160, 33, 2,224,160,225, 2, 32,160, 33,
/* 0x03c0 */ 3, 0, 0, 42,127, 0,160,227,173,255,255,235, 1, 48, 92,229,
/* 0x03d0 */ 1, 48, 65,229, 1, 32, 66,226, 1, 0,114,227, 1,192,140,226,
/* 0x03e0 */ 1, 16,129,226,248,255,255, 26, 4, 32,144,229, 0, 48,144,229,
/* 0x03f0 */ 14, 32,130,224, 3, 48,110,224, 0, 48,128,229, 4, 32,128,229,
/* 0x0400 */ 4,240,157,228,240, 64, 45,233, 0, 80,160,225, 20,208, 77,226,
/* 0x0410 */ 1, 64,160,225, 2,112,160,225, 3, 96,160,225, 68, 0, 0,234,
/* 0x0420 */ 4, 16,141,226, 5, 0,160,225, 12, 32,160,227,220,255,255,235,
/* 0x0430 */ 4,224,157,229, 0, 0, 94,227, 8, 16,157,229, 6, 0, 0, 26,
/* 0x0440 */ 0, 49,159,229, 3, 0, 81,225, 5, 0, 0, 26, 0, 48,149,229,
/* 0x0450 */ 0, 0, 83,227, 2, 0, 0, 26, 56, 0, 0,234, 0, 0, 81,227,
/* 0x0460 */ 1, 0, 0, 26,127, 0,160,227,133,255,255,235, 14, 0, 81,225,
/* 0x0470 */ 251,255,255,138, 0, 48,148,229, 3, 0, 94,225,248,255,255,138,
/* 0x0480 */ 14, 0, 81,225, 33, 0, 0, 42, 12,192,221,229, 4, 0,149,229,
/* 0x0490 */ 4, 32,148,229, 16, 48,141,226, 16,224,141,229, 0,192,141,229,
/* 0x04a0 */ 15,224,160,225, 7,240,160,225, 0, 0, 80,227,236,255,255, 26,
/* 0x04b0 */ 16, 16,157,229, 4, 48,157,229, 3, 0, 81,225,232,255,255, 26,
/* 0x04c0 */ 13, 32,221,229, 0, 0, 82,227, 0, 0, 86, 19, 9, 0, 0, 10,
/* 0x04d0 */ 2, 12, 81,227, 2, 0, 0,138, 0, 48,148,229, 1, 0, 83,225,
/* 0x04e0 */ 4, 0, 0, 26, 2, 48,160,225, 4, 0,148,229, 14, 32,221,229,
/* 0x04f0 */ 15,224,160,225, 6,240,160,225, 8, 48,157,229, 6, 0,149,232,
/* 0x0500 */ 3, 32,130,224, 1, 16, 99,224, 6, 0,133,232, 3, 0, 0,234,
/* 0x0510 */ 1, 32,160,225, 5, 0,160,225, 4, 16,148,229,160,255,255,235,
/* 0x0520 */ 4, 48,157,229, 6, 0,148,232, 3, 32,130,224, 1, 16, 99,224,
/* 0x0530 */ 6, 0,132,232, 0, 48,148,229, 0, 0, 83,227,183,255,255, 26,
/* 0x0540 */ 20,208,141,226,240,128,189,232, 85, 80, 88, 33,240, 79, 45,233,
/* 0x0550 */ 1,128,160,225,176,193,216,225, 28, 16,145,229,188,226,216,225,
/* 0x0560 */ 56,208, 77,226, 2, 0, 92,227, 1, 80,136,224, 16, 0,141,229,
/* 0x0570 */ 16,192,160, 3, 0,192,160, 19, 1,224, 78,226, 5, 16,160,225,
/* 0x0580 */ 0, 64,224,227, 0, 0,160,227, 12, 32,141,229, 8, 48,141,229,
/* 0x0590 */ 13, 0, 0,234, 0, 48,145,229, 1, 0, 83,227, 8, 0, 0, 26,
/* 0x05a0 */ 20, 48,145,229, 0, 0, 83,227, 5, 0, 0, 10, 8, 32,145,229,
/* 0x05b0 */ 2, 48,131,224, 3, 0, 80,225, 3, 0,160, 49, 2, 0, 84,225,
/* 0x05c0 */ 2, 64,160, 33, 32, 16,129,226, 1,224, 78,226, 0, 0, 94,227,
/* 0x05d0 */ 239,255,255,170,255, 78,196,227, 15, 64,196,227, 0, 48,100,224,
/* 0x05e0 */ 255, 62,131,226, 15, 48,131,226,255, 62,195,227, 15, 48,195,227,
/* 0x05f0 */ 40, 48,141,229, 4, 0,160,225, 12, 48,160,225, 40, 16,157,229,
/* 0x0600 */ 0, 32,160,227, 62,255,255,235, 52, 48,160,227, 0,144,100,224,
/* 0x0610 */ 153, 3, 3,224, 28, 0,141,229, 32, 80,133,226, 0, 0,160,227,
/* 0x0620 */ 36, 48,141,229, 24, 0,141,229,171, 0, 0,234, 12, 16,157,229,
/* 0x0630 */ 0, 0, 81,227, 8, 0, 0, 10, 32, 48, 21,229, 6, 0, 83,227,
/* 0x0640 */ 5, 0, 0, 26, 24, 32, 21,229, 8, 0,157,229, 2, 32,137,224,
/* 0x0650 */ 3, 16,160,227, 71,255,255,235,155, 0, 0,234, 32, 48, 21,229,
/* 0x0660 */ 1, 0, 83,227,152, 0, 0, 26, 12, 48, 21,229, 0, 0, 83,227,
/* 0x0670 */ 149, 0, 0, 10, 12, 32,157,229, 0, 0, 82,227, 17, 0, 0, 10,
/* 0x0680 */ 28, 48, 21,229, 0, 0, 83,227, 14, 0, 0, 26, 28, 48,152,229,
/* 0x0690 */ 24, 32, 21,229, 3, 32,130,224, 2, 32,137,224, 3, 16,160,227,
/* 0x06a0 */ 8, 0,157,229, 51,255,255,235, 8, 0,157,229, 5, 16,160,227,
/* 0x06b0 */ 188, 34,216,225, 47,255,255,235, 8, 0,157,229, 4, 16,160,227,
/* 0x06c0 */ 186, 34,216,225, 43,255,255,235, 8, 48, 21,229,180, 34,159,229,
/* 0x06d0 */ 7, 48, 3,226, 3, 49,160,225, 50, 67,160,225, 24, 48, 21,229,
/* 0x06e0 */ 3, 48,137,224, 20, 48,141,229, 20,192,157,229, 12, 0,157,229,
/* 0x06f0 */ 16, 48, 21,229, 12, 42,160,225, 12, 16, 21,229, 34, 42,160,225,
/* 0x0700 */ 0, 0, 80,227, 48, 48,141,229, 52,192,141,229, 2,160,131,224,
/* 0x0710 */ 7,176, 4,226, 44, 16,141,229, 12, 96, 98,224, 14, 0, 0, 10,
/* 0x0720 */ 6, 0,160,225, 10, 16,160,225, 3, 32,160,227, 16, 48,160,227,
/* 0x0730 */ 243,254,255,235, 0, 0, 86,225, 82, 0, 0, 26, 96, 32,157,229,
/* 0x0740 */ 4, 48, 20,226, 2, 48,160, 17, 12, 0,157,229, 48, 16,141,226,
/* 0x0750 */ 16, 32,157,229, 42,255,255,235, 11, 0, 0,234, 28,192, 21,229,
/* 0x0760 */ 12,192, 98,224, 4,192,141,229, 16,192,157,229, 6, 0,160,225,
/* 0x0770 */ 10, 16,160,225, 11, 32,160,225, 18, 48,160,227, 0,192,141,229,
/* 0x0780 */ 215,254,255,235, 0, 0, 86,225, 62, 0, 0, 26, 0, 48,106,226,
/* 0x0790 */ 3,122,160,225, 2, 0, 27,227, 39,122,160,225, 7, 0, 0, 10,
/* 0x07a0 */ 0, 0, 87,227, 5, 0, 0, 10, 10, 16,134,224, 7, 32,160,225,
/* 0x07b0 */ 0, 48,160,227, 1, 32, 82,226, 1, 48,193,228,251,255,255, 26,
/* 0x07c0 */ 12, 0,157,229, 0, 0, 80,227, 48, 0, 0, 10,202,254,255,235,
/* 0x07d0 */ 32, 48, 21,229, 1, 0, 83,227, 32, 0,141,229, 35, 0, 0, 26,
/* 0x07e0 */ 8, 48, 21,229, 1, 0, 19,227, 32, 0, 0, 10, 12, 32, 21,229,
/* 0x07f0 */ 16, 48, 21,229, 3, 0, 82,225, 24, 16, 21,229, 74, 0, 0, 26,
/* 0x0800 */ 1, 48,130,224, 3, 48,131,226, 3, 48,137,224, 3, 64,195,227,
/* 0x0810 */ 0, 48,100,226, 3, 58,160,225, 35, 58,160,225, 7, 0, 83,227,
/* 0x0820 */ 65, 0, 0,154, 10, 0, 0,234, 0,224,160,227, 3, 32,160,227,
/* 0x0830 */ 0,192,224,227, 14, 0,160,225, 1, 26,160,227, 34, 48,160,227,
/* 0x0840 */ 0, 80,141,232,166,254,255,235, 0, 32, 80,226, 61, 0, 0, 26,
/* 0x0850 */ 6, 0, 0,234, 32, 16,157,229, 44, 49,159,229, 10, 0,132,232,
/* 0x0860 */ 4, 0,160,225, 8, 16,132,226,154,254,255,235, 64, 0, 0,234,
/* 0x0870 */ 6, 0,160,225, 10, 16,160,225, 11, 32,160,225,147,254,255,235,
/* 0x0880 */ 0, 0, 80,227, 1, 0, 0, 10,127, 0,160,227,124,254,255,235,
/* 0x0890 */ 20, 32,157,229, 44,192,157,229, 7, 48,138,224, 12, 16,130,224,
/* 0x08a0 */ 3, 64,134,224, 1, 0, 84,225, 7, 0, 0, 42, 1, 16,100,224,
/* 0x08b0 */ 11, 32,160,225, 4, 0,160,225, 16, 48,160,227,144,254,255,235,
/* 0x08c0 */ 0, 0, 84,225, 0, 0, 0, 10,254,255,255,234, 24, 0,157,229,
/* 0x08d0 */ 1, 0,128,226, 24, 0,141,229, 32, 80,133,226,188, 50,216,225,
/* 0x08e0 */ 24, 16,157,229, 3, 0, 81,225, 79,255,255,186, 12, 32,157,229,
/* 0x08f0 */ 0, 0, 82,227, 5, 0, 0, 10,176, 49,216,225, 3, 0, 83,227,
/* 0x0900 */ 40, 48,157, 21, 28,192,157, 21, 12, 0,131, 16,105,254,255, 27,
/* 0x0910 */ 92, 0,157,229, 0, 0, 80,227, 0,144,128, 21, 24, 0,152,229,
/* 0x0920 */ 0, 0,137,224, 56,208,141,226,240,143,189,232, 28, 48, 21,229,
/* 0x0930 */ 0, 0, 83,227, 36, 32,157, 5, 2, 48,129, 0, 8, 64,131, 2,
/* 0x0940 */ 195,255,255, 10,183,255,255,234, 32, 48,157,229, 0, 48,130,229,
/* 0x0950 */ 52, 48,159,229, 2, 64,160,225, 8, 16,130,226, 4, 48,130,229,
/* 0x0960 */ 92,254,255,235, 4, 0,160,225, 8, 16,160,227, 5, 32,160,227,
/* 0x0970 */ 86,254,255,235, 4, 32,160,225, 8, 0,157,229, 0, 16,160,227,
/* 0x0980 */ 124,254,255,235,185,255,255,234, 64, 98, 81,115, 14,240,160,225,
/* 0x0990 */ 240, 71, 45,233, 12,208, 77,226, 52, 96,141,226, 0,144,160,225,
/* 0x09a0 */ 1,112,160,225, 3,128,160,225, 6, 0,160,225, 44, 16,141,226,
/* 0x09b0 */ 0, 48,160,227, 48,160,157,229, 2, 80,160,225, 52, 64,157,229,
/* 0x09c0 */ 143,254,255,235, 60, 48,157,229, 12,224,141,226, 56,192,157,229,
/* 0x09d0 */ 4, 48, 46,229, 12,192,100,224, 6, 32,160,225, 10, 16,160,225,
/* 0x09e0 */ 9, 48,160,225, 5, 0,160,225, 56,192,141,229, 0,224,141,229,
/* 0x09f0 */ 52,112,141,229, 4,128,141,229,211,254,255,235, 0, 64,160,225,
/* 0x0a00 */ 9, 16,160,227, 9, 0,160,225, 4, 32,160,225, 89,254,255,235,
/* 0x0a10 */ 188, 2,218,225, 52, 32,138,226, 0, 16,160,227, 35, 0, 0,234,
/* 0x0a20 */ 0, 48,146,229, 3, 0, 83,227, 30, 0, 0, 26, 8, 48,146,229,
/* 0x0a30 */ 8, 0,157,229, 0, 16,160,227, 0, 0,131,224, 1, 32,160,225,
/* 0x0a40 */ 20,254,255,235, 0, 80, 80,226, 4, 0, 0,186, 10, 16,160,225,
/* 0x0a50 */ 2, 44,160,227, 11,254,255,235, 2, 12, 80,227, 1, 0, 0, 10,
/* 0x0a60 */ 127, 0,160,227, 6,254,255,235, 0,224,160,227, 14, 32,160,225,
/* 0x0a70 */ 8,192,141,226, 10, 16,160,225, 9, 48,160,225, 5, 0,160,225,
/* 0x0a80 */ 0, 80,141,232,176,254,255,235, 7, 16,160,227, 0, 64,160,225,
/* 0x0a90 */ 8, 32,157,229, 9, 0,160,225, 54,254,255,235, 5, 0,160,225,
/* 0x0aa0 */ 254,253,255,235, 3, 0, 0,234, 32, 32,130,226, 1, 16,129,226,
/* 0x0ab0 */ 0, 0, 81,225,217,255,255,186, 4, 0,160,225, 12,208,141,226,
/* 0x0ac0 */ 240,135,189,232
/* 0x0180 */ 4,144,154,229, 13,128,160,225, 0,112,154,229,176, 96,143,226,
/* 0x0190 */ 12,144,137,226,248, 15, 45,233, 15, 0,189,232, 15, 2, 0,235,
/* 0x01a0 */ 20,208,141,226, 10,220,141,226, 16, 0,141,229, 92, 16,155,229,
/* 0x01b0 */ 60, 32,155,229, 11, 0,160,225, 2, 16, 65,224, 70, 0, 0,235,
/* 0x01c0 */ 4, 64,157,228, 0, 80,160,227, 48, 0, 45,233, 2, 48,160,227,
/* 0x01d0 */ 1, 32,160,227, 1, 26,160,227, 0, 0,160,227, 69, 0, 0,235,
/* 0x01e0 */ 3, 0,189,232, 50, 0, 0,235, 7, 64,189,232, 0, 48,160,227,
/* 0x01f0 */ 0, 64,160,227, 0, 80,160,227, 0, 96,160,227, 0,128,160,227,
/* 0x0200 */ 0,144,160,227, 0,160,160,227, 0,176,160,227, 1,199, 77,226,
/* 0x0210 */ 32,112, 29,228, 0,112,141,229, 0,112,157,229, 13, 0, 92,225,
/* 0x0220 */ 250,255,255, 58, 1,215,141,226, 0,112,160,227, 0,192,160,227,
/* 0x0230 */ 4,240, 18,229, 47,112,114,111, 99, 47,115,101,108,102, 47,101,
/* 0x0240 */ 120,101, 0, 0,255, 48, 3,226, 80, 0, 83,227, 14,240,160, 17,
/* 0x0250 */ 33, 17,176,225, 0, 0, 80, 19, 14,240,160, 1, 1, 16, 65,226,
/* 0x0260 */ 1, 33,144,231, 15, 52, 2,226, 11, 4, 83,227, 4, 0, 0, 26,
/* 0x0270 */ 255, 52, 2,226, 1, 32, 66,224,255, 36,194,227, 3, 32,130,225,
/* 0x0280 */ 1, 33,128,231, 0, 0, 81,227,243,255,255, 26, 14,240,160,225,
/* 0x0290 */ 240, 1,240,231, 14,240,160,225, 1, 0,144,239, 3, 0,144,239,
/* 0x02a0 */ 14,240,160,225, 4, 0,144,239, 14,240,160,225, 5, 0,144,239,
/* 0x02b0 */ 14,240,160,225, 6, 0,144,239, 14,240,160,225, 10, 0,144,239,
/* 0x02c0 */ 14,240,160,225, 20, 0,144,239, 14,240,160,225, 45, 0,144,239,
/* 0x02d0 */ 14,240,160,225, 85, 0,144,239, 14,240,160,225, 91, 0,144,239,
/* 0x02e0 */ 14,240,160,225,125, 0,144,239, 14,240,160,225, 0, 32,160,227,
/* 0x02f0 */ 2, 0,159,239, 14,240,160,225, 48, 64, 45,233, 16, 80,157,229,
/* 0x0300 */ 12, 64,157,229, 37, 86,160,225,192, 0,144,239, 48,128,189,232,
/* 0x0310 */ 60, 0, 31,229, 14,240,160,225, 48, 64, 45,233,164, 66, 31,229,
/* 0x0320 */ 0, 80,160,227, 4, 48,131,225, 0, 64,224,227,245,255,255,234,
/* 0x0330 */ 0,192,160,225, 1, 16, 65,224, 0, 32,160,225,128, 1,144,224,
/* 0x0340 */ 129, 17,161,224,162, 30,129,224, 0, 32,160,225, 0, 2,144,224,
/* 0x0350 */ 1, 18,161,224, 34, 30,129,224, 0, 32,160,225, 0, 4,144,224,
/* 0x0360 */ 1, 20,161,224, 34, 28,129,224, 0, 32,160,225, 0, 8,144,224,
/* 0x0370 */ 1, 24,161,224, 34, 24,129,224,140, 15, 80,224,172, 16,193,224,
/* 0x0380 */ 12, 0,144,224, 0, 0,161,226, 14,240,160,225, 0, 0, 80,227,
/* 0x0390 */ 14,240,160, 1, 0, 48,144,229, 1, 0, 83,225, 8, 0,128, 18,
/* 0x03a0 */ 251,255,255, 26, 4, 32,128,229, 14,240,160,225, 0, 0,159,229,
/* 0x03b0 */ 14,240,160,225, 0,240,255,255, 0, 48,144,229, 2, 0, 83,225,
/* 0x03c0 */ 4, 48,144,229, 4,224, 45,229, 3,192,160, 33, 2,224,160,225,
/* 0x03d0 */ 2, 32,160, 33, 3, 0, 0, 42,127, 0,160,227,173,255,255,235,
/* 0x03e0 */ 1, 48, 92,229, 1, 48, 65,229, 1, 32, 66,226, 1, 0,114,227,
/* 0x03f0 */ 1,192,140,226, 1, 16,129,226,248,255,255, 26, 4, 32,144,229,
/* 0x0400 */ 0, 48,144,229, 14, 32,130,224, 3, 48,110,224, 0, 48,128,229,
/* 0x0410 */ 4, 32,128,229, 4,240,157,228,240, 64, 45,233, 0, 80,160,225,
/* 0x0420 */ 20,208, 77,226, 1, 64,160,225, 2,112,160,225, 3, 96,160,225,
/* 0x0430 */ 68, 0, 0,234, 4, 16,141,226, 5, 0,160,225, 12, 32,160,227,
/* 0x0440 */ 220,255,255,235, 4,224,157,229, 0, 0, 94,227, 8, 16,157,229,
/* 0x0450 */ 6, 0, 0, 26, 0, 49,159,229, 3, 0, 81,225, 5, 0, 0, 26,
/* 0x0460 */ 0, 48,149,229, 0, 0, 83,227, 2, 0, 0, 26, 56, 0, 0,234,
/* 0x0470 */ 0, 0, 81,227, 1, 0, 0, 26,127, 0,160,227,133,255,255,235,
/* 0x0480 */ 14, 0, 81,225,251,255,255,138, 0, 48,148,229, 3, 0, 94,225,
/* 0x0490 */ 248,255,255,138, 14, 0, 81,225, 33, 0, 0, 42, 12,192,221,229,
/* 0x04a0 */ 4, 0,149,229, 4, 32,148,229, 16, 48,141,226, 16,224,141,229,
/* 0x04b0 */ 0,192,141,229, 15,224,160,225, 7,240,160,225, 0, 0, 80,227,
/* 0x04c0 */ 236,255,255, 26, 16, 16,157,229, 4, 48,157,229, 3, 0, 81,225,
/* 0x04d0 */ 232,255,255, 26, 13, 32,221,229, 0, 0, 82,227, 0, 0, 86, 19,
/* 0x04e0 */ 9, 0, 0, 10, 2, 12, 81,227, 2, 0, 0,138, 0, 48,148,229,
/* 0x04f0 */ 1, 0, 83,225, 4, 0, 0, 26, 2, 48,160,225, 4, 0,148,229,
/* 0x0500 */ 14, 32,221,229, 15,224,160,225, 6,240,160,225, 8, 48,157,229,
/* 0x0510 */ 6, 0,149,232, 3, 32,130,224, 1, 16, 99,224, 6, 0,133,232,
/* 0x0520 */ 3, 0, 0,234, 1, 32,160,225, 5, 0,160,225, 4, 16,148,229,
/* 0x0530 */ 160,255,255,235, 4, 48,157,229, 6, 0,148,232, 3, 32,130,224,
/* 0x0540 */ 1, 16, 99,224, 6, 0,132,232, 0, 48,148,229, 0, 0, 83,227,
/* 0x0550 */ 183,255,255, 26, 20,208,141,226,240,128,189,232, 85, 80, 88, 33,
/* 0x0560 */ 240, 79, 45,233, 1,160,160,225, 28, 16,145,229, 52,208, 77,226,
/* 0x0570 */ 0,176, 82,226, 12, 0,141,229, 8, 48,141,229, 1, 96,138,224,
/* 0x0580 */ 19, 0, 0, 10, 88, 0,157,229, 0,224,144,229, 28, 48,158,229,
/* 0x0590 */ 3, 48,142,224, 40, 32,147,229, 20, 80,147,229, 14,224, 98,224,
/* 0x05a0 */ 0, 64,160,227, 5, 16,160,225, 0,192,224,227, 14, 80,133,224,
/* 0x05b0 */ 14, 0,160,225, 4, 32,160,225, 50, 48,160,227, 0,192,141,229,
/* 0x05c0 */ 4, 64,141,229, 20, 80,141,229, 74,255,255,235, 0,128,160,225,
/* 0x05d0 */ 40, 0, 0,234,176, 49,218,225,188, 34,218,225, 3, 0, 83,227,
/* 0x05e0 */ 16,192,160, 19, 0,192,160, 3, 1, 0, 66,226, 6, 16,160,225,
/* 0x05f0 */ 0, 64,224,227, 11, 80,160,225, 13, 0, 0,234, 0, 48,145,229,
/* 0x0600 */ 1, 0, 83,227, 8, 0, 0, 26, 20, 48,145,229, 0, 0, 83,227,
/* 0x0610 */ 5, 0, 0, 10, 8, 32,145,229, 2, 48,131,224, 3, 0, 85,225,
/* 0x0620 */ 3, 80,160, 49, 2, 0, 84,225, 2, 64,160, 33, 32, 16,129,226,
/* 0x0630 */ 1, 0, 64,226, 0, 0, 80,227,239,255,255,170,255, 78,196,227,
/* 0x0640 */ 15, 64,196,227, 5, 80,100,224,255, 94,133,226, 15, 80,133,226,
/* 0x0650 */ 255, 94,197,227, 15, 80,197,227, 5, 16,160,225, 12, 48,160,225,
/* 0x0660 */ 4, 0,160,225, 0, 32,160,227, 42,255,255,235, 0, 80,133,224,
/* 0x0670 */ 20, 80,141,229, 0,128,100,224, 52, 48,160,227,152, 3, 3,224,
/* 0x0680 */ 0, 16,160,227, 32, 80,134,226, 36, 48,141,229, 24, 16,141,229,
/* 0x0690 */ 169, 0, 0,234, 0, 0, 91,227, 8, 0, 0, 10, 32, 48, 21,229,
/* 0x06a0 */ 6, 0, 83,227, 5, 0, 0, 26, 24, 32, 21,229, 8, 0,157,229,
/* 0x06b0 */ 2, 32,136,224, 3, 16,160,227, 51,255,255,235,154, 0, 0,234,
/* 0x06c0 */ 32, 48, 21,229, 1, 0, 83,227,151, 0, 0, 26, 12, 48, 21,229,
/* 0x06d0 */ 0, 0, 83,227,148, 0, 0, 10, 0, 0, 91,227, 17, 0, 0, 10,
/* 0x06e0 */ 28, 48, 21,229, 0, 0, 83,227, 14, 0, 0, 26, 28, 48,154,229,
/* 0x06f0 */ 24, 32, 21,229, 3, 32,130,224, 2, 32,136,224, 3, 16,160,227,
/* 0x0700 */ 8, 0,157,229, 32,255,255,235, 8, 0,157,229, 5, 16,160,227,
/* 0x0710 */ 188, 34,218,225, 28,255,255,235, 8, 0,157,229, 4, 16,160,227,
/* 0x0720 */ 186, 34,218,225, 24,255,255,235, 8, 48, 21,229,164, 34,159,229,
/* 0x0730 */ 7, 48, 3,226, 3, 49,160,225, 50, 67,160,225, 24, 48, 21,229,
/* 0x0740 */ 3, 48,136,224, 16, 48,141,229, 16,192,157,229, 16, 48, 21,229,
/* 0x0750 */ 12, 42,160,225, 12, 16, 21,229, 34, 42,160,225, 7, 0, 4,226,
/* 0x0760 */ 0, 0, 91,227, 44, 48,141,229, 48,192,141,229, 2,144,131,224,
/* 0x0770 */ 28, 0,141,229, 40, 16,141,229, 12, 96, 98,224, 14, 0, 0, 10,
/* 0x0780 */ 6, 0,160,225, 9, 16,160,225, 3, 32,160,227, 16, 48,160,227,
/* 0x0790 */ 224,254,255,235, 0, 0, 86,225, 82, 0, 0, 26, 92, 32,157,229,
/* 0x07a0 */ 4, 48, 20,226, 2, 48,160, 17, 11, 0,160,225, 44, 16,141,226,
/* 0x07b0 */ 12, 32,157,229, 23,255,255,235, 11, 0, 0,234, 28,192, 21,229,
/* 0x07c0 */ 12,192, 98,224, 4,192,141,229, 12,192,157,229, 6, 0,160,225,
/* 0x07d0 */ 9, 16,160,225, 28, 32,157,229, 18, 48,160,227, 0,192,141,229,
/* 0x07e0 */ 196,254,255,235, 0, 0, 86,225, 62, 0, 0, 26, 28, 0,157,229,
/* 0x07f0 */ 0, 48,105,226, 3,122,160,225, 2, 0, 16,227, 39,122,160,225,
/* 0x0800 */ 7, 0, 0, 10, 0, 0, 87,227, 5, 0, 0, 10, 9, 16,134,224,
/* 0x0810 */ 7, 32,160,225, 0, 48,160,227, 1, 32, 82,226, 1, 48,193,228,
/* 0x0820 */ 251,255,255, 26, 0, 0, 91,227, 48, 0, 0, 10,183,254,255,235,
/* 0x0830 */ 32, 48, 21,229, 1, 0, 83,227, 32, 0,141,229, 35, 0, 0, 26,
/* 0x0840 */ 8, 48, 21,229, 1, 0, 19,227, 32, 0, 0, 10, 12, 32, 21,229,
/* 0x0850 */ 16, 48, 21,229, 3, 0, 82,225, 24, 16, 21,229, 71, 0, 0, 26,
/* 0x0860 */ 1, 48,130,224, 3, 48,131,226, 3, 48,136,224, 3, 64,195,227,
/* 0x0870 */ 0, 48,100,226, 3, 58,160,225, 35, 58,160,225, 7, 0, 83,227,
/* 0x0880 */ 62, 0, 0,154, 10, 0, 0,234, 0,224,160,227, 3, 32,160,227,
/* 0x0890 */ 0,192,224,227, 14, 0,160,225, 1, 26,160,227, 34, 48,160,227,
/* 0x08a0 */ 0, 80,141,232,147,254,255,235, 0, 32, 80,226, 58, 0, 0, 26,
/* 0x08b0 */ 6, 0, 0,234, 32, 16,157,229, 28, 49,159,229, 10, 0,132,232,
/* 0x08c0 */ 4, 0,160,225, 8, 16,132,226,135,254,255,235, 60, 0, 0,234,
/* 0x08d0 */ 6, 0,160,225, 9, 16,160,225, 28, 32,157,229,128,254,255,235,
/* 0x08e0 */ 0, 0, 80,227, 1, 0, 0, 10,127, 0,160,227,105,254,255,235,
/* 0x08f0 */ 16, 32,157,229, 40,192,157,229, 7, 48,137,224, 12, 16,130,224,
/* 0x0900 */ 3, 64,134,224, 1, 0, 84,225, 7, 0, 0, 42, 1, 16,100,224,
/* 0x0910 */ 28, 32,157,229, 4, 0,160,225, 16, 48,160,227,125,254,255,235,
/* 0x0920 */ 0, 0, 84,225, 0, 0, 0, 10,254,255,255,234, 24, 0,157,229,
/* 0x0930 */ 1, 0,128,226, 24, 0,141,229, 32, 80,133,226,188, 50,218,225,
/* 0x0940 */ 24, 16,157,229, 3, 0, 81,225, 81,255,255,186, 0, 0, 91,227,
/* 0x0950 */ 3, 0, 0, 10,176, 49,218,225, 3, 0, 83,227, 20, 0,157, 21,
/* 0x0960 */ 89,254,255, 27, 88, 32,157,229, 0, 0, 82,227, 0,128,130, 21,
/* 0x0970 */ 24, 0,154,229, 0, 0,136,224, 52,208,141,226,240,143,189,232,
/* 0x0980 */ 28, 48, 21,229, 0, 0, 83,227, 36,192,157, 5, 12, 48,129, 0,
/* 0x0990 */ 8, 64,131, 2,198,255,255, 10,186,255,255,234, 32, 16,157,229,
/* 0x09a0 */ 52, 48,159,229, 2, 64,160,225, 10, 0,130,232, 8, 16,130,226,
/* 0x09b0 */ 77,254,255,235, 4, 0,160,225, 8, 16,160,227, 5, 32,160,227,
/* 0x09c0 */ 71,254,255,235, 4, 32,160,225, 8, 0,157,229, 0, 16,160,227,
/* 0x09d0 */ 109,254,255,235,189,255,255,234, 64, 98, 81,115, 14,240,160,225,
/* 0x09e0 */ 240, 71, 45,233, 12,208, 77,226, 52, 96,141,226, 0,144,160,225,
/* 0x09f0 */ 1,112,160,225, 3,128,160,225, 6, 0,160,225, 44, 16,141,226,
/* 0x0a00 */ 0, 48,160,227, 48,160,157,229, 2, 80,160,225, 52, 64,157,229,
/* 0x0a10 */ 128,254,255,235, 60, 48,157,229, 12,224,141,226, 56,192,157,229,
/* 0x0a20 */ 4, 48, 46,229, 12,192,100,224, 6, 32,160,225, 10, 16,160,225,
/* 0x0a30 */ 9, 48,160,225, 5, 0,160,225, 56,192,141,229, 0,224,141,229,
/* 0x0a40 */ 52,112,141,229, 4,128,141,229,196,254,255,235, 0, 64,160,225,
/* 0x0a50 */ 9, 16,160,227, 9, 0,160,225, 4, 32,160,225, 74,254,255,235,
/* 0x0a60 */ 188, 2,218,225, 52, 32,138,226, 0, 16,160,227, 35, 0, 0,234,
/* 0x0a70 */ 0, 48,146,229, 3, 0, 83,227, 30, 0, 0, 26, 8, 48,146,229,
/* 0x0a80 */ 8, 0,157,229, 0, 16,160,227, 0, 0,131,224, 1, 32,160,225,
/* 0x0a90 */ 5,254,255,235, 0, 80, 80,226, 4, 0, 0,186, 10, 16,160,225,
/* 0x0aa0 */ 2, 44,160,227,252,253,255,235, 2, 12, 80,227, 1, 0, 0, 10,
/* 0x0ab0 */ 127, 0,160,227,247,253,255,235, 0,224,160,227, 14, 32,160,225,
/* 0x0ac0 */ 8,192,141,226, 10, 16,160,225, 9, 48,160,225, 5, 0,160,225,
/* 0x0ad0 */ 0, 80,141,232,161,254,255,235, 7, 16,160,227, 0, 64,160,225,
/* 0x0ae0 */ 8, 32,157,229, 9, 0,160,225, 39,254,255,235, 5, 0,160,225,
/* 0x0af0 */ 239,253,255,235, 3, 0, 0,234, 32, 32,130,226, 1, 16,129,226,
/* 0x0b00 */ 0, 0, 81,225,217,255,255,186, 4, 0,160,225, 12,208,141,226,
/* 0x0b10 */ 240,135,189,232
};

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/* arm.v5a-linux.elf-fold.h
created from arm.v5a-linux.elf-fold.bin, 2912 (0xb60) bytes
created from arm.v5a-linux.elf-fold.bin, 2992 (0xbb0) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_ARM_V5A_LINUX_ELF_FOLD_SIZE 2912
#define STUB_ARM_V5A_LINUX_ELF_FOLD_ADLER32 0xa0a0c14d
#define STUB_ARM_V5A_LINUX_ELF_FOLD_CRC32 0xa16b2ee2
#define STUB_ARM_V5A_LINUX_ELF_FOLD_SIZE 2992
#define STUB_ARM_V5A_LINUX_ELF_FOLD_ADLER32 0x7631e338
#define STUB_ARM_V5A_LINUX_ELF_FOLD_CRC32 0xd44555b7
unsigned char stub_arm_v5a_linux_elf_fold[2912] = {
unsigned char stub_arm_v5a_linux_elf_fold[2992] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 97, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 2, 0, 40, 0, 1, 0, 0, 0,128,128, 0, 0, 52, 0, 0, 0,
/* 0x0020 */ 0, 0, 0, 0, 2, 0, 0, 0, 52, 0, 32, 0, 2, 0, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0,
/* 0x0040 */ 0,128, 0, 0, 96, 11, 0, 0, 96, 11, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0,128, 0, 0, 1, 0, 0, 0, 96, 11, 0, 0, 0, 0, 0, 0,
/* 0x0040 */ 0,128, 0, 0,176, 11, 0, 0,176, 11, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0,128, 0, 0, 1, 0, 0, 0,176, 11, 0, 0, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 34, 0, 0, 0,192, 31,189,232, 13, 16,160,225, 1,218, 77,226,
@ -50,7 +50,7 @@ unsigned char stub_arm_v5a_linux_elf_fold[2912] = {
/* 0x00b0 */ 4, 48,145,228, 0, 0, 83,227, 4, 48,128,228,251,255,255, 26,
/* 0x00c0 */ 1, 80,160,225, 12, 0,177,232, 0, 0, 82,227, 12, 0,160,232,
/* 0x00d0 */ 251,255,255, 26, 1, 96,160,225, 0,144,160,225, 1, 42,160,227,
/* 0x00e0 */ 0, 16,160,225, 14, 0,160,225, 1, 32, 66,226,139, 0, 0,235,
/* 0x00e0 */ 0, 16,160,225, 14, 0,160,225, 1, 32, 66,226,144, 0, 0,235,
/* 0x00f0 */ 1, 10,112,227, 14, 16,160, 33, 14, 0,160, 35, 0, 32,129,224,
/* 0x0100 */ 6, 0,160,225, 0, 48,160,227, 1, 48, 96,229, 1, 48,114,229,
/* 0x0110 */ 1, 48, 96,229, 2, 0, 81,225,251,255,255, 26, 61, 48,160,227,
@ -60,162 +60,167 @@ unsigned char stub_arm_v5a_linux_elf_fold[2912] = {
/* 0x0150 */ 6, 48, 64,224, 5, 48,131,224, 9, 16,160,225, 24, 80,157,229,
/* 0x0160 */ 24, 0,141,229, 4, 32, 49,229, 13, 0, 81,225, 4, 32, 32,229,
/* 0x0170 */ 251,255,255, 26, 0,208,160,225, 16, 12,189,232, 10,220, 77,226,
/* 0x0180 */ 4,144,154,229, 13,128,160,225, 0,112,154,229,156, 96,143,226,
/* 0x0190 */ 12,144,137,226,248, 15, 45,233, 15, 0,189,232, 34, 2, 0,235,
/* 0x01a0 */ 20,208,141,226, 10,220,141,226, 16, 0,141,229, 4, 64,157,228,
/* 0x01b0 */ 0, 80,160,227, 48, 0, 45,233, 2, 48,160,227, 1, 32,160,227,
/* 0x01c0 */ 1, 26,160,227, 0, 0,160,227,106, 0, 0,235, 3, 0,189,232,
/* 0x01d0 */ 62, 0, 0,235, 7, 64,189,232, 0, 48,160,227, 0, 64,160,227,
/* 0x01e0 */ 0, 80,160,227, 0, 96,160,227, 0,128,160,227, 0,144,160,227,
/* 0x01f0 */ 0,160,160,227, 0,176,160,227, 1,199, 77,226, 32,112, 29,228,
/* 0x0200 */ 0,112,141,229, 0,112,157,229, 13, 0, 92,225,250,255,255, 58,
/* 0x0210 */ 1,215,141,226, 0,192,160,227, 91,112,160,227, 4,240, 18,229,
/* 0x0220 */ 47,112,114,111, 99, 47,115,101,108,102, 47,101,120,101, 0, 0,
/* 0x0230 */ 255, 48, 3,226, 80, 0, 83,227, 14,240,160, 17, 33, 17,176,225,
/* 0x0240 */ 0, 0, 80, 19, 14,240,160, 1, 1, 16, 65,226, 1, 33,144,231,
/* 0x0250 */ 15, 52, 2,226, 11, 4, 83,227, 4, 0, 0, 26,255, 52, 2,226,
/* 0x0260 */ 1, 32, 66,224,255, 36,194,227, 3, 32,130,225, 1, 33,128,231,
/* 0x0270 */ 0, 0, 81,227,243,255,255, 26, 14,240,160,225,240, 1,240,231,
/* 0x0280 */ 14,240,160,225, 7,192,160,225, 1,112,160,227, 0, 0, 0,239,
/* 0x0290 */ 12,112,160,225, 7,192,160,225, 3,112,160,227, 0, 0, 0,239,
/* 0x02a0 */ 12,112,160,225, 14,240,160,225, 7,192,160,225, 4,112,160,227,
/* 0x0180 */ 4,144,154,229, 13,128,160,225, 0,112,154,229,176, 96,143,226,
/* 0x0190 */ 12,144,137,226,248, 15, 45,233, 15, 0,189,232, 54, 2, 0,235,
/* 0x01a0 */ 20,208,141,226, 10,220,141,226, 16, 0,141,229, 92, 16,155,229,
/* 0x01b0 */ 60, 32,155,229, 11, 0,160,225, 2, 16, 65,224, 97, 0, 0,235,
/* 0x01c0 */ 4, 64,157,228, 0, 80,160,227, 48, 0, 45,233, 2, 48,160,227,
/* 0x01d0 */ 1, 32,160,227, 1, 26,160,227, 0, 0,160,227,106, 0, 0,235,
/* 0x01e0 */ 3, 0,189,232, 62, 0, 0,235, 7, 64,189,232, 0, 48,160,227,
/* 0x01f0 */ 0, 64,160,227, 0, 80,160,227, 0, 96,160,227, 0,128,160,227,
/* 0x0200 */ 0,144,160,227, 0,160,160,227, 0,176,160,227, 1,199, 77,226,
/* 0x0210 */ 32,112, 29,228, 0,112,141,229, 0,112,157,229, 13, 0, 92,225,
/* 0x0220 */ 250,255,255, 58, 1,215,141,226, 0,192,160,227, 91,112,160,227,
/* 0x0230 */ 4,240, 18,229, 47,112,114,111, 99, 47,115,101,108,102, 47,101,
/* 0x0240 */ 120,101, 0, 0,255, 48, 3,226, 80, 0, 83,227, 14,240,160, 17,
/* 0x0250 */ 33, 17,176,225, 0, 0, 80, 19, 14,240,160, 1, 1, 16, 65,226,
/* 0x0260 */ 1, 33,144,231, 15, 52, 2,226, 11, 4, 83,227, 4, 0, 0, 26,
/* 0x0270 */ 255, 52, 2,226, 1, 32, 66,224,255, 36,194,227, 3, 32,130,225,
/* 0x0280 */ 1, 33,128,231, 0, 0, 81,227,243,255,255, 26, 14,240,160,225,
/* 0x0290 */ 240, 1,240,231, 14,240,160,225, 7,192,160,225, 1,112,160,227,
/* 0x02a0 */ 0, 0, 0,239, 12,112,160,225, 7,192,160,225, 3,112,160,227,
/* 0x02b0 */ 0, 0, 0,239, 12,112,160,225, 14,240,160,225, 7,192,160,225,
/* 0x02c0 */ 5,112,160,227, 0, 0, 0,239, 12,112,160,225, 14,240,160,225,
/* 0x02d0 */ 7,192,160,225, 6,112,160,227, 0, 0, 0,239, 12,112,160,225,
/* 0x02e0 */ 14,240,160,225, 7,192,160,225, 10,112,160,227, 0, 0, 0,239,
/* 0x02f0 */ 12,112,160,225, 14,240,160,225, 7,192,160,225, 20,112,160,227,
/* 0x02c0 */ 4,112,160,227, 0, 0, 0,239, 12,112,160,225, 14,240,160,225,
/* 0x02d0 */ 7,192,160,225, 5,112,160,227, 0, 0, 0,239, 12,112,160,225,
/* 0x02e0 */ 14,240,160,225, 7,192,160,225, 6,112,160,227, 0, 0, 0,239,
/* 0x02f0 */ 12,112,160,225, 14,240,160,225, 7,192,160,225, 10,112,160,227,
/* 0x0300 */ 0, 0, 0,239, 12,112,160,225, 14,240,160,225, 7,192,160,225,
/* 0x0310 */ 45,112,160,227, 0, 0, 0,239, 12,112,160,225, 14,240,160,225,
/* 0x0320 */ 7,192,160,225, 85,112,160,227, 0, 0, 0,239, 12,112,160,225,
/* 0x0330 */ 14,240,160,225, 7,192,160,225, 91,112,160,227, 0, 0, 0,239,
/* 0x0340 */ 12,112,160,225, 14,240,160,225, 7,192,160,225,125,112,160,227,
/* 0x0350 */ 0, 0, 0,239, 12,112,160,225, 14,240,160,225, 0, 32,160,227,
/* 0x0360 */ 7,192,160,225, 2,112,160,227, 15,120,135,227, 0, 0, 0,239,
/* 0x0370 */ 12,112,160,225, 14,240,160,225, 48, 64, 45,233, 16, 80,157,229,
/* 0x0380 */ 12, 64,157,229, 37, 86,160,225, 7,192,160,225,192,112,160,227,
/* 0x0390 */ 0, 0, 0,239, 12,112,160,225, 48,128,189,232,104, 0, 31,229,
/* 0x03a0 */ 14,240,160,225, 48, 64, 45,233, 48, 67, 31,229, 0, 80,160,227,
/* 0x03b0 */ 4, 48,131,225, 0, 64,224,227,242,255,255,234, 0,192,160,225,
/* 0x03c0 */ 1, 16, 65,224, 0, 32,160,225,128, 1,144,224,129, 17,161,224,
/* 0x03d0 */ 162, 30,129,224, 0, 32,160,225, 0, 2,144,224, 1, 18,161,224,
/* 0x03e0 */ 34, 30,129,224, 0, 32,160,225, 0, 4,144,224, 1, 20,161,224,
/* 0x03f0 */ 34, 28,129,224, 0, 32,160,225, 0, 8,144,224, 1, 24,161,224,
/* 0x0400 */ 34, 24,129,224,140, 15, 80,224,172, 16,193,224, 12, 0,144,224,
/* 0x0410 */ 0, 0,161,226, 14,240,160,225, 0, 0, 80,227, 30,255, 47, 1,
/* 0x0420 */ 0, 48,144,229, 1, 0, 83,225, 8, 0,128, 18,251,255,255, 26,
/* 0x0430 */ 4, 32,128,229, 30,255, 47,225, 0, 0,159,229, 30,255, 47,225,
/* 0x0440 */ 0,240,255,255, 0, 48,144,229, 4,224, 45,229, 2, 0, 83,225,
/* 0x0450 */ 4, 48,144,229, 2,224,160,225, 3,192,160, 33, 2, 32,160, 33,
/* 0x0460 */ 3, 0, 0, 42,127, 0,160,227,133,255,255,235, 1, 48, 92,229,
/* 0x0470 */ 1, 48, 65,229, 1, 32, 66,226, 1, 0,114,227, 1,192,140,226,
/* 0x0480 */ 1, 16,129,226,248,255,255, 26, 4, 32,144,229, 0, 48,144,229,
/* 0x0490 */ 14, 32,130,224, 3, 48,110,224, 0, 48,128,229, 4, 32,128,229,
/* 0x04a0 */ 4,240,157,228,240, 64, 45,233, 0, 80,160,225, 20,208, 77,226,
/* 0x04b0 */ 1, 64,160,225, 2,112,160,225, 3, 96,160,225, 66, 0, 0,234,
/* 0x04c0 */ 4, 16,141,226, 5, 0,160,225, 12, 32,160,227,220,255,255,235,
/* 0x04d0 */ 4,224,157,229, 8, 16,157,229, 0, 0, 94,227, 6, 0, 0, 26,
/* 0x04e0 */ 248, 48,159,229, 3, 0, 81,225, 5, 0, 0, 26, 0, 48,149,229,
/* 0x04f0 */ 0, 0, 83,227, 2, 0, 0, 26, 54, 0, 0,234, 0, 0, 81,227,
/* 0x0500 */ 1, 0, 0, 26,127, 0,160,227, 93,255,255,235, 14, 0, 81,225,
/* 0x0510 */ 251,255,255,138, 0, 48,148,229, 3, 0, 94,225,248,255,255,138,
/* 0x0520 */ 14, 0, 81,225, 31, 0, 0, 42, 12,192,221,229, 4, 0,149,229,
/* 0x0530 */ 4, 32,148,229, 16, 48,141,226, 16,224,141,229, 0,192,141,229,
/* 0x0540 */ 55,255, 47,225, 0, 0, 80,227,237,255,255, 26, 16, 16,157,229,
/* 0x0550 */ 4, 48,157,229, 3, 0, 81,225,233,255,255, 26, 13, 32,221,229,
/* 0x0560 */ 0, 0, 82,227, 0, 0, 86, 19, 8, 0, 0, 10, 2, 12, 81,227,
/* 0x0570 */ 2, 0, 0,138, 0, 48,148,229, 1, 0, 83,225, 3, 0, 0, 26,
/* 0x0580 */ 2, 48,160,225, 4, 0,148,229, 14, 32,221,229, 54,255, 47,225,
/* 0x0590 */ 8, 48,157,229, 6, 0,149,232, 3, 32,130,224, 1, 16, 99,224,
/* 0x05a0 */ 6, 0,133,232, 3, 0, 0,234, 1, 32,160,225, 5, 0,160,225,
/* 0x05b0 */ 4, 16,148,229,162,255,255,235, 4, 48,157,229, 6, 0,148,232,
/* 0x05c0 */ 3, 32,130,224, 1, 16, 99,224, 6, 0,132,232, 0, 48,148,229,
/* 0x05d0 */ 0, 0, 83,227,185,255,255, 26, 20,208,141,226,240,128,189,232,
/* 0x05e0 */ 85, 80, 88, 33,240, 79, 45,233, 1,128,160,225,176,193,216,225,
/* 0x05f0 */ 28, 16,145,229,188,226,216,225, 56,208, 77,226, 2, 0, 92,227,
/* 0x0600 */ 1, 80,136,224, 16, 0,141,229, 16,192,160, 3, 0,192,160, 19,
/* 0x0610 */ 1,224, 78,226, 5, 16,160,225, 0, 64,224,227, 0, 0,160,227,
/* 0x0620 */ 12, 32,141,229, 8, 48,141,229, 13, 0, 0,234, 0, 48,145,229,
/* 0x0630 */ 1, 0, 83,227, 8, 0, 0, 26, 20, 48,145,229, 0, 0, 83,227,
/* 0x0640 */ 5, 0, 0, 10, 8, 32,145,229, 2, 48,131,224, 3, 0, 80,225,
/* 0x0650 */ 3, 0,160, 49, 2, 0, 84,225, 2, 64,160, 33, 32, 16,129,226,
/* 0x0660 */ 1,224, 78,226, 0, 0, 94,227,239,255,255,170,255, 78,196,227,
/* 0x0670 */ 15, 64,196,227, 0, 48,100,224,255, 62,131,226, 15, 48,131,226,
/* 0x0680 */ 255, 62,195,227, 15, 48,195,227, 40, 48,141,229, 4, 0,160,225,
/* 0x0690 */ 12, 48,160,225, 40, 16,157,229, 0, 32,160,227, 64,255,255,235,
/* 0x06a0 */ 52, 48,160,227, 0,144,100,224,153, 3, 3,224, 28, 0,141,229,
/* 0x06b0 */ 32, 80,133,226, 0, 0,160,227, 36, 48,141,229, 24, 0,141,229,
/* 0x06c0 */ 171, 0, 0,234, 12, 16,157,229, 0, 0, 81,227, 8, 0, 0, 10,
/* 0x06d0 */ 32, 48, 21,229, 6, 0, 83,227, 5, 0, 0, 26, 24, 32, 21,229,
/* 0x06e0 */ 8, 0,157,229, 2, 32,137,224, 3, 16,160,227, 73,255,255,235,
/* 0x06f0 */ 155, 0, 0,234, 32, 48, 21,229, 1, 0, 83,227,152, 0, 0, 26,
/* 0x0700 */ 12, 48, 21,229, 0, 0, 83,227,149, 0, 0, 10, 12, 32,157,229,
/* 0x0710 */ 0, 0, 82,227, 17, 0, 0, 10, 28, 48, 21,229, 0, 0, 83,227,
/* 0x0720 */ 14, 0, 0, 26, 28, 48,152,229, 24, 32, 21,229, 3, 16,160,227,
/* 0x0730 */ 3, 32,130,224, 2, 32,137,224, 8, 0,157,229, 53,255,255,235,
/* 0x0740 */ 8, 0,157,229, 5, 16,160,227,188, 34,216,225, 49,255,255,235,
/* 0x0750 */ 8, 0,157,229, 4, 16,160,227,186, 34,216,225, 45,255,255,235,
/* 0x0760 */ 8, 48, 21,229,184, 34,159,229, 7, 48, 3,226, 3, 49,160,225,
/* 0x0770 */ 50, 67,160,225, 24, 48, 21,229, 12,192,157,229, 3, 48,137,224,
/* 0x0780 */ 20, 48,141,229, 16, 32, 21,229, 20, 0,157,229, 3, 58,160,225,
/* 0x0790 */ 12, 16, 21,229, 35, 58,160,225, 0, 0, 92,227, 48, 32,141,229,
/* 0x07a0 */ 52, 0,141,229, 3,160,130,224, 7,176, 4,226, 44, 16,141,229,
/* 0x07b0 */ 0, 96, 99,224, 14, 0, 0, 10, 6, 0,160,225, 10, 16,160,225,
/* 0x07c0 */ 3, 32,160,227, 16, 48,160,227,245,254,255,235, 0, 0, 86,225,
/* 0x07d0 */ 82, 0, 0, 26, 96, 32,157,229, 4, 48, 20,226, 2, 48,160, 17,
/* 0x07e0 */ 12, 0,157,229, 48, 16,141,226, 16, 32,157,229, 44,255,255,235,
/* 0x07f0 */ 11, 0, 0,234, 28,192, 21,229, 6, 0,160,225, 12,192, 99,224,
/* 0x0800 */ 4,192,141,229, 16,192,157,229, 10, 16,160,225, 11, 32,160,225,
/* 0x0810 */ 18, 48,160,227, 0,192,141,229,214,254,255,235, 0, 0, 86,225,
/* 0x0820 */ 62, 0, 0, 26, 0, 48,106,226, 3,122,160,225, 2, 0, 27,227,
/* 0x0830 */ 39,122,160,225, 7, 0, 0, 10, 0, 0, 87,227, 5, 0, 0, 10,
/* 0x0840 */ 10, 16,134,224, 7, 32,160,225, 0, 48,160,227, 1, 32, 82,226,
/* 0x0850 */ 1, 48,193,228,251,255,255, 26, 12, 0,157,229, 0, 0, 80,227,
/* 0x0860 */ 48, 0, 0, 10,204,254,255,235, 32, 48, 21,229, 32, 0,141,229,
/* 0x0870 */ 1, 0, 83,227, 35, 0, 0, 26, 8, 48, 21,229, 1, 0, 19,227,
/* 0x0880 */ 32, 0, 0, 10, 12, 32, 21,229, 16, 48, 21,229, 24, 16, 21,229,
/* 0x0890 */ 3, 0, 82,225, 75, 0, 0, 26, 1, 48,130,224, 3, 48,131,226,
/* 0x08a0 */ 3, 48,137,224, 3, 64,195,227, 0, 48,100,226, 3, 58,160,225,
/* 0x08b0 */ 35, 58,160,225, 7, 0, 83,227, 66, 0, 0,154, 10, 0, 0,234,
/* 0x08c0 */ 0,224,160,227, 3, 32,160,227, 0,192,224,227, 14, 0,160,225,
/* 0x08d0 */ 1, 26,160,227, 34, 48,160,227, 0, 80,141,232,165,254,255,235,
/* 0x08e0 */ 0, 32, 80,226, 62, 0, 0, 26, 6, 0, 0,234, 32, 16,157,229,
/* 0x08f0 */ 48, 49,159,229, 10, 0,132,232, 4, 0,160,225, 8, 16,132,226,
/* 0x0900 */ 149,254,255,235, 65, 0, 0,234, 6, 0,160,225, 10, 16,160,225,
/* 0x0910 */ 11, 32,160,225,139,254,255,235, 0, 0, 80,227, 1, 0, 0, 10,
/* 0x0920 */ 127, 0,160,227, 86,254,255,235, 20, 32,157,229, 44,192,157,229,
/* 0x0930 */ 7, 48,138,224, 12, 16,130,224, 3, 64,134,224, 1, 0, 84,225,
/* 0x0940 */ 7, 0, 0, 42, 1, 16,100,224, 11, 32,160,225, 4, 0,160,225,
/* 0x0950 */ 16, 48,160,227,146,254,255,235, 0, 0, 84,225, 0, 0, 0, 10,
/* 0x0960 */ 254,255,255,234, 24, 0,157,229, 32, 80,133,226, 1, 0,128,226,
/* 0x0970 */ 24, 0,141,229,188, 50,216,225, 24, 16,157,229, 3, 0, 81,225,
/* 0x0980 */ 79,255,255,186, 12, 32,157,229, 0, 0, 82,227, 6, 0, 0, 10,
/* 0x0990 */ 176, 49,216,225, 3, 0, 83,227, 3, 0, 0, 10, 40, 48,157,229,
/* 0x09a0 */ 28,192,157,229, 12, 0,131,224, 87,254,255,235, 92, 0,157,229,
/* 0x09b0 */ 0, 0, 80,227, 0,144,128, 21, 24, 0,152,229, 0, 0,137,224,
/* 0x09c0 */ 56,208,141,226,240,143,189,232, 28, 48, 21,229, 0, 0, 83,227,
/* 0x09d0 */ 36, 32,157, 5, 2, 48,129, 0, 8, 64,131, 2,194,255,255, 10,
/* 0x09e0 */ 182,255,255,234, 32, 48,157,229, 2, 64,160,225, 0, 48,130,229,
/* 0x09f0 */ 48, 48,159,229, 8, 16,130,226, 4, 48,130,229, 86,254,255,235,
/* 0x0a00 */ 4, 0,160,225, 8, 16,160,227, 5, 32,160,227, 77,254,255,235,
/* 0x0a10 */ 4, 32,160,225, 8, 0,157,229, 0, 16,160,227,125,254,255,235,
/* 0x0a20 */ 184,255,255,234, 64, 98, 81,115, 14,240,160,225,240, 71, 45,233,
/* 0x0a30 */ 12,208, 77,226, 52, 96,141,226, 0,144,160,225, 1,112,160,225,
/* 0x0a40 */ 3,128,160,225, 6, 0,160,225, 44, 16,141,226, 0, 48,160,227,
/* 0x0a50 */ 48,160,157,229, 2, 80,160,225, 52, 64,157,229,144,254,255,235,
/* 0x0a60 */ 60, 48,157,229, 56,192,157,229, 12,224,141,226, 4, 48, 46,229,
/* 0x0a70 */ 12,192,100,224, 6, 32,160,225, 10, 16,160,225, 9, 48,160,225,
/* 0x0a80 */ 5, 0,160,225, 56,192,141,229, 0,224,141,229, 52,112,141,229,
/* 0x0a90 */ 4,128,141,229,210,254,255,235, 0, 64,160,225, 9, 16,160,227,
/* 0x0aa0 */ 9, 0,160,225, 4, 32,160,225, 90,254,255,235,188, 2,218,225,
/* 0x0ab0 */ 52, 32,138,226, 0, 16,160,227, 35, 0, 0,234, 0, 48,146,229,
/* 0x0ac0 */ 3, 0, 83,227, 30, 0, 0, 26, 8, 48,146,229, 8, 0,157,229,
/* 0x0ad0 */ 0, 16,160,227, 0, 0,131,224, 1, 32,160,225,246,253,255,235,
/* 0x0ae0 */ 0, 80, 80,226, 4, 0, 0,186, 10, 16,160,225, 2, 44,160,227,
/* 0x0af0 */ 231,253,255,235, 2, 12, 80,227, 1, 0, 0, 10,127, 0,160,227,
/* 0x0b00 */ 223,253,255,235, 0,224,160,227, 14, 32,160,225, 8,192,141,226,
/* 0x0b10 */ 10, 16,160,225, 9, 48,160,225, 5, 0,160,225, 0, 80,141,232,
/* 0x0b20 */ 175,254,255,235, 7, 16,160,227, 0, 64,160,225, 8, 32,157,229,
/* 0x0b30 */ 9, 0,160,225, 55,254,255,235, 5, 0,160,225,227,253,255,235,
/* 0x0b40 */ 3, 0, 0,234, 32, 32,130,226, 1, 16,129,226, 0, 0, 81,225,
/* 0x0b50 */ 217,255,255,186, 4, 0,160,225, 12,208,141,226,240,135,189,232
/* 0x0310 */ 20,112,160,227, 0, 0, 0,239, 12,112,160,225, 14,240,160,225,
/* 0x0320 */ 7,192,160,225, 45,112,160,227, 0, 0, 0,239, 12,112,160,225,
/* 0x0330 */ 14,240,160,225, 7,192,160,225, 85,112,160,227, 0, 0, 0,239,
/* 0x0340 */ 12,112,160,225, 14,240,160,225, 7,192,160,225, 91,112,160,227,
/* 0x0350 */ 0, 0, 0,239, 12,112,160,225, 14,240,160,225, 7,192,160,225,
/* 0x0360 */ 125,112,160,227, 0, 0, 0,239, 12,112,160,225, 14,240,160,225,
/* 0x0370 */ 0, 32,160,227, 7,192,160,225, 2,112,160,227, 15,120,135,227,
/* 0x0380 */ 0, 0, 0,239, 12,112,160,225, 14,240,160,225, 48, 64, 45,233,
/* 0x0390 */ 16, 80,157,229, 12, 64,157,229, 37, 86,160,225, 7,192,160,225,
/* 0x03a0 */ 192,112,160,227, 0, 0, 0,239, 12,112,160,225, 48,128,189,232,
/* 0x03b0 */ 104, 0, 31,229, 14,240,160,225, 48, 64, 45,233, 68, 67, 31,229,
/* 0x03c0 */ 0, 80,160,227, 4, 48,131,225, 0, 64,224,227,242,255,255,234,
/* 0x03d0 */ 0,192,160,225, 1, 16, 65,224, 0, 32,160,225,128, 1,144,224,
/* 0x03e0 */ 129, 17,161,224,162, 30,129,224, 0, 32,160,225, 0, 2,144,224,
/* 0x03f0 */ 1, 18,161,224, 34, 30,129,224, 0, 32,160,225, 0, 4,144,224,
/* 0x0400 */ 1, 20,161,224, 34, 28,129,224, 0, 32,160,225, 0, 8,144,224,
/* 0x0410 */ 1, 24,161,224, 34, 24,129,224,140, 15, 80,224,172, 16,193,224,
/* 0x0420 */ 12, 0,144,224, 0, 0,161,226, 14,240,160,225, 0, 0, 80,227,
/* 0x0430 */ 30,255, 47, 1, 0, 48,144,229, 1, 0, 83,225, 8, 0,128, 18,
/* 0x0440 */ 251,255,255, 26, 4, 32,128,229, 30,255, 47,225, 0, 0,159,229,
/* 0x0450 */ 30,255, 47,225, 0,240,255,255, 0, 48,144,229, 4,224, 45,229,
/* 0x0460 */ 2, 0, 83,225, 4, 48,144,229, 2,224,160,225, 3,192,160, 33,
/* 0x0470 */ 2, 32,160, 33, 3, 0, 0, 42,127, 0,160,227,133,255,255,235,
/* 0x0480 */ 1, 48, 92,229, 1, 48, 65,229, 1, 32, 66,226, 1, 0,114,227,
/* 0x0490 */ 1,192,140,226, 1, 16,129,226,248,255,255, 26, 4, 32,144,229,
/* 0x04a0 */ 0, 48,144,229, 14, 32,130,224, 3, 48,110,224, 0, 48,128,229,
/* 0x04b0 */ 4, 32,128,229, 4,240,157,228,240, 64, 45,233, 0, 80,160,225,
/* 0x04c0 */ 20,208, 77,226, 1, 64,160,225, 2,112,160,225, 3, 96,160,225,
/* 0x04d0 */ 66, 0, 0,234, 4, 16,141,226, 5, 0,160,225, 12, 32,160,227,
/* 0x04e0 */ 220,255,255,235, 4,224,157,229, 8, 16,157,229, 0, 0, 94,227,
/* 0x04f0 */ 6, 0, 0, 26,248, 48,159,229, 3, 0, 81,225, 5, 0, 0, 26,
/* 0x0500 */ 0, 48,149,229, 0, 0, 83,227, 2, 0, 0, 26, 54, 0, 0,234,
/* 0x0510 */ 0, 0, 81,227, 1, 0, 0, 26,127, 0,160,227, 93,255,255,235,
/* 0x0520 */ 14, 0, 81,225,251,255,255,138, 0, 48,148,229, 3, 0, 94,225,
/* 0x0530 */ 248,255,255,138, 14, 0, 81,225, 31, 0, 0, 42, 12,192,221,229,
/* 0x0540 */ 4, 0,149,229, 4, 32,148,229, 16, 48,141,226, 16,224,141,229,
/* 0x0550 */ 0,192,141,229, 55,255, 47,225, 0, 0, 80,227,237,255,255, 26,
/* 0x0560 */ 16, 16,157,229, 4, 48,157,229, 3, 0, 81,225,233,255,255, 26,
/* 0x0570 */ 13, 32,221,229, 0, 0, 82,227, 0, 0, 86, 19, 8, 0, 0, 10,
/* 0x0580 */ 2, 12, 81,227, 2, 0, 0,138, 0, 48,148,229, 1, 0, 83,225,
/* 0x0590 */ 3, 0, 0, 26, 2, 48,160,225, 4, 0,148,229, 14, 32,221,229,
/* 0x05a0 */ 54,255, 47,225, 8, 48,157,229, 6, 0,149,232, 3, 32,130,224,
/* 0x05b0 */ 1, 16, 99,224, 6, 0,133,232, 3, 0, 0,234, 1, 32,160,225,
/* 0x05c0 */ 5, 0,160,225, 4, 16,148,229,162,255,255,235, 4, 48,157,229,
/* 0x05d0 */ 6, 0,148,232, 3, 32,130,224, 1, 16, 99,224, 6, 0,132,232,
/* 0x05e0 */ 0, 48,148,229, 0, 0, 83,227,185,255,255, 26, 20,208,141,226,
/* 0x05f0 */ 240,128,189,232, 85, 80, 88, 33,240, 79, 45,233, 1,160,160,225,
/* 0x0600 */ 28, 16,145,229, 52,208, 77,226, 0,176, 82,226, 12, 0,141,229,
/* 0x0610 */ 8, 48,141,229, 1, 96,138,224, 19, 0, 0, 10, 88, 0,157,229,
/* 0x0620 */ 0, 80,160,227, 0,224,144,229, 0,192,224,227, 28, 48,158,229,
/* 0x0630 */ 5, 32,160,225, 3, 48,142,224, 40, 16,147,229, 20, 64,147,229,
/* 0x0640 */ 14,224, 97,224, 14, 0,160,225, 4, 16,160,225, 50, 48,160,227,
/* 0x0650 */ 14, 64,132,224, 0,192,141,229, 4, 80,141,229, 20, 64,141,229,
/* 0x0660 */ 73,255,255,235, 0,128,160,225, 40, 0, 0,234,176, 49,218,225,
/* 0x0670 */ 188, 34,218,225, 3, 0, 83,227, 16,192,160, 19, 0,192,160, 3,
/* 0x0680 */ 1, 0, 66,226, 6, 16,160,225, 0, 64,224,227, 11, 80,160,225,
/* 0x0690 */ 13, 0, 0,234, 0, 48,145,229, 1, 0, 83,227, 8, 0, 0, 26,
/* 0x06a0 */ 20, 48,145,229, 0, 0, 83,227, 5, 0, 0, 10, 8, 32,145,229,
/* 0x06b0 */ 2, 48,131,224, 3, 0, 85,225, 3, 80,160, 49, 2, 0, 84,225,
/* 0x06c0 */ 2, 64,160, 33, 32, 16,129,226, 1, 0, 64,226, 0, 0, 80,227,
/* 0x06d0 */ 239,255,255,170,255, 78,196,227, 15, 64,196,227, 5, 80,100,224,
/* 0x06e0 */ 255, 94,133,226, 15, 80,133,226,255, 94,197,227, 15, 80,197,227,
/* 0x06f0 */ 5, 16,160,225, 12, 48,160,225, 4, 0,160,225, 0, 32,160,227,
/* 0x0700 */ 44,255,255,235, 0, 80,133,224, 0,128,100,224, 20, 80,141,229,
/* 0x0710 */ 52, 48,160,227,152, 3, 3,224, 0, 16,160,227, 32, 80,134,226,
/* 0x0720 */ 36, 48,141,229, 24, 16,141,229,169, 0, 0,234, 0, 0, 91,227,
/* 0x0730 */ 8, 0, 0, 10, 32, 48, 21,229, 6, 0, 83,227, 5, 0, 0, 26,
/* 0x0740 */ 24, 32, 21,229, 8, 0,157,229, 2, 32,136,224, 3, 16,160,227,
/* 0x0750 */ 53,255,255,235,154, 0, 0,234, 32, 48, 21,229, 1, 0, 83,227,
/* 0x0760 */ 151, 0, 0, 26, 12, 48, 21,229, 0, 0, 83,227,148, 0, 0, 10,
/* 0x0770 */ 0, 0, 91,227, 17, 0, 0, 10, 28, 48, 21,229, 0, 0, 83,227,
/* 0x0780 */ 14, 0, 0, 26, 28, 48,154,229, 24, 32, 21,229, 3, 16,160,227,
/* 0x0790 */ 3, 32,130,224, 2, 32,136,224, 8, 0,157,229, 34,255,255,235,
/* 0x07a0 */ 8, 0,157,229, 5, 16,160,227,188, 34,218,225, 30,255,255,235,
/* 0x07b0 */ 8, 0,157,229, 4, 16,160,227,186, 34,218,225, 26,255,255,235,
/* 0x07c0 */ 8, 48, 21,229,168, 34,159,229, 7, 48, 3,226, 3, 49,160,225,
/* 0x07d0 */ 50, 67,160,225, 24, 48, 21,229, 16, 32, 21,229, 3, 48,136,224,
/* 0x07e0 */ 16, 48,141,229, 16,192,157,229, 3, 58,160,225, 12, 16, 21,229,
/* 0x07f0 */ 35, 58,160,225, 7, 0, 4,226, 0, 0, 91,227, 44, 32,141,229,
/* 0x0800 */ 48,192,141,229, 3,144,130,224, 28, 0,141,229, 40, 16,141,229,
/* 0x0810 */ 12, 96, 99,224, 14, 0, 0, 10, 6, 0,160,225, 9, 16,160,225,
/* 0x0820 */ 3, 32,160,227, 16, 48,160,227,226,254,255,235, 0, 0, 86,225,
/* 0x0830 */ 82, 0, 0, 26, 92, 32,157,229, 4, 48, 20,226, 2, 48,160, 17,
/* 0x0840 */ 11, 0,160,225, 44, 16,141,226, 12, 32,157,229, 25,255,255,235,
/* 0x0850 */ 11, 0, 0,234, 28,192, 21,229, 6, 0,160,225, 12,192, 99,224,
/* 0x0860 */ 4,192,141,229, 12,192,157,229, 9, 16,160,225, 28, 32,157,229,
/* 0x0870 */ 18, 48,160,227, 0,192,141,229,195,254,255,235, 0, 0, 86,225,
/* 0x0880 */ 62, 0, 0, 26, 28, 0,157,229, 0, 48,105,226, 3,122,160,225,
/* 0x0890 */ 2, 0, 16,227, 39,122,160,225, 7, 0, 0, 10, 0, 0, 87,227,
/* 0x08a0 */ 5, 0, 0, 10, 9, 16,134,224, 7, 32,160,225, 0, 48,160,227,
/* 0x08b0 */ 1, 32, 82,226, 1, 48,193,228,251,255,255, 26, 0, 0, 91,227,
/* 0x08c0 */ 48, 0, 0, 10,185,254,255,235, 32, 48, 21,229, 32, 0,141,229,
/* 0x08d0 */ 1, 0, 83,227, 35, 0, 0, 26, 8, 48, 21,229, 1, 0, 19,227,
/* 0x08e0 */ 32, 0, 0, 10, 12, 32, 21,229, 16, 48, 21,229, 24, 16, 21,229,
/* 0x08f0 */ 3, 0, 82,225, 72, 0, 0, 26, 1, 48,130,224, 3, 48,131,226,
/* 0x0900 */ 3, 48,136,224, 3, 64,195,227, 0, 48,100,226, 3, 58,160,225,
/* 0x0910 */ 35, 58,160,225, 7, 0, 83,227, 63, 0, 0,154, 10, 0, 0,234,
/* 0x0920 */ 0,224,160,227, 3, 32,160,227, 0,192,224,227, 14, 0,160,225,
/* 0x0930 */ 1, 26,160,227, 34, 48,160,227, 0, 80,141,232,146,254,255,235,
/* 0x0940 */ 0, 32, 80,226, 59, 0, 0, 26, 6, 0, 0,234, 32, 16,157,229,
/* 0x0950 */ 32, 49,159,229, 10, 0,132,232, 4, 0,160,225, 8, 16,132,226,
/* 0x0960 */ 130,254,255,235, 61, 0, 0,234, 6, 0,160,225, 9, 16,160,225,
/* 0x0970 */ 28, 32,157,229,120,254,255,235, 0, 0, 80,227, 1, 0, 0, 10,
/* 0x0980 */ 127, 0,160,227, 67,254,255,235, 16, 32,157,229, 40,192,157,229,
/* 0x0990 */ 7, 48,137,224, 12, 16,130,224, 3, 64,134,224, 1, 0, 84,225,
/* 0x09a0 */ 7, 0, 0, 42, 1, 16,100,224, 28, 32,157,229, 4, 0,160,225,
/* 0x09b0 */ 16, 48,160,227,127,254,255,235, 0, 0, 84,225, 0, 0, 0, 10,
/* 0x09c0 */ 254,255,255,234, 24, 0,157,229, 32, 80,133,226, 1, 0,128,226,
/* 0x09d0 */ 24, 0,141,229,188, 50,218,225, 24, 16,157,229, 3, 0, 81,225,
/* 0x09e0 */ 81,255,255,186, 0, 0, 91,227, 4, 0, 0, 10,176, 49,218,225,
/* 0x09f0 */ 3, 0, 83,227, 1, 0, 0, 10, 20, 0,157,229, 71,254,255,235,
/* 0x0a00 */ 88, 32,157,229, 0, 0, 82,227, 0,128,130, 21, 24, 0,154,229,
/* 0x0a10 */ 0, 0,136,224, 52,208,141,226,240,143,189,232, 28, 48, 21,229,
/* 0x0a20 */ 0, 0, 83,227, 36,192,157, 5, 12, 48,129, 0, 8, 64,131, 2,
/* 0x0a30 */ 197,255,255, 10,185,255,255,234, 32, 16,157,229, 52, 48,159,229,
/* 0x0a40 */ 2, 64,160,225, 10, 0,130,232, 8, 16,130,226, 71,254,255,235,
/* 0x0a50 */ 4, 0,160,225, 8, 16,160,227, 5, 32,160,227, 62,254,255,235,
/* 0x0a60 */ 4, 32,160,225, 8, 0,157,229, 0, 16,160,227,110,254,255,235,
/* 0x0a70 */ 188,255,255,234, 64, 98, 81,115, 14,240,160,225,240, 71, 45,233,
/* 0x0a80 */ 12,208, 77,226, 52, 96,141,226, 0,144,160,225, 1,112,160,225,
/* 0x0a90 */ 3,128,160,225, 6, 0,160,225, 44, 16,141,226, 0, 48,160,227,
/* 0x0aa0 */ 48,160,157,229, 2, 80,160,225, 52, 64,157,229,129,254,255,235,
/* 0x0ab0 */ 60, 48,157,229, 56,192,157,229, 12,224,141,226, 4, 48, 46,229,
/* 0x0ac0 */ 12,192,100,224, 6, 32,160,225, 10, 16,160,225, 9, 48,160,225,
/* 0x0ad0 */ 5, 0,160,225, 56,192,141,229, 0,224,141,229, 52,112,141,229,
/* 0x0ae0 */ 4,128,141,229,195,254,255,235, 0, 64,160,225, 9, 16,160,227,
/* 0x0af0 */ 9, 0,160,225, 4, 32,160,225, 75,254,255,235,188, 2,218,225,
/* 0x0b00 */ 52, 32,138,226, 0, 16,160,227, 35, 0, 0,234, 0, 48,146,229,
/* 0x0b10 */ 3, 0, 83,227, 30, 0, 0, 26, 8, 48,146,229, 8, 0,157,229,
/* 0x0b20 */ 0, 16,160,227, 0, 0,131,224, 1, 32,160,225,231,253,255,235,
/* 0x0b30 */ 0, 80, 80,226, 4, 0, 0,186, 10, 16,160,225, 2, 44,160,227,
/* 0x0b40 */ 216,253,255,235, 2, 12, 80,227, 1, 0, 0, 10,127, 0,160,227,
/* 0x0b50 */ 208,253,255,235, 0,224,160,227, 14, 32,160,225, 8,192,141,226,
/* 0x0b60 */ 10, 16,160,225, 9, 48,160,225, 5, 0,160,225, 0, 80,141,232,
/* 0x0b70 */ 160,254,255,235, 7, 16,160,227, 0, 64,160,225, 8, 32,157,229,
/* 0x0b80 */ 9, 0,160,225, 40,254,255,235, 5, 0,160,225,212,253,255,235,
/* 0x0b90 */ 3, 0, 0,234, 32, 32,130,226, 1, 16,129,226, 0, 0, 81,225,
/* 0x0ba0 */ 217,255,255,186, 4, 0,160,225, 12,208,141,226,240,135,189,232
};

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/* armeb.v4a-linux.elf-fold.h
created from armeb.v4a-linux.elf-fold.bin, 2756 (0xac4) bytes
created from armeb.v4a-linux.elf-fold.bin, 2836 (0xb14) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_SIZE 2756
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_ADLER32 0x2e627849
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_CRC32 0x39f2519d
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_SIZE 2836
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_ADLER32 0x7151991c
#define STUB_ARMEB_V4A_LINUX_ELF_FOLD_CRC32 0xf6fff8ad
unsigned char stub_armeb_v4a_linux_elf_fold[2756] = {
unsigned char stub_armeb_v4a_linux_elf_fold[2836] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 2, 1, 97, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 0, 2, 0, 40, 0, 0, 0, 1, 0, 0,128,128, 0, 0, 0, 52,
/* 0x0020 */ 0, 0, 0, 0, 0, 0, 0, 2, 0, 52, 0, 32, 0, 2, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,128, 0,
/* 0x0040 */ 0, 0,128, 0, 0, 0, 10,196, 0, 0, 10,196, 0, 0, 0, 5,
/* 0x0050 */ 0, 0,128, 0, 0, 0, 0, 1, 0, 0, 10,196, 0, 0, 0, 0,
/* 0x0040 */ 0, 0,128, 0, 0, 0, 11, 20, 0, 0, 11, 20, 0, 0, 0, 5,
/* 0x0050 */ 0, 0,128, 0, 0, 0, 0, 1, 0, 0, 11, 20, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 0, 0, 0, 34,232,189, 31,192,225,160, 16, 13,226, 77,218, 1,
@ -50,7 +50,7 @@ unsigned char stub_armeb_v4a_linux_elf_fold[2756] = {
/* 0x00b0 */ 228,145, 48, 4,227, 83, 0, 0,228,128, 48, 4, 26,255,255,251,
/* 0x00c0 */ 225,160, 80, 1,232,177, 0, 12,227, 82, 0, 0,232,160, 0, 12,
/* 0x00d0 */ 26,255,255,251,225,160, 96, 1,225,160,144, 0,227,160, 42, 1,
/* 0x00e0 */ 225,160, 16, 0,225,160, 0, 14,226, 66, 32, 1,235, 0, 0,115,
/* 0x00e0 */ 225,160, 16, 0,225,160, 0, 14,226, 66, 32, 1,235, 0, 0,120,
/* 0x00f0 */ 227,112, 10, 1, 33,160, 16, 14, 35,160, 0, 14,224,129, 32, 0,
/* 0x0100 */ 225,160, 0, 6,227,160, 48, 0,229, 96, 48, 1,229,114, 48, 1,
/* 0x0110 */ 229, 96, 48, 1,225, 81, 0, 2, 26,255,255,251,227,160, 48, 61,
@ -60,153 +60,158 @@ unsigned char stub_armeb_v4a_linux_elf_fold[2756] = {
/* 0x0150 */ 224, 64, 48, 6,224,131, 48, 5,225,160, 16, 9,229,157, 80, 24,
/* 0x0160 */ 229,141, 0, 24,229, 49, 32, 4,225, 81, 0, 13,229, 32, 32, 4,
/* 0x0170 */ 26,255,255,251,225,160,208, 0,232,189, 12, 16,226, 77,220, 10,
/* 0x0180 */ 229,154,144, 4,225,160,128, 13,229,154,112, 0,226,143, 96,156,
/* 0x0190 */ 226,137,144, 12,233, 45, 15,248,232,189, 0, 15,235, 0, 1,251,
/* 0x01a0 */ 226,141,208, 20,226,141,220, 10,229,141, 0, 16,228,157, 64, 4,
/* 0x01b0 */ 227,160, 80, 0,233, 45, 0, 48,227,160, 48, 2,227,160, 32, 1,
/* 0x01c0 */ 227,160, 26, 1,227,160, 0, 0,235, 0, 0, 69,232,189, 0, 3,
/* 0x01d0 */ 235, 0, 0, 50,232,189, 64, 7,227,160, 48, 0,227,160, 64, 0,
/* 0x01e0 */ 227,160, 80, 0,227,160, 96, 0,227,160,128, 0,227,160,144, 0,
/* 0x01f0 */ 227,160,160, 0,227,160,176, 0,226, 77,199, 1,228, 29,112, 32,
/* 0x0200 */ 229,141,112, 0,229,157,112, 0,225, 92, 0, 13, 58,255,255,250,
/* 0x0210 */ 226,141,215, 1,227,160,112, 0,227,160,192, 0,229, 18,240, 4,
/* 0x0220 */ 47,112,114,111, 99, 47,115,101,108,102, 47,101,120,101, 0, 0,
/* 0x0230 */ 226, 3, 48,255,227, 83, 0, 81, 17,160,240, 14,225,176, 17, 33,
/* 0x0240 */ 19, 80, 0, 0, 1,160,240, 14,226, 65, 16, 1,231,144, 33, 1,
/* 0x0250 */ 226, 2, 52, 15,227, 83, 4, 11, 26, 0, 0, 4,226, 2, 52,255,
/* 0x0260 */ 224, 66, 32, 1,227,194, 36,255,225,130, 32, 3,231,128, 33, 1,
/* 0x0270 */ 227, 81, 0, 0, 26,255,255,243,225,160,240, 14,231,240, 1,240,
/* 0x0280 */ 225,160,240, 14,239,144, 0, 1,239,144, 0, 3,225,160,240, 14,
/* 0x0290 */ 239,144, 0, 4,225,160,240, 14,239,144, 0, 5,225,160,240, 14,
/* 0x02a0 */ 239,144, 0, 6,225,160,240, 14,239,144, 0, 10,225,160,240, 14,
/* 0x02b0 */ 239,144, 0, 20,225,160,240, 14,239,144, 0, 45,225,160,240, 14,
/* 0x02c0 */ 239,144, 0, 85,225,160,240, 14,239,144, 0, 91,225,160,240, 14,
/* 0x02d0 */ 239,144, 0,125,225,160,240, 14,227,160, 32, 0,239,159, 0, 2,
/* 0x02e0 */ 225,160,240, 14,233, 45, 64, 48,229,157, 80, 16,229,157, 64, 12,
/* 0x02f0 */ 225,160, 86, 37,239,144, 0,192,232,189,128, 48,229, 31, 0, 60,
/* 0x0300 */ 225,160,240, 14,233, 45, 64, 48,229, 31, 66,144,227,160, 80, 0,
/* 0x0310 */ 225,131, 48, 4,227,224, 64, 0,234,255,255,245,225,160,192, 0,
/* 0x0320 */ 224, 65, 16, 1,225,160, 32, 0,224,144, 1,128,224,161, 17,129,
/* 0x0330 */ 224,129, 30,162,225,160, 32, 0,224,144, 2, 0,224,161, 18, 1,
/* 0x0340 */ 224,129, 30, 34,225,160, 32, 0,224,144, 4, 0,224,161, 20, 1,
/* 0x0350 */ 224,129, 28, 34,225,160, 32, 0,224,144, 8, 0,224,161, 24, 1,
/* 0x0360 */ 224,129, 24, 34,224, 80, 15,140,224,193, 16,172,224,144, 0, 12,
/* 0x0370 */ 226,161, 0, 0,225,160,240, 14,227, 80, 0, 0, 1,160,240, 14,
/* 0x0380 */ 229,144, 48, 0,225, 83, 0, 1, 18,128, 0, 8, 26,255,255,251,
/* 0x0390 */ 229,128, 32, 4,225,160,240, 14,229,159, 0, 0,225,160,240, 14,
/* 0x03a0 */ 255,255,240, 0,229,144, 48, 0,225, 83, 0, 2,229,144, 48, 4,
/* 0x03b0 */ 229, 45,224, 4, 33,160,192, 3,225,160,224, 2, 33,160, 32, 2,
/* 0x03c0 */ 42, 0, 0, 3,227,160, 0,127,235,255,255,173,229, 92, 48, 1,
/* 0x03d0 */ 229, 65, 48, 1,226, 66, 32, 1,227,114, 0, 1,226,140,192, 1,
/* 0x03e0 */ 226,129, 16, 1, 26,255,255,248,229,144, 32, 4,229,144, 48, 0,
/* 0x03f0 */ 224,130, 32, 14,224,110, 48, 3,229,128, 48, 0,229,128, 32, 4,
/* 0x0400 */ 228,157,240, 4,233, 45, 64,240,225,160, 80, 0,226, 77,208, 20,
/* 0x0410 */ 225,160, 64, 1,225,160,112, 2,225,160, 96, 3,234, 0, 0, 68,
/* 0x0420 */ 226,141, 16, 4,225,160, 0, 5,227,160, 32, 12,235,255,255,220,
/* 0x0430 */ 229,157,224, 4,227, 94, 0, 0,229,157, 16, 8, 26, 0, 0, 6,
/* 0x0440 */ 229,159, 49, 0,225, 81, 0, 3, 26, 0, 0, 5,229,149, 48, 0,
/* 0x0450 */ 227, 83, 0, 0, 26, 0, 0, 2,234, 0, 0, 56,227, 81, 0, 0,
/* 0x0460 */ 26, 0, 0, 1,227,160, 0,127,235,255,255,133,225, 81, 0, 14,
/* 0x0470 */ 138,255,255,251,229,148, 48, 0,225, 94, 0, 3,138,255,255,248,
/* 0x0480 */ 225, 81, 0, 14, 42, 0, 0, 33,229,221,192, 12,229,149, 0, 4,
/* 0x0490 */ 229,148, 32, 4,226,141, 48, 16,229,141,224, 16,229,141,192, 0,
/* 0x04a0 */ 225,160,224, 15,225,160,240, 7,227, 80, 0, 0, 26,255,255,236,
/* 0x04b0 */ 229,157, 16, 16,229,157, 48, 4,225, 81, 0, 3, 26,255,255,232,
/* 0x04c0 */ 229,221, 32, 13,227, 82, 0, 0, 19, 86, 0, 0, 10, 0, 0, 9,
/* 0x04d0 */ 227, 81, 12, 2,138, 0, 0, 2,229,148, 48, 0,225, 83, 0, 1,
/* 0x04e0 */ 26, 0, 0, 4,225,160, 48, 2,229,148, 0, 4,229,221, 32, 14,
/* 0x04f0 */ 225,160,224, 15,225,160,240, 6,229,157, 48, 8,232,149, 0, 6,
/* 0x0500 */ 224,130, 32, 3,224, 99, 16, 1,232,133, 0, 6,234, 0, 0, 3,
/* 0x0510 */ 225,160, 32, 1,225,160, 0, 5,229,148, 16, 4,235,255,255,160,
/* 0x0520 */ 229,157, 48, 4,232,148, 0, 6,224,130, 32, 3,224, 99, 16, 1,
/* 0x0530 */ 232,132, 0, 6,229,148, 48, 0,227, 83, 0, 0, 26,255,255,183,
/* 0x0540 */ 226,141,208, 20,232,189,128,240, 33, 88, 80, 85,233, 45, 79,240,
/* 0x0550 */ 225,160,128, 1,225,216,193,176,229,145, 16, 28,225,216,226,188,
/* 0x0560 */ 226, 77,208, 56,227, 92, 0, 2,224,136, 80, 1,229,141, 0, 16,
/* 0x0570 */ 3,160,192, 16, 19,160,192, 0,226, 78,224, 1,225,160, 16, 5,
/* 0x0580 */ 227,224, 64, 0,227,160, 0, 0,229,141, 32, 12,229,141, 48, 8,
/* 0x0590 */ 234, 0, 0, 13,229,145, 48, 0,227, 83, 0, 1, 26, 0, 0, 8,
/* 0x05a0 */ 229,145, 48, 20,227, 83, 0, 0, 10, 0, 0, 5,229,145, 32, 8,
/* 0x05b0 */ 224,131, 48, 2,225, 80, 0, 3, 49,160, 0, 3,225, 84, 0, 2,
/* 0x05c0 */ 33,160, 64, 2,226,129, 16, 32,226, 78,224, 1,227, 94, 0, 0,
/* 0x05d0 */ 170,255,255,239,227,196, 78,255,227,196, 64, 15,224,100, 48, 0,
/* 0x05e0 */ 226,131, 62,255,226,131, 48, 15,227,195, 62,255,227,195, 48, 15,
/* 0x05f0 */ 229,141, 48, 40,225,160, 0, 4,225,160, 48, 12,229,157, 16, 40,
/* 0x0600 */ 227,160, 32, 0,235,255,255, 62,227,160, 48, 52,224,100,144, 0,
/* 0x0610 */ 224, 3, 3,153,229,141, 0, 28,226,133, 80, 32,227,160, 0, 0,
/* 0x0620 */ 229,141, 48, 36,229,141, 0, 24,234, 0, 0,171,229,157, 16, 12,
/* 0x0630 */ 227, 81, 0, 0, 10, 0, 0, 8,229, 21, 48, 32,227, 83, 0, 6,
/* 0x0640 */ 26, 0, 0, 5,229, 21, 32, 24,229,157, 0, 8,224,137, 32, 2,
/* 0x0650 */ 227,160, 16, 3,235,255,255, 71,234, 0, 0,155,229, 21, 48, 32,
/* 0x0660 */ 227, 83, 0, 1, 26, 0, 0,152,229, 21, 48, 12,227, 83, 0, 0,
/* 0x0670 */ 10, 0, 0,149,229,157, 32, 12,227, 82, 0, 0, 10, 0, 0, 17,
/* 0x0680 */ 229, 21, 48, 28,227, 83, 0, 0, 26, 0, 0, 14,229,152, 48, 28,
/* 0x0690 */ 229, 21, 32, 24,224,130, 32, 3,224,137, 32, 2,227,160, 16, 3,
/* 0x06a0 */ 229,157, 0, 8,235,255,255, 51,229,157, 0, 8,227,160, 16, 5,
/* 0x06b0 */ 225,216, 34,188,235,255,255, 47,229,157, 0, 8,227,160, 16, 4,
/* 0x06c0 */ 225,216, 34,186,235,255,255, 43,229, 21, 48, 8,229,159, 34,180,
/* 0x06d0 */ 226, 3, 48, 7,225,160, 49, 3,225,160, 67, 50,229, 21, 48, 24,
/* 0x06e0 */ 224,137, 48, 3,229,141, 48, 20,229,157,192, 20,229,157, 0, 12,
/* 0x06f0 */ 229, 21, 48, 16,225,160, 42, 12,229, 21, 16, 12,225,160, 42, 34,
/* 0x0700 */ 227, 80, 0, 0,229,141, 48, 48,229,141,192, 52,224,131,160, 2,
/* 0x0710 */ 226, 4,176, 7,229,141, 16, 44,224, 98, 96, 12, 10, 0, 0, 14,
/* 0x0720 */ 225,160, 0, 6,225,160, 16, 10,227,160, 32, 3,227,160, 48, 16,
/* 0x0730 */ 235,255,254,243,225, 86, 0, 0, 26, 0, 0, 82,229,157, 32, 96,
/* 0x0740 */ 226, 20, 48, 4, 17,160, 48, 2,229,157, 0, 12,226,141, 16, 48,
/* 0x0750 */ 229,157, 32, 16,235,255,255, 42,234, 0, 0, 11,229, 21,192, 28,
/* 0x0760 */ 224, 98,192, 12,229,141,192, 4,229,157,192, 16,225,160, 0, 6,
/* 0x0770 */ 225,160, 16, 10,225,160, 32, 11,227,160, 48, 18,229,141,192, 0,
/* 0x0780 */ 235,255,254,215,225, 86, 0, 0, 26, 0, 0, 62,226,106, 48, 0,
/* 0x0790 */ 225,160,122, 3,227, 27, 0, 2,225,160,122, 39, 10, 0, 0, 7,
/* 0x07a0 */ 227, 87, 0, 0, 10, 0, 0, 5,224,134, 16, 10,225,160, 32, 7,
/* 0x07b0 */ 227,160, 48, 0,226, 82, 32, 1,228,193, 48, 1, 26,255,255,251,
/* 0x07c0 */ 229,157, 0, 12,227, 80, 0, 0, 10, 0, 0, 48,235,255,254,202,
/* 0x07d0 */ 229, 21, 48, 32,227, 83, 0, 1,229,141, 0, 32, 26, 0, 0, 35,
/* 0x07e0 */ 229, 21, 48, 8,227, 19, 0, 1, 10, 0, 0, 32,229, 21, 32, 12,
/* 0x07f0 */ 229, 21, 48, 16,225, 82, 0, 3,229, 21, 16, 24, 26, 0, 0, 74,
/* 0x0800 */ 224,130, 48, 1,226,131, 48, 3,224,137, 48, 3,227,195, 64, 3,
/* 0x0810 */ 226,100, 48, 0,225,160, 58, 3,225,160, 58, 35,227, 83, 0, 7,
/* 0x0820 */ 154, 0, 0, 65,234, 0, 0, 10,227,160,224, 0,227,160, 32, 3,
/* 0x0830 */ 227,224,192, 0,225,160, 0, 14,227,160, 26, 1,227,160, 48, 34,
/* 0x0840 */ 232,141, 80, 0,235,255,254,166,226, 80, 32, 0, 26, 0, 0, 61,
/* 0x0850 */ 234, 0, 0, 6,229,157, 16, 32,229,159, 49, 44,232,132, 0, 10,
/* 0x0860 */ 225,160, 0, 4,226,132, 16, 8,235,255,254,154,234, 0, 0, 64,
/* 0x0870 */ 225,160, 0, 6,225,160, 16, 10,225,160, 32, 11,235,255,254,147,
/* 0x0880 */ 227, 80, 0, 0, 10, 0, 0, 1,227,160, 0,127,235,255,254,124,
/* 0x0890 */ 229,157, 32, 20,229,157,192, 44,224,138, 48, 7,224,130, 16, 12,
/* 0x08a0 */ 224,134, 64, 3,225, 84, 0, 1, 42, 0, 0, 7,224,100, 16, 1,
/* 0x08b0 */ 225,160, 32, 11,225,160, 0, 4,227,160, 48, 16,235,255,254,144,
/* 0x08c0 */ 225, 84, 0, 0, 10, 0, 0, 0,234,255,255,254,229,157, 0, 24,
/* 0x08d0 */ 226,128, 0, 1,229,141, 0, 24,226,133, 80, 32,225,216, 50,188,
/* 0x08e0 */ 229,157, 16, 24,225, 81, 0, 3,186,255,255, 79,229,157, 32, 12,
/* 0x08f0 */ 227, 82, 0, 0, 10, 0, 0, 5,225,216, 49,176,227, 83, 0, 3,
/* 0x0900 */ 21,157, 48, 40, 21,157,192, 28, 16,131, 0, 12, 27,255,254,105,
/* 0x0910 */ 229,157, 0, 92,227, 80, 0, 0, 21,128,144, 0,229,152, 0, 24,
/* 0x0920 */ 224,137, 0, 0,226,141,208, 56,232,189,143,240,229, 21, 48, 28,
/* 0x0930 */ 227, 83, 0, 0, 5,157, 32, 36, 0,129, 48, 2, 2,131, 64, 8,
/* 0x0940 */ 10,255,255,195,234,255,255,183,229,157, 48, 32,229,130, 48, 0,
/* 0x0950 */ 229,159, 48, 52,225,160, 64, 2,226,130, 16, 8,229,130, 48, 4,
/* 0x0960 */ 235,255,254, 92,225,160, 0, 4,227,160, 16, 8,227,160, 32, 5,
/* 0x0970 */ 235,255,254, 86,225,160, 32, 4,229,157, 0, 8,227,160, 16, 0,
/* 0x0980 */ 235,255,254,124,234,255,255,185,115, 81, 98, 64,225,160,240, 14,
/* 0x0990 */ 233, 45, 71,240,226, 77,208, 12,226,141, 96, 52,225,160,144, 0,
/* 0x09a0 */ 225,160,112, 1,225,160,128, 3,225,160, 0, 6,226,141, 16, 44,
/* 0x09b0 */ 227,160, 48, 0,229,157,160, 48,225,160, 80, 2,229,157, 64, 52,
/* 0x09c0 */ 235,255,254,143,229,157, 48, 60,226,141,224, 12,229,157,192, 56,
/* 0x09d0 */ 229, 46, 48, 4,224,100,192, 12,225,160, 32, 6,225,160, 16, 10,
/* 0x09e0 */ 225,160, 48, 9,225,160, 0, 5,229,141,192, 56,229,141,224, 0,
/* 0x09f0 */ 229,141,112, 52,229,141,128, 4,235,255,254,211,225,160, 64, 0,
/* 0x0a00 */ 227,160, 16, 9,225,160, 0, 9,225,160, 32, 4,235,255,254, 89,
/* 0x0a10 */ 225,218, 2,188,226,138, 32, 52,227,160, 16, 0,234, 0, 0, 35,
/* 0x0a20 */ 229,146, 48, 0,227, 83, 0, 3, 26, 0, 0, 30,229,146, 48, 8,
/* 0x0a30 */ 229,157, 0, 8,227,160, 16, 0,224,131, 0, 0,225,160, 32, 1,
/* 0x0a40 */ 235,255,254, 20,226, 80, 80, 0,186, 0, 0, 4,225,160, 16, 10,
/* 0x0a50 */ 227,160, 44, 2,235,255,254, 11,227, 80, 12, 2, 10, 0, 0, 1,
/* 0x0a60 */ 227,160, 0,127,235,255,254, 6,227,160,224, 0,225,160, 32, 14,
/* 0x0a70 */ 226,141,192, 8,225,160, 16, 10,225,160, 48, 9,225,160, 0, 5,
/* 0x0a80 */ 232,141, 80, 0,235,255,254,176,227,160, 16, 7,225,160, 64, 0,
/* 0x0a90 */ 229,157, 32, 8,225,160, 0, 9,235,255,254, 54,225,160, 0, 5,
/* 0x0aa0 */ 235,255,253,254,234, 0, 0, 3,226,130, 32, 32,226,129, 16, 1,
/* 0x0ab0 */ 225, 81, 0, 0,186,255,255,217,225,160, 0, 4,226,141,208, 12,
/* 0x0ac0 */ 232,189,135,240
/* 0x0180 */ 229,154,144, 4,225,160,128, 13,229,154,112, 0,226,143, 96,176,
/* 0x0190 */ 226,137,144, 12,233, 45, 15,248,232,189, 0, 15,235, 0, 2, 15,
/* 0x01a0 */ 226,141,208, 20,226,141,220, 10,229,141, 0, 16,229,155, 16, 92,
/* 0x01b0 */ 229,155, 32, 60,225,160, 0, 11,224, 65, 16, 2,235, 0, 0, 70,
/* 0x01c0 */ 228,157, 64, 4,227,160, 80, 0,233, 45, 0, 48,227,160, 48, 2,
/* 0x01d0 */ 227,160, 32, 1,227,160, 26, 1,227,160, 0, 0,235, 0, 0, 69,
/* 0x01e0 */ 232,189, 0, 3,235, 0, 0, 50,232,189, 64, 7,227,160, 48, 0,
/* 0x01f0 */ 227,160, 64, 0,227,160, 80, 0,227,160, 96, 0,227,160,128, 0,
/* 0x0200 */ 227,160,144, 0,227,160,160, 0,227,160,176, 0,226, 77,199, 1,
/* 0x0210 */ 228, 29,112, 32,229,141,112, 0,229,157,112, 0,225, 92, 0, 13,
/* 0x0220 */ 58,255,255,250,226,141,215, 1,227,160,112, 0,227,160,192, 0,
/* 0x0230 */ 229, 18,240, 4, 47,112,114,111, 99, 47,115,101,108,102, 47,101,
/* 0x0240 */ 120,101, 0, 0,226, 3, 48,255,227, 83, 0, 81, 17,160,240, 14,
/* 0x0250 */ 225,176, 17, 33, 19, 80, 0, 0, 1,160,240, 14,226, 65, 16, 1,
/* 0x0260 */ 231,144, 33, 1,226, 2, 52, 15,227, 83, 4, 11, 26, 0, 0, 4,
/* 0x0270 */ 226, 2, 52,255,224, 66, 32, 1,227,194, 36,255,225,130, 32, 3,
/* 0x0280 */ 231,128, 33, 1,227, 81, 0, 0, 26,255,255,243,225,160,240, 14,
/* 0x0290 */ 231,240, 1,240,225,160,240, 14,239,144, 0, 1,239,144, 0, 3,
/* 0x02a0 */ 225,160,240, 14,239,144, 0, 4,225,160,240, 14,239,144, 0, 5,
/* 0x02b0 */ 225,160,240, 14,239,144, 0, 6,225,160,240, 14,239,144, 0, 10,
/* 0x02c0 */ 225,160,240, 14,239,144, 0, 20,225,160,240, 14,239,144, 0, 45,
/* 0x02d0 */ 225,160,240, 14,239,144, 0, 85,225,160,240, 14,239,144, 0, 91,
/* 0x02e0 */ 225,160,240, 14,239,144, 0,125,225,160,240, 14,227,160, 32, 0,
/* 0x02f0 */ 239,159, 0, 2,225,160,240, 14,233, 45, 64, 48,229,157, 80, 16,
/* 0x0300 */ 229,157, 64, 12,225,160, 86, 37,239,144, 0,192,232,189,128, 48,
/* 0x0310 */ 229, 31, 0, 60,225,160,240, 14,233, 45, 64, 48,229, 31, 66,164,
/* 0x0320 */ 227,160, 80, 0,225,131, 48, 4,227,224, 64, 0,234,255,255,245,
/* 0x0330 */ 225,160,192, 0,224, 65, 16, 1,225,160, 32, 0,224,144, 1,128,
/* 0x0340 */ 224,161, 17,129,224,129, 30,162,225,160, 32, 0,224,144, 2, 0,
/* 0x0350 */ 224,161, 18, 1,224,129, 30, 34,225,160, 32, 0,224,144, 4, 0,
/* 0x0360 */ 224,161, 20, 1,224,129, 28, 34,225,160, 32, 0,224,144, 8, 0,
/* 0x0370 */ 224,161, 24, 1,224,129, 24, 34,224, 80, 15,140,224,193, 16,172,
/* 0x0380 */ 224,144, 0, 12,226,161, 0, 0,225,160,240, 14,227, 80, 0, 0,
/* 0x0390 */ 1,160,240, 14,229,144, 48, 0,225, 83, 0, 1, 18,128, 0, 8,
/* 0x03a0 */ 26,255,255,251,229,128, 32, 4,225,160,240, 14,229,159, 0, 0,
/* 0x03b0 */ 225,160,240, 14,255,255,240, 0,229,144, 48, 0,225, 83, 0, 2,
/* 0x03c0 */ 229,144, 48, 4,229, 45,224, 4, 33,160,192, 3,225,160,224, 2,
/* 0x03d0 */ 33,160, 32, 2, 42, 0, 0, 3,227,160, 0,127,235,255,255,173,
/* 0x03e0 */ 229, 92, 48, 1,229, 65, 48, 1,226, 66, 32, 1,227,114, 0, 1,
/* 0x03f0 */ 226,140,192, 1,226,129, 16, 1, 26,255,255,248,229,144, 32, 4,
/* 0x0400 */ 229,144, 48, 0,224,130, 32, 14,224,110, 48, 3,229,128, 48, 0,
/* 0x0410 */ 229,128, 32, 4,228,157,240, 4,233, 45, 64,240,225,160, 80, 0,
/* 0x0420 */ 226, 77,208, 20,225,160, 64, 1,225,160,112, 2,225,160, 96, 3,
/* 0x0430 */ 234, 0, 0, 68,226,141, 16, 4,225,160, 0, 5,227,160, 32, 12,
/* 0x0440 */ 235,255,255,220,229,157,224, 4,227, 94, 0, 0,229,157, 16, 8,
/* 0x0450 */ 26, 0, 0, 6,229,159, 49, 0,225, 81, 0, 3, 26, 0, 0, 5,
/* 0x0460 */ 229,149, 48, 0,227, 83, 0, 0, 26, 0, 0, 2,234, 0, 0, 56,
/* 0x0470 */ 227, 81, 0, 0, 26, 0, 0, 1,227,160, 0,127,235,255,255,133,
/* 0x0480 */ 225, 81, 0, 14,138,255,255,251,229,148, 48, 0,225, 94, 0, 3,
/* 0x0490 */ 138,255,255,248,225, 81, 0, 14, 42, 0, 0, 33,229,221,192, 12,
/* 0x04a0 */ 229,149, 0, 4,229,148, 32, 4,226,141, 48, 16,229,141,224, 16,
/* 0x04b0 */ 229,141,192, 0,225,160,224, 15,225,160,240, 7,227, 80, 0, 0,
/* 0x04c0 */ 26,255,255,236,229,157, 16, 16,229,157, 48, 4,225, 81, 0, 3,
/* 0x04d0 */ 26,255,255,232,229,221, 32, 13,227, 82, 0, 0, 19, 86, 0, 0,
/* 0x04e0 */ 10, 0, 0, 9,227, 81, 12, 2,138, 0, 0, 2,229,148, 48, 0,
/* 0x04f0 */ 225, 83, 0, 1, 26, 0, 0, 4,225,160, 48, 2,229,148, 0, 4,
/* 0x0500 */ 229,221, 32, 14,225,160,224, 15,225,160,240, 6,229,157, 48, 8,
/* 0x0510 */ 232,149, 0, 6,224,130, 32, 3,224, 99, 16, 1,232,133, 0, 6,
/* 0x0520 */ 234, 0, 0, 3,225,160, 32, 1,225,160, 0, 5,229,148, 16, 4,
/* 0x0530 */ 235,255,255,160,229,157, 48, 4,232,148, 0, 6,224,130, 32, 3,
/* 0x0540 */ 224, 99, 16, 1,232,132, 0, 6,229,148, 48, 0,227, 83, 0, 0,
/* 0x0550 */ 26,255,255,183,226,141,208, 20,232,189,128,240, 33, 88, 80, 85,
/* 0x0560 */ 233, 45, 79,240,225,160,160, 1,229,145, 16, 28,226, 77,208, 52,
/* 0x0570 */ 226, 82,176, 0,229,141, 0, 12,229,141, 48, 8,224,138, 96, 1,
/* 0x0580 */ 10, 0, 0, 19,229,157, 0, 88,229,144,224, 0,229,158, 48, 28,
/* 0x0590 */ 224,142, 48, 3,229,147, 32, 40,229,147, 80, 20,224, 98,224, 14,
/* 0x05a0 */ 227,160, 64, 0,225,160, 16, 5,227,224,192, 0,224,133, 80, 14,
/* 0x05b0 */ 225,160, 0, 14,225,160, 32, 4,227,160, 48, 50,229,141,192, 0,
/* 0x05c0 */ 229,141, 64, 4,229,141, 80, 20,235,255,255, 74,225,160,128, 0,
/* 0x05d0 */ 234, 0, 0, 40,225,218, 49,176,225,218, 34,188,227, 83, 0, 3,
/* 0x05e0 */ 19,160,192, 16, 3,160,192, 0,226, 66, 0, 1,225,160, 16, 6,
/* 0x05f0 */ 227,224, 64, 0,225,160, 80, 11,234, 0, 0, 13,229,145, 48, 0,
/* 0x0600 */ 227, 83, 0, 1, 26, 0, 0, 8,229,145, 48, 20,227, 83, 0, 0,
/* 0x0610 */ 10, 0, 0, 5,229,145, 32, 8,224,131, 48, 2,225, 85, 0, 3,
/* 0x0620 */ 49,160, 80, 3,225, 84, 0, 2, 33,160, 64, 2,226,129, 16, 32,
/* 0x0630 */ 226, 64, 0, 1,227, 80, 0, 0,170,255,255,239,227,196, 78,255,
/* 0x0640 */ 227,196, 64, 15,224,100, 80, 5,226,133, 94,255,226,133, 80, 15,
/* 0x0650 */ 227,197, 94,255,227,197, 80, 15,225,160, 16, 5,225,160, 48, 12,
/* 0x0660 */ 225,160, 0, 4,227,160, 32, 0,235,255,255, 42,224,133, 80, 0,
/* 0x0670 */ 229,141, 80, 20,224,100,128, 0,227,160, 48, 52,224, 3, 3,152,
/* 0x0680 */ 227,160, 16, 0,226,134, 80, 32,229,141, 48, 36,229,141, 16, 24,
/* 0x0690 */ 234, 0, 0,169,227, 91, 0, 0, 10, 0, 0, 8,229, 21, 48, 32,
/* 0x06a0 */ 227, 83, 0, 6, 26, 0, 0, 5,229, 21, 32, 24,229,157, 0, 8,
/* 0x06b0 */ 224,136, 32, 2,227,160, 16, 3,235,255,255, 51,234, 0, 0,154,
/* 0x06c0 */ 229, 21, 48, 32,227, 83, 0, 1, 26, 0, 0,151,229, 21, 48, 12,
/* 0x06d0 */ 227, 83, 0, 0, 10, 0, 0,148,227, 91, 0, 0, 10, 0, 0, 17,
/* 0x06e0 */ 229, 21, 48, 28,227, 83, 0, 0, 26, 0, 0, 14,229,154, 48, 28,
/* 0x06f0 */ 229, 21, 32, 24,224,130, 32, 3,224,136, 32, 2,227,160, 16, 3,
/* 0x0700 */ 229,157, 0, 8,235,255,255, 32,229,157, 0, 8,227,160, 16, 5,
/* 0x0710 */ 225,218, 34,188,235,255,255, 28,229,157, 0, 8,227,160, 16, 4,
/* 0x0720 */ 225,218, 34,186,235,255,255, 24,229, 21, 48, 8,229,159, 34,164,
/* 0x0730 */ 226, 3, 48, 7,225,160, 49, 3,225,160, 67, 50,229, 21, 48, 24,
/* 0x0740 */ 224,136, 48, 3,229,141, 48, 16,229,157,192, 16,229, 21, 48, 16,
/* 0x0750 */ 225,160, 42, 12,229, 21, 16, 12,225,160, 42, 34,226, 4, 0, 7,
/* 0x0760 */ 227, 91, 0, 0,229,141, 48, 44,229,141,192, 48,224,131,144, 2,
/* 0x0770 */ 229,141, 0, 28,229,141, 16, 40,224, 98, 96, 12, 10, 0, 0, 14,
/* 0x0780 */ 225,160, 0, 6,225,160, 16, 9,227,160, 32, 3,227,160, 48, 16,
/* 0x0790 */ 235,255,254,224,225, 86, 0, 0, 26, 0, 0, 82,229,157, 32, 92,
/* 0x07a0 */ 226, 20, 48, 4, 17,160, 48, 2,225,160, 0, 11,226,141, 16, 44,
/* 0x07b0 */ 229,157, 32, 12,235,255,255, 23,234, 0, 0, 11,229, 21,192, 28,
/* 0x07c0 */ 224, 98,192, 12,229,141,192, 4,229,157,192, 12,225,160, 0, 6,
/* 0x07d0 */ 225,160, 16, 9,229,157, 32, 28,227,160, 48, 18,229,141,192, 0,
/* 0x07e0 */ 235,255,254,196,225, 86, 0, 0, 26, 0, 0, 62,229,157, 0, 28,
/* 0x07f0 */ 226,105, 48, 0,225,160,122, 3,227, 16, 0, 2,225,160,122, 39,
/* 0x0800 */ 10, 0, 0, 7,227, 87, 0, 0, 10, 0, 0, 5,224,134, 16, 9,
/* 0x0810 */ 225,160, 32, 7,227,160, 48, 0,226, 82, 32, 1,228,193, 48, 1,
/* 0x0820 */ 26,255,255,251,227, 91, 0, 0, 10, 0, 0, 48,235,255,254,183,
/* 0x0830 */ 229, 21, 48, 32,227, 83, 0, 1,229,141, 0, 32, 26, 0, 0, 35,
/* 0x0840 */ 229, 21, 48, 8,227, 19, 0, 1, 10, 0, 0, 32,229, 21, 32, 12,
/* 0x0850 */ 229, 21, 48, 16,225, 82, 0, 3,229, 21, 16, 24, 26, 0, 0, 71,
/* 0x0860 */ 224,130, 48, 1,226,131, 48, 3,224,136, 48, 3,227,195, 64, 3,
/* 0x0870 */ 226,100, 48, 0,225,160, 58, 3,225,160, 58, 35,227, 83, 0, 7,
/* 0x0880 */ 154, 0, 0, 62,234, 0, 0, 10,227,160,224, 0,227,160, 32, 3,
/* 0x0890 */ 227,224,192, 0,225,160, 0, 14,227,160, 26, 1,227,160, 48, 34,
/* 0x08a0 */ 232,141, 80, 0,235,255,254,147,226, 80, 32, 0, 26, 0, 0, 58,
/* 0x08b0 */ 234, 0, 0, 6,229,157, 16, 32,229,159, 49, 28,232,132, 0, 10,
/* 0x08c0 */ 225,160, 0, 4,226,132, 16, 8,235,255,254,135,234, 0, 0, 60,
/* 0x08d0 */ 225,160, 0, 6,225,160, 16, 9,229,157, 32, 28,235,255,254,128,
/* 0x08e0 */ 227, 80, 0, 0, 10, 0, 0, 1,227,160, 0,127,235,255,254,105,
/* 0x08f0 */ 229,157, 32, 16,229,157,192, 40,224,137, 48, 7,224,130, 16, 12,
/* 0x0900 */ 224,134, 64, 3,225, 84, 0, 1, 42, 0, 0, 7,224,100, 16, 1,
/* 0x0910 */ 229,157, 32, 28,225,160, 0, 4,227,160, 48, 16,235,255,254,125,
/* 0x0920 */ 225, 84, 0, 0, 10, 0, 0, 0,234,255,255,254,229,157, 0, 24,
/* 0x0930 */ 226,128, 0, 1,229,141, 0, 24,226,133, 80, 32,225,218, 50,188,
/* 0x0940 */ 229,157, 16, 24,225, 81, 0, 3,186,255,255, 81,227, 91, 0, 0,
/* 0x0950 */ 10, 0, 0, 3,225,218, 49,176,227, 83, 0, 3, 21,157, 0, 20,
/* 0x0960 */ 27,255,254, 89,229,157, 32, 88,227, 82, 0, 0, 21,130,128, 0,
/* 0x0970 */ 229,154, 0, 24,224,136, 0, 0,226,141,208, 52,232,189,143,240,
/* 0x0980 */ 229, 21, 48, 28,227, 83, 0, 0, 5,157,192, 36, 0,129, 48, 12,
/* 0x0990 */ 2,131, 64, 8, 10,255,255,198,234,255,255,186,229,157, 16, 32,
/* 0x09a0 */ 229,159, 48, 52,225,160, 64, 2,232,130, 0, 10,226,130, 16, 8,
/* 0x09b0 */ 235,255,254, 77,225,160, 0, 4,227,160, 16, 8,227,160, 32, 5,
/* 0x09c0 */ 235,255,254, 71,225,160, 32, 4,229,157, 0, 8,227,160, 16, 0,
/* 0x09d0 */ 235,255,254,109,234,255,255,189,115, 81, 98, 64,225,160,240, 14,
/* 0x09e0 */ 233, 45, 71,240,226, 77,208, 12,226,141, 96, 52,225,160,144, 0,
/* 0x09f0 */ 225,160,112, 1,225,160,128, 3,225,160, 0, 6,226,141, 16, 44,
/* 0x0a00 */ 227,160, 48, 0,229,157,160, 48,225,160, 80, 2,229,157, 64, 52,
/* 0x0a10 */ 235,255,254,128,229,157, 48, 60,226,141,224, 12,229,157,192, 56,
/* 0x0a20 */ 229, 46, 48, 4,224,100,192, 12,225,160, 32, 6,225,160, 16, 10,
/* 0x0a30 */ 225,160, 48, 9,225,160, 0, 5,229,141,192, 56,229,141,224, 0,
/* 0x0a40 */ 229,141,112, 52,229,141,128, 4,235,255,254,196,225,160, 64, 0,
/* 0x0a50 */ 227,160, 16, 9,225,160, 0, 9,225,160, 32, 4,235,255,254, 74,
/* 0x0a60 */ 225,218, 2,188,226,138, 32, 52,227,160, 16, 0,234, 0, 0, 35,
/* 0x0a70 */ 229,146, 48, 0,227, 83, 0, 3, 26, 0, 0, 30,229,146, 48, 8,
/* 0x0a80 */ 229,157, 0, 8,227,160, 16, 0,224,131, 0, 0,225,160, 32, 1,
/* 0x0a90 */ 235,255,254, 5,226, 80, 80, 0,186, 0, 0, 4,225,160, 16, 10,
/* 0x0aa0 */ 227,160, 44, 2,235,255,253,252,227, 80, 12, 2, 10, 0, 0, 1,
/* 0x0ab0 */ 227,160, 0,127,235,255,253,247,227,160,224, 0,225,160, 32, 14,
/* 0x0ac0 */ 226,141,192, 8,225,160, 16, 10,225,160, 48, 9,225,160, 0, 5,
/* 0x0ad0 */ 232,141, 80, 0,235,255,254,161,227,160, 16, 7,225,160, 64, 0,
/* 0x0ae0 */ 229,157, 32, 8,225,160, 0, 9,235,255,254, 39,225,160, 0, 5,
/* 0x0af0 */ 235,255,253,239,234, 0, 0, 3,226,130, 32, 32,226,129, 16, 1,
/* 0x0b00 */ 225, 81, 0, 0,186,255,255,217,225,160, 0, 4,226,141,208, 12,
/* 0x0b10 */ 232,189,135,240
};

View File

@ -1,5 +1,5 @@
/* i386-linux.elf-fold.h
created from i386-linux.elf-fold.bin, 1940 (0x794) bytes
created from i386-linux.elf-fold.bin, 1988 (0x7c4) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_I386_LINUX_ELF_FOLD_SIZE 1940
#define STUB_I386_LINUX_ELF_FOLD_ADLER32 0xbea946e7
#define STUB_I386_LINUX_ELF_FOLD_CRC32 0x0c8aec52
#define STUB_I386_LINUX_ELF_FOLD_SIZE 1988
#define STUB_I386_LINUX_ELF_FOLD_ADLER32 0x17f75ee4
#define STUB_I386_LINUX_ELF_FOLD_CRC32 0x20c136a5
unsigned char stub_i386_linux_elf_fold[1940] = {
unsigned char stub_i386_linux_elf_fold[1988] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 2, 0, 3, 0, 1, 0, 0, 0,128, 16,192, 0, 52, 0, 0, 0,
/* 0x0020 */ 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 32, 0, 2, 0, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 16,192, 0,
/* 0x0040 */ 0, 16,192, 0,148, 7, 0, 0,148, 7, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0, 16, 0, 0, 1, 0, 0, 0,148, 7, 0, 0, 0, 0, 0, 0,
/* 0x0040 */ 0, 16,192, 0,196, 7, 0, 0,196, 7, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0, 16, 0, 0, 1, 0, 0, 0,196, 7, 0, 0, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 87, 81, 80,137,230,129,236, 0, 16, 0, 0,137,231,106, 8, 89,
@ -56,7 +56,7 @@ unsigned char stub_i386_linux_elf_fold[1940] = {
/* 0x0110 */ 49,248,131,224, 4, 41,199, 90, 1,250,175,173,193,233, 2, 73,
/* 0x0120 */ 243,165,252,141, 79, 4, 49,192, 41,225,137,231,193,233, 2,243,
/* 0x0130 */ 171,137,252,137,215, 88, 93, 88, 94, 89,129,236, 0, 10, 0, 0,
/* 0x0140 */ 137,226, 81,139, 24,139, 72, 4,131,193, 12, 96, 71,232, 56, 5,
/* 0x0140 */ 137,226, 81,139, 24,139, 72, 4,131,193, 12, 96, 71,232,104, 5,
/* 0x0150 */ 0, 0, 79,137,198,137,250,137,231,185,137, 2, 0, 0, 49,192,
/* 0x0160 */ 243,171,137,252, 88, 89, 95, 91, 86, 81, 80, 82, 87, 41,237,106,
/* 0x0170 */ 2, 94,106, 1, 90,185, 0, 16, 0, 0, 41,219,104,192, 0, 0,
@ -84,78 +84,81 @@ unsigned char stub_i386_linux_elf_fold[1940] = {
/* 0x02d0 */ 255,141,101,244, 91, 94, 95,201,195,133,192,116, 13,168, 1,117,
/* 0x02e0 */ 9, 57, 16,116, 7,131,192, 8,235,247, 49,192,133,192,116, 3,
/* 0x02f0 */ 137, 72, 4,195,184, 0,240,255,255,195, 85,137,229, 87, 86, 83,
/* 0x0300 */ 131,236,112,137, 69,228,139, 77, 16,137, 85,224,139, 69, 8,139,
/* 0x0310 */ 85, 12,137, 77,212,139, 93, 20,137, 69,220,137, 85,216,137, 93,
/* 0x0320 */ 208,232,206,255,255,255,137, 69,200,247,208,137, 69,204,139,117,
/* 0x0330 */ 224,139, 69,224, 3,118, 28,102,131,120, 16, 2,139, 85,224,137,
/* 0x0340 */ 117,196, 15,148,192, 15,183,122, 44, 15,182,192,131,203,255,193,
/* 0x0350 */ 224, 4,137, 69,148,232,154,255,255,255,139, 77,200,137,248, 49,
/* 0x0360 */ 210, 72,137, 77,188,120, 30,137,249,131, 62, 1,117, 18,139, 70,
/* 0x0370 */ 8, 57,216,115, 2,137,195, 3, 70, 20, 57,194,115, 2,137,194,
/* 0x0380 */ 131,198, 32,226,228,139,125,188,106, 0,106,255, 33,223,131, 77,
/* 0x0390 */ 148, 34, 41,250,255,117,148, 43, 85,188,106, 0,141,114,255, 35,
/* 0x03a0 */ 117,188, 86, 87,232,247,253,255,255,139, 85,224, 1,198,131,196,
/* 0x03b0 */ 24, 41,248,102,131,122, 44, 0,137,117,240,137, 69,192,199, 69,
/* 0x03c0 */ 184, 0, 0, 0, 0, 15,132,128, 2, 0, 0,131,125,220, 0,116,
/* 0x03d0 */ 35,139, 77,196,131, 57, 6,117, 27,139, 93,196,186, 3, 0, 0,
/* 0x03e0 */ 0,139, 77,192, 3, 75, 8,139, 69,216,232,234,254,255,255,233,
/* 0x03f0 */ 64, 2, 0, 0,139,117,196,131, 62, 1, 15,133, 52, 2, 0, 0,
/* 0x0400 */ 131,125,220, 0,116, 71,131,126, 4, 0,117, 65,139, 69,224,186,
/* 0x0410 */ 3, 0, 0, 0,139, 77,192, 3, 78, 8, 3, 72, 28,139, 69,216,
/* 0x0420 */ 232,180,254,255,255,139, 85,224,139, 69,216, 15,183, 74, 44,186,
/* 0x0430 */ 5, 0, 0, 0,232,160,254,255,255,139, 93,224,139, 69,216,186,
/* 0x0440 */ 4, 0, 0, 0, 15,183, 75, 42,232,140,254,255,255,139,117,196,
/* 0x0450 */ 187, 64, 98, 81,115,139, 78, 24,139, 86, 16,131,225, 7,193,225,
/* 0x0460 */ 2,137, 85,232,211,235,139, 78, 20,137,216,131,224, 7,137, 69,
/* 0x0470 */ 180,139, 69,192, 3, 70, 8, 1,193,137,198,137, 77,176,139, 77,
/* 0x0480 */ 204,137, 69,236, 33,193, 41,206,131,125,220, 0,141, 60, 10,116,
/* 0x0490 */ 58,106, 0,106,255,106, 50,141, 71, 3,106, 3, 80, 86,232,253,
/* 0x04a0 */ 252,255,255,131,196, 24, 57,198, 15,133, 57, 1, 0, 0,128,227,
/* 0x04b0 */ 4,139, 69,208,117, 2, 49,192, 80,139, 69,220,255,117,228,141,
/* 0x04c0 */ 85,232,232, 50,253,255,255, 88, 90,235, 35,139, 93,196,139, 67,
/* 0x04d0 */ 4, 41,200, 80,255,117,228,106, 18,255,117,180, 87, 86,232,189,
/* 0x04e0 */ 252,255,255,131,196, 24, 57,198, 15,133,249, 0, 0, 0,137,248,
/* 0x04f0 */ 139, 85,204,247,216, 33,208,246, 69,180, 2,137, 69,144,116, 18,
/* 0x0500 */ 131,125,144, 0,141, 4, 62,116, 9,139, 77,144,198, 0, 0, 64,
/* 0x0510 */ 226,250,131,125,220, 0, 15,132,213, 0, 0, 0,139, 77,196,199,
/* 0x0520 */ 69,172, 0, 0, 0, 0,131, 57, 1, 15,133,168, 0, 0, 0,246,
/* 0x0530 */ 65, 24, 1, 15,132,158, 0, 0, 0,139, 81, 20,139, 73, 8,139,
/* 0x0540 */ 69,196,141, 28, 10, 3, 93,192, 59, 80, 16,137, 93,140,117, 14,
/* 0x0550 */ 137,216,247,216, 37,255, 15, 0, 0,131,248, 3,119, 57,107, 69,
/* 0x0560 */ 192, 52,139, 85,196,131,122, 4, 0,141, 76, 1, 12,137, 77,140,
/* 0x0570 */ 116, 37,106, 0,106,255,106, 34,106, 3,104, 0, 16, 0, 0,106,
/* 0x0580 */ 0,199, 69,172, 1, 0, 0, 0,232, 19,252,255,255,131,196, 24,
/* 0x0590 */ 133,192,137, 69,140,116, 64,139, 77,140,139, 1, 61,205,128, 97,
/* 0x05a0 */ 195,116, 6,199, 1,205,128, 97,195,131,125,172, 0,116, 18,185,
/* 0x05b0 */ 4, 0, 0, 0,186, 5, 0, 0, 0,139, 93,140,106,125, 88,205,
/* 0x05c0 */ 128,131,125,140, 0,116, 16,139, 69,216, 49,210,139, 77,140,131,
/* 0x05d0 */ 224,254,232, 2,253,255,255,137,243,137,249,139, 85,180,106,125,
/* 0x05e0 */ 88,205,128,133,192,116, 10,106,127, 91,106, 1, 88,205,128,235,
/* 0x05f0 */ 254,139, 85,144,141, 4, 23, 1,198, 59,117,176,115, 30,106, 0,
/* 0x0600 */ 106,255,106, 50,255,117,180, 41,117,176,255,117,176, 86,232,141,
/* 0x0610 */ 251,255,255,131,196, 24, 57,198,116, 26,235,254,131,125,220, 0,
/* 0x0620 */ 116, 18,141, 79, 3, 35, 77,204,131,249, 3,119, 7,137,243,106,
/* 0x0630 */ 91, 88,205,128,139,117,224,255, 69,184, 15,183, 70, 44,131, 69,
/* 0x0640 */ 196, 32, 57, 69,184, 15,140,128,253,255,255,131,125,220, 0,116,
/* 0x0650 */ 23,139, 69,224,102,131,120, 16, 3,116, 13,139, 85,240,137, 85,
/* 0x0660 */ 156,137,211,106, 45, 88,205,128,131,125,212, 0,116, 8,139, 69,
/* 0x0670 */ 192,139,117,212,137, 6,139, 85,224,139, 82, 24, 1, 85,192,139,
/* 0x0680 */ 69,192,141,101,244, 91, 94, 95,201,195, 85,137,229, 87, 86, 83,
/* 0x0690 */ 131,236, 32,199, 69,232, 0, 0, 0, 0,139, 69, 8,139,117, 16,
/* 0x06a0 */ 137, 69,236,128, 62,235,117, 6,141, 86, 2,137, 85,232,106, 0,
/* 0x06b0 */ 139,125, 28,141, 85, 24,139, 93, 32,141, 69, 32, 86,232, 55,251,
/* 0x06c0 */ 255,255,139, 69, 12, 41, 93, 36,137,250,141, 93,240,255,117,232,
/* 0x06d0 */ 137, 69, 32,139, 69, 40, 83,255,117,236,137, 69,240,141, 69, 32,
/* 0x06e0 */ 141, 79, 52, 80,137,240,137, 77,228,232, 12,252,255,255,137,193,
/* 0x06f0 */ 137, 69,224,139, 69,236,186, 9, 0, 0, 0,232,217,251,255,255,
/* 0x0700 */ 102,139, 79, 44,131,196, 24, 49,210,102,133,201,116,123,139, 69,
/* 0x0710 */ 228,131, 56, 3,117,103,139, 93,240, 49,201, 3, 88, 8,137,202,
/* 0x0720 */ 106, 5, 88,205,128,133,192,137,198,120, 21,186, 0, 2, 0, 0,
/* 0x0730 */ 137,195,137,249,106, 3, 88,205,128, 61, 0, 2, 0, 0,116, 10,
/* 0x0740 */ 106,127, 91,106, 1, 88,205,128,235,254,141, 69,240,137,250,106,
/* 0x0750 */ 0,137,243, 80,137,240,255,117,236,106, 0,232,154,251,255,255,
/* 0x0760 */ 139, 77,240,137, 69,224,139, 69,236,186, 7, 0, 0, 0,232,102,
/* 0x0770 */ 251,255,255,131,196, 16,106, 6, 88,205,128,235, 12, 66, 15,183,
/* 0x0780 */ 193,131, 69,228, 32, 57,194,124,133,139, 69,224,141,101,244, 91,
/* 0x0790 */ 94, 95,201,195
/* 0x0300 */ 131,236,108,137, 69,228,137, 85,224,139, 69, 8,139, 85, 12,139,
/* 0x0310 */ 77, 16,137, 69,220,139, 93, 20,137, 85,216,137, 77,212,137, 93,
/* 0x0320 */ 208,232,206,255,255,255,139, 85,224,137,198,247,208, 3, 82, 28,
/* 0x0330 */ 137, 69,204,131,125,220, 0,137, 85,200,116, 46,139, 77,212,139,
/* 0x0340 */ 1,139, 72, 28, 1,193, 43, 65, 40,139, 81, 20,106, 0,106,255,
/* 0x0350 */ 106, 50, 1,194,106, 0,255,113, 20, 80,137, 85,240,232, 62,254,
/* 0x0360 */ 255,255,131,196, 24,137, 69,196,235,127,139, 93,224, 49,192,102,
/* 0x0370 */ 131,123, 16, 3,139, 93,200, 15,149,192,193,224, 4,137, 69,152,
/* 0x0380 */ 139, 69,224, 15,183,120, 44,232,104,255,255,255,137,240, 49,246,
/* 0x0390 */ 199, 69,192,255,255,255,255,137,250, 74,120, 32,137,249,131, 59,
/* 0x03a0 */ 1,117, 20,139, 83, 8, 59, 85,192,115, 3,137, 85,192, 3, 83,
/* 0x03b0 */ 20, 57,214,115, 2,137,214,131,195, 32,226,226,139,125,192,106,
/* 0x03c0 */ 0,106,255, 33,199,131, 77,152, 34, 41,254,255,117,152, 41,198,
/* 0x03d0 */ 106, 0, 78, 33,198, 86, 87,232,196,253,255,255,131,196, 24, 1,
/* 0x03e0 */ 198, 41,248,137,117,240,137, 69,196,139, 77,224,199, 69,188, 0,
/* 0x03f0 */ 0, 0, 0,102,131,121, 44, 0, 15,132,125, 2, 0, 0,131,125,
/* 0x0400 */ 220, 0,116, 32,139, 93,200,131, 59, 6,117, 24,139, 77,196,186,
/* 0x0410 */ 3, 0, 0, 0, 3, 75, 8,139, 69,216,232,186,254,255,255,233,
/* 0x0420 */ 64, 2, 0, 0,139,117,200,131, 62, 1, 15,133, 52, 2, 0, 0,
/* 0x0430 */ 131,125,220, 0,116, 71,131,126, 4, 0,117, 65,139, 69,224,186,
/* 0x0440 */ 3, 0, 0, 0,139, 77,196, 3, 78, 8, 3, 72, 28,139, 69,216,
/* 0x0450 */ 232,132,254,255,255,139, 85,224,139, 69,216, 15,183, 74, 44,186,
/* 0x0460 */ 5, 0, 0, 0,232,112,254,255,255,139, 93,224,139, 69,216,186,
/* 0x0470 */ 4, 0, 0, 0, 15,183, 75, 42,232, 92,254,255,255,139,117,200,
/* 0x0480 */ 187, 64, 98, 81,115,139, 78, 24,139, 86, 16,131,225, 7,193,225,
/* 0x0490 */ 2,137, 85,232,211,235,139, 78, 20,137,216,131,224, 7,137, 69,
/* 0x04a0 */ 184,139, 69,196, 3, 70, 8, 1,193,137,198,137, 77,180,139, 77,
/* 0x04b0 */ 204,137, 69,236, 33,193, 41,206,131,125,220, 0,141, 60, 10,116,
/* 0x04c0 */ 58,106, 0,106,255,106, 50,141, 71, 3,106, 3, 80, 86,232,205,
/* 0x04d0 */ 252,255,255,131,196, 24, 57,198, 15,133, 57, 1, 0, 0,128,227,
/* 0x04e0 */ 4,139, 69,208,117, 2, 49,192, 80,139, 69,220,255,117,228,141,
/* 0x04f0 */ 85,232,232, 2,253,255,255, 88, 90,235, 35,139, 93,200,139, 67,
/* 0x0500 */ 4, 41,200, 80,255,117,228,106, 18,255,117,184, 87, 86,232,141,
/* 0x0510 */ 252,255,255,131,196, 24, 57,198, 15,133,249, 0, 0, 0,137,248,
/* 0x0520 */ 139, 85,204,247,216, 33,208,246, 69,184, 2,137, 69,148,116, 18,
/* 0x0530 */ 131,125,148, 0,141, 4, 62,116, 9,139, 77,148,198, 0, 0, 64,
/* 0x0540 */ 226,250,131,125,220, 0, 15,132,213, 0, 0, 0,139, 77,200,199,
/* 0x0550 */ 69,176, 0, 0, 0, 0,131, 57, 1, 15,133,168, 0, 0, 0,246,
/* 0x0560 */ 65, 24, 1, 15,132,158, 0, 0, 0,139, 81, 20,139, 73, 8,139,
/* 0x0570 */ 69,200,141, 28, 10, 3, 93,196, 59, 80, 16,137, 93,144,117, 14,
/* 0x0580 */ 137,216,247,216, 37,255, 15, 0, 0,131,248, 3,119, 57,107, 69,
/* 0x0590 */ 196, 52,139, 85,200,131,122, 4, 0,141, 76, 1, 12,137, 77,144,
/* 0x05a0 */ 116, 37,106, 0,106,255,106, 34,106, 3,104, 0, 16, 0, 0,106,
/* 0x05b0 */ 0,199, 69,176, 1, 0, 0, 0,232,227,251,255,255,131,196, 24,
/* 0x05c0 */ 133,192,137, 69,144,116, 64,139, 77,144,139, 1, 61,205,128, 97,
/* 0x05d0 */ 195,116, 6,199, 1,205,128, 97,195,131,125,176, 0,116, 18,185,
/* 0x05e0 */ 4, 0, 0, 0,186, 5, 0, 0, 0,139, 93,144,106,125, 88,205,
/* 0x05f0 */ 128,131,125,144, 0,116, 16,139, 69,216, 49,210,139, 77,144,131,
/* 0x0600 */ 224,254,232,210,252,255,255,137,243,137,249,139, 85,184,106,125,
/* 0x0610 */ 88,205,128,133,192,116, 10,106,127, 91,106, 1, 88,205,128,235,
/* 0x0620 */ 254,139, 85,148,141, 4, 23, 1,198, 59,117,180,115, 30,106, 0,
/* 0x0630 */ 106,255,106, 50,255,117,184, 41,117,180,255,117,180, 86,232, 93,
/* 0x0640 */ 251,255,255,131,196, 24, 57,198,116, 26,235,254,131,125,220, 0,
/* 0x0650 */ 116, 18,141, 79, 3, 35, 77,204,131,249, 3,119, 7,137,243,106,
/* 0x0660 */ 91, 88,205,128,139,117,224,255, 69,188, 15,183, 70, 44,131, 69,
/* 0x0670 */ 200, 32, 57, 69,188, 15,140,131,253,255,255,131,125,220, 0,116,
/* 0x0680 */ 23,139, 69,224,102,131,120, 16, 3,116, 13,139, 85,240,137, 85,
/* 0x0690 */ 160,137,211,106, 45, 88,205,128,131,125,212, 0,116, 8,139, 69,
/* 0x06a0 */ 196,139,117,212,137, 6,139, 85,224,139, 82, 24, 1, 85,196,139,
/* 0x06b0 */ 69,196,141,101,244, 91, 94, 95,201,195, 85,137,229, 87, 86, 83,
/* 0x06c0 */ 131,236, 32,199, 69,232, 0, 0, 0, 0,139, 69, 8,139,117, 16,
/* 0x06d0 */ 137, 69,236,128, 62,235,117, 6,141, 86, 2,137, 85,232,106, 0,
/* 0x06e0 */ 139,125, 28,141, 85, 24,139, 93, 32,141, 69, 32, 86,232, 7,251,
/* 0x06f0 */ 255,255,139, 69, 12, 41, 93, 36,137,250,141, 93,240,255,117,232,
/* 0x0700 */ 137, 69, 32,139, 69, 40, 83,255,117,236,137, 69,240,141, 69, 32,
/* 0x0710 */ 141, 79, 52, 80,137,240,137, 77,228,232,220,251,255,255,137,193,
/* 0x0720 */ 137, 69,224,139, 69,236,186, 9, 0, 0, 0,232,169,251,255,255,
/* 0x0730 */ 102,139, 79, 44,131,196, 24, 49,210,102,133,201,116,123,139, 69,
/* 0x0740 */ 228,131, 56, 3,117,103,139, 93,240, 49,201, 3, 88, 8,137,202,
/* 0x0750 */ 106, 5, 88,205,128,133,192,137,198,120, 21,186, 0, 2, 0, 0,
/* 0x0760 */ 137,195,137,249,106, 3, 88,205,128, 61, 0, 2, 0, 0,116, 10,
/* 0x0770 */ 106,127, 91,106, 1, 88,205,128,235,254,141, 69,240,137,250,106,
/* 0x0780 */ 0,137,243, 80,137,240,255,117,236,106, 0,232,106,251,255,255,
/* 0x0790 */ 139, 77,240,137, 69,224,139, 69,236,186, 7, 0, 0, 0,232, 54,
/* 0x07a0 */ 251,255,255,131,196, 16,106, 6, 88,205,128,235, 12, 66, 15,183,
/* 0x07b0 */ 193,131, 69,228, 32, 57,194,124,133,139, 69,224,141,101,244, 91,
/* 0x07c0 */ 94, 95,201,195
};

View File

@ -1,5 +1,5 @@
/* mips.r3000-linux.elf-fold.h
created from mips.r3000-linux.elf-fold.bin, 2764 (0xacc) bytes
created from mips.r3000-linux.elf-fold.bin, 2804 (0xaf4) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_SIZE 2764
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_ADLER32 0x46e35f67
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_CRC32 0xeee8f4c3
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_SIZE 2804
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_ADLER32 0x7c676a83
#define STUB_MIPS_R3000_LINUX_ELF_FOLD_CRC32 0xa0c27e28
unsigned char stub_mips_r3000_linux_elf_fold[2764] = {
unsigned char stub_mips_r3000_linux_elf_fold[2804] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 0, 2, 0, 8, 0, 0, 0, 1, 0, 16, 0,128, 0, 0, 0, 52,
/* 0x0020 */ 0, 0, 0, 0, 0, 0, 48, 1, 0, 52, 0, 32, 0, 2, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 16, 0, 0,
/* 0x0040 */ 0, 16, 0, 0, 0, 0, 10,204, 0, 0, 10,208, 0, 0, 0, 5,
/* 0x0050 */ 0, 0, 16, 0, 0, 0, 0, 1, 0, 0, 10,204, 0, 0, 0, 0,
/* 0x0040 */ 0, 16, 0, 0, 0, 0, 10,244, 0, 0, 11, 0, 0, 0, 0, 5,
/* 0x0050 */ 0, 0, 16, 0, 0, 0, 0, 1, 0, 0, 10,244, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 36, 2, 0, 0, 3,224, 0, 8, 0, 2, 18, 64, 0, 0, 0, 0,
@ -58,7 +58,7 @@ unsigned char stub_mips_r3000_linux_elf_fold[2764] = {
/* 0x0130 */ 0,162, 8, 33,160, 32, 0, 0, 39,189,254, 0, 3,128, 88, 33,
/* 0x0140 */ 2,160, 80, 33, 0, 0, 72, 33, 3,192, 64, 33, 2,192, 56, 33,
/* 0x0150 */ 3,160, 48, 33, 2, 32, 40, 33, 4, 16, 0, 1, 36, 2, 1, 96,
/* 0x0160 */ 3,226, 16, 35, 36, 66, 9, 52, 0, 64,248, 9, 2, 0, 32, 33,
/* 0x0160 */ 3,226, 16, 35, 36, 66, 9, 92, 0, 64,248, 9, 2, 0, 32, 33,
/* 0x0170 */ 39,189, 2, 0, 0, 64,240, 33,143,168, 0, 20, 0, 0, 72, 33,
/* 0x0180 */ 175,168, 0, 16,175,169, 0, 20, 36, 7, 0, 2, 36, 6, 0, 1,
/* 0x0190 */ 0, 28, 40, 34, 0, 0, 32, 33, 36, 2, 15,250, 0, 0, 0, 12,
@ -108,105 +108,108 @@ unsigned char stub_mips_r3000_linux_elf_fold[2764] = {
/* 0x0450 */ 143,176, 0, 16, 3,224, 0, 8, 39,189, 0, 40, 16,128, 0, 8,
/* 0x0460 */ 0, 0, 0, 0,140,130, 0, 0, 0, 0, 0, 0, 16, 69, 0, 3,
/* 0x0470 */ 0, 0, 0, 0, 16, 0,255,251, 36,132, 0, 8,172,134, 0, 4,
/* 0x0480 */ 3,224, 0, 8, 0, 0, 0, 0, 39,189,255,168,175,179, 0, 60,
/* 0x0490 */ 175,177, 0, 52,175,191, 0, 84,175,190, 0, 80,175,183, 0, 76,
/* 0x04a0 */ 175,182, 0, 72,175,181, 0, 68,175,180, 0, 64,175,178, 0, 56,
/* 0x04b0 */ 175,176, 0, 48,148,162, 0, 16,140,163, 0, 28, 0,160,152, 33,
/* 0x04c0 */ 56, 66, 0, 2,148,165, 0, 44, 44, 66, 0, 1, 2, 99,136, 33,
/* 0x04d0 */ 175,164, 0, 28,175,166, 0, 32,175,167, 0, 36,175,168, 0, 40,
/* 0x04e0 */ 175,169, 0, 44, 0, 2, 57, 0, 36,165,255,255, 0, 10, 16, 39,
/* 0x04f0 */ 2, 32, 32, 33, 36, 6,255,255, 0, 0, 64, 33, 36, 9, 0, 1,
/* 0x0500 */ 16, 0, 0, 19,175,162, 0, 20,140,130, 0, 0, 0, 0, 0, 0,
/* 0x0510 */ 20, 73, 0, 14, 36,165,255,255,140,131, 0, 8, 0, 0, 0, 0,
/* 0x0520 */ 0,102, 16, 43, 16, 64, 0, 2, 0, 0, 0, 0, 0, 96, 48, 33,
/* 0x0530 */ 140,130, 0, 20, 0, 0, 0, 0, 0, 98, 24, 33, 1, 3, 16, 43,
/* 0x0540 */ 16, 64, 0, 2, 0, 0, 0, 0, 0, 96, 64, 33, 36,132, 0, 32,
/* 0x0550 */ 4,161,255,237, 1, 70,128, 36, 1, 16, 16, 35, 0, 74, 16, 35,
/* 0x0560 */ 36, 66,255,255, 1, 66, 80, 36, 52,231, 8, 2, 2, 0, 32, 33,
/* 0x0570 */ 1, 64, 40, 33, 0, 0, 48, 33, 36, 8,255,255, 0, 0, 72, 33,
/* 0x0580 */ 4, 17,255, 27,175,170, 0, 8, 0, 80,240, 35,175,162, 0, 12,
/* 0x0590 */ 16, 0, 0,167,175,160, 0, 16,143,163, 0, 32, 0, 0, 0, 0,
/* 0x05a0 */ 16, 96, 0, 12, 36, 2, 0, 6,142, 35, 0, 0, 0, 0, 0, 0,
/* 0x05b0 */ 20, 98, 0, 10, 36, 2, 0, 1,142, 38, 0, 8,143,164, 0, 36,
/* 0x05c0 */ 3,198, 48, 33, 4, 17,255,165, 36, 5, 0, 3, 16, 0, 0,148,
/* 0x05d0 */ 0, 0, 0, 0,142, 35, 0, 0, 36, 2, 0, 1, 20, 98, 0,144,
/* 0x05e0 */ 0, 0, 0, 0,143,164, 0, 32, 0, 0, 0, 0, 16,128, 0, 19,
/* 0x05f0 */ 0, 0, 0, 0,142, 34, 0, 4, 0, 0, 0, 0, 20, 64, 0, 15,
/* 0x0600 */ 36, 5, 0, 3,142, 98, 0, 28,142, 38, 0, 8,143,164, 0, 36,
/* 0x0610 */ 0,194, 48, 33, 4, 17,255,145, 3,198, 48, 33,143,164, 0, 36,
/* 0x0620 */ 150,102, 0, 44, 4, 17,255,141, 36, 5, 0, 5,143,164, 0, 36,
/* 0x0630 */ 150,102, 0, 42, 4, 17,255,137, 36, 5, 0, 4,142, 34, 0, 8,
/* 0x0640 */ 142, 35, 0, 24, 3,194,184, 33, 60, 2,115, 81, 0, 3, 24,128,
/* 0x0650 */ 52, 66, 98, 64, 0, 98,128, 6,143,163, 0, 20,142, 36, 0, 16,
/* 0x0660 */ 2,227, 16, 36,175,164, 0, 0, 0,130,160, 33,143,163, 0, 32,
/* 0x0670 */ 142, 36, 0, 20,175,183, 0, 4, 50, 22, 0, 7,175,164, 0, 24,
/* 0x0680 */ 16, 96, 0, 22, 2,226,144, 35, 2, 64, 32, 33, 2,128, 40, 33,
/* 0x0690 */ 36, 6, 0, 3, 36, 7, 8, 18, 36, 8,255,255, 4, 17,254,212,
/* 0x06a0 */ 0, 0, 72, 33, 22, 66, 0, 72, 50, 2, 0, 4, 16, 64, 0, 4,
/* 0x06b0 */ 0, 0, 0, 0,143,167, 0, 44, 16, 0, 0, 2, 0, 0, 0, 0,
/* 0x06c0 */ 0, 0, 56, 33,143,164, 0, 32,143,166, 0, 28, 4, 17,254,252,
/* 0x06d0 */ 3,160, 40, 33, 16, 0, 0, 11, 0, 0, 0, 0,142, 41, 0, 4,
/* 0x06e0 */ 143,168, 0, 28, 2, 64, 32, 33, 1, 34, 72, 35, 2,128, 40, 33,
/* 0x06f0 */ 2,192, 48, 33, 4, 17,254,190, 36, 7, 0, 18, 22, 66, 0, 51,
/* 0x0700 */ 36, 4, 0,127,143,164, 0, 20, 0, 20, 16, 35, 50,195, 0, 2,
/* 0x0710 */ 16, 96, 0, 8, 0, 68,168, 36, 18,160, 0, 6, 2,160, 16, 33,
/* 0x0720 */ 2, 84, 24, 33, 36, 66,255,255,160, 96, 0, 0, 20, 64,255,253,
/* 0x0730 */ 36, 99, 0, 1,143,162, 0, 32, 0, 0, 0, 0, 16, 64, 0, 39,
/* 0x0740 */ 36, 2, 0, 1,142, 35, 0, 0, 0, 0, 0, 0, 20, 98, 0, 25,
/* 0x0750 */ 2, 64, 32, 33,142, 34, 0, 24, 0, 0, 0, 0, 48, 66, 0, 1,
/* 0x0760 */ 16, 64, 0, 21, 2,128, 40, 33,142, 36, 0, 20,142, 34, 0, 16,
/* 0x0770 */ 142, 35, 0, 8, 20,130, 0, 72, 0,131, 16, 33, 0, 94,128, 33,
/* 0x0780 */ 143,163, 0, 20, 0, 16, 16, 35, 0, 98, 16, 36, 44, 66, 0, 12,
/* 0x0790 */ 20, 64, 0, 65, 36, 2, 0, 12,174, 2, 0, 0, 60, 2, 3,192,
/* 0x07a0 */ 52, 66, 0, 8,174, 2, 0, 4, 16, 0, 0, 78,174, 0, 0, 8,
/* 0x07b0 */ 2, 64, 32, 33, 2,128, 40, 33, 4, 17,254,153, 2,192, 48, 33,
/* 0x07c0 */ 16, 64, 0, 6, 0, 0, 0, 0, 36, 4, 0,127, 4, 17,254,143,
/* 0x07d0 */ 36, 2, 15,161, 16, 0,255,255, 0, 0, 0, 0,143,164, 0, 24,
/* 0x07e0 */ 2,149, 16, 33, 2,228, 40, 33, 2, 66,128, 33, 2, 5, 16, 43,
/* 0x07f0 */ 16, 64, 0, 11, 0,176, 40, 35, 2,192, 48, 33, 2, 0, 32, 33,
/* 0x0800 */ 36, 7, 8, 18, 36, 8,255,255, 4, 17,254,121, 0, 0, 72, 33,
/* 0x0810 */ 18, 2, 0, 3, 0, 0, 0, 0, 16, 0,255,255, 0, 0, 0, 0,
/* 0x0820 */ 143,162, 0, 16, 38, 49, 0, 32, 36, 66, 0, 1,175,162, 0, 16,
/* 0x0830 */ 150, 98, 0, 44,143,163, 0, 16, 0, 0, 0, 0, 0, 98, 16, 42,
/* 0x0840 */ 20, 64,255, 85, 0, 0, 0, 0,143,164, 0, 32, 0, 0, 0, 0,
/* 0x0850 */ 16,128, 0, 11, 36, 2, 0, 3,150, 99, 0, 16, 0, 0, 0, 0,
/* 0x0860 */ 16, 98, 0, 7, 0, 0, 0, 0,143,162, 0, 8,143,163, 0, 12,
/* 0x0870 */ 0, 0, 0, 0, 0, 67, 32, 33, 4, 17,254,100, 36, 2, 15,205,
/* 0x0880 */ 143,164, 0, 40, 0, 0, 0, 0, 16,128, 0, 28, 0, 0, 0, 0,
/* 0x0890 */ 16, 0, 0, 26,172,158, 0, 0, 0, 0, 32, 33, 60, 5, 0, 1,
/* 0x08a0 */ 36, 6, 0, 3, 36, 7, 8, 2, 36, 8,255,255, 4, 17,254, 80,
/* 0x08b0 */ 0, 0, 72, 33, 16, 64,255,190, 0, 64,128, 33, 36, 2, 0, 12,
/* 0x08c0 */ 174, 2, 0, 0, 60, 2, 3,192, 52, 66, 0, 8,174, 2, 0, 4,
/* 0x08d0 */ 174, 0, 0, 8, 2, 0, 32, 33, 36, 5, 0, 12, 4, 17,254, 80,
/* 0x08e0 */ 36, 6, 0, 5,143,164, 0, 36, 2, 0, 48, 33, 4, 17,254,219,
/* 0x08f0 */ 0, 0, 40, 33, 16, 0,255,175, 2, 64, 32, 33,142, 98, 0, 24,
/* 0x0900 */ 143,191, 0, 84, 3,194, 16, 33,143,183, 0, 76,143,190, 0, 80,
/* 0x0910 */ 143,182, 0, 72,143,181, 0, 68,143,180, 0, 64,143,179, 0, 60,
/* 0x0920 */ 143,178, 0, 56,143,177, 0, 52,143,176, 0, 48, 3,224, 0, 8,
/* 0x0930 */ 39,189, 0, 88, 39,189,255,192,175,191, 0, 56,175,181, 0, 52,
/* 0x0940 */ 175,180, 0, 48,175,179, 0, 44,175,178, 0, 40,175,177, 0, 36,
/* 0x0950 */ 175,176, 0, 32,140,130, 0, 4, 1, 0,144, 33,140,136, 0, 0,
/* 0x0960 */ 0,128, 24, 33, 0,192,152, 33, 1, 96,168, 33, 0,224,160, 33,
/* 0x0970 */ 1, 32,136, 33, 36, 66, 0, 12,175,165, 0, 12, 39,164, 0, 20,
/* 0x0980 */ 39,165, 0, 4, 2, 64, 48, 33, 0, 0, 56, 33, 1, 64,128, 33,
/* 0x0990 */ 175,163, 0, 16,175,163, 0, 24,175,168, 0, 4,175,162, 0, 20,
/* 0x09a0 */ 4, 17,254, 71,175,179, 0, 8, 2, 32, 72, 33, 2, 64, 32, 33,
/* 0x09b0 */ 2, 96, 40, 33, 39,166, 0, 12, 2,128, 56, 33, 3,160, 64, 33,
/* 0x09c0 */ 2,160, 80, 33, 4, 17,254,176,175,176, 0, 0, 0, 64, 48, 33,
/* 0x09d0 */ 2,128, 32, 33, 36, 5, 0, 9, 4, 17,254,160, 0, 64,136, 33,
/* 0x09e0 */ 150,102, 0, 44, 38,100, 0, 52, 16, 0, 0, 43, 0, 0, 40, 33,
/* 0x09f0 */ 140,131, 0, 0, 36, 2, 0, 3, 20, 98, 0, 39, 36,132, 0, 32,
/* 0x0a00 */ 36,132,255,224,140,130, 0, 8,143,164, 0, 0, 0, 0, 40, 33,
/* 0x0a10 */ 0, 68, 32, 33, 0, 0, 48, 33, 4, 17,253,252, 36, 2, 15,165,
/* 0x0a20 */ 4, 64, 0, 9, 0, 64,128, 33, 0, 64, 32, 33, 2, 96, 40, 33,
/* 0x0a30 */ 36, 6, 2, 0, 4, 17,253,245, 36, 2, 15,163, 36, 3, 2, 0,
/* 0x0a40 */ 16, 67, 0, 6, 2,160, 80, 33, 36, 4, 0,127, 4, 17,253,239,
/* 0x0a50 */ 36, 2, 15,161, 16, 0,255,255, 0, 0, 0, 0, 2,128, 56, 33,
/* 0x0a60 */ 3,160, 64, 33, 0, 0, 72, 33, 4, 17,254,135, 0, 0, 48, 33,
/* 0x0a70 */ 143,166, 0, 0, 2,128, 32, 33, 36, 5, 0, 7, 4, 17,254,119,
/* 0x0a80 */ 0, 64,136, 33, 2, 0, 32, 33, 4, 17,253,224, 36, 2, 15,166,
/* 0x0a90 */ 16, 0, 0, 5, 2, 32, 16, 33, 0,166, 16, 42, 20, 64,255,212,
/* 0x0aa0 */ 36,165, 0, 1, 2, 32, 16, 33,143,191, 0, 56,143,181, 0, 52,
/* 0x0ab0 */ 143,180, 0, 48,143,179, 0, 44,143,178, 0, 40,143,177, 0, 36,
/* 0x0ac0 */ 143,176, 0, 32, 3,224, 0, 8, 39,189, 0, 64
/* 0x0480 */ 3,224, 0, 8, 0, 0, 0, 0, 39,189,255,168,175,183, 0, 76,
/* 0x0490 */ 175,180, 0, 64,175,178, 0, 56,175,191, 0, 84,175,190, 0, 80,
/* 0x04a0 */ 175,182, 0, 72,175,181, 0, 68,175,179, 0, 60,175,177, 0, 52,
/* 0x04b0 */ 175,176, 0, 48,140,162, 0, 28, 0,160,160, 33, 0,162,144, 33,
/* 0x04c0 */ 0, 10, 16, 39, 0,192,184, 33,175,164, 0, 28,175,167, 0, 32,
/* 0x04d0 */ 175,168, 0, 36,175,169, 0, 40, 16,192, 0, 18,175,162, 0, 16,
/* 0x04e0 */ 141, 3, 0, 0, 0, 0, 48, 33,140, 98, 0, 28, 36, 7, 8, 18,
/* 0x04f0 */ 0, 98, 16, 33,140, 68, 0, 40,140, 66, 0, 20, 0,100, 24, 35,
/* 0x0500 */ 0, 64, 40, 33, 0, 96, 32, 33, 0, 67, 16, 33, 36, 8,255,255,
/* 0x0510 */ 0, 0, 72, 33, 4, 17,255, 54,175,162, 0, 12, 16, 0, 0, 46,
/* 0x0520 */ 0, 64,168, 33,148,162, 0, 16,148,163, 0, 44, 56, 66, 0, 3,
/* 0x0530 */ 0, 2, 16, 43, 0, 2, 57, 0, 36, 99,255,255, 2, 64, 40, 33,
/* 0x0540 */ 0, 0,136, 33, 36, 6,255,255, 16, 0, 0, 19, 36, 8, 0, 1,
/* 0x0550 */ 140,162, 0, 0, 0, 0, 0, 0, 20, 72, 0, 14, 36, 99,255,255,
/* 0x0560 */ 140,164, 0, 8, 0, 0, 0, 0, 0,134, 16, 43, 16, 64, 0, 2,
/* 0x0570 */ 0, 0, 0, 0, 0,128, 48, 33,140,162, 0, 20, 0, 0, 0, 0,
/* 0x0580 */ 0,130, 32, 33, 2, 36, 16, 43, 16, 64, 0, 2, 0, 0, 0, 0,
/* 0x0590 */ 0,128,136, 33, 36,165, 0, 32, 4, 97,255,237, 1, 70,128, 36,
/* 0x05a0 */ 2, 48,136, 35, 2, 42,136, 35, 38, 49,255,255, 1, 81,136, 36,
/* 0x05b0 */ 2, 32, 40, 33, 52,231, 8, 2, 2, 0, 32, 33, 0, 0, 48, 33,
/* 0x05c0 */ 36, 8,255,255, 4, 17,255, 10, 0, 0, 72, 33, 2, 34,136, 33,
/* 0x05d0 */ 0, 80,168, 35,175,177, 0, 12, 16, 0, 0,164,175,160, 0, 8,
/* 0x05e0 */ 18,224, 0, 12, 36, 2, 0, 6,142, 67, 0, 0, 0, 0, 0, 0,
/* 0x05f0 */ 20, 98, 0, 10, 36, 2, 0, 1,142, 70, 0, 8,143,164, 0, 32,
/* 0x0600 */ 2,166, 48, 33, 4, 17,255,149, 36, 5, 0, 3, 16, 0, 0,147,
/* 0x0610 */ 0, 0, 0, 0,142, 67, 0, 0, 36, 2, 0, 1, 20, 98, 0,143,
/* 0x0620 */ 0, 0, 0, 0, 18,224, 0, 19, 0, 0, 0, 0,142, 66, 0, 4,
/* 0x0630 */ 0, 0, 0, 0, 20, 64, 0, 15, 36, 5, 0, 3,142,130, 0, 28,
/* 0x0640 */ 142, 70, 0, 8,143,164, 0, 32, 0,194, 48, 33, 4, 17,255,131,
/* 0x0650 */ 2,166, 48, 33,143,164, 0, 32,150,134, 0, 44, 4, 17,255,127,
/* 0x0660 */ 36, 5, 0, 5,143,164, 0, 32,150,134, 0, 42, 4, 17,255,123,
/* 0x0670 */ 36, 5, 0, 4,142, 66, 0, 8,142, 67, 0, 24, 2,162, 16, 33,
/* 0x0680 */ 175,162, 0, 24, 60, 2,115, 81, 0, 3, 24,128, 52, 66, 98, 64,
/* 0x0690 */ 0, 98,128, 6,143,165, 0, 16,143,163, 0, 24,142, 68, 0, 16,
/* 0x06a0 */ 0,101, 16, 36,175,164, 0, 0,175,163, 0, 4, 0,130,152, 33,
/* 0x06b0 */ 142, 67, 0, 20,143,164, 0, 24, 50, 30, 0, 7,175,163, 0, 20,
/* 0x06c0 */ 18,224, 0, 22, 0,130,136, 35, 2, 32, 32, 33, 2, 96, 40, 33,
/* 0x06d0 */ 36, 6, 0, 3, 36, 7, 8, 18, 36, 8,255,255, 4, 17,254,196,
/* 0x06e0 */ 0, 0, 72, 33, 22, 34, 0, 70, 50, 2, 0, 4, 16, 64, 0, 4,
/* 0x06f0 */ 0, 0, 0, 0,143,167, 0, 40, 16, 0, 0, 2, 0, 0, 0, 0,
/* 0x0700 */ 0, 0, 56, 33,143,166, 0, 28, 2,224, 32, 33, 4, 17,254,236,
/* 0x0710 */ 3,160, 40, 33, 16, 0, 0, 11, 0, 0, 0, 0,142, 73, 0, 4,
/* 0x0720 */ 143,168, 0, 28, 2, 32, 32, 33, 1, 34, 72, 35, 2, 96, 40, 33,
/* 0x0730 */ 3,192, 48, 33, 4, 17,254,174, 36, 7, 0, 18, 22, 34, 0, 49,
/* 0x0740 */ 36, 4, 0,127,143,165, 0, 16, 0, 19, 16, 35, 51,195, 0, 2,
/* 0x0750 */ 16, 96, 0, 8, 0, 69,176, 36, 18,192, 0, 6, 2, 51, 24, 33,
/* 0x0760 */ 2,192, 16, 33, 36, 66,255,255,160, 96, 0, 0, 20, 64,255,253,
/* 0x0770 */ 36, 99, 0, 1, 18,224, 0, 39, 36, 2, 0, 1,142, 67, 0, 0,
/* 0x0780 */ 0, 0, 0, 0, 20, 98, 0, 25, 2, 32, 32, 33,142, 66, 0, 24,
/* 0x0790 */ 0, 0, 0, 0, 48, 66, 0, 1, 16, 64, 0, 20, 0, 0, 0, 0,
/* 0x07a0 */ 142, 68, 0, 20,142, 66, 0, 16,142, 67, 0, 8, 20,130, 0, 68,
/* 0x07b0 */ 0,131, 16, 33, 0, 85,128, 33,143,163, 0, 16, 0, 16, 16, 35,
/* 0x07c0 */ 0, 98, 16, 36, 44, 66, 0, 12, 20, 64, 0, 61, 36, 2, 0, 12,
/* 0x07d0 */ 174, 2, 0, 0, 60, 2, 3,192, 52, 66, 0, 8,174, 2, 0, 4,
/* 0x07e0 */ 16, 0, 0, 74,174, 0, 0, 8, 2, 32, 32, 33, 2, 96, 40, 33,
/* 0x07f0 */ 4, 17,254,139, 3,192, 48, 33, 16, 64, 0, 6, 0, 0, 0, 0,
/* 0x0800 */ 36, 4, 0,127, 4, 17,254,129, 36, 2, 15,161, 16, 0,255,255,
/* 0x0810 */ 0, 0, 0, 0,143,164, 0, 24,143,163, 0, 20, 2,118, 16, 33,
/* 0x0820 */ 0,131, 40, 33, 2, 34,128, 33, 2, 5, 16, 43, 16, 64, 0, 11,
/* 0x0830 */ 0,176, 40, 35, 3,192, 48, 33, 2, 0, 32, 33, 36, 7, 8, 18,
/* 0x0840 */ 36, 8,255,255, 4, 17,254,106, 0, 0, 72, 33, 18, 2, 0, 3,
/* 0x0850 */ 0, 0, 0, 0, 16, 0,255,255, 0, 0, 0, 0,143,164, 0, 8,
/* 0x0860 */ 38, 82, 0, 32, 36,132, 0, 1,175,164, 0, 8,150,130, 0, 44,
/* 0x0870 */ 143,165, 0, 8, 0, 0, 0, 0, 0,162, 16, 42, 20, 64,255, 88,
/* 0x0880 */ 0, 0, 0, 0, 18,224, 0, 8, 36, 2, 0, 3,150,131, 0, 16,
/* 0x0890 */ 0, 0, 0, 0, 16, 98, 0, 4, 36, 2, 15,205,143,164, 0, 12,
/* 0x08a0 */ 4, 17,254, 90, 0, 0, 0, 0,143,162, 0, 36, 0, 0, 0, 0,
/* 0x08b0 */ 16, 64, 0, 28, 0, 0, 0, 0, 16, 0, 0, 26,172, 85, 0, 0,
/* 0x08c0 */ 0, 0, 32, 33, 60, 5, 0, 1, 36, 6, 0, 3, 36, 7, 8, 2,
/* 0x08d0 */ 36, 8,255,255, 4, 17,254, 70, 0, 0, 72, 33, 16, 64,255,194,
/* 0x08e0 */ 0, 64,128, 33, 36, 2, 0, 12,174, 2, 0, 0, 60, 2, 3,192,
/* 0x08f0 */ 52, 66, 0, 8,174, 2, 0, 4,174, 0, 0, 8, 2, 0, 32, 33,
/* 0x0900 */ 36, 5, 0, 12, 4, 17,254, 70, 36, 6, 0, 5,143,164, 0, 32,
/* 0x0910 */ 2, 0, 48, 33, 4, 17,254,209, 0, 0, 40, 33, 16, 0,255,179,
/* 0x0920 */ 2, 32, 32, 33,142,130, 0, 24,143,191, 0, 84, 2,162, 16, 33,
/* 0x0930 */ 143,190, 0, 80,143,183, 0, 76,143,182, 0, 72,143,181, 0, 68,
/* 0x0940 */ 143,180, 0, 64,143,179, 0, 60,143,178, 0, 56,143,177, 0, 52,
/* 0x0950 */ 143,176, 0, 48, 3,224, 0, 8, 39,189, 0, 88, 39,189,255,192,
/* 0x0960 */ 175,191, 0, 56,175,181, 0, 52,175,180, 0, 48,175,179, 0, 44,
/* 0x0970 */ 175,178, 0, 40,175,177, 0, 36,175,176, 0, 32,140,130, 0, 4,
/* 0x0980 */ 1, 0,144, 33,140,136, 0, 0, 0,128, 24, 33, 0,192,152, 33,
/* 0x0990 */ 1, 96,168, 33, 0,224,160, 33, 1, 32,136, 33, 36, 66, 0, 12,
/* 0x09a0 */ 175,165, 0, 12, 39,164, 0, 20, 39,165, 0, 4, 2, 64, 48, 33,
/* 0x09b0 */ 0, 0, 56, 33, 1, 64,128, 33,175,163, 0, 16,175,163, 0, 24,
/* 0x09c0 */ 175,168, 0, 4,175,162, 0, 20, 4, 17,254, 61,175,179, 0, 8,
/* 0x09d0 */ 2, 32, 72, 33, 2, 64, 32, 33, 2, 96, 40, 33, 39,166, 0, 12,
/* 0x09e0 */ 2,128, 56, 33, 3,160, 64, 33, 2,160, 80, 33, 4, 17,254,166,
/* 0x09f0 */ 175,176, 0, 0, 0, 64, 48, 33, 2,128, 32, 33, 36, 5, 0, 9,
/* 0x0a00 */ 4, 17,254,150, 0, 64,136, 33,150,102, 0, 44, 38,100, 0, 52,
/* 0x0a10 */ 16, 0, 0, 43, 0, 0, 40, 33,140,131, 0, 0, 36, 2, 0, 3,
/* 0x0a20 */ 20, 98, 0, 39, 36,132, 0, 32, 36,132,255,224,140,130, 0, 8,
/* 0x0a30 */ 143,164, 0, 0, 0, 0, 40, 33, 0, 68, 32, 33, 0, 0, 48, 33,
/* 0x0a40 */ 4, 17,253,242, 36, 2, 15,165, 4, 64, 0, 9, 0, 64,128, 33,
/* 0x0a50 */ 0, 64, 32, 33, 2, 96, 40, 33, 36, 6, 2, 0, 4, 17,253,235,
/* 0x0a60 */ 36, 2, 15,163, 36, 3, 2, 0, 16, 67, 0, 6, 2,160, 80, 33,
/* 0x0a70 */ 36, 4, 0,127, 4, 17,253,229, 36, 2, 15,161, 16, 0,255,255,
/* 0x0a80 */ 0, 0, 0, 0, 2,128, 56, 33, 3,160, 64, 33, 0, 0, 72, 33,
/* 0x0a90 */ 4, 17,254,125, 0, 0, 48, 33,143,166, 0, 0, 2,128, 32, 33,
/* 0x0aa0 */ 36, 5, 0, 7, 4, 17,254,109, 0, 64,136, 33, 2, 0, 32, 33,
/* 0x0ab0 */ 4, 17,253,214, 36, 2, 15,166, 16, 0, 0, 5, 2, 32, 16, 33,
/* 0x0ac0 */ 0,166, 16, 42, 20, 64,255,212, 36,165, 0, 1, 2, 32, 16, 33,
/* 0x0ad0 */ 143,191, 0, 56,143,181, 0, 52,143,180, 0, 48,143,179, 0, 44,
/* 0x0ae0 */ 143,178, 0, 40,143,177, 0, 36,143,176, 0, 32, 3,224, 0, 8,
/* 0x0af0 */ 39,189, 0, 64
};

View File

@ -1,5 +1,5 @@
/* mipsel.r3000-linux.elf-fold.h
created from mipsel.r3000-linux.elf-fold.bin, 2764 (0xacc) bytes
created from mipsel.r3000-linux.elf-fold.bin, 2804 (0xaf4) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_SIZE 2764
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_ADLER32 0xaaf05f66
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_CRC32 0x499d3487
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_SIZE 2804
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_ADLER32 0xe30e6a82
#define STUB_MIPSEL_R3000_LINUX_ELF_FOLD_CRC32 0x342d2a6e
unsigned char stub_mipsel_r3000_linux_elf_fold[2764] = {
unsigned char stub_mipsel_r3000_linux_elf_fold[2804] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 2, 0, 8, 0, 1, 0, 0, 0,128, 0, 16, 0, 52, 0, 0, 0,
/* 0x0020 */ 0, 0, 0, 0, 1, 48, 0, 0, 52, 0, 32, 0, 2, 0, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0,
/* 0x0040 */ 0, 0, 16, 0,204, 10, 0, 0,208, 10, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0, 16, 0, 0, 1, 0, 0, 0,204, 10, 0, 0, 0, 0, 0, 0,
/* 0x0040 */ 0, 0, 16, 0,244, 10, 0, 0, 0, 11, 0, 0, 5, 0, 0, 0,
/* 0x0050 */ 0, 16, 0, 0, 1, 0, 0, 0,244, 10, 0, 0, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 0, 0, 2, 36, 8, 0,224, 3, 64, 18, 2, 0, 0, 0, 0, 0,
@ -58,7 +58,7 @@ unsigned char stub_mipsel_r3000_linux_elf_fold[2764] = {
/* 0x0130 */ 33, 8,162, 0, 0, 0, 32,160, 0,254,189, 39, 33, 88,128, 3,
/* 0x0140 */ 33, 80,160, 2, 33, 72, 0, 0, 33, 64,192, 3, 33, 56,192, 2,
/* 0x0150 */ 33, 48,160, 3, 33, 40, 32, 2, 1, 0, 16, 4, 96, 1, 2, 36,
/* 0x0160 */ 35, 16,226, 3, 52, 9, 66, 36, 9,248, 64, 0, 33, 32, 0, 2,
/* 0x0160 */ 35, 16,226, 3, 92, 9, 66, 36, 9,248, 64, 0, 33, 32, 0, 2,
/* 0x0170 */ 0, 2,189, 39, 33,240, 64, 0, 20, 0,168,143, 33, 72, 0, 0,
/* 0x0180 */ 16, 0,168,175, 20, 0,169,175, 2, 0, 7, 36, 1, 0, 6, 36,
/* 0x0190 */ 34, 40, 28, 0, 33, 32, 0, 0,250, 15, 2, 36, 12, 0, 0, 0,
@ -108,105 +108,108 @@ unsigned char stub_mipsel_r3000_linux_elf_fold[2764] = {
/* 0x0450 */ 16, 0,176,143, 8, 0,224, 3, 40, 0,189, 39, 8, 0,128, 16,
/* 0x0460 */ 0, 0, 0, 0, 0, 0,130,140, 0, 0, 0, 0, 3, 0, 69, 16,
/* 0x0470 */ 0, 0, 0, 0,251,255, 0, 16, 8, 0,132, 36, 4, 0,134,172,
/* 0x0480 */ 8, 0,224, 3, 0, 0, 0, 0,168,255,189, 39, 60, 0,179,175,
/* 0x0490 */ 52, 0,177,175, 84, 0,191,175, 80, 0,190,175, 76, 0,183,175,
/* 0x04a0 */ 72, 0,182,175, 68, 0,181,175, 64, 0,180,175, 56, 0,178,175,
/* 0x04b0 */ 48, 0,176,175, 16, 0,162,148, 28, 0,163,140, 33,152,160, 0,
/* 0x04c0 */ 2, 0, 66, 56, 44, 0,165,148, 1, 0, 66, 44, 33,136, 99, 2,
/* 0x04d0 */ 28, 0,164,175, 32, 0,166,175, 36, 0,167,175, 40, 0,168,175,
/* 0x04e0 */ 44, 0,169,175, 0, 57, 2, 0,255,255,165, 36, 39, 16, 10, 0,
/* 0x04f0 */ 33, 32, 32, 2,255,255, 6, 36, 33, 64, 0, 0, 1, 0, 9, 36,
/* 0x0500 */ 19, 0, 0, 16, 20, 0,162,175, 0, 0,130,140, 0, 0, 0, 0,
/* 0x0510 */ 14, 0, 73, 20,255,255,165, 36, 8, 0,131,140, 0, 0, 0, 0,
/* 0x0520 */ 43, 16,102, 0, 2, 0, 64, 16, 0, 0, 0, 0, 33, 48, 96, 0,
/* 0x0530 */ 20, 0,130,140, 0, 0, 0, 0, 33, 24, 98, 0, 43, 16, 3, 1,
/* 0x0540 */ 2, 0, 64, 16, 0, 0, 0, 0, 33, 64, 96, 0, 32, 0,132, 36,
/* 0x0550 */ 237,255,161, 4, 36,128, 70, 1, 35, 16, 16, 1, 35, 16, 74, 0,
/* 0x0560 */ 255,255, 66, 36, 36, 80, 66, 1, 2, 8,231, 52, 33, 32, 0, 2,
/* 0x0570 */ 33, 40, 64, 1, 33, 48, 0, 0,255,255, 8, 36, 33, 72, 0, 0,
/* 0x0580 */ 27,255, 17, 4, 8, 0,170,175, 35,240, 80, 0, 12, 0,162,175,
/* 0x0590 */ 167, 0, 0, 16, 16, 0,160,175, 32, 0,163,143, 0, 0, 0, 0,
/* 0x05a0 */ 12, 0, 96, 16, 6, 0, 2, 36, 0, 0, 35,142, 0, 0, 0, 0,
/* 0x05b0 */ 10, 0, 98, 20, 1, 0, 2, 36, 8, 0, 38,142, 36, 0,164,143,
/* 0x05c0 */ 33, 48,198, 3,165,255, 17, 4, 3, 0, 5, 36,148, 0, 0, 16,
/* 0x05d0 */ 0, 0, 0, 0, 0, 0, 35,142, 1, 0, 2, 36,144, 0, 98, 20,
/* 0x05e0 */ 0, 0, 0, 0, 32, 0,164,143, 0, 0, 0, 0, 19, 0,128, 16,
/* 0x05f0 */ 0, 0, 0, 0, 4, 0, 34,142, 0, 0, 0, 0, 15, 0, 64, 20,
/* 0x0600 */ 3, 0, 5, 36, 28, 0, 98,142, 8, 0, 38,142, 36, 0,164,143,
/* 0x0610 */ 33, 48,194, 0,145,255, 17, 4, 33, 48,198, 3, 36, 0,164,143,
/* 0x0620 */ 44, 0,102,150,141,255, 17, 4, 5, 0, 5, 36, 36, 0,164,143,
/* 0x0630 */ 42, 0,102,150,137,255, 17, 4, 4, 0, 5, 36, 8, 0, 34,142,
/* 0x0640 */ 24, 0, 35,142, 33,184,194, 3, 81,115, 2, 60,128, 24, 3, 0,
/* 0x0650 */ 64, 98, 66, 52, 6,128, 98, 0, 20, 0,163,143, 16, 0, 36,142,
/* 0x0660 */ 36, 16,227, 2, 0, 0,164,175, 33,160,130, 0, 32, 0,163,143,
/* 0x0670 */ 20, 0, 36,142, 4, 0,183,175, 7, 0, 22, 50, 24, 0,164,175,
/* 0x0680 */ 22, 0, 96, 16, 35,144,226, 2, 33, 32, 64, 2, 33, 40,128, 2,
/* 0x0690 */ 3, 0, 6, 36, 18, 8, 7, 36,255,255, 8, 36,212,254, 17, 4,
/* 0x06a0 */ 33, 72, 0, 0, 72, 0, 66, 22, 4, 0, 2, 50, 4, 0, 64, 16,
/* 0x06b0 */ 0, 0, 0, 0, 44, 0,167,143, 2, 0, 0, 16, 0, 0, 0, 0,
/* 0x06c0 */ 33, 56, 0, 0, 32, 0,164,143, 28, 0,166,143,252,254, 17, 4,
/* 0x06d0 */ 33, 40,160, 3, 11, 0, 0, 16, 0, 0, 0, 0, 4, 0, 41,142,
/* 0x06e0 */ 28, 0,168,143, 33, 32, 64, 2, 35, 72, 34, 1, 33, 40,128, 2,
/* 0x06f0 */ 33, 48,192, 2,190,254, 17, 4, 18, 0, 7, 36, 51, 0, 66, 22,
/* 0x0700 */ 127, 0, 4, 36, 20, 0,164,143, 35, 16, 20, 0, 2, 0,195, 50,
/* 0x0710 */ 8, 0, 96, 16, 36,168, 68, 0, 6, 0,160, 18, 33, 16,160, 2,
/* 0x0720 */ 33, 24, 84, 2,255,255, 66, 36, 0, 0, 96,160,253,255, 64, 20,
/* 0x0730 */ 1, 0, 99, 36, 32, 0,162,143, 0, 0, 0, 0, 39, 0, 64, 16,
/* 0x0740 */ 1, 0, 2, 36, 0, 0, 35,142, 0, 0, 0, 0, 25, 0, 98, 20,
/* 0x0750 */ 33, 32, 64, 2, 24, 0, 34,142, 0, 0, 0, 0, 1, 0, 66, 48,
/* 0x0760 */ 21, 0, 64, 16, 33, 40,128, 2, 20, 0, 36,142, 16, 0, 34,142,
/* 0x0770 */ 8, 0, 35,142, 72, 0,130, 20, 33, 16,131, 0, 33,128, 94, 0,
/* 0x0780 */ 20, 0,163,143, 35, 16, 16, 0, 36, 16, 98, 0, 12, 0, 66, 44,
/* 0x0790 */ 65, 0, 64, 20, 12, 0, 2, 36, 0, 0, 2,174,192, 3, 2, 60,
/* 0x07a0 */ 8, 0, 66, 52, 4, 0, 2,174, 78, 0, 0, 16, 8, 0, 0,174,
/* 0x07b0 */ 33, 32, 64, 2, 33, 40,128, 2,153,254, 17, 4, 33, 48,192, 2,
/* 0x07c0 */ 6, 0, 64, 16, 0, 0, 0, 0,127, 0, 4, 36,143,254, 17, 4,
/* 0x07d0 */ 161, 15, 2, 36,255,255, 0, 16, 0, 0, 0, 0, 24, 0,164,143,
/* 0x07e0 */ 33, 16,149, 2, 33, 40,228, 2, 33,128, 66, 2, 43, 16, 5, 2,
/* 0x07f0 */ 11, 0, 64, 16, 35, 40,176, 0, 33, 48,192, 2, 33, 32, 0, 2,
/* 0x0800 */ 18, 8, 7, 36,255,255, 8, 36,121,254, 17, 4, 33, 72, 0, 0,
/* 0x0810 */ 3, 0, 2, 18, 0, 0, 0, 0,255,255, 0, 16, 0, 0, 0, 0,
/* 0x0820 */ 16, 0,162,143, 32, 0, 49, 38, 1, 0, 66, 36, 16, 0,162,175,
/* 0x0830 */ 44, 0, 98,150, 16, 0,163,143, 0, 0, 0, 0, 42, 16, 98, 0,
/* 0x0840 */ 85,255, 64, 20, 0, 0, 0, 0, 32, 0,164,143, 0, 0, 0, 0,
/* 0x0850 */ 11, 0,128, 16, 3, 0, 2, 36, 16, 0, 99,150, 0, 0, 0, 0,
/* 0x0860 */ 7, 0, 98, 16, 0, 0, 0, 0, 8, 0,162,143, 12, 0,163,143,
/* 0x0870 */ 0, 0, 0, 0, 33, 32, 67, 0,100,254, 17, 4,205, 15, 2, 36,
/* 0x0880 */ 40, 0,164,143, 0, 0, 0, 0, 28, 0,128, 16, 0, 0, 0, 0,
/* 0x0890 */ 26, 0, 0, 16, 0, 0,158,172, 33, 32, 0, 0, 1, 0, 5, 60,
/* 0x08a0 */ 3, 0, 6, 36, 2, 8, 7, 36,255,255, 8, 36, 80,254, 17, 4,
/* 0x08b0 */ 33, 72, 0, 0,190,255, 64, 16, 33,128, 64, 0, 12, 0, 2, 36,
/* 0x08c0 */ 0, 0, 2,174,192, 3, 2, 60, 8, 0, 66, 52, 4, 0, 2,174,
/* 0x08d0 */ 8, 0, 0,174, 33, 32, 0, 2, 12, 0, 5, 36, 80,254, 17, 4,
/* 0x08e0 */ 5, 0, 6, 36, 36, 0,164,143, 33, 48, 0, 2,219,254, 17, 4,
/* 0x08f0 */ 33, 40, 0, 0,175,255, 0, 16, 33, 32, 64, 2, 24, 0, 98,142,
/* 0x0900 */ 84, 0,191,143, 33, 16,194, 3, 76, 0,183,143, 80, 0,190,143,
/* 0x0910 */ 72, 0,182,143, 68, 0,181,143, 64, 0,180,143, 60, 0,179,143,
/* 0x0920 */ 56, 0,178,143, 52, 0,177,143, 48, 0,176,143, 8, 0,224, 3,
/* 0x0930 */ 88, 0,189, 39,192,255,189, 39, 56, 0,191,175, 52, 0,181,175,
/* 0x0940 */ 48, 0,180,175, 44, 0,179,175, 40, 0,178,175, 36, 0,177,175,
/* 0x0950 */ 32, 0,176,175, 4, 0,130,140, 33,144, 0, 1, 0, 0,136,140,
/* 0x0960 */ 33, 24,128, 0, 33,152,192, 0, 33,168, 96, 1, 33,160,224, 0,
/* 0x0970 */ 33,136, 32, 1, 12, 0, 66, 36, 12, 0,165,175, 20, 0,164, 39,
/* 0x0980 */ 4, 0,165, 39, 33, 48, 64, 2, 33, 56, 0, 0, 33,128, 64, 1,
/* 0x0990 */ 16, 0,163,175, 24, 0,163,175, 4, 0,168,175, 20, 0,162,175,
/* 0x09a0 */ 71,254, 17, 4, 8, 0,179,175, 33, 72, 32, 2, 33, 32, 64, 2,
/* 0x09b0 */ 33, 40, 96, 2, 12, 0,166, 39, 33, 56,128, 2, 33, 64,160, 3,
/* 0x09c0 */ 33, 80,160, 2,176,254, 17, 4, 0, 0,176,175, 33, 48, 64, 0,
/* 0x09d0 */ 33, 32,128, 2, 9, 0, 5, 36,160,254, 17, 4, 33,136, 64, 0,
/* 0x09e0 */ 44, 0,102,150, 52, 0,100, 38, 43, 0, 0, 16, 33, 40, 0, 0,
/* 0x09f0 */ 0, 0,131,140, 3, 0, 2, 36, 39, 0, 98, 20, 32, 0,132, 36,
/* 0x0a00 */ 224,255,132, 36, 8, 0,130,140, 0, 0,164,143, 33, 40, 0, 0,
/* 0x0a10 */ 33, 32, 68, 0, 33, 48, 0, 0,252,253, 17, 4,165, 15, 2, 36,
/* 0x0a20 */ 9, 0, 64, 4, 33,128, 64, 0, 33, 32, 64, 0, 33, 40, 96, 2,
/* 0x0a30 */ 0, 2, 6, 36,245,253, 17, 4,163, 15, 2, 36, 0, 2, 3, 36,
/* 0x0a40 */ 6, 0, 67, 16, 33, 80,160, 2,127, 0, 4, 36,239,253, 17, 4,
/* 0x0a50 */ 161, 15, 2, 36,255,255, 0, 16, 0, 0, 0, 0, 33, 56,128, 2,
/* 0x0a60 */ 33, 64,160, 3, 33, 72, 0, 0,135,254, 17, 4, 33, 48, 0, 0,
/* 0x0a70 */ 0, 0,166,143, 33, 32,128, 2, 7, 0, 5, 36,119,254, 17, 4,
/* 0x0a80 */ 33,136, 64, 0, 33, 32, 0, 2,224,253, 17, 4,166, 15, 2, 36,
/* 0x0a90 */ 5, 0, 0, 16, 33, 16, 32, 2, 42, 16,166, 0,212,255, 64, 20,
/* 0x0aa0 */ 1, 0,165, 36, 33, 16, 32, 2, 56, 0,191,143, 52, 0,181,143,
/* 0x0ab0 */ 48, 0,180,143, 44, 0,179,143, 40, 0,178,143, 36, 0,177,143,
/* 0x0ac0 */ 32, 0,176,143, 8, 0,224, 3, 64, 0,189, 39
/* 0x0480 */ 8, 0,224, 3, 0, 0, 0, 0,168,255,189, 39, 76, 0,183,175,
/* 0x0490 */ 64, 0,180,175, 56, 0,178,175, 84, 0,191,175, 80, 0,190,175,
/* 0x04a0 */ 72, 0,182,175, 68, 0,181,175, 60, 0,179,175, 52, 0,177,175,
/* 0x04b0 */ 48, 0,176,175, 28, 0,162,140, 33,160,160, 0, 33,144,162, 0,
/* 0x04c0 */ 39, 16, 10, 0, 33,184,192, 0, 28, 0,164,175, 32, 0,167,175,
/* 0x04d0 */ 36, 0,168,175, 40, 0,169,175, 18, 0,192, 16, 16, 0,162,175,
/* 0x04e0 */ 0, 0, 3,141, 33, 48, 0, 0, 28, 0, 98,140, 18, 8, 7, 36,
/* 0x04f0 */ 33, 16, 98, 0, 40, 0, 68,140, 20, 0, 66,140, 35, 24,100, 0,
/* 0x0500 */ 33, 40, 64, 0, 33, 32, 96, 0, 33, 16, 67, 0,255,255, 8, 36,
/* 0x0510 */ 33, 72, 0, 0, 54,255, 17, 4, 12, 0,162,175, 46, 0, 0, 16,
/* 0x0520 */ 33,168, 64, 0, 16, 0,162,148, 44, 0,163,148, 3, 0, 66, 56,
/* 0x0530 */ 43, 16, 2, 0, 0, 57, 2, 0,255,255, 99, 36, 33, 40, 64, 2,
/* 0x0540 */ 33,136, 0, 0,255,255, 6, 36, 19, 0, 0, 16, 1, 0, 8, 36,
/* 0x0550 */ 0, 0,162,140, 0, 0, 0, 0, 14, 0, 72, 20,255,255, 99, 36,
/* 0x0560 */ 8, 0,164,140, 0, 0, 0, 0, 43, 16,134, 0, 2, 0, 64, 16,
/* 0x0570 */ 0, 0, 0, 0, 33, 48,128, 0, 20, 0,162,140, 0, 0, 0, 0,
/* 0x0580 */ 33, 32,130, 0, 43, 16, 36, 2, 2, 0, 64, 16, 0, 0, 0, 0,
/* 0x0590 */ 33,136,128, 0, 32, 0,165, 36,237,255, 97, 4, 36,128, 70, 1,
/* 0x05a0 */ 35,136, 48, 2, 35,136, 42, 2,255,255, 49, 38, 36,136, 81, 1,
/* 0x05b0 */ 33, 40, 32, 2, 2, 8,231, 52, 33, 32, 0, 2, 33, 48, 0, 0,
/* 0x05c0 */ 255,255, 8, 36, 10,255, 17, 4, 33, 72, 0, 0, 33,136, 34, 2,
/* 0x05d0 */ 35,168, 80, 0, 12, 0,177,175,164, 0, 0, 16, 8, 0,160,175,
/* 0x05e0 */ 12, 0,224, 18, 6, 0, 2, 36, 0, 0, 67,142, 0, 0, 0, 0,
/* 0x05f0 */ 10, 0, 98, 20, 1, 0, 2, 36, 8, 0, 70,142, 32, 0,164,143,
/* 0x0600 */ 33, 48,166, 2,149,255, 17, 4, 3, 0, 5, 36,147, 0, 0, 16,
/* 0x0610 */ 0, 0, 0, 0, 0, 0, 67,142, 1, 0, 2, 36,143, 0, 98, 20,
/* 0x0620 */ 0, 0, 0, 0, 19, 0,224, 18, 0, 0, 0, 0, 4, 0, 66,142,
/* 0x0630 */ 0, 0, 0, 0, 15, 0, 64, 20, 3, 0, 5, 36, 28, 0,130,142,
/* 0x0640 */ 8, 0, 70,142, 32, 0,164,143, 33, 48,194, 0,131,255, 17, 4,
/* 0x0650 */ 33, 48,166, 2, 32, 0,164,143, 44, 0,134,150,127,255, 17, 4,
/* 0x0660 */ 5, 0, 5, 36, 32, 0,164,143, 42, 0,134,150,123,255, 17, 4,
/* 0x0670 */ 4, 0, 5, 36, 8, 0, 66,142, 24, 0, 67,142, 33, 16,162, 2,
/* 0x0680 */ 24, 0,162,175, 81,115, 2, 60,128, 24, 3, 0, 64, 98, 66, 52,
/* 0x0690 */ 6,128, 98, 0, 16, 0,165,143, 24, 0,163,143, 16, 0, 68,142,
/* 0x06a0 */ 36, 16,101, 0, 0, 0,164,175, 4, 0,163,175, 33,152,130, 0,
/* 0x06b0 */ 20, 0, 67,142, 24, 0,164,143, 7, 0, 30, 50, 20, 0,163,175,
/* 0x06c0 */ 22, 0,224, 18, 35,136,130, 0, 33, 32, 32, 2, 33, 40, 96, 2,
/* 0x06d0 */ 3, 0, 6, 36, 18, 8, 7, 36,255,255, 8, 36,196,254, 17, 4,
/* 0x06e0 */ 33, 72, 0, 0, 70, 0, 34, 22, 4, 0, 2, 50, 4, 0, 64, 16,
/* 0x06f0 */ 0, 0, 0, 0, 40, 0,167,143, 2, 0, 0, 16, 0, 0, 0, 0,
/* 0x0700 */ 33, 56, 0, 0, 28, 0,166,143, 33, 32,224, 2,236,254, 17, 4,
/* 0x0710 */ 33, 40,160, 3, 11, 0, 0, 16, 0, 0, 0, 0, 4, 0, 73,142,
/* 0x0720 */ 28, 0,168,143, 33, 32, 32, 2, 35, 72, 34, 1, 33, 40, 96, 2,
/* 0x0730 */ 33, 48,192, 3,174,254, 17, 4, 18, 0, 7, 36, 49, 0, 34, 22,
/* 0x0740 */ 127, 0, 4, 36, 16, 0,165,143, 35, 16, 19, 0, 2, 0,195, 51,
/* 0x0750 */ 8, 0, 96, 16, 36,176, 69, 0, 6, 0,192, 18, 33, 24, 51, 2,
/* 0x0760 */ 33, 16,192, 2,255,255, 66, 36, 0, 0, 96,160,253,255, 64, 20,
/* 0x0770 */ 1, 0, 99, 36, 39, 0,224, 18, 1, 0, 2, 36, 0, 0, 67,142,
/* 0x0780 */ 0, 0, 0, 0, 25, 0, 98, 20, 33, 32, 32, 2, 24, 0, 66,142,
/* 0x0790 */ 0, 0, 0, 0, 1, 0, 66, 48, 20, 0, 64, 16, 0, 0, 0, 0,
/* 0x07a0 */ 20, 0, 68,142, 16, 0, 66,142, 8, 0, 67,142, 68, 0,130, 20,
/* 0x07b0 */ 33, 16,131, 0, 33,128, 85, 0, 16, 0,163,143, 35, 16, 16, 0,
/* 0x07c0 */ 36, 16, 98, 0, 12, 0, 66, 44, 61, 0, 64, 20, 12, 0, 2, 36,
/* 0x07d0 */ 0, 0, 2,174,192, 3, 2, 60, 8, 0, 66, 52, 4, 0, 2,174,
/* 0x07e0 */ 74, 0, 0, 16, 8, 0, 0,174, 33, 32, 32, 2, 33, 40, 96, 2,
/* 0x07f0 */ 139,254, 17, 4, 33, 48,192, 3, 6, 0, 64, 16, 0, 0, 0, 0,
/* 0x0800 */ 127, 0, 4, 36,129,254, 17, 4,161, 15, 2, 36,255,255, 0, 16,
/* 0x0810 */ 0, 0, 0, 0, 24, 0,164,143, 20, 0,163,143, 33, 16,118, 2,
/* 0x0820 */ 33, 40,131, 0, 33,128, 34, 2, 43, 16, 5, 2, 11, 0, 64, 16,
/* 0x0830 */ 35, 40,176, 0, 33, 48,192, 3, 33, 32, 0, 2, 18, 8, 7, 36,
/* 0x0840 */ 255,255, 8, 36,106,254, 17, 4, 33, 72, 0, 0, 3, 0, 2, 18,
/* 0x0850 */ 0, 0, 0, 0,255,255, 0, 16, 0, 0, 0, 0, 8, 0,164,143,
/* 0x0860 */ 32, 0, 82, 38, 1, 0,132, 36, 8, 0,164,175, 44, 0,130,150,
/* 0x0870 */ 8, 0,165,143, 0, 0, 0, 0, 42, 16,162, 0, 88,255, 64, 20,
/* 0x0880 */ 0, 0, 0, 0, 8, 0,224, 18, 3, 0, 2, 36, 16, 0,131,150,
/* 0x0890 */ 0, 0, 0, 0, 4, 0, 98, 16,205, 15, 2, 36, 12, 0,164,143,
/* 0x08a0 */ 90,254, 17, 4, 0, 0, 0, 0, 36, 0,162,143, 0, 0, 0, 0,
/* 0x08b0 */ 28, 0, 64, 16, 0, 0, 0, 0, 26, 0, 0, 16, 0, 0, 85,172,
/* 0x08c0 */ 33, 32, 0, 0, 1, 0, 5, 60, 3, 0, 6, 36, 2, 8, 7, 36,
/* 0x08d0 */ 255,255, 8, 36, 70,254, 17, 4, 33, 72, 0, 0,194,255, 64, 16,
/* 0x08e0 */ 33,128, 64, 0, 12, 0, 2, 36, 0, 0, 2,174,192, 3, 2, 60,
/* 0x08f0 */ 8, 0, 66, 52, 4, 0, 2,174, 8, 0, 0,174, 33, 32, 0, 2,
/* 0x0900 */ 12, 0, 5, 36, 70,254, 17, 4, 5, 0, 6, 36, 32, 0,164,143,
/* 0x0910 */ 33, 48, 0, 2,209,254, 17, 4, 33, 40, 0, 0,179,255, 0, 16,
/* 0x0920 */ 33, 32, 32, 2, 24, 0,130,142, 84, 0,191,143, 33, 16,162, 2,
/* 0x0930 */ 80, 0,190,143, 76, 0,183,143, 72, 0,182,143, 68, 0,181,143,
/* 0x0940 */ 64, 0,180,143, 60, 0,179,143, 56, 0,178,143, 52, 0,177,143,
/* 0x0950 */ 48, 0,176,143, 8, 0,224, 3, 88, 0,189, 39,192,255,189, 39,
/* 0x0960 */ 56, 0,191,175, 52, 0,181,175, 48, 0,180,175, 44, 0,179,175,
/* 0x0970 */ 40, 0,178,175, 36, 0,177,175, 32, 0,176,175, 4, 0,130,140,
/* 0x0980 */ 33,144, 0, 1, 0, 0,136,140, 33, 24,128, 0, 33,152,192, 0,
/* 0x0990 */ 33,168, 96, 1, 33,160,224, 0, 33,136, 32, 1, 12, 0, 66, 36,
/* 0x09a0 */ 12, 0,165,175, 20, 0,164, 39, 4, 0,165, 39, 33, 48, 64, 2,
/* 0x09b0 */ 33, 56, 0, 0, 33,128, 64, 1, 16, 0,163,175, 24, 0,163,175,
/* 0x09c0 */ 4, 0,168,175, 20, 0,162,175, 61,254, 17, 4, 8, 0,179,175,
/* 0x09d0 */ 33, 72, 32, 2, 33, 32, 64, 2, 33, 40, 96, 2, 12, 0,166, 39,
/* 0x09e0 */ 33, 56,128, 2, 33, 64,160, 3, 33, 80,160, 2,166,254, 17, 4,
/* 0x09f0 */ 0, 0,176,175, 33, 48, 64, 0, 33, 32,128, 2, 9, 0, 5, 36,
/* 0x0a00 */ 150,254, 17, 4, 33,136, 64, 0, 44, 0,102,150, 52, 0,100, 38,
/* 0x0a10 */ 43, 0, 0, 16, 33, 40, 0, 0, 0, 0,131,140, 3, 0, 2, 36,
/* 0x0a20 */ 39, 0, 98, 20, 32, 0,132, 36,224,255,132, 36, 8, 0,130,140,
/* 0x0a30 */ 0, 0,164,143, 33, 40, 0, 0, 33, 32, 68, 0, 33, 48, 0, 0,
/* 0x0a40 */ 242,253, 17, 4,165, 15, 2, 36, 9, 0, 64, 4, 33,128, 64, 0,
/* 0x0a50 */ 33, 32, 64, 0, 33, 40, 96, 2, 0, 2, 6, 36,235,253, 17, 4,
/* 0x0a60 */ 163, 15, 2, 36, 0, 2, 3, 36, 6, 0, 67, 16, 33, 80,160, 2,
/* 0x0a70 */ 127, 0, 4, 36,229,253, 17, 4,161, 15, 2, 36,255,255, 0, 16,
/* 0x0a80 */ 0, 0, 0, 0, 33, 56,128, 2, 33, 64,160, 3, 33, 72, 0, 0,
/* 0x0a90 */ 125,254, 17, 4, 33, 48, 0, 0, 0, 0,166,143, 33, 32,128, 2,
/* 0x0aa0 */ 7, 0, 5, 36,109,254, 17, 4, 33,136, 64, 0, 33, 32, 0, 2,
/* 0x0ab0 */ 214,253, 17, 4,166, 15, 2, 36, 5, 0, 0, 16, 33, 16, 32, 2,
/* 0x0ac0 */ 42, 16,166, 0,212,255, 64, 20, 1, 0,165, 36, 33, 16, 32, 2,
/* 0x0ad0 */ 56, 0,191,143, 52, 0,181,143, 48, 0,180,143, 44, 0,179,143,
/* 0x0ae0 */ 40, 0,178,143, 36, 0,177,143, 32, 0,176,143, 8, 0,224, 3,
/* 0x0af0 */ 64, 0,189, 39
};

View File

@ -1,5 +1,5 @@
/* powerpc-linux.elf-fold.h
created from powerpc-linux.elf-fold.bin, 4292 (0x10c4) bytes
created from powerpc-linux.elf-fold.bin, 4416 (0x1140) bytes
This file is part of the UPX executable compressor.
@ -31,17 +31,17 @@
*/
#define STUB_POWERPC_LINUX_ELF_FOLD_SIZE 4292
#define STUB_POWERPC_LINUX_ELF_FOLD_ADLER32 0x16bb7847
#define STUB_POWERPC_LINUX_ELF_FOLD_CRC32 0x2b07e6ab
#define STUB_POWERPC_LINUX_ELF_FOLD_SIZE 4416
#define STUB_POWERPC_LINUX_ELF_FOLD_ADLER32 0xd2ab929b
#define STUB_POWERPC_LINUX_ELF_FOLD_CRC32 0xcb873be1
unsigned char stub_powerpc_linux_elf_fold[4292] = {
unsigned char stub_powerpc_linux_elf_fold[4416] = {
/* 0x0000 */ 127, 69, 76, 70, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0010 */ 0, 2, 0, 20, 0, 0, 0, 1, 0, 16, 0,128, 0, 0, 0, 52,
/* 0x0020 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 32, 0, 2, 0, 0,
/* 0x0030 */ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 16, 0, 0,
/* 0x0040 */ 0, 16, 0, 0, 0, 0, 16,196, 0, 0, 16,196, 0, 0, 0, 5,
/* 0x0050 */ 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 16,196, 0, 0, 0, 0,
/* 0x0040 */ 0, 16, 0, 0, 0, 0, 17, 64, 0, 0, 17, 64, 0, 0, 0, 5,
/* 0x0050 */ 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 17, 64, 0, 0, 0, 0,
/* 0x0060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0070 */ 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 0x0080 */ 56, 96,255,248, 84, 99, 72, 44, 78,128, 0, 32, 96, 0, 0, 0,
@ -68,7 +68,7 @@ unsigned char stub_powerpc_linux_elf_fold[4292] = {
/* 0x01d0 */ 132, 4,255,252,127,132, 8, 64,148, 3,255,252, 65,157,255,244,
/* 0x01e0 */ 124, 97, 27,120,148, 33,247,240,127, 3,195,120,126,228,187,120,
/* 0x01f0 */ 56,161, 0, 16,127, 70,211,120,127,231,251,120,126,200,179,120,
/* 0x0200 */ 127, 41,203,120, 72, 0, 12,193, 56, 33, 8, 16,124,127, 27,120,
/* 0x0200 */ 127, 41,203,120, 72, 0, 13, 61, 56, 33, 8, 16,124,127, 27,120,
/* 0x0210 */ 57, 0, 0, 0,127,103,219,120, 56,192, 0, 2, 56,160, 0, 1,
/* 0x0220 */ 124,158, 0,208, 56, 96, 0, 0, 72, 0, 0, 69,127, 99,219,120,
/* 0x0230 */ 72, 0, 0,129,127, 67,211,120,128, 3, 0, 0,128,131, 0, 4,
@ -206,103 +206,110 @@ unsigned char stub_powerpc_linux_elf_fold[4292] = {
/* 0x0a70 */ 144,191, 0, 16,144,223, 0, 20,144,255, 0, 24,145, 31, 0, 28,
/* 0x0a80 */ 75,255,246, 1,124, 96, 27,120,124, 0, 0,248,144, 31, 0, 32,
/* 0x0a90 */ 129, 63, 0, 12,129, 41, 0, 28,128, 31, 0, 12,124, 9, 2, 20,
/* 0x0aa0 */ 144, 31, 0, 36,129, 63, 0, 12,160, 9, 0, 16, 84, 0, 4, 62,
/* 0x0ab0 */ 47,128, 0, 2, 64,158, 0, 16, 56, 0, 0, 16,144, 31, 0, 84,
/* 0x0ac0 */ 72, 0, 0, 12, 56, 0, 0, 0,144, 31, 0, 84,129, 63, 0, 12,
/* 0x0ad0 */ 160, 9, 0, 44, 84, 0, 4, 62, 57, 63, 0, 40,128,127, 0, 84,
/* 0x0ae0 */ 128,159, 0, 36,124, 5, 3,120,125, 38, 75,120, 75,255,253,253,
/* 0x0af0 */ 124, 96, 27,120,144, 31, 0, 44, 56, 0, 0, 0,144, 31, 0, 48,
/* 0x0b00 */ 129, 63, 0, 12,160, 9, 0, 44, 84, 9, 4, 62,128, 31, 0, 48,
/* 0x0b10 */ 127,137, 0, 0, 64,157, 3, 68,128, 31, 0, 16, 47,128, 0, 0,
/* 0x0b20 */ 65,158, 0, 56,129, 63, 0, 36,128, 9, 0, 0, 47,128, 0, 6,
/* 0x0b30 */ 64,158, 0, 40,129, 63, 0, 36,129, 41, 0, 8,128, 31, 0, 44,
/* 0x0b40 */ 124, 9, 2, 20,128,127, 0, 20, 56,128, 0, 3,124, 5, 3,120,
/* 0x0b50 */ 75,255,253, 53, 72, 0, 2,232,129, 63, 0, 36,128, 9, 0, 0,
/* 0x0b60 */ 47,128, 0, 1, 64,158, 2,216,128, 31, 0, 16, 47,128, 0, 0,
/* 0x0b70 */ 65,158, 0,120,129, 63, 0, 36,128, 9, 0, 4, 47,128, 0, 0,
/* 0x0b80 */ 64,158, 0,104,129, 63, 0, 36,129, 41, 0, 8,128, 31, 0, 44,
/* 0x0b90 */ 125,105, 2, 20,129, 63, 0, 12,128, 9, 0, 28,124, 11, 2, 20,
/* 0x0ba0 */ 128,127, 0, 20, 56,128, 0, 3,124, 5, 3,120, 75,255,252,217,
/* 0x0bb0 */ 129, 63, 0, 12,160, 9, 0, 44, 84, 0, 4, 62,128,127, 0, 20,
/* 0x0bc0 */ 56,128, 0, 5,124, 5, 3,120, 75,255,252,189,129, 63, 0, 12,
/* 0x0bd0 */ 160, 9, 0, 42, 84, 0, 4, 62,128,127, 0, 20, 56,128, 0, 4,
/* 0x0be0 */ 124, 5, 3,120, 75,255,252,161,129, 63, 0, 36,128, 9, 0, 24,
/* 0x0bf0 */ 84, 0, 7,126, 84, 9, 16, 58, 60, 0,115, 81, 96, 0, 98, 64,
/* 0x0c00 */ 124, 0, 76, 48, 84, 0, 7,126,144, 31, 0, 52,129, 63, 0, 36,
/* 0x0c10 */ 128, 9, 0, 16,144, 31, 0, 56,144, 31, 0, 64,129, 63, 0, 36,
/* 0x0c20 */ 129, 41, 0, 8,128, 31, 0, 44,124, 9, 2, 20,144, 31, 0, 60,
/* 0x0c30 */ 144, 31, 0, 68,129, 63, 0, 36,129, 41, 0, 20,128, 31, 0, 68,
/* 0x0c40 */ 124, 9, 2, 20,144, 31, 0, 72,129, 63, 0, 68,128, 31, 0, 32,
/* 0x0c50 */ 125, 32, 0, 56,144, 31, 0, 76,129, 63, 0, 64,128, 31, 0, 76,
/* 0x0c60 */ 124, 9, 2, 20,144, 31, 0, 64,129, 63, 0, 68,128, 31, 0, 76,
/* 0x0c70 */ 124, 0, 72, 80,144, 31, 0, 68,128, 31, 0, 16, 47,128, 0, 0,
/* 0x0c80 */ 65,158, 0,120,128,127, 0, 68,128,159, 0, 64, 56,160, 0, 3,
/* 0x0c90 */ 56,192, 0, 50, 56,224,255,255, 57, 0, 0, 0, 75,255,245,209,
/* 0x0ca0 */ 124, 96, 27,120,129, 63, 0, 68,127,128, 72, 0, 65,158, 0, 8,
/* 0x0cb0 */ 72, 0, 1, 32, 56, 31, 0, 56,144, 31, 0, 88,128, 31, 0, 52,
/* 0x0cc0 */ 84, 0, 7,122, 47,128, 0, 0, 65,158, 0, 16,128, 31, 0, 28,
/* 0x0cd0 */ 144, 31, 0, 92, 72, 0, 0, 12, 56, 0, 0, 0,144, 31, 0, 92,
/* 0x0ce0 */ 128,127, 0, 16,128,159, 0, 88,128,191, 0, 8,128,223, 0, 92,
/* 0x0cf0 */ 75,255,247, 9, 72, 0, 0, 68,129, 63, 0, 36,129, 41, 0, 4,
/* 0x0d00 */ 128, 31, 0, 76,124, 0, 72, 80,128,127, 0, 68,128,159, 0, 64,
/* 0x0d10 */ 128,191, 0, 52, 56,192, 0, 18,128,255, 0, 8,124, 8, 3,120,
/* 0x0d20 */ 75,255,245, 77,124,105, 27,120,128, 31, 0, 68,127,137, 0, 0,
/* 0x0d30 */ 65,158, 0, 8, 72, 0, 0,156,128, 31, 0, 64,125, 32, 0,208,
/* 0x0d40 */ 128, 31, 0, 32,125, 32, 0, 56,144, 31, 0, 76,128, 31, 0, 52,
/* 0x0d50 */ 84, 0, 7,188, 47,128, 0, 0, 65,158, 0, 28,128, 31, 0, 68,
/* 0x0d60 */ 129, 63, 0, 64,124, 0, 74, 20,124, 3, 3,120,128,159, 0, 76,
/* 0x0d70 */ 75,255,250, 41,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0, 92,
/* 0x0d80 */ 128,127, 0, 36,128,159, 0, 44,128,191, 0, 32, 75,255,248,153,
/* 0x0d90 */ 124, 96, 27,120,144, 31, 0, 80,128, 31, 0, 80, 47,128, 0, 0,
/* 0x0da0 */ 65,158, 0, 20,128,127, 0, 20, 56,128, 0, 0,128,191, 0, 80,
/* 0x0db0 */ 75,255,250,213,128,127, 0, 68,128,159, 0, 64,128,191, 0, 52,
/* 0x0dc0 */ 75,255,244,249,124, 96, 27,120, 47,128, 0, 0, 65,158, 0, 12,
/* 0x0dd0 */ 56, 96, 0,127, 75,255,244,173,129, 63, 0, 64,128, 31, 0, 76,
/* 0x0de0 */ 125, 41, 2, 20,128, 31, 0, 68,124, 0, 74, 20,144, 31, 0, 68,
/* 0x0df0 */ 129, 63, 0, 68,128, 31, 0, 72,127,137, 0, 64, 64,156, 0, 64,
/* 0x0e00 */ 129, 63, 0, 72,128, 31, 0, 68,124, 0, 72, 80,128,127, 0, 68,
/* 0x0e10 */ 124, 4, 3,120,128,191, 0, 52, 56,192, 0, 50, 56,224,255,255,
/* 0x0e20 */ 57, 0, 0, 0, 75,255,244, 73,124,105, 27,120,128, 31, 0, 68,
/* 0x0e30 */ 127,137, 0, 0, 65,158, 0, 8, 72, 0, 0, 0,129, 63, 0, 36,
/* 0x0e40 */ 56, 9, 0, 32,144, 31, 0, 36,129, 63, 0, 48, 56, 9, 0, 1,
/* 0x0e50 */ 144, 31, 0, 48, 75,255,252,172,128, 31, 0, 16, 47,128, 0, 0,
/* 0x0e60 */ 65,158, 0, 32,129, 63, 0, 12,160, 9, 0, 16, 84, 0, 4, 62,
/* 0x0e70 */ 47,128, 0, 3, 65,158, 0, 12,128,127, 0, 40, 75,255,245, 61,
/* 0x0e80 */ 128, 31, 0, 24, 47,128, 0, 0, 65,158, 0, 16,129, 63, 0, 24,
/* 0x0e90 */ 128, 31, 0, 44,144, 9, 0, 0,129, 63, 0, 12,129, 41, 0, 24,
/* 0x0ea0 */ 128, 31, 0, 44,124, 9, 2, 20,124, 3, 3,120,129, 97, 0, 0,
/* 0x0eb0 */ 128, 11, 0, 4,124, 8, 3,166,131,235,255,252,125, 97, 91,120,
/* 0x0ec0 */ 78,128, 0, 32,148, 33,255,160,124, 8, 2,166,147,225, 0, 92,
/* 0x0ed0 */ 144, 1, 0,100,124, 63, 11,120,144,127, 0, 8,144,159, 0, 12,
/* 0x0ee0 */ 144,191, 0, 16,144,223, 0, 20,144,255, 0, 24,145, 31, 0, 28,
/* 0x0ef0 */ 145, 63, 0, 32,129, 63, 0, 8,129, 41, 0, 4, 56, 9, 0, 12,
/* 0x0f00 */ 144, 31, 0, 36,128, 31, 0, 16,144, 31, 0, 44,129, 63, 0, 8,
/* 0x0f10 */ 128, 9, 0, 0,144, 31, 0, 40,128, 31, 0, 8,144, 31, 0, 52,
/* 0x0f20 */ 128, 31, 0, 12,144, 31, 0, 48, 56, 31, 0, 48, 57, 63, 0, 40,
/* 0x0f30 */ 124, 3, 3,120,125, 36, 75,120,128,191, 0, 24, 56,192, 0, 0,
/* 0x0f40 */ 75,255,244,185,129, 63, 0, 52,128, 31, 0, 36,124, 0, 72, 80,
/* 0x0f50 */ 144, 31, 0, 52,128, 31, 0, 12,144, 31, 0, 48,128, 31, 0, 32,
/* 0x0f60 */ 144, 31, 0, 56,129, 63, 0, 16, 56, 9, 0, 52,144, 31, 0, 60,
/* 0x0f70 */ 56, 31, 0, 48, 57, 63, 0, 56,128,127, 0, 24,128,159, 0, 16,
/* 0x0f80 */ 124, 5, 3,120,128,223, 0, 20,125, 39, 75,120,129, 31, 0, 28,
/* 0x0f90 */ 75,255,250,197,124, 96, 27,120,144, 31, 0, 64,128,127, 0, 20,
/* 0x0fa0 */ 56,128, 0, 9,128,191, 0, 64, 75,255,248,221, 56, 0, 0, 0,
/* 0x0fb0 */ 144, 31, 0, 68,129, 63, 0, 16, 56, 9, 0, 52,144, 31, 0, 60,
/* 0x0fc0 */ 129, 63, 0, 16,160, 9, 0, 44, 84, 9, 4, 62,128, 31, 0, 68,
/* 0x0fd0 */ 127,137, 0, 0, 64,157, 0,208,129, 63, 0, 60,128, 9, 0, 0,
/* 0x0fe0 */ 47,128, 0, 3, 64,158, 0,164,129, 63, 0, 60,129, 41, 0, 8,
/* 0x0ff0 */ 128, 31, 0, 56,124, 9, 2, 20,124, 3, 3,120, 56,128, 0, 0,
/* 0x1000 */ 56,160, 0, 0, 75,255,242,165,124, 96, 27,120,144, 31, 0, 72,
/* 0x1010 */ 128, 31, 0, 72, 47,128, 0, 0, 64,156, 0, 8, 72, 0, 0, 32,
/* 0x1020 */ 128,127, 0, 72,128,159, 0, 16, 56,160, 2, 0, 75,255,242,117,
/* 0x1030 */ 124, 96, 27,120, 47,128, 2, 0, 65,158, 0, 12, 56, 96, 0,127,
/* 0x1040 */ 75,255,242, 65, 56, 31, 0, 56,128,127, 0, 72,128,159, 0, 16,
/* 0x1050 */ 56,160, 0, 0,128,223, 0, 20,124, 7, 3,120, 57, 0, 0, 0,
/* 0x1060 */ 75,255,249,245,124, 96, 27,120,144, 31, 0, 64,128,127, 0, 20,
/* 0x1070 */ 56,128, 0, 7,128,191, 0, 56, 75,255,248, 13,128,127, 0, 72,
/* 0x1080 */ 75,255,242, 49, 72, 0, 0, 32,129, 63, 0, 60, 56, 9, 0, 32,
/* 0x1090 */ 144, 31, 0, 60,129, 63, 0, 68, 56, 9, 0, 1,144, 31, 0, 68,
/* 0x10a0 */ 75,255,255, 32,128, 31, 0, 64,124, 3, 3,120,129, 97, 0, 0,
/* 0x10b0 */ 128, 11, 0, 4,124, 8, 3,166,131,235,255,252,125, 97, 91,120,
/* 0x10c0 */ 78,128, 0, 32
/* 0x0aa0 */ 144, 31, 0, 36,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0,120,
/* 0x0ab0 */ 129, 63, 0, 24,128, 9, 0, 0,144, 31, 0, 48,129, 63, 0, 48,
/* 0x0ac0 */ 129, 41, 0, 28,128, 31, 0, 48,124, 9, 2, 20,144, 31, 0, 52,
/* 0x0ad0 */ 129, 63, 0, 52, 57, 41, 0, 32,129,127, 0, 48,128, 9, 0, 8,
/* 0x0ae0 */ 124, 0, 88, 80,144, 31, 0, 48,129, 63, 0, 52,129, 41, 0, 20,
/* 0x0af0 */ 128, 31, 0, 48,124, 9, 2, 20,144, 31, 0, 40,129, 63, 0, 52,
/* 0x0b00 */ 128,127, 0, 48,128,137, 0, 20, 56,160, 0, 0, 56,192, 0, 50,
/* 0x0b10 */ 56,224,255,255, 57, 0, 0, 0, 75,255,247, 85,144,127, 0, 44,
/* 0x0b20 */ 72, 0, 0, 84,129, 63, 0, 12,160, 9, 0, 16, 84, 0, 4, 62,
/* 0x0b30 */ 47,128, 0, 3, 65,158, 0, 16, 56, 0, 0, 16,144, 31, 0, 84,
/* 0x0b40 */ 72, 0, 0, 12, 56, 0, 0, 0,144, 31, 0, 84,129, 63, 0, 12,
/* 0x0b50 */ 160, 9, 0, 44, 84, 0, 4, 62, 57, 63, 0, 40,128,127, 0, 84,
/* 0x0b60 */ 128,159, 0, 36,124, 5, 3,120,125, 38, 75,120, 75,255,253,125,
/* 0x0b70 */ 144,127, 0, 44, 56, 0, 0, 0,144, 31, 0, 52,129, 63, 0, 12,
/* 0x0b80 */ 160, 9, 0, 44, 84, 9, 4, 62,128, 31, 0, 52,127,137, 0, 0,
/* 0x0b90 */ 64,157, 3, 68,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0, 56,
/* 0x0ba0 */ 129, 63, 0, 36,128, 9, 0, 0, 47,128, 0, 6, 64,158, 0, 40,
/* 0x0bb0 */ 129, 63, 0, 36,129, 41, 0, 8,128, 31, 0, 44,124, 9, 2, 20,
/* 0x0bc0 */ 128,127, 0, 20, 56,128, 0, 3,124, 5, 3,120, 75,255,252,185,
/* 0x0bd0 */ 72, 0, 2,232,129, 63, 0, 36,128, 9, 0, 0, 47,128, 0, 1,
/* 0x0be0 */ 64,158, 2,216,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0,120,
/* 0x0bf0 */ 129, 63, 0, 36,128, 9, 0, 4, 47,128, 0, 0, 64,158, 0,104,
/* 0x0c00 */ 129, 63, 0, 36,129, 41, 0, 8,128, 31, 0, 44,125,105, 2, 20,
/* 0x0c10 */ 129, 63, 0, 12,128, 9, 0, 28,124, 11, 2, 20,128,127, 0, 20,
/* 0x0c20 */ 56,128, 0, 3,124, 5, 3,120, 75,255,252, 93,129, 63, 0, 12,
/* 0x0c30 */ 160, 9, 0, 44, 84, 0, 4, 62,128,127, 0, 20, 56,128, 0, 5,
/* 0x0c40 */ 124, 5, 3,120, 75,255,252, 65,129, 63, 0, 12,160, 9, 0, 42,
/* 0x0c50 */ 84, 0, 4, 62,128,127, 0, 20, 56,128, 0, 4,124, 5, 3,120,
/* 0x0c60 */ 75,255,252, 37,129, 63, 0, 36,128, 9, 0, 24, 84, 0, 7,126,
/* 0x0c70 */ 84, 9, 16, 58, 60, 0,115, 81, 96, 0, 98, 64,124, 0, 76, 48,
/* 0x0c80 */ 84, 0, 7,126,144, 31, 0, 48,129, 63, 0, 36,128, 9, 0, 16,
/* 0x0c90 */ 144, 31, 0, 56,144, 31, 0, 64,129, 63, 0, 36,129, 41, 0, 8,
/* 0x0ca0 */ 128, 31, 0, 44,124, 9, 2, 20,144, 31, 0, 60,144, 31, 0, 68,
/* 0x0cb0 */ 129, 63, 0, 36,129, 41, 0, 20,128, 31, 0, 68,124, 9, 2, 20,
/* 0x0cc0 */ 144, 31, 0, 72,129, 63, 0, 68,128, 31, 0, 32,125, 32, 0, 56,
/* 0x0cd0 */ 144, 31, 0, 76,129, 63, 0, 64,128, 31, 0, 76,124, 9, 2, 20,
/* 0x0ce0 */ 144, 31, 0, 64,129, 63, 0, 68,128, 31, 0, 76,124, 0, 72, 80,
/* 0x0cf0 */ 144, 31, 0, 68,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0,120,
/* 0x0d00 */ 128,127, 0, 68,128,159, 0, 64, 56,160, 0, 3, 56,192, 0, 50,
/* 0x0d10 */ 56,224,255,255, 57, 0, 0, 0, 75,255,245, 85,124, 96, 27,120,
/* 0x0d20 */ 129, 63, 0, 68,127,128, 72, 0, 65,158, 0, 8, 72, 0, 1, 32,
/* 0x0d30 */ 56, 31, 0, 56,144, 31, 0, 88,128, 31, 0, 48, 84, 0, 7,122,
/* 0x0d40 */ 47,128, 0, 0, 65,158, 0, 16,128, 31, 0, 28,144, 31, 0, 92,
/* 0x0d50 */ 72, 0, 0, 12, 56, 0, 0, 0,144, 31, 0, 92,128,127, 0, 16,
/* 0x0d60 */ 128,159, 0, 88,128,191, 0, 8,128,223, 0, 92, 75,255,246,141,
/* 0x0d70 */ 72, 0, 0, 68,129, 63, 0, 36,129, 41, 0, 4,128, 31, 0, 76,
/* 0x0d80 */ 124, 0, 72, 80,128,127, 0, 68,128,159, 0, 64,128,191, 0, 48,
/* 0x0d90 */ 56,192, 0, 18,128,255, 0, 8,124, 8, 3,120, 75,255,244,209,
/* 0x0da0 */ 124,105, 27,120,128, 31, 0, 68,127,137, 0, 0, 65,158, 0, 8,
/* 0x0db0 */ 72, 0, 0,156,128, 31, 0, 64,125, 32, 0,208,128, 31, 0, 32,
/* 0x0dc0 */ 125, 32, 0, 56,144, 31, 0, 76,128, 31, 0, 48, 84, 0, 7,188,
/* 0x0dd0 */ 47,128, 0, 0, 65,158, 0, 28,128, 31, 0, 68,129, 63, 0, 64,
/* 0x0de0 */ 124, 0, 74, 20,124, 3, 3,120,128,159, 0, 76, 75,255,249,173,
/* 0x0df0 */ 128, 31, 0, 16, 47,128, 0, 0, 65,158, 0, 92,128,127, 0, 36,
/* 0x0e00 */ 128,159, 0, 44,128,191, 0, 32, 75,255,248, 29,124, 96, 27,120,
/* 0x0e10 */ 144, 31, 0, 80,128, 31, 0, 80, 47,128, 0, 0, 65,158, 0, 20,
/* 0x0e20 */ 128,127, 0, 20, 56,128, 0, 0,128,191, 0, 80, 75,255,250, 89,
/* 0x0e30 */ 128,127, 0, 68,128,159, 0, 64,128,191, 0, 48, 75,255,244,125,
/* 0x0e40 */ 124, 96, 27,120, 47,128, 0, 0, 65,158, 0, 12, 56, 96, 0,127,
/* 0x0e50 */ 75,255,244, 49,129, 63, 0, 64,128, 31, 0, 76,125, 41, 2, 20,
/* 0x0e60 */ 128, 31, 0, 68,124, 0, 74, 20,144, 31, 0, 68,129, 63, 0, 68,
/* 0x0e70 */ 128, 31, 0, 72,127,137, 0, 64, 64,156, 0, 64,129, 63, 0, 72,
/* 0x0e80 */ 128, 31, 0, 68,124, 0, 72, 80,128,127, 0, 68,124, 4, 3,120,
/* 0x0e90 */ 128,191, 0, 48, 56,192, 0, 50, 56,224,255,255, 57, 0, 0, 0,
/* 0x0ea0 */ 75,255,243,205,124,105, 27,120,128, 31, 0, 68,127,137, 0, 0,
/* 0x0eb0 */ 65,158, 0, 8, 72, 0, 0, 0,129, 63, 0, 36, 56, 9, 0, 32,
/* 0x0ec0 */ 144, 31, 0, 36,129, 63, 0, 52, 56, 9, 0, 1,144, 31, 0, 52,
/* 0x0ed0 */ 75,255,252,172,128, 31, 0, 16, 47,128, 0, 0, 65,158, 0, 32,
/* 0x0ee0 */ 129, 63, 0, 12,160, 9, 0, 16, 84, 0, 4, 62, 47,128, 0, 3,
/* 0x0ef0 */ 65,158, 0, 12,128,127, 0, 40, 75,255,244,193,128, 31, 0, 24,
/* 0x0f00 */ 47,128, 0, 0, 65,158, 0, 16,129, 63, 0, 24,128, 31, 0, 44,
/* 0x0f10 */ 144, 9, 0, 0,129, 63, 0, 12,129, 41, 0, 24,128, 31, 0, 44,
/* 0x0f20 */ 124, 9, 2, 20,124, 3, 3,120,129, 97, 0, 0,128, 11, 0, 4,
/* 0x0f30 */ 124, 8, 3,166,131,235,255,252,125, 97, 91,120, 78,128, 0, 32,
/* 0x0f40 */ 148, 33,255,160,124, 8, 2,166,147,225, 0, 92,144, 1, 0,100,
/* 0x0f50 */ 124, 63, 11,120,144,127, 0, 8,144,159, 0, 12,144,191, 0, 16,
/* 0x0f60 */ 144,223, 0, 20,144,255, 0, 24,145, 31, 0, 28,145, 63, 0, 32,
/* 0x0f70 */ 129, 63, 0, 8,129, 41, 0, 4, 56, 9, 0, 12,144, 31, 0, 36,
/* 0x0f80 */ 128, 31, 0, 16,144, 31, 0, 44,129, 63, 0, 8,128, 9, 0, 0,
/* 0x0f90 */ 144, 31, 0, 40,128, 31, 0, 8,144, 31, 0, 52,128, 31, 0, 12,
/* 0x0fa0 */ 144, 31, 0, 48, 56, 31, 0, 48, 57, 63, 0, 40,124, 3, 3,120,
/* 0x0fb0 */ 125, 36, 75,120,128,191, 0, 24, 56,192, 0, 0, 75,255,244, 61,
/* 0x0fc0 */ 129, 63, 0, 52,128, 31, 0, 36,124, 0, 72, 80,144, 31, 0, 52,
/* 0x0fd0 */ 128, 31, 0, 12,144, 31, 0, 48,128, 31, 0, 32,144, 31, 0, 56,
/* 0x0fe0 */ 129, 63, 0, 16, 56, 9, 0, 52,144, 31, 0, 60, 56, 31, 0, 48,
/* 0x0ff0 */ 57, 63, 0, 56,128,127, 0, 24,128,159, 0, 16,124, 5, 3,120,
/* 0x1000 */ 128,223, 0, 20,125, 39, 75,120,129, 31, 0, 28, 75,255,250, 73,
/* 0x1010 */ 124, 96, 27,120,144, 31, 0, 64,128,127, 0, 20, 56,128, 0, 9,
/* 0x1020 */ 128,191, 0, 64, 75,255,248, 97, 56, 0, 0, 0,144, 31, 0, 68,
/* 0x1030 */ 129, 63, 0, 16, 56, 9, 0, 52,144, 31, 0, 60,129, 63, 0, 16,
/* 0x1040 */ 160, 9, 0, 44, 84, 9, 4, 62,128, 31, 0, 68,127,137, 0, 0,
/* 0x1050 */ 64,157, 0,208,129, 63, 0, 60,128, 9, 0, 0, 47,128, 0, 3,
/* 0x1060 */ 64,158, 0,164,129, 63, 0, 60,129, 41, 0, 8,128, 31, 0, 56,
/* 0x1070 */ 124, 9, 2, 20,124, 3, 3,120, 56,128, 0, 0, 56,160, 0, 0,
/* 0x1080 */ 75,255,242, 41,124, 96, 27,120,144, 31, 0, 72,128, 31, 0, 72,
/* 0x1090 */ 47,128, 0, 0, 64,156, 0, 8, 72, 0, 0, 32,128,127, 0, 72,
/* 0x10a0 */ 128,159, 0, 16, 56,160, 2, 0, 75,255,241,249,124, 96, 27,120,
/* 0x10b0 */ 47,128, 2, 0, 65,158, 0, 12, 56, 96, 0,127, 75,255,241,197,
/* 0x10c0 */ 56, 31, 0, 56,128,127, 0, 72,128,159, 0, 16, 56,160, 0, 0,
/* 0x10d0 */ 128,223, 0, 20,124, 7, 3,120, 57, 0, 0, 0, 75,255,249,121,
/* 0x10e0 */ 124, 96, 27,120,144, 31, 0, 64,128,127, 0, 20, 56,128, 0, 7,
/* 0x10f0 */ 128,191, 0, 56, 75,255,247,145,128,127, 0, 72, 75,255,241,181,
/* 0x1100 */ 72, 0, 0, 32,129, 63, 0, 60, 56, 9, 0, 32,144, 31, 0, 60,
/* 0x1110 */ 129, 63, 0, 68, 56, 9, 0, 1,144, 31, 0, 68, 75,255,255, 32,
/* 0x1120 */ 128, 31, 0, 64,124, 3, 3,120,129, 97, 0, 0,128, 11, 0, 4,
/* 0x1130 */ 124, 8, 3,166,131,235,255,252,125, 97, 91,120, 78,128, 0, 32
};

View File

@ -90,7 +90,7 @@ sz_pack2= . - 4
mflg:
.long MFLG // MAP_{PRIVATE|ANONYMOUS} // QNX vs linux
_start: .globl _start
//// nop; bkpt
//// nop; bkpt
sub sp,sp,#6*4
F_elfaddr= 0*4
F_fd= 1*4
@ -127,17 +127,14 @@ end_decompress: .globl end_decompress
section ELFMAINZ
unfold: // in: r3= mflg; r6= elfaddr; lr= &O_BINFO
str r3,[sp,#F_mflg]
mov r10,#0; sub r10,r10,r6 @ "neg r10,r6": -elfaddr
add r6,lr,#4 @ &b_info of folded code
add r14,r6,r10 @ offset(b_info)
add r6,lr,#4 @ &b_info of folded stub
// Reserve space for input file and unfolded stub
ldr r1,[r6,#sz_unc]
// Reserve space for unfolded stub
mov r5,#0 @ offset
mov r4,#-1 @ fd
@r3= mflg @ MAP_PRIVATE|MAP_ANONYMOUS or MAP_PRIVANON
mov r2,#PROT_READ|PROT_WRITE
add r1,r1,r14 @ length= .sz_unc + offset(b_info)
ldr r1,[r6,#sz_unc]
mov r0,#0 @ kernel chooses addr
str r1,[sp,#F_LENU] @ length to munmap
do_sys7t __NR_mmap64
@ -146,25 +143,14 @@ unfold: // in: r3= mflg; r6= elfaddr; lr= &O_BINFO
stmdb sp!,{TRACE_REGS}; mov r0,#1; bl trace
#endif /*}*/
// Duplicate the input data
ldr r1,[r6,#sz_cpr]
@mov r5,#0
ldr r4,[sp,#F_fd]
mov r3,#MAP_PRIVATE|MAP_FIXED
@mov r2,#PROT_READ|PROT_WRITE
add r1,r1,r14 @ length= .sz_cpr + offset(b_info)
@mov r0,r0 @ same address
do_sys7t __NR_mmap64
add r10,r0,r10 @ relocation amount= (new - old)
// Unfold
ldr r3,[r6,#sz_unc]; str r3,[sp,#-4]! @ P_01
mov r3,sp @ &sz_unc
mov r3,sp @ &sz_unc = &dstlen
mov r2,r0 @ dst
ldrb r0,[r6,#b_method]; str r0,[sp,#-4]! @ P_02 5th param to f_exp
add r2,r6,r10 @ dst= reloc(&b_info)
ldr r1,[r6,#sz_cpr] @ srclen
add r0,r6,#3*4 @ src
mov r4,r2 @ copy of dst
add r0,r6,#sz_b_info @ src
mov r10,r2 @ copy of dst
#if DEBUG /*{*/
stmdb sp!,{TRACE_REGS}; mov r0,#2; bl trace
#endif /*}*/
@ -173,31 +159,24 @@ unfold: // in: r3= mflg; r6= elfaddr; lr= &O_BINFO
ldr r3,[sp],#4 @ P_01 sz_unc
ldr r1,[sp,#F_mflg] @ mflg
str r1,[r4] @ pass mflg to folded code
str r1,[r10],#4 @ pass mflg to folded code
// PROT_EXEC
ldr r0,[sp,#F_f_exp]
add r1,r3,r6 @ old last needed
add r0,r0,r10 @ reloc(f_exp)
add r1,r1,r10 @ new last needed
str r0,[sp,#F_f_exp] @ new f_exp
mov r0,r0,lsr #PAGE_SHIFT @ round down
mov r2,#PROT_EXEC|PROT_READ
mov r0,r0, lsl #PAGE_SHIFT
sub r1,r1,r0 @ length
mov r2,#PROT_EXEC|PROT_READ
ldr r1,[sp,#F_LENU]
ldr r0,[sp,#F_ADRU]
do_sys7t __NR_mprotect
// Use the copy
// jmp unfolded_code
ldr r0,[sp,#F_elfaddr]
ldr r1,[r6,#-4] @ O_BINFO
ldr r0,[sp,#F_ADRU]
add r5,r0,r1 @ ADRX= &b_info
sub r4,r9,r1 @ LENX= sz_pack2 - O_BINFO
add r5,r0,r1 @ ADRX= new Elf32_Ehdr + O_BINFO
add r6,r6,#4 @ past the forwarded data
#if DEBUG /*{*/
stmdb sp!,{TRACE_REGS}; mov r0,#3; bl trace
#endif /*}*/
adr lr,proc_self_exe
add pc,r6,r10 @ goto reloc(unfold)
mov pc,r10 @ goto unfold
proc_self_exe:
.asciz "/proc/self/exe"
.balign 4

View File

@ -33,6 +33,7 @@
sz_Elf32_Ehdr = 13*4
sz_Elf32_Phdr = 8*4
p_vaddr= 4+4
sz_l_info = 12
sz_p_info = 12
sz_b_info = 12
@ -61,6 +62,7 @@ PATH_MAX= 4096
#define OVERHEAD 2048
#define MAX_ELF_HDR 512
#define call bl
mflg_data: .int MAP_PRIVATE|MAP_ANONYMOUS @ overwritten for QNX vs Linux
@ -70,8 +72,8 @@ SP_fd= 3*4
r5= ADRX
lr= "/proc/self/exe"
new sp/ elfaddr,fd, ADRU,LENU, f_exp,%entry, argc,argv,0,envp,0,auxv
(ADRX,LENX) = extent of compressed program (after moving)
(ADRU,LENU) = params for final munmap()
(ADRX,LENX) = extent of compressed program
(ADRU,LENU) = params to munmap unfolded stub
*/
fold_begin: // enter here
#if DEBUG //{
@ -115,7 +117,7 @@ F_entry= 7*4
mov r1,r0 @ buffer
mov r0,lr @ arg1= "/proc/self/exe"
sub r2,r2,#1 @ room for null terminator
bl readlink
call readlink
cmn r0,#4096
movcs r1,lr @ "/proc/self/exe"
movcs r0,#14 @ strlen("/proc/self/exe")
@ -174,7 +176,7 @@ F_delta= 3*4
#endif //}
// r0=av; r1=sz_cpr; r2=f_decompress; r3=f_unfilter;
// xo={sz_unc, &tmp_ehdr}, xi={sz_cpr, &b_info}, elfaddr
bl upx_main
call upx_main
add sp,sp,#(9-4)*4
add sp,sp,#MAX_ELF_HDR + OVERHEAD @ un-alloca
#if DEBUG //{
@ -182,6 +184,13 @@ F_delta= 3*4
#endif //}
str r0,[sp,#F_entry - F_delta] @ entry address
// Discard pages of compressed input data (includes [ADRC,+LENC) )
ldr r1,[r11,#p_vaddr+sz_Elf32_Phdr+sz_Elf32_Ehdr] // Phdr[C_TEXT= 1].p_vaddr
ldr r2,[r11,#p_vaddr +sz_Elf32_Ehdr] // Phdr[C_BASE= 0].p_vaddr
mov r0,r11 // hi &Elf32_Ehdr
sub r1,r1,r2
call munmap // discard C_TEXT compressed data
// Map 1 page of /proc/self/exe so that it does not disappear
ldr r4,[sp],#4 @ pop r4,F_fd
mov r5,#0 @ SEEK_SET offset
@ -190,9 +199,9 @@ F_delta= 3*4
mov r2,#PROT_READ
mov r1,#PAGE_SIZE
mov r0,#0 @ any address
bl mmap @ no error check: cannot recover
call mmap @ no error check: cannot recover
ldmia sp!,{r0,r1} @ fd, offset
bl close
call close
#if DEBUG //{
stmdb sp!,{TRACE_REGS}; mov r0,#0x15; bl trace

View File

@ -667,16 +667,28 @@ do_xmap(int const fdi, Elf32_Ehdr const *const ehdr, Extent *const xi,
#else //}{
unsigned const frag_mask = ~get_page_mask();
#endif //}
Elf32_Phdr const *phdr = (Elf32_Phdr const *) (ehdr->e_phoff +
(void const *)ehdr);
Elf32_Phdr const *phdr = (Elf32_Phdr const *)(void const *)(ehdr->e_phoff +
(char const *)ehdr);
Elf32_Addr v_brk;
ptrdiff_t reloc = xfind_pages(((ET_EXEC==ehdr->e_type) ? MAP_FIXED : 0),
phdr, ehdr->e_phnum, &v_brk
Elf32_Addr reloc;
if (xi) { // compressed main program:
// C_BASE space reservation, C_TEXT compressed data and stub
Elf32_Addr ehdr0 = *p_reloc; // the 'hi' copy!
Elf32_Phdr *phdr0 = (Elf32_Phdr *)(((Elf32_Ehdr *)ehdr0)->e_phoff + ehdr0);
// Clear the 'lo' space reservation for use by PT_LOADs
ehdr0 -= phdr0[1].p_vaddr; // the 'lo' copy
v_brk = phdr0->p_memsz + ehdr0;
reloc = (Elf32_Addr)mmap((void *)ehdr0, phdr0->p_memsz, PROT_NONE,
MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
}
else { // PT_INTERP
reloc = xfind_pages(
((ET_DYN!=ehdr->e_type) ? MAP_FIXED : 0), phdr, ehdr->e_phnum, &v_brk
#if defined(__mips__) //{
, page_mask
#endif //}
);
);
}
#if DEBUG &&!defined(__mips__) //{
size_t const page_mask = 0;

View File

@ -13,7 +13,7 @@ Idx Name Size VMA LMA File off Algn Flags
8 LZMA_DEC10 00000478 00000000 00000000 00000d40 2**0 CONTENTS, RELOC, READONLY
9 LZMA_DEC30 00000000 00000000 00000000 000011b8 2**0 CONTENTS, READONLY
10 ELFMAINY 00000000 00000000 00000000 000011b8 2**0 CONTENTS, READONLY
11 ELFMAINZ 00000134 00000000 00000000 000011b8 2**2 CONTENTS, RELOC, READONLY
11 ELFMAINZ 000000f0 00000000 00000000 000011b8 2**2 CONTENTS, RELOC, READONLY
SYMBOL TABLE:
00000000 l d NRV2E 00000000 NRV2E
00000000 l d NRV2D 00000000 NRV2D
@ -35,7 +35,7 @@ SYMBOL TABLE:
00000000 g LZMA_DEC10 00000000 LzmaDecode
00000000 g ELFMAINY 00000000 end_decompress
00000000 *UND* 00000000 O_BINFO
00000134 g ELFMAINZ 00000000 cpr0
000000f0 g ELFMAINZ 00000000 cpr0
RELOCATION RECORDS FOR [ELFMAINX]:
OFFSET TYPE VALUE
@ -249,6 +249,6 @@ OFFSET TYPE VALUE
RELOCATION RECORDS FOR [ELFMAINZ]:
OFFSET TYPE VALUE
00000120 R_ARM_PC24 ELFMAINZ
0000012c R_ARM_PC24 ELFMAINZ
00000130 R_ARM_ABS32 O_BINFO
000000dc R_ARM_PC24 ELFMAINZ
000000e8 R_ARM_PC24 ELFMAINZ
000000ec R_ARM_ABS32 O_BINFO

View File

@ -9,38 +9,38 @@ Linker script and memory map
TARGET(elf32-littlearm)
0x0000000000008080 . = ((0x8000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000008080 0xa44
.text 0x0000000000008080 0xa94
*(.text)
.text 0x0000000000008080 0x2f8 tmp/arm.v4a-linux.elf-fold.o
0x00000000000082c8 munmap
0x00000000000082fc get_sys_munmap
0x00000000000082b0 getpid
0x00000000000082c0 readlink
0x00000000000082e4 mmap
0x00000000000082d8 __clear_cache
0x0000000000008304 mmap_privanon
0x0000000000008290 write
0x0000000000008288 read
0x00000000000082a8 unlink
0x000000000000827c my_bkpt
0x0000000000008284 exit
0x00000000000082b8 brk
0x0000000000008298 open
0x000000000000831c div10
0x00000000000082d0 mprotect
0x00000000000082a0 close
.text 0x0000000000008378 0x74c tmp/arm.v4a-linux.elf-main.o
0x0000000000008398 get_page_mask
0x0000000000008990 upx_main
.text 0x0000000000008080 0x30c tmp/arm.v4a-linux.elf-fold.o
0x00000000000082dc munmap
0x0000000000008310 get_sys_munmap
0x00000000000082c4 getpid
0x00000000000082d4 readlink
0x00000000000082f8 mmap
0x00000000000082ec __clear_cache
0x0000000000008318 mmap_privanon
0x00000000000082a4 write
0x000000000000829c read
0x00000000000082bc unlink
0x0000000000008290 my_bkpt
0x0000000000008298 exit
0x00000000000082cc brk
0x00000000000082ac open
0x0000000000008330 div10
0x00000000000082e4 mprotect
0x00000000000082b4 close
.text 0x000000000000838c 0x788 tmp/arm.v4a-linux.elf-main.o
0x00000000000083ac get_page_mask
0x00000000000089e0 upx_main
*(.data)
.data 0x0000000000008ac4 0x0 tmp/arm.v4a-linux.elf-fold.o
.data 0x0000000000008ac4 0x0 tmp/arm.v4a-linux.elf-main.o
.data 0x0000000000008b14 0x0 tmp/arm.v4a-linux.elf-fold.o
.data 0x0000000000008b14 0x0 tmp/arm.v4a-linux.elf-main.o
.data
.bss 0x0000000000008ac4 0x0
.bss 0x0000000000008ac4 0x0 tmp/arm.v4a-linux.elf-fold.o
.bss 0x0000000000008ac4 0x0 tmp/arm.v4a-linux.elf-main.o
.bss 0x0000000000008b14 0x0
.bss 0x0000000000008b14 0x0 tmp/arm.v4a-linux.elf-fold.o
.bss 0x0000000000008b14 0x0 tmp/arm.v4a-linux.elf-main.o
LOAD tmp/arm.v4a-linux.elf-fold.o
LOAD tmp/arm.v4a-linux.elf-main.o
OUTPUT(tmp/arm.v4a-linux.elf-fold.bin elf32-littlearm)

View File

@ -13,7 +13,7 @@ Idx Name Size VMA LMA File off Algn Flags
8 LZMA_DEC10 00000478 00000000 00000000 00000d80 2**0 CONTENTS, RELOC, READONLY
9 LZMA_DEC30 00000000 00000000 00000000 000011f8 2**0 CONTENTS, READONLY
10 ELFMAINY 00000000 00000000 00000000 000011f8 2**0 CONTENTS, READONLY
11 ELFMAINZ 0000014c 00000000 00000000 000011f8 2**2 CONTENTS, RELOC, READONLY
11 ELFMAINZ 00000104 00000000 00000000 000011f8 2**2 CONTENTS, RELOC, READONLY
SYMBOL TABLE:
00000000 l d NRV2E 00000000 NRV2E
00000000 l d NRV2D 00000000 NRV2D
@ -35,7 +35,7 @@ SYMBOL TABLE:
00000000 g LZMA_DEC10 00000000 LzmaDecode
00000000 g ELFMAINY 00000000 end_decompress
00000000 *UND* 00000000 O_BINFO
0000014c g ELFMAINZ 00000000 cpr0
00000104 g ELFMAINZ 00000000 cpr0
RELOCATION RECORDS FOR [ELFMAINX]:
OFFSET TYPE VALUE
@ -249,6 +249,6 @@ OFFSET TYPE VALUE
RELOCATION RECORDS FOR [ELFMAINZ]:
OFFSET TYPE VALUE
00000138 R_ARM_PC24 ELFMAINZ
00000144 R_ARM_PC24 ELFMAINZ
00000148 R_ARM_ABS32 O_BINFO
000000f0 R_ARM_PC24 ELFMAINZ
000000fc R_ARM_PC24 ELFMAINZ
00000100 R_ARM_ABS32 O_BINFO

View File

@ -9,38 +9,38 @@ Linker script and memory map
TARGET(elf32-littlearm)
0x0000000000008080 . = ((0x8000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000008080 0xae0
.text 0x0000000000008080 0xb30
*(.text)
.text 0x0000000000008080 0x398 tmp/arm.v5a-linux.elf-fold.o
0x0000000000008334 munmap
0x000000000000839c get_sys_munmap
0x00000000000082f8 getpid
0x0000000000008320 readlink
0x0000000000008378 mmap
0x000000000000835c __clear_cache
0x00000000000083a4 mmap_privanon
0x00000000000082a8 write
0x0000000000008294 read
0x00000000000082e4 unlink
0x000000000000827c my_bkpt
0x0000000000008284 exit
0x000000000000830c brk
0x00000000000082bc open
0x00000000000083bc div10
0x0000000000008348 mprotect
0x00000000000082d0 close
.text 0x0000000000008418 0x748 tmp/armel-linux.elf-main.o
0x0000000000008438 get_page_mask
0x0000000000008a2c upx_main
.text 0x0000000000008080 0x3ac tmp/arm.v5a-linux.elf-fold.o
0x0000000000008348 munmap
0x00000000000083b0 get_sys_munmap
0x000000000000830c getpid
0x0000000000008334 readlink
0x000000000000838c mmap
0x0000000000008370 __clear_cache
0x00000000000083b8 mmap_privanon
0x00000000000082bc write
0x00000000000082a8 read
0x00000000000082f8 unlink
0x0000000000008290 my_bkpt
0x0000000000008298 exit
0x0000000000008320 brk
0x00000000000082d0 open
0x00000000000083d0 div10
0x000000000000835c mprotect
0x00000000000082e4 close
.text 0x000000000000842c 0x784 tmp/armel-linux.elf-main.o
0x000000000000844c get_page_mask
0x0000000000008a7c upx_main
*(.data)
.data 0x0000000000008b60 0x0 tmp/arm.v5a-linux.elf-fold.o
.data 0x0000000000008b60 0x0 tmp/armel-linux.elf-main.o
.data 0x0000000000008bb0 0x0 tmp/arm.v5a-linux.elf-fold.o
.data 0x0000000000008bb0 0x0 tmp/armel-linux.elf-main.o
.data
.bss 0x0000000000008b60 0x0
.bss 0x0000000000008b60 0x0 tmp/arm.v5a-linux.elf-fold.o
.bss 0x0000000000008b60 0x0 tmp/armel-linux.elf-main.o
.bss 0x0000000000008bb0 0x0
.bss 0x0000000000008bb0 0x0 tmp/arm.v5a-linux.elf-fold.o
.bss 0x0000000000008bb0 0x0 tmp/armel-linux.elf-main.o
LOAD tmp/arm.v5a-linux.elf-fold.o
LOAD tmp/armel-linux.elf-main.o
OUTPUT(tmp/arm.v5a-linux.elf-fold.bin elf32-littlearm)

View File

@ -13,7 +13,7 @@ Idx Name Size VMA LMA File off Algn Flags
8 LZMA_DEC10 00000478 00000000 00000000 00000d40 2**0 CONTENTS, RELOC, READONLY
9 LZMA_DEC30 00000000 00000000 00000000 000011b8 2**0 CONTENTS, READONLY
10 ELFMAINY 00000000 00000000 00000000 000011b8 2**0 CONTENTS, READONLY
11 ELFMAINZ 00000134 00000000 00000000 000011b8 2**2 CONTENTS, RELOC, READONLY
11 ELFMAINZ 000000f0 00000000 00000000 000011b8 2**2 CONTENTS, RELOC, READONLY
SYMBOL TABLE:
00000000 l d NRV2E 00000000 NRV2E
00000000 l d NRV2D 00000000 NRV2D
@ -35,7 +35,7 @@ SYMBOL TABLE:
00000000 g LZMA_DEC10 00000000 LzmaDecode
00000000 g ELFMAINY 00000000 end_decompress
00000000 *UND* 00000000 O_BINFO
00000134 g ELFMAINZ 00000000 cpr0
000000f0 g ELFMAINZ 00000000 cpr0
RELOCATION RECORDS FOR [ELFMAINX]:
OFFSET TYPE VALUE
@ -249,6 +249,6 @@ OFFSET TYPE VALUE
RELOCATION RECORDS FOR [ELFMAINZ]:
OFFSET TYPE VALUE
00000120 R_ARM_PC24 ELFMAINZ
0000012c R_ARM_PC24 ELFMAINZ
00000130 R_ARM_ABS32 O_BINFO
000000dc R_ARM_PC24 ELFMAINZ
000000e8 R_ARM_PC24 ELFMAINZ
000000ec R_ARM_ABS32 O_BINFO

View File

@ -9,38 +9,38 @@ Linker script and memory map
TARGET(elf32-bigarm)
0x0000000000008080 . = ((0x8000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000008080 0xa44
.text 0x0000000000008080 0xa94
*(.text)
.text 0x0000000000008080 0x2f8 tmp/armeb.v4a-linux.elf-fold.o
0x00000000000082c8 munmap
0x00000000000082fc get_sys_munmap
0x00000000000082b0 getpid
0x00000000000082c0 readlink
0x00000000000082e4 mmap
0x00000000000082d8 __clear_cache
0x0000000000008304 mmap_privanon
0x0000000000008290 write
0x0000000000008288 read
0x00000000000082a8 unlink
0x000000000000827c my_bkpt
0x0000000000008284 exit
0x00000000000082b8 brk
0x0000000000008298 open
0x000000000000831c div10
0x00000000000082d0 mprotect
0x00000000000082a0 close
.text 0x0000000000008378 0x74c tmp/armeb.v4a-linux.elf-main.o
0x0000000000008398 get_page_mask
0x0000000000008990 upx_main
.text 0x0000000000008080 0x30c tmp/armeb.v4a-linux.elf-fold.o
0x00000000000082dc munmap
0x0000000000008310 get_sys_munmap
0x00000000000082c4 getpid
0x00000000000082d4 readlink
0x00000000000082f8 mmap
0x00000000000082ec __clear_cache
0x0000000000008318 mmap_privanon
0x00000000000082a4 write
0x000000000000829c read
0x00000000000082bc unlink
0x0000000000008290 my_bkpt
0x0000000000008298 exit
0x00000000000082cc brk
0x00000000000082ac open
0x0000000000008330 div10
0x00000000000082e4 mprotect
0x00000000000082b4 close
.text 0x000000000000838c 0x788 tmp/armeb.v4a-linux.elf-main.o
0x00000000000083ac get_page_mask
0x00000000000089e0 upx_main
*(.data)
.data 0x0000000000008ac4 0x0 tmp/armeb.v4a-linux.elf-fold.o
.data 0x0000000000008ac4 0x0 tmp/armeb.v4a-linux.elf-main.o
.data 0x0000000000008b14 0x0 tmp/armeb.v4a-linux.elf-fold.o
.data 0x0000000000008b14 0x0 tmp/armeb.v4a-linux.elf-main.o
.data
.bss 0x0000000000008ac4 0x0
.bss 0x0000000000008ac4 0x0 tmp/armeb.v4a-linux.elf-fold.o
.bss 0x0000000000008ac4 0x0 tmp/armeb.v4a-linux.elf-main.o
.bss 0x0000000000008b14 0x0
.bss 0x0000000000008b14 0x0 tmp/armeb.v4a-linux.elf-fold.o
.bss 0x0000000000008b14 0x0 tmp/armeb.v4a-linux.elf-main.o
LOAD tmp/armeb.v4a-linux.elf-fold.o
LOAD tmp/armeb.v4a-linux.elf-main.o
OUTPUT(tmp/armeb.v4a-linux.elf-fold.bin elf32-bigarm)

View File

@ -9,24 +9,24 @@ Linker script and memory map
TARGET(elf32-i386)
0x0000000000c01080 . = ((0xc01000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000c01080 0x714
.text 0x0000000000c01080 0x744
*(.text)
.text 0x0000000000c01080 0x14c tmp/i386-linux.elf-fold.o
0x0000000000c011a0 mmap
.text 0x0000000000c011cc 0x5c8 tmp/i386-linux.elf-main.o
.text 0x0000000000c011cc 0x5f8 tmp/i386-linux.elf-main.o
0x0000000000c012f4 get_page_mask
0x0000000000c0168a upx_main
0x0000000000c016ba upx_main
*(.data)
.data 0x0000000000c01794 0x0 tmp/i386-linux.elf-fold.o
.data 0x0000000000c01794 0x0 tmp/i386-linux.elf-main.o
.data 0x0000000000c017c4 0x0 tmp/i386-linux.elf-fold.o
.data 0x0000000000c017c4 0x0 tmp/i386-linux.elf-main.o
.data
.bss 0x0000000000c01794 0x0
.bss 0x0000000000c01794 0x0 tmp/i386-linux.elf-fold.o
.bss 0x0000000000c01794 0x0 tmp/i386-linux.elf-main.o
.bss 0x0000000000c017c4 0x0
.bss 0x0000000000c017c4 0x0 tmp/i386-linux.elf-fold.o
.bss 0x0000000000c017c4 0x0 tmp/i386-linux.elf-main.o
.rel.dyn 0x0000000000c01794 0x0
.rel.dyn 0x0000000000c017c4 0x0
.rel.text 0x0000000000000000 0x0 tmp/i386-linux.elf-fold.o
LOAD tmp/i386-linux.elf-fold.o
LOAD tmp/i386-linux.elf-main.o

View File

@ -9,20 +9,20 @@ Linker script and memory map
TARGET(elf32-bigmips)
0x0000000000100080 . = ((0x100000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000100080 0xa50
.text 0x0000000000100080 0xa80
*(.text)
.text 0x0000000000100080 0x170 tmp/mips.r3000-linux.elf-fold.o
.text 0x00000000001001f0 0x8e0 tmp/mips.r3000-linux.elf-main.o
0x0000000000100934 upx_main
.text 0x00000000001001f0 0x910 tmp/mips.r3000-linux.elf-main.o
0x000000000010095c upx_main
*(.data)
.data 0x0000000000100ad0 0x0 tmp/mips.r3000-linux.elf-fold.o
.data 0x0000000000100ad0 0x0 tmp/mips.r3000-linux.elf-main.o
.data 0x0000000000100b00 0x0 tmp/mips.r3000-linux.elf-fold.o
.data 0x0000000000100b00 0x0 tmp/mips.r3000-linux.elf-main.o
.data
.bss 0x0000000000100ad0 0x0
.bss 0x0000000000100ad0 0x0 tmp/mips.r3000-linux.elf-fold.o
.bss 0x0000000000100ad0 0x0 tmp/mips.r3000-linux.elf-main.o
.bss 0x0000000000100b00 0x0
.bss 0x0000000000100b00 0x0 tmp/mips.r3000-linux.elf-fold.o
.bss 0x0000000000100b00 0x0 tmp/mips.r3000-linux.elf-main.o
LOAD tmp/mips.r3000-linux.elf-fold.o
LOAD tmp/mips.r3000-linux.elf-main.o
OUTPUT(tmp/mips.r3000-linux.elf-fold.bin elf32-bigmips)

View File

@ -9,20 +9,20 @@ Linker script and memory map
TARGET(elf32-littlemips)
0x0000000000100080 . = ((0x100000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000100080 0xa50
.text 0x0000000000100080 0xa80
*(.text)
.text 0x0000000000100080 0x170 tmp/mipsel.r3000-linux.elf-fold.o
.text 0x00000000001001f0 0x8e0 tmp/mipsel.r3000-linux.elf-main.o
0x0000000000100934 upx_main
.text 0x00000000001001f0 0x910 tmp/mipsel.r3000-linux.elf-main.o
0x000000000010095c upx_main
*(.data)
.data 0x0000000000100ad0 0x0 tmp/mipsel.r3000-linux.elf-fold.o
.data 0x0000000000100ad0 0x0 tmp/mipsel.r3000-linux.elf-main.o
.data 0x0000000000100b00 0x0 tmp/mipsel.r3000-linux.elf-fold.o
.data 0x0000000000100b00 0x0 tmp/mipsel.r3000-linux.elf-main.o
.data
.bss 0x0000000000100ad0 0x0
.bss 0x0000000000100ad0 0x0 tmp/mipsel.r3000-linux.elf-fold.o
.bss 0x0000000000100ad0 0x0 tmp/mipsel.r3000-linux.elf-main.o
.bss 0x0000000000100b00 0x0
.bss 0x0000000000100b00 0x0 tmp/mipsel.r3000-linux.elf-fold.o
.bss 0x0000000000100b00 0x0 tmp/mipsel.r3000-linux.elf-main.o
LOAD tmp/mipsel.r3000-linux.elf-fold.o
LOAD tmp/mipsel.r3000-linux.elf-main.o
OUTPUT(tmp/mipsel.r3000-linux.elf-fold.bin elf32-littlemips)

View File

@ -9,7 +9,7 @@ Linker script and memory map
TARGET(elf32-powerpc)
0x0000000000100080 . = ((0x100000 + SIZEOF_HEADERS) + 0xc)
.text 0x0000000000100080 0x1044
.text 0x0000000000100080 0x10c0
*(.text)
.text 0x0000000000100080 0x250 tmp/powerpc-linux.elf-fold.o
0x0000000000100080 get_page_mask
@ -24,19 +24,19 @@ TARGET(elf32-powerpc)
0x00000000001002a8 open
0x00000000001002b8 mprotect
0x00000000001002b0 close
.text 0x00000000001002d0 0xdf4 tmp/powerpc-linux.elf-main.o
0x0000000000100ec4 upx_main
.text 0x00000000001002d0 0xe70 tmp/powerpc-linux.elf-main.o
0x0000000000100f40 upx_main
*(.data)
.data 0x00000000001010c4 0x0 tmp/powerpc-linux.elf-fold.o
.data 0x00000000001010c4 0x0 tmp/powerpc-linux.elf-main.o
.data 0x0000000000101140 0x0 tmp/powerpc-linux.elf-fold.o
.data 0x0000000000101140 0x0 tmp/powerpc-linux.elf-main.o
.data
.bss 0x00000000001010c4 0x0
.bss 0x00000000001010c4 0x0 tmp/powerpc-linux.elf-fold.o
.bss 0x00000000001010c4 0x0 tmp/powerpc-linux.elf-main.o
.bss 0x0000000000101140 0x0
.bss 0x0000000000101140 0x0 tmp/powerpc-linux.elf-fold.o
.bss 0x0000000000101140 0x0 tmp/powerpc-linux.elf-main.o
.rela.dyn 0x00000000001010c4 0x0
.rela.dyn 0x0000000000101140 0x0
.rela.text 0x0000000000000000 0x0 tmp/powerpc-linux.elf-fold.o
LOAD tmp/powerpc-linux.elf-fold.o
LOAD tmp/powerpc-linux.elf-main.o