diff --git a/sim/compiled_sim.dll b/sim/compiled_sim.dll index 852696a..eda8002 100644 Binary files a/sim/compiled_sim.dll and b/sim/compiled_sim.dll differ diff --git a/sim/compiled_sim_gates.c b/sim/compiled_sim_gates.c index 9b30f41..830a49a 100644 --- a/sim/compiled_sim_gates.c +++ b/sim/compiled_sim_gates.c @@ -80,6 +80,12 @@ enum GateFuncs { GateFunc_Demux6, GateFunc_Demux7, GateFunc_Demux8, + GateFunc_Adder1, + GateFunc_Adder2, + GateFunc_Adder4, + GateFunc_Adder8, + GateFunc_Adder16, + GateFunc_Adder32, GateFunc_Rom4x1, GateFunc_Rom4x4, GateFunc_Rom4x8, @@ -199,6 +205,12 @@ GATEFUNC(Demux5) { int pa = getdata(0); if(getport(38)) { int a = getword(5, 1) GATEFUNC(Demux6) { int pa = getdata(0); if(getport(71)) { int a = getword(6, 1) + 7; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } } } GATEFUNC(Demux7) { int pa = getdata(0); if(getport(136)) { int a = getword(7, 1) + 8; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } } } GATEFUNC(Demux8) { int pa = getdata(0); if(getport(265)) { int a = getword(8, 1) + 9; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } } } +GATEFUNC(Adder1) { int v = getword(1, 1) + getword(1, 2) + getport(4); setword(1, 3, v); setport(4, (v>>1) & 1); } +GATEFUNC(Adder2) { int v = getword(2, 1) + getword(2, 3) + getport(7); setword(2, 5, v); setport(7, (v>>2) & 1); } +GATEFUNC(Adder4) { int v = getword(4, 1) + getword(4, 5) + getport(13); setword(4, 9, v); setport(13, (v>>4) & 1); } +GATEFUNC(Adder8) { int v = getword(8, 1) + getword(8, 9) + getport(25); setword(8, 17, v); setport(25, (v>>8) & 1); } +GATEFUNC(Adder16) { int v = getword(16, 1) + getword(16, 17) + getport(49); setword(16, 33, v); setport(49, (v>>16) & 1); } +GATEFUNC(Adder32) { unsigned long long v = getword(32, 1) + getword(32, 33) + getport(97); setword(32, 65, v); setport(97, (v>>32) & 1); } GATEFUNC(Rom4x1) { if(getport(6)) { int a = getword(4, 1); for(int i=0; i<1; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(1, 5); } } GATEFUNC(Rom4x4) { if(getport(9)) { int a = getword(4, 1); for(int i=0; i<4; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(4, 5); } } GATEFUNC(Rom4x8) { if(getport(13)) { int a = getword(4, 1); for(int i=0; i<8; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(8, 5); } } @@ -319,6 +331,12 @@ GateFunc sim_logic_functions[] = { GATEFUNCID(Demux6), GATEFUNCID(Demux7), GATEFUNCID(Demux8), + GATEFUNCID(Adder1), + GATEFUNCID(Adder2), + GATEFUNCID(Adder4), + GATEFUNCID(Adder8), + GATEFUNCID(Adder16), + GATEFUNCID(Adder32), GATEFUNCID(Rom4x1), GATEFUNCID(Rom4x4), GATEFUNCID(Rom4x8), diff --git a/sim/compiled_sim_gates.lua b/sim/compiled_sim_gates.lua index 8937926..6b41245 100644 --- a/sim/compiled_sim_gates.lua +++ b/sim/compiled_sim_gates.lua @@ -219,45 +219,51 @@ cFuncsByName = { ["demux 7 bit vertical"] = 77, ["demux 8 bit"] = 78, ["demux 8 bit vertical"] = 78, - ["rom 4x4"] = 79, - ["rom 4x4x4"] = 80, - ["rom 8x2x8"] = 81, - ["rom 8x8"] = 82, - ["rom 8x8x4"] = 83, - ["rom 8x8x8"] = 84, - ["rom 16x4x16"] = 85, - ["rom 32x2x32"] = 86, - ["rom 64x1x48"] = 87, - ["rom 64x1x64"] = 88, - ["rom 16x16"] = 89, - ["rom 16x16x4"] = 90, - ["rom 16x16x8"] = 91, - ["rom 16x16x16"] = 92, - ["rom 32x8x32"] = 93, - ["rom 64x4x48"] = 94, - ["rom 64x4x64"] = 95, - ["rom 32x16"] = 96, - ["rom 32x16x4"] = 97, - ["rom 32x16x8"] = 98, - ["rom 32x16x16"] = 99, - ["rom 32x16x32"] = 100, - ["rom 64x8x48"] = 101, - ["rom 64x8x64"] = 102, - ["rom 32x32x8"] = 103, - ["rom 32x32x16"] = 104, - ["rom 32x32x32"] = 105, - ["rom 64x16x48"] = 106, - ["rom 64x16x64"] = 107, - ["rom 64x32x8"] = 108, - ["rom 64x32x16"] = 109, - ["rom 64x32x32"] = 110, - ["rom 64x32x48"] = 111, - ["rom 64x32x64"] = 112, - ["rom 64x64x8"] = 113, - ["rom 64x64x16"] = 114, - ["rom 64x64x32"] = 115, - ["rom 64x64x48"] = 116, - ["rom 64x64x64"] = 117, + ["adder 1 bit"] = 79, + ["adder 2 bit"] = 80, + ["adder 4 bit"] = 81, + ["adder 8 bit"] = 82, + ["adder 16 bit"] = 83, + ["adder 32 bit"] = 84, + ["rom 4x4"] = 85, + ["rom 4x4x4"] = 86, + ["rom 8x2x8"] = 87, + ["rom 8x8"] = 88, + ["rom 8x8x4"] = 89, + ["rom 8x8x8"] = 90, + ["rom 16x4x16"] = 91, + ["rom 32x2x32"] = 92, + ["rom 64x1x48"] = 93, + ["rom 64x1x64"] = 94, + ["rom 16x16"] = 95, + ["rom 16x16x4"] = 96, + ["rom 16x16x8"] = 97, + ["rom 16x16x16"] = 98, + ["rom 32x8x32"] = 99, + ["rom 64x4x48"] = 100, + ["rom 64x4x64"] = 101, + ["rom 32x16"] = 102, + ["rom 32x16x4"] = 103, + ["rom 32x16x8"] = 104, + ["rom 32x16x16"] = 105, + ["rom 32x16x32"] = 106, + ["rom 64x8x48"] = 107, + ["rom 64x8x64"] = 108, + ["rom 32x32x8"] = 109, + ["rom 32x32x16"] = 110, + ["rom 32x32x32"] = 111, + ["rom 64x16x48"] = 112, + ["rom 64x16x64"] = 113, + ["rom 64x32x8"] = 114, + ["rom 64x32x16"] = 115, + ["rom 64x32x32"] = 116, + ["rom 64x32x48"] = 117, + ["rom 64x32x64"] = 118, + ["rom 64x64x8"] = 119, + ["rom 64x64x16"] = 120, + ["rom 64x64x32"] = 121, + ["rom 64x64x48"] = 122, + ["rom 64x64x64"] = 123, } cDataSizeByName = { diff --git a/sim/dump.txt b/sim/dump.txt index 319b88c..f2d0159 100644 --- a/sim/dump.txt +++ b/sim/dump.txt @@ -6,7 +6,7 @@ Disassembly of section .text: 0000000066341000 : 66341000: 48 8d 0d f9 5f 01 00 lea 0x15ff9(%rip),%rcx # 66357000 <__bss_start__> - 66341007: e9 a4 10 01 00 jmpq 663520b0 <_initialize_onexit_table> + 66341007: e9 64 13 01 00 jmpq 66352370 <_initialize_onexit_table> 6634100c: 0f 1f 40 00 nopl 0x0(%rax) 0000000066341010 <_CRT_INIT>: @@ -44,7 +44,7 @@ Disassembly of section .text: 66341073: 83 f8 02 cmp $0x2,%eax 66341076: 0f 84 e9 00 00 00 je 66341165 <_CRT_INIT+0x155> 6634107c: b9 1f 00 00 00 mov $0x1f,%ecx - 66341081: e8 22 10 01 00 callq 663520a8 <_amsg_exit> + 66341081: e8 e2 12 01 00 callq 66352368 <_amsg_exit> 66341086: b8 01 00 00 00 mov $0x1,%eax 6634108b: 48 83 c4 28 add $0x28,%rsp 6634108f: 5b pop %rbx @@ -116,7 +116,7 @@ Disassembly of section .text: 66341162: 41 5d pop %r13 66341164: c3 retq 66341165: 48 8d 0d 94 5e 01 00 lea 0x15e94(%rip),%rcx # 66357000 <__bss_start__> - 6634116c: e8 3f 10 01 00 callq 663521b0 <_execute_onexit_table> + 6634116c: e8 ff 12 01 00 callq 66352470 <_execute_onexit_table> 66341171: c7 07 00 00 00 00 movl $0x0,(%rdi) 66341177: 48 87 33 xchg %rsi,(%rbx) 6634117a: b8 01 00 00 00 mov $0x1,%eax @@ -139,17 +139,17 @@ Disassembly of section .text: 663411b0: 48 8b 15 a9 31 01 00 mov 0x131a9(%rip),%rdx # 66354360 <.refptr.__xi_z> 663411b7: c7 06 01 00 00 00 movl $0x1,(%rsi) 663411bd: 48 8b 0d 8c 31 01 00 mov 0x1318c(%rip),%rcx # 66354350 <.refptr.__xi_a> - 663411c4: e8 cf 0e 01 00 callq 66352098 <_initterm> + 663411c4: e8 8f 11 01 00 callq 66352358 <_initterm> 663411c9: e9 3d ff ff ff jmpq 6634110b <_CRT_INIT+0xfb> 663411ce: 66 90 xchg %ax,%ax 663411d0: 48 8b 15 69 31 01 00 mov 0x13169(%rip),%rdx # 66354340 <.refptr.__xc_z> 663411d7: 48 8b 0d 52 31 01 00 mov 0x13152(%rip),%rcx # 66354330 <.refptr.__xc_a> - 663411de: e8 b5 0e 01 00 callq 66352098 <_initterm> + 663411de: e8 75 11 01 00 callq 66352358 <_initterm> 663411e3: c7 06 02 00 00 00 movl $0x2,(%rsi) 663411e9: e9 28 ff ff ff jmpq 66341116 <_CRT_INIT+0x106> 663411ee: 66 90 xchg %ax,%ax 663411f0: b9 1f 00 00 00 mov $0x1f,%ecx - 663411f5: e8 ae 0e 01 00 callq 663520a8 <_amsg_exit> + 663411f5: e8 6e 11 01 00 callq 66352368 <_amsg_exit> 663411fa: e9 0c ff ff ff jmpq 6634110b <_CRT_INIT+0xfb> 663411ff: 90 nop @@ -170,15 +170,15 @@ Disassembly of section .text: 6634121f: 8b 05 f3 5d 01 00 mov 0x15df3(%rip),%eax # 66357018 <__proc_attached> 66341225: 85 c0 test %eax,%eax 66341227: 74 33 je 6634125c <__DllMainCRTStartup+0x5c> - 66341229: e8 e2 fd 00 00 callq 66351010 <_pei386_runtime_relocator> + 66341229: e8 a2 00 01 00 callq 663512d0 <_pei386_runtime_relocator> 6634122e: 49 89 e8 mov %rbp,%r8 66341231: 31 d2 xor %edx,%edx 66341233: 48 89 f9 mov %rdi,%rcx - 66341236: e8 c5 0b 01 00 callq 66351e00 + 66341236: e8 85 0e 01 00 callq 663520c0 6634123b: 49 89 e8 mov %rbp,%r8 6634123e: 89 da mov %ebx,%edx 66341240: 48 89 f9 mov %rdi,%rcx - 66341243: e8 a8 0b 01 00 callq 66351df0 + 66341243: e8 68 0e 01 00 callq 663520b0 66341248: 49 89 e8 mov %rbp,%r8 6634124b: 89 da mov %ebx,%edx 6634124d: 48 89 f9 mov %rdi,%rcx @@ -196,14 +196,14 @@ Disassembly of section .text: 6634126f: 5d pop %rbp 66341270: 41 5c pop %r12 66341272: c3 retq - 66341273: e8 98 fd 00 00 callq 66351010 <_pei386_runtime_relocator> + 66341273: e8 58 00 01 00 callq 663512d0 <_pei386_runtime_relocator> 66341278: 8d 43 ff lea -0x1(%rbx),%eax 6634127b: 83 f8 01 cmp $0x1,%eax 6634127e: 76 20 jbe 663412a0 <__DllMainCRTStartup+0xa0> 66341280: 49 89 e8 mov %rbp,%r8 66341283: 89 da mov %ebx,%edx 66341285: 48 89 f9 mov %rdi,%rcx - 66341288: e8 73 0b 01 00 callq 66351e00 + 66341288: e8 33 0e 01 00 callq 663520c0 6634128d: 83 fb 03 cmp $0x3,%ebx 66341290: 41 89 c4 mov %eax,%r12d 66341293: 75 ca jne 6634125f <__DllMainCRTStartup+0x5f> @@ -219,28 +219,28 @@ Disassembly of section .text: 663412b1: 49 89 e8 mov %rbp,%r8 663412b4: 89 da mov %ebx,%edx 663412b6: 48 89 f9 mov %rdi,%rcx - 663412b9: e8 32 0b 01 00 callq 66351df0 + 663412b9: e8 f2 0d 01 00 callq 663520b0 663412be: 85 c0 test %eax,%eax 663412c0: 41 89 c4 mov %eax,%r12d 663412c3: 74 5b je 66341320 <__DllMainCRTStartup+0x120> 663412c5: 83 fb 01 cmp $0x1,%ebx 663412c8: 75 b6 jne 66341280 <__DllMainCRTStartup+0x80> - 663412ca: e8 91 f8 00 00 callq 66350b60 <__main> + 663412ca: e8 51 fb 00 00 callq 66350e20 <__main> 663412cf: 49 89 e8 mov %rbp,%r8 663412d2: ba 01 00 00 00 mov $0x1,%edx 663412d7: 48 89 f9 mov %rdi,%rcx - 663412da: e8 21 0b 01 00 callq 66351e00 + 663412da: e8 e1 0d 01 00 callq 663520c0 663412df: 85 c0 test %eax,%eax 663412e1: 41 89 c4 mov %eax,%r12d 663412e4: 0f 85 75 ff ff ff jne 6634125f <__DllMainCRTStartup+0x5f> 663412ea: 49 89 e8 mov %rbp,%r8 663412ed: 31 d2 xor %edx,%edx 663412ef: 48 89 f9 mov %rdi,%rcx - 663412f2: e8 09 0b 01 00 callq 66351e00 + 663412f2: e8 c9 0d 01 00 callq 663520c0 663412f7: 49 89 e8 mov %rbp,%r8 663412fa: 31 d2 xor %edx,%edx 663412fc: 48 89 f9 mov %rdi,%rcx - 663412ff: e8 ec 0a 01 00 callq 66351df0 + 663412ff: e8 ac 0d 01 00 callq 663520b0 66341304: 49 89 e8 mov %rbp,%r8 66341307: 31 d2 xor %edx,%edx 66341309: 48 89 f9 mov %rdi,%rcx @@ -265,8 +265,8 @@ Disassembly of section .text: 66341350: 4c 89 44 24 38 mov %r8,0x38(%rsp) 66341355: 89 54 24 34 mov %edx,0x34(%rsp) 66341359: 48 89 4c 24 28 mov %rcx,0x28(%rsp) - 6634135e: e8 1d f8 00 00 callq 66350b80 <__security_init_cookie> - 66341363: e8 08 01 01 00 callq 66351470 <__mingw_init_ehandler> + 6634135e: e8 dd fa 00 00 callq 66350e40 <__security_init_cookie> + 66341363: e8 c8 03 01 00 callq 66351730 <__mingw_init_ehandler> 66341368: 4c 8b 44 24 38 mov 0x38(%rsp),%r8 6634136d: 8b 54 24 34 mov 0x34(%rsp),%edx 66341371: 48 8b 4c 24 28 mov 0x28(%rsp),%rcx @@ -277,7 +277,7 @@ Disassembly of section .text: 0000000066341380 : 66341380: 48 89 ca mov %rcx,%rdx 66341383: 48 8d 0d 76 5c 01 00 lea 0x15c76(%rip),%rcx # 66357000 <__bss_start__> - 6634138a: e9 51 0d 01 00 jmpq 663520e0 <_register_onexit_function> + 6634138a: e9 11 10 01 00 jmpq 663523a0 <_register_onexit_function> 6634138f: 90 nop 0000000066341390 <__gcc_register_frame>: @@ -303,20407 +303,20736 @@ Disassembly of section .text: 663413ae: 90 nop 663413af: 90 nop -00000000663413b0 : +00000000663413b0 : 663413b0: 48 8b 41 08 mov 0x8(%rcx),%rax 663413b4: 48 63 d2 movslq %edx,%rdx 663413b7: 48 8d 04 90 lea (%rax,%rdx,4),%rax - 663413bb: 44 8b 00 mov (%rax),%r8d - 663413be: 45 85 c0 test %r8d,%r8d - 663413c1: 74 67 je 6634142a - 663413c3: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663413c7: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 - 663413cb: 45 29 01 sub %r8d,(%r9) - 663413ce: c7 00 00 00 00 00 movl $0x0,(%rax) - 663413d4: 45 31 c0 xor %r8d,%r8d - 663413d7: 48 8b 41 10 mov 0x10(%rcx),%rax - 663413db: 45 8b 09 mov (%r9),%r9d - 663413de: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663413e2: 45 85 c9 test %r9d,%r9d - 663413e5: 41 0f 9f c0 setg %r8b - 663413e9: 44 3b 00 cmp (%rax),%r8d - 663413ec: 74 3c je 6634142a - 663413ee: 48 8b 41 20 mov 0x20(%rcx),%rax - 663413f2: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663413f6: 8b 00 mov (%rax),%eax - 663413f8: 85 c0 test %eax,%eax - 663413fa: 75 2e jne 6634142a - 663413fc: 48 8b 41 28 mov 0x28(%rcx),%rax - 66341400: 48 8b 0d 29 65 01 00 mov 0x16529(%rip),%rcx # 66357930 - 66341407: 4c 8b 05 12 65 01 00 mov 0x16512(%rip),%r8 # 66357920 - 6634140e: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 66341412: 48 8b 42 10 mov 0x10(%rdx),%rax - 66341416: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634141c: 48 63 01 movslq (%rcx),%rax - 6634141f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66341423: 44 89 09 mov %r9d,(%rcx) - 66341426: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634142a: c3 retq - 6634142b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663413bb: 44 8b 08 mov (%rax),%r9d + 663413be: 45 39 c1 cmp %r8d,%r9d + 663413c1: 74 6a je 6634142d + 663413c3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663413c7: 45 89 c3 mov %r8d,%r11d + 663413ca: 45 29 cb sub %r9d,%r11d + 663413cd: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 + 663413d1: 45 01 1a add %r11d,(%r10) + 663413d4: 44 89 00 mov %r8d,(%rax) + 663413d7: 45 31 c0 xor %r8d,%r8d + 663413da: 48 8b 41 10 mov 0x10(%rcx),%rax + 663413de: 45 8b 0a mov (%r10),%r9d + 663413e1: 48 8b 04 d0 mov (%rax,%rdx,8),%rax + 663413e5: 45 85 c9 test %r9d,%r9d + 663413e8: 41 0f 9f c0 setg %r8b + 663413ec: 44 3b 00 cmp (%rax),%r8d + 663413ef: 74 3c je 6634142d + 663413f1: 48 8b 41 20 mov 0x20(%rcx),%rax + 663413f5: 48 8b 04 d0 mov (%rax,%rdx,8),%rax + 663413f9: 8b 00 mov (%rax),%eax + 663413fb: 85 c0 test %eax,%eax + 663413fd: 75 2e jne 6634142d + 663413ff: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341403: 48 8b 0d 26 65 01 00 mov 0x16526(%rip),%rcx # 66357930 + 6634140a: 4c 8b 05 0f 65 01 00 mov 0x1650f(%rip),%r8 # 66357920 + 66341411: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 66341415: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341419: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634141f: 48 63 01 movslq (%rcx),%rax + 66341422: 44 8d 48 01 lea 0x1(%rax),%r9d + 66341426: 44 89 09 mov %r9d,(%rcx) + 66341429: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634142d: c3 retq + 6634142e: 66 90 xchg %ax,%ax -0000000066341430 : - 66341430: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66341434: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 66341438: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634143c: 45 8b 48 08 mov 0x8(%r8),%r9d - 66341440: 8b 00 mov (%rax),%eax - 66341442: 44 39 c8 cmp %r9d,%eax - 66341445: 74 67 je 663414ae - 66341447: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634144b: 41 89 c3 mov %eax,%r11d - 6634144e: 45 29 cb sub %r9d,%r11d - 66341451: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66341455: 45 01 1a add %r11d,(%r10) - 66341458: 41 89 40 08 mov %eax,0x8(%r8) - 6634145c: 45 31 c0 xor %r8d,%r8d - 6634145f: 45 8b 0a mov (%r10),%r9d - 66341462: 48 8b 42 10 mov 0x10(%rdx),%rax - 66341466: 45 85 c9 test %r9d,%r9d - 66341469: 41 0f 9f c0 setg %r8b - 6634146d: 44 3b 00 cmp (%rax),%r8d - 66341470: 74 3c je 663414ae - 66341472: 48 8b 41 20 mov 0x20(%rcx),%rax - 66341476: 48 8b 40 10 mov 0x10(%rax),%rax - 6634147a: 8b 00 mov (%rax),%eax - 6634147c: 85 c0 test %eax,%eax - 6634147e: 75 2e jne 663414ae - 66341480: 48 8b 41 28 mov 0x28(%rcx),%rax - 66341484: 48 8b 0d a5 64 01 00 mov 0x164a5(%rip),%rcx # 66357930 - 6634148b: 4c 8b 05 8e 64 01 00 mov 0x1648e(%rip),%r8 # 66357920 - 66341492: 48 8b 50 10 mov 0x10(%rax),%rdx - 66341496: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634149a: c7 00 01 00 00 00 movl $0x1,(%rax) - 663414a0: 48 63 01 movslq (%rcx),%rax - 663414a3: 44 8d 48 01 lea 0x1(%rax),%r9d - 663414a7: 44 89 09 mov %r9d,(%rcx) - 663414aa: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663414ae: c3 retq - 663414af: 90 nop +0000000066341430 : + 66341430: 48 8b 41 08 mov 0x8(%rcx),%rax + 66341434: 48 63 d2 movslq %edx,%rdx + 66341437: 48 8d 04 90 lea (%rax,%rdx,4),%rax + 6634143b: 44 8b 00 mov (%rax),%r8d + 6634143e: 45 85 c0 test %r8d,%r8d + 66341441: 74 67 je 663414aa + 66341443: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341447: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 + 6634144b: 45 29 01 sub %r8d,(%r9) + 6634144e: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341454: 45 31 c0 xor %r8d,%r8d + 66341457: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634145b: 45 8b 09 mov (%r9),%r9d + 6634145e: 48 8b 04 d0 mov (%rax,%rdx,8),%rax + 66341462: 45 85 c9 test %r9d,%r9d + 66341465: 41 0f 9f c0 setg %r8b + 66341469: 44 3b 00 cmp (%rax),%r8d + 6634146c: 74 3c je 663414aa + 6634146e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341472: 48 8b 04 d0 mov (%rax,%rdx,8),%rax + 66341476: 8b 00 mov (%rax),%eax + 66341478: 85 c0 test %eax,%eax + 6634147a: 75 2e jne 663414aa + 6634147c: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341480: 48 8b 0d a9 64 01 00 mov 0x164a9(%rip),%rcx # 66357930 + 66341487: 4c 8b 05 92 64 01 00 mov 0x16492(%rip),%r8 # 66357920 + 6634148e: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 66341492: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341496: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634149c: 48 63 01 movslq (%rcx),%rax + 6634149f: 44 8d 48 01 lea 0x1(%rax),%r9d + 663414a3: 44 89 09 mov %r9d,(%rcx) + 663414a6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663414aa: c3 retq + 663414ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -00000000663414b0 : - 663414b0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663414b4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 663414b8: 48 8b 42 08 mov 0x8(%rdx),%rax - 663414bc: 45 8b 48 08 mov 0x8(%r8),%r9d - 663414c0: 44 8b 10 mov (%rax),%r10d - 663414c3: 31 c0 xor %eax,%eax - 663414c5: 45 85 d2 test %r10d,%r10d - 663414c8: 0f 94 c0 sete %al - 663414cb: 44 39 c8 cmp %r9d,%eax - 663414ce: 74 67 je 66341537 - 663414d0: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663414d4: 41 89 c3 mov %eax,%r11d - 663414d7: 45 29 cb sub %r9d,%r11d - 663414da: 4d 8b 52 10 mov 0x10(%r10),%r10 - 663414de: 45 01 1a add %r11d,(%r10) - 663414e1: 41 89 40 08 mov %eax,0x8(%r8) - 663414e5: 45 31 c0 xor %r8d,%r8d - 663414e8: 45 8b 0a mov (%r10),%r9d - 663414eb: 48 8b 42 10 mov 0x10(%rdx),%rax - 663414ef: 45 85 c9 test %r9d,%r9d - 663414f2: 41 0f 9f c0 setg %r8b - 663414f6: 44 3b 00 cmp (%rax),%r8d - 663414f9: 74 3c je 66341537 - 663414fb: 48 8b 41 20 mov 0x20(%rcx),%rax - 663414ff: 48 8b 40 10 mov 0x10(%rax),%rax - 66341503: 8b 00 mov (%rax),%eax - 66341505: 85 c0 test %eax,%eax - 66341507: 75 2e jne 66341537 - 66341509: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634150d: 48 8b 0d 1c 64 01 00 mov 0x1641c(%rip),%rcx # 66357930 - 66341514: 4c 8b 05 05 64 01 00 mov 0x16405(%rip),%r8 # 66357920 - 6634151b: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634151f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66341523: c7 00 01 00 00 00 movl $0x1,(%rax) - 66341529: 48 63 01 movslq (%rcx),%rax - 6634152c: 44 8d 48 01 lea 0x1(%rax),%r9d - 66341530: 44 89 09 mov %r9d,(%rcx) - 66341533: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66341537: c3 retq - 66341538: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634153f: 00 +00000000663414b0 : + 663414b0: 56 push %rsi + 663414b1: 53 push %rbx + 663414b2: 48 83 ec 28 sub $0x28,%rsp + 663414b6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663414ba: 45 85 c0 test %r8d,%r8d + 663414bd: 48 89 cb mov %rcx,%rbx + 663414c0: 7f 19 jg 663414db + 663414c2: 48 8d 15 37 2b 01 00 lea 0x12b37(%rip),%rdx # 66354000 <.rdata> + 663414c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663414cf: 48 8d 0d 3a 2b 01 00 lea 0x12b3a(%rip),%rcx # 66354010 <.rdata+0x10> + 663414d6: e8 35 0d 01 00 callq 66352210 <_assert> + 663414db: 48 8b 43 40 mov 0x40(%rbx),%rax + 663414df: 8b 10 mov (%rax),%edx + 663414e1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663414e5: 48 8b 48 20 mov 0x20(%rax),%rcx + 663414e9: 8b 09 mov (%rcx),%ecx + 663414eb: 85 c9 test %ecx,%ecx + 663414ed: 75 31 jne 66341520 + 663414ef: 85 d2 test %edx,%edx + 663414f1: 75 0d jne 66341500 + 663414f3: 48 83 c4 28 add $0x28,%rsp + 663414f7: 5b pop %rbx + 663414f8: 5e pop %rsi + 663414f9: c3 retq + 663414fa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66341500: 48 89 d9 mov %rbx,%rcx + 66341503: e8 28 ff ff ff callq 66341430 + 66341508: 8b 43 38 mov 0x38(%rbx),%eax + 6634150b: 85 c0 test %eax,%eax + 6634150d: 7e 46 jle 66341555 + 6634150f: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341513: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341519: 48 83 c4 28 add $0x28,%rsp + 6634151d: 5b pop %rbx + 6634151e: 5e pop %rsi + 6634151f: c3 retq + 66341520: 48 8b 40 08 mov 0x8(%rax),%rax + 66341524: 8b 30 mov (%rax),%esi + 66341526: 83 c6 02 add $0x2,%esi + 66341529: 39 d6 cmp %edx,%esi + 6634152b: 74 c6 je 663414f3 + 6634152d: 85 d2 test %edx,%edx + 6634152f: 75 70 jne 663415a1 + 66341531: 89 f2 mov %esi,%edx + 66341533: 41 b8 01 00 00 00 mov $0x1,%r8d + 66341539: 48 89 d9 mov %rbx,%rcx + 6634153c: e8 6f fe ff ff callq 663413b0 + 66341541: 8b 53 38 mov 0x38(%rbx),%edx + 66341544: 85 d2 test %edx,%edx + 66341546: 7e 38 jle 66341580 + 66341548: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634154c: 89 30 mov %esi,(%rax) + 6634154e: 48 83 c4 28 add $0x28,%rsp + 66341552: 5b pop %rbx + 66341553: 5e pop %rsi + 66341554: c3 retq + 66341555: 48 8d 15 a4 2a 01 00 lea 0x12aa4(%rip),%rdx # 66354000 <.rdata> + 6634155c: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341562: 48 8d 0d a7 2a 01 00 lea 0x12aa7(%rip),%rcx # 66354010 <.rdata+0x10> + 66341569: e8 a2 0c 01 00 callq 66352210 <_assert> + 6634156e: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341572: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341578: eb 9f jmp 66341519 + 6634157a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66341580: 48 8d 15 79 2a 01 00 lea 0x12a79(%rip),%rdx # 66354000 <.rdata> + 66341587: 41 b8 93 00 00 00 mov $0x93,%r8d + 6634158d: 48 8d 0d 7c 2a 01 00 lea 0x12a7c(%rip),%rcx # 66354010 <.rdata+0x10> + 66341594: e8 77 0c 01 00 callq 66352210 <_assert> + 66341599: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634159d: 89 30 mov %esi,(%rax) + 6634159f: eb ad jmp 6634154e + 663415a1: 48 89 d9 mov %rbx,%rcx + 663415a4: e8 87 fe ff ff callq 66341430 + 663415a9: eb 86 jmp 66341531 + 663415ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -0000000066341540 : - 66341540: 41 56 push %r14 - 66341542: 57 push %rdi - 66341543: 56 push %rsi - 66341544: 53 push %rbx - 66341545: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341549: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 66341550: 44 8b 10 mov (%rax),%r10d - 66341553: 45 85 d2 test %r10d,%r10d - 66341556: 0f 84 a8 00 00 00 je 66341604 - 6634155c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341560: 31 c0 xor %eax,%eax - 66341562: 48 8b 3d b7 63 01 00 mov 0x163b7(%rip),%rdi # 66357920 - 66341569: 48 8b 35 c0 63 01 00 mov 0x163c0(%rip),%rsi # 66357930 - 66341570: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341575: 44 8b 84 03 04 01 00 mov 0x104(%rbx,%rax,1),%r8d - 6634157c: 00 - 6634157d: 8b 12 mov (%rdx),%edx - 6634157f: 44 39 c2 cmp %r8d,%edx - 66341582: 74 70 je 663415f4 - 66341584: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341588: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 6634158c: 41 89 d6 mov %edx,%r14d - 6634158f: 45 29 c6 sub %r8d,%r14d - 66341592: 45 31 c0 xor %r8d,%r8d - 66341595: 4f 8b 8c 11 08 02 00 mov 0x208(%r9,%r10,1),%r9 - 6634159c: 00 - 6634159d: 45 01 31 add %r14d,(%r9) - 663415a0: 89 94 03 04 01 00 00 mov %edx,0x104(%rbx,%rax,1) - 663415a7: 45 8b 09 mov (%r9),%r9d - 663415aa: 49 8b 94 43 08 02 00 mov 0x208(%r11,%rax,2),%rdx - 663415b1: 00 - 663415b2: 45 85 c9 test %r9d,%r9d - 663415b5: 41 0f 9f c0 setg %r8b - 663415b9: 44 3b 02 cmp (%rdx),%r8d - 663415bc: 74 36 je 663415f4 - 663415be: 48 8b 51 20 mov 0x20(%rcx),%rdx - 663415c2: 4a 8b 94 12 08 02 00 mov 0x208(%rdx,%r10,1),%rdx - 663415c9: 00 - 663415ca: 8b 12 mov (%rdx),%edx - 663415cc: 85 d2 test %edx,%edx - 663415ce: 75 24 jne 663415f4 - 663415d0: 48 8b 51 28 mov 0x28(%rcx),%rdx - 663415d4: 4e 8b 84 12 08 02 00 mov 0x208(%rdx,%r10,1),%r8 - 663415db: 00 - 663415dc: 49 8b 50 10 mov 0x10(%r8),%rdx - 663415e0: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663415e6: 48 63 16 movslq (%rsi),%rdx - 663415e9: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663415ed: 44 89 0e mov %r9d,(%rsi) - 663415f0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663415f4: 48 83 c0 04 add $0x4,%rax - 663415f8: 48 3d 00 01 00 00 cmp $0x100,%rax - 663415fe: 0f 85 6c ff ff ff jne 66341570 - 66341604: 5b pop %rbx - 66341605: 5e pop %rsi - 66341606: 5f pop %rdi - 66341607: 41 5e pop %r14 - 66341609: c3 retq - 6634160a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +00000000663415b0 : + 663415b0: 53 push %rbx + 663415b1: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 663415b5: 4c 8b 59 08 mov 0x8(%rcx),%r11 + 663415b9: 49 8b 42 10 mov 0x10(%r10),%rax + 663415bd: 49 8b 52 08 mov 0x8(%r10),%rdx + 663415c1: 45 8b 4b 0c mov 0xc(%r11),%r9d + 663415c5: 44 8b 02 mov (%rdx),%r8d + 663415c8: 44 03 00 add (%rax),%r8d + 663415cb: 49 8b 42 20 mov 0x20(%r10),%rax + 663415cf: 44 03 00 add (%rax),%r8d + 663415d2: 44 89 c2 mov %r8d,%edx + 663415d5: 83 e2 01 and $0x1,%edx + 663415d8: 44 39 ca cmp %r9d,%edx + 663415db: 74 62 je 6634163f + 663415dd: 48 8b 41 18 mov 0x18(%rcx),%rax + 663415e1: 89 d3 mov %edx,%ebx + 663415e3: 44 29 cb sub %r9d,%ebx + 663415e6: 48 8b 40 18 mov 0x18(%rax),%rax + 663415ea: 01 18 add %ebx,(%rax) + 663415ec: 41 89 53 0c mov %edx,0xc(%r11) + 663415f0: 31 d2 xor %edx,%edx + 663415f2: 44 8b 08 mov (%rax),%r9d + 663415f5: 49 8b 42 18 mov 0x18(%r10),%rax + 663415f9: 45 85 c9 test %r9d,%r9d + 663415fc: 0f 9f c2 setg %dl + 663415ff: 3b 10 cmp (%rax),%edx + 66341601: 74 3c je 6634163f + 66341603: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341607: 48 8b 40 18 mov 0x18(%rax),%rax + 6634160b: 8b 00 mov (%rax),%eax + 6634160d: 85 c0 test %eax,%eax + 6634160f: 75 2e jne 6634163f + 66341611: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341615: 4c 8b 0d 14 63 01 00 mov 0x16314(%rip),%r9 # 66357930 + 6634161c: 4c 8b 15 fd 62 01 00 mov 0x162fd(%rip),%r10 # 66357920 + 66341623: 48 8b 50 18 mov 0x18(%rax),%rdx + 66341627: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634162b: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341631: 49 63 01 movslq (%r9),%rax + 66341634: 44 8d 58 01 lea 0x1(%rax),%r11d + 66341638: 45 89 19 mov %r11d,(%r9) + 6634163b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634163f: 41 d1 f8 sar %r8d + 66341642: ba 04 00 00 00 mov $0x4,%edx + 66341647: 41 83 e0 01 and $0x1,%r8d + 6634164b: 5b pop %rbx + 6634164c: e9 5f fd ff ff jmpq 663413b0 + 66341651: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66341656: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634165d: 00 00 00 -0000000066341610 : - 66341610: 41 56 push %r14 - 66341612: 57 push %rdi - 66341613: 56 push %rsi - 66341614: 53 push %rbx - 66341615: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341619: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66341620: 44 8b 10 mov (%rax),%r10d - 66341623: 45 85 d2 test %r10d,%r10d - 66341626: 0f 84 a8 00 00 00 je 663416d4 - 6634162c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341630: 31 c0 xor %eax,%eax - 66341632: 48 8b 3d e7 62 01 00 mov 0x162e7(%rip),%rdi # 66357920 - 66341639: 48 8b 35 f0 62 01 00 mov 0x162f0(%rip),%rsi # 66357930 - 66341640: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341645: 44 8b 84 03 c4 00 00 mov 0xc4(%rbx,%rax,1),%r8d - 6634164c: 00 - 6634164d: 8b 12 mov (%rdx),%edx - 6634164f: 44 39 c2 cmp %r8d,%edx - 66341652: 74 70 je 663416c4 - 66341654: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341658: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 6634165c: 41 89 d6 mov %edx,%r14d - 6634165f: 45 29 c6 sub %r8d,%r14d - 66341662: 45 31 c0 xor %r8d,%r8d - 66341665: 4f 8b 8c 11 88 01 00 mov 0x188(%r9,%r10,1),%r9 - 6634166c: 00 - 6634166d: 45 01 31 add %r14d,(%r9) - 66341670: 89 94 03 c4 00 00 00 mov %edx,0xc4(%rbx,%rax,1) - 66341677: 45 8b 09 mov (%r9),%r9d - 6634167a: 49 8b 94 43 88 01 00 mov 0x188(%r11,%rax,2),%rdx - 66341681: 00 - 66341682: 45 85 c9 test %r9d,%r9d - 66341685: 41 0f 9f c0 setg %r8b - 66341689: 44 3b 02 cmp (%rdx),%r8d - 6634168c: 74 36 je 663416c4 - 6634168e: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341692: 4a 8b 94 12 88 01 00 mov 0x188(%rdx,%r10,1),%rdx - 66341699: 00 - 6634169a: 8b 12 mov (%rdx),%edx - 6634169c: 85 d2 test %edx,%edx - 6634169e: 75 24 jne 663416c4 - 663416a0: 48 8b 51 28 mov 0x28(%rcx),%rdx - 663416a4: 4e 8b 84 12 88 01 00 mov 0x188(%rdx,%r10,1),%r8 - 663416ab: 00 - 663416ac: 49 8b 50 10 mov 0x10(%r8),%rdx - 663416b0: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663416b6: 48 63 16 movslq (%rsi),%rdx - 663416b9: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663416bd: 44 89 0e mov %r9d,(%rsi) - 663416c0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663416c4: 48 83 c0 04 add $0x4,%rax - 663416c8: 48 3d c0 00 00 00 cmp $0xc0,%rax - 663416ce: 0f 85 6c ff ff ff jne 66341640 - 663416d4: 5b pop %rbx - 663416d5: 5e pop %rsi - 663416d6: 5f pop %rdi - 663416d7: 41 5e pop %r14 - 663416d9: c3 retq - 663416da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +0000000066341660 : + 66341660: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66341664: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66341668: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634166c: 45 8b 48 08 mov 0x8(%r8),%r9d + 66341670: 8b 00 mov (%rax),%eax + 66341672: 44 39 c8 cmp %r9d,%eax + 66341675: 74 67 je 663416de + 66341677: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634167b: 41 89 c3 mov %eax,%r11d + 6634167e: 45 29 cb sub %r9d,%r11d + 66341681: 4d 8b 52 10 mov 0x10(%r10),%r10 + 66341685: 45 01 1a add %r11d,(%r10) + 66341688: 41 89 40 08 mov %eax,0x8(%r8) + 6634168c: 45 31 c0 xor %r8d,%r8d + 6634168f: 45 8b 0a mov (%r10),%r9d + 66341692: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341696: 45 85 c9 test %r9d,%r9d + 66341699: 41 0f 9f c0 setg %r8b + 6634169d: 44 3b 00 cmp (%rax),%r8d + 663416a0: 74 3c je 663416de + 663416a2: 48 8b 41 20 mov 0x20(%rcx),%rax + 663416a6: 48 8b 40 10 mov 0x10(%rax),%rax + 663416aa: 8b 00 mov (%rax),%eax + 663416ac: 85 c0 test %eax,%eax + 663416ae: 75 2e jne 663416de + 663416b0: 48 8b 41 28 mov 0x28(%rcx),%rax + 663416b4: 48 8b 0d 75 62 01 00 mov 0x16275(%rip),%rcx # 66357930 + 663416bb: 4c 8b 05 5e 62 01 00 mov 0x1625e(%rip),%r8 # 66357920 + 663416c2: 48 8b 50 10 mov 0x10(%rax),%rdx + 663416c6: 48 8b 42 10 mov 0x10(%rdx),%rax + 663416ca: c7 00 01 00 00 00 movl $0x1,(%rax) + 663416d0: 48 63 01 movslq (%rcx),%rax + 663416d3: 44 8d 48 01 lea 0x1(%rax),%r9d + 663416d7: 44 89 09 mov %r9d,(%rcx) + 663416da: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663416de: c3 retq + 663416df: 90 nop -00000000663416e0 : - 663416e0: 41 56 push %r14 - 663416e2: 57 push %rdi - 663416e3: 56 push %rsi - 663416e4: 53 push %rbx - 663416e5: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663416e9: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax +00000000663416e0 : + 663416e0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663416e4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663416e8: 48 8b 42 08 mov 0x8(%rdx),%rax + 663416ec: 45 8b 48 08 mov 0x8(%r8),%r9d 663416f0: 44 8b 10 mov (%rax),%r10d - 663416f3: 45 85 d2 test %r10d,%r10d - 663416f6: 0f 84 a8 00 00 00 je 663417a4 - 663416fc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341700: 31 c0 xor %eax,%eax - 66341702: 48 8b 3d 17 62 01 00 mov 0x16217(%rip),%rdi # 66357920 - 66341709: 48 8b 35 20 62 01 00 mov 0x16220(%rip),%rsi # 66357930 - 66341710: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341715: 44 8b 84 03 84 00 00 mov 0x84(%rbx,%rax,1),%r8d - 6634171c: 00 - 6634171d: 8b 12 mov (%rdx),%edx - 6634171f: 44 39 c2 cmp %r8d,%edx - 66341722: 74 70 je 66341794 - 66341724: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341728: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 6634172c: 41 89 d6 mov %edx,%r14d - 6634172f: 45 29 c6 sub %r8d,%r14d - 66341732: 45 31 c0 xor %r8d,%r8d - 66341735: 4f 8b 8c 11 08 01 00 mov 0x108(%r9,%r10,1),%r9 - 6634173c: 00 - 6634173d: 45 01 31 add %r14d,(%r9) - 66341740: 89 94 03 84 00 00 00 mov %edx,0x84(%rbx,%rax,1) - 66341747: 45 8b 09 mov (%r9),%r9d - 6634174a: 49 8b 94 43 08 01 00 mov 0x108(%r11,%rax,2),%rdx - 66341751: 00 - 66341752: 45 85 c9 test %r9d,%r9d - 66341755: 41 0f 9f c0 setg %r8b - 66341759: 44 3b 02 cmp (%rdx),%r8d - 6634175c: 74 36 je 66341794 - 6634175e: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341762: 4a 8b 94 12 08 01 00 mov 0x108(%rdx,%r10,1),%rdx - 66341769: 00 - 6634176a: 8b 12 mov (%rdx),%edx - 6634176c: 85 d2 test %edx,%edx - 6634176e: 75 24 jne 66341794 - 66341770: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341774: 4e 8b 84 12 08 01 00 mov 0x108(%rdx,%r10,1),%r8 - 6634177b: 00 - 6634177c: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341780: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341786: 48 63 16 movslq (%rsi),%rdx - 66341789: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 6634178d: 44 89 0e mov %r9d,(%rsi) - 66341790: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341794: 48 83 c0 04 add $0x4,%rax - 66341798: 48 3d 80 00 00 00 cmp $0x80,%rax - 6634179e: 0f 85 6c ff ff ff jne 66341710 - 663417a4: 5b pop %rbx - 663417a5: 5e pop %rsi - 663417a6: 5f pop %rdi - 663417a7: 41 5e pop %r14 - 663417a9: c3 retq - 663417aa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663416f3: 31 c0 xor %eax,%eax + 663416f5: 45 85 d2 test %r10d,%r10d + 663416f8: 0f 94 c0 sete %al + 663416fb: 44 39 c8 cmp %r9d,%eax + 663416fe: 74 67 je 66341767 + 66341700: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66341704: 41 89 c3 mov %eax,%r11d + 66341707: 45 29 cb sub %r9d,%r11d + 6634170a: 4d 8b 52 10 mov 0x10(%r10),%r10 + 6634170e: 45 01 1a add %r11d,(%r10) + 66341711: 41 89 40 08 mov %eax,0x8(%r8) + 66341715: 45 31 c0 xor %r8d,%r8d + 66341718: 45 8b 0a mov (%r10),%r9d + 6634171b: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634171f: 45 85 c9 test %r9d,%r9d + 66341722: 41 0f 9f c0 setg %r8b + 66341726: 44 3b 00 cmp (%rax),%r8d + 66341729: 74 3c je 66341767 + 6634172b: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634172f: 48 8b 40 10 mov 0x10(%rax),%rax + 66341733: 8b 00 mov (%rax),%eax + 66341735: 85 c0 test %eax,%eax + 66341737: 75 2e jne 66341767 + 66341739: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634173d: 48 8b 0d ec 61 01 00 mov 0x161ec(%rip),%rcx # 66357930 + 66341744: 4c 8b 05 d5 61 01 00 mov 0x161d5(%rip),%r8 # 66357920 + 6634174b: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634174f: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341753: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341759: 48 63 01 movslq (%rcx),%rax + 6634175c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66341760: 44 89 09 mov %r9d,(%rcx) + 66341763: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66341767: c3 retq + 66341768: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634176f: 00 -00000000663417b0 : - 663417b0: 41 56 push %r14 - 663417b2: 57 push %rdi - 663417b3: 56 push %rsi - 663417b4: 53 push %rbx - 663417b5: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663417b9: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 663417c0: 44 8b 10 mov (%rax),%r10d - 663417c3: 45 85 d2 test %r10d,%r10d - 663417c6: 0f 84 a0 00 00 00 je 6634186c - 663417cc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 663417d0: 31 c0 xor %eax,%eax - 663417d2: 48 8b 3d 47 61 01 00 mov 0x16147(%rip),%rdi # 66357920 - 663417d9: 48 8b 35 50 61 01 00 mov 0x16150(%rip),%rsi # 66357930 - 663417e0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 663417e5: 44 8b 44 03 64 mov 0x64(%rbx,%rax,1),%r8d - 663417ea: 8b 12 mov (%rdx),%edx - 663417ec: 44 39 c2 cmp %r8d,%edx - 663417ef: 74 6d je 6634185e - 663417f1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663417f5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 663417f9: 41 89 d6 mov %edx,%r14d - 663417fc: 45 29 c6 sub %r8d,%r14d - 663417ff: 45 31 c0 xor %r8d,%r8d - 66341802: 4f 8b 8c 11 c8 00 00 mov 0xc8(%r9,%r10,1),%r9 - 66341809: 00 - 6634180a: 45 01 31 add %r14d,(%r9) - 6634180d: 89 54 03 64 mov %edx,0x64(%rbx,%rax,1) - 66341811: 45 8b 09 mov (%r9),%r9d - 66341814: 49 8b 94 43 c8 00 00 mov 0xc8(%r11,%rax,2),%rdx - 6634181b: 00 - 6634181c: 45 85 c9 test %r9d,%r9d - 6634181f: 41 0f 9f c0 setg %r8b - 66341823: 44 3b 02 cmp (%rdx),%r8d - 66341826: 74 36 je 6634185e - 66341828: 48 8b 51 20 mov 0x20(%rcx),%rdx - 6634182c: 4a 8b 94 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%rdx - 66341833: 00 - 66341834: 8b 12 mov (%rdx),%edx - 66341836: 85 d2 test %edx,%edx - 66341838: 75 24 jne 6634185e - 6634183a: 48 8b 51 28 mov 0x28(%rcx),%rdx - 6634183e: 4e 8b 84 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%r8 - 66341845: 00 - 66341846: 49 8b 50 10 mov 0x10(%r8),%rdx - 6634184a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341850: 48 63 16 movslq (%rsi),%rdx - 66341853: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341857: 44 89 0e mov %r9d,(%rsi) - 6634185a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 6634185e: 48 83 c0 04 add $0x4,%rax - 66341862: 48 83 f8 60 cmp $0x60,%rax - 66341866: 0f 85 74 ff ff ff jne 663417e0 - 6634186c: 5b pop %rbx - 6634186d: 5e pop %rsi - 6634186e: 5f pop %rdi - 6634186f: 41 5e pop %r14 - 66341871: c3 retq - 66341872: 0f 1f 40 00 nopl 0x0(%rax) - 66341876: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634187d: 00 00 00 +0000000066341770 : + 66341770: 41 56 push %r14 + 66341772: 57 push %rdi + 66341773: 56 push %rsi + 66341774: 53 push %rbx + 66341775: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341779: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 66341780: 44 8b 10 mov (%rax),%r10d + 66341783: 45 85 d2 test %r10d,%r10d + 66341786: 0f 84 a8 00 00 00 je 66341834 + 6634178c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341790: 31 c0 xor %eax,%eax + 66341792: 48 8b 3d 87 61 01 00 mov 0x16187(%rip),%rdi # 66357920 + 66341799: 48 8b 35 90 61 01 00 mov 0x16190(%rip),%rsi # 66357930 + 663417a0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 663417a5: 44 8b 84 03 04 01 00 mov 0x104(%rbx,%rax,1),%r8d + 663417ac: 00 + 663417ad: 8b 12 mov (%rdx),%edx + 663417af: 44 39 c2 cmp %r8d,%edx + 663417b2: 74 70 je 66341824 + 663417b4: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663417b8: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 663417bc: 41 89 d6 mov %edx,%r14d + 663417bf: 45 29 c6 sub %r8d,%r14d + 663417c2: 45 31 c0 xor %r8d,%r8d + 663417c5: 4f 8b 8c 11 08 02 00 mov 0x208(%r9,%r10,1),%r9 + 663417cc: 00 + 663417cd: 45 01 31 add %r14d,(%r9) + 663417d0: 89 94 03 04 01 00 00 mov %edx,0x104(%rbx,%rax,1) + 663417d7: 45 8b 09 mov (%r9),%r9d + 663417da: 49 8b 94 43 08 02 00 mov 0x208(%r11,%rax,2),%rdx + 663417e1: 00 + 663417e2: 45 85 c9 test %r9d,%r9d + 663417e5: 41 0f 9f c0 setg %r8b + 663417e9: 44 3b 02 cmp (%rdx),%r8d + 663417ec: 74 36 je 66341824 + 663417ee: 48 8b 51 20 mov 0x20(%rcx),%rdx + 663417f2: 4a 8b 94 12 08 02 00 mov 0x208(%rdx,%r10,1),%rdx + 663417f9: 00 + 663417fa: 8b 12 mov (%rdx),%edx + 663417fc: 85 d2 test %edx,%edx + 663417fe: 75 24 jne 66341824 + 66341800: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341804: 4e 8b 84 12 08 02 00 mov 0x208(%rdx,%r10,1),%r8 + 6634180b: 00 + 6634180c: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341810: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341816: 48 63 16 movslq (%rsi),%rdx + 66341819: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 6634181d: 44 89 0e mov %r9d,(%rsi) + 66341820: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341824: 48 83 c0 04 add $0x4,%rax + 66341828: 48 3d 00 01 00 00 cmp $0x100,%rax + 6634182e: 0f 85 6c ff ff ff jne 663417a0 + 66341834: 5b pop %rbx + 66341835: 5e pop %rsi + 66341836: 5f pop %rdi + 66341837: 41 5e pop %r14 + 66341839: c3 retq + 6634183a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066341880 : - 66341880: 41 56 push %r14 - 66341882: 57 push %rdi - 66341883: 56 push %rsi - 66341884: 53 push %rbx - 66341885: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341889: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 66341890: 44 8b 10 mov (%rax),%r10d - 66341893: 45 85 d2 test %r10d,%r10d - 66341896: 0f 84 a0 00 00 00 je 6634193c - 6634189c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 663418a0: 31 c0 xor %eax,%eax - 663418a2: 48 8b 3d 77 60 01 00 mov 0x16077(%rip),%rdi # 66357920 - 663418a9: 48 8b 35 80 60 01 00 mov 0x16080(%rip),%rsi # 66357930 - 663418b0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 663418b5: 44 8b 44 03 44 mov 0x44(%rbx,%rax,1),%r8d - 663418ba: 8b 12 mov (%rdx),%edx - 663418bc: 44 39 c2 cmp %r8d,%edx - 663418bf: 74 6d je 6634192e - 663418c1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663418c5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 663418c9: 41 89 d6 mov %edx,%r14d - 663418cc: 45 29 c6 sub %r8d,%r14d - 663418cf: 45 31 c0 xor %r8d,%r8d - 663418d2: 4f 8b 8c 11 88 00 00 mov 0x88(%r9,%r10,1),%r9 - 663418d9: 00 - 663418da: 45 01 31 add %r14d,(%r9) - 663418dd: 89 54 03 44 mov %edx,0x44(%rbx,%rax,1) - 663418e1: 45 8b 09 mov (%r9),%r9d - 663418e4: 49 8b 94 43 88 00 00 mov 0x88(%r11,%rax,2),%rdx - 663418eb: 00 - 663418ec: 45 85 c9 test %r9d,%r9d - 663418ef: 41 0f 9f c0 setg %r8b - 663418f3: 44 3b 02 cmp (%rdx),%r8d - 663418f6: 74 36 je 6634192e - 663418f8: 48 8b 51 20 mov 0x20(%rcx),%rdx - 663418fc: 4a 8b 94 12 88 00 00 mov 0x88(%rdx,%r10,1),%rdx - 66341903: 00 - 66341904: 8b 12 mov (%rdx),%edx - 66341906: 85 d2 test %edx,%edx - 66341908: 75 24 jne 6634192e - 6634190a: 48 8b 51 28 mov 0x28(%rcx),%rdx - 6634190e: 4e 8b 84 12 88 00 00 mov 0x88(%rdx,%r10,1),%r8 - 66341915: 00 - 66341916: 49 8b 50 10 mov 0x10(%r8),%rdx - 6634191a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341920: 48 63 16 movslq (%rsi),%rdx - 66341923: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341927: 44 89 0e mov %r9d,(%rsi) - 6634192a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 6634192e: 48 83 c0 04 add $0x4,%rax - 66341932: 48 83 f8 40 cmp $0x40,%rax - 66341936: 0f 85 74 ff ff ff jne 663418b0 - 6634193c: 5b pop %rbx - 6634193d: 5e pop %rsi - 6634193e: 5f pop %rdi - 6634193f: 41 5e pop %r14 - 66341941: c3 retq - 66341942: 0f 1f 40 00 nopl 0x0(%rax) - 66341946: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634194d: 00 00 00 +0000000066341840 : + 66341840: 41 56 push %r14 + 66341842: 57 push %rdi + 66341843: 56 push %rsi + 66341844: 53 push %rbx + 66341845: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341849: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 66341850: 44 8b 10 mov (%rax),%r10d + 66341853: 45 85 d2 test %r10d,%r10d + 66341856: 0f 84 a8 00 00 00 je 66341904 + 6634185c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341860: 31 c0 xor %eax,%eax + 66341862: 48 8b 3d b7 60 01 00 mov 0x160b7(%rip),%rdi # 66357920 + 66341869: 48 8b 35 c0 60 01 00 mov 0x160c0(%rip),%rsi # 66357930 + 66341870: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341875: 44 8b 84 03 c4 00 00 mov 0xc4(%rbx,%rax,1),%r8d + 6634187c: 00 + 6634187d: 8b 12 mov (%rdx),%edx + 6634187f: 44 39 c2 cmp %r8d,%edx + 66341882: 74 70 je 663418f4 + 66341884: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341888: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 6634188c: 41 89 d6 mov %edx,%r14d + 6634188f: 45 29 c6 sub %r8d,%r14d + 66341892: 45 31 c0 xor %r8d,%r8d + 66341895: 4f 8b 8c 11 88 01 00 mov 0x188(%r9,%r10,1),%r9 + 6634189c: 00 + 6634189d: 45 01 31 add %r14d,(%r9) + 663418a0: 89 94 03 c4 00 00 00 mov %edx,0xc4(%rbx,%rax,1) + 663418a7: 45 8b 09 mov (%r9),%r9d + 663418aa: 49 8b 94 43 88 01 00 mov 0x188(%r11,%rax,2),%rdx + 663418b1: 00 + 663418b2: 45 85 c9 test %r9d,%r9d + 663418b5: 41 0f 9f c0 setg %r8b + 663418b9: 44 3b 02 cmp (%rdx),%r8d + 663418bc: 74 36 je 663418f4 + 663418be: 48 8b 51 20 mov 0x20(%rcx),%rdx + 663418c2: 4a 8b 94 12 88 01 00 mov 0x188(%rdx,%r10,1),%rdx + 663418c9: 00 + 663418ca: 8b 12 mov (%rdx),%edx + 663418cc: 85 d2 test %edx,%edx + 663418ce: 75 24 jne 663418f4 + 663418d0: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663418d4: 4e 8b 84 12 88 01 00 mov 0x188(%rdx,%r10,1),%r8 + 663418db: 00 + 663418dc: 49 8b 50 10 mov 0x10(%r8),%rdx + 663418e0: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663418e6: 48 63 16 movslq (%rsi),%rdx + 663418e9: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663418ed: 44 89 0e mov %r9d,(%rsi) + 663418f0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663418f4: 48 83 c0 04 add $0x4,%rax + 663418f8: 48 3d c0 00 00 00 cmp $0xc0,%rax + 663418fe: 0f 85 6c ff ff ff jne 66341870 + 66341904: 5b pop %rbx + 66341905: 5e pop %rsi + 66341906: 5f pop %rdi + 66341907: 41 5e pop %r14 + 66341909: c3 retq + 6634190a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066341950 : - 66341950: 41 56 push %r14 - 66341952: 57 push %rdi - 66341953: 56 push %rsi - 66341954: 53 push %rbx - 66341955: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341959: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66341960: 44 8b 10 mov (%rax),%r10d - 66341963: 45 85 d2 test %r10d,%r10d - 66341966: 0f 84 a0 00 00 00 je 66341a0c - 6634196c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341970: 31 c0 xor %eax,%eax - 66341972: 48 8b 3d a7 5f 01 00 mov 0x15fa7(%rip),%rdi # 66357920 - 66341979: 48 8b 35 b0 5f 01 00 mov 0x15fb0(%rip),%rsi # 66357930 - 66341980: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341985: 44 8b 44 03 40 mov 0x40(%rbx,%rax,1),%r8d - 6634198a: 8b 12 mov (%rdx),%edx - 6634198c: 44 39 c2 cmp %r8d,%edx - 6634198f: 74 6d je 663419fe - 66341991: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341995: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341999: 41 89 d6 mov %edx,%r14d - 6634199c: 45 29 c6 sub %r8d,%r14d - 6634199f: 45 31 c0 xor %r8d,%r8d - 663419a2: 4f 8b 8c 11 80 00 00 mov 0x80(%r9,%r10,1),%r9 - 663419a9: 00 - 663419aa: 45 01 31 add %r14d,(%r9) - 663419ad: 89 54 03 40 mov %edx,0x40(%rbx,%rax,1) - 663419b1: 45 8b 09 mov (%r9),%r9d - 663419b4: 49 8b 94 43 80 00 00 mov 0x80(%r11,%rax,2),%rdx - 663419bb: 00 - 663419bc: 45 85 c9 test %r9d,%r9d - 663419bf: 41 0f 9f c0 setg %r8b - 663419c3: 44 3b 02 cmp (%rdx),%r8d - 663419c6: 74 36 je 663419fe - 663419c8: 48 8b 51 20 mov 0x20(%rcx),%rdx - 663419cc: 4a 8b 94 12 80 00 00 mov 0x80(%rdx,%r10,1),%rdx - 663419d3: 00 - 663419d4: 8b 12 mov (%rdx),%edx - 663419d6: 85 d2 test %edx,%edx - 663419d8: 75 24 jne 663419fe - 663419da: 48 8b 51 28 mov 0x28(%rcx),%rdx - 663419de: 4e 8b 84 12 80 00 00 mov 0x80(%rdx,%r10,1),%r8 - 663419e5: 00 - 663419e6: 49 8b 50 10 mov 0x10(%r8),%rdx - 663419ea: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663419f0: 48 63 16 movslq (%rsi),%rdx - 663419f3: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663419f7: 44 89 0e mov %r9d,(%rsi) - 663419fa: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663419fe: 48 83 c0 04 add $0x4,%rax - 66341a02: 48 83 f8 3c cmp $0x3c,%rax - 66341a06: 0f 85 74 ff ff ff jne 66341980 - 66341a0c: 5b pop %rbx - 66341a0d: 5e pop %rsi - 66341a0e: 5f pop %rdi - 66341a0f: 41 5e pop %r14 - 66341a11: c3 retq - 66341a12: 0f 1f 40 00 nopl 0x0(%rax) - 66341a16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341a1d: 00 00 00 +0000000066341910 : + 66341910: 41 56 push %r14 + 66341912: 57 push %rdi + 66341913: 56 push %rsi + 66341914: 53 push %rbx + 66341915: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341919: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 66341920: 44 8b 10 mov (%rax),%r10d + 66341923: 45 85 d2 test %r10d,%r10d + 66341926: 0f 84 a8 00 00 00 je 663419d4 + 6634192c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341930: 31 c0 xor %eax,%eax + 66341932: 48 8b 3d e7 5f 01 00 mov 0x15fe7(%rip),%rdi # 66357920 + 66341939: 48 8b 35 f0 5f 01 00 mov 0x15ff0(%rip),%rsi # 66357930 + 66341940: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341945: 44 8b 84 03 84 00 00 mov 0x84(%rbx,%rax,1),%r8d + 6634194c: 00 + 6634194d: 8b 12 mov (%rdx),%edx + 6634194f: 44 39 c2 cmp %r8d,%edx + 66341952: 74 70 je 663419c4 + 66341954: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341958: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 6634195c: 41 89 d6 mov %edx,%r14d + 6634195f: 45 29 c6 sub %r8d,%r14d + 66341962: 45 31 c0 xor %r8d,%r8d + 66341965: 4f 8b 8c 11 08 01 00 mov 0x108(%r9,%r10,1),%r9 + 6634196c: 00 + 6634196d: 45 01 31 add %r14d,(%r9) + 66341970: 89 94 03 84 00 00 00 mov %edx,0x84(%rbx,%rax,1) + 66341977: 45 8b 09 mov (%r9),%r9d + 6634197a: 49 8b 94 43 08 01 00 mov 0x108(%r11,%rax,2),%rdx + 66341981: 00 + 66341982: 45 85 c9 test %r9d,%r9d + 66341985: 41 0f 9f c0 setg %r8b + 66341989: 44 3b 02 cmp (%rdx),%r8d + 6634198c: 74 36 je 663419c4 + 6634198e: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341992: 4a 8b 94 12 08 01 00 mov 0x108(%rdx,%r10,1),%rdx + 66341999: 00 + 6634199a: 8b 12 mov (%rdx),%edx + 6634199c: 85 d2 test %edx,%edx + 6634199e: 75 24 jne 663419c4 + 663419a0: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663419a4: 4e 8b 84 12 08 01 00 mov 0x108(%rdx,%r10,1),%r8 + 663419ab: 00 + 663419ac: 49 8b 50 10 mov 0x10(%r8),%rdx + 663419b0: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663419b6: 48 63 16 movslq (%rsi),%rdx + 663419b9: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663419bd: 44 89 0e mov %r9d,(%rsi) + 663419c0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663419c4: 48 83 c0 04 add $0x4,%rax + 663419c8: 48 3d 80 00 00 00 cmp $0x80,%rax + 663419ce: 0f 85 6c ff ff ff jne 66341940 + 663419d4: 5b pop %rbx + 663419d5: 5e pop %rsi + 663419d6: 5f pop %rdi + 663419d7: 41 5e pop %r14 + 663419d9: c3 retq + 663419da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066341a20 : - 66341a20: 41 56 push %r14 - 66341a22: 57 push %rdi - 66341a23: 56 push %rsi - 66341a24: 53 push %rbx - 66341a25: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341a29: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 66341a30: 44 8b 10 mov (%rax),%r10d - 66341a33: 45 85 d2 test %r10d,%r10d - 66341a36: 0f 84 90 00 00 00 je 66341acc - 66341a3c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341a40: 31 c0 xor %eax,%eax - 66341a42: 48 8b 3d d7 5e 01 00 mov 0x15ed7(%rip),%rdi # 66357920 - 66341a49: 48 8b 35 e0 5e 01 00 mov 0x15ee0(%rip),%rsi # 66357930 - 66341a50: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341a55: 44 8b 44 03 3c mov 0x3c(%rbx,%rax,1),%r8d - 66341a5a: 8b 12 mov (%rdx),%edx - 66341a5c: 44 39 c2 cmp %r8d,%edx - 66341a5f: 74 61 je 66341ac2 - 66341a61: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341a65: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341a69: 41 89 d6 mov %edx,%r14d - 66341a6c: 45 29 c6 sub %r8d,%r14d - 66341a6f: 45 31 c0 xor %r8d,%r8d - 66341a72: 4f 8b 4c 11 78 mov 0x78(%r9,%r10,1),%r9 - 66341a77: 45 01 31 add %r14d,(%r9) - 66341a7a: 89 54 03 3c mov %edx,0x3c(%rbx,%rax,1) - 66341a7e: 45 8b 09 mov (%r9),%r9d - 66341a81: 49 8b 54 43 78 mov 0x78(%r11,%rax,2),%rdx - 66341a86: 45 85 c9 test %r9d,%r9d - 66341a89: 41 0f 9f c0 setg %r8b - 66341a8d: 44 3b 02 cmp (%rdx),%r8d - 66341a90: 74 30 je 66341ac2 - 66341a92: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341a96: 4a 8b 54 12 78 mov 0x78(%rdx,%r10,1),%rdx - 66341a9b: 8b 12 mov (%rdx),%edx - 66341a9d: 85 d2 test %edx,%edx - 66341a9f: 75 21 jne 66341ac2 - 66341aa1: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341aa5: 4e 8b 44 12 78 mov 0x78(%rdx,%r10,1),%r8 - 66341aaa: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341aae: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341ab4: 48 63 16 movslq (%rsi),%rdx - 66341ab7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341abb: 44 89 0e mov %r9d,(%rsi) - 66341abe: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341ac2: 48 83 c0 04 add $0x4,%rax - 66341ac6: 48 83 f8 38 cmp $0x38,%rax - 66341aca: 75 84 jne 66341a50 - 66341acc: 5b pop %rbx - 66341acd: 5e pop %rsi - 66341ace: 5f pop %rdi - 66341acf: 41 5e pop %r14 - 66341ad1: c3 retq - 66341ad2: 0f 1f 40 00 nopl 0x0(%rax) - 66341ad6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341add: 00 00 00 +00000000663419e0 : + 663419e0: 41 56 push %r14 + 663419e2: 57 push %rdi + 663419e3: 56 push %rsi + 663419e4: 53 push %rbx + 663419e5: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663419e9: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 663419f0: 44 8b 10 mov (%rax),%r10d + 663419f3: 45 85 d2 test %r10d,%r10d + 663419f6: 0f 84 a0 00 00 00 je 66341a9c + 663419fc: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341a00: 31 c0 xor %eax,%eax + 66341a02: 48 8b 3d 17 5f 01 00 mov 0x15f17(%rip),%rdi # 66357920 + 66341a09: 48 8b 35 20 5f 01 00 mov 0x15f20(%rip),%rsi # 66357930 + 66341a10: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341a15: 44 8b 44 03 64 mov 0x64(%rbx,%rax,1),%r8d + 66341a1a: 8b 12 mov (%rdx),%edx + 66341a1c: 44 39 c2 cmp %r8d,%edx + 66341a1f: 74 6d je 66341a8e + 66341a21: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341a25: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66341a29: 41 89 d6 mov %edx,%r14d + 66341a2c: 45 29 c6 sub %r8d,%r14d + 66341a2f: 45 31 c0 xor %r8d,%r8d + 66341a32: 4f 8b 8c 11 c8 00 00 mov 0xc8(%r9,%r10,1),%r9 + 66341a39: 00 + 66341a3a: 45 01 31 add %r14d,(%r9) + 66341a3d: 89 54 03 64 mov %edx,0x64(%rbx,%rax,1) + 66341a41: 45 8b 09 mov (%r9),%r9d + 66341a44: 49 8b 94 43 c8 00 00 mov 0xc8(%r11,%rax,2),%rdx + 66341a4b: 00 + 66341a4c: 45 85 c9 test %r9d,%r9d + 66341a4f: 41 0f 9f c0 setg %r8b + 66341a53: 44 3b 02 cmp (%rdx),%r8d + 66341a56: 74 36 je 66341a8e + 66341a58: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341a5c: 4a 8b 94 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%rdx + 66341a63: 00 + 66341a64: 8b 12 mov (%rdx),%edx + 66341a66: 85 d2 test %edx,%edx + 66341a68: 75 24 jne 66341a8e + 66341a6a: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341a6e: 4e 8b 84 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%r8 + 66341a75: 00 + 66341a76: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341a7a: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341a80: 48 63 16 movslq (%rsi),%rdx + 66341a83: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341a87: 44 89 0e mov %r9d,(%rsi) + 66341a8a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341a8e: 48 83 c0 04 add $0x4,%rax + 66341a92: 48 83 f8 60 cmp $0x60,%rax + 66341a96: 0f 85 74 ff ff ff jne 66341a10 + 66341a9c: 5b pop %rbx + 66341a9d: 5e pop %rsi + 66341a9e: 5f pop %rdi + 66341a9f: 41 5e pop %r14 + 66341aa1: c3 retq + 66341aa2: 0f 1f 40 00 nopl 0x0(%rax) + 66341aa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341aad: 00 00 00 -0000000066341ae0 : - 66341ae0: 41 56 push %r14 - 66341ae2: 57 push %rdi - 66341ae3: 56 push %rsi - 66341ae4: 53 push %rbx - 66341ae5: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341ae9: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 66341af0: 44 8b 10 mov (%rax),%r10d - 66341af3: 45 85 d2 test %r10d,%r10d - 66341af6: 0f 84 90 00 00 00 je 66341b8c - 66341afc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341b00: 31 c0 xor %eax,%eax - 66341b02: 48 8b 3d 17 5e 01 00 mov 0x15e17(%rip),%rdi # 66357920 - 66341b09: 48 8b 35 20 5e 01 00 mov 0x15e20(%rip),%rsi # 66357930 - 66341b10: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341b15: 44 8b 44 03 38 mov 0x38(%rbx,%rax,1),%r8d - 66341b1a: 8b 12 mov (%rdx),%edx - 66341b1c: 44 39 c2 cmp %r8d,%edx - 66341b1f: 74 61 je 66341b82 - 66341b21: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341b25: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341b29: 41 89 d6 mov %edx,%r14d - 66341b2c: 45 29 c6 sub %r8d,%r14d - 66341b2f: 45 31 c0 xor %r8d,%r8d - 66341b32: 4f 8b 4c 11 70 mov 0x70(%r9,%r10,1),%r9 - 66341b37: 45 01 31 add %r14d,(%r9) - 66341b3a: 89 54 03 38 mov %edx,0x38(%rbx,%rax,1) - 66341b3e: 45 8b 09 mov (%r9),%r9d - 66341b41: 49 8b 54 43 70 mov 0x70(%r11,%rax,2),%rdx - 66341b46: 45 85 c9 test %r9d,%r9d - 66341b49: 41 0f 9f c0 setg %r8b - 66341b4d: 44 3b 02 cmp (%rdx),%r8d - 66341b50: 74 30 je 66341b82 - 66341b52: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341b56: 4a 8b 54 12 70 mov 0x70(%rdx,%r10,1),%rdx - 66341b5b: 8b 12 mov (%rdx),%edx - 66341b5d: 85 d2 test %edx,%edx - 66341b5f: 75 21 jne 66341b82 - 66341b61: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341b65: 4e 8b 44 12 70 mov 0x70(%rdx,%r10,1),%r8 - 66341b6a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341b6e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341b74: 48 63 16 movslq (%rsi),%rdx - 66341b77: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341b7b: 44 89 0e mov %r9d,(%rsi) - 66341b7e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341b82: 48 83 c0 04 add $0x4,%rax - 66341b86: 48 83 f8 34 cmp $0x34,%rax - 66341b8a: 75 84 jne 66341b10 - 66341b8c: 5b pop %rbx - 66341b8d: 5e pop %rsi - 66341b8e: 5f pop %rdi - 66341b8f: 41 5e pop %r14 - 66341b91: c3 retq - 66341b92: 0f 1f 40 00 nopl 0x0(%rax) - 66341b96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341b9d: 00 00 00 +0000000066341ab0 : + 66341ab0: 41 56 push %r14 + 66341ab2: 57 push %rdi + 66341ab3: 56 push %rsi + 66341ab4: 53 push %rbx + 66341ab5: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341ab9: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 66341ac0: 44 8b 10 mov (%rax),%r10d + 66341ac3: 45 85 d2 test %r10d,%r10d + 66341ac6: 0f 84 a0 00 00 00 je 66341b6c + 66341acc: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341ad0: 31 c0 xor %eax,%eax + 66341ad2: 48 8b 3d 47 5e 01 00 mov 0x15e47(%rip),%rdi # 66357920 + 66341ad9: 48 8b 35 50 5e 01 00 mov 0x15e50(%rip),%rsi # 66357930 + 66341ae0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341ae5: 44 8b 44 03 44 mov 0x44(%rbx,%rax,1),%r8d + 66341aea: 8b 12 mov (%rdx),%edx + 66341aec: 44 39 c2 cmp %r8d,%edx + 66341aef: 74 6d je 66341b5e + 66341af1: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341af5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66341af9: 41 89 d6 mov %edx,%r14d + 66341afc: 45 29 c6 sub %r8d,%r14d + 66341aff: 45 31 c0 xor %r8d,%r8d + 66341b02: 4f 8b 8c 11 88 00 00 mov 0x88(%r9,%r10,1),%r9 + 66341b09: 00 + 66341b0a: 45 01 31 add %r14d,(%r9) + 66341b0d: 89 54 03 44 mov %edx,0x44(%rbx,%rax,1) + 66341b11: 45 8b 09 mov (%r9),%r9d + 66341b14: 49 8b 94 43 88 00 00 mov 0x88(%r11,%rax,2),%rdx + 66341b1b: 00 + 66341b1c: 45 85 c9 test %r9d,%r9d + 66341b1f: 41 0f 9f c0 setg %r8b + 66341b23: 44 3b 02 cmp (%rdx),%r8d + 66341b26: 74 36 je 66341b5e + 66341b28: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341b2c: 4a 8b 94 12 88 00 00 mov 0x88(%rdx,%r10,1),%rdx + 66341b33: 00 + 66341b34: 8b 12 mov (%rdx),%edx + 66341b36: 85 d2 test %edx,%edx + 66341b38: 75 24 jne 66341b5e + 66341b3a: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341b3e: 4e 8b 84 12 88 00 00 mov 0x88(%rdx,%r10,1),%r8 + 66341b45: 00 + 66341b46: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341b4a: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341b50: 48 63 16 movslq (%rsi),%rdx + 66341b53: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341b57: 44 89 0e mov %r9d,(%rsi) + 66341b5a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341b5e: 48 83 c0 04 add $0x4,%rax + 66341b62: 48 83 f8 40 cmp $0x40,%rax + 66341b66: 0f 85 74 ff ff ff jne 66341ae0 + 66341b6c: 5b pop %rbx + 66341b6d: 5e pop %rsi + 66341b6e: 5f pop %rdi + 66341b6f: 41 5e pop %r14 + 66341b71: c3 retq + 66341b72: 0f 1f 40 00 nopl 0x0(%rax) + 66341b76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341b7d: 00 00 00 -0000000066341ba0 : - 66341ba0: 41 56 push %r14 - 66341ba2: 57 push %rdi - 66341ba3: 56 push %rsi - 66341ba4: 53 push %rbx - 66341ba5: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341ba9: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66341bb0: 44 8b 18 mov (%rax),%r11d - 66341bb3: 45 85 db test %r11d,%r11d - 66341bb6: 0f 84 90 00 00 00 je 66341c4c - 66341bbc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341bc0: 31 c0 xor %eax,%eax - 66341bc2: 48 8b 3d 57 5d 01 00 mov 0x15d57(%rip),%rdi # 66357920 - 66341bc9: 48 8b 35 60 5d 01 00 mov 0x15d60(%rip),%rsi # 66357930 - 66341bd0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341bd5: 44 8b 44 03 34 mov 0x34(%rbx,%rax,1),%r8d - 66341bda: 8b 12 mov (%rdx),%edx - 66341bdc: 44 39 c2 cmp %r8d,%edx - 66341bdf: 74 61 je 66341c42 - 66341be1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341be5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341be9: 41 89 d6 mov %edx,%r14d - 66341bec: 45 29 c6 sub %r8d,%r14d - 66341bef: 45 31 c0 xor %r8d,%r8d - 66341bf2: 4f 8b 4c 19 68 mov 0x68(%r9,%r11,1),%r9 - 66341bf7: 45 01 31 add %r14d,(%r9) - 66341bfa: 89 54 03 34 mov %edx,0x34(%rbx,%rax,1) - 66341bfe: 45 8b 09 mov (%r9),%r9d - 66341c01: 49 8b 54 42 68 mov 0x68(%r10,%rax,2),%rdx - 66341c06: 45 85 c9 test %r9d,%r9d - 66341c09: 41 0f 9f c0 setg %r8b - 66341c0d: 44 3b 02 cmp (%rdx),%r8d - 66341c10: 74 30 je 66341c42 - 66341c12: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341c16: 4a 8b 54 1a 68 mov 0x68(%rdx,%r11,1),%rdx - 66341c1b: 8b 12 mov (%rdx),%edx - 66341c1d: 85 d2 test %edx,%edx - 66341c1f: 75 21 jne 66341c42 - 66341c21: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341c25: 4e 8b 44 1a 68 mov 0x68(%rdx,%r11,1),%r8 - 66341c2a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341c2e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341c34: 48 63 16 movslq (%rsi),%rdx - 66341c37: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341c3b: 44 89 0e mov %r9d,(%rsi) - 66341c3e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341c42: 48 83 c0 04 add $0x4,%rax - 66341c46: 48 83 f8 30 cmp $0x30,%rax - 66341c4a: 75 84 jne 66341bd0 - 66341c4c: 5b pop %rbx - 66341c4d: 5e pop %rsi - 66341c4e: 5f pop %rdi - 66341c4f: 41 5e pop %r14 - 66341c51: c3 retq - 66341c52: 0f 1f 40 00 nopl 0x0(%rax) - 66341c56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341c5d: 00 00 00 +0000000066341b80 : + 66341b80: 41 56 push %r14 + 66341b82: 57 push %rdi + 66341b83: 56 push %rsi + 66341b84: 53 push %rbx + 66341b85: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341b89: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 66341b90: 44 8b 10 mov (%rax),%r10d + 66341b93: 45 85 d2 test %r10d,%r10d + 66341b96: 0f 84 a0 00 00 00 je 66341c3c + 66341b9c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341ba0: 31 c0 xor %eax,%eax + 66341ba2: 48 8b 3d 77 5d 01 00 mov 0x15d77(%rip),%rdi # 66357920 + 66341ba9: 48 8b 35 80 5d 01 00 mov 0x15d80(%rip),%rsi # 66357930 + 66341bb0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341bb5: 44 8b 44 03 40 mov 0x40(%rbx,%rax,1),%r8d + 66341bba: 8b 12 mov (%rdx),%edx + 66341bbc: 44 39 c2 cmp %r8d,%edx + 66341bbf: 74 6d je 66341c2e + 66341bc1: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341bc5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66341bc9: 41 89 d6 mov %edx,%r14d + 66341bcc: 45 29 c6 sub %r8d,%r14d + 66341bcf: 45 31 c0 xor %r8d,%r8d + 66341bd2: 4f 8b 8c 11 80 00 00 mov 0x80(%r9,%r10,1),%r9 + 66341bd9: 00 + 66341bda: 45 01 31 add %r14d,(%r9) + 66341bdd: 89 54 03 40 mov %edx,0x40(%rbx,%rax,1) + 66341be1: 45 8b 09 mov (%r9),%r9d + 66341be4: 49 8b 94 43 80 00 00 mov 0x80(%r11,%rax,2),%rdx + 66341beb: 00 + 66341bec: 45 85 c9 test %r9d,%r9d + 66341bef: 41 0f 9f c0 setg %r8b + 66341bf3: 44 3b 02 cmp (%rdx),%r8d + 66341bf6: 74 36 je 66341c2e + 66341bf8: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341bfc: 4a 8b 94 12 80 00 00 mov 0x80(%rdx,%r10,1),%rdx + 66341c03: 00 + 66341c04: 8b 12 mov (%rdx),%edx + 66341c06: 85 d2 test %edx,%edx + 66341c08: 75 24 jne 66341c2e + 66341c0a: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341c0e: 4e 8b 84 12 80 00 00 mov 0x80(%rdx,%r10,1),%r8 + 66341c15: 00 + 66341c16: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341c1a: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341c20: 48 63 16 movslq (%rsi),%rdx + 66341c23: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341c27: 44 89 0e mov %r9d,(%rsi) + 66341c2a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341c2e: 48 83 c0 04 add $0x4,%rax + 66341c32: 48 83 f8 3c cmp $0x3c,%rax + 66341c36: 0f 85 74 ff ff ff jne 66341bb0 + 66341c3c: 5b pop %rbx + 66341c3d: 5e pop %rsi + 66341c3e: 5f pop %rdi + 66341c3f: 41 5e pop %r14 + 66341c41: c3 retq + 66341c42: 0f 1f 40 00 nopl 0x0(%rax) + 66341c46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341c4d: 00 00 00 -0000000066341c60 : - 66341c60: 41 56 push %r14 - 66341c62: 57 push %rdi - 66341c63: 56 push %rsi - 66341c64: 53 push %rbx - 66341c65: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341c69: 49 8b 82 b8 00 00 00 mov 0xb8(%r10),%rax - 66341c70: 44 8b 18 mov (%rax),%r11d - 66341c73: 45 85 db test %r11d,%r11d - 66341c76: 0f 84 90 00 00 00 je 66341d0c - 66341c7c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341c80: 31 c0 xor %eax,%eax - 66341c82: 48 8b 3d 97 5c 01 00 mov 0x15c97(%rip),%rdi # 66357920 - 66341c89: 48 8b 35 a0 5c 01 00 mov 0x15ca0(%rip),%rsi # 66357930 - 66341c90: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341c95: 44 8b 44 03 30 mov 0x30(%rbx,%rax,1),%r8d - 66341c9a: 8b 12 mov (%rdx),%edx - 66341c9c: 44 39 c2 cmp %r8d,%edx - 66341c9f: 74 61 je 66341d02 - 66341ca1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341ca5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341ca9: 41 89 d6 mov %edx,%r14d - 66341cac: 45 29 c6 sub %r8d,%r14d - 66341caf: 45 31 c0 xor %r8d,%r8d - 66341cb2: 4f 8b 4c 19 60 mov 0x60(%r9,%r11,1),%r9 - 66341cb7: 45 01 31 add %r14d,(%r9) - 66341cba: 89 54 03 30 mov %edx,0x30(%rbx,%rax,1) - 66341cbe: 45 8b 09 mov (%r9),%r9d - 66341cc1: 49 8b 54 42 60 mov 0x60(%r10,%rax,2),%rdx - 66341cc6: 45 85 c9 test %r9d,%r9d - 66341cc9: 41 0f 9f c0 setg %r8b - 66341ccd: 44 3b 02 cmp (%rdx),%r8d - 66341cd0: 74 30 je 66341d02 - 66341cd2: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341cd6: 4a 8b 54 1a 60 mov 0x60(%rdx,%r11,1),%rdx - 66341cdb: 8b 12 mov (%rdx),%edx - 66341cdd: 85 d2 test %edx,%edx - 66341cdf: 75 21 jne 66341d02 - 66341ce1: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341ce5: 4e 8b 44 1a 60 mov 0x60(%rdx,%r11,1),%r8 - 66341cea: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341cee: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341cf4: 48 63 16 movslq (%rsi),%rdx - 66341cf7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341cfb: 44 89 0e mov %r9d,(%rsi) - 66341cfe: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341d02: 48 83 c0 04 add $0x4,%rax - 66341d06: 48 83 f8 2c cmp $0x2c,%rax - 66341d0a: 75 84 jne 66341c90 - 66341d0c: 5b pop %rbx - 66341d0d: 5e pop %rsi - 66341d0e: 5f pop %rdi - 66341d0f: 41 5e pop %r14 - 66341d11: c3 retq - 66341d12: 0f 1f 40 00 nopl 0x0(%rax) - 66341d16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341d1d: 00 00 00 +0000000066341c50 : + 66341c50: 41 56 push %r14 + 66341c52: 57 push %rdi + 66341c53: 56 push %rsi + 66341c54: 53 push %rbx + 66341c55: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341c59: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 66341c60: 44 8b 10 mov (%rax),%r10d + 66341c63: 45 85 d2 test %r10d,%r10d + 66341c66: 0f 84 90 00 00 00 je 66341cfc + 66341c6c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341c70: 31 c0 xor %eax,%eax + 66341c72: 48 8b 3d a7 5c 01 00 mov 0x15ca7(%rip),%rdi # 66357920 + 66341c79: 48 8b 35 b0 5c 01 00 mov 0x15cb0(%rip),%rsi # 66357930 + 66341c80: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341c85: 44 8b 44 03 3c mov 0x3c(%rbx,%rax,1),%r8d + 66341c8a: 8b 12 mov (%rdx),%edx + 66341c8c: 44 39 c2 cmp %r8d,%edx + 66341c8f: 74 61 je 66341cf2 + 66341c91: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341c95: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66341c99: 41 89 d6 mov %edx,%r14d + 66341c9c: 45 29 c6 sub %r8d,%r14d + 66341c9f: 45 31 c0 xor %r8d,%r8d + 66341ca2: 4f 8b 4c 11 78 mov 0x78(%r9,%r10,1),%r9 + 66341ca7: 45 01 31 add %r14d,(%r9) + 66341caa: 89 54 03 3c mov %edx,0x3c(%rbx,%rax,1) + 66341cae: 45 8b 09 mov (%r9),%r9d + 66341cb1: 49 8b 54 43 78 mov 0x78(%r11,%rax,2),%rdx + 66341cb6: 45 85 c9 test %r9d,%r9d + 66341cb9: 41 0f 9f c0 setg %r8b + 66341cbd: 44 3b 02 cmp (%rdx),%r8d + 66341cc0: 74 30 je 66341cf2 + 66341cc2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341cc6: 4a 8b 54 12 78 mov 0x78(%rdx,%r10,1),%rdx + 66341ccb: 8b 12 mov (%rdx),%edx + 66341ccd: 85 d2 test %edx,%edx + 66341ccf: 75 21 jne 66341cf2 + 66341cd1: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341cd5: 4e 8b 44 12 78 mov 0x78(%rdx,%r10,1),%r8 + 66341cda: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341cde: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341ce4: 48 63 16 movslq (%rsi),%rdx + 66341ce7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341ceb: 44 89 0e mov %r9d,(%rsi) + 66341cee: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341cf2: 48 83 c0 04 add $0x4,%rax + 66341cf6: 48 83 f8 38 cmp $0x38,%rax + 66341cfa: 75 84 jne 66341c80 + 66341cfc: 5b pop %rbx + 66341cfd: 5e pop %rsi + 66341cfe: 5f pop %rdi + 66341cff: 41 5e pop %r14 + 66341d01: c3 retq + 66341d02: 0f 1f 40 00 nopl 0x0(%rax) + 66341d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341d0d: 00 00 00 -0000000066341d20 : - 66341d20: 41 56 push %r14 - 66341d22: 57 push %rdi - 66341d23: 56 push %rsi - 66341d24: 53 push %rbx - 66341d25: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341d29: 49 8b 82 a8 00 00 00 mov 0xa8(%r10),%rax - 66341d30: 44 8b 18 mov (%rax),%r11d - 66341d33: 45 85 db test %r11d,%r11d - 66341d36: 0f 84 90 00 00 00 je 66341dcc - 66341d3c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341d40: 31 c0 xor %eax,%eax - 66341d42: 48 8b 3d d7 5b 01 00 mov 0x15bd7(%rip),%rdi # 66357920 - 66341d49: 48 8b 35 e0 5b 01 00 mov 0x15be0(%rip),%rsi # 66357930 - 66341d50: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341d55: 44 8b 44 03 2c mov 0x2c(%rbx,%rax,1),%r8d - 66341d5a: 8b 12 mov (%rdx),%edx - 66341d5c: 44 39 c2 cmp %r8d,%edx - 66341d5f: 74 61 je 66341dc2 - 66341d61: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341d65: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341d69: 41 89 d6 mov %edx,%r14d - 66341d6c: 45 29 c6 sub %r8d,%r14d - 66341d6f: 45 31 c0 xor %r8d,%r8d - 66341d72: 4f 8b 4c 19 58 mov 0x58(%r9,%r11,1),%r9 - 66341d77: 45 01 31 add %r14d,(%r9) - 66341d7a: 89 54 03 2c mov %edx,0x2c(%rbx,%rax,1) - 66341d7e: 45 8b 09 mov (%r9),%r9d - 66341d81: 49 8b 54 42 58 mov 0x58(%r10,%rax,2),%rdx - 66341d86: 45 85 c9 test %r9d,%r9d - 66341d89: 41 0f 9f c0 setg %r8b - 66341d8d: 44 3b 02 cmp (%rdx),%r8d - 66341d90: 74 30 je 66341dc2 - 66341d92: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341d96: 4a 8b 54 1a 58 mov 0x58(%rdx,%r11,1),%rdx - 66341d9b: 8b 12 mov (%rdx),%edx - 66341d9d: 85 d2 test %edx,%edx - 66341d9f: 75 21 jne 66341dc2 - 66341da1: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341da5: 4e 8b 44 1a 58 mov 0x58(%rdx,%r11,1),%r8 - 66341daa: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341dae: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341db4: 48 63 16 movslq (%rsi),%rdx - 66341db7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341dbb: 44 89 0e mov %r9d,(%rsi) - 66341dbe: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341dc2: 48 83 c0 04 add $0x4,%rax - 66341dc6: 48 83 f8 28 cmp $0x28,%rax - 66341dca: 75 84 jne 66341d50 - 66341dcc: 5b pop %rbx - 66341dcd: 5e pop %rsi - 66341dce: 5f pop %rdi - 66341dcf: 41 5e pop %r14 - 66341dd1: c3 retq - 66341dd2: 0f 1f 40 00 nopl 0x0(%rax) - 66341dd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341ddd: 00 00 00 +0000000066341d10 : + 66341d10: 41 56 push %r14 + 66341d12: 57 push %rdi + 66341d13: 56 push %rsi + 66341d14: 53 push %rbx + 66341d15: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66341d19: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 66341d20: 44 8b 10 mov (%rax),%r10d + 66341d23: 45 85 d2 test %r10d,%r10d + 66341d26: 0f 84 90 00 00 00 je 66341dbc + 66341d2c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341d30: 31 c0 xor %eax,%eax + 66341d32: 48 8b 3d e7 5b 01 00 mov 0x15be7(%rip),%rdi # 66357920 + 66341d39: 48 8b 35 f0 5b 01 00 mov 0x15bf0(%rip),%rsi # 66357930 + 66341d40: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66341d45: 44 8b 44 03 38 mov 0x38(%rbx,%rax,1),%r8d + 66341d4a: 8b 12 mov (%rdx),%edx + 66341d4c: 44 39 c2 cmp %r8d,%edx + 66341d4f: 74 61 je 66341db2 + 66341d51: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341d55: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66341d59: 41 89 d6 mov %edx,%r14d + 66341d5c: 45 29 c6 sub %r8d,%r14d + 66341d5f: 45 31 c0 xor %r8d,%r8d + 66341d62: 4f 8b 4c 11 70 mov 0x70(%r9,%r10,1),%r9 + 66341d67: 45 01 31 add %r14d,(%r9) + 66341d6a: 89 54 03 38 mov %edx,0x38(%rbx,%rax,1) + 66341d6e: 45 8b 09 mov (%r9),%r9d + 66341d71: 49 8b 54 43 70 mov 0x70(%r11,%rax,2),%rdx + 66341d76: 45 85 c9 test %r9d,%r9d + 66341d79: 41 0f 9f c0 setg %r8b + 66341d7d: 44 3b 02 cmp (%rdx),%r8d + 66341d80: 74 30 je 66341db2 + 66341d82: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341d86: 4a 8b 54 12 70 mov 0x70(%rdx,%r10,1),%rdx + 66341d8b: 8b 12 mov (%rdx),%edx + 66341d8d: 85 d2 test %edx,%edx + 66341d8f: 75 21 jne 66341db2 + 66341d91: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341d95: 4e 8b 44 12 70 mov 0x70(%rdx,%r10,1),%r8 + 66341d9a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341d9e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341da4: 48 63 16 movslq (%rsi),%rdx + 66341da7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341dab: 44 89 0e mov %r9d,(%rsi) + 66341dae: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341db2: 48 83 c0 04 add $0x4,%rax + 66341db6: 48 83 f8 34 cmp $0x34,%rax + 66341dba: 75 84 jne 66341d40 + 66341dbc: 5b pop %rbx + 66341dbd: 5e pop %rsi + 66341dbe: 5f pop %rdi + 66341dbf: 41 5e pop %r14 + 66341dc1: c3 retq + 66341dc2: 0f 1f 40 00 nopl 0x0(%rax) + 66341dc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341dcd: 00 00 00 -0000000066341de0 : - 66341de0: 41 56 push %r14 - 66341de2: 57 push %rdi - 66341de3: 56 push %rsi - 66341de4: 53 push %rbx - 66341de5: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341de9: 49 8b 82 98 00 00 00 mov 0x98(%r10),%rax - 66341df0: 44 8b 18 mov (%rax),%r11d - 66341df3: 45 85 db test %r11d,%r11d - 66341df6: 0f 84 90 00 00 00 je 66341e8c - 66341dfc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341e00: 31 c0 xor %eax,%eax - 66341e02: 48 8b 3d 17 5b 01 00 mov 0x15b17(%rip),%rdi # 66357920 - 66341e09: 48 8b 35 20 5b 01 00 mov 0x15b20(%rip),%rsi # 66357930 - 66341e10: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341e15: 44 8b 44 03 28 mov 0x28(%rbx,%rax,1),%r8d - 66341e1a: 8b 12 mov (%rdx),%edx - 66341e1c: 44 39 c2 cmp %r8d,%edx - 66341e1f: 74 61 je 66341e82 - 66341e21: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341e25: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341e29: 41 89 d6 mov %edx,%r14d - 66341e2c: 45 29 c6 sub %r8d,%r14d - 66341e2f: 45 31 c0 xor %r8d,%r8d - 66341e32: 4f 8b 4c 19 50 mov 0x50(%r9,%r11,1),%r9 - 66341e37: 45 01 31 add %r14d,(%r9) - 66341e3a: 89 54 03 28 mov %edx,0x28(%rbx,%rax,1) - 66341e3e: 45 8b 09 mov (%r9),%r9d - 66341e41: 49 8b 54 42 50 mov 0x50(%r10,%rax,2),%rdx - 66341e46: 45 85 c9 test %r9d,%r9d - 66341e49: 41 0f 9f c0 setg %r8b - 66341e4d: 44 3b 02 cmp (%rdx),%r8d - 66341e50: 74 30 je 66341e82 - 66341e52: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341e56: 4a 8b 54 1a 50 mov 0x50(%rdx,%r11,1),%rdx - 66341e5b: 8b 12 mov (%rdx),%edx - 66341e5d: 85 d2 test %edx,%edx - 66341e5f: 75 21 jne 66341e82 - 66341e61: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341e65: 4e 8b 44 1a 50 mov 0x50(%rdx,%r11,1),%r8 - 66341e6a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341e6e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341e74: 48 63 16 movslq (%rsi),%rdx - 66341e77: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341e7b: 44 89 0e mov %r9d,(%rsi) - 66341e7e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341e82: 48 83 c0 04 add $0x4,%rax - 66341e86: 48 83 f8 24 cmp $0x24,%rax - 66341e8a: 75 84 jne 66341e10 - 66341e8c: 5b pop %rbx - 66341e8d: 5e pop %rsi - 66341e8e: 5f pop %rdi - 66341e8f: 41 5e pop %r14 - 66341e91: c3 retq - 66341e92: 0f 1f 40 00 nopl 0x0(%rax) - 66341e96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341e9d: 00 00 00 +0000000066341dd0 : + 66341dd0: 41 56 push %r14 + 66341dd2: 57 push %rdi + 66341dd3: 56 push %rsi + 66341dd4: 53 push %rbx + 66341dd5: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66341dd9: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 66341de0: 44 8b 18 mov (%rax),%r11d + 66341de3: 45 85 db test %r11d,%r11d + 66341de6: 0f 84 90 00 00 00 je 66341e7c + 66341dec: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341df0: 31 c0 xor %eax,%eax + 66341df2: 48 8b 3d 27 5b 01 00 mov 0x15b27(%rip),%rdi # 66357920 + 66341df9: 48 8b 35 30 5b 01 00 mov 0x15b30(%rip),%rsi # 66357930 + 66341e00: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66341e05: 44 8b 44 03 34 mov 0x34(%rbx,%rax,1),%r8d + 66341e0a: 8b 12 mov (%rdx),%edx + 66341e0c: 44 39 c2 cmp %r8d,%edx + 66341e0f: 74 61 je 66341e72 + 66341e11: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341e15: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66341e19: 41 89 d6 mov %edx,%r14d + 66341e1c: 45 29 c6 sub %r8d,%r14d + 66341e1f: 45 31 c0 xor %r8d,%r8d + 66341e22: 4f 8b 4c 19 68 mov 0x68(%r9,%r11,1),%r9 + 66341e27: 45 01 31 add %r14d,(%r9) + 66341e2a: 89 54 03 34 mov %edx,0x34(%rbx,%rax,1) + 66341e2e: 45 8b 09 mov (%r9),%r9d + 66341e31: 49 8b 54 42 68 mov 0x68(%r10,%rax,2),%rdx + 66341e36: 45 85 c9 test %r9d,%r9d + 66341e39: 41 0f 9f c0 setg %r8b + 66341e3d: 44 3b 02 cmp (%rdx),%r8d + 66341e40: 74 30 je 66341e72 + 66341e42: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341e46: 4a 8b 54 1a 68 mov 0x68(%rdx,%r11,1),%rdx + 66341e4b: 8b 12 mov (%rdx),%edx + 66341e4d: 85 d2 test %edx,%edx + 66341e4f: 75 21 jne 66341e72 + 66341e51: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341e55: 4e 8b 44 1a 68 mov 0x68(%rdx,%r11,1),%r8 + 66341e5a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341e5e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341e64: 48 63 16 movslq (%rsi),%rdx + 66341e67: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341e6b: 44 89 0e mov %r9d,(%rsi) + 66341e6e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341e72: 48 83 c0 04 add $0x4,%rax + 66341e76: 48 83 f8 30 cmp $0x30,%rax + 66341e7a: 75 84 jne 66341e00 + 66341e7c: 5b pop %rbx + 66341e7d: 5e pop %rsi + 66341e7e: 5f pop %rdi + 66341e7f: 41 5e pop %r14 + 66341e81: c3 retq + 66341e82: 0f 1f 40 00 nopl 0x0(%rax) + 66341e86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341e8d: 00 00 00 -0000000066341ea0 : - 66341ea0: 41 56 push %r14 - 66341ea2: 57 push %rdi - 66341ea3: 56 push %rsi - 66341ea4: 53 push %rbx - 66341ea5: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341ea9: 49 8b 82 88 00 00 00 mov 0x88(%r10),%rax - 66341eb0: 44 8b 18 mov (%rax),%r11d - 66341eb3: 45 85 db test %r11d,%r11d - 66341eb6: 0f 84 90 00 00 00 je 66341f4c - 66341ebc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341ec0: 31 c0 xor %eax,%eax - 66341ec2: 48 8b 3d 57 5a 01 00 mov 0x15a57(%rip),%rdi # 66357920 - 66341ec9: 48 8b 35 60 5a 01 00 mov 0x15a60(%rip),%rsi # 66357930 - 66341ed0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341ed5: 44 8b 44 03 24 mov 0x24(%rbx,%rax,1),%r8d - 66341eda: 8b 12 mov (%rdx),%edx - 66341edc: 44 39 c2 cmp %r8d,%edx - 66341edf: 74 61 je 66341f42 - 66341ee1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341ee5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341ee9: 41 89 d6 mov %edx,%r14d - 66341eec: 45 29 c6 sub %r8d,%r14d - 66341eef: 45 31 c0 xor %r8d,%r8d - 66341ef2: 4f 8b 4c 19 48 mov 0x48(%r9,%r11,1),%r9 - 66341ef7: 45 01 31 add %r14d,(%r9) - 66341efa: 89 54 03 24 mov %edx,0x24(%rbx,%rax,1) - 66341efe: 45 8b 09 mov (%r9),%r9d - 66341f01: 49 8b 54 42 48 mov 0x48(%r10,%rax,2),%rdx - 66341f06: 45 85 c9 test %r9d,%r9d - 66341f09: 41 0f 9f c0 setg %r8b - 66341f0d: 44 3b 02 cmp (%rdx),%r8d - 66341f10: 74 30 je 66341f42 - 66341f12: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341f16: 4a 8b 54 1a 48 mov 0x48(%rdx,%r11,1),%rdx - 66341f1b: 8b 12 mov (%rdx),%edx - 66341f1d: 85 d2 test %edx,%edx - 66341f1f: 75 21 jne 66341f42 - 66341f21: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341f25: 4e 8b 44 1a 48 mov 0x48(%rdx,%r11,1),%r8 - 66341f2a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341f2e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341f34: 48 63 16 movslq (%rsi),%rdx - 66341f37: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341f3b: 44 89 0e mov %r9d,(%rsi) - 66341f3e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341f42: 48 83 c0 04 add $0x4,%rax - 66341f46: 48 83 f8 20 cmp $0x20,%rax - 66341f4a: 75 84 jne 66341ed0 - 66341f4c: 5b pop %rbx - 66341f4d: 5e pop %rsi - 66341f4e: 5f pop %rdi - 66341f4f: 41 5e pop %r14 - 66341f51: c3 retq - 66341f52: 0f 1f 40 00 nopl 0x0(%rax) - 66341f56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341f5d: 00 00 00 +0000000066341e90 : + 66341e90: 41 56 push %r14 + 66341e92: 57 push %rdi + 66341e93: 56 push %rsi + 66341e94: 53 push %rbx + 66341e95: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66341e99: 49 8b 82 b8 00 00 00 mov 0xb8(%r10),%rax + 66341ea0: 44 8b 18 mov (%rax),%r11d + 66341ea3: 45 85 db test %r11d,%r11d + 66341ea6: 0f 84 90 00 00 00 je 66341f3c + 66341eac: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341eb0: 31 c0 xor %eax,%eax + 66341eb2: 48 8b 3d 67 5a 01 00 mov 0x15a67(%rip),%rdi # 66357920 + 66341eb9: 48 8b 35 70 5a 01 00 mov 0x15a70(%rip),%rsi # 66357930 + 66341ec0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66341ec5: 44 8b 44 03 30 mov 0x30(%rbx,%rax,1),%r8d + 66341eca: 8b 12 mov (%rdx),%edx + 66341ecc: 44 39 c2 cmp %r8d,%edx + 66341ecf: 74 61 je 66341f32 + 66341ed1: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341ed5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66341ed9: 41 89 d6 mov %edx,%r14d + 66341edc: 45 29 c6 sub %r8d,%r14d + 66341edf: 45 31 c0 xor %r8d,%r8d + 66341ee2: 4f 8b 4c 19 60 mov 0x60(%r9,%r11,1),%r9 + 66341ee7: 45 01 31 add %r14d,(%r9) + 66341eea: 89 54 03 30 mov %edx,0x30(%rbx,%rax,1) + 66341eee: 45 8b 09 mov (%r9),%r9d + 66341ef1: 49 8b 54 42 60 mov 0x60(%r10,%rax,2),%rdx + 66341ef6: 45 85 c9 test %r9d,%r9d + 66341ef9: 41 0f 9f c0 setg %r8b + 66341efd: 44 3b 02 cmp (%rdx),%r8d + 66341f00: 74 30 je 66341f32 + 66341f02: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341f06: 4a 8b 54 1a 60 mov 0x60(%rdx,%r11,1),%rdx + 66341f0b: 8b 12 mov (%rdx),%edx + 66341f0d: 85 d2 test %edx,%edx + 66341f0f: 75 21 jne 66341f32 + 66341f11: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341f15: 4e 8b 44 1a 60 mov 0x60(%rdx,%r11,1),%r8 + 66341f1a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341f1e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341f24: 48 63 16 movslq (%rsi),%rdx + 66341f27: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341f2b: 44 89 0e mov %r9d,(%rsi) + 66341f2e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341f32: 48 83 c0 04 add $0x4,%rax + 66341f36: 48 83 f8 2c cmp $0x2c,%rax + 66341f3a: 75 84 jne 66341ec0 + 66341f3c: 5b pop %rbx + 66341f3d: 5e pop %rsi + 66341f3e: 5f pop %rdi + 66341f3f: 41 5e pop %r14 + 66341f41: c3 retq + 66341f42: 0f 1f 40 00 nopl 0x0(%rax) + 66341f46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341f4d: 00 00 00 -0000000066341f60 : - 66341f60: 56 push %rsi - 66341f61: 53 push %rbx - 66341f62: 48 8b 41 10 mov 0x10(%rcx),%rax - 66341f66: 48 8b 50 78 mov 0x78(%rax),%rdx - 66341f6a: 44 8b 12 mov (%rdx),%r10d - 66341f6d: 45 85 d2 test %r10d,%r10d - 66341f70: 0f 84 3d 02 00 00 je 663421b3 - 66341f76: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66341f7a: 4c 8b 48 08 mov 0x8(%rax),%r9 - 66341f7e: 4c 8b 1d 9b 59 01 00 mov 0x1599b(%rip),%r11 # 66357920 - 66341f85: 4c 8b 05 a4 59 01 00 mov 0x159a4(%rip),%r8 # 66357930 - 66341f8c: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66341f90: 45 8b 09 mov (%r9),%r9d - 66341f93: 45 39 d1 cmp %r10d,%r9d - 66341f96: 74 3d je 66341fd5 - 66341f98: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66341f9c: 44 89 ce mov %r9d,%esi - 66341f9f: 44 29 d6 sub %r10d,%esi - 66341fa2: 45 31 d2 xor %r10d,%r10d - 66341fa5: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66341fa9: 01 33 add %esi,(%rbx) - 66341fab: 44 89 4a 20 mov %r9d,0x20(%rdx) - 66341faf: 44 8b 0b mov (%rbx),%r9d - 66341fb2: 45 85 c9 test %r9d,%r9d - 66341fb5: 4c 8b 48 40 mov 0x40(%rax),%r9 - 66341fb9: 41 0f 9f c2 setg %r10b - 66341fbd: 45 3b 11 cmp (%r9),%r10d - 66341fc0: 74 13 je 66341fd5 - 66341fc2: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66341fc6: 4d 8b 49 40 mov 0x40(%r9),%r9 - 66341fca: 41 8b 31 mov (%r9),%esi - 66341fcd: 85 f6 test %esi,%esi - 66341fcf: 0f 84 db 02 00 00 je 663422b0 - 66341fd5: 4c 8b 48 10 mov 0x10(%rax),%r9 - 66341fd9: 44 8b 52 24 mov 0x24(%rdx),%r10d - 66341fdd: 45 8b 09 mov (%r9),%r9d - 66341fe0: 45 39 d1 cmp %r10d,%r9d - 66341fe3: 74 3c je 66342021 - 66341fe5: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66341fe9: 44 89 ce mov %r9d,%esi - 66341fec: 44 29 d6 sub %r10d,%esi - 66341fef: 45 31 d2 xor %r10d,%r10d - 66341ff2: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66341ff6: 01 33 add %esi,(%rbx) - 66341ff8: 44 89 4a 24 mov %r9d,0x24(%rdx) - 66341ffc: 8b 1b mov (%rbx),%ebx - 66341ffe: 4c 8b 48 48 mov 0x48(%rax),%r9 - 66342002: 85 db test %ebx,%ebx - 66342004: 41 0f 9f c2 setg %r10b - 66342008: 45 3b 11 cmp (%r9),%r10d - 6634200b: 74 14 je 66342021 - 6634200d: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342011: 4d 8b 49 48 mov 0x48(%r9),%r9 - 66342015: 45 8b 11 mov (%r9),%r10d - 66342018: 45 85 d2 test %r10d,%r10d - 6634201b: 0f 84 5f 02 00 00 je 66342280 - 66342021: 4c 8b 48 18 mov 0x18(%rax),%r9 - 66342025: 44 8b 52 28 mov 0x28(%rdx),%r10d - 66342029: 45 8b 09 mov (%r9),%r9d - 6634202c: 45 39 d1 cmp %r10d,%r9d - 6634202f: 74 3d je 6634206e - 66342031: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342035: 44 89 ce mov %r9d,%esi - 66342038: 44 29 d6 sub %r10d,%esi - 6634203b: 45 31 d2 xor %r10d,%r10d - 6634203e: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66342042: 01 33 add %esi,(%rbx) - 66342044: 44 89 4a 28 mov %r9d,0x28(%rdx) - 66342048: 44 8b 0b mov (%rbx),%r9d - 6634204b: 45 85 c9 test %r9d,%r9d - 6634204e: 4c 8b 48 50 mov 0x50(%rax),%r9 - 66342052: 41 0f 9f c2 setg %r10b - 66342056: 45 3b 11 cmp (%r9),%r10d - 66342059: 74 13 je 6634206e - 6634205b: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634205f: 4d 8b 49 50 mov 0x50(%r9),%r9 - 66342063: 41 8b 31 mov (%r9),%esi - 66342066: 85 f6 test %esi,%esi - 66342068: 0f 84 e2 01 00 00 je 66342250 - 6634206e: 4c 8b 48 20 mov 0x20(%rax),%r9 - 66342072: 44 8b 52 2c mov 0x2c(%rdx),%r10d - 66342076: 45 8b 09 mov (%r9),%r9d - 66342079: 45 39 d1 cmp %r10d,%r9d - 6634207c: 74 3c je 663420ba - 6634207e: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342082: 44 89 ce mov %r9d,%esi - 66342085: 44 29 d6 sub %r10d,%esi - 66342088: 45 31 d2 xor %r10d,%r10d - 6634208b: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 6634208f: 01 33 add %esi,(%rbx) - 66342091: 44 89 4a 2c mov %r9d,0x2c(%rdx) - 66342095: 8b 1b mov (%rbx),%ebx - 66342097: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634209b: 85 db test %ebx,%ebx - 6634209d: 41 0f 9f c2 setg %r10b - 663420a1: 45 3b 11 cmp (%r9),%r10d - 663420a4: 74 14 je 663420ba - 663420a6: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663420aa: 4d 8b 49 58 mov 0x58(%r9),%r9 - 663420ae: 45 8b 11 mov (%r9),%r10d - 663420b1: 45 85 d2 test %r10d,%r10d - 663420b4: 0f 84 66 01 00 00 je 66342220 - 663420ba: 4c 8b 48 28 mov 0x28(%rax),%r9 - 663420be: 44 8b 52 30 mov 0x30(%rdx),%r10d - 663420c2: 45 8b 09 mov (%r9),%r9d - 663420c5: 45 39 d1 cmp %r10d,%r9d - 663420c8: 74 3d je 66342107 - 663420ca: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663420ce: 44 89 ce mov %r9d,%esi - 663420d1: 44 29 d6 sub %r10d,%esi - 663420d4: 45 31 d2 xor %r10d,%r10d - 663420d7: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 663420db: 01 33 add %esi,(%rbx) - 663420dd: 44 89 4a 30 mov %r9d,0x30(%rdx) - 663420e1: 44 8b 0b mov (%rbx),%r9d - 663420e4: 45 85 c9 test %r9d,%r9d - 663420e7: 4c 8b 48 60 mov 0x60(%rax),%r9 - 663420eb: 41 0f 9f c2 setg %r10b - 663420ef: 45 3b 11 cmp (%r9),%r10d - 663420f2: 74 13 je 66342107 - 663420f4: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663420f8: 4d 8b 49 60 mov 0x60(%r9),%r9 - 663420fc: 41 8b 31 mov (%r9),%esi - 663420ff: 85 f6 test %esi,%esi - 66342101: 0f 84 e9 00 00 00 je 663421f0 - 66342107: 4c 8b 48 30 mov 0x30(%rax),%r9 - 6634210b: 44 8b 52 34 mov 0x34(%rdx),%r10d - 6634210f: 45 8b 09 mov (%r9),%r9d - 66342112: 45 39 d1 cmp %r10d,%r9d - 66342115: 74 38 je 6634214f - 66342117: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634211b: 44 89 ce mov %r9d,%esi - 6634211e: 44 29 d6 sub %r10d,%esi - 66342121: 45 31 d2 xor %r10d,%r10d - 66342124: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 66342128: 01 33 add %esi,(%rbx) - 6634212a: 44 89 4a 34 mov %r9d,0x34(%rdx) - 6634212e: 8b 1b mov (%rbx),%ebx - 66342130: 4c 8b 48 68 mov 0x68(%rax),%r9 - 66342134: 85 db test %ebx,%ebx - 66342136: 41 0f 9f c2 setg %r10b - 6634213a: 45 3b 11 cmp (%r9),%r10d - 6634213d: 74 10 je 6634214f - 6634213f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342143: 4d 8b 49 68 mov 0x68(%r9),%r9 - 66342147: 45 8b 11 mov (%r9),%r10d - 6634214a: 45 85 d2 test %r10d,%r10d - 6634214d: 74 71 je 663421c0 - 6634214f: 4c 8b 48 38 mov 0x38(%rax),%r9 - 66342153: 44 8b 52 38 mov 0x38(%rdx),%r10d - 66342157: 45 8b 09 mov (%r9),%r9d - 6634215a: 45 39 d1 cmp %r10d,%r9d - 6634215d: 74 54 je 663421b3 - 6634215f: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342163: 44 89 ce mov %r9d,%esi - 66342166: 44 29 d6 sub %r10d,%esi - 66342169: 48 8b 40 70 mov 0x70(%rax),%rax - 6634216d: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 66342171: 01 33 add %esi,(%rbx) - 66342173: 44 89 4a 38 mov %r9d,0x38(%rdx) - 66342177: 31 d2 xor %edx,%edx - 66342179: 44 8b 0b mov (%rbx),%r9d - 6634217c: 45 85 c9 test %r9d,%r9d - 6634217f: 0f 9f c2 setg %dl - 66342182: 3b 10 cmp (%rax),%edx - 66342184: 74 2d je 663421b3 - 66342186: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634218a: 48 8b 40 70 mov 0x70(%rax),%rax - 6634218e: 8b 00 mov (%rax),%eax - 66342190: 85 c0 test %eax,%eax - 66342192: 75 1f jne 663421b3 - 66342194: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342198: 48 8b 50 70 mov 0x70(%rax),%rdx - 6634219c: 48 8b 42 10 mov 0x10(%rdx),%rax - 663421a0: c7 00 01 00 00 00 movl $0x1,(%rax) - 663421a6: 49 63 00 movslq (%r8),%rax - 663421a9: 8d 48 01 lea 0x1(%rax),%ecx - 663421ac: 41 89 08 mov %ecx,(%r8) - 663421af: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 663421b3: 5b pop %rbx - 663421b4: 5e pop %rsi - 663421b5: c3 retq - 663421b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663421bd: 00 00 00 - 663421c0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663421c4: 4d 8b 51 68 mov 0x68(%r9),%r10 - 663421c8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663421cc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663421d3: 4d 63 08 movslq (%r8),%r9 - 663421d6: 41 8d 59 01 lea 0x1(%r9),%ebx - 663421da: 41 89 18 mov %ebx,(%r8) - 663421dd: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663421e1: e9 69 ff ff ff jmpq 6634214f - 663421e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663421ed: 00 00 00 - 663421f0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663421f4: 4d 8b 51 60 mov 0x60(%r9),%r10 - 663421f8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663421fc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342203: 4d 63 08 movslq (%r8),%r9 - 66342206: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634220a: 41 89 18 mov %ebx,(%r8) - 6634220d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342211: e9 f1 fe ff ff jmpq 66342107 - 66342216: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634221d: 00 00 00 - 66342220: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342224: 4d 8b 51 58 mov 0x58(%r9),%r10 - 66342228: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634222c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342233: 4d 63 08 movslq (%r8),%r9 - 66342236: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634223a: 41 89 18 mov %ebx,(%r8) - 6634223d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342241: e9 74 fe ff ff jmpq 663420ba - 66342246: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634224d: 00 00 00 - 66342250: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342254: 4d 8b 51 50 mov 0x50(%r9),%r10 - 66342258: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634225c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342263: 4d 63 08 movslq (%r8),%r9 - 66342266: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634226a: 41 89 18 mov %ebx,(%r8) - 6634226d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342271: e9 f8 fd ff ff jmpq 6634206e - 66342276: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634227d: 00 00 00 - 66342280: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342284: 4d 8b 51 48 mov 0x48(%r9),%r10 - 66342288: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634228c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342293: 4d 63 08 movslq (%r8),%r9 - 66342296: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634229a: 41 89 18 mov %ebx,(%r8) - 6634229d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663422a1: e9 7b fd ff ff jmpq 66342021 - 663422a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663422ad: 00 00 00 - 663422b0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663422b4: 4d 8b 51 40 mov 0x40(%r9),%r10 - 663422b8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663422bc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663422c3: 4d 63 08 movslq (%r8),%r9 - 663422c6: 41 8d 59 01 lea 0x1(%r9),%ebx - 663422ca: 41 89 18 mov %ebx,(%r8) - 663422cd: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663422d1: e9 ff fc ff ff jmpq 66341fd5 - 663422d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663422dd: 00 00 00 +0000000066341f50 : + 66341f50: 41 56 push %r14 + 66341f52: 57 push %rdi + 66341f53: 56 push %rsi + 66341f54: 53 push %rbx + 66341f55: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66341f59: 49 8b 82 a8 00 00 00 mov 0xa8(%r10),%rax + 66341f60: 44 8b 18 mov (%rax),%r11d + 66341f63: 45 85 db test %r11d,%r11d + 66341f66: 0f 84 90 00 00 00 je 66341ffc + 66341f6c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66341f70: 31 c0 xor %eax,%eax + 66341f72: 48 8b 3d a7 59 01 00 mov 0x159a7(%rip),%rdi # 66357920 + 66341f79: 48 8b 35 b0 59 01 00 mov 0x159b0(%rip),%rsi # 66357930 + 66341f80: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66341f85: 44 8b 44 03 2c mov 0x2c(%rbx,%rax,1),%r8d + 66341f8a: 8b 12 mov (%rdx),%edx + 66341f8c: 44 39 c2 cmp %r8d,%edx + 66341f8f: 74 61 je 66341ff2 + 66341f91: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66341f95: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66341f99: 41 89 d6 mov %edx,%r14d + 66341f9c: 45 29 c6 sub %r8d,%r14d + 66341f9f: 45 31 c0 xor %r8d,%r8d + 66341fa2: 4f 8b 4c 19 58 mov 0x58(%r9,%r11,1),%r9 + 66341fa7: 45 01 31 add %r14d,(%r9) + 66341faa: 89 54 03 2c mov %edx,0x2c(%rbx,%rax,1) + 66341fae: 45 8b 09 mov (%r9),%r9d + 66341fb1: 49 8b 54 42 58 mov 0x58(%r10,%rax,2),%rdx + 66341fb6: 45 85 c9 test %r9d,%r9d + 66341fb9: 41 0f 9f c0 setg %r8b + 66341fbd: 44 3b 02 cmp (%rdx),%r8d + 66341fc0: 74 30 je 66341ff2 + 66341fc2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66341fc6: 4a 8b 54 1a 58 mov 0x58(%rdx,%r11,1),%rdx + 66341fcb: 8b 12 mov (%rdx),%edx + 66341fcd: 85 d2 test %edx,%edx + 66341fcf: 75 21 jne 66341ff2 + 66341fd1: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66341fd5: 4e 8b 44 1a 58 mov 0x58(%rdx,%r11,1),%r8 + 66341fda: 49 8b 50 10 mov 0x10(%r8),%rdx + 66341fde: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66341fe4: 48 63 16 movslq (%rsi),%rdx + 66341fe7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66341feb: 44 89 0e mov %r9d,(%rsi) + 66341fee: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66341ff2: 48 83 c0 04 add $0x4,%rax + 66341ff6: 48 83 f8 28 cmp $0x28,%rax + 66341ffa: 75 84 jne 66341f80 + 66341ffc: 5b pop %rbx + 66341ffd: 5e pop %rsi + 66341ffe: 5f pop %rdi + 66341fff: 41 5e pop %r14 + 66342001: c3 retq + 66342002: 0f 1f 40 00 nopl 0x0(%rax) + 66342006: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634200d: 00 00 00 -00000000663422e0 : - 663422e0: 56 push %rsi - 663422e1: 53 push %rbx - 663422e2: 48 8b 41 10 mov 0x10(%rcx),%rax - 663422e6: 48 8b 50 68 mov 0x68(%rax),%rdx - 663422ea: 8b 32 mov (%rdx),%esi - 663422ec: 85 f6 test %esi,%esi - 663422ee: 0f 84 85 02 00 00 je 66342579 - 663422f4: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663422f8: 4c 8b 48 08 mov 0x8(%rax),%r9 - 663422fc: 4c 8b 1d 1d 56 01 00 mov 0x1561d(%rip),%r11 # 66357920 - 66342303: 4c 8b 05 26 56 01 00 mov 0x15626(%rip),%r8 # 66357930 - 6634230a: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 6634230e: 45 8b 09 mov (%r9),%r9d - 66342311: 45 39 d1 cmp %r10d,%r9d - 66342314: 74 59 je 6634236f - 66342316: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634231a: 44 89 ce mov %r9d,%esi - 6634231d: 44 29 d6 sub %r10d,%esi - 66342320: 45 31 d2 xor %r10d,%r10d - 66342323: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66342327: 01 33 add %esi,(%rbx) - 66342329: 44 89 4a 1c mov %r9d,0x1c(%rdx) - 6634232d: 8b 1b mov (%rbx),%ebx - 6634232f: 4c 8b 48 38 mov 0x38(%rax),%r9 - 66342333: 85 db test %ebx,%ebx - 66342335: 41 0f 9f c2 setg %r10b - 66342339: 45 3b 11 cmp (%r9),%r10d - 6634233c: 74 31 je 6634236f - 6634233e: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342342: 4d 8b 49 38 mov 0x38(%r9),%r9 - 66342346: 45 8b 11 mov (%r9),%r10d - 66342349: 45 85 d2 test %r10d,%r10d - 6634234c: 75 21 jne 6634236f - 6634234e: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342352: 4d 8b 51 38 mov 0x38(%r9),%r10 - 66342356: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634235a: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342361: 4d 63 08 movslq (%r8),%r9 - 66342364: 41 8d 59 01 lea 0x1(%r9),%ebx - 66342368: 41 89 18 mov %ebx,(%r8) - 6634236b: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 6634236f: 4c 8b 48 10 mov 0x10(%rax),%r9 - 66342373: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66342377: 45 8b 09 mov (%r9),%r9d - 6634237a: 45 39 d1 cmp %r10d,%r9d - 6634237d: 74 5a je 663423d9 - 6634237f: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342383: 44 89 ce mov %r9d,%esi - 66342386: 44 29 d6 sub %r10d,%esi - 66342389: 45 31 d2 xor %r10d,%r10d - 6634238c: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66342390: 01 33 add %esi,(%rbx) - 66342392: 44 89 4a 20 mov %r9d,0x20(%rdx) - 66342396: 44 8b 0b mov (%rbx),%r9d - 66342399: 45 85 c9 test %r9d,%r9d - 6634239c: 4c 8b 48 40 mov 0x40(%rax),%r9 - 663423a0: 41 0f 9f c2 setg %r10b - 663423a4: 45 3b 11 cmp (%r9),%r10d - 663423a7: 74 30 je 663423d9 - 663423a9: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663423ad: 4d 8b 49 40 mov 0x40(%r9),%r9 - 663423b1: 41 8b 31 mov (%r9),%esi - 663423b4: 85 f6 test %esi,%esi - 663423b6: 75 21 jne 663423d9 - 663423b8: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663423bc: 4d 8b 51 40 mov 0x40(%r9),%r10 - 663423c0: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663423c4: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663423cb: 4d 63 08 movslq (%r8),%r9 - 663423ce: 41 8d 59 01 lea 0x1(%r9),%ebx - 663423d2: 41 89 18 mov %ebx,(%r8) - 663423d5: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663423d9: 4c 8b 48 18 mov 0x18(%rax),%r9 - 663423dd: 44 8b 52 24 mov 0x24(%rdx),%r10d - 663423e1: 45 8b 09 mov (%r9),%r9d - 663423e4: 45 39 d1 cmp %r10d,%r9d - 663423e7: 74 59 je 66342442 - 663423e9: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663423ed: 44 89 ce mov %r9d,%esi - 663423f0: 44 29 d6 sub %r10d,%esi - 663423f3: 45 31 d2 xor %r10d,%r10d - 663423f6: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663423fa: 01 33 add %esi,(%rbx) - 663423fc: 44 89 4a 24 mov %r9d,0x24(%rdx) - 66342400: 8b 1b mov (%rbx),%ebx - 66342402: 4c 8b 48 48 mov 0x48(%rax),%r9 - 66342406: 85 db test %ebx,%ebx - 66342408: 41 0f 9f c2 setg %r10b - 6634240c: 45 3b 11 cmp (%r9),%r10d - 6634240f: 74 31 je 66342442 - 66342411: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342415: 4d 8b 49 48 mov 0x48(%r9),%r9 - 66342419: 45 8b 11 mov (%r9),%r10d - 6634241c: 45 85 d2 test %r10d,%r10d - 6634241f: 75 21 jne 66342442 - 66342421: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342425: 4d 8b 51 48 mov 0x48(%r9),%r10 - 66342429: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634242d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342434: 4d 63 08 movslq (%r8),%r9 - 66342437: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634243b: 41 89 18 mov %ebx,(%r8) - 6634243e: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342442: 4c 8b 48 20 mov 0x20(%rax),%r9 - 66342446: 44 8b 52 28 mov 0x28(%rdx),%r10d - 6634244a: 45 8b 09 mov (%r9),%r9d - 6634244d: 45 39 d1 cmp %r10d,%r9d - 66342450: 74 5a je 663424ac - 66342452: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342456: 44 89 ce mov %r9d,%esi - 66342459: 44 29 d6 sub %r10d,%esi - 6634245c: 45 31 d2 xor %r10d,%r10d - 6634245f: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66342463: 01 33 add %esi,(%rbx) - 66342465: 44 89 4a 28 mov %r9d,0x28(%rdx) - 66342469: 44 8b 0b mov (%rbx),%r9d - 6634246c: 45 85 c9 test %r9d,%r9d - 6634246f: 4c 8b 48 50 mov 0x50(%rax),%r9 - 66342473: 41 0f 9f c2 setg %r10b - 66342477: 45 3b 11 cmp (%r9),%r10d - 6634247a: 74 30 je 663424ac - 6634247c: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342480: 4d 8b 49 50 mov 0x50(%r9),%r9 - 66342484: 41 8b 31 mov (%r9),%esi - 66342487: 85 f6 test %esi,%esi - 66342489: 75 21 jne 663424ac - 6634248b: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634248f: 4d 8b 51 50 mov 0x50(%r9),%r10 - 66342493: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 66342497: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634249e: 4d 63 08 movslq (%r8),%r9 - 663424a1: 41 8d 59 01 lea 0x1(%r9),%ebx - 663424a5: 41 89 18 mov %ebx,(%r8) - 663424a8: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663424ac: 4c 8b 48 28 mov 0x28(%rax),%r9 - 663424b0: 44 8b 52 2c mov 0x2c(%rdx),%r10d - 663424b4: 45 8b 09 mov (%r9),%r9d - 663424b7: 45 39 d1 cmp %r10d,%r9d - 663424ba: 74 59 je 66342515 - 663424bc: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663424c0: 44 89 ce mov %r9d,%esi - 663424c3: 44 29 d6 sub %r10d,%esi - 663424c6: 45 31 d2 xor %r10d,%r10d - 663424c9: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 663424cd: 01 33 add %esi,(%rbx) - 663424cf: 44 89 4a 2c mov %r9d,0x2c(%rdx) - 663424d3: 8b 1b mov (%rbx),%ebx - 663424d5: 4c 8b 48 58 mov 0x58(%rax),%r9 - 663424d9: 85 db test %ebx,%ebx - 663424db: 41 0f 9f c2 setg %r10b - 663424df: 45 3b 11 cmp (%r9),%r10d - 663424e2: 74 31 je 66342515 - 663424e4: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663424e8: 4d 8b 49 58 mov 0x58(%r9),%r9 - 663424ec: 45 8b 11 mov (%r9),%r10d - 663424ef: 45 85 d2 test %r10d,%r10d - 663424f2: 75 21 jne 66342515 - 663424f4: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663424f8: 4d 8b 51 58 mov 0x58(%r9),%r10 - 663424fc: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 66342500: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342507: 4d 63 08 movslq (%r8),%r9 - 6634250a: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634250e: 41 89 18 mov %ebx,(%r8) - 66342511: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342515: 4c 8b 48 30 mov 0x30(%rax),%r9 - 66342519: 44 8b 52 30 mov 0x30(%rdx),%r10d - 6634251d: 45 8b 09 mov (%r9),%r9d - 66342520: 45 39 d1 cmp %r10d,%r9d - 66342523: 74 54 je 66342579 - 66342525: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342529: 44 89 ce mov %r9d,%esi - 6634252c: 44 29 d6 sub %r10d,%esi - 6634252f: 48 8b 40 60 mov 0x60(%rax),%rax - 66342533: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66342537: 01 33 add %esi,(%rbx) - 66342539: 44 89 4a 30 mov %r9d,0x30(%rdx) - 6634253d: 31 d2 xor %edx,%edx - 6634253f: 44 8b 0b mov (%rbx),%r9d - 66342542: 45 85 c9 test %r9d,%r9d - 66342545: 0f 9f c2 setg %dl - 66342548: 3b 10 cmp (%rax),%edx - 6634254a: 74 2d je 66342579 - 6634254c: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342550: 48 8b 40 60 mov 0x60(%rax),%rax - 66342554: 8b 00 mov (%rax),%eax - 66342556: 85 c0 test %eax,%eax - 66342558: 75 1f jne 66342579 - 6634255a: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634255e: 48 8b 50 60 mov 0x60(%rax),%rdx - 66342562: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342566: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634256c: 49 63 00 movslq (%r8),%rax - 6634256f: 8d 48 01 lea 0x1(%rax),%ecx - 66342572: 41 89 08 mov %ecx,(%r8) - 66342575: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 66342579: 5b pop %rbx - 6634257a: 5e pop %rsi - 6634257b: c3 retq - 6634257c: 0f 1f 40 00 nopl 0x0(%rax) +0000000066342010 : + 66342010: 41 56 push %r14 + 66342012: 57 push %rdi + 66342013: 56 push %rsi + 66342014: 53 push %rbx + 66342015: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342019: 49 8b 82 98 00 00 00 mov 0x98(%r10),%rax + 66342020: 44 8b 18 mov (%rax),%r11d + 66342023: 45 85 db test %r11d,%r11d + 66342026: 0f 84 90 00 00 00 je 663420bc + 6634202c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342030: 31 c0 xor %eax,%eax + 66342032: 48 8b 3d e7 58 01 00 mov 0x158e7(%rip),%rdi # 66357920 + 66342039: 48 8b 35 f0 58 01 00 mov 0x158f0(%rip),%rsi # 66357930 + 66342040: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342045: 44 8b 44 03 28 mov 0x28(%rbx,%rax,1),%r8d + 6634204a: 8b 12 mov (%rdx),%edx + 6634204c: 44 39 c2 cmp %r8d,%edx + 6634204f: 74 61 je 663420b2 + 66342051: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342055: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342059: 41 89 d6 mov %edx,%r14d + 6634205c: 45 29 c6 sub %r8d,%r14d + 6634205f: 45 31 c0 xor %r8d,%r8d + 66342062: 4f 8b 4c 19 50 mov 0x50(%r9,%r11,1),%r9 + 66342067: 45 01 31 add %r14d,(%r9) + 6634206a: 89 54 03 28 mov %edx,0x28(%rbx,%rax,1) + 6634206e: 45 8b 09 mov (%r9),%r9d + 66342071: 49 8b 54 42 50 mov 0x50(%r10,%rax,2),%rdx + 66342076: 45 85 c9 test %r9d,%r9d + 66342079: 41 0f 9f c0 setg %r8b + 6634207d: 44 3b 02 cmp (%rdx),%r8d + 66342080: 74 30 je 663420b2 + 66342082: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342086: 4a 8b 54 1a 50 mov 0x50(%rdx,%r11,1),%rdx + 6634208b: 8b 12 mov (%rdx),%edx + 6634208d: 85 d2 test %edx,%edx + 6634208f: 75 21 jne 663420b2 + 66342091: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342095: 4e 8b 44 1a 50 mov 0x50(%rdx,%r11,1),%r8 + 6634209a: 49 8b 50 10 mov 0x10(%r8),%rdx + 6634209e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663420a4: 48 63 16 movslq (%rsi),%rdx + 663420a7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663420ab: 44 89 0e mov %r9d,(%rsi) + 663420ae: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663420b2: 48 83 c0 04 add $0x4,%rax + 663420b6: 48 83 f8 24 cmp $0x24,%rax + 663420ba: 75 84 jne 66342040 + 663420bc: 5b pop %rbx + 663420bd: 5e pop %rsi + 663420be: 5f pop %rdi + 663420bf: 41 5e pop %r14 + 663420c1: c3 retq + 663420c2: 0f 1f 40 00 nopl 0x0(%rax) + 663420c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663420cd: 00 00 00 -0000000066342580 : - 66342580: 56 push %rsi - 66342581: 53 push %rbx - 66342582: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342586: 48 8b 50 58 mov 0x58(%rax),%rdx - 6634258a: 44 8b 0a mov (%rdx),%r9d - 6634258d: 45 85 c9 test %r9d,%r9d - 66342590: 0f 84 a4 01 00 00 je 6634273a - 66342596: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634259a: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634259e: 4c 8b 1d 7b 53 01 00 mov 0x1537b(%rip),%r11 # 66357920 - 663425a5: 4c 8b 0d 84 53 01 00 mov 0x15384(%rip),%r9 # 66357930 - 663425ac: 44 8b 52 18 mov 0x18(%rdx),%r10d - 663425b0: 45 8b 00 mov (%r8),%r8d - 663425b3: 45 39 d0 cmp %r10d,%r8d - 663425b6: 74 3d je 663425f5 - 663425b8: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663425bc: 44 89 c6 mov %r8d,%esi - 663425bf: 44 29 d6 sub %r10d,%esi - 663425c2: 45 31 d2 xor %r10d,%r10d - 663425c5: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 663425c9: 01 33 add %esi,(%rbx) - 663425cb: 44 89 42 18 mov %r8d,0x18(%rdx) - 663425cf: 44 8b 03 mov (%rbx),%r8d - 663425d2: 45 85 c0 test %r8d,%r8d - 663425d5: 4c 8b 40 30 mov 0x30(%rax),%r8 - 663425d9: 41 0f 9f c2 setg %r10b - 663425dd: 45 3b 10 cmp (%r8),%r10d - 663425e0: 74 13 je 663425f5 - 663425e2: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663425e6: 4d 8b 40 30 mov 0x30(%r8),%r8 - 663425ea: 41 8b 30 mov (%r8),%esi - 663425ed: 85 f6 test %esi,%esi - 663425ef: 0f 84 db 01 00 00 je 663427d0 - 663425f5: 4c 8b 40 10 mov 0x10(%rax),%r8 - 663425f9: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 663425fd: 45 8b 00 mov (%r8),%r8d - 66342600: 45 39 d0 cmp %r10d,%r8d - 66342603: 74 3c je 66342641 - 66342605: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342609: 44 89 c6 mov %r8d,%esi - 6634260c: 44 29 d6 sub %r10d,%esi - 6634260f: 45 31 d2 xor %r10d,%r10d - 66342612: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66342616: 01 33 add %esi,(%rbx) - 66342618: 44 89 42 1c mov %r8d,0x1c(%rdx) - 6634261c: 8b 1b mov (%rbx),%ebx - 6634261e: 4c 8b 40 38 mov 0x38(%rax),%r8 - 66342622: 85 db test %ebx,%ebx - 66342624: 41 0f 9f c2 setg %r10b - 66342628: 45 3b 10 cmp (%r8),%r10d - 6634262b: 74 14 je 66342641 - 6634262d: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342631: 4d 8b 40 38 mov 0x38(%r8),%r8 - 66342635: 45 8b 10 mov (%r8),%r10d - 66342638: 45 85 d2 test %r10d,%r10d - 6634263b: 0f 84 5f 01 00 00 je 663427a0 - 66342641: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342645: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66342649: 45 8b 00 mov (%r8),%r8d - 6634264c: 45 39 d0 cmp %r10d,%r8d - 6634264f: 74 3d je 6634268e - 66342651: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342655: 44 89 c6 mov %r8d,%esi - 66342658: 44 29 d6 sub %r10d,%esi - 6634265b: 45 31 d2 xor %r10d,%r10d - 6634265e: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66342662: 01 33 add %esi,(%rbx) - 66342664: 44 89 42 20 mov %r8d,0x20(%rdx) - 66342668: 44 8b 03 mov (%rbx),%r8d - 6634266b: 45 85 c0 test %r8d,%r8d - 6634266e: 4c 8b 40 40 mov 0x40(%rax),%r8 - 66342672: 41 0f 9f c2 setg %r10b - 66342676: 45 3b 10 cmp (%r8),%r10d - 66342679: 74 13 je 6634268e - 6634267b: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634267f: 4d 8b 40 40 mov 0x40(%r8),%r8 - 66342683: 41 8b 30 mov (%r8),%esi - 66342686: 85 f6 test %esi,%esi - 66342688: 0f 84 e2 00 00 00 je 66342770 - 6634268e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 66342692: 44 8b 52 24 mov 0x24(%rdx),%r10d - 66342696: 45 8b 00 mov (%r8),%r8d - 66342699: 45 39 d0 cmp %r10d,%r8d - 6634269c: 74 38 je 663426d6 - 6634269e: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663426a2: 44 89 c6 mov %r8d,%esi - 663426a5: 44 29 d6 sub %r10d,%esi - 663426a8: 45 31 d2 xor %r10d,%r10d - 663426ab: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663426af: 01 33 add %esi,(%rbx) - 663426b1: 44 89 42 24 mov %r8d,0x24(%rdx) - 663426b5: 8b 1b mov (%rbx),%ebx - 663426b7: 4c 8b 40 48 mov 0x48(%rax),%r8 - 663426bb: 85 db test %ebx,%ebx - 663426bd: 41 0f 9f c2 setg %r10b - 663426c1: 45 3b 10 cmp (%r8),%r10d - 663426c4: 74 10 je 663426d6 - 663426c6: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663426ca: 4d 8b 40 48 mov 0x48(%r8),%r8 - 663426ce: 45 8b 10 mov (%r8),%r10d - 663426d1: 45 85 d2 test %r10d,%r10d - 663426d4: 74 6a je 66342740 - 663426d6: 4c 8b 40 28 mov 0x28(%rax),%r8 - 663426da: 44 8b 52 28 mov 0x28(%rdx),%r10d - 663426de: 45 8b 00 mov (%r8),%r8d - 663426e1: 45 39 d0 cmp %r10d,%r8d - 663426e4: 74 54 je 6634273a - 663426e6: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663426ea: 44 89 c6 mov %r8d,%esi - 663426ed: 44 29 d6 sub %r10d,%esi - 663426f0: 48 8b 40 50 mov 0x50(%rax),%rax - 663426f4: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 663426f8: 01 33 add %esi,(%rbx) - 663426fa: 44 89 42 28 mov %r8d,0x28(%rdx) - 663426fe: 31 d2 xor %edx,%edx - 66342700: 44 8b 03 mov (%rbx),%r8d - 66342703: 45 85 c0 test %r8d,%r8d - 66342706: 0f 9f c2 setg %dl - 66342709: 3b 10 cmp (%rax),%edx - 6634270b: 74 2d je 6634273a - 6634270d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342711: 48 8b 40 50 mov 0x50(%rax),%rax - 66342715: 8b 00 mov (%rax),%eax - 66342717: 85 c0 test %eax,%eax - 66342719: 75 1f jne 6634273a - 6634271b: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634271f: 48 8b 50 50 mov 0x50(%rax),%rdx - 66342723: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342727: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634272d: 49 63 01 movslq (%r9),%rax - 66342730: 8d 48 01 lea 0x1(%rax),%ecx - 66342733: 41 89 09 mov %ecx,(%r9) - 66342736: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 6634273a: 5b pop %rbx - 6634273b: 5e pop %rsi - 6634273c: c3 retq - 6634273d: 0f 1f 00 nopl (%rax) - 66342740: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342744: 4d 8b 50 48 mov 0x48(%r8),%r10 - 66342748: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634274c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342753: 4d 63 01 movslq (%r9),%r8 - 66342756: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634275a: 41 89 19 mov %ebx,(%r9) - 6634275d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 66342761: e9 70 ff ff ff jmpq 663426d6 - 66342766: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634276d: 00 00 00 - 66342770: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342774: 4d 8b 50 40 mov 0x40(%r8),%r10 - 66342778: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634277c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342783: 4d 63 01 movslq (%r9),%r8 - 66342786: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634278a: 41 89 19 mov %ebx,(%r9) - 6634278d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 66342791: e9 f8 fe ff ff jmpq 6634268e - 66342796: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634279d: 00 00 00 - 663427a0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663427a4: 4d 8b 50 38 mov 0x38(%r8),%r10 - 663427a8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663427ac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663427b3: 4d 63 01 movslq (%r9),%r8 - 663427b6: 41 8d 58 01 lea 0x1(%r8),%ebx - 663427ba: 41 89 19 mov %ebx,(%r9) - 663427bd: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 663427c1: e9 7b fe ff ff jmpq 66342641 - 663427c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663427cd: 00 00 00 - 663427d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663427d4: 4d 8b 50 30 mov 0x30(%r8),%r10 - 663427d8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663427dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663427e3: 4d 63 01 movslq (%r9),%r8 - 663427e6: 41 8d 58 01 lea 0x1(%r8),%ebx - 663427ea: 41 89 19 mov %ebx,(%r9) - 663427ed: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 663427f1: e9 ff fd ff ff jmpq 663425f5 - 663427f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663427fd: 00 00 00 +00000000663420d0 : + 663420d0: 41 56 push %r14 + 663420d2: 57 push %rdi + 663420d3: 56 push %rsi + 663420d4: 53 push %rbx + 663420d5: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 663420d9: 49 8b 82 88 00 00 00 mov 0x88(%r10),%rax + 663420e0: 44 8b 18 mov (%rax),%r11d + 663420e3: 45 85 db test %r11d,%r11d + 663420e6: 0f 84 90 00 00 00 je 6634217c + 663420ec: 48 8b 59 08 mov 0x8(%rcx),%rbx + 663420f0: 31 c0 xor %eax,%eax + 663420f2: 48 8b 3d 27 58 01 00 mov 0x15827(%rip),%rdi # 66357920 + 663420f9: 48 8b 35 30 58 01 00 mov 0x15830(%rip),%rsi # 66357930 + 66342100: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342105: 44 8b 44 03 24 mov 0x24(%rbx,%rax,1),%r8d + 6634210a: 8b 12 mov (%rdx),%edx + 6634210c: 44 39 c2 cmp %r8d,%edx + 6634210f: 74 61 je 66342172 + 66342111: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342115: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342119: 41 89 d6 mov %edx,%r14d + 6634211c: 45 29 c6 sub %r8d,%r14d + 6634211f: 45 31 c0 xor %r8d,%r8d + 66342122: 4f 8b 4c 19 48 mov 0x48(%r9,%r11,1),%r9 + 66342127: 45 01 31 add %r14d,(%r9) + 6634212a: 89 54 03 24 mov %edx,0x24(%rbx,%rax,1) + 6634212e: 45 8b 09 mov (%r9),%r9d + 66342131: 49 8b 54 42 48 mov 0x48(%r10,%rax,2),%rdx + 66342136: 45 85 c9 test %r9d,%r9d + 66342139: 41 0f 9f c0 setg %r8b + 6634213d: 44 3b 02 cmp (%rdx),%r8d + 66342140: 74 30 je 66342172 + 66342142: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342146: 4a 8b 54 1a 48 mov 0x48(%rdx,%r11,1),%rdx + 6634214b: 8b 12 mov (%rdx),%edx + 6634214d: 85 d2 test %edx,%edx + 6634214f: 75 21 jne 66342172 + 66342151: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342155: 4e 8b 44 1a 48 mov 0x48(%rdx,%r11,1),%r8 + 6634215a: 49 8b 50 10 mov 0x10(%r8),%rdx + 6634215e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342164: 48 63 16 movslq (%rsi),%rdx + 66342167: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 6634216b: 44 89 0e mov %r9d,(%rsi) + 6634216e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342172: 48 83 c0 04 add $0x4,%rax + 66342176: 48 83 f8 20 cmp $0x20,%rax + 6634217a: 75 84 jne 66342100 + 6634217c: 5b pop %rbx + 6634217d: 5e pop %rsi + 6634217e: 5f pop %rdi + 6634217f: 41 5e pop %r14 + 66342181: c3 retq + 66342182: 0f 1f 40 00 nopl 0x0(%rax) + 66342186: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634218d: 00 00 00 -0000000066342800 : - 66342800: 56 push %rsi - 66342801: 53 push %rbx - 66342802: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342806: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634280a: 8b 1a mov (%rdx),%ebx - 6634280c: 85 db test %ebx,%ebx - 6634280e: 0f 84 ba 01 00 00 je 663429ce - 66342814: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342818: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634281c: 48 8b 1d fd 50 01 00 mov 0x150fd(%rip),%rbx # 66357920 - 66342823: 4c 8b 0d 06 51 01 00 mov 0x15106(%rip),%r9 # 66357930 - 6634282a: 44 8b 52 14 mov 0x14(%rdx),%r10d - 6634282e: 45 8b 00 mov (%r8),%r8d - 66342831: 45 39 d0 cmp %r10d,%r8d - 66342834: 74 5c je 66342892 - 66342836: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634283a: 44 89 c6 mov %r8d,%esi - 6634283d: 44 29 d6 sub %r10d,%esi - 66342840: 45 31 d2 xor %r10d,%r10d - 66342843: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66342847: 41 01 33 add %esi,(%r11) - 6634284a: 44 89 42 14 mov %r8d,0x14(%rdx) - 6634284e: 45 8b 1b mov (%r11),%r11d - 66342851: 4c 8b 40 28 mov 0x28(%rax),%r8 - 66342855: 45 85 db test %r11d,%r11d - 66342858: 41 0f 9f c2 setg %r10b - 6634285c: 45 3b 10 cmp (%r8),%r10d - 6634285f: 74 31 je 66342892 - 66342861: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342865: 4d 8b 40 28 mov 0x28(%r8),%r8 - 66342869: 45 8b 10 mov (%r8),%r10d - 6634286c: 45 85 d2 test %r10d,%r10d - 6634286f: 75 21 jne 66342892 - 66342871: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342875: 4d 8b 50 28 mov 0x28(%r8),%r10 - 66342879: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634287d: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342884: 4d 63 01 movslq (%r9),%r8 - 66342887: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634288b: 45 89 19 mov %r11d,(%r9) - 6634288e: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 66342892: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66342896: 44 8b 52 18 mov 0x18(%rdx),%r10d - 6634289a: 45 8b 00 mov (%r8),%r8d - 6634289d: 45 39 d0 cmp %r10d,%r8d - 663428a0: 74 5b je 663428fd - 663428a2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663428a6: 44 89 c6 mov %r8d,%esi - 663428a9: 44 29 d6 sub %r10d,%esi - 663428ac: 45 31 d2 xor %r10d,%r10d - 663428af: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 663428b3: 41 01 33 add %esi,(%r11) - 663428b6: 44 89 42 18 mov %r8d,0x18(%rdx) - 663428ba: 45 8b 03 mov (%r11),%r8d - 663428bd: 45 85 c0 test %r8d,%r8d - 663428c0: 4c 8b 40 30 mov 0x30(%rax),%r8 - 663428c4: 41 0f 9f c2 setg %r10b - 663428c8: 45 3b 10 cmp (%r8),%r10d - 663428cb: 74 30 je 663428fd - 663428cd: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663428d1: 4d 8b 40 30 mov 0x30(%r8),%r8 - 663428d5: 41 8b 30 mov (%r8),%esi - 663428d8: 85 f6 test %esi,%esi - 663428da: 75 21 jne 663428fd - 663428dc: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663428e0: 4d 8b 50 30 mov 0x30(%r8),%r10 - 663428e4: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663428e8: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663428ef: 4d 63 01 movslq (%r9),%r8 - 663428f2: 45 8d 58 01 lea 0x1(%r8),%r11d - 663428f6: 45 89 19 mov %r11d,(%r9) - 663428f9: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 663428fd: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342901: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 66342905: 45 8b 00 mov (%r8),%r8d - 66342908: 45 39 d0 cmp %r10d,%r8d - 6634290b: 74 5c je 66342969 - 6634290d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342911: 44 89 c6 mov %r8d,%esi - 66342914: 44 29 d6 sub %r10d,%esi - 66342917: 45 31 d2 xor %r10d,%r10d - 6634291a: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 6634291e: 41 01 33 add %esi,(%r11) - 66342921: 44 89 42 1c mov %r8d,0x1c(%rdx) - 66342925: 45 8b 1b mov (%r11),%r11d - 66342928: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634292c: 45 85 db test %r11d,%r11d - 6634292f: 41 0f 9f c2 setg %r10b - 66342933: 45 3b 10 cmp (%r8),%r10d - 66342936: 74 31 je 66342969 - 66342938: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634293c: 4d 8b 40 38 mov 0x38(%r8),%r8 - 66342940: 45 8b 10 mov (%r8),%r10d - 66342943: 45 85 d2 test %r10d,%r10d - 66342946: 75 21 jne 66342969 - 66342948: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634294c: 4d 8b 50 38 mov 0x38(%r8),%r10 - 66342950: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66342954: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634295b: 4d 63 01 movslq (%r9),%r8 - 6634295e: 45 8d 58 01 lea 0x1(%r8),%r11d - 66342962: 45 89 19 mov %r11d,(%r9) - 66342965: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 66342969: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634296d: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66342971: 45 8b 00 mov (%r8),%r8d - 66342974: 45 39 d0 cmp %r10d,%r8d - 66342977: 74 55 je 663429ce - 66342979: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634297d: 44 89 c6 mov %r8d,%esi - 66342980: 44 29 d6 sub %r10d,%esi - 66342983: 48 8b 40 40 mov 0x40(%rax),%rax - 66342987: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 6634298b: 41 01 33 add %esi,(%r11) - 6634298e: 44 89 42 20 mov %r8d,0x20(%rdx) - 66342992: 31 d2 xor %edx,%edx - 66342994: 45 8b 03 mov (%r11),%r8d - 66342997: 45 85 c0 test %r8d,%r8d - 6634299a: 0f 9f c2 setg %dl - 6634299d: 3b 10 cmp (%rax),%edx - 6634299f: 74 2d je 663429ce - 663429a1: 48 8b 41 20 mov 0x20(%rcx),%rax - 663429a5: 48 8b 40 40 mov 0x40(%rax),%rax - 663429a9: 8b 00 mov (%rax),%eax - 663429ab: 85 c0 test %eax,%eax - 663429ad: 75 1f jne 663429ce - 663429af: 48 8b 41 28 mov 0x28(%rcx),%rax - 663429b3: 48 8b 50 40 mov 0x40(%rax),%rdx - 663429b7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663429bb: c7 00 01 00 00 00 movl $0x1,(%rax) - 663429c1: 49 63 01 movslq (%r9),%rax - 663429c4: 8d 48 01 lea 0x1(%rax),%ecx - 663429c7: 41 89 09 mov %ecx,(%r9) - 663429ca: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 663429ce: 5b pop %rbx - 663429cf: 5e pop %rsi - 663429d0: c3 retq - 663429d1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663429d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663429dd: 00 00 00 +0000000066342190 : + 66342190: 56 push %rsi + 66342191: 53 push %rbx + 66342192: 48 8b 41 10 mov 0x10(%rcx),%rax + 66342196: 48 8b 50 78 mov 0x78(%rax),%rdx + 6634219a: 44 8b 12 mov (%rdx),%r10d + 6634219d: 45 85 d2 test %r10d,%r10d + 663421a0: 0f 84 3d 02 00 00 je 663423e3 + 663421a6: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663421aa: 4c 8b 48 08 mov 0x8(%rax),%r9 + 663421ae: 4c 8b 1d 6b 57 01 00 mov 0x1576b(%rip),%r11 # 66357920 + 663421b5: 4c 8b 05 74 57 01 00 mov 0x15774(%rip),%r8 # 66357930 + 663421bc: 44 8b 52 20 mov 0x20(%rdx),%r10d + 663421c0: 45 8b 09 mov (%r9),%r9d + 663421c3: 45 39 d1 cmp %r10d,%r9d + 663421c6: 74 3d je 66342205 + 663421c8: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663421cc: 44 89 ce mov %r9d,%esi + 663421cf: 44 29 d6 sub %r10d,%esi + 663421d2: 45 31 d2 xor %r10d,%r10d + 663421d5: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 663421d9: 01 33 add %esi,(%rbx) + 663421db: 44 89 4a 20 mov %r9d,0x20(%rdx) + 663421df: 44 8b 0b mov (%rbx),%r9d + 663421e2: 45 85 c9 test %r9d,%r9d + 663421e5: 4c 8b 48 40 mov 0x40(%rax),%r9 + 663421e9: 41 0f 9f c2 setg %r10b + 663421ed: 45 3b 11 cmp (%r9),%r10d + 663421f0: 74 13 je 66342205 + 663421f2: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663421f6: 4d 8b 49 40 mov 0x40(%r9),%r9 + 663421fa: 41 8b 31 mov (%r9),%esi + 663421fd: 85 f6 test %esi,%esi + 663421ff: 0f 84 db 02 00 00 je 663424e0 + 66342205: 4c 8b 48 10 mov 0x10(%rax),%r9 + 66342209: 44 8b 52 24 mov 0x24(%rdx),%r10d + 6634220d: 45 8b 09 mov (%r9),%r9d + 66342210: 45 39 d1 cmp %r10d,%r9d + 66342213: 74 3c je 66342251 + 66342215: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342219: 44 89 ce mov %r9d,%esi + 6634221c: 44 29 d6 sub %r10d,%esi + 6634221f: 45 31 d2 xor %r10d,%r10d + 66342222: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 66342226: 01 33 add %esi,(%rbx) + 66342228: 44 89 4a 24 mov %r9d,0x24(%rdx) + 6634222c: 8b 1b mov (%rbx),%ebx + 6634222e: 4c 8b 48 48 mov 0x48(%rax),%r9 + 66342232: 85 db test %ebx,%ebx + 66342234: 41 0f 9f c2 setg %r10b + 66342238: 45 3b 11 cmp (%r9),%r10d + 6634223b: 74 14 je 66342251 + 6634223d: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342241: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66342245: 45 8b 11 mov (%r9),%r10d + 66342248: 45 85 d2 test %r10d,%r10d + 6634224b: 0f 84 5f 02 00 00 je 663424b0 + 66342251: 4c 8b 48 18 mov 0x18(%rax),%r9 + 66342255: 44 8b 52 28 mov 0x28(%rdx),%r10d + 66342259: 45 8b 09 mov (%r9),%r9d + 6634225c: 45 39 d1 cmp %r10d,%r9d + 6634225f: 74 3d je 6634229e + 66342261: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342265: 44 89 ce mov %r9d,%esi + 66342268: 44 29 d6 sub %r10d,%esi + 6634226b: 45 31 d2 xor %r10d,%r10d + 6634226e: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66342272: 01 33 add %esi,(%rbx) + 66342274: 44 89 4a 28 mov %r9d,0x28(%rdx) + 66342278: 44 8b 0b mov (%rbx),%r9d + 6634227b: 45 85 c9 test %r9d,%r9d + 6634227e: 4c 8b 48 50 mov 0x50(%rax),%r9 + 66342282: 41 0f 9f c2 setg %r10b + 66342286: 45 3b 11 cmp (%r9),%r10d + 66342289: 74 13 je 6634229e + 6634228b: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634228f: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66342293: 41 8b 31 mov (%r9),%esi + 66342296: 85 f6 test %esi,%esi + 66342298: 0f 84 e2 01 00 00 je 66342480 + 6634229e: 4c 8b 48 20 mov 0x20(%rax),%r9 + 663422a2: 44 8b 52 2c mov 0x2c(%rdx),%r10d + 663422a6: 45 8b 09 mov (%r9),%r9d + 663422a9: 45 39 d1 cmp %r10d,%r9d + 663422ac: 74 3c je 663422ea + 663422ae: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663422b2: 44 89 ce mov %r9d,%esi + 663422b5: 44 29 d6 sub %r10d,%esi + 663422b8: 45 31 d2 xor %r10d,%r10d + 663422bb: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 663422bf: 01 33 add %esi,(%rbx) + 663422c1: 44 89 4a 2c mov %r9d,0x2c(%rdx) + 663422c5: 8b 1b mov (%rbx),%ebx + 663422c7: 4c 8b 48 58 mov 0x58(%rax),%r9 + 663422cb: 85 db test %ebx,%ebx + 663422cd: 41 0f 9f c2 setg %r10b + 663422d1: 45 3b 11 cmp (%r9),%r10d + 663422d4: 74 14 je 663422ea + 663422d6: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663422da: 4d 8b 49 58 mov 0x58(%r9),%r9 + 663422de: 45 8b 11 mov (%r9),%r10d + 663422e1: 45 85 d2 test %r10d,%r10d + 663422e4: 0f 84 66 01 00 00 je 66342450 + 663422ea: 4c 8b 48 28 mov 0x28(%rax),%r9 + 663422ee: 44 8b 52 30 mov 0x30(%rdx),%r10d + 663422f2: 45 8b 09 mov (%r9),%r9d + 663422f5: 45 39 d1 cmp %r10d,%r9d + 663422f8: 74 3d je 66342337 + 663422fa: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663422fe: 44 89 ce mov %r9d,%esi + 66342301: 44 29 d6 sub %r10d,%esi + 66342304: 45 31 d2 xor %r10d,%r10d + 66342307: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 6634230b: 01 33 add %esi,(%rbx) + 6634230d: 44 89 4a 30 mov %r9d,0x30(%rdx) + 66342311: 44 8b 0b mov (%rbx),%r9d + 66342314: 45 85 c9 test %r9d,%r9d + 66342317: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634231b: 41 0f 9f c2 setg %r10b + 6634231f: 45 3b 11 cmp (%r9),%r10d + 66342322: 74 13 je 66342337 + 66342324: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342328: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634232c: 41 8b 31 mov (%r9),%esi + 6634232f: 85 f6 test %esi,%esi + 66342331: 0f 84 e9 00 00 00 je 66342420 + 66342337: 4c 8b 48 30 mov 0x30(%rax),%r9 + 6634233b: 44 8b 52 34 mov 0x34(%rdx),%r10d + 6634233f: 45 8b 09 mov (%r9),%r9d + 66342342: 45 39 d1 cmp %r10d,%r9d + 66342345: 74 38 je 6634237f + 66342347: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634234b: 44 89 ce mov %r9d,%esi + 6634234e: 44 29 d6 sub %r10d,%esi + 66342351: 45 31 d2 xor %r10d,%r10d + 66342354: 48 8b 5b 68 mov 0x68(%rbx),%rbx + 66342358: 01 33 add %esi,(%rbx) + 6634235a: 44 89 4a 34 mov %r9d,0x34(%rdx) + 6634235e: 8b 1b mov (%rbx),%ebx + 66342360: 4c 8b 48 68 mov 0x68(%rax),%r9 + 66342364: 85 db test %ebx,%ebx + 66342366: 41 0f 9f c2 setg %r10b + 6634236a: 45 3b 11 cmp (%r9),%r10d + 6634236d: 74 10 je 6634237f + 6634236f: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342373: 4d 8b 49 68 mov 0x68(%r9),%r9 + 66342377: 45 8b 11 mov (%r9),%r10d + 6634237a: 45 85 d2 test %r10d,%r10d + 6634237d: 74 71 je 663423f0 + 6634237f: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66342383: 44 8b 52 38 mov 0x38(%rdx),%r10d + 66342387: 45 8b 09 mov (%r9),%r9d + 6634238a: 45 39 d1 cmp %r10d,%r9d + 6634238d: 74 54 je 663423e3 + 6634238f: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342393: 44 89 ce mov %r9d,%esi + 66342396: 44 29 d6 sub %r10d,%esi + 66342399: 48 8b 40 70 mov 0x70(%rax),%rax + 6634239d: 48 8b 5b 70 mov 0x70(%rbx),%rbx + 663423a1: 01 33 add %esi,(%rbx) + 663423a3: 44 89 4a 38 mov %r9d,0x38(%rdx) + 663423a7: 31 d2 xor %edx,%edx + 663423a9: 44 8b 0b mov (%rbx),%r9d + 663423ac: 45 85 c9 test %r9d,%r9d + 663423af: 0f 9f c2 setg %dl + 663423b2: 3b 10 cmp (%rax),%edx + 663423b4: 74 2d je 663423e3 + 663423b6: 48 8b 41 20 mov 0x20(%rcx),%rax + 663423ba: 48 8b 40 70 mov 0x70(%rax),%rax + 663423be: 8b 00 mov (%rax),%eax + 663423c0: 85 c0 test %eax,%eax + 663423c2: 75 1f jne 663423e3 + 663423c4: 48 8b 41 28 mov 0x28(%rcx),%rax + 663423c8: 48 8b 50 70 mov 0x70(%rax),%rdx + 663423cc: 48 8b 42 10 mov 0x10(%rdx),%rax + 663423d0: c7 00 01 00 00 00 movl $0x1,(%rax) + 663423d6: 49 63 00 movslq (%r8),%rax + 663423d9: 8d 48 01 lea 0x1(%rax),%ecx + 663423dc: 41 89 08 mov %ecx,(%r8) + 663423df: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 663423e3: 5b pop %rbx + 663423e4: 5e pop %rsi + 663423e5: c3 retq + 663423e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663423ed: 00 00 00 + 663423f0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663423f4: 4d 8b 51 68 mov 0x68(%r9),%r10 + 663423f8: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663423fc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342403: 4d 63 08 movslq (%r8),%r9 + 66342406: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634240a: 41 89 18 mov %ebx,(%r8) + 6634240d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342411: e9 69 ff ff ff jmpq 6634237f + 66342416: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634241d: 00 00 00 + 66342420: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342424: 4d 8b 51 60 mov 0x60(%r9),%r10 + 66342428: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634242c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342433: 4d 63 08 movslq (%r8),%r9 + 66342436: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634243a: 41 89 18 mov %ebx,(%r8) + 6634243d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342441: e9 f1 fe ff ff jmpq 66342337 + 66342446: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634244d: 00 00 00 + 66342450: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342454: 4d 8b 51 58 mov 0x58(%r9),%r10 + 66342458: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634245c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342463: 4d 63 08 movslq (%r8),%r9 + 66342466: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634246a: 41 89 18 mov %ebx,(%r8) + 6634246d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342471: e9 74 fe ff ff jmpq 663422ea + 66342476: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634247d: 00 00 00 + 66342480: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342484: 4d 8b 51 50 mov 0x50(%r9),%r10 + 66342488: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634248c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342493: 4d 63 08 movslq (%r8),%r9 + 66342496: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634249a: 41 89 18 mov %ebx,(%r8) + 6634249d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663424a1: e9 f8 fd ff ff jmpq 6634229e + 663424a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663424ad: 00 00 00 + 663424b0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663424b4: 4d 8b 51 48 mov 0x48(%r9),%r10 + 663424b8: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663424bc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663424c3: 4d 63 08 movslq (%r8),%r9 + 663424c6: 41 8d 59 01 lea 0x1(%r9),%ebx + 663424ca: 41 89 18 mov %ebx,(%r8) + 663424cd: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663424d1: e9 7b fd ff ff jmpq 66342251 + 663424d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663424dd: 00 00 00 + 663424e0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663424e4: 4d 8b 51 40 mov 0x40(%r9),%r10 + 663424e8: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663424ec: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663424f3: 4d 63 08 movslq (%r8),%r9 + 663424f6: 41 8d 59 01 lea 0x1(%r9),%ebx + 663424fa: 41 89 18 mov %ebx,(%r8) + 663424fd: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342501: e9 ff fc ff ff jmpq 66342205 + 66342506: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634250d: 00 00 00 -00000000663429e0 : - 663429e0: 48 8b 41 10 mov 0x10(%rcx),%rax - 663429e4: 48 8b 50 18 mov 0x18(%rax),%rdx - 663429e8: 44 8b 0a mov (%rdx),%r9d - 663429eb: 45 85 c9 test %r9d,%r9d - 663429ee: 74 77 je 66342a67 - 663429f0: 48 8b 50 08 mov 0x8(%rax),%rdx - 663429f4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 663429f8: 8b 12 mov (%rdx),%edx - 663429fa: 45 8b 48 08 mov 0x8(%r8),%r9d - 663429fe: 41 39 d1 cmp %edx,%r9d - 66342a01: 74 64 je 66342a67 - 66342a03: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342a07: 41 89 d3 mov %edx,%r11d - 66342a0a: 45 29 cb sub %r9d,%r11d - 66342a0d: 48 8b 40 10 mov 0x10(%rax),%rax - 66342a11: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66342a15: 45 01 1a add %r11d,(%r10) - 66342a18: 41 89 50 08 mov %edx,0x8(%r8) - 66342a1c: 31 d2 xor %edx,%edx - 66342a1e: 45 8b 02 mov (%r10),%r8d - 66342a21: 45 85 c0 test %r8d,%r8d - 66342a24: 0f 9f c2 setg %dl - 66342a27: 3b 10 cmp (%rax),%edx - 66342a29: 74 3c je 66342a67 - 66342a2b: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342a2f: 48 8b 40 10 mov 0x10(%rax),%rax - 66342a33: 8b 00 mov (%rax),%eax - 66342a35: 85 c0 test %eax,%eax - 66342a37: 75 2e jne 66342a67 - 66342a39: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342a3d: 48 8b 0d ec 4e 01 00 mov 0x14eec(%rip),%rcx # 66357930 - 66342a44: 4c 8b 05 d5 4e 01 00 mov 0x14ed5(%rip),%r8 # 66357920 - 66342a4b: 48 8b 50 10 mov 0x10(%rax),%rdx - 66342a4f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342a53: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342a59: 48 63 01 movslq (%rcx),%rax - 66342a5c: 44 8d 48 01 lea 0x1(%rax),%r9d - 66342a60: 44 89 09 mov %r9d,(%rcx) - 66342a63: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66342a67: c3 retq - 66342a68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66342a6f: 00 +0000000066342510 : + 66342510: 56 push %rsi + 66342511: 53 push %rbx + 66342512: 48 8b 41 10 mov 0x10(%rcx),%rax + 66342516: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634251a: 8b 32 mov (%rdx),%esi + 6634251c: 85 f6 test %esi,%esi + 6634251e: 0f 84 85 02 00 00 je 663427a9 + 66342524: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66342528: 4c 8b 48 08 mov 0x8(%rax),%r9 + 6634252c: 4c 8b 1d ed 53 01 00 mov 0x153ed(%rip),%r11 # 66357920 + 66342533: 4c 8b 05 f6 53 01 00 mov 0x153f6(%rip),%r8 # 66357930 + 6634253a: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 6634253e: 45 8b 09 mov (%r9),%r9d + 66342541: 45 39 d1 cmp %r10d,%r9d + 66342544: 74 59 je 6634259f + 66342546: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634254a: 44 89 ce mov %r9d,%esi + 6634254d: 44 29 d6 sub %r10d,%esi + 66342550: 45 31 d2 xor %r10d,%r10d + 66342553: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66342557: 01 33 add %esi,(%rbx) + 66342559: 44 89 4a 1c mov %r9d,0x1c(%rdx) + 6634255d: 8b 1b mov (%rbx),%ebx + 6634255f: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66342563: 85 db test %ebx,%ebx + 66342565: 41 0f 9f c2 setg %r10b + 66342569: 45 3b 11 cmp (%r9),%r10d + 6634256c: 74 31 je 6634259f + 6634256e: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342572: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66342576: 45 8b 11 mov (%r9),%r10d + 66342579: 45 85 d2 test %r10d,%r10d + 6634257c: 75 21 jne 6634259f + 6634257e: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342582: 4d 8b 51 38 mov 0x38(%r9),%r10 + 66342586: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634258a: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342591: 4d 63 08 movslq (%r8),%r9 + 66342594: 41 8d 59 01 lea 0x1(%r9),%ebx + 66342598: 41 89 18 mov %ebx,(%r8) + 6634259b: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 6634259f: 4c 8b 48 10 mov 0x10(%rax),%r9 + 663425a3: 44 8b 52 20 mov 0x20(%rdx),%r10d + 663425a7: 45 8b 09 mov (%r9),%r9d + 663425aa: 45 39 d1 cmp %r10d,%r9d + 663425ad: 74 5a je 66342609 + 663425af: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663425b3: 44 89 ce mov %r9d,%esi + 663425b6: 44 29 d6 sub %r10d,%esi + 663425b9: 45 31 d2 xor %r10d,%r10d + 663425bc: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 663425c0: 01 33 add %esi,(%rbx) + 663425c2: 44 89 4a 20 mov %r9d,0x20(%rdx) + 663425c6: 44 8b 0b mov (%rbx),%r9d + 663425c9: 45 85 c9 test %r9d,%r9d + 663425cc: 4c 8b 48 40 mov 0x40(%rax),%r9 + 663425d0: 41 0f 9f c2 setg %r10b + 663425d4: 45 3b 11 cmp (%r9),%r10d + 663425d7: 74 30 je 66342609 + 663425d9: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663425dd: 4d 8b 49 40 mov 0x40(%r9),%r9 + 663425e1: 41 8b 31 mov (%r9),%esi + 663425e4: 85 f6 test %esi,%esi + 663425e6: 75 21 jne 66342609 + 663425e8: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663425ec: 4d 8b 51 40 mov 0x40(%r9),%r10 + 663425f0: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663425f4: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663425fb: 4d 63 08 movslq (%r8),%r9 + 663425fe: 41 8d 59 01 lea 0x1(%r9),%ebx + 66342602: 41 89 18 mov %ebx,(%r8) + 66342605: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342609: 4c 8b 48 18 mov 0x18(%rax),%r9 + 6634260d: 44 8b 52 24 mov 0x24(%rdx),%r10d + 66342611: 45 8b 09 mov (%r9),%r9d + 66342614: 45 39 d1 cmp %r10d,%r9d + 66342617: 74 59 je 66342672 + 66342619: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634261d: 44 89 ce mov %r9d,%esi + 66342620: 44 29 d6 sub %r10d,%esi + 66342623: 45 31 d2 xor %r10d,%r10d + 66342626: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 6634262a: 01 33 add %esi,(%rbx) + 6634262c: 44 89 4a 24 mov %r9d,0x24(%rdx) + 66342630: 8b 1b mov (%rbx),%ebx + 66342632: 4c 8b 48 48 mov 0x48(%rax),%r9 + 66342636: 85 db test %ebx,%ebx + 66342638: 41 0f 9f c2 setg %r10b + 6634263c: 45 3b 11 cmp (%r9),%r10d + 6634263f: 74 31 je 66342672 + 66342641: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342645: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66342649: 45 8b 11 mov (%r9),%r10d + 6634264c: 45 85 d2 test %r10d,%r10d + 6634264f: 75 21 jne 66342672 + 66342651: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342655: 4d 8b 51 48 mov 0x48(%r9),%r10 + 66342659: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634265d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342664: 4d 63 08 movslq (%r8),%r9 + 66342667: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634266b: 41 89 18 mov %ebx,(%r8) + 6634266e: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342672: 4c 8b 48 20 mov 0x20(%rax),%r9 + 66342676: 44 8b 52 28 mov 0x28(%rdx),%r10d + 6634267a: 45 8b 09 mov (%r9),%r9d + 6634267d: 45 39 d1 cmp %r10d,%r9d + 66342680: 74 5a je 663426dc + 66342682: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342686: 44 89 ce mov %r9d,%esi + 66342689: 44 29 d6 sub %r10d,%esi + 6634268c: 45 31 d2 xor %r10d,%r10d + 6634268f: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66342693: 01 33 add %esi,(%rbx) + 66342695: 44 89 4a 28 mov %r9d,0x28(%rdx) + 66342699: 44 8b 0b mov (%rbx),%r9d + 6634269c: 45 85 c9 test %r9d,%r9d + 6634269f: 4c 8b 48 50 mov 0x50(%rax),%r9 + 663426a3: 41 0f 9f c2 setg %r10b + 663426a7: 45 3b 11 cmp (%r9),%r10d + 663426aa: 74 30 je 663426dc + 663426ac: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663426b0: 4d 8b 49 50 mov 0x50(%r9),%r9 + 663426b4: 41 8b 31 mov (%r9),%esi + 663426b7: 85 f6 test %esi,%esi + 663426b9: 75 21 jne 663426dc + 663426bb: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663426bf: 4d 8b 51 50 mov 0x50(%r9),%r10 + 663426c3: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663426c7: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663426ce: 4d 63 08 movslq (%r8),%r9 + 663426d1: 41 8d 59 01 lea 0x1(%r9),%ebx + 663426d5: 41 89 18 mov %ebx,(%r8) + 663426d8: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663426dc: 4c 8b 48 28 mov 0x28(%rax),%r9 + 663426e0: 44 8b 52 2c mov 0x2c(%rdx),%r10d + 663426e4: 45 8b 09 mov (%r9),%r9d + 663426e7: 45 39 d1 cmp %r10d,%r9d + 663426ea: 74 59 je 66342745 + 663426ec: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663426f0: 44 89 ce mov %r9d,%esi + 663426f3: 44 29 d6 sub %r10d,%esi + 663426f6: 45 31 d2 xor %r10d,%r10d + 663426f9: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 663426fd: 01 33 add %esi,(%rbx) + 663426ff: 44 89 4a 2c mov %r9d,0x2c(%rdx) + 66342703: 8b 1b mov (%rbx),%ebx + 66342705: 4c 8b 48 58 mov 0x58(%rax),%r9 + 66342709: 85 db test %ebx,%ebx + 6634270b: 41 0f 9f c2 setg %r10b + 6634270f: 45 3b 11 cmp (%r9),%r10d + 66342712: 74 31 je 66342745 + 66342714: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342718: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634271c: 45 8b 11 mov (%r9),%r10d + 6634271f: 45 85 d2 test %r10d,%r10d + 66342722: 75 21 jne 66342745 + 66342724: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66342728: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634272c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66342730: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66342737: 4d 63 08 movslq (%r8),%r9 + 6634273a: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634273e: 41 89 18 mov %ebx,(%r8) + 66342741: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66342745: 4c 8b 48 30 mov 0x30(%rax),%r9 + 66342749: 44 8b 52 30 mov 0x30(%rdx),%r10d + 6634274d: 45 8b 09 mov (%r9),%r9d + 66342750: 45 39 d1 cmp %r10d,%r9d + 66342753: 74 54 je 663427a9 + 66342755: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342759: 44 89 ce mov %r9d,%esi + 6634275c: 44 29 d6 sub %r10d,%esi + 6634275f: 48 8b 40 60 mov 0x60(%rax),%rax + 66342763: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 66342767: 01 33 add %esi,(%rbx) + 66342769: 44 89 4a 30 mov %r9d,0x30(%rdx) + 6634276d: 31 d2 xor %edx,%edx + 6634276f: 44 8b 0b mov (%rbx),%r9d + 66342772: 45 85 c9 test %r9d,%r9d + 66342775: 0f 9f c2 setg %dl + 66342778: 3b 10 cmp (%rax),%edx + 6634277a: 74 2d je 663427a9 + 6634277c: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342780: 48 8b 40 60 mov 0x60(%rax),%rax + 66342784: 8b 00 mov (%rax),%eax + 66342786: 85 c0 test %eax,%eax + 66342788: 75 1f jne 663427a9 + 6634278a: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634278e: 48 8b 50 60 mov 0x60(%rax),%rdx + 66342792: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342796: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634279c: 49 63 00 movslq (%r8),%rax + 6634279f: 8d 48 01 lea 0x1(%rax),%ecx + 663427a2: 41 89 08 mov %ecx,(%r8) + 663427a5: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 663427a9: 5b pop %rbx + 663427aa: 5e pop %rsi + 663427ab: c3 retq + 663427ac: 0f 1f 40 00 nopl 0x0(%rax) -0000000066342a70 : - 66342a70: 56 push %rsi - 66342a71: 53 push %rbx - 66342a72: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342a76: 48 8b 50 38 mov 0x38(%rax),%rdx - 66342a7a: 44 8b 0a mov (%rdx),%r9d - 66342a7d: 45 85 c9 test %r9d,%r9d - 66342a80: 0f 84 4e 01 00 00 je 66342bd4 - 66342a86: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342a8a: 4c 8b 40 08 mov 0x8(%rax),%r8 - 66342a8e: 48 8b 1d 8b 4e 01 00 mov 0x14e8b(%rip),%rbx # 66357920 - 66342a95: 4c 8b 1d 94 4e 01 00 mov 0x14e94(%rip),%r11 # 66357930 - 66342a9c: 44 8b 4a 10 mov 0x10(%rdx),%r9d - 66342aa0: 45 8b 00 mov (%r8),%r8d - 66342aa3: 45 39 c8 cmp %r9d,%r8d - 66342aa6: 74 5b je 66342b03 - 66342aa8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342aac: 44 89 c6 mov %r8d,%esi - 66342aaf: 44 29 ce sub %r9d,%esi - 66342ab2: 45 31 c9 xor %r9d,%r9d - 66342ab5: 4d 8b 52 20 mov 0x20(%r10),%r10 - 66342ab9: 41 01 32 add %esi,(%r10) - 66342abc: 44 89 42 10 mov %r8d,0x10(%rdx) - 66342ac0: 45 8b 02 mov (%r10),%r8d - 66342ac3: 45 85 c0 test %r8d,%r8d - 66342ac6: 4c 8b 40 20 mov 0x20(%rax),%r8 - 66342aca: 41 0f 9f c1 setg %r9b - 66342ace: 45 3b 08 cmp (%r8),%r9d - 66342ad1: 74 30 je 66342b03 - 66342ad3: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342ad7: 4d 8b 40 20 mov 0x20(%r8),%r8 - 66342adb: 41 8b 30 mov (%r8),%esi - 66342ade: 85 f6 test %esi,%esi - 66342ae0: 75 21 jne 66342b03 - 66342ae2: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342ae6: 4d 8b 48 20 mov 0x20(%r8),%r9 - 66342aea: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342aee: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342af5: 4d 63 03 movslq (%r11),%r8 - 66342af8: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342afc: 45 89 13 mov %r10d,(%r11) - 66342aff: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 66342b03: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66342b07: 44 8b 4a 14 mov 0x14(%rdx),%r9d - 66342b0b: 45 8b 00 mov (%r8),%r8d - 66342b0e: 45 39 c8 cmp %r9d,%r8d - 66342b11: 74 5c je 66342b6f - 66342b13: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342b17: 44 89 c6 mov %r8d,%esi - 66342b1a: 44 29 ce sub %r9d,%esi - 66342b1d: 45 31 c9 xor %r9d,%r9d - 66342b20: 4d 8b 52 28 mov 0x28(%r10),%r10 - 66342b24: 41 01 32 add %esi,(%r10) - 66342b27: 44 89 42 14 mov %r8d,0x14(%rdx) - 66342b2b: 45 8b 12 mov (%r10),%r10d - 66342b2e: 4c 8b 40 28 mov 0x28(%rax),%r8 - 66342b32: 45 85 d2 test %r10d,%r10d - 66342b35: 41 0f 9f c1 setg %r9b - 66342b39: 45 3b 08 cmp (%r8),%r9d - 66342b3c: 74 31 je 66342b6f - 66342b3e: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342b42: 4d 8b 40 28 mov 0x28(%r8),%r8 - 66342b46: 45 8b 08 mov (%r8),%r9d - 66342b49: 45 85 c9 test %r9d,%r9d - 66342b4c: 75 21 jne 66342b6f - 66342b4e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342b52: 4d 8b 48 28 mov 0x28(%r8),%r9 - 66342b56: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342b5a: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342b61: 4d 63 03 movslq (%r11),%r8 - 66342b64: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342b68: 45 89 13 mov %r10d,(%r11) - 66342b6b: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 66342b6f: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342b73: 44 8b 4a 18 mov 0x18(%rdx),%r9d - 66342b77: 45 8b 00 mov (%r8),%r8d - 66342b7a: 45 39 c8 cmp %r9d,%r8d - 66342b7d: 74 55 je 66342bd4 - 66342b7f: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342b83: 44 89 c6 mov %r8d,%esi - 66342b86: 44 29 ce sub %r9d,%esi - 66342b89: 48 8b 40 30 mov 0x30(%rax),%rax - 66342b8d: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66342b91: 41 01 32 add %esi,(%r10) - 66342b94: 44 89 42 18 mov %r8d,0x18(%rdx) - 66342b98: 31 d2 xor %edx,%edx - 66342b9a: 45 8b 02 mov (%r10),%r8d - 66342b9d: 45 85 c0 test %r8d,%r8d - 66342ba0: 0f 9f c2 setg %dl - 66342ba3: 3b 10 cmp (%rax),%edx - 66342ba5: 74 2d je 66342bd4 - 66342ba7: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342bab: 48 8b 40 30 mov 0x30(%rax),%rax - 66342baf: 8b 00 mov (%rax),%eax - 66342bb1: 85 c0 test %eax,%eax - 66342bb3: 75 1f jne 66342bd4 - 66342bb5: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342bb9: 48 8b 50 30 mov 0x30(%rax),%rdx - 66342bbd: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342bc1: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342bc7: 49 63 03 movslq (%r11),%rax - 66342bca: 8d 48 01 lea 0x1(%rax),%ecx - 66342bcd: 41 89 0b mov %ecx,(%r11) - 66342bd0: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66342bd4: 5b pop %rbx - 66342bd5: 5e pop %rsi - 66342bd6: c3 retq - 66342bd7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66342bde: 00 00 +00000000663427b0 : + 663427b0: 56 push %rsi + 663427b1: 53 push %rbx + 663427b2: 48 8b 41 10 mov 0x10(%rcx),%rax + 663427b6: 48 8b 50 58 mov 0x58(%rax),%rdx + 663427ba: 44 8b 0a mov (%rdx),%r9d + 663427bd: 45 85 c9 test %r9d,%r9d + 663427c0: 0f 84 a4 01 00 00 je 6634296a + 663427c6: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663427ca: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663427ce: 4c 8b 1d 4b 51 01 00 mov 0x1514b(%rip),%r11 # 66357920 + 663427d5: 4c 8b 0d 54 51 01 00 mov 0x15154(%rip),%r9 # 66357930 + 663427dc: 44 8b 52 18 mov 0x18(%rdx),%r10d + 663427e0: 45 8b 00 mov (%r8),%r8d + 663427e3: 45 39 d0 cmp %r10d,%r8d + 663427e6: 74 3d je 66342825 + 663427e8: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663427ec: 44 89 c6 mov %r8d,%esi + 663427ef: 44 29 d6 sub %r10d,%esi + 663427f2: 45 31 d2 xor %r10d,%r10d + 663427f5: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 663427f9: 01 33 add %esi,(%rbx) + 663427fb: 44 89 42 18 mov %r8d,0x18(%rdx) + 663427ff: 44 8b 03 mov (%rbx),%r8d + 66342802: 45 85 c0 test %r8d,%r8d + 66342805: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66342809: 41 0f 9f c2 setg %r10b + 6634280d: 45 3b 10 cmp (%r8),%r10d + 66342810: 74 13 je 66342825 + 66342812: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66342816: 4d 8b 40 30 mov 0x30(%r8),%r8 + 6634281a: 41 8b 30 mov (%r8),%esi + 6634281d: 85 f6 test %esi,%esi + 6634281f: 0f 84 db 01 00 00 je 66342a00 + 66342825: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66342829: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 6634282d: 45 8b 00 mov (%r8),%r8d + 66342830: 45 39 d0 cmp %r10d,%r8d + 66342833: 74 3c je 66342871 + 66342835: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342839: 44 89 c6 mov %r8d,%esi + 6634283c: 44 29 d6 sub %r10d,%esi + 6634283f: 45 31 d2 xor %r10d,%r10d + 66342842: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66342846: 01 33 add %esi,(%rbx) + 66342848: 44 89 42 1c mov %r8d,0x1c(%rdx) + 6634284c: 8b 1b mov (%rbx),%ebx + 6634284e: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66342852: 85 db test %ebx,%ebx + 66342854: 41 0f 9f c2 setg %r10b + 66342858: 45 3b 10 cmp (%r8),%r10d + 6634285b: 74 14 je 66342871 + 6634285d: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66342861: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66342865: 45 8b 10 mov (%r8),%r10d + 66342868: 45 85 d2 test %r10d,%r10d + 6634286b: 0f 84 5f 01 00 00 je 663429d0 + 66342871: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66342875: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66342879: 45 8b 00 mov (%r8),%r8d + 6634287c: 45 39 d0 cmp %r10d,%r8d + 6634287f: 74 3d je 663428be + 66342881: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342885: 44 89 c6 mov %r8d,%esi + 66342888: 44 29 d6 sub %r10d,%esi + 6634288b: 45 31 d2 xor %r10d,%r10d + 6634288e: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66342892: 01 33 add %esi,(%rbx) + 66342894: 44 89 42 20 mov %r8d,0x20(%rdx) + 66342898: 44 8b 03 mov (%rbx),%r8d + 6634289b: 45 85 c0 test %r8d,%r8d + 6634289e: 4c 8b 40 40 mov 0x40(%rax),%r8 + 663428a2: 41 0f 9f c2 setg %r10b + 663428a6: 45 3b 10 cmp (%r8),%r10d + 663428a9: 74 13 je 663428be + 663428ab: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663428af: 4d 8b 40 40 mov 0x40(%r8),%r8 + 663428b3: 41 8b 30 mov (%r8),%esi + 663428b6: 85 f6 test %esi,%esi + 663428b8: 0f 84 e2 00 00 00 je 663429a0 + 663428be: 4c 8b 40 20 mov 0x20(%rax),%r8 + 663428c2: 44 8b 52 24 mov 0x24(%rdx),%r10d + 663428c6: 45 8b 00 mov (%r8),%r8d + 663428c9: 45 39 d0 cmp %r10d,%r8d + 663428cc: 74 38 je 66342906 + 663428ce: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663428d2: 44 89 c6 mov %r8d,%esi + 663428d5: 44 29 d6 sub %r10d,%esi + 663428d8: 45 31 d2 xor %r10d,%r10d + 663428db: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 663428df: 01 33 add %esi,(%rbx) + 663428e1: 44 89 42 24 mov %r8d,0x24(%rdx) + 663428e5: 8b 1b mov (%rbx),%ebx + 663428e7: 4c 8b 40 48 mov 0x48(%rax),%r8 + 663428eb: 85 db test %ebx,%ebx + 663428ed: 41 0f 9f c2 setg %r10b + 663428f1: 45 3b 10 cmp (%r8),%r10d + 663428f4: 74 10 je 66342906 + 663428f6: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663428fa: 4d 8b 40 48 mov 0x48(%r8),%r8 + 663428fe: 45 8b 10 mov (%r8),%r10d + 66342901: 45 85 d2 test %r10d,%r10d + 66342904: 74 6a je 66342970 + 66342906: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634290a: 44 8b 52 28 mov 0x28(%rdx),%r10d + 6634290e: 45 8b 00 mov (%r8),%r8d + 66342911: 45 39 d0 cmp %r10d,%r8d + 66342914: 74 54 je 6634296a + 66342916: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634291a: 44 89 c6 mov %r8d,%esi + 6634291d: 44 29 d6 sub %r10d,%esi + 66342920: 48 8b 40 50 mov 0x50(%rax),%rax + 66342924: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66342928: 01 33 add %esi,(%rbx) + 6634292a: 44 89 42 28 mov %r8d,0x28(%rdx) + 6634292e: 31 d2 xor %edx,%edx + 66342930: 44 8b 03 mov (%rbx),%r8d + 66342933: 45 85 c0 test %r8d,%r8d + 66342936: 0f 9f c2 setg %dl + 66342939: 3b 10 cmp (%rax),%edx + 6634293b: 74 2d je 6634296a + 6634293d: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342941: 48 8b 40 50 mov 0x50(%rax),%rax + 66342945: 8b 00 mov (%rax),%eax + 66342947: 85 c0 test %eax,%eax + 66342949: 75 1f jne 6634296a + 6634294b: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634294f: 48 8b 50 50 mov 0x50(%rax),%rdx + 66342953: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342957: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634295d: 49 63 01 movslq (%r9),%rax + 66342960: 8d 48 01 lea 0x1(%rax),%ecx + 66342963: 41 89 09 mov %ecx,(%r9) + 66342966: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 6634296a: 5b pop %rbx + 6634296b: 5e pop %rsi + 6634296c: c3 retq + 6634296d: 0f 1f 00 nopl (%rax) + 66342970: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66342974: 4d 8b 50 48 mov 0x48(%r8),%r10 + 66342978: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634297c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66342983: 4d 63 01 movslq (%r9),%r8 + 66342986: 41 8d 58 01 lea 0x1(%r8),%ebx + 6634298a: 41 89 19 mov %ebx,(%r9) + 6634298d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66342991: e9 70 ff ff ff jmpq 66342906 + 66342996: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634299d: 00 00 00 + 663429a0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663429a4: 4d 8b 50 40 mov 0x40(%r8),%r10 + 663429a8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663429ac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663429b3: 4d 63 01 movslq (%r9),%r8 + 663429b6: 41 8d 58 01 lea 0x1(%r8),%ebx + 663429ba: 41 89 19 mov %ebx,(%r9) + 663429bd: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 663429c1: e9 f8 fe ff ff jmpq 663428be + 663429c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663429cd: 00 00 00 + 663429d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663429d4: 4d 8b 50 38 mov 0x38(%r8),%r10 + 663429d8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663429dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663429e3: 4d 63 01 movslq (%r9),%r8 + 663429e6: 41 8d 58 01 lea 0x1(%r8),%ebx + 663429ea: 41 89 19 mov %ebx,(%r9) + 663429ed: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 663429f1: e9 7b fe ff ff jmpq 66342871 + 663429f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663429fd: 00 00 00 + 66342a00: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66342a04: 4d 8b 50 30 mov 0x30(%r8),%r10 + 66342a08: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66342a0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66342a13: 4d 63 01 movslq (%r9),%r8 + 66342a16: 41 8d 58 01 lea 0x1(%r8),%ebx + 66342a1a: 41 89 19 mov %ebx,(%r9) + 66342a1d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66342a21: e9 ff fd ff ff jmpq 66342825 + 66342a26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342a2d: 00 00 00 -0000000066342be0 : - 66342be0: 56 push %rsi - 66342be1: 53 push %rbx - 66342be2: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342be6: 48 8b 50 28 mov 0x28(%rax),%rdx - 66342bea: 44 8b 1a mov (%rdx),%r11d - 66342bed: 45 85 db test %r11d,%r11d - 66342bf0: 0f 84 e3 00 00 00 je 66342cd9 - 66342bf6: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342bfa: 4c 8b 40 08 mov 0x8(%rax),%r8 - 66342bfe: 48 8b 1d 1b 4d 01 00 mov 0x14d1b(%rip),%rbx # 66357920 - 66342c05: 4c 8b 1d 24 4d 01 00 mov 0x14d24(%rip),%r11 # 66357930 - 66342c0c: 44 8b 4a 0c mov 0xc(%rdx),%r9d - 66342c10: 45 8b 00 mov (%r8),%r8d - 66342c13: 45 39 c8 cmp %r9d,%r8d - 66342c16: 74 5c je 66342c74 - 66342c18: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342c1c: 44 89 c6 mov %r8d,%esi - 66342c1f: 44 29 ce sub %r9d,%esi - 66342c22: 45 31 c9 xor %r9d,%r9d - 66342c25: 4d 8b 52 18 mov 0x18(%r10),%r10 - 66342c29: 41 01 32 add %esi,(%r10) - 66342c2c: 44 89 42 0c mov %r8d,0xc(%rdx) - 66342c30: 45 8b 12 mov (%r10),%r10d - 66342c33: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342c37: 45 85 d2 test %r10d,%r10d - 66342c3a: 41 0f 9f c1 setg %r9b - 66342c3e: 45 3b 08 cmp (%r8),%r9d - 66342c41: 74 31 je 66342c74 - 66342c43: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342c47: 4d 8b 40 18 mov 0x18(%r8),%r8 - 66342c4b: 45 8b 08 mov (%r8),%r9d - 66342c4e: 45 85 c9 test %r9d,%r9d - 66342c51: 75 21 jne 66342c74 - 66342c53: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342c57: 4d 8b 48 18 mov 0x18(%r8),%r9 - 66342c5b: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342c5f: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342c66: 4d 63 03 movslq (%r11),%r8 - 66342c69: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342c6d: 45 89 13 mov %r10d,(%r11) - 66342c70: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 66342c74: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66342c78: 44 8b 4a 10 mov 0x10(%rdx),%r9d - 66342c7c: 45 8b 00 mov (%r8),%r8d - 66342c7f: 45 39 c8 cmp %r9d,%r8d - 66342c82: 74 55 je 66342cd9 - 66342c84: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342c88: 44 89 c6 mov %r8d,%esi - 66342c8b: 44 29 ce sub %r9d,%esi - 66342c8e: 48 8b 40 20 mov 0x20(%rax),%rax - 66342c92: 4d 8b 52 20 mov 0x20(%r10),%r10 - 66342c96: 41 01 32 add %esi,(%r10) - 66342c99: 44 89 42 10 mov %r8d,0x10(%rdx) - 66342c9d: 31 d2 xor %edx,%edx - 66342c9f: 45 8b 02 mov (%r10),%r8d - 66342ca2: 45 85 c0 test %r8d,%r8d - 66342ca5: 0f 9f c2 setg %dl - 66342ca8: 3b 10 cmp (%rax),%edx - 66342caa: 74 2d je 66342cd9 - 66342cac: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342cb0: 48 8b 40 20 mov 0x20(%rax),%rax - 66342cb4: 8b 00 mov (%rax),%eax - 66342cb6: 85 c0 test %eax,%eax - 66342cb8: 75 1f jne 66342cd9 - 66342cba: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342cbe: 48 8b 50 20 mov 0x20(%rax),%rdx - 66342cc2: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342cc6: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342ccc: 49 63 03 movslq (%r11),%rax - 66342ccf: 8d 48 01 lea 0x1(%rax),%ecx - 66342cd2: 41 89 0b mov %ecx,(%r11) - 66342cd5: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66342cd9: 5b pop %rbx - 66342cda: 5e pop %rsi - 66342cdb: c3 retq - 66342cdc: 0f 1f 40 00 nopl 0x0(%rax) +0000000066342a30 : + 66342a30: 56 push %rsi + 66342a31: 53 push %rbx + 66342a32: 48 8b 41 10 mov 0x10(%rcx),%rax + 66342a36: 48 8b 50 48 mov 0x48(%rax),%rdx + 66342a3a: 8b 1a mov (%rdx),%ebx + 66342a3c: 85 db test %ebx,%ebx + 66342a3e: 0f 84 ba 01 00 00 je 66342bfe + 66342a44: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66342a48: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66342a4c: 48 8b 1d cd 4e 01 00 mov 0x14ecd(%rip),%rbx # 66357920 + 66342a53: 4c 8b 0d d6 4e 01 00 mov 0x14ed6(%rip),%r9 # 66357930 + 66342a5a: 44 8b 52 14 mov 0x14(%rdx),%r10d + 66342a5e: 45 8b 00 mov (%r8),%r8d + 66342a61: 45 39 d0 cmp %r10d,%r8d + 66342a64: 74 5c je 66342ac2 + 66342a66: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342a6a: 44 89 c6 mov %r8d,%esi + 66342a6d: 44 29 d6 sub %r10d,%esi + 66342a70: 45 31 d2 xor %r10d,%r10d + 66342a73: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66342a77: 41 01 33 add %esi,(%r11) + 66342a7a: 44 89 42 14 mov %r8d,0x14(%rdx) + 66342a7e: 45 8b 1b mov (%r11),%r11d + 66342a81: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66342a85: 45 85 db test %r11d,%r11d + 66342a88: 41 0f 9f c2 setg %r10b + 66342a8c: 45 3b 10 cmp (%r8),%r10d + 66342a8f: 74 31 je 66342ac2 + 66342a91: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66342a95: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66342a99: 45 8b 10 mov (%r8),%r10d + 66342a9c: 45 85 d2 test %r10d,%r10d + 66342a9f: 75 21 jne 66342ac2 + 66342aa1: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66342aa5: 4d 8b 50 28 mov 0x28(%r8),%r10 + 66342aa9: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66342aad: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66342ab4: 4d 63 01 movslq (%r9),%r8 + 66342ab7: 45 8d 58 01 lea 0x1(%r8),%r11d + 66342abb: 45 89 19 mov %r11d,(%r9) + 66342abe: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66342ac2: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66342ac6: 44 8b 52 18 mov 0x18(%rdx),%r10d + 66342aca: 45 8b 00 mov (%r8),%r8d + 66342acd: 45 39 d0 cmp %r10d,%r8d + 66342ad0: 74 5b je 66342b2d + 66342ad2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342ad6: 44 89 c6 mov %r8d,%esi + 66342ad9: 44 29 d6 sub %r10d,%esi + 66342adc: 45 31 d2 xor %r10d,%r10d + 66342adf: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66342ae3: 41 01 33 add %esi,(%r11) + 66342ae6: 44 89 42 18 mov %r8d,0x18(%rdx) + 66342aea: 45 8b 03 mov (%r11),%r8d + 66342aed: 45 85 c0 test %r8d,%r8d + 66342af0: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66342af4: 41 0f 9f c2 setg %r10b + 66342af8: 45 3b 10 cmp (%r8),%r10d + 66342afb: 74 30 je 66342b2d + 66342afd: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66342b01: 4d 8b 40 30 mov 0x30(%r8),%r8 + 66342b05: 41 8b 30 mov (%r8),%esi + 66342b08: 85 f6 test %esi,%esi + 66342b0a: 75 21 jne 66342b2d + 66342b0c: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66342b10: 4d 8b 50 30 mov 0x30(%r8),%r10 + 66342b14: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66342b18: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66342b1f: 4d 63 01 movslq (%r9),%r8 + 66342b22: 45 8d 58 01 lea 0x1(%r8),%r11d + 66342b26: 45 89 19 mov %r11d,(%r9) + 66342b29: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66342b2d: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66342b31: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 66342b35: 45 8b 00 mov (%r8),%r8d + 66342b38: 45 39 d0 cmp %r10d,%r8d + 66342b3b: 74 5c je 66342b99 + 66342b3d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342b41: 44 89 c6 mov %r8d,%esi + 66342b44: 44 29 d6 sub %r10d,%esi + 66342b47: 45 31 d2 xor %r10d,%r10d + 66342b4a: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66342b4e: 41 01 33 add %esi,(%r11) + 66342b51: 44 89 42 1c mov %r8d,0x1c(%rdx) + 66342b55: 45 8b 1b mov (%r11),%r11d + 66342b58: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66342b5c: 45 85 db test %r11d,%r11d + 66342b5f: 41 0f 9f c2 setg %r10b + 66342b63: 45 3b 10 cmp (%r8),%r10d + 66342b66: 74 31 je 66342b99 + 66342b68: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66342b6c: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66342b70: 45 8b 10 mov (%r8),%r10d + 66342b73: 45 85 d2 test %r10d,%r10d + 66342b76: 75 21 jne 66342b99 + 66342b78: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66342b7c: 4d 8b 50 38 mov 0x38(%r8),%r10 + 66342b80: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66342b84: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66342b8b: 4d 63 01 movslq (%r9),%r8 + 66342b8e: 45 8d 58 01 lea 0x1(%r8),%r11d + 66342b92: 45 89 19 mov %r11d,(%r9) + 66342b95: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66342b99: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66342b9d: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66342ba1: 45 8b 00 mov (%r8),%r8d + 66342ba4: 45 39 d0 cmp %r10d,%r8d + 66342ba7: 74 55 je 66342bfe + 66342ba9: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342bad: 44 89 c6 mov %r8d,%esi + 66342bb0: 44 29 d6 sub %r10d,%esi + 66342bb3: 48 8b 40 40 mov 0x40(%rax),%rax + 66342bb7: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66342bbb: 41 01 33 add %esi,(%r11) + 66342bbe: 44 89 42 20 mov %r8d,0x20(%rdx) + 66342bc2: 31 d2 xor %edx,%edx + 66342bc4: 45 8b 03 mov (%r11),%r8d + 66342bc7: 45 85 c0 test %r8d,%r8d + 66342bca: 0f 9f c2 setg %dl + 66342bcd: 3b 10 cmp (%rax),%edx + 66342bcf: 74 2d je 66342bfe + 66342bd1: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342bd5: 48 8b 40 40 mov 0x40(%rax),%rax + 66342bd9: 8b 00 mov (%rax),%eax + 66342bdb: 85 c0 test %eax,%eax + 66342bdd: 75 1f jne 66342bfe + 66342bdf: 48 8b 41 28 mov 0x28(%rcx),%rax + 66342be3: 48 8b 50 40 mov 0x40(%rax),%rdx + 66342be7: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342beb: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342bf1: 49 63 01 movslq (%r9),%rax + 66342bf4: 8d 48 01 lea 0x1(%rax),%ecx + 66342bf7: 41 89 09 mov %ecx,(%r9) + 66342bfa: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66342bfe: 5b pop %rbx + 66342bff: 5e pop %rsi + 66342c00: c3 retq + 66342c01: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66342c06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342c0d: 00 00 00 -0000000066342ce0 : - 66342ce0: 41 56 push %r14 - 66342ce2: 57 push %rdi - 66342ce3: 56 push %rsi - 66342ce4: 53 push %rbx - 66342ce5: 48 8b 3d 34 4c 01 00 mov 0x14c34(%rip),%rdi # 66357920 - 66342cec: 48 8b 35 3d 4c 01 00 mov 0x14c3d(%rip),%rsi # 66357930 - 66342cf3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66342cf7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342cfb: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 66342d02: 8b 00 mov (%rax),%eax - 66342d04: 85 c0 test %eax,%eax - 66342d06: 0f 84 a4 00 00 00 je 66342db0 - 66342d0c: 31 c0 xor %eax,%eax - 66342d0e: 66 90 xchg %ax,%ax - 66342d10: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66342d15: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d - 66342d1c: 00 - 66342d1d: 45 8b 00 mov (%r8),%r8d - 66342d20: 45 39 c8 cmp %r9d,%r8d - 66342d23: 74 74 je 66342d99 - 66342d25: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342d29: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66342d2d: 45 89 c6 mov %r8d,%r14d - 66342d30: 45 29 ce sub %r9d,%r14d - 66342d33: 45 31 c9 xor %r9d,%r9d - 66342d36: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 - 66342d3d: 00 - 66342d3e: 45 01 32 add %r14d,(%r10) - 66342d41: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) - 66342d48: 00 - 66342d49: 45 8b 32 mov (%r10),%r14d - 66342d4c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 - 66342d53: 00 - 66342d54: 45 85 f6 test %r14d,%r14d - 66342d57: 41 0f 9f c1 setg %r9b - 66342d5b: 45 3b 08 cmp (%r8),%r9d - 66342d5e: 74 39 je 66342d99 - 66342d60: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342d64: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 - 66342d6b: 00 - 66342d6c: 45 8b 10 mov (%r8),%r10d - 66342d6f: 45 85 d2 test %r10d,%r10d - 66342d72: 75 25 jne 66342d99 - 66342d74: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342d78: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 - 66342d7f: 00 - 66342d80: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342d84: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342d8b: 4c 63 06 movslq (%rsi),%r8 - 66342d8e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342d92: 44 89 16 mov %r10d,(%rsi) - 66342d95: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66342d99: 48 83 c0 04 add $0x4,%rax - 66342d9d: 48 3d 00 01 00 00 cmp $0x100,%rax - 66342da3: 0f 85 67 ff ff ff jne 66342d10 - 66342da9: 5b pop %rbx - 66342daa: 5e pop %rsi - 66342dab: 5f pop %rdi - 66342dac: 41 5e pop %r14 - 66342dae: c3 retq - 66342daf: 90 nop - 66342db0: 48 81 c2 04 01 00 00 add $0x104,%rdx - 66342db7: b8 08 02 00 00 mov $0x208,%eax - 66342dbc: 0f 1f 40 00 nopl 0x0(%rax) - 66342dc0: 44 8b 02 mov (%rdx),%r8d - 66342dc3: 45 85 c0 test %r8d,%r8d - 66342dc6: 74 59 je 66342e21 - 66342dc8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66342dcc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66342dd0: 45 29 01 sub %r8d,(%r9) - 66342dd3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66342dd9: 45 8b 09 mov (%r9),%r9d - 66342ddc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66342de0: 45 85 c9 test %r9d,%r9d - 66342de3: 41 0f 9f c1 setg %r9b - 66342de7: 45 0f b6 c9 movzbl %r9b,%r9d - 66342deb: 45 3b 08 cmp (%r8),%r9d - 66342dee: 74 31 je 66342e21 - 66342df0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342df4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66342df8: 45 8b 00 mov (%r8),%r8d - 66342dfb: 45 85 c0 test %r8d,%r8d - 66342dfe: 75 21 jne 66342e21 - 66342e00: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342e04: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66342e08: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342e0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342e13: 4c 63 06 movslq (%rsi),%r8 - 66342e16: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342e1a: 44 89 16 mov %r10d,(%rsi) - 66342e1d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66342e21: 48 83 c0 08 add $0x8,%rax - 66342e25: 48 83 c2 04 add $0x4,%rdx - 66342e29: 48 3d 08 04 00 00 cmp $0x408,%rax - 66342e2f: 75 8f jne 66342dc0 - 66342e31: 5b pop %rbx - 66342e32: 5e pop %rsi - 66342e33: 5f pop %rdi - 66342e34: 41 5e pop %r14 - 66342e36: c3 retq - 66342e37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66342e3e: 00 00 +0000000066342c10 : + 66342c10: 41 56 push %r14 + 66342c12: 41 54 push %r12 + 66342c14: 55 push %rbp + 66342c15: 57 push %rdi + 66342c16: 56 push %rsi + 66342c17: 53 push %rbx + 66342c18: 31 db xor %ebx,%ebx + 66342c1a: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342c1e: 49 89 ca mov %rcx,%r10 + 66342c21: 31 c9 xor %ecx,%ecx + 66342c23: 49 8b 44 cb 08 mov 0x8(%r11,%rcx,8),%rax + 66342c28: 8b 00 mov (%rax),%eax + 66342c2a: d3 e0 shl %cl,%eax + 66342c2c: 48 83 c1 01 add $0x1,%rcx + 66342c30: 01 c3 add %eax,%ebx + 66342c32: 48 83 f9 20 cmp $0x20,%rcx + 66342c36: 75 eb jne 66342c23 + 66342c38: 31 c9 xor %ecx,%ecx + 66342c3a: 31 d2 xor %edx,%edx + 66342c3c: 0f 1f 40 00 nopl 0x0(%rax) + 66342c40: 49 8b 84 cb 08 01 00 mov 0x108(%r11,%rcx,8),%rax + 66342c47: 00 + 66342c48: 8b 00 mov (%rax),%eax + 66342c4a: d3 e0 shl %cl,%eax + 66342c4c: 48 83 c1 01 add $0x1,%rcx + 66342c50: 01 c2 add %eax,%edx + 66342c52: 48 83 f9 20 cmp $0x20,%rcx + 66342c56: 75 e8 jne 66342c40 + 66342c58: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 66342c5f: 01 da add %ebx,%edx + 66342c61: 31 c9 xor %ecx,%ecx + 66342c63: 49 8b 7a 08 mov 0x8(%r10),%rdi + 66342c67: 4c 8b 25 b2 4c 01 00 mov 0x14cb2(%rip),%r12 # 66357920 + 66342c6e: 48 8b 2d bb 4c 01 00 mov 0x14cbb(%rip),%rbp # 66357930 + 66342c75: 8b 18 mov (%rax),%ebx + 66342c77: 01 d3 add %edx,%ebx + 66342c79: 4c 63 c3 movslq %ebx,%r8 + 66342c7c: 0f 1f 40 00 nopl 0x0(%rax) + 66342c80: 8b 94 8f 04 01 00 00 mov 0x104(%rdi,%rcx,4),%edx + 66342c87: 89 d8 mov %ebx,%eax + 66342c89: d3 f8 sar %cl,%eax + 66342c8b: 83 e0 01 and $0x1,%eax + 66342c8e: 39 d0 cmp %edx,%eax + 66342c90: 74 73 je 66342d05 + 66342c92: 4d 8b 4a 18 mov 0x18(%r10),%r9 + 66342c96: 48 8d 34 cd 00 00 00 lea 0x0(,%rcx,8),%rsi + 66342c9d: 00 + 66342c9e: 41 89 c6 mov %eax,%r14d + 66342ca1: 41 29 d6 sub %edx,%r14d + 66342ca4: 31 d2 xor %edx,%edx + 66342ca6: 4d 8b 8c 31 08 02 00 mov 0x208(%r9,%rsi,1),%r9 + 66342cad: 00 + 66342cae: 45 01 31 add %r14d,(%r9) + 66342cb1: 89 84 8f 04 01 00 00 mov %eax,0x104(%rdi,%rcx,4) + 66342cb8: 45 8b 09 mov (%r9),%r9d + 66342cbb: 49 8b 84 cb 08 02 00 mov 0x208(%r11,%rcx,8),%rax + 66342cc2: 00 + 66342cc3: 45 85 c9 test %r9d,%r9d + 66342cc6: 0f 9f c2 setg %dl + 66342cc9: 3b 10 cmp (%rax),%edx + 66342ccb: 74 38 je 66342d05 + 66342ccd: 49 8b 42 20 mov 0x20(%r10),%rax + 66342cd1: 48 8b 84 30 08 02 00 mov 0x208(%rax,%rsi,1),%rax + 66342cd8: 00 + 66342cd9: 8b 00 mov (%rax),%eax + 66342cdb: 85 c0 test %eax,%eax + 66342cdd: 75 26 jne 66342d05 + 66342cdf: 49 8b 42 28 mov 0x28(%r10),%rax + 66342ce3: 48 8b 94 30 08 02 00 mov 0x208(%rax,%rsi,1),%rdx + 66342cea: 00 + 66342ceb: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342cef: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342cf5: 48 63 45 00 movslq 0x0(%rbp),%rax + 66342cf9: 44 8d 48 01 lea 0x1(%rax),%r9d + 66342cfd: 44 89 4d 00 mov %r9d,0x0(%rbp) + 66342d01: 49 89 14 c4 mov %rdx,(%r12,%rax,8) + 66342d05: 48 83 c1 01 add $0x1,%rcx + 66342d09: 48 83 f9 20 cmp $0x20,%rcx + 66342d0d: 0f 85 6d ff ff ff jne 66342c80 + 66342d13: 49 c1 e8 3f shr $0x3f,%r8 + 66342d17: ba 61 00 00 00 mov $0x61,%edx + 66342d1c: 4c 89 d1 mov %r10,%rcx + 66342d1f: 5b pop %rbx + 66342d20: 5e pop %rsi + 66342d21: 5f pop %rdi + 66342d22: 5d pop %rbp + 66342d23: 41 5c pop %r12 + 66342d25: 41 5e pop %r14 + 66342d27: e9 84 e6 ff ff jmpq 663413b0 + 66342d2c: 0f 1f 40 00 nopl 0x0(%rax) -0000000066342e40 : - 66342e40: 41 56 push %r14 - 66342e42: 57 push %rdi - 66342e43: 56 push %rsi - 66342e44: 53 push %rbx - 66342e45: 48 8b 3d d4 4a 01 00 mov 0x14ad4(%rip),%rdi # 66357920 - 66342e4c: 48 8b 35 dd 4a 01 00 mov 0x14add(%rip),%rsi # 66357930 - 66342e53: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66342e57: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342e5b: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 66342e62: 8b 00 mov (%rax),%eax - 66342e64: 85 c0 test %eax,%eax - 66342e66: 0f 84 a4 00 00 00 je 66342f10 - 66342e6c: 31 c0 xor %eax,%eax - 66342e6e: 66 90 xchg %ax,%ax - 66342e70: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66342e75: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d - 66342e7c: 00 - 66342e7d: 45 8b 00 mov (%r8),%r8d - 66342e80: 45 39 c8 cmp %r9d,%r8d - 66342e83: 74 74 je 66342ef9 - 66342e85: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342e89: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66342e8d: 45 89 c6 mov %r8d,%r14d - 66342e90: 45 29 ce sub %r9d,%r14d - 66342e93: 45 31 c9 xor %r9d,%r9d - 66342e96: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 - 66342e9d: 00 - 66342e9e: 45 01 32 add %r14d,(%r10) - 66342ea1: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) - 66342ea8: 00 - 66342ea9: 45 8b 32 mov (%r10),%r14d - 66342eac: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 - 66342eb3: 00 - 66342eb4: 45 85 f6 test %r14d,%r14d - 66342eb7: 41 0f 9f c1 setg %r9b - 66342ebb: 45 3b 08 cmp (%r8),%r9d - 66342ebe: 74 39 je 66342ef9 - 66342ec0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342ec4: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 - 66342ecb: 00 - 66342ecc: 45 8b 10 mov (%r8),%r10d - 66342ecf: 45 85 d2 test %r10d,%r10d - 66342ed2: 75 25 jne 66342ef9 - 66342ed4: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342ed8: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 - 66342edf: 00 - 66342ee0: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342ee4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342eeb: 4c 63 06 movslq (%rsi),%r8 - 66342eee: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342ef2: 44 89 16 mov %r10d,(%rsi) - 66342ef5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66342ef9: 48 83 c0 04 add $0x4,%rax - 66342efd: 48 3d 00 01 00 00 cmp $0x100,%rax - 66342f03: 0f 85 67 ff ff ff jne 66342e70 - 66342f09: 5b pop %rbx - 66342f0a: 5e pop %rsi - 66342f0b: 5f pop %rdi - 66342f0c: 41 5e pop %r14 - 66342f0e: c3 retq - 66342f0f: 90 nop - 66342f10: 48 81 c2 04 01 00 00 add $0x104,%rdx - 66342f17: b8 08 02 00 00 mov $0x208,%eax - 66342f1c: 0f 1f 40 00 nopl 0x0(%rax) - 66342f20: 44 8b 02 mov (%rdx),%r8d - 66342f23: 45 85 c0 test %r8d,%r8d - 66342f26: 74 59 je 66342f81 - 66342f28: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66342f2c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66342f30: 45 29 01 sub %r8d,(%r9) - 66342f33: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66342f39: 45 8b 09 mov (%r9),%r9d - 66342f3c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66342f40: 45 85 c9 test %r9d,%r9d - 66342f43: 41 0f 9f c1 setg %r9b - 66342f47: 45 0f b6 c9 movzbl %r9b,%r9d - 66342f4b: 45 3b 08 cmp (%r8),%r9d - 66342f4e: 74 31 je 66342f81 - 66342f50: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342f54: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66342f58: 45 8b 00 mov (%r8),%r8d - 66342f5b: 45 85 c0 test %r8d,%r8d - 66342f5e: 75 21 jne 66342f81 - 66342f60: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342f64: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66342f68: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66342f6c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342f73: 4c 63 06 movslq (%rsi),%r8 - 66342f76: 45 8d 50 01 lea 0x1(%r8),%r10d - 66342f7a: 44 89 16 mov %r10d,(%rsi) - 66342f7d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66342f81: 48 83 c0 08 add $0x8,%rax - 66342f85: 48 83 c2 04 add $0x4,%rdx - 66342f89: 48 3d 08 04 00 00 cmp $0x408,%rax - 66342f8f: 75 8f jne 66342f20 - 66342f91: 5b pop %rbx - 66342f92: 5e pop %rsi - 66342f93: 5f pop %rdi - 66342f94: 41 5e pop %r14 - 66342f96: c3 retq - 66342f97: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66342f9e: 00 00 +0000000066342d30 : + 66342d30: 57 push %rdi + 66342d31: 56 push %rsi + 66342d32: 53 push %rbx + 66342d33: 48 8b 35 e6 4b 01 00 mov 0x14be6(%rip),%rsi # 66357920 + 66342d3a: 48 8b 1d ef 4b 01 00 mov 0x14bef(%rip),%rbx # 66357930 + 66342d41: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66342d45: 49 8b 41 20 mov 0x20(%r9),%rax + 66342d49: 8b 10 mov (%rax),%edx + 66342d4b: 49 8b 41 18 mov 0x18(%r9),%rax + 66342d4f: 8b 00 mov (%rax),%eax + 66342d51: 44 8d 04 50 lea (%rax,%rdx,2),%r8d + 66342d55: 49 8b 41 10 mov 0x10(%r9),%rax + 66342d59: 8b 10 mov (%rax),%edx + 66342d5b: 49 8b 41 08 mov 0x8(%r9),%rax + 66342d5f: 8b 00 mov (%rax),%eax + 66342d61: 8d 04 50 lea (%rax,%rdx,2),%eax + 66342d64: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66342d68: 41 01 c0 add %eax,%r8d + 66342d6b: 49 8b 41 38 mov 0x38(%r9),%rax + 66342d6f: 44 8b 52 14 mov 0x14(%rdx),%r10d + 66342d73: 44 03 00 add (%rax),%r8d + 66342d76: 44 89 c0 mov %r8d,%eax + 66342d79: 83 e0 01 and $0x1,%eax + 66342d7c: 44 39 d0 cmp %r10d,%eax + 66342d7f: 74 56 je 66342dd7 + 66342d81: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342d85: 89 c7 mov %eax,%edi + 66342d87: 44 29 d7 sub %r10d,%edi + 66342d8a: 4d 8b 51 28 mov 0x28(%r9),%r10 + 66342d8e: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66342d92: 41 01 3b add %edi,(%r11) + 66342d95: 89 42 14 mov %eax,0x14(%rdx) + 66342d98: 31 c0 xor %eax,%eax + 66342d9a: 41 8b 3b mov (%r11),%edi + 66342d9d: 85 ff test %edi,%edi + 66342d9f: 0f 9f c0 setg %al + 66342da2: 41 39 02 cmp %eax,(%r10) + 66342da5: 74 30 je 66342dd7 + 66342da7: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342dab: 48 8b 40 28 mov 0x28(%rax),%rax + 66342daf: 44 8b 18 mov (%rax),%r11d + 66342db2: 45 85 db test %r11d,%r11d + 66342db5: 75 20 jne 66342dd7 + 66342db7: 48 8b 41 28 mov 0x28(%rcx),%rax + 66342dbb: 4c 8b 50 28 mov 0x28(%rax),%r10 + 66342dbf: 49 8b 42 10 mov 0x10(%r10),%rax + 66342dc3: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342dc9: 48 63 03 movslq (%rbx),%rax + 66342dcc: 44 8d 58 01 lea 0x1(%rax),%r11d + 66342dd0: 44 89 1b mov %r11d,(%rbx) + 66342dd3: 4c 89 14 c6 mov %r10,(%rsi,%rax,8) + 66342dd7: 44 8b 52 18 mov 0x18(%rdx),%r10d + 66342ddb: 44 89 c0 mov %r8d,%eax + 66342dde: d1 f8 sar %eax + 66342de0: 83 e0 01 and $0x1,%eax + 66342de3: 44 39 d0 cmp %r10d,%eax + 66342de6: 74 54 je 66342e3c + 66342de8: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66342dec: 89 c7 mov %eax,%edi + 66342dee: 44 29 d7 sub %r10d,%edi + 66342df1: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66342df5: 41 01 3b add %edi,(%r11) + 66342df8: 89 42 18 mov %eax,0x18(%rdx) + 66342dfb: 31 d2 xor %edx,%edx + 66342dfd: 45 8b 13 mov (%r11),%r10d + 66342e00: 49 8b 41 30 mov 0x30(%r9),%rax + 66342e04: 45 85 d2 test %r10d,%r10d + 66342e07: 0f 9f c2 setg %dl + 66342e0a: 3b 10 cmp (%rax),%edx + 66342e0c: 74 2e je 66342e3c + 66342e0e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342e12: 48 8b 40 30 mov 0x30(%rax),%rax + 66342e16: 8b 00 mov (%rax),%eax + 66342e18: 85 c0 test %eax,%eax + 66342e1a: 75 20 jne 66342e3c + 66342e1c: 48 8b 41 28 mov 0x28(%rcx),%rax + 66342e20: 48 8b 50 30 mov 0x30(%rax),%rdx + 66342e24: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342e28: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342e2e: 48 63 03 movslq (%rbx),%rax + 66342e31: 44 8d 48 01 lea 0x1(%rax),%r9d + 66342e35: 44 89 0b mov %r9d,(%rbx) + 66342e38: 48 89 14 c6 mov %rdx,(%rsi,%rax,8) + 66342e3c: 41 c1 f8 02 sar $0x2,%r8d + 66342e40: ba 07 00 00 00 mov $0x7,%edx + 66342e45: 41 83 e0 01 and $0x1,%r8d + 66342e49: 5b pop %rbx + 66342e4a: 5e pop %rsi + 66342e4b: 5f pop %rdi + 66342e4c: e9 5f e5 ff ff jmpq 663413b0 + 66342e51: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66342e56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342e5d: 00 00 00 -0000000066342fa0 : - 66342fa0: 41 56 push %r14 - 66342fa2: 57 push %rdi - 66342fa3: 56 push %rsi - 66342fa4: 53 push %rbx - 66342fa5: 48 8b 3d 74 49 01 00 mov 0x14974(%rip),%rdi # 66357920 - 66342fac: 48 8b 35 7d 49 01 00 mov 0x1497d(%rip),%rsi # 66357930 - 66342fb3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66342fb7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342fbb: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66342fc2: 8b 00 mov (%rax),%eax - 66342fc4: 85 c0 test %eax,%eax - 66342fc6: 0f 84 a4 00 00 00 je 66343070 - 66342fcc: 31 c0 xor %eax,%eax - 66342fce: 66 90 xchg %ax,%ax - 66342fd0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66342fd5: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d - 66342fdc: 00 - 66342fdd: 45 8b 00 mov (%r8),%r8d - 66342fe0: 45 39 c8 cmp %r9d,%r8d - 66342fe3: 74 74 je 66343059 - 66342fe5: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66342fe9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66342fed: 45 89 c6 mov %r8d,%r14d - 66342ff0: 45 29 ce sub %r9d,%r14d - 66342ff3: 45 31 c9 xor %r9d,%r9d - 66342ff6: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 - 66342ffd: 00 - 66342ffe: 45 01 32 add %r14d,(%r10) - 66343001: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) - 66343008: 00 - 66343009: 45 8b 32 mov (%r10),%r14d - 6634300c: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 - 66343013: 00 - 66343014: 45 85 f6 test %r14d,%r14d - 66343017: 41 0f 9f c1 setg %r9b - 6634301b: 45 3b 08 cmp (%r8),%r9d - 6634301e: 74 39 je 66343059 - 66343020: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343024: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 - 6634302b: 00 - 6634302c: 45 8b 10 mov (%r8),%r10d - 6634302f: 45 85 d2 test %r10d,%r10d - 66343032: 75 25 jne 66343059 - 66343034: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343038: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 - 6634303f: 00 - 66343040: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343044: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634304b: 4c 63 06 movslq (%rsi),%r8 - 6634304e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343052: 44 89 16 mov %r10d,(%rsi) - 66343055: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343059: 48 83 c0 04 add $0x4,%rax - 6634305d: 48 3d c0 00 00 00 cmp $0xc0,%rax - 66343063: 0f 85 67 ff ff ff jne 66342fd0 - 66343069: 5b pop %rbx - 6634306a: 5e pop %rsi - 6634306b: 5f pop %rdi - 6634306c: 41 5e pop %r14 - 6634306e: c3 retq - 6634306f: 90 nop - 66343070: 48 81 c2 c4 00 00 00 add $0xc4,%rdx - 66343077: b8 88 01 00 00 mov $0x188,%eax - 6634307c: 0f 1f 40 00 nopl 0x0(%rax) - 66343080: 44 8b 02 mov (%rdx),%r8d - 66343083: 45 85 c0 test %r8d,%r8d - 66343086: 74 59 je 663430e1 - 66343088: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634308c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343090: 45 29 01 sub %r8d,(%r9) - 66343093: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343099: 45 8b 09 mov (%r9),%r9d - 6634309c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663430a0: 45 85 c9 test %r9d,%r9d - 663430a3: 41 0f 9f c1 setg %r9b - 663430a7: 45 0f b6 c9 movzbl %r9b,%r9d - 663430ab: 45 3b 08 cmp (%r8),%r9d - 663430ae: 74 31 je 663430e1 - 663430b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663430b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663430b8: 45 8b 00 mov (%r8),%r8d - 663430bb: 45 85 c0 test %r8d,%r8d - 663430be: 75 21 jne 663430e1 - 663430c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663430c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663430c8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663430cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663430d3: 4c 63 06 movslq (%rsi),%r8 - 663430d6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663430da: 44 89 16 mov %r10d,(%rsi) - 663430dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663430e1: 48 83 c0 08 add $0x8,%rax - 663430e5: 48 83 c2 04 add $0x4,%rdx - 663430e9: 48 3d 08 03 00 00 cmp $0x308,%rax - 663430ef: 75 8f jne 66343080 - 663430f1: 5b pop %rbx - 663430f2: 5e pop %rsi - 663430f3: 5f pop %rdi - 663430f4: 41 5e pop %r14 - 663430f6: c3 retq - 663430f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663430fe: 00 00 +0000000066342e60 : + 66342e60: 57 push %rdi + 66342e61: 56 push %rsi + 66342e62: 53 push %rbx + 66342e63: 48 8b 1d b6 4a 01 00 mov 0x14ab6(%rip),%rbx # 66357920 + 66342e6a: 4c 8b 15 bf 4a 01 00 mov 0x14abf(%rip),%r10 # 66357930 + 66342e71: 48 8b 41 10 mov 0x10(%rcx),%rax + 66342e75: 48 8b 50 10 mov 0x10(%rax),%rdx + 66342e79: 44 8b 02 mov (%rdx),%r8d + 66342e7c: 48 8b 50 08 mov 0x8(%rax),%rdx + 66342e80: 8b 12 mov (%rdx),%edx + 66342e82: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 66342e86: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66342e8a: 45 8b 00 mov (%r8),%r8d + 66342e8d: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 66342e91: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66342e95: 45 8b 08 mov (%r8),%r9d + 66342e98: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66342e9c: 45 8b 00 mov (%r8),%r8d + 66342e9f: 47 8d 04 48 lea (%r8,%r9,2),%r8d + 66342ea3: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66342ea7: 45 8b 09 mov (%r9),%r9d + 66342eaa: 47 8d 04 88 lea (%r8,%r9,4),%r8d + 66342eae: 4c 8b 48 40 mov 0x40(%rax),%r9 + 66342eb2: 45 8b 09 mov (%r9),%r9d + 66342eb5: 47 8d 04 c8 lea (%r8,%r9,8),%r8d + 66342eb9: 4c 8b 48 20 mov 0x20(%rax),%r9 + 66342ebd: 45 8b 09 mov (%r9),%r9d + 66342ec0: 42 8d 14 ca lea (%rdx,%r9,8),%edx + 66342ec4: 4c 8b 49 08 mov 0x8(%rcx),%r9 + 66342ec8: 41 01 d0 add %edx,%r8d + 66342ecb: 48 8b 50 68 mov 0x68(%rax),%rdx + 66342ecf: 45 8b 59 24 mov 0x24(%r9),%r11d + 66342ed3: 44 03 02 add (%rdx),%r8d + 66342ed6: 44 89 c2 mov %r8d,%edx + 66342ed9: 83 e2 01 and $0x1,%edx + 66342edc: 44 39 da cmp %r11d,%edx + 66342edf: 74 54 je 66342f35 + 66342ee1: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66342ee5: 89 d7 mov %edx,%edi + 66342ee7: 44 29 df sub %r11d,%edi + 66342eea: 4c 8b 58 48 mov 0x48(%rax),%r11 + 66342eee: 48 8b 76 48 mov 0x48(%rsi),%rsi + 66342ef2: 01 3e add %edi,(%rsi) + 66342ef4: 41 89 51 24 mov %edx,0x24(%r9) + 66342ef8: 31 d2 xor %edx,%edx + 66342efa: 8b 36 mov (%rsi),%esi + 66342efc: 85 f6 test %esi,%esi + 66342efe: 0f 9f c2 setg %dl + 66342f01: 41 39 13 cmp %edx,(%r11) + 66342f04: 74 2f je 66342f35 + 66342f06: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342f0a: 48 8b 52 48 mov 0x48(%rdx),%rdx + 66342f0e: 44 8b 1a mov (%rdx),%r11d + 66342f11: 45 85 db test %r11d,%r11d + 66342f14: 75 1f jne 66342f35 + 66342f16: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342f1a: 4c 8b 5a 48 mov 0x48(%rdx),%r11 + 66342f1e: 49 8b 53 10 mov 0x10(%r11),%rdx + 66342f22: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342f28: 49 63 12 movslq (%r10),%rdx + 66342f2b: 8d 72 01 lea 0x1(%rdx),%esi + 66342f2e: 41 89 32 mov %esi,(%r10) + 66342f31: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66342f35: 45 8b 59 28 mov 0x28(%r9),%r11d + 66342f39: 44 89 c2 mov %r8d,%edx + 66342f3c: d1 fa sar %edx + 66342f3e: 83 e2 01 and $0x1,%edx + 66342f41: 41 39 d3 cmp %edx,%r11d + 66342f44: 74 54 je 66342f9a + 66342f46: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66342f4a: 89 d7 mov %edx,%edi + 66342f4c: 44 29 df sub %r11d,%edi + 66342f4f: 45 31 db xor %r11d,%r11d + 66342f52: 48 8b 76 50 mov 0x50(%rsi),%rsi + 66342f56: 01 3e add %edi,(%rsi) + 66342f58: 41 89 51 28 mov %edx,0x28(%r9) + 66342f5c: 8b 16 mov (%rsi),%edx + 66342f5e: 85 d2 test %edx,%edx + 66342f60: 48 8b 50 50 mov 0x50(%rax),%rdx + 66342f64: 41 0f 9f c3 setg %r11b + 66342f68: 44 3b 1a cmp (%rdx),%r11d + 66342f6b: 74 2d je 66342f9a + 66342f6d: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342f71: 48 8b 52 50 mov 0x50(%rdx),%rdx + 66342f75: 8b 3a mov (%rdx),%edi + 66342f77: 85 ff test %edi,%edi + 66342f79: 75 1f jne 66342f9a + 66342f7b: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342f7f: 4c 8b 5a 50 mov 0x50(%rdx),%r11 + 66342f83: 49 8b 53 10 mov 0x10(%r11),%rdx + 66342f87: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342f8d: 49 63 12 movslq (%r10),%rdx + 66342f90: 8d 72 01 lea 0x1(%rdx),%esi + 66342f93: 41 89 32 mov %esi,(%r10) + 66342f96: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66342f9a: 45 8b 59 2c mov 0x2c(%r9),%r11d + 66342f9e: 44 89 c2 mov %r8d,%edx + 66342fa1: c1 fa 02 sar $0x2,%edx + 66342fa4: 83 e2 01 and $0x1,%edx + 66342fa7: 44 39 da cmp %r11d,%edx + 66342faa: 74 56 je 66343002 + 66342fac: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66342fb0: 89 d7 mov %edx,%edi + 66342fb2: 44 29 df sub %r11d,%edi + 66342fb5: 45 31 db xor %r11d,%r11d + 66342fb8: 48 8b 76 58 mov 0x58(%rsi),%rsi + 66342fbc: 01 3e add %edi,(%rsi) + 66342fbe: 41 89 51 2c mov %edx,0x2c(%r9) + 66342fc2: 8b 36 mov (%rsi),%esi + 66342fc4: 48 8b 50 58 mov 0x58(%rax),%rdx + 66342fc8: 85 f6 test %esi,%esi + 66342fca: 41 0f 9f c3 setg %r11b + 66342fce: 44 3b 1a cmp (%rdx),%r11d + 66342fd1: 74 2f je 66343002 + 66342fd3: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342fd7: 48 8b 52 58 mov 0x58(%rdx),%rdx + 66342fdb: 44 8b 1a mov (%rdx),%r11d + 66342fde: 45 85 db test %r11d,%r11d + 66342fe1: 75 1f jne 66343002 + 66342fe3: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342fe7: 4c 8b 5a 58 mov 0x58(%rdx),%r11 + 66342feb: 49 8b 53 10 mov 0x10(%r11),%rdx + 66342fef: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342ff5: 49 63 12 movslq (%r10),%rdx + 66342ff8: 8d 72 01 lea 0x1(%rdx),%esi + 66342ffb: 41 89 32 mov %esi,(%r10) + 66342ffe: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66343002: 45 8b 59 30 mov 0x30(%r9),%r11d + 66343006: 44 89 c2 mov %r8d,%edx + 66343009: c1 fa 03 sar $0x3,%edx + 6634300c: 83 e2 01 and $0x1,%edx + 6634300f: 44 39 da cmp %r11d,%edx + 66343012: 74 54 je 66343068 + 66343014: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66343018: 89 d7 mov %edx,%edi + 6634301a: 44 29 df sub %r11d,%edi + 6634301d: 48 8b 40 60 mov 0x60(%rax),%rax + 66343021: 48 8b 76 60 mov 0x60(%rsi),%rsi + 66343025: 01 3e add %edi,(%rsi) + 66343027: 41 89 51 30 mov %edx,0x30(%r9) + 6634302b: 31 d2 xor %edx,%edx + 6634302d: 44 8b 0e mov (%rsi),%r9d + 66343030: 45 85 c9 test %r9d,%r9d + 66343033: 0f 9f c2 setg %dl + 66343036: 3b 10 cmp (%rax),%edx + 66343038: 74 2e je 66343068 + 6634303a: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634303e: 48 8b 40 60 mov 0x60(%rax),%rax + 66343042: 8b 00 mov (%rax),%eax + 66343044: 85 c0 test %eax,%eax + 66343046: 75 20 jne 66343068 + 66343048: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634304c: 48 8b 50 60 mov 0x60(%rax),%rdx + 66343050: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343054: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634305a: 49 63 02 movslq (%r10),%rax + 6634305d: 44 8d 48 01 lea 0x1(%rax),%r9d + 66343061: 45 89 0a mov %r9d,(%r10) + 66343064: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66343068: 41 c1 f8 04 sar $0x4,%r8d + 6634306c: ba 0d 00 00 00 mov $0xd,%edx + 66343071: 41 83 e0 01 and $0x1,%r8d + 66343075: 5b pop %rbx + 66343076: 5e pop %rsi + 66343077: 5f pop %rdi + 66343078: e9 33 e3 ff ff jmpq 663413b0 + 6634307d: 0f 1f 00 nopl (%rax) -0000000066343100 : - 66343100: 41 56 push %r14 - 66343102: 57 push %rdi - 66343103: 56 push %rsi - 66343104: 53 push %rbx - 66343105: 48 8b 3d 14 48 01 00 mov 0x14814(%rip),%rdi # 66357920 - 6634310c: 48 8b 35 1d 48 01 00 mov 0x1481d(%rip),%rsi # 66357930 - 66343113: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343117: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634311b: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66343122: 8b 00 mov (%rax),%eax - 66343124: 85 c0 test %eax,%eax - 66343126: 0f 84 a4 00 00 00 je 663431d0 - 6634312c: 31 c0 xor %eax,%eax - 6634312e: 66 90 xchg %ax,%ax - 66343130: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343135: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d - 6634313c: 00 - 6634313d: 45 8b 00 mov (%r8),%r8d - 66343140: 45 39 c8 cmp %r9d,%r8d - 66343143: 74 74 je 663431b9 - 66343145: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343149: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634314d: 45 89 c6 mov %r8d,%r14d - 66343150: 45 29 ce sub %r9d,%r14d - 66343153: 45 31 c9 xor %r9d,%r9d - 66343156: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 - 6634315d: 00 - 6634315e: 45 01 32 add %r14d,(%r10) - 66343161: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) - 66343168: 00 - 66343169: 45 8b 32 mov (%r10),%r14d - 6634316c: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 - 66343173: 00 - 66343174: 45 85 f6 test %r14d,%r14d - 66343177: 41 0f 9f c1 setg %r9b - 6634317b: 45 3b 08 cmp (%r8),%r9d - 6634317e: 74 39 je 663431b9 - 66343180: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343184: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 - 6634318b: 00 - 6634318c: 45 8b 10 mov (%r8),%r10d - 6634318f: 45 85 d2 test %r10d,%r10d - 66343192: 75 25 jne 663431b9 - 66343194: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343198: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 - 6634319f: 00 - 663431a0: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663431a4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663431ab: 4c 63 06 movslq (%rsi),%r8 - 663431ae: 45 8d 50 01 lea 0x1(%r8),%r10d - 663431b2: 44 89 16 mov %r10d,(%rsi) - 663431b5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663431b9: 48 83 c0 04 add $0x4,%rax - 663431bd: 48 3d c0 00 00 00 cmp $0xc0,%rax - 663431c3: 0f 85 67 ff ff ff jne 66343130 - 663431c9: 5b pop %rbx - 663431ca: 5e pop %rsi - 663431cb: 5f pop %rdi - 663431cc: 41 5e pop %r14 - 663431ce: c3 retq - 663431cf: 90 nop - 663431d0: 48 81 c2 c4 00 00 00 add $0xc4,%rdx - 663431d7: b8 88 01 00 00 mov $0x188,%eax - 663431dc: 0f 1f 40 00 nopl 0x0(%rax) - 663431e0: 44 8b 02 mov (%rdx),%r8d - 663431e3: 45 85 c0 test %r8d,%r8d - 663431e6: 74 59 je 66343241 - 663431e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663431ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663431f0: 45 29 01 sub %r8d,(%r9) - 663431f3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663431f9: 45 8b 09 mov (%r9),%r9d - 663431fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343200: 45 85 c9 test %r9d,%r9d - 66343203: 41 0f 9f c1 setg %r9b - 66343207: 45 0f b6 c9 movzbl %r9b,%r9d - 6634320b: 45 3b 08 cmp (%r8),%r9d - 6634320e: 74 31 je 66343241 - 66343210: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343214: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343218: 45 8b 00 mov (%r8),%r8d - 6634321b: 45 85 c0 test %r8d,%r8d - 6634321e: 75 21 jne 66343241 - 66343220: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343224: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343228: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634322c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343233: 4c 63 06 movslq (%rsi),%r8 - 66343236: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634323a: 44 89 16 mov %r10d,(%rsi) - 6634323d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343241: 48 83 c0 08 add $0x8,%rax - 66343245: 48 83 c2 04 add $0x4,%rdx - 66343249: 48 3d 08 03 00 00 cmp $0x308,%rax - 6634324f: 75 8f jne 663431e0 - 66343251: 5b pop %rbx - 66343252: 5e pop %rsi - 66343253: 5f pop %rdi - 66343254: 41 5e pop %r14 - 66343256: c3 retq - 66343257: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634325e: 00 00 +0000000066343080 : + 66343080: 41 56 push %r14 + 66343082: 55 push %rbp + 66343083: 57 push %rdi + 66343084: 56 push %rsi + 66343085: 53 push %rbx + 66343086: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634308a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634308e: 48 89 cb mov %rcx,%rbx + 66343091: 8b 08 mov (%rax),%ecx + 66343093: 48 8b 42 08 mov 0x8(%rdx),%rax + 66343097: 8b 00 mov (%rax),%eax + 66343099: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634309c: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 663430a0: 8b 09 mov (%rcx),%ecx + 663430a2: 8d 04 88 lea (%rax,%rcx,4),%eax + 663430a5: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 663430a9: 8b 09 mov (%rcx),%ecx + 663430ab: 8d 0c c8 lea (%rax,%rcx,8),%ecx + 663430ae: 48 8b 42 28 mov 0x28(%rdx),%rax + 663430b2: 8b 00 mov (%rax),%eax + 663430b4: c1 e0 04 shl $0x4,%eax + 663430b7: 01 c8 add %ecx,%eax + 663430b9: 48 8b 4a 30 mov 0x30(%rdx),%rcx + 663430bd: 8b 09 mov (%rcx),%ecx + 663430bf: c1 e1 05 shl $0x5,%ecx + 663430c2: 01 c8 add %ecx,%eax + 663430c4: 48 8b 4a 38 mov 0x38(%rdx),%rcx + 663430c8: 44 8b 01 mov (%rcx),%r8d + 663430cb: 41 c1 e0 06 shl $0x6,%r8d + 663430cf: 41 8d 0c 00 lea (%r8,%rax,1),%ecx + 663430d3: 48 8b 42 50 mov 0x50(%rdx),%rax + 663430d7: 44 8b 00 mov (%rax),%r8d + 663430da: 48 8b 42 48 mov 0x48(%rdx),%rax + 663430de: 8b 00 mov (%rax),%eax + 663430e0: 42 8d 04 40 lea (%rax,%r8,2),%eax + 663430e4: 4c 8b 42 58 mov 0x58(%rdx),%r8 + 663430e8: 45 8b 00 mov (%r8),%r8d + 663430eb: 42 8d 04 80 lea (%rax,%r8,4),%eax + 663430ef: 4c 8b 42 60 mov 0x60(%rdx),%r8 + 663430f3: 45 8b 00 mov (%r8),%r8d + 663430f6: 42 8d 04 c0 lea (%rax,%r8,8),%eax + 663430fa: 4c 8b 42 68 mov 0x68(%rdx),%r8 + 663430fe: 45 8b 00 mov (%r8),%r8d + 66343101: 41 c1 e0 04 shl $0x4,%r8d + 66343105: 41 01 c0 add %eax,%r8d + 66343108: 48 8b 42 70 mov 0x70(%rdx),%rax + 6634310c: 8b 00 mov (%rax),%eax + 6634310e: c1 e0 05 shl $0x5,%eax + 66343111: 41 01 c0 add %eax,%r8d + 66343114: 48 8b 42 78 mov 0x78(%rdx),%rax + 66343118: 8b 00 mov (%rax),%eax + 6634311a: c1 e0 06 shl $0x6,%eax + 6634311d: 44 01 c0 add %r8d,%eax + 66343120: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 + 66343127: 45 8b 00 mov (%r8),%r8d + 6634312a: 41 c1 e0 07 shl $0x7,%r8d + 6634312e: 44 01 c0 add %r8d,%eax + 66343131: 4c 8b 42 40 mov 0x40(%rdx),%r8 + 66343135: 45 8b 00 mov (%r8),%r8d + 66343138: 48 8b 73 08 mov 0x8(%rbx),%rsi + 6634313c: 48 8b 2d dd 47 01 00 mov 0x147dd(%rip),%rbp # 66357920 + 66343143: 48 8b 3d e6 47 01 00 mov 0x147e6(%rip),%rdi # 66357930 + 6634314a: 41 c1 e0 07 shl $0x7,%r8d + 6634314e: 41 01 c8 add %ecx,%r8d + 66343151: 31 c9 xor %ecx,%ecx + 66343153: 41 01 c0 add %eax,%r8d + 66343156: 48 8b 82 c8 00 00 00 mov 0xc8(%rdx),%rax + 6634315d: 44 03 00 add (%rax),%r8d + 66343160: 44 8b 4c 8e 44 mov 0x44(%rsi,%rcx,4),%r9d + 66343165: 44 89 c0 mov %r8d,%eax + 66343168: d3 f8 sar %cl,%eax + 6634316a: 83 e0 01 and $0x1,%eax + 6634316d: 44 39 c8 cmp %r9d,%eax + 66343170: 74 72 je 663431e4 + 66343172: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66343176: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 + 6634317d: 00 + 6634317e: 41 89 c6 mov %eax,%r14d + 66343181: 45 29 ce sub %r9d,%r14d + 66343184: 45 31 c9 xor %r9d,%r9d + 66343187: 4f 8b 94 1a 88 00 00 mov 0x88(%r10,%r11,1),%r10 + 6634318e: 00 + 6634318f: 45 01 32 add %r14d,(%r10) + 66343192: 89 44 8e 44 mov %eax,0x44(%rsi,%rcx,4) + 66343196: 45 8b 12 mov (%r10),%r10d + 66343199: 48 8b 84 ca 88 00 00 mov 0x88(%rdx,%rcx,8),%rax + 663431a0: 00 + 663431a1: 45 85 d2 test %r10d,%r10d + 663431a4: 41 0f 9f c1 setg %r9b + 663431a8: 44 3b 08 cmp (%rax),%r9d + 663431ab: 74 37 je 663431e4 + 663431ad: 48 8b 43 20 mov 0x20(%rbx),%rax + 663431b1: 4a 8b 84 18 88 00 00 mov 0x88(%rax,%r11,1),%rax + 663431b8: 00 + 663431b9: 8b 00 mov (%rax),%eax + 663431bb: 85 c0 test %eax,%eax + 663431bd: 75 25 jne 663431e4 + 663431bf: 48 8b 43 28 mov 0x28(%rbx),%rax + 663431c3: 4e 8b 8c 18 88 00 00 mov 0x88(%rax,%r11,1),%r9 + 663431ca: 00 + 663431cb: 49 8b 41 10 mov 0x10(%r9),%rax + 663431cf: c7 00 01 00 00 00 movl $0x1,(%rax) + 663431d5: 48 63 07 movslq (%rdi),%rax + 663431d8: 44 8d 50 01 lea 0x1(%rax),%r10d + 663431dc: 44 89 17 mov %r10d,(%rdi) + 663431df: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) + 663431e4: 48 83 c1 01 add $0x1,%rcx + 663431e8: 48 83 f9 08 cmp $0x8,%rcx + 663431ec: 0f 85 6e ff ff ff jne 66343160 + 663431f2: 41 c1 f8 08 sar $0x8,%r8d + 663431f6: ba 19 00 00 00 mov $0x19,%edx + 663431fb: 48 89 d9 mov %rbx,%rcx + 663431fe: 41 83 e0 01 and $0x1,%r8d + 66343202: 5b pop %rbx + 66343203: 5e pop %rsi + 66343204: 5f pop %rdi + 66343205: 5d pop %rbp + 66343206: 41 5e pop %r14 + 66343208: e9 a3 e1 ff ff jmpq 663413b0 + 6634320d: 0f 1f 00 nopl (%rax) -0000000066343260 : - 66343260: 41 56 push %r14 - 66343262: 57 push %rdi - 66343263: 56 push %rsi - 66343264: 53 push %rbx - 66343265: 48 8b 3d b4 46 01 00 mov 0x146b4(%rip),%rdi # 66357920 - 6634326c: 48 8b 35 bd 46 01 00 mov 0x146bd(%rip),%rsi # 66357930 - 66343273: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343277: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634327b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax - 66343282: 8b 00 mov (%rax),%eax - 66343284: 85 c0 test %eax,%eax - 66343286: 0f 84 a4 00 00 00 je 66343330 - 6634328c: 31 c0 xor %eax,%eax - 6634328e: 66 90 xchg %ax,%ax - 66343290: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343295: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d - 6634329c: 00 - 6634329d: 45 8b 00 mov (%r8),%r8d - 663432a0: 45 39 c8 cmp %r9d,%r8d - 663432a3: 74 74 je 66343319 - 663432a5: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663432a9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663432ad: 45 89 c6 mov %r8d,%r14d - 663432b0: 45 29 ce sub %r9d,%r14d - 663432b3: 45 31 c9 xor %r9d,%r9d - 663432b6: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 - 663432bd: 00 - 663432be: 45 01 32 add %r14d,(%r10) - 663432c1: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) - 663432c8: 00 - 663432c9: 45 8b 32 mov (%r10),%r14d - 663432cc: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 - 663432d3: 00 - 663432d4: 45 85 f6 test %r14d,%r14d - 663432d7: 41 0f 9f c1 setg %r9b - 663432db: 45 3b 08 cmp (%r8),%r9d - 663432de: 74 39 je 66343319 - 663432e0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663432e4: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 - 663432eb: 00 - 663432ec: 45 8b 10 mov (%r8),%r10d - 663432ef: 45 85 d2 test %r10d,%r10d - 663432f2: 75 25 jne 66343319 - 663432f4: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663432f8: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 - 663432ff: 00 - 66343300: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343304: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634330b: 4c 63 06 movslq (%rsi),%r8 - 6634330e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343312: 44 89 16 mov %r10d,(%rsi) - 66343315: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343319: 48 83 c0 04 add $0x4,%rax - 6634331d: 48 3d 80 00 00 00 cmp $0x80,%rax - 66343323: 0f 85 67 ff ff ff jne 66343290 - 66343329: 5b pop %rbx - 6634332a: 5e pop %rsi - 6634332b: 5f pop %rdi - 6634332c: 41 5e pop %r14 - 6634332e: c3 retq - 6634332f: 90 nop - 66343330: 48 81 c2 84 00 00 00 add $0x84,%rdx - 66343337: b8 08 01 00 00 mov $0x108,%eax - 6634333c: 0f 1f 40 00 nopl 0x0(%rax) - 66343340: 44 8b 02 mov (%rdx),%r8d - 66343343: 45 85 c0 test %r8d,%r8d - 66343346: 74 59 je 663433a1 - 66343348: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634334c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343350: 45 29 01 sub %r8d,(%r9) - 66343353: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343359: 45 8b 09 mov (%r9),%r9d - 6634335c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343360: 45 85 c9 test %r9d,%r9d - 66343363: 41 0f 9f c1 setg %r9b - 66343367: 45 0f b6 c9 movzbl %r9b,%r9d - 6634336b: 45 3b 08 cmp (%r8),%r9d - 6634336e: 74 31 je 663433a1 - 66343370: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343374: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343378: 45 8b 00 mov (%r8),%r8d - 6634337b: 45 85 c0 test %r8d,%r8d - 6634337e: 75 21 jne 663433a1 - 66343380: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343384: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343388: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634338c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343393: 4c 63 06 movslq (%rsi),%r8 - 66343396: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634339a: 44 89 16 mov %r10d,(%rsi) - 6634339d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663433a1: 48 83 c0 08 add $0x8,%rax - 663433a5: 48 83 c2 04 add $0x4,%rdx - 663433a9: 48 3d 08 02 00 00 cmp $0x208,%rax - 663433af: 75 8f jne 66343340 - 663433b1: 5b pop %rbx - 663433b2: 5e pop %rsi - 663433b3: 5f pop %rdi - 663433b4: 41 5e pop %r14 - 663433b6: c3 retq - 663433b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663433be: 00 00 - -00000000663433c0 : - 663433c0: 41 56 push %r14 - 663433c2: 57 push %rdi - 663433c3: 56 push %rsi - 663433c4: 53 push %rbx - 663433c5: 48 8b 3d 54 45 01 00 mov 0x14554(%rip),%rdi # 66357920 - 663433cc: 48 8b 35 5d 45 01 00 mov 0x1455d(%rip),%rsi # 66357930 - 663433d3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663433d7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663433db: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax - 663433e2: 8b 00 mov (%rax),%eax - 663433e4: 85 c0 test %eax,%eax - 663433e6: 0f 84 a4 00 00 00 je 66343490 - 663433ec: 31 c0 xor %eax,%eax - 663433ee: 66 90 xchg %ax,%ax - 663433f0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663433f5: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d - 663433fc: 00 - 663433fd: 45 8b 00 mov (%r8),%r8d - 66343400: 45 39 c8 cmp %r9d,%r8d - 66343403: 74 74 je 66343479 - 66343405: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343409: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634340d: 45 89 c6 mov %r8d,%r14d - 66343410: 45 29 ce sub %r9d,%r14d - 66343413: 45 31 c9 xor %r9d,%r9d - 66343416: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 - 6634341d: 00 - 6634341e: 45 01 32 add %r14d,(%r10) - 66343421: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) - 66343428: 00 - 66343429: 45 8b 32 mov (%r10),%r14d - 6634342c: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 - 66343433: 00 - 66343434: 45 85 f6 test %r14d,%r14d - 66343437: 41 0f 9f c1 setg %r9b - 6634343b: 45 3b 08 cmp (%r8),%r9d - 6634343e: 74 39 je 66343479 - 66343440: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343444: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 - 6634344b: 00 - 6634344c: 45 8b 10 mov (%r8),%r10d - 6634344f: 45 85 d2 test %r10d,%r10d - 66343452: 75 25 jne 66343479 - 66343454: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343458: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 - 6634345f: 00 - 66343460: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343464: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634346b: 4c 63 06 movslq (%rsi),%r8 - 6634346e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343472: 44 89 16 mov %r10d,(%rsi) - 66343475: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343479: 48 83 c0 04 add $0x4,%rax - 6634347d: 48 3d 80 00 00 00 cmp $0x80,%rax - 66343483: 0f 85 67 ff ff ff jne 663433f0 - 66343489: 5b pop %rbx - 6634348a: 5e pop %rsi - 6634348b: 5f pop %rdi +0000000066343210 : + 66343210: 41 56 push %r14 + 66343212: 55 push %rbp + 66343213: 57 push %rdi + 66343214: 56 push %rsi + 66343215: 53 push %rbx + 66343216: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634321a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634321e: 48 89 cb mov %rcx,%rbx + 66343221: 8b 08 mov (%rax),%ecx + 66343223: 48 8b 42 08 mov 0x8(%rdx),%rax + 66343227: 8b 00 mov (%rax),%eax + 66343229: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634322c: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 66343230: 8b 09 mov (%rcx),%ecx + 66343232: 8d 04 88 lea (%rax,%rcx,4),%eax + 66343235: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 66343239: 8b 09 mov (%rcx),%ecx + 6634323b: 8d 0c c8 lea (%rax,%rcx,8),%ecx + 6634323e: 48 8b 42 28 mov 0x28(%rdx),%rax + 66343242: 8b 00 mov (%rax),%eax + 66343244: c1 e0 04 shl $0x4,%eax + 66343247: 01 c8 add %ecx,%eax + 66343249: 48 8b 4a 30 mov 0x30(%rdx),%rcx + 6634324d: 8b 09 mov (%rcx),%ecx + 6634324f: c1 e1 05 shl $0x5,%ecx + 66343252: 01 c8 add %ecx,%eax + 66343254: 48 8b 4a 38 mov 0x38(%rdx),%rcx + 66343258: 8b 09 mov (%rcx),%ecx + 6634325a: c1 e1 06 shl $0x6,%ecx + 6634325d: 01 c1 add %eax,%ecx + 6634325f: 48 8b 42 40 mov 0x40(%rdx),%rax + 66343263: 8b 00 mov (%rax),%eax + 66343265: c1 e0 07 shl $0x7,%eax + 66343268: 01 c1 add %eax,%ecx + 6634326a: 48 8b 42 48 mov 0x48(%rdx),%rax + 6634326e: 8b 00 mov (%rax),%eax + 66343270: c1 e0 08 shl $0x8,%eax + 66343273: 01 c8 add %ecx,%eax + 66343275: 48 8b 4a 50 mov 0x50(%rdx),%rcx + 66343279: 8b 09 mov (%rcx),%ecx + 6634327b: c1 e1 09 shl $0x9,%ecx + 6634327e: 01 c8 add %ecx,%eax + 66343280: 48 8b 4a 58 mov 0x58(%rdx),%rcx + 66343284: 8b 09 mov (%rcx),%ecx + 66343286: c1 e1 0a shl $0xa,%ecx + 66343289: 01 c1 add %eax,%ecx + 6634328b: 48 8b 42 60 mov 0x60(%rdx),%rax + 6634328f: 8b 00 mov (%rax),%eax + 66343291: c1 e0 0b shl $0xb,%eax + 66343294: 01 c1 add %eax,%ecx + 66343296: 48 8b 42 68 mov 0x68(%rdx),%rax + 6634329a: 8b 00 mov (%rax),%eax + 6634329c: c1 e0 0c shl $0xc,%eax + 6634329f: 01 c8 add %ecx,%eax + 663432a1: 48 8b 4a 70 mov 0x70(%rdx),%rcx + 663432a5: 8b 09 mov (%rcx),%ecx + 663432a7: c1 e1 0d shl $0xd,%ecx + 663432aa: 01 c8 add %ecx,%eax + 663432ac: 48 8b 4a 78 mov 0x78(%rdx),%rcx + 663432b0: 44 8b 01 mov (%rcx),%r8d + 663432b3: 41 c1 e0 0e shl $0xe,%r8d + 663432b7: 41 8d 0c 00 lea (%r8,%rax,1),%ecx + 663432bb: 48 8b 82 90 00 00 00 mov 0x90(%rdx),%rax + 663432c2: 44 8b 00 mov (%rax),%r8d + 663432c5: 48 8b 82 88 00 00 00 mov 0x88(%rdx),%rax + 663432cc: 8b 00 mov (%rax),%eax + 663432ce: 42 8d 04 40 lea (%rax,%r8,2),%eax + 663432d2: 4c 8b 82 98 00 00 00 mov 0x98(%rdx),%r8 + 663432d9: 45 8b 00 mov (%r8),%r8d + 663432dc: 42 8d 04 80 lea (%rax,%r8,4),%eax + 663432e0: 4c 8b 82 a0 00 00 00 mov 0xa0(%rdx),%r8 + 663432e7: 45 8b 00 mov (%r8),%r8d + 663432ea: 42 8d 04 c0 lea (%rax,%r8,8),%eax + 663432ee: 4c 8b 82 a8 00 00 00 mov 0xa8(%rdx),%r8 + 663432f5: 45 8b 00 mov (%r8),%r8d + 663432f8: 41 c1 e0 04 shl $0x4,%r8d + 663432fc: 41 01 c0 add %eax,%r8d + 663432ff: 48 8b 82 b0 00 00 00 mov 0xb0(%rdx),%rax + 66343306: 8b 00 mov (%rax),%eax + 66343308: c1 e0 05 shl $0x5,%eax + 6634330b: 41 01 c0 add %eax,%r8d + 6634330e: 48 8b 82 b8 00 00 00 mov 0xb8(%rdx),%rax + 66343315: 8b 00 mov (%rax),%eax + 66343317: c1 e0 06 shl $0x6,%eax + 6634331a: 44 01 c0 add %r8d,%eax + 6634331d: 4c 8b 82 c0 00 00 00 mov 0xc0(%rdx),%r8 + 66343324: 45 8b 00 mov (%r8),%r8d + 66343327: 41 c1 e0 07 shl $0x7,%r8d + 6634332b: 44 01 c0 add %r8d,%eax + 6634332e: 4c 8b 82 c8 00 00 00 mov 0xc8(%rdx),%r8 + 66343335: 45 8b 00 mov (%r8),%r8d + 66343338: 41 c1 e0 08 shl $0x8,%r8d + 6634333c: 41 01 c0 add %eax,%r8d + 6634333f: 48 8b 82 d0 00 00 00 mov 0xd0(%rdx),%rax + 66343346: 8b 00 mov (%rax),%eax + 66343348: c1 e0 09 shl $0x9,%eax + 6634334b: 41 01 c0 add %eax,%r8d + 6634334e: 48 8b 82 d8 00 00 00 mov 0xd8(%rdx),%rax + 66343355: 8b 00 mov (%rax),%eax + 66343357: c1 e0 0a shl $0xa,%eax + 6634335a: 44 01 c0 add %r8d,%eax + 6634335d: 4c 8b 82 e0 00 00 00 mov 0xe0(%rdx),%r8 + 66343364: 45 8b 00 mov (%r8),%r8d + 66343367: 41 c1 e0 0b shl $0xb,%r8d + 6634336b: 44 01 c0 add %r8d,%eax + 6634336e: 4c 8b 82 e8 00 00 00 mov 0xe8(%rdx),%r8 + 66343375: 45 8b 00 mov (%r8),%r8d + 66343378: 41 c1 e0 0c shl $0xc,%r8d + 6634337c: 41 01 c0 add %eax,%r8d + 6634337f: 48 8b 82 f0 00 00 00 mov 0xf0(%rdx),%rax + 66343386: 8b 00 mov (%rax),%eax + 66343388: c1 e0 0d shl $0xd,%eax + 6634338b: 41 01 c0 add %eax,%r8d + 6634338e: 48 8b 82 f8 00 00 00 mov 0xf8(%rdx),%rax + 66343395: 8b 00 mov (%rax),%eax + 66343397: c1 e0 0e shl $0xe,%eax + 6634339a: 44 01 c0 add %r8d,%eax + 6634339d: 4c 8b 82 00 01 00 00 mov 0x100(%rdx),%r8 + 663433a4: 45 8b 00 mov (%r8),%r8d + 663433a7: 41 c1 e0 0f shl $0xf,%r8d + 663433ab: 44 01 c0 add %r8d,%eax + 663433ae: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 + 663433b5: 45 8b 00 mov (%r8),%r8d + 663433b8: 48 8b 73 08 mov 0x8(%rbx),%rsi + 663433bc: 48 8b 2d 5d 45 01 00 mov 0x1455d(%rip),%rbp # 66357920 + 663433c3: 48 8b 3d 66 45 01 00 mov 0x14566(%rip),%rdi # 66357930 + 663433ca: 41 c1 e0 0f shl $0xf,%r8d + 663433ce: 41 01 c8 add %ecx,%r8d + 663433d1: 31 c9 xor %ecx,%ecx + 663433d3: 41 01 c0 add %eax,%r8d + 663433d6: 48 8b 82 88 01 00 00 mov 0x188(%rdx),%rax + 663433dd: 44 03 00 add (%rax),%r8d + 663433e0: 44 8b 8c 8e 84 00 00 mov 0x84(%rsi,%rcx,4),%r9d + 663433e7: 00 + 663433e8: 44 89 c0 mov %r8d,%eax + 663433eb: d3 f8 sar %cl,%eax + 663433ed: 83 e0 01 and $0x1,%eax + 663433f0: 44 39 c8 cmp %r9d,%eax + 663433f3: 74 75 je 6634346a + 663433f5: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 663433f9: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 + 66343400: 00 + 66343401: 41 89 c6 mov %eax,%r14d + 66343404: 45 29 ce sub %r9d,%r14d + 66343407: 45 31 c9 xor %r9d,%r9d + 6634340a: 4f 8b 94 1a 08 01 00 mov 0x108(%r10,%r11,1),%r10 + 66343411: 00 + 66343412: 45 01 32 add %r14d,(%r10) + 66343415: 89 84 8e 84 00 00 00 mov %eax,0x84(%rsi,%rcx,4) + 6634341c: 45 8b 12 mov (%r10),%r10d + 6634341f: 48 8b 84 ca 08 01 00 mov 0x108(%rdx,%rcx,8),%rax + 66343426: 00 + 66343427: 45 85 d2 test %r10d,%r10d + 6634342a: 41 0f 9f c1 setg %r9b + 6634342e: 44 3b 08 cmp (%rax),%r9d + 66343431: 74 37 je 6634346a + 66343433: 48 8b 43 20 mov 0x20(%rbx),%rax + 66343437: 4a 8b 84 18 08 01 00 mov 0x108(%rax,%r11,1),%rax + 6634343e: 00 + 6634343f: 8b 00 mov (%rax),%eax + 66343441: 85 c0 test %eax,%eax + 66343443: 75 25 jne 6634346a + 66343445: 48 8b 43 28 mov 0x28(%rbx),%rax + 66343449: 4e 8b 8c 18 08 01 00 mov 0x108(%rax,%r11,1),%r9 + 66343450: 00 + 66343451: 49 8b 41 10 mov 0x10(%r9),%rax + 66343455: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634345b: 48 63 07 movslq (%rdi),%rax + 6634345e: 44 8d 50 01 lea 0x1(%rax),%r10d + 66343462: 44 89 17 mov %r10d,(%rdi) + 66343465: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) + 6634346a: 48 83 c1 01 add $0x1,%rcx + 6634346e: 48 83 f9 10 cmp $0x10,%rcx + 66343472: 0f 85 68 ff ff ff jne 663433e0 + 66343478: 41 c1 f8 10 sar $0x10,%r8d + 6634347c: ba 31 00 00 00 mov $0x31,%edx + 66343481: 48 89 d9 mov %rbx,%rcx + 66343484: 41 83 e0 01 and $0x1,%r8d + 66343488: 5b pop %rbx + 66343489: 5e pop %rsi + 6634348a: 5f pop %rdi + 6634348b: 5d pop %rbp 6634348c: 41 5e pop %r14 - 6634348e: c3 retq - 6634348f: 90 nop - 66343490: 48 81 c2 84 00 00 00 add $0x84,%rdx - 66343497: b8 08 01 00 00 mov $0x108,%eax - 6634349c: 0f 1f 40 00 nopl 0x0(%rax) - 663434a0: 44 8b 02 mov (%rdx),%r8d - 663434a3: 45 85 c0 test %r8d,%r8d - 663434a6: 74 59 je 66343501 - 663434a8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663434ac: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663434b0: 45 29 01 sub %r8d,(%r9) - 663434b3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663434b9: 45 8b 09 mov (%r9),%r9d - 663434bc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663434c0: 45 85 c9 test %r9d,%r9d - 663434c3: 41 0f 9f c1 setg %r9b - 663434c7: 45 0f b6 c9 movzbl %r9b,%r9d - 663434cb: 45 3b 08 cmp (%r8),%r9d - 663434ce: 74 31 je 66343501 - 663434d0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663434d4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663434d8: 45 8b 00 mov (%r8),%r8d - 663434db: 45 85 c0 test %r8d,%r8d - 663434de: 75 21 jne 66343501 - 663434e0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663434e4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663434e8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663434ec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663434f3: 4c 63 06 movslq (%rsi),%r8 - 663434f6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663434fa: 44 89 16 mov %r10d,(%rsi) - 663434fd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343501: 48 83 c0 08 add $0x8,%rax - 66343505: 48 83 c2 04 add $0x4,%rdx - 66343509: 48 3d 08 02 00 00 cmp $0x208,%rax - 6634350f: 75 8f jne 663434a0 - 66343511: 5b pop %rbx - 66343512: 5e pop %rsi - 66343513: 5f pop %rdi - 66343514: 41 5e pop %r14 - 66343516: c3 retq - 66343517: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634351e: 00 00 + 6634348e: e9 1d df ff ff jmpq 663413b0 + 66343493: 0f 1f 00 nopl (%rax) + 66343496: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634349d: 00 00 00 -0000000066343520 : - 66343520: 41 56 push %r14 - 66343522: 57 push %rdi - 66343523: 56 push %rsi - 66343524: 53 push %rbx - 66343525: 48 8b 3d f4 43 01 00 mov 0x143f4(%rip),%rdi # 66357920 - 6634352c: 48 8b 35 fd 43 01 00 mov 0x143fd(%rip),%rsi # 66357930 - 66343533: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343537: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634353b: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 66343542: 8b 00 mov (%rax),%eax - 66343544: 85 c0 test %eax,%eax - 66343546: 0f 84 a4 00 00 00 je 663435f0 - 6634354c: 31 c0 xor %eax,%eax - 6634354e: 66 90 xchg %ax,%ax - 66343550: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343555: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d - 6634355a: 45 8b 00 mov (%r8),%r8d - 6634355d: 45 39 c8 cmp %r9d,%r8d - 66343560: 74 71 je 663435d3 - 66343562: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343566: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634356a: 45 89 c6 mov %r8d,%r14d - 6634356d: 45 29 ce sub %r9d,%r14d - 66343570: 45 31 c9 xor %r9d,%r9d - 66343573: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 - 6634357a: 00 - 6634357b: 45 01 32 add %r14d,(%r10) - 6634357e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) - 66343583: 45 8b 32 mov (%r10),%r14d - 66343586: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 - 6634358d: 00 - 6634358e: 45 85 f6 test %r14d,%r14d - 66343591: 41 0f 9f c1 setg %r9b - 66343595: 45 3b 08 cmp (%r8),%r9d - 66343598: 74 39 je 663435d3 - 6634359a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634359e: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 - 663435a5: 00 - 663435a6: 45 8b 10 mov (%r8),%r10d - 663435a9: 45 85 d2 test %r10d,%r10d - 663435ac: 75 25 jne 663435d3 - 663435ae: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663435b2: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 - 663435b9: 00 - 663435ba: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663435be: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663435c5: 4c 63 06 movslq (%rsi),%r8 - 663435c8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663435cc: 44 89 16 mov %r10d,(%rsi) - 663435cf: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663435d3: 48 83 c0 04 add $0x4,%rax - 663435d7: 48 83 f8 60 cmp $0x60,%rax - 663435db: 0f 85 6f ff ff ff jne 66343550 - 663435e1: 5b pop %rbx - 663435e2: 5e pop %rsi - 663435e3: 5f pop %rdi - 663435e4: 41 5e pop %r14 - 663435e6: c3 retq - 663435e7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663435ee: 00 00 - 663435f0: 48 83 c2 64 add $0x64,%rdx - 663435f4: b8 c8 00 00 00 mov $0xc8,%eax - 663435f9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343600: 44 8b 02 mov (%rdx),%r8d - 66343603: 45 85 c0 test %r8d,%r8d - 66343606: 74 59 je 66343661 - 66343608: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634360c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343610: 45 29 01 sub %r8d,(%r9) - 66343613: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343619: 45 8b 09 mov (%r9),%r9d - 6634361c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343620: 45 85 c9 test %r9d,%r9d - 66343623: 41 0f 9f c1 setg %r9b - 66343627: 45 0f b6 c9 movzbl %r9b,%r9d - 6634362b: 45 3b 08 cmp (%r8),%r9d - 6634362e: 74 31 je 66343661 - 66343630: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343634: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343638: 45 8b 00 mov (%r8),%r8d - 6634363b: 45 85 c0 test %r8d,%r8d - 6634363e: 75 21 jne 66343661 - 66343640: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343644: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343648: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634364c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343653: 4c 63 06 movslq (%rsi),%r8 - 66343656: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634365a: 44 89 16 mov %r10d,(%rsi) - 6634365d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343661: 48 83 c0 08 add $0x8,%rax - 66343665: 48 83 c2 04 add $0x4,%rdx - 66343669: 48 3d 88 01 00 00 cmp $0x188,%rax - 6634366f: 75 8f jne 66343600 - 66343671: 5b pop %rbx - 66343672: 5e pop %rsi - 66343673: 5f pop %rdi - 66343674: 41 5e pop %r14 - 66343676: c3 retq - 66343677: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634367e: 00 00 +00000000663434a0 : + 663434a0: 48 8b 41 10 mov 0x10(%rcx),%rax + 663434a4: 48 8b 50 18 mov 0x18(%rax),%rdx + 663434a8: 44 8b 0a mov (%rdx),%r9d + 663434ab: 45 85 c9 test %r9d,%r9d + 663434ae: 74 77 je 66343527 + 663434b0: 48 8b 50 08 mov 0x8(%rax),%rdx + 663434b4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663434b8: 8b 12 mov (%rdx),%edx + 663434ba: 45 8b 48 08 mov 0x8(%r8),%r9d + 663434be: 41 39 d1 cmp %edx,%r9d + 663434c1: 74 64 je 66343527 + 663434c3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663434c7: 41 89 d3 mov %edx,%r11d + 663434ca: 45 29 cb sub %r9d,%r11d + 663434cd: 48 8b 40 10 mov 0x10(%rax),%rax + 663434d1: 4d 8b 52 10 mov 0x10(%r10),%r10 + 663434d5: 45 01 1a add %r11d,(%r10) + 663434d8: 41 89 50 08 mov %edx,0x8(%r8) + 663434dc: 31 d2 xor %edx,%edx + 663434de: 45 8b 02 mov (%r10),%r8d + 663434e1: 45 85 c0 test %r8d,%r8d + 663434e4: 0f 9f c2 setg %dl + 663434e7: 3b 10 cmp (%rax),%edx + 663434e9: 74 3c je 66343527 + 663434eb: 48 8b 41 20 mov 0x20(%rcx),%rax + 663434ef: 48 8b 40 10 mov 0x10(%rax),%rax + 663434f3: 8b 00 mov (%rax),%eax + 663434f5: 85 c0 test %eax,%eax + 663434f7: 75 2e jne 66343527 + 663434f9: 48 8b 41 28 mov 0x28(%rcx),%rax + 663434fd: 48 8b 0d 2c 44 01 00 mov 0x1442c(%rip),%rcx # 66357930 + 66343504: 4c 8b 05 15 44 01 00 mov 0x14415(%rip),%r8 # 66357920 + 6634350b: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634350f: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343513: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343519: 48 63 01 movslq (%rcx),%rax + 6634351c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66343520: 44 89 09 mov %r9d,(%rcx) + 66343523: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343527: c3 retq + 66343528: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634352f: 00 -0000000066343680 : - 66343680: 41 56 push %r14 - 66343682: 57 push %rdi - 66343683: 56 push %rsi - 66343684: 53 push %rbx - 66343685: 48 8b 3d 94 42 01 00 mov 0x14294(%rip),%rdi # 66357920 - 6634368c: 48 8b 35 9d 42 01 00 mov 0x1429d(%rip),%rsi # 66357930 - 66343693: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343697: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634369b: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 663436a2: 8b 00 mov (%rax),%eax - 663436a4: 85 c0 test %eax,%eax - 663436a6: 0f 84 a4 00 00 00 je 66343750 - 663436ac: 31 c0 xor %eax,%eax - 663436ae: 66 90 xchg %ax,%ax - 663436b0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663436b5: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d - 663436ba: 45 8b 00 mov (%r8),%r8d - 663436bd: 45 39 c8 cmp %r9d,%r8d - 663436c0: 74 71 je 66343733 - 663436c2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663436c6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663436ca: 45 89 c6 mov %r8d,%r14d - 663436cd: 45 29 ce sub %r9d,%r14d - 663436d0: 45 31 c9 xor %r9d,%r9d - 663436d3: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 - 663436da: 00 - 663436db: 45 01 32 add %r14d,(%r10) - 663436de: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) - 663436e3: 45 8b 32 mov (%r10),%r14d - 663436e6: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 - 663436ed: 00 - 663436ee: 45 85 f6 test %r14d,%r14d - 663436f1: 41 0f 9f c1 setg %r9b - 663436f5: 45 3b 08 cmp (%r8),%r9d - 663436f8: 74 39 je 66343733 - 663436fa: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663436fe: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 - 66343705: 00 - 66343706: 45 8b 10 mov (%r8),%r10d - 66343709: 45 85 d2 test %r10d,%r10d - 6634370c: 75 25 jne 66343733 - 6634370e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343712: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 - 66343719: 00 - 6634371a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634371e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343725: 4c 63 06 movslq (%rsi),%r8 - 66343728: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634372c: 44 89 16 mov %r10d,(%rsi) - 6634372f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343733: 48 83 c0 04 add $0x4,%rax - 66343737: 48 83 f8 60 cmp $0x60,%rax - 6634373b: 0f 85 6f ff ff ff jne 663436b0 - 66343741: 5b pop %rbx - 66343742: 5e pop %rsi - 66343743: 5f pop %rdi - 66343744: 41 5e pop %r14 - 66343746: c3 retq - 66343747: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634374e: 00 00 - 66343750: 48 83 c2 64 add $0x64,%rdx - 66343754: b8 c8 00 00 00 mov $0xc8,%eax - 66343759: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343760: 44 8b 02 mov (%rdx),%r8d - 66343763: 45 85 c0 test %r8d,%r8d - 66343766: 74 59 je 663437c1 - 66343768: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634376c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343770: 45 29 01 sub %r8d,(%r9) - 66343773: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343779: 45 8b 09 mov (%r9),%r9d - 6634377c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343780: 45 85 c9 test %r9d,%r9d - 66343783: 41 0f 9f c1 setg %r9b - 66343787: 45 0f b6 c9 movzbl %r9b,%r9d - 6634378b: 45 3b 08 cmp (%r8),%r9d - 6634378e: 74 31 je 663437c1 - 66343790: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343794: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343798: 45 8b 00 mov (%r8),%r8d - 6634379b: 45 85 c0 test %r8d,%r8d - 6634379e: 75 21 jne 663437c1 - 663437a0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663437a4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663437a8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663437ac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663437b3: 4c 63 06 movslq (%rsi),%r8 - 663437b6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663437ba: 44 89 16 mov %r10d,(%rsi) - 663437bd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663437c1: 48 83 c0 08 add $0x8,%rax - 663437c5: 48 83 c2 04 add $0x4,%rdx - 663437c9: 48 3d 88 01 00 00 cmp $0x188,%rax - 663437cf: 75 8f jne 66343760 - 663437d1: 5b pop %rbx - 663437d2: 5e pop %rsi - 663437d3: 5f pop %rdi - 663437d4: 41 5e pop %r14 - 663437d6: c3 retq - 663437d7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663437de: 00 00 +0000000066343530 : + 66343530: 56 push %rsi + 66343531: 53 push %rbx + 66343532: 48 8b 41 10 mov 0x10(%rcx),%rax + 66343536: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634353a: 44 8b 0a mov (%rdx),%r9d + 6634353d: 45 85 c9 test %r9d,%r9d + 66343540: 0f 84 4e 01 00 00 je 66343694 + 66343546: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634354a: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634354e: 48 8b 1d cb 43 01 00 mov 0x143cb(%rip),%rbx # 66357920 + 66343555: 4c 8b 1d d4 43 01 00 mov 0x143d4(%rip),%r11 # 66357930 + 6634355c: 44 8b 4a 10 mov 0x10(%rdx),%r9d + 66343560: 45 8b 00 mov (%r8),%r8d + 66343563: 45 39 c8 cmp %r9d,%r8d + 66343566: 74 5b je 663435c3 + 66343568: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634356c: 44 89 c6 mov %r8d,%esi + 6634356f: 44 29 ce sub %r9d,%esi + 66343572: 45 31 c9 xor %r9d,%r9d + 66343575: 4d 8b 52 20 mov 0x20(%r10),%r10 + 66343579: 41 01 32 add %esi,(%r10) + 6634357c: 44 89 42 10 mov %r8d,0x10(%rdx) + 66343580: 45 8b 02 mov (%r10),%r8d + 66343583: 45 85 c0 test %r8d,%r8d + 66343586: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634358a: 41 0f 9f c1 setg %r9b + 6634358e: 45 3b 08 cmp (%r8),%r9d + 66343591: 74 30 je 663435c3 + 66343593: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343597: 4d 8b 40 20 mov 0x20(%r8),%r8 + 6634359b: 41 8b 30 mov (%r8),%esi + 6634359e: 85 f6 test %esi,%esi + 663435a0: 75 21 jne 663435c3 + 663435a2: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663435a6: 4d 8b 48 20 mov 0x20(%r8),%r9 + 663435aa: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663435ae: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663435b5: 4d 63 03 movslq (%r11),%r8 + 663435b8: 45 8d 50 01 lea 0x1(%r8),%r10d + 663435bc: 45 89 13 mov %r10d,(%r11) + 663435bf: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 663435c3: 4c 8b 40 10 mov 0x10(%rax),%r8 + 663435c7: 44 8b 4a 14 mov 0x14(%rdx),%r9d + 663435cb: 45 8b 00 mov (%r8),%r8d + 663435ce: 45 39 c8 cmp %r9d,%r8d + 663435d1: 74 5c je 6634362f + 663435d3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663435d7: 44 89 c6 mov %r8d,%esi + 663435da: 44 29 ce sub %r9d,%esi + 663435dd: 45 31 c9 xor %r9d,%r9d + 663435e0: 4d 8b 52 28 mov 0x28(%r10),%r10 + 663435e4: 41 01 32 add %esi,(%r10) + 663435e7: 44 89 42 14 mov %r8d,0x14(%rdx) + 663435eb: 45 8b 12 mov (%r10),%r10d + 663435ee: 4c 8b 40 28 mov 0x28(%rax),%r8 + 663435f2: 45 85 d2 test %r10d,%r10d + 663435f5: 41 0f 9f c1 setg %r9b + 663435f9: 45 3b 08 cmp (%r8),%r9d + 663435fc: 74 31 je 6634362f + 663435fe: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343602: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66343606: 45 8b 08 mov (%r8),%r9d + 66343609: 45 85 c9 test %r9d,%r9d + 6634360c: 75 21 jne 6634362f + 6634360e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343612: 4d 8b 48 28 mov 0x28(%r8),%r9 + 66343616: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634361a: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343621: 4d 63 03 movslq (%r11),%r8 + 66343624: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343628: 45 89 13 mov %r10d,(%r11) + 6634362b: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 6634362f: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66343633: 44 8b 4a 18 mov 0x18(%rdx),%r9d + 66343637: 45 8b 00 mov (%r8),%r8d + 6634363a: 45 39 c8 cmp %r9d,%r8d + 6634363d: 74 55 je 66343694 + 6634363f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343643: 44 89 c6 mov %r8d,%esi + 66343646: 44 29 ce sub %r9d,%esi + 66343649: 48 8b 40 30 mov 0x30(%rax),%rax + 6634364d: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66343651: 41 01 32 add %esi,(%r10) + 66343654: 44 89 42 18 mov %r8d,0x18(%rdx) + 66343658: 31 d2 xor %edx,%edx + 6634365a: 45 8b 02 mov (%r10),%r8d + 6634365d: 45 85 c0 test %r8d,%r8d + 66343660: 0f 9f c2 setg %dl + 66343663: 3b 10 cmp (%rax),%edx + 66343665: 74 2d je 66343694 + 66343667: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634366b: 48 8b 40 30 mov 0x30(%rax),%rax + 6634366f: 8b 00 mov (%rax),%eax + 66343671: 85 c0 test %eax,%eax + 66343673: 75 1f jne 66343694 + 66343675: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343679: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634367d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343681: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343687: 49 63 03 movslq (%r11),%rax + 6634368a: 8d 48 01 lea 0x1(%rax),%ecx + 6634368d: 41 89 0b mov %ecx,(%r11) + 66343690: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66343694: 5b pop %rbx + 66343695: 5e pop %rsi + 66343696: c3 retq + 66343697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634369e: 00 00 -00000000663437e0 : - 663437e0: 41 56 push %r14 - 663437e2: 57 push %rdi - 663437e3: 56 push %rsi - 663437e4: 53 push %rbx - 663437e5: 48 8b 3d 34 41 01 00 mov 0x14134(%rip),%rdi # 66357920 - 663437ec: 48 8b 35 3d 41 01 00 mov 0x1413d(%rip),%rsi # 66357930 - 663437f3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663437f7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663437fb: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 66343802: 8b 00 mov (%rax),%eax - 66343804: 85 c0 test %eax,%eax - 66343806: 0f 84 a4 00 00 00 je 663438b0 - 6634380c: 31 c0 xor %eax,%eax - 6634380e: 66 90 xchg %ax,%ax - 66343810: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343815: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d - 6634381a: 45 8b 00 mov (%r8),%r8d - 6634381d: 45 39 c8 cmp %r9d,%r8d - 66343820: 74 71 je 66343893 - 66343822: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343826: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634382a: 45 89 c6 mov %r8d,%r14d - 6634382d: 45 29 ce sub %r9d,%r14d - 66343830: 45 31 c9 xor %r9d,%r9d - 66343833: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 - 6634383a: 00 - 6634383b: 45 01 32 add %r14d,(%r10) - 6634383e: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) - 66343843: 45 8b 32 mov (%r10),%r14d - 66343846: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 - 6634384d: 00 - 6634384e: 45 85 f6 test %r14d,%r14d - 66343851: 41 0f 9f c1 setg %r9b - 66343855: 45 3b 08 cmp (%r8),%r9d - 66343858: 74 39 je 66343893 - 6634385a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634385e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 - 66343865: 00 - 66343866: 45 8b 10 mov (%r8),%r10d - 66343869: 45 85 d2 test %r10d,%r10d - 6634386c: 75 25 jne 66343893 - 6634386e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343872: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 - 66343879: 00 - 6634387a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634387e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343885: 4c 63 06 movslq (%rsi),%r8 - 66343888: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634388c: 44 89 16 mov %r10d,(%rsi) - 6634388f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343893: 48 83 c0 04 add $0x4,%rax - 66343897: 48 83 f8 40 cmp $0x40,%rax - 6634389b: 0f 85 6f ff ff ff jne 66343810 - 663438a1: 5b pop %rbx - 663438a2: 5e pop %rsi - 663438a3: 5f pop %rdi - 663438a4: 41 5e pop %r14 - 663438a6: c3 retq - 663438a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663438ae: 00 00 - 663438b0: 48 83 c2 44 add $0x44,%rdx - 663438b4: b8 88 00 00 00 mov $0x88,%eax - 663438b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663438c0: 44 8b 02 mov (%rdx),%r8d - 663438c3: 45 85 c0 test %r8d,%r8d - 663438c6: 74 59 je 66343921 - 663438c8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663438cc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663438d0: 45 29 01 sub %r8d,(%r9) - 663438d3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663438d9: 45 8b 09 mov (%r9),%r9d - 663438dc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663438e0: 45 85 c9 test %r9d,%r9d - 663438e3: 41 0f 9f c1 setg %r9b - 663438e7: 45 0f b6 c9 movzbl %r9b,%r9d - 663438eb: 45 3b 08 cmp (%r8),%r9d - 663438ee: 74 31 je 66343921 - 663438f0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663438f4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663438f8: 45 8b 00 mov (%r8),%r8d - 663438fb: 45 85 c0 test %r8d,%r8d - 663438fe: 75 21 jne 66343921 - 66343900: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343904: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343908: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634390c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343913: 4c 63 06 movslq (%rsi),%r8 - 66343916: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634391a: 44 89 16 mov %r10d,(%rsi) - 6634391d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343921: 48 83 c0 08 add $0x8,%rax - 66343925: 48 83 c2 04 add $0x4,%rdx - 66343929: 48 3d 08 01 00 00 cmp $0x108,%rax - 6634392f: 75 8f jne 663438c0 - 66343931: 5b pop %rbx - 66343932: 5e pop %rsi - 66343933: 5f pop %rdi - 66343934: 41 5e pop %r14 - 66343936: c3 retq - 66343937: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634393e: 00 00 +00000000663436a0 : + 663436a0: 56 push %rsi + 663436a1: 53 push %rbx + 663436a2: 48 8b 41 10 mov 0x10(%rcx),%rax + 663436a6: 48 8b 50 28 mov 0x28(%rax),%rdx + 663436aa: 44 8b 1a mov (%rdx),%r11d + 663436ad: 45 85 db test %r11d,%r11d + 663436b0: 0f 84 e3 00 00 00 je 66343799 + 663436b6: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663436ba: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663436be: 48 8b 1d 5b 42 01 00 mov 0x1425b(%rip),%rbx # 66357920 + 663436c5: 4c 8b 1d 64 42 01 00 mov 0x14264(%rip),%r11 # 66357930 + 663436cc: 44 8b 4a 0c mov 0xc(%rdx),%r9d + 663436d0: 45 8b 00 mov (%r8),%r8d + 663436d3: 45 39 c8 cmp %r9d,%r8d + 663436d6: 74 5c je 66343734 + 663436d8: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663436dc: 44 89 c6 mov %r8d,%esi + 663436df: 44 29 ce sub %r9d,%esi + 663436e2: 45 31 c9 xor %r9d,%r9d + 663436e5: 4d 8b 52 18 mov 0x18(%r10),%r10 + 663436e9: 41 01 32 add %esi,(%r10) + 663436ec: 44 89 42 0c mov %r8d,0xc(%rdx) + 663436f0: 45 8b 12 mov (%r10),%r10d + 663436f3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663436f7: 45 85 d2 test %r10d,%r10d + 663436fa: 41 0f 9f c1 setg %r9b + 663436fe: 45 3b 08 cmp (%r8),%r9d + 66343701: 74 31 je 66343734 + 66343703: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343707: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634370b: 45 8b 08 mov (%r8),%r9d + 6634370e: 45 85 c9 test %r9d,%r9d + 66343711: 75 21 jne 66343734 + 66343713: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343717: 4d 8b 48 18 mov 0x18(%r8),%r9 + 6634371b: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634371f: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343726: 4d 63 03 movslq (%r11),%r8 + 66343729: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634372d: 45 89 13 mov %r10d,(%r11) + 66343730: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 66343734: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66343738: 44 8b 4a 10 mov 0x10(%rdx),%r9d + 6634373c: 45 8b 00 mov (%r8),%r8d + 6634373f: 45 39 c8 cmp %r9d,%r8d + 66343742: 74 55 je 66343799 + 66343744: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343748: 44 89 c6 mov %r8d,%esi + 6634374b: 44 29 ce sub %r9d,%esi + 6634374e: 48 8b 40 20 mov 0x20(%rax),%rax + 66343752: 4d 8b 52 20 mov 0x20(%r10),%r10 + 66343756: 41 01 32 add %esi,(%r10) + 66343759: 44 89 42 10 mov %r8d,0x10(%rdx) + 6634375d: 31 d2 xor %edx,%edx + 6634375f: 45 8b 02 mov (%r10),%r8d + 66343762: 45 85 c0 test %r8d,%r8d + 66343765: 0f 9f c2 setg %dl + 66343768: 3b 10 cmp (%rax),%edx + 6634376a: 74 2d je 66343799 + 6634376c: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343770: 48 8b 40 20 mov 0x20(%rax),%rax + 66343774: 8b 00 mov (%rax),%eax + 66343776: 85 c0 test %eax,%eax + 66343778: 75 1f jne 66343799 + 6634377a: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634377e: 48 8b 50 20 mov 0x20(%rax),%rdx + 66343782: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343786: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634378c: 49 63 03 movslq (%r11),%rax + 6634378f: 8d 48 01 lea 0x1(%rax),%ecx + 66343792: 41 89 0b mov %ecx,(%r11) + 66343795: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66343799: 5b pop %rbx + 6634379a: 5e pop %rsi + 6634379b: c3 retq + 6634379c: 0f 1f 40 00 nopl 0x0(%rax) -0000000066343940 : - 66343940: 41 56 push %r14 - 66343942: 57 push %rdi - 66343943: 56 push %rsi - 66343944: 53 push %rbx - 66343945: 48 8b 3d d4 3f 01 00 mov 0x13fd4(%rip),%rdi # 66357920 - 6634394c: 48 8b 35 dd 3f 01 00 mov 0x13fdd(%rip),%rsi # 66357930 - 66343953: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343957: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634395b: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 66343962: 8b 00 mov (%rax),%eax - 66343964: 85 c0 test %eax,%eax - 66343966: 0f 84 a4 00 00 00 je 66343a10 - 6634396c: 31 c0 xor %eax,%eax - 6634396e: 66 90 xchg %ax,%ax - 66343970: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343975: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d - 6634397a: 45 8b 00 mov (%r8),%r8d - 6634397d: 45 39 c8 cmp %r9d,%r8d - 66343980: 74 71 je 663439f3 - 66343982: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343986: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634398a: 45 89 c6 mov %r8d,%r14d - 6634398d: 45 29 ce sub %r9d,%r14d - 66343990: 45 31 c9 xor %r9d,%r9d - 66343993: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 - 6634399a: 00 - 6634399b: 45 01 32 add %r14d,(%r10) - 6634399e: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) - 663439a3: 45 8b 32 mov (%r10),%r14d - 663439a6: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 - 663439ad: 00 - 663439ae: 45 85 f6 test %r14d,%r14d - 663439b1: 41 0f 9f c1 setg %r9b - 663439b5: 45 3b 08 cmp (%r8),%r9d - 663439b8: 74 39 je 663439f3 - 663439ba: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663439be: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 - 663439c5: 00 - 663439c6: 45 8b 10 mov (%r8),%r10d - 663439c9: 45 85 d2 test %r10d,%r10d - 663439cc: 75 25 jne 663439f3 - 663439ce: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663439d2: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 - 663439d9: 00 - 663439da: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663439de: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663439e5: 4c 63 06 movslq (%rsi),%r8 - 663439e8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663439ec: 44 89 16 mov %r10d,(%rsi) - 663439ef: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663439f3: 48 83 c0 04 add $0x4,%rax - 663439f7: 48 83 f8 40 cmp $0x40,%rax - 663439fb: 0f 85 6f ff ff ff jne 66343970 - 66343a01: 5b pop %rbx - 66343a02: 5e pop %rsi - 66343a03: 5f pop %rdi - 66343a04: 41 5e pop %r14 - 66343a06: c3 retq - 66343a07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343a0e: 00 00 - 66343a10: 48 83 c2 44 add $0x44,%rdx - 66343a14: b8 88 00 00 00 mov $0x88,%eax - 66343a19: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343a20: 44 8b 02 mov (%rdx),%r8d - 66343a23: 45 85 c0 test %r8d,%r8d - 66343a26: 74 59 je 66343a81 - 66343a28: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343a2c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343a30: 45 29 01 sub %r8d,(%r9) - 66343a33: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343a39: 45 8b 09 mov (%r9),%r9d - 66343a3c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343a40: 45 85 c9 test %r9d,%r9d - 66343a43: 41 0f 9f c1 setg %r9b - 66343a47: 45 0f b6 c9 movzbl %r9b,%r9d - 66343a4b: 45 3b 08 cmp (%r8),%r9d - 66343a4e: 74 31 je 66343a81 - 66343a50: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343a54: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343a58: 45 8b 00 mov (%r8),%r8d - 66343a5b: 45 85 c0 test %r8d,%r8d - 66343a5e: 75 21 jne 66343a81 - 66343a60: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343a64: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343a68: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343a6c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343a73: 4c 63 06 movslq (%rsi),%r8 - 66343a76: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343a7a: 44 89 16 mov %r10d,(%rsi) - 66343a7d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343a81: 48 83 c0 08 add $0x8,%rax - 66343a85: 48 83 c2 04 add $0x4,%rdx - 66343a89: 48 3d 08 01 00 00 cmp $0x108,%rax - 66343a8f: 75 8f jne 66343a20 - 66343a91: 5b pop %rbx - 66343a92: 5e pop %rsi - 66343a93: 5f pop %rdi - 66343a94: 41 5e pop %r14 - 66343a96: c3 retq - 66343a97: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343a9e: 00 00 +00000000663437a0 : + 663437a0: 41 56 push %r14 + 663437a2: 57 push %rdi + 663437a3: 56 push %rsi + 663437a4: 53 push %rbx + 663437a5: 48 8b 3d 74 41 01 00 mov 0x14174(%rip),%rdi # 66357920 + 663437ac: 48 8b 35 7d 41 01 00 mov 0x1417d(%rip),%rsi # 66357930 + 663437b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663437b7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663437bb: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 663437c2: 8b 00 mov (%rax),%eax + 663437c4: 85 c0 test %eax,%eax + 663437c6: 0f 84 a4 00 00 00 je 66343870 + 663437cc: 31 c0 xor %eax,%eax + 663437ce: 66 90 xchg %ax,%ax + 663437d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 663437d5: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d + 663437dc: 00 + 663437dd: 45 8b 00 mov (%r8),%r8d + 663437e0: 45 39 c8 cmp %r9d,%r8d + 663437e3: 74 74 je 66343859 + 663437e5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663437e9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663437ed: 45 89 c6 mov %r8d,%r14d + 663437f0: 45 29 ce sub %r9d,%r14d + 663437f3: 45 31 c9 xor %r9d,%r9d + 663437f6: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 + 663437fd: 00 + 663437fe: 45 01 32 add %r14d,(%r10) + 66343801: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) + 66343808: 00 + 66343809: 45 8b 32 mov (%r10),%r14d + 6634380c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 + 66343813: 00 + 66343814: 45 85 f6 test %r14d,%r14d + 66343817: 41 0f 9f c1 setg %r9b + 6634381b: 45 3b 08 cmp (%r8),%r9d + 6634381e: 74 39 je 66343859 + 66343820: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343824: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 + 6634382b: 00 + 6634382c: 45 8b 10 mov (%r8),%r10d + 6634382f: 45 85 d2 test %r10d,%r10d + 66343832: 75 25 jne 66343859 + 66343834: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343838: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 + 6634383f: 00 + 66343840: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343844: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634384b: 4c 63 06 movslq (%rsi),%r8 + 6634384e: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343852: 44 89 16 mov %r10d,(%rsi) + 66343855: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343859: 48 83 c0 04 add $0x4,%rax + 6634385d: 48 3d 00 01 00 00 cmp $0x100,%rax + 66343863: 0f 85 67 ff ff ff jne 663437d0 + 66343869: 5b pop %rbx + 6634386a: 5e pop %rsi + 6634386b: 5f pop %rdi + 6634386c: 41 5e pop %r14 + 6634386e: c3 retq + 6634386f: 90 nop + 66343870: 48 81 c2 04 01 00 00 add $0x104,%rdx + 66343877: b8 08 02 00 00 mov $0x208,%eax + 6634387c: 0f 1f 40 00 nopl 0x0(%rax) + 66343880: 44 8b 02 mov (%rdx),%r8d + 66343883: 45 85 c0 test %r8d,%r8d + 66343886: 74 59 je 663438e1 + 66343888: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634388c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66343890: 45 29 01 sub %r8d,(%r9) + 66343893: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66343899: 45 8b 09 mov (%r9),%r9d + 6634389c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 663438a0: 45 85 c9 test %r9d,%r9d + 663438a3: 41 0f 9f c1 setg %r9b + 663438a7: 45 0f b6 c9 movzbl %r9b,%r9d + 663438ab: 45 3b 08 cmp (%r8),%r9d + 663438ae: 74 31 je 663438e1 + 663438b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663438b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663438b8: 45 8b 00 mov (%r8),%r8d + 663438bb: 45 85 c0 test %r8d,%r8d + 663438be: 75 21 jne 663438e1 + 663438c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663438c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 663438c8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663438cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663438d3: 4c 63 06 movslq (%rsi),%r8 + 663438d6: 45 8d 50 01 lea 0x1(%r8),%r10d + 663438da: 44 89 16 mov %r10d,(%rsi) + 663438dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663438e1: 48 83 c0 08 add $0x8,%rax + 663438e5: 48 83 c2 04 add $0x4,%rdx + 663438e9: 48 3d 08 04 00 00 cmp $0x408,%rax + 663438ef: 75 8f jne 66343880 + 663438f1: 5b pop %rbx + 663438f2: 5e pop %rsi + 663438f3: 5f pop %rdi + 663438f4: 41 5e pop %r14 + 663438f6: c3 retq + 663438f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663438fe: 00 00 -0000000066343aa0 : - 66343aa0: 48 8b 41 10 mov 0x10(%rcx),%rax - 66343aa4: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343aa8: 4c 8b 48 18 mov 0x18(%rax),%r9 - 66343aac: 44 8b 42 08 mov 0x8(%rdx),%r8d - 66343ab0: 45 8b 09 mov (%r9),%r9d - 66343ab3: 45 85 c9 test %r9d,%r9d - 66343ab6: 75 2b jne 66343ae3 - 66343ab8: 45 85 c0 test %r8d,%r8d - 66343abb: 74 25 je 66343ae2 - 66343abd: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343ac1: 48 8b 40 10 mov 0x10(%rax),%rax - 66343ac5: 4d 8b 49 10 mov 0x10(%r9),%r9 - 66343ac9: 45 29 01 sub %r8d,(%r9) - 66343acc: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) - 66343ad3: 41 8b 11 mov (%r9),%edx - 66343ad6: 85 d2 test %edx,%edx - 66343ad8: 0f 9f c2 setg %dl - 66343adb: 0f b6 d2 movzbl %dl,%edx - 66343ade: 3b 10 cmp (%rax),%edx - 66343ae0: 75 36 jne 66343b18 - 66343ae2: c3 retq - 66343ae3: 4c 8b 48 08 mov 0x8(%rax),%r9 - 66343ae7: 45 8b 09 mov (%r9),%r9d - 66343aea: 45 39 c1 cmp %r8d,%r9d - 66343aed: 74 f3 je 66343ae2 - 66343aef: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343af3: 45 89 cb mov %r9d,%r11d - 66343af6: 45 29 c3 sub %r8d,%r11d - 66343af9: 48 8b 40 10 mov 0x10(%rax),%rax - 66343afd: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66343b01: 45 01 1a add %r11d,(%r10) - 66343b04: 44 89 4a 08 mov %r9d,0x8(%rdx) - 66343b08: 45 8b 02 mov (%r10),%r8d - 66343b0b: 45 85 c0 test %r8d,%r8d - 66343b0e: 0f 9f c2 setg %dl - 66343b11: 0f b6 d2 movzbl %dl,%edx - 66343b14: 3b 10 cmp (%rax),%edx - 66343b16: 74 ca je 66343ae2 - 66343b18: 48 8b 41 20 mov 0x20(%rcx),%rax - 66343b1c: 48 8b 40 10 mov 0x10(%rax),%rax - 66343b20: 8b 00 mov (%rax),%eax - 66343b22: 85 c0 test %eax,%eax - 66343b24: 75 bc jne 66343ae2 - 66343b26: 48 8b 41 28 mov 0x28(%rcx),%rax - 66343b2a: 48 8b 0d ff 3d 01 00 mov 0x13dff(%rip),%rcx # 66357930 - 66343b31: 4c 8b 05 e8 3d 01 00 mov 0x13de8(%rip),%r8 # 66357920 - 66343b38: 48 8b 50 10 mov 0x10(%rax),%rdx - 66343b3c: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343b40: c7 00 01 00 00 00 movl $0x1,(%rax) - 66343b46: 48 63 01 movslq (%rcx),%rax - 66343b49: 44 8d 48 01 lea 0x1(%rax),%r9d - 66343b4d: 44 89 09 mov %r9d,(%rcx) - 66343b50: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66343b54: c3 retq - 66343b55: 90 nop - 66343b56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66343b5d: 00 00 00 +0000000066343900 : + 66343900: 41 56 push %r14 + 66343902: 57 push %rdi + 66343903: 56 push %rsi + 66343904: 53 push %rbx + 66343905: 48 8b 3d 14 40 01 00 mov 0x14014(%rip),%rdi # 66357920 + 6634390c: 48 8b 35 1d 40 01 00 mov 0x1401d(%rip),%rsi # 66357930 + 66343913: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343917: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634391b: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 66343922: 8b 00 mov (%rax),%eax + 66343924: 85 c0 test %eax,%eax + 66343926: 0f 84 a4 00 00 00 je 663439d0 + 6634392c: 31 c0 xor %eax,%eax + 6634392e: 66 90 xchg %ax,%ax + 66343930: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66343935: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d + 6634393c: 00 + 6634393d: 45 8b 00 mov (%r8),%r8d + 66343940: 45 39 c8 cmp %r9d,%r8d + 66343943: 74 74 je 663439b9 + 66343945: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343949: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634394d: 45 89 c6 mov %r8d,%r14d + 66343950: 45 29 ce sub %r9d,%r14d + 66343953: 45 31 c9 xor %r9d,%r9d + 66343956: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 + 6634395d: 00 + 6634395e: 45 01 32 add %r14d,(%r10) + 66343961: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) + 66343968: 00 + 66343969: 45 8b 32 mov (%r10),%r14d + 6634396c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 + 66343973: 00 + 66343974: 45 85 f6 test %r14d,%r14d + 66343977: 41 0f 9f c1 setg %r9b + 6634397b: 45 3b 08 cmp (%r8),%r9d + 6634397e: 74 39 je 663439b9 + 66343980: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343984: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 + 6634398b: 00 + 6634398c: 45 8b 10 mov (%r8),%r10d + 6634398f: 45 85 d2 test %r10d,%r10d + 66343992: 75 25 jne 663439b9 + 66343994: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343998: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 + 6634399f: 00 + 663439a0: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663439a4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663439ab: 4c 63 06 movslq (%rsi),%r8 + 663439ae: 45 8d 50 01 lea 0x1(%r8),%r10d + 663439b2: 44 89 16 mov %r10d,(%rsi) + 663439b5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663439b9: 48 83 c0 04 add $0x4,%rax + 663439bd: 48 3d 00 01 00 00 cmp $0x100,%rax + 663439c3: 0f 85 67 ff ff ff jne 66343930 + 663439c9: 5b pop %rbx + 663439ca: 5e pop %rsi + 663439cb: 5f pop %rdi + 663439cc: 41 5e pop %r14 + 663439ce: c3 retq + 663439cf: 90 nop + 663439d0: 48 81 c2 04 01 00 00 add $0x104,%rdx + 663439d7: b8 08 02 00 00 mov $0x208,%eax + 663439dc: 0f 1f 40 00 nopl 0x0(%rax) + 663439e0: 44 8b 02 mov (%rdx),%r8d + 663439e3: 45 85 c0 test %r8d,%r8d + 663439e6: 74 59 je 66343a41 + 663439e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663439ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 663439f0: 45 29 01 sub %r8d,(%r9) + 663439f3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663439f9: 45 8b 09 mov (%r9),%r9d + 663439fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66343a00: 45 85 c9 test %r9d,%r9d + 66343a03: 41 0f 9f c1 setg %r9b + 66343a07: 45 0f b6 c9 movzbl %r9b,%r9d + 66343a0b: 45 3b 08 cmp (%r8),%r9d + 66343a0e: 74 31 je 66343a41 + 66343a10: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343a14: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66343a18: 45 8b 00 mov (%r8),%r8d + 66343a1b: 45 85 c0 test %r8d,%r8d + 66343a1e: 75 21 jne 66343a41 + 66343a20: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343a24: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66343a28: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343a2c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343a33: 4c 63 06 movslq (%rsi),%r8 + 66343a36: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343a3a: 44 89 16 mov %r10d,(%rsi) + 66343a3d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343a41: 48 83 c0 08 add $0x8,%rax + 66343a45: 48 83 c2 04 add $0x4,%rdx + 66343a49: 48 3d 08 04 00 00 cmp $0x408,%rax + 66343a4f: 75 8f jne 663439e0 + 66343a51: 5b pop %rbx + 66343a52: 5e pop %rsi + 66343a53: 5f pop %rdi + 66343a54: 41 5e pop %r14 + 66343a56: c3 retq + 66343a57: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66343a5e: 00 00 -0000000066343b60 : - 66343b60: 48 8b 41 10 mov 0x10(%rcx),%rax - 66343b64: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343b68: 4c 8b 48 18 mov 0x18(%rax),%r9 - 66343b6c: 44 8b 42 08 mov 0x8(%rdx),%r8d - 66343b70: 45 8b 09 mov (%r9),%r9d - 66343b73: 45 85 c9 test %r9d,%r9d - 66343b76: 75 2b jne 66343ba3 - 66343b78: 45 85 c0 test %r8d,%r8d - 66343b7b: 74 25 je 66343ba2 - 66343b7d: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343b81: 48 8b 40 10 mov 0x10(%rax),%rax - 66343b85: 4d 8b 49 10 mov 0x10(%r9),%r9 - 66343b89: 45 29 01 sub %r8d,(%r9) - 66343b8c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) - 66343b93: 41 8b 11 mov (%r9),%edx - 66343b96: 85 d2 test %edx,%edx - 66343b98: 0f 9f c2 setg %dl - 66343b9b: 0f b6 d2 movzbl %dl,%edx - 66343b9e: 3b 10 cmp (%rax),%edx - 66343ba0: 75 36 jne 66343bd8 - 66343ba2: c3 retq - 66343ba3: 4c 8b 48 08 mov 0x8(%rax),%r9 - 66343ba7: 45 8b 09 mov (%r9),%r9d - 66343baa: 45 39 c1 cmp %r8d,%r9d - 66343bad: 74 f3 je 66343ba2 - 66343baf: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343bb3: 45 89 cb mov %r9d,%r11d - 66343bb6: 45 29 c3 sub %r8d,%r11d - 66343bb9: 48 8b 40 10 mov 0x10(%rax),%rax - 66343bbd: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66343bc1: 45 01 1a add %r11d,(%r10) - 66343bc4: 44 89 4a 08 mov %r9d,0x8(%rdx) - 66343bc8: 45 8b 02 mov (%r10),%r8d - 66343bcb: 45 85 c0 test %r8d,%r8d - 66343bce: 0f 9f c2 setg %dl - 66343bd1: 0f b6 d2 movzbl %dl,%edx - 66343bd4: 3b 10 cmp (%rax),%edx - 66343bd6: 74 ca je 66343ba2 - 66343bd8: 48 8b 41 20 mov 0x20(%rcx),%rax - 66343bdc: 48 8b 40 10 mov 0x10(%rax),%rax - 66343be0: 8b 00 mov (%rax),%eax - 66343be2: 85 c0 test %eax,%eax - 66343be4: 75 bc jne 66343ba2 - 66343be6: 48 8b 41 28 mov 0x28(%rcx),%rax - 66343bea: 48 8b 0d 3f 3d 01 00 mov 0x13d3f(%rip),%rcx # 66357930 - 66343bf1: 4c 8b 05 28 3d 01 00 mov 0x13d28(%rip),%r8 # 66357920 - 66343bf8: 48 8b 50 10 mov 0x10(%rax),%rdx - 66343bfc: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343c00: c7 00 01 00 00 00 movl $0x1,(%rax) - 66343c06: 48 63 01 movslq (%rcx),%rax - 66343c09: 44 8d 48 01 lea 0x1(%rax),%r9d - 66343c0d: 44 89 09 mov %r9d,(%rcx) - 66343c10: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66343c14: c3 retq - 66343c15: 90 nop - 66343c16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66343c1d: 00 00 00 +0000000066343a60 : + 66343a60: 41 56 push %r14 + 66343a62: 57 push %rdi + 66343a63: 56 push %rsi + 66343a64: 53 push %rbx + 66343a65: 48 8b 3d b4 3e 01 00 mov 0x13eb4(%rip),%rdi # 66357920 + 66343a6c: 48 8b 35 bd 3e 01 00 mov 0x13ebd(%rip),%rsi # 66357930 + 66343a73: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343a77: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343a7b: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 66343a82: 8b 00 mov (%rax),%eax + 66343a84: 85 c0 test %eax,%eax + 66343a86: 0f 84 a4 00 00 00 je 66343b30 + 66343a8c: 31 c0 xor %eax,%eax + 66343a8e: 66 90 xchg %ax,%ax + 66343a90: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66343a95: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d + 66343a9c: 00 + 66343a9d: 45 8b 00 mov (%r8),%r8d + 66343aa0: 45 39 c8 cmp %r9d,%r8d + 66343aa3: 74 74 je 66343b19 + 66343aa5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343aa9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66343aad: 45 89 c6 mov %r8d,%r14d + 66343ab0: 45 29 ce sub %r9d,%r14d + 66343ab3: 45 31 c9 xor %r9d,%r9d + 66343ab6: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 + 66343abd: 00 + 66343abe: 45 01 32 add %r14d,(%r10) + 66343ac1: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) + 66343ac8: 00 + 66343ac9: 45 8b 32 mov (%r10),%r14d + 66343acc: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 + 66343ad3: 00 + 66343ad4: 45 85 f6 test %r14d,%r14d + 66343ad7: 41 0f 9f c1 setg %r9b + 66343adb: 45 3b 08 cmp (%r8),%r9d + 66343ade: 74 39 je 66343b19 + 66343ae0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343ae4: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 + 66343aeb: 00 + 66343aec: 45 8b 10 mov (%r8),%r10d + 66343aef: 45 85 d2 test %r10d,%r10d + 66343af2: 75 25 jne 66343b19 + 66343af4: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343af8: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 + 66343aff: 00 + 66343b00: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343b04: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343b0b: 4c 63 06 movslq (%rsi),%r8 + 66343b0e: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343b12: 44 89 16 mov %r10d,(%rsi) + 66343b15: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343b19: 48 83 c0 04 add $0x4,%rax + 66343b1d: 48 3d c0 00 00 00 cmp $0xc0,%rax + 66343b23: 0f 85 67 ff ff ff jne 66343a90 + 66343b29: 5b pop %rbx + 66343b2a: 5e pop %rsi + 66343b2b: 5f pop %rdi + 66343b2c: 41 5e pop %r14 + 66343b2e: c3 retq + 66343b2f: 90 nop + 66343b30: 48 81 c2 c4 00 00 00 add $0xc4,%rdx + 66343b37: b8 88 01 00 00 mov $0x188,%eax + 66343b3c: 0f 1f 40 00 nopl 0x0(%rax) + 66343b40: 44 8b 02 mov (%rdx),%r8d + 66343b43: 45 85 c0 test %r8d,%r8d + 66343b46: 74 59 je 66343ba1 + 66343b48: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66343b4c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66343b50: 45 29 01 sub %r8d,(%r9) + 66343b53: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66343b59: 45 8b 09 mov (%r9),%r9d + 66343b5c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66343b60: 45 85 c9 test %r9d,%r9d + 66343b63: 41 0f 9f c1 setg %r9b + 66343b67: 45 0f b6 c9 movzbl %r9b,%r9d + 66343b6b: 45 3b 08 cmp (%r8),%r9d + 66343b6e: 74 31 je 66343ba1 + 66343b70: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343b74: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66343b78: 45 8b 00 mov (%r8),%r8d + 66343b7b: 45 85 c0 test %r8d,%r8d + 66343b7e: 75 21 jne 66343ba1 + 66343b80: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343b84: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66343b88: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343b8c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343b93: 4c 63 06 movslq (%rsi),%r8 + 66343b96: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343b9a: 44 89 16 mov %r10d,(%rsi) + 66343b9d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343ba1: 48 83 c0 08 add $0x8,%rax + 66343ba5: 48 83 c2 04 add $0x4,%rdx + 66343ba9: 48 3d 08 03 00 00 cmp $0x308,%rax + 66343baf: 75 8f jne 66343b40 + 66343bb1: 5b pop %rbx + 66343bb2: 5e pop %rsi + 66343bb3: 5f pop %rdi + 66343bb4: 41 5e pop %r14 + 66343bb6: c3 retq + 66343bb7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66343bbe: 00 00 -0000000066343c20 : - 66343c20: 41 56 push %r14 - 66343c22: 57 push %rdi - 66343c23: 56 push %rsi - 66343c24: 53 push %rbx - 66343c25: 48 8b 3d f4 3c 01 00 mov 0x13cf4(%rip),%rdi # 66357920 - 66343c2c: 48 8b 35 fd 3c 01 00 mov 0x13cfd(%rip),%rsi # 66357930 - 66343c33: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343c37: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343c3b: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66343c42: 8b 00 mov (%rax),%eax - 66343c44: 85 c0 test %eax,%eax - 66343c46: 0f 84 a4 00 00 00 je 66343cf0 - 66343c4c: 31 c0 xor %eax,%eax - 66343c4e: 66 90 xchg %ax,%ax - 66343c50: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343c55: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d - 66343c5a: 45 8b 00 mov (%r8),%r8d - 66343c5d: 45 39 c8 cmp %r9d,%r8d - 66343c60: 74 71 je 66343cd3 - 66343c62: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343c66: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343c6a: 45 89 c6 mov %r8d,%r14d - 66343c6d: 45 29 ce sub %r9d,%r14d - 66343c70: 45 31 c9 xor %r9d,%r9d - 66343c73: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 - 66343c7a: 00 - 66343c7b: 45 01 32 add %r14d,(%r10) - 66343c7e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) - 66343c83: 45 8b 32 mov (%r10),%r14d - 66343c86: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 - 66343c8d: 00 - 66343c8e: 45 85 f6 test %r14d,%r14d - 66343c91: 41 0f 9f c1 setg %r9b - 66343c95: 45 3b 08 cmp (%r8),%r9d - 66343c98: 74 39 je 66343cd3 - 66343c9a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343c9e: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 - 66343ca5: 00 - 66343ca6: 45 8b 10 mov (%r8),%r10d - 66343ca9: 45 85 d2 test %r10d,%r10d - 66343cac: 75 25 jne 66343cd3 - 66343cae: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343cb2: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 - 66343cb9: 00 - 66343cba: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343cbe: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343cc5: 4c 63 06 movslq (%rsi),%r8 - 66343cc8: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343ccc: 44 89 16 mov %r10d,(%rsi) - 66343ccf: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343cd3: 48 83 c0 04 add $0x4,%rax - 66343cd7: 48 83 f8 3c cmp $0x3c,%rax - 66343cdb: 0f 85 6f ff ff ff jne 66343c50 - 66343ce1: 5b pop %rbx - 66343ce2: 5e pop %rsi - 66343ce3: 5f pop %rdi - 66343ce4: 41 5e pop %r14 - 66343ce6: c3 retq - 66343ce7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343cee: 00 00 - 66343cf0: 48 83 c2 40 add $0x40,%rdx - 66343cf4: b8 80 00 00 00 mov $0x80,%eax - 66343cf9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343d00: 44 8b 02 mov (%rdx),%r8d - 66343d03: 45 85 c0 test %r8d,%r8d - 66343d06: 74 59 je 66343d61 - 66343d08: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343d0c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343d10: 45 29 01 sub %r8d,(%r9) - 66343d13: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343d19: 45 8b 09 mov (%r9),%r9d - 66343d1c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343d20: 45 85 c9 test %r9d,%r9d - 66343d23: 41 0f 9f c1 setg %r9b - 66343d27: 45 0f b6 c9 movzbl %r9b,%r9d - 66343d2b: 45 3b 08 cmp (%r8),%r9d - 66343d2e: 74 31 je 66343d61 - 66343d30: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343d34: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343d38: 45 8b 00 mov (%r8),%r8d - 66343d3b: 45 85 c0 test %r8d,%r8d - 66343d3e: 75 21 jne 66343d61 - 66343d40: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343d44: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343d48: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343d4c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343d53: 4c 63 06 movslq (%rsi),%r8 - 66343d56: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343d5a: 44 89 16 mov %r10d,(%rsi) - 66343d5d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343d61: 48 83 c0 08 add $0x8,%rax - 66343d65: 48 83 c2 04 add $0x4,%rdx - 66343d69: 48 3d f8 00 00 00 cmp $0xf8,%rax - 66343d6f: 75 8f jne 66343d00 - 66343d71: 5b pop %rbx - 66343d72: 5e pop %rsi - 66343d73: 5f pop %rdi - 66343d74: 41 5e pop %r14 - 66343d76: c3 retq - 66343d77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343d7e: 00 00 +0000000066343bc0 : + 66343bc0: 41 56 push %r14 + 66343bc2: 57 push %rdi + 66343bc3: 56 push %rsi + 66343bc4: 53 push %rbx + 66343bc5: 48 8b 3d 54 3d 01 00 mov 0x13d54(%rip),%rdi # 66357920 + 66343bcc: 48 8b 35 5d 3d 01 00 mov 0x13d5d(%rip),%rsi # 66357930 + 66343bd3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343bd7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343bdb: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 66343be2: 8b 00 mov (%rax),%eax + 66343be4: 85 c0 test %eax,%eax + 66343be6: 0f 84 a4 00 00 00 je 66343c90 + 66343bec: 31 c0 xor %eax,%eax + 66343bee: 66 90 xchg %ax,%ax + 66343bf0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66343bf5: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d + 66343bfc: 00 + 66343bfd: 45 8b 00 mov (%r8),%r8d + 66343c00: 45 39 c8 cmp %r9d,%r8d + 66343c03: 74 74 je 66343c79 + 66343c05: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343c09: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66343c0d: 45 89 c6 mov %r8d,%r14d + 66343c10: 45 29 ce sub %r9d,%r14d + 66343c13: 45 31 c9 xor %r9d,%r9d + 66343c16: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 + 66343c1d: 00 + 66343c1e: 45 01 32 add %r14d,(%r10) + 66343c21: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) + 66343c28: 00 + 66343c29: 45 8b 32 mov (%r10),%r14d + 66343c2c: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 + 66343c33: 00 + 66343c34: 45 85 f6 test %r14d,%r14d + 66343c37: 41 0f 9f c1 setg %r9b + 66343c3b: 45 3b 08 cmp (%r8),%r9d + 66343c3e: 74 39 je 66343c79 + 66343c40: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343c44: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 + 66343c4b: 00 + 66343c4c: 45 8b 10 mov (%r8),%r10d + 66343c4f: 45 85 d2 test %r10d,%r10d + 66343c52: 75 25 jne 66343c79 + 66343c54: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343c58: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 + 66343c5f: 00 + 66343c60: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343c64: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343c6b: 4c 63 06 movslq (%rsi),%r8 + 66343c6e: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343c72: 44 89 16 mov %r10d,(%rsi) + 66343c75: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343c79: 48 83 c0 04 add $0x4,%rax + 66343c7d: 48 3d c0 00 00 00 cmp $0xc0,%rax + 66343c83: 0f 85 67 ff ff ff jne 66343bf0 + 66343c89: 5b pop %rbx + 66343c8a: 5e pop %rsi + 66343c8b: 5f pop %rdi + 66343c8c: 41 5e pop %r14 + 66343c8e: c3 retq + 66343c8f: 90 nop + 66343c90: 48 81 c2 c4 00 00 00 add $0xc4,%rdx + 66343c97: b8 88 01 00 00 mov $0x188,%eax + 66343c9c: 0f 1f 40 00 nopl 0x0(%rax) + 66343ca0: 44 8b 02 mov (%rdx),%r8d + 66343ca3: 45 85 c0 test %r8d,%r8d + 66343ca6: 74 59 je 66343d01 + 66343ca8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66343cac: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66343cb0: 45 29 01 sub %r8d,(%r9) + 66343cb3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66343cb9: 45 8b 09 mov (%r9),%r9d + 66343cbc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66343cc0: 45 85 c9 test %r9d,%r9d + 66343cc3: 41 0f 9f c1 setg %r9b + 66343cc7: 45 0f b6 c9 movzbl %r9b,%r9d + 66343ccb: 45 3b 08 cmp (%r8),%r9d + 66343cce: 74 31 je 66343d01 + 66343cd0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343cd4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66343cd8: 45 8b 00 mov (%r8),%r8d + 66343cdb: 45 85 c0 test %r8d,%r8d + 66343cde: 75 21 jne 66343d01 + 66343ce0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343ce4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66343ce8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343cec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343cf3: 4c 63 06 movslq (%rsi),%r8 + 66343cf6: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343cfa: 44 89 16 mov %r10d,(%rsi) + 66343cfd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343d01: 48 83 c0 08 add $0x8,%rax + 66343d05: 48 83 c2 04 add $0x4,%rdx + 66343d09: 48 3d 08 03 00 00 cmp $0x308,%rax + 66343d0f: 75 8f jne 66343ca0 + 66343d11: 5b pop %rbx + 66343d12: 5e pop %rsi + 66343d13: 5f pop %rdi + 66343d14: 41 5e pop %r14 + 66343d16: c3 retq + 66343d17: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66343d1e: 00 00 -0000000066343d80 : - 66343d80: 41 56 push %r14 - 66343d82: 57 push %rdi - 66343d83: 56 push %rsi - 66343d84: 53 push %rbx - 66343d85: 48 8b 3d 94 3b 01 00 mov 0x13b94(%rip),%rdi # 66357920 - 66343d8c: 48 8b 35 9d 3b 01 00 mov 0x13b9d(%rip),%rsi # 66357930 - 66343d93: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343d97: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343d9b: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66343da2: 8b 00 mov (%rax),%eax - 66343da4: 85 c0 test %eax,%eax - 66343da6: 0f 84 a4 00 00 00 je 66343e50 - 66343dac: 31 c0 xor %eax,%eax - 66343dae: 66 90 xchg %ax,%ax - 66343db0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343db5: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d - 66343dba: 45 8b 00 mov (%r8),%r8d - 66343dbd: 45 39 c8 cmp %r9d,%r8d - 66343dc0: 74 71 je 66343e33 - 66343dc2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343dc6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343dca: 45 89 c6 mov %r8d,%r14d - 66343dcd: 45 29 ce sub %r9d,%r14d - 66343dd0: 45 31 c9 xor %r9d,%r9d - 66343dd3: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 - 66343dda: 00 - 66343ddb: 45 01 32 add %r14d,(%r10) - 66343dde: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) - 66343de3: 45 8b 32 mov (%r10),%r14d - 66343de6: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 - 66343ded: 00 - 66343dee: 45 85 f6 test %r14d,%r14d - 66343df1: 41 0f 9f c1 setg %r9b - 66343df5: 45 3b 08 cmp (%r8),%r9d - 66343df8: 74 39 je 66343e33 - 66343dfa: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343dfe: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 - 66343e05: 00 - 66343e06: 45 8b 10 mov (%r8),%r10d - 66343e09: 45 85 d2 test %r10d,%r10d - 66343e0c: 75 25 jne 66343e33 - 66343e0e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343e12: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 - 66343e19: 00 - 66343e1a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343e1e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343e25: 4c 63 06 movslq (%rsi),%r8 - 66343e28: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343e2c: 44 89 16 mov %r10d,(%rsi) - 66343e2f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343e33: 48 83 c0 04 add $0x4,%rax - 66343e37: 48 83 f8 3c cmp $0x3c,%rax - 66343e3b: 0f 85 6f ff ff ff jne 66343db0 - 66343e41: 5b pop %rbx - 66343e42: 5e pop %rsi - 66343e43: 5f pop %rdi - 66343e44: 41 5e pop %r14 - 66343e46: c3 retq - 66343e47: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343e4e: 00 00 - 66343e50: 48 83 c2 40 add $0x40,%rdx - 66343e54: b8 80 00 00 00 mov $0x80,%eax - 66343e59: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343e60: 44 8b 02 mov (%rdx),%r8d - 66343e63: 45 85 c0 test %r8d,%r8d - 66343e66: 74 59 je 66343ec1 - 66343e68: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343e6c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343e70: 45 29 01 sub %r8d,(%r9) - 66343e73: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343e79: 45 8b 09 mov (%r9),%r9d - 66343e7c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343e80: 45 85 c9 test %r9d,%r9d - 66343e83: 41 0f 9f c1 setg %r9b - 66343e87: 45 0f b6 c9 movzbl %r9b,%r9d - 66343e8b: 45 3b 08 cmp (%r8),%r9d - 66343e8e: 74 31 je 66343ec1 - 66343e90: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343e94: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343e98: 45 8b 00 mov (%r8),%r8d - 66343e9b: 45 85 c0 test %r8d,%r8d - 66343e9e: 75 21 jne 66343ec1 - 66343ea0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343ea4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343ea8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343eac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343eb3: 4c 63 06 movslq (%rsi),%r8 - 66343eb6: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343eba: 44 89 16 mov %r10d,(%rsi) - 66343ebd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343ec1: 48 83 c0 08 add $0x8,%rax - 66343ec5: 48 83 c2 04 add $0x4,%rdx - 66343ec9: 48 3d f8 00 00 00 cmp $0xf8,%rax - 66343ecf: 75 8f jne 66343e60 - 66343ed1: 5b pop %rbx - 66343ed2: 5e pop %rsi - 66343ed3: 5f pop %rdi - 66343ed4: 41 5e pop %r14 - 66343ed6: c3 retq - 66343ed7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343ede: 00 00 +0000000066343d20 : + 66343d20: 41 56 push %r14 + 66343d22: 57 push %rdi + 66343d23: 56 push %rsi + 66343d24: 53 push %rbx + 66343d25: 48 8b 3d f4 3b 01 00 mov 0x13bf4(%rip),%rdi # 66357920 + 66343d2c: 48 8b 35 fd 3b 01 00 mov 0x13bfd(%rip),%rsi # 66357930 + 66343d33: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343d37: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343d3b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 66343d42: 8b 00 mov (%rax),%eax + 66343d44: 85 c0 test %eax,%eax + 66343d46: 0f 84 a4 00 00 00 je 66343df0 + 66343d4c: 31 c0 xor %eax,%eax + 66343d4e: 66 90 xchg %ax,%ax + 66343d50: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66343d55: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d + 66343d5c: 00 + 66343d5d: 45 8b 00 mov (%r8),%r8d + 66343d60: 45 39 c8 cmp %r9d,%r8d + 66343d63: 74 74 je 66343dd9 + 66343d65: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343d69: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66343d6d: 45 89 c6 mov %r8d,%r14d + 66343d70: 45 29 ce sub %r9d,%r14d + 66343d73: 45 31 c9 xor %r9d,%r9d + 66343d76: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 + 66343d7d: 00 + 66343d7e: 45 01 32 add %r14d,(%r10) + 66343d81: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) + 66343d88: 00 + 66343d89: 45 8b 32 mov (%r10),%r14d + 66343d8c: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 + 66343d93: 00 + 66343d94: 45 85 f6 test %r14d,%r14d + 66343d97: 41 0f 9f c1 setg %r9b + 66343d9b: 45 3b 08 cmp (%r8),%r9d + 66343d9e: 74 39 je 66343dd9 + 66343da0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343da4: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 + 66343dab: 00 + 66343dac: 45 8b 10 mov (%r8),%r10d + 66343daf: 45 85 d2 test %r10d,%r10d + 66343db2: 75 25 jne 66343dd9 + 66343db4: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343db8: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 + 66343dbf: 00 + 66343dc0: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343dc4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343dcb: 4c 63 06 movslq (%rsi),%r8 + 66343dce: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343dd2: 44 89 16 mov %r10d,(%rsi) + 66343dd5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343dd9: 48 83 c0 04 add $0x4,%rax + 66343ddd: 48 3d 80 00 00 00 cmp $0x80,%rax + 66343de3: 0f 85 67 ff ff ff jne 66343d50 + 66343de9: 5b pop %rbx + 66343dea: 5e pop %rsi + 66343deb: 5f pop %rdi + 66343dec: 41 5e pop %r14 + 66343dee: c3 retq + 66343def: 90 nop + 66343df0: 48 81 c2 84 00 00 00 add $0x84,%rdx + 66343df7: b8 08 01 00 00 mov $0x108,%eax + 66343dfc: 0f 1f 40 00 nopl 0x0(%rax) + 66343e00: 44 8b 02 mov (%rdx),%r8d + 66343e03: 45 85 c0 test %r8d,%r8d + 66343e06: 74 59 je 66343e61 + 66343e08: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66343e0c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66343e10: 45 29 01 sub %r8d,(%r9) + 66343e13: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66343e19: 45 8b 09 mov (%r9),%r9d + 66343e1c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66343e20: 45 85 c9 test %r9d,%r9d + 66343e23: 41 0f 9f c1 setg %r9b + 66343e27: 45 0f b6 c9 movzbl %r9b,%r9d + 66343e2b: 45 3b 08 cmp (%r8),%r9d + 66343e2e: 74 31 je 66343e61 + 66343e30: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343e34: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66343e38: 45 8b 00 mov (%r8),%r8d + 66343e3b: 45 85 c0 test %r8d,%r8d + 66343e3e: 75 21 jne 66343e61 + 66343e40: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343e44: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66343e48: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343e4c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343e53: 4c 63 06 movslq (%rsi),%r8 + 66343e56: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343e5a: 44 89 16 mov %r10d,(%rsi) + 66343e5d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343e61: 48 83 c0 08 add $0x8,%rax + 66343e65: 48 83 c2 04 add $0x4,%rdx + 66343e69: 48 3d 08 02 00 00 cmp $0x208,%rax + 66343e6f: 75 8f jne 66343e00 + 66343e71: 5b pop %rbx + 66343e72: 5e pop %rsi + 66343e73: 5f pop %rdi + 66343e74: 41 5e pop %r14 + 66343e76: c3 retq + 66343e77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66343e7e: 00 00 -0000000066343ee0 : - 66343ee0: 41 56 push %r14 - 66343ee2: 57 push %rdi - 66343ee3: 56 push %rsi - 66343ee4: 53 push %rbx - 66343ee5: 48 8b 3d 34 3a 01 00 mov 0x13a34(%rip),%rdi # 66357920 - 66343eec: 48 8b 35 3d 3a 01 00 mov 0x13a3d(%rip),%rsi # 66357930 - 66343ef3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343ef7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343efb: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 66343f02: 8b 00 mov (%rax),%eax - 66343f04: 85 c0 test %eax,%eax - 66343f06: 0f 84 94 00 00 00 je 66343fa0 - 66343f0c: 31 c0 xor %eax,%eax - 66343f0e: 66 90 xchg %ax,%ax - 66343f10: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343f15: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d - 66343f1a: 45 8b 00 mov (%r8),%r8d - 66343f1d: 45 39 c8 cmp %r9d,%r8d - 66343f20: 74 65 je 66343f87 - 66343f22: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343f26: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343f2a: 45 89 c6 mov %r8d,%r14d - 66343f2d: 45 29 ce sub %r9d,%r14d - 66343f30: 45 31 c9 xor %r9d,%r9d - 66343f33: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 - 66343f38: 45 01 32 add %r14d,(%r10) - 66343f3b: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) - 66343f40: 45 8b 32 mov (%r10),%r14d - 66343f43: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 - 66343f48: 45 85 f6 test %r14d,%r14d - 66343f4b: 41 0f 9f c1 setg %r9b - 66343f4f: 45 3b 08 cmp (%r8),%r9d - 66343f52: 74 33 je 66343f87 - 66343f54: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343f58: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 - 66343f5d: 45 8b 10 mov (%r8),%r10d - 66343f60: 45 85 d2 test %r10d,%r10d - 66343f63: 75 22 jne 66343f87 - 66343f65: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343f69: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 - 66343f6e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343f72: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343f79: 4c 63 06 movslq (%rsi),%r8 - 66343f7c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343f80: 44 89 16 mov %r10d,(%rsi) - 66343f83: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343f87: 48 83 c0 04 add $0x4,%rax - 66343f8b: 48 83 f8 38 cmp $0x38,%rax - 66343f8f: 0f 85 7b ff ff ff jne 66343f10 - 66343f95: 5b pop %rbx - 66343f96: 5e pop %rsi - 66343f97: 5f pop %rdi - 66343f98: 41 5e pop %r14 - 66343f9a: c3 retq - 66343f9b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66343fa0: 48 83 c2 3c add $0x3c,%rdx - 66343fa4: b8 78 00 00 00 mov $0x78,%eax - 66343fa9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66343fb0: 44 8b 02 mov (%rdx),%r8d - 66343fb3: 45 85 c0 test %r8d,%r8d - 66343fb6: 74 59 je 66344011 - 66343fb8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343fbc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343fc0: 45 29 01 sub %r8d,(%r9) - 66343fc3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343fc9: 45 8b 09 mov (%r9),%r9d - 66343fcc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343fd0: 45 85 c9 test %r9d,%r9d - 66343fd3: 41 0f 9f c1 setg %r9b - 66343fd7: 45 0f b6 c9 movzbl %r9b,%r9d - 66343fdb: 45 3b 08 cmp (%r8),%r9d - 66343fde: 74 31 je 66344011 - 66343fe0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343fe4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343fe8: 45 8b 00 mov (%r8),%r8d - 66343feb: 45 85 c0 test %r8d,%r8d - 66343fee: 75 21 jne 66344011 - 66343ff0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343ff4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343ff8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343ffc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344003: 4c 63 06 movslq (%rsi),%r8 - 66344006: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634400a: 44 89 16 mov %r10d,(%rsi) - 6634400d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344011: 48 83 c0 08 add $0x8,%rax - 66344015: 48 83 c2 04 add $0x4,%rdx - 66344019: 48 3d e8 00 00 00 cmp $0xe8,%rax - 6634401f: 75 8f jne 66343fb0 - 66344021: 5b pop %rbx - 66344022: 5e pop %rsi - 66344023: 5f pop %rdi - 66344024: 41 5e pop %r14 - 66344026: c3 retq - 66344027: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634402e: 00 00 +0000000066343e80 : + 66343e80: 41 56 push %r14 + 66343e82: 57 push %rdi + 66343e83: 56 push %rsi + 66343e84: 53 push %rbx + 66343e85: 48 8b 3d 94 3a 01 00 mov 0x13a94(%rip),%rdi # 66357920 + 66343e8c: 48 8b 35 9d 3a 01 00 mov 0x13a9d(%rip),%rsi # 66357930 + 66343e93: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343e97: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343e9b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 66343ea2: 8b 00 mov (%rax),%eax + 66343ea4: 85 c0 test %eax,%eax + 66343ea6: 0f 84 a4 00 00 00 je 66343f50 + 66343eac: 31 c0 xor %eax,%eax + 66343eae: 66 90 xchg %ax,%ax + 66343eb0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66343eb5: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d + 66343ebc: 00 + 66343ebd: 45 8b 00 mov (%r8),%r8d + 66343ec0: 45 39 c8 cmp %r9d,%r8d + 66343ec3: 74 74 je 66343f39 + 66343ec5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343ec9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66343ecd: 45 89 c6 mov %r8d,%r14d + 66343ed0: 45 29 ce sub %r9d,%r14d + 66343ed3: 45 31 c9 xor %r9d,%r9d + 66343ed6: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 + 66343edd: 00 + 66343ede: 45 01 32 add %r14d,(%r10) + 66343ee1: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) + 66343ee8: 00 + 66343ee9: 45 8b 32 mov (%r10),%r14d + 66343eec: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 + 66343ef3: 00 + 66343ef4: 45 85 f6 test %r14d,%r14d + 66343ef7: 41 0f 9f c1 setg %r9b + 66343efb: 45 3b 08 cmp (%r8),%r9d + 66343efe: 74 39 je 66343f39 + 66343f00: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343f04: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 + 66343f0b: 00 + 66343f0c: 45 8b 10 mov (%r8),%r10d + 66343f0f: 45 85 d2 test %r10d,%r10d + 66343f12: 75 25 jne 66343f39 + 66343f14: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343f18: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 + 66343f1f: 00 + 66343f20: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343f24: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343f2b: 4c 63 06 movslq (%rsi),%r8 + 66343f2e: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343f32: 44 89 16 mov %r10d,(%rsi) + 66343f35: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343f39: 48 83 c0 04 add $0x4,%rax + 66343f3d: 48 3d 80 00 00 00 cmp $0x80,%rax + 66343f43: 0f 85 67 ff ff ff jne 66343eb0 + 66343f49: 5b pop %rbx + 66343f4a: 5e pop %rsi + 66343f4b: 5f pop %rdi + 66343f4c: 41 5e pop %r14 + 66343f4e: c3 retq + 66343f4f: 90 nop + 66343f50: 48 81 c2 84 00 00 00 add $0x84,%rdx + 66343f57: b8 08 01 00 00 mov $0x108,%eax + 66343f5c: 0f 1f 40 00 nopl 0x0(%rax) + 66343f60: 44 8b 02 mov (%rdx),%r8d + 66343f63: 45 85 c0 test %r8d,%r8d + 66343f66: 74 59 je 66343fc1 + 66343f68: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66343f6c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66343f70: 45 29 01 sub %r8d,(%r9) + 66343f73: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66343f79: 45 8b 09 mov (%r9),%r9d + 66343f7c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66343f80: 45 85 c9 test %r9d,%r9d + 66343f83: 41 0f 9f c1 setg %r9b + 66343f87: 45 0f b6 c9 movzbl %r9b,%r9d + 66343f8b: 45 3b 08 cmp (%r8),%r9d + 66343f8e: 74 31 je 66343fc1 + 66343f90: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343f94: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66343f98: 45 8b 00 mov (%r8),%r8d + 66343f9b: 45 85 c0 test %r8d,%r8d + 66343f9e: 75 21 jne 66343fc1 + 66343fa0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343fa4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66343fa8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343fac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343fb3: 4c 63 06 movslq (%rsi),%r8 + 66343fb6: 45 8d 50 01 lea 0x1(%r8),%r10d + 66343fba: 44 89 16 mov %r10d,(%rsi) + 66343fbd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66343fc1: 48 83 c0 08 add $0x8,%rax + 66343fc5: 48 83 c2 04 add $0x4,%rdx + 66343fc9: 48 3d 08 02 00 00 cmp $0x208,%rax + 66343fcf: 75 8f jne 66343f60 + 66343fd1: 5b pop %rbx + 66343fd2: 5e pop %rsi + 66343fd3: 5f pop %rdi + 66343fd4: 41 5e pop %r14 + 66343fd6: c3 retq + 66343fd7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66343fde: 00 00 -0000000066344030 : - 66344030: 41 56 push %r14 - 66344032: 57 push %rdi - 66344033: 56 push %rsi - 66344034: 53 push %rbx - 66344035: 48 8b 3d e4 38 01 00 mov 0x138e4(%rip),%rdi # 66357920 - 6634403c: 48 8b 35 ed 38 01 00 mov 0x138ed(%rip),%rsi # 66357930 - 66344043: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344047: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634404b: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 66344052: 8b 00 mov (%rax),%eax - 66344054: 85 c0 test %eax,%eax - 66344056: 0f 84 94 00 00 00 je 663440f0 - 6634405c: 31 c0 xor %eax,%eax - 6634405e: 66 90 xchg %ax,%ax - 66344060: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344065: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d - 6634406a: 45 8b 00 mov (%r8),%r8d - 6634406d: 45 39 c8 cmp %r9d,%r8d - 66344070: 74 65 je 663440d7 - 66344072: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344076: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634407a: 45 89 c6 mov %r8d,%r14d - 6634407d: 45 29 ce sub %r9d,%r14d - 66344080: 45 31 c9 xor %r9d,%r9d - 66344083: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 - 66344088: 45 01 32 add %r14d,(%r10) - 6634408b: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) - 66344090: 45 8b 32 mov (%r10),%r14d - 66344093: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 - 66344098: 45 85 f6 test %r14d,%r14d - 6634409b: 41 0f 9f c1 setg %r9b - 6634409f: 45 3b 08 cmp (%r8),%r9d - 663440a2: 74 33 je 663440d7 - 663440a4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663440a8: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 - 663440ad: 45 8b 10 mov (%r8),%r10d - 663440b0: 45 85 d2 test %r10d,%r10d - 663440b3: 75 22 jne 663440d7 - 663440b5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663440b9: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 - 663440be: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663440c2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663440c9: 4c 63 06 movslq (%rsi),%r8 - 663440cc: 45 8d 50 01 lea 0x1(%r8),%r10d - 663440d0: 44 89 16 mov %r10d,(%rsi) - 663440d3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663440d7: 48 83 c0 04 add $0x4,%rax - 663440db: 48 83 f8 38 cmp $0x38,%rax - 663440df: 0f 85 7b ff ff ff jne 66344060 - 663440e5: 5b pop %rbx - 663440e6: 5e pop %rsi - 663440e7: 5f pop %rdi - 663440e8: 41 5e pop %r14 - 663440ea: c3 retq - 663440eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663440f0: 48 83 c2 3c add $0x3c,%rdx - 663440f4: b8 78 00 00 00 mov $0x78,%eax - 663440f9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344100: 44 8b 02 mov (%rdx),%r8d - 66344103: 45 85 c0 test %r8d,%r8d - 66344106: 74 59 je 66344161 - 66344108: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634410c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344110: 45 29 01 sub %r8d,(%r9) - 66344113: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344119: 45 8b 09 mov (%r9),%r9d - 6634411c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344120: 45 85 c9 test %r9d,%r9d - 66344123: 41 0f 9f c1 setg %r9b - 66344127: 45 0f b6 c9 movzbl %r9b,%r9d - 6634412b: 45 3b 08 cmp (%r8),%r9d - 6634412e: 74 31 je 66344161 - 66344130: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344134: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344138: 45 8b 00 mov (%r8),%r8d - 6634413b: 45 85 c0 test %r8d,%r8d - 6634413e: 75 21 jne 66344161 - 66344140: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344144: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344148: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634414c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344153: 4c 63 06 movslq (%rsi),%r8 - 66344156: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634415a: 44 89 16 mov %r10d,(%rsi) - 6634415d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344161: 48 83 c0 08 add $0x8,%rax - 66344165: 48 83 c2 04 add $0x4,%rdx - 66344169: 48 3d e8 00 00 00 cmp $0xe8,%rax - 6634416f: 75 8f jne 66344100 - 66344171: 5b pop %rbx - 66344172: 5e pop %rsi - 66344173: 5f pop %rdi - 66344174: 41 5e pop %r14 - 66344176: c3 retq - 66344177: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634417e: 00 00 +0000000066343fe0 : + 66343fe0: 41 56 push %r14 + 66343fe2: 57 push %rdi + 66343fe3: 56 push %rsi + 66343fe4: 53 push %rbx + 66343fe5: 48 8b 3d 34 39 01 00 mov 0x13934(%rip),%rdi # 66357920 + 66343fec: 48 8b 35 3d 39 01 00 mov 0x1393d(%rip),%rsi # 66357930 + 66343ff3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66343ff7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343ffb: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 66344002: 8b 00 mov (%rax),%eax + 66344004: 85 c0 test %eax,%eax + 66344006: 0f 84 a4 00 00 00 je 663440b0 + 6634400c: 31 c0 xor %eax,%eax + 6634400e: 66 90 xchg %ax,%ax + 66344010: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344015: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d + 6634401a: 45 8b 00 mov (%r8),%r8d + 6634401d: 45 39 c8 cmp %r9d,%r8d + 66344020: 74 71 je 66344093 + 66344022: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344026: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634402a: 45 89 c6 mov %r8d,%r14d + 6634402d: 45 29 ce sub %r9d,%r14d + 66344030: 45 31 c9 xor %r9d,%r9d + 66344033: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 + 6634403a: 00 + 6634403b: 45 01 32 add %r14d,(%r10) + 6634403e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) + 66344043: 45 8b 32 mov (%r10),%r14d + 66344046: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 + 6634404d: 00 + 6634404e: 45 85 f6 test %r14d,%r14d + 66344051: 41 0f 9f c1 setg %r9b + 66344055: 45 3b 08 cmp (%r8),%r9d + 66344058: 74 39 je 66344093 + 6634405a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634405e: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 + 66344065: 00 + 66344066: 45 8b 10 mov (%r8),%r10d + 66344069: 45 85 d2 test %r10d,%r10d + 6634406c: 75 25 jne 66344093 + 6634406e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344072: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 + 66344079: 00 + 6634407a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634407e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344085: 4c 63 06 movslq (%rsi),%r8 + 66344088: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634408c: 44 89 16 mov %r10d,(%rsi) + 6634408f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344093: 48 83 c0 04 add $0x4,%rax + 66344097: 48 83 f8 60 cmp $0x60,%rax + 6634409b: 0f 85 6f ff ff ff jne 66344010 + 663440a1: 5b pop %rbx + 663440a2: 5e pop %rsi + 663440a3: 5f pop %rdi + 663440a4: 41 5e pop %r14 + 663440a6: c3 retq + 663440a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663440ae: 00 00 + 663440b0: 48 83 c2 64 add $0x64,%rdx + 663440b4: b8 c8 00 00 00 mov $0xc8,%eax + 663440b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663440c0: 44 8b 02 mov (%rdx),%r8d + 663440c3: 45 85 c0 test %r8d,%r8d + 663440c6: 74 59 je 66344121 + 663440c8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663440cc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 663440d0: 45 29 01 sub %r8d,(%r9) + 663440d3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663440d9: 45 8b 09 mov (%r9),%r9d + 663440dc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 663440e0: 45 85 c9 test %r9d,%r9d + 663440e3: 41 0f 9f c1 setg %r9b + 663440e7: 45 0f b6 c9 movzbl %r9b,%r9d + 663440eb: 45 3b 08 cmp (%r8),%r9d + 663440ee: 74 31 je 66344121 + 663440f0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663440f4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663440f8: 45 8b 00 mov (%r8),%r8d + 663440fb: 45 85 c0 test %r8d,%r8d + 663440fe: 75 21 jne 66344121 + 66344100: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344104: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344108: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634410c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344113: 4c 63 06 movslq (%rsi),%r8 + 66344116: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634411a: 44 89 16 mov %r10d,(%rsi) + 6634411d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344121: 48 83 c0 08 add $0x8,%rax + 66344125: 48 83 c2 04 add $0x4,%rdx + 66344129: 48 3d 88 01 00 00 cmp $0x188,%rax + 6634412f: 75 8f jne 663440c0 + 66344131: 5b pop %rbx + 66344132: 5e pop %rsi + 66344133: 5f pop %rdi + 66344134: 41 5e pop %r14 + 66344136: c3 retq + 66344137: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634413e: 00 00 -0000000066344180 : - 66344180: 41 56 push %r14 - 66344182: 57 push %rdi - 66344183: 56 push %rsi - 66344184: 53 push %rbx - 66344185: 48 8b 3d 94 37 01 00 mov 0x13794(%rip),%rdi # 66357920 - 6634418c: 48 8b 35 9d 37 01 00 mov 0x1379d(%rip),%rsi # 66357930 - 66344193: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344197: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634419b: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 663441a2: 8b 00 mov (%rax),%eax - 663441a4: 85 c0 test %eax,%eax - 663441a6: 0f 84 94 00 00 00 je 66344240 - 663441ac: 31 c0 xor %eax,%eax - 663441ae: 66 90 xchg %ax,%ax - 663441b0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663441b5: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d - 663441ba: 45 8b 00 mov (%r8),%r8d - 663441bd: 45 39 c8 cmp %r9d,%r8d - 663441c0: 74 65 je 66344227 - 663441c2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663441c6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663441ca: 45 89 c6 mov %r8d,%r14d - 663441cd: 45 29 ce sub %r9d,%r14d - 663441d0: 45 31 c9 xor %r9d,%r9d - 663441d3: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 - 663441d8: 45 01 32 add %r14d,(%r10) - 663441db: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) - 663441e0: 45 8b 32 mov (%r10),%r14d - 663441e3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 - 663441e8: 45 85 f6 test %r14d,%r14d - 663441eb: 41 0f 9f c1 setg %r9b - 663441ef: 45 3b 08 cmp (%r8),%r9d - 663441f2: 74 33 je 66344227 - 663441f4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663441f8: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 - 663441fd: 45 8b 10 mov (%r8),%r10d - 66344200: 45 85 d2 test %r10d,%r10d - 66344203: 75 22 jne 66344227 - 66344205: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344209: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 - 6634420e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344212: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344219: 4c 63 06 movslq (%rsi),%r8 - 6634421c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344220: 44 89 16 mov %r10d,(%rsi) - 66344223: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344227: 48 83 c0 04 add $0x4,%rax - 6634422b: 48 83 f8 34 cmp $0x34,%rax - 6634422f: 0f 85 7b ff ff ff jne 663441b0 - 66344235: 5b pop %rbx - 66344236: 5e pop %rsi - 66344237: 5f pop %rdi - 66344238: 41 5e pop %r14 - 6634423a: c3 retq - 6634423b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344240: 48 83 c2 38 add $0x38,%rdx - 66344244: b8 70 00 00 00 mov $0x70,%eax - 66344249: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344250: 44 8b 02 mov (%rdx),%r8d - 66344253: 45 85 c0 test %r8d,%r8d - 66344256: 74 59 je 663442b1 - 66344258: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634425c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344260: 45 29 01 sub %r8d,(%r9) - 66344263: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344269: 45 8b 09 mov (%r9),%r9d - 6634426c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344270: 45 85 c9 test %r9d,%r9d - 66344273: 41 0f 9f c1 setg %r9b - 66344277: 45 0f b6 c9 movzbl %r9b,%r9d - 6634427b: 45 3b 08 cmp (%r8),%r9d - 6634427e: 74 31 je 663442b1 - 66344280: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344284: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344288: 45 8b 00 mov (%r8),%r8d - 6634428b: 45 85 c0 test %r8d,%r8d - 6634428e: 75 21 jne 663442b1 - 66344290: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344294: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344298: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634429c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663442a3: 4c 63 06 movslq (%rsi),%r8 - 663442a6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663442aa: 44 89 16 mov %r10d,(%rsi) - 663442ad: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663442b1: 48 83 c0 08 add $0x8,%rax - 663442b5: 48 83 c2 04 add $0x4,%rdx - 663442b9: 48 3d d8 00 00 00 cmp $0xd8,%rax - 663442bf: 75 8f jne 66344250 - 663442c1: 5b pop %rbx - 663442c2: 5e pop %rsi - 663442c3: 5f pop %rdi - 663442c4: 41 5e pop %r14 - 663442c6: c3 retq - 663442c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663442ce: 00 00 +0000000066344140 : + 66344140: 41 56 push %r14 + 66344142: 57 push %rdi + 66344143: 56 push %rsi + 66344144: 53 push %rbx + 66344145: 48 8b 3d d4 37 01 00 mov 0x137d4(%rip),%rdi # 66357920 + 6634414c: 48 8b 35 dd 37 01 00 mov 0x137dd(%rip),%rsi # 66357930 + 66344153: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344157: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634415b: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 66344162: 8b 00 mov (%rax),%eax + 66344164: 85 c0 test %eax,%eax + 66344166: 0f 84 a4 00 00 00 je 66344210 + 6634416c: 31 c0 xor %eax,%eax + 6634416e: 66 90 xchg %ax,%ax + 66344170: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344175: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d + 6634417a: 45 8b 00 mov (%r8),%r8d + 6634417d: 45 39 c8 cmp %r9d,%r8d + 66344180: 74 71 je 663441f3 + 66344182: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344186: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634418a: 45 89 c6 mov %r8d,%r14d + 6634418d: 45 29 ce sub %r9d,%r14d + 66344190: 45 31 c9 xor %r9d,%r9d + 66344193: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 + 6634419a: 00 + 6634419b: 45 01 32 add %r14d,(%r10) + 6634419e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) + 663441a3: 45 8b 32 mov (%r10),%r14d + 663441a6: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 + 663441ad: 00 + 663441ae: 45 85 f6 test %r14d,%r14d + 663441b1: 41 0f 9f c1 setg %r9b + 663441b5: 45 3b 08 cmp (%r8),%r9d + 663441b8: 74 39 je 663441f3 + 663441ba: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663441be: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 + 663441c5: 00 + 663441c6: 45 8b 10 mov (%r8),%r10d + 663441c9: 45 85 d2 test %r10d,%r10d + 663441cc: 75 25 jne 663441f3 + 663441ce: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663441d2: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 + 663441d9: 00 + 663441da: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663441de: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663441e5: 4c 63 06 movslq (%rsi),%r8 + 663441e8: 45 8d 50 01 lea 0x1(%r8),%r10d + 663441ec: 44 89 16 mov %r10d,(%rsi) + 663441ef: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663441f3: 48 83 c0 04 add $0x4,%rax + 663441f7: 48 83 f8 60 cmp $0x60,%rax + 663441fb: 0f 85 6f ff ff ff jne 66344170 + 66344201: 5b pop %rbx + 66344202: 5e pop %rsi + 66344203: 5f pop %rdi + 66344204: 41 5e pop %r14 + 66344206: c3 retq + 66344207: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634420e: 00 00 + 66344210: 48 83 c2 64 add $0x64,%rdx + 66344214: b8 c8 00 00 00 mov $0xc8,%eax + 66344219: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344220: 44 8b 02 mov (%rdx),%r8d + 66344223: 45 85 c0 test %r8d,%r8d + 66344226: 74 59 je 66344281 + 66344228: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634422c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344230: 45 29 01 sub %r8d,(%r9) + 66344233: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344239: 45 8b 09 mov (%r9),%r9d + 6634423c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344240: 45 85 c9 test %r9d,%r9d + 66344243: 41 0f 9f c1 setg %r9b + 66344247: 45 0f b6 c9 movzbl %r9b,%r9d + 6634424b: 45 3b 08 cmp (%r8),%r9d + 6634424e: 74 31 je 66344281 + 66344250: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344254: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344258: 45 8b 00 mov (%r8),%r8d + 6634425b: 45 85 c0 test %r8d,%r8d + 6634425e: 75 21 jne 66344281 + 66344260: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344264: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344268: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634426c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344273: 4c 63 06 movslq (%rsi),%r8 + 66344276: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634427a: 44 89 16 mov %r10d,(%rsi) + 6634427d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344281: 48 83 c0 08 add $0x8,%rax + 66344285: 48 83 c2 04 add $0x4,%rdx + 66344289: 48 3d 88 01 00 00 cmp $0x188,%rax + 6634428f: 75 8f jne 66344220 + 66344291: 5b pop %rbx + 66344292: 5e pop %rsi + 66344293: 5f pop %rdi + 66344294: 41 5e pop %r14 + 66344296: c3 retq + 66344297: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634429e: 00 00 -00000000663442d0 : - 663442d0: 41 56 push %r14 - 663442d2: 57 push %rdi - 663442d3: 56 push %rsi - 663442d4: 53 push %rbx - 663442d5: 48 8b 3d 44 36 01 00 mov 0x13644(%rip),%rdi # 66357920 - 663442dc: 48 8b 35 4d 36 01 00 mov 0x1364d(%rip),%rsi # 66357930 - 663442e3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663442e7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663442eb: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 663442f2: 8b 00 mov (%rax),%eax - 663442f4: 85 c0 test %eax,%eax - 663442f6: 0f 84 94 00 00 00 je 66344390 - 663442fc: 31 c0 xor %eax,%eax - 663442fe: 66 90 xchg %ax,%ax - 66344300: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344305: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d - 6634430a: 45 8b 00 mov (%r8),%r8d - 6634430d: 45 39 c8 cmp %r9d,%r8d - 66344310: 74 65 je 66344377 - 66344312: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344316: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634431a: 45 89 c6 mov %r8d,%r14d - 6634431d: 45 29 ce sub %r9d,%r14d - 66344320: 45 31 c9 xor %r9d,%r9d - 66344323: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 - 66344328: 45 01 32 add %r14d,(%r10) - 6634432b: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) - 66344330: 45 8b 32 mov (%r10),%r14d - 66344333: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 - 66344338: 45 85 f6 test %r14d,%r14d - 6634433b: 41 0f 9f c1 setg %r9b - 6634433f: 45 3b 08 cmp (%r8),%r9d - 66344342: 74 33 je 66344377 - 66344344: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344348: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 - 6634434d: 45 8b 10 mov (%r8),%r10d - 66344350: 45 85 d2 test %r10d,%r10d - 66344353: 75 22 jne 66344377 - 66344355: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344359: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 - 6634435e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344362: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344369: 4c 63 06 movslq (%rsi),%r8 - 6634436c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344370: 44 89 16 mov %r10d,(%rsi) - 66344373: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344377: 48 83 c0 04 add $0x4,%rax - 6634437b: 48 83 f8 34 cmp $0x34,%rax - 6634437f: 0f 85 7b ff ff ff jne 66344300 - 66344385: 5b pop %rbx - 66344386: 5e pop %rsi - 66344387: 5f pop %rdi - 66344388: 41 5e pop %r14 - 6634438a: c3 retq - 6634438b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344390: 48 83 c2 38 add $0x38,%rdx - 66344394: b8 70 00 00 00 mov $0x70,%eax - 66344399: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663443a0: 44 8b 02 mov (%rdx),%r8d - 663443a3: 45 85 c0 test %r8d,%r8d - 663443a6: 74 59 je 66344401 - 663443a8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663443ac: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663443b0: 45 29 01 sub %r8d,(%r9) - 663443b3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663443b9: 45 8b 09 mov (%r9),%r9d - 663443bc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663443c0: 45 85 c9 test %r9d,%r9d - 663443c3: 41 0f 9f c1 setg %r9b - 663443c7: 45 0f b6 c9 movzbl %r9b,%r9d - 663443cb: 45 3b 08 cmp (%r8),%r9d - 663443ce: 74 31 je 66344401 - 663443d0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663443d4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663443d8: 45 8b 00 mov (%r8),%r8d - 663443db: 45 85 c0 test %r8d,%r8d - 663443de: 75 21 jne 66344401 - 663443e0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663443e4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663443e8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663443ec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663443f3: 4c 63 06 movslq (%rsi),%r8 - 663443f6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663443fa: 44 89 16 mov %r10d,(%rsi) - 663443fd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344401: 48 83 c0 08 add $0x8,%rax - 66344405: 48 83 c2 04 add $0x4,%rdx - 66344409: 48 3d d8 00 00 00 cmp $0xd8,%rax - 6634440f: 75 8f jne 663443a0 - 66344411: 5b pop %rbx - 66344412: 5e pop %rsi - 66344413: 5f pop %rdi - 66344414: 41 5e pop %r14 - 66344416: c3 retq - 66344417: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634441e: 00 00 +00000000663442a0 : + 663442a0: 41 56 push %r14 + 663442a2: 57 push %rdi + 663442a3: 56 push %rsi + 663442a4: 53 push %rbx + 663442a5: 48 8b 3d 74 36 01 00 mov 0x13674(%rip),%rdi # 66357920 + 663442ac: 48 8b 35 7d 36 01 00 mov 0x1367d(%rip),%rsi # 66357930 + 663442b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663442b7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663442bb: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 663442c2: 8b 00 mov (%rax),%eax + 663442c4: 85 c0 test %eax,%eax + 663442c6: 0f 84 a4 00 00 00 je 66344370 + 663442cc: 31 c0 xor %eax,%eax + 663442ce: 66 90 xchg %ax,%ax + 663442d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 663442d5: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d + 663442da: 45 8b 00 mov (%r8),%r8d + 663442dd: 45 39 c8 cmp %r9d,%r8d + 663442e0: 74 71 je 66344353 + 663442e2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663442e6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663442ea: 45 89 c6 mov %r8d,%r14d + 663442ed: 45 29 ce sub %r9d,%r14d + 663442f0: 45 31 c9 xor %r9d,%r9d + 663442f3: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 + 663442fa: 00 + 663442fb: 45 01 32 add %r14d,(%r10) + 663442fe: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) + 66344303: 45 8b 32 mov (%r10),%r14d + 66344306: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 + 6634430d: 00 + 6634430e: 45 85 f6 test %r14d,%r14d + 66344311: 41 0f 9f c1 setg %r9b + 66344315: 45 3b 08 cmp (%r8),%r9d + 66344318: 74 39 je 66344353 + 6634431a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634431e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 + 66344325: 00 + 66344326: 45 8b 10 mov (%r8),%r10d + 66344329: 45 85 d2 test %r10d,%r10d + 6634432c: 75 25 jne 66344353 + 6634432e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344332: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 + 66344339: 00 + 6634433a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634433e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344345: 4c 63 06 movslq (%rsi),%r8 + 66344348: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634434c: 44 89 16 mov %r10d,(%rsi) + 6634434f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344353: 48 83 c0 04 add $0x4,%rax + 66344357: 48 83 f8 40 cmp $0x40,%rax + 6634435b: 0f 85 6f ff ff ff jne 663442d0 + 66344361: 5b pop %rbx + 66344362: 5e pop %rsi + 66344363: 5f pop %rdi + 66344364: 41 5e pop %r14 + 66344366: c3 retq + 66344367: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634436e: 00 00 + 66344370: 48 83 c2 44 add $0x44,%rdx + 66344374: b8 88 00 00 00 mov $0x88,%eax + 66344379: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344380: 44 8b 02 mov (%rdx),%r8d + 66344383: 45 85 c0 test %r8d,%r8d + 66344386: 74 59 je 663443e1 + 66344388: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634438c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344390: 45 29 01 sub %r8d,(%r9) + 66344393: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344399: 45 8b 09 mov (%r9),%r9d + 6634439c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 663443a0: 45 85 c9 test %r9d,%r9d + 663443a3: 41 0f 9f c1 setg %r9b + 663443a7: 45 0f b6 c9 movzbl %r9b,%r9d + 663443ab: 45 3b 08 cmp (%r8),%r9d + 663443ae: 74 31 je 663443e1 + 663443b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663443b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663443b8: 45 8b 00 mov (%r8),%r8d + 663443bb: 45 85 c0 test %r8d,%r8d + 663443be: 75 21 jne 663443e1 + 663443c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663443c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 663443c8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663443cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663443d3: 4c 63 06 movslq (%rsi),%r8 + 663443d6: 45 8d 50 01 lea 0x1(%r8),%r10d + 663443da: 44 89 16 mov %r10d,(%rsi) + 663443dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663443e1: 48 83 c0 08 add $0x8,%rax + 663443e5: 48 83 c2 04 add $0x4,%rdx + 663443e9: 48 3d 08 01 00 00 cmp $0x108,%rax + 663443ef: 75 8f jne 66344380 + 663443f1: 5b pop %rbx + 663443f2: 5e pop %rsi + 663443f3: 5f pop %rdi + 663443f4: 41 5e pop %r14 + 663443f6: c3 retq + 663443f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663443fe: 00 00 -0000000066344420 : - 66344420: 41 56 push %r14 - 66344422: 57 push %rdi - 66344423: 56 push %rsi - 66344424: 53 push %rbx - 66344425: 48 8b 3d f4 34 01 00 mov 0x134f4(%rip),%rdi # 66357920 - 6634442c: 48 8b 35 fd 34 01 00 mov 0x134fd(%rip),%rsi # 66357930 - 66344433: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66344437: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634443b: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66344442: 8b 00 mov (%rax),%eax - 66344444: 85 c0 test %eax,%eax - 66344446: 0f 84 94 00 00 00 je 663444e0 - 6634444c: 31 c0 xor %eax,%eax - 6634444e: 66 90 xchg %ax,%ax - 66344450: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 - 66344455: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d - 6634445a: 45 8b 00 mov (%r8),%r8d - 6634445d: 45 39 c8 cmp %r9d,%r8d - 66344460: 74 65 je 663444c7 - 66344462: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344466: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634446a: 45 89 c6 mov %r8d,%r14d - 6634446d: 45 29 ce sub %r9d,%r14d - 66344470: 45 31 c9 xor %r9d,%r9d - 66344473: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 - 66344478: 45 01 33 add %r14d,(%r11) - 6634447b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) - 66344480: 45 8b 33 mov (%r11),%r14d - 66344483: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 - 66344488: 45 85 f6 test %r14d,%r14d - 6634448b: 41 0f 9f c1 setg %r9b - 6634448f: 45 3b 08 cmp (%r8),%r9d - 66344492: 74 33 je 663444c7 - 66344494: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344498: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 - 6634449d: 45 8b 18 mov (%r8),%r11d - 663444a0: 45 85 db test %r11d,%r11d - 663444a3: 75 22 jne 663444c7 - 663444a5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663444a9: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 - 663444ae: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663444b2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663444b9: 4c 63 06 movslq (%rsi),%r8 - 663444bc: 45 8d 58 01 lea 0x1(%r8),%r11d - 663444c0: 44 89 1e mov %r11d,(%rsi) - 663444c3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663444c7: 48 83 c0 04 add $0x4,%rax - 663444cb: 48 83 f8 30 cmp $0x30,%rax - 663444cf: 0f 85 7b ff ff ff jne 66344450 - 663444d5: 5b pop %rbx - 663444d6: 5e pop %rsi - 663444d7: 5f pop %rdi - 663444d8: 41 5e pop %r14 - 663444da: c3 retq - 663444db: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663444e0: 48 83 c2 34 add $0x34,%rdx - 663444e4: b8 68 00 00 00 mov $0x68,%eax - 663444e9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663444f0: 44 8b 02 mov (%rdx),%r8d - 663444f3: 45 85 c0 test %r8d,%r8d - 663444f6: 74 59 je 66344551 - 663444f8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663444fc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344500: 45 29 01 sub %r8d,(%r9) - 66344503: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344509: 45 8b 09 mov (%r9),%r9d - 6634450c: 4d 8b 04 02 mov (%r10,%rax,1),%r8 - 66344510: 45 85 c9 test %r9d,%r9d - 66344513: 41 0f 9f c1 setg %r9b - 66344517: 45 0f b6 c9 movzbl %r9b,%r9d - 6634451b: 45 3b 08 cmp (%r8),%r9d - 6634451e: 74 31 je 66344551 - 66344520: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344524: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344528: 45 8b 00 mov (%r8),%r8d - 6634452b: 45 85 c0 test %r8d,%r8d - 6634452e: 75 21 jne 66344551 - 66344530: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344534: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344538: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634453c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344543: 4c 63 06 movslq (%rsi),%r8 - 66344546: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634454a: 44 89 1e mov %r11d,(%rsi) - 6634454d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344551: 48 83 c0 08 add $0x8,%rax - 66344555: 48 83 c2 04 add $0x4,%rdx - 66344559: 48 3d c8 00 00 00 cmp $0xc8,%rax - 6634455f: 75 8f jne 663444f0 - 66344561: 5b pop %rbx - 66344562: 5e pop %rsi - 66344563: 5f pop %rdi - 66344564: 41 5e pop %r14 - 66344566: c3 retq - 66344567: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634456e: 00 00 +0000000066344400 : + 66344400: 41 56 push %r14 + 66344402: 57 push %rdi + 66344403: 56 push %rsi + 66344404: 53 push %rbx + 66344405: 48 8b 3d 14 35 01 00 mov 0x13514(%rip),%rdi # 66357920 + 6634440c: 48 8b 35 1d 35 01 00 mov 0x1351d(%rip),%rsi # 66357930 + 66344413: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344417: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634441b: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 66344422: 8b 00 mov (%rax),%eax + 66344424: 85 c0 test %eax,%eax + 66344426: 0f 84 a4 00 00 00 je 663444d0 + 6634442c: 31 c0 xor %eax,%eax + 6634442e: 66 90 xchg %ax,%ax + 66344430: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344435: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d + 6634443a: 45 8b 00 mov (%r8),%r8d + 6634443d: 45 39 c8 cmp %r9d,%r8d + 66344440: 74 71 je 663444b3 + 66344442: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344446: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634444a: 45 89 c6 mov %r8d,%r14d + 6634444d: 45 29 ce sub %r9d,%r14d + 66344450: 45 31 c9 xor %r9d,%r9d + 66344453: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 + 6634445a: 00 + 6634445b: 45 01 32 add %r14d,(%r10) + 6634445e: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) + 66344463: 45 8b 32 mov (%r10),%r14d + 66344466: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 + 6634446d: 00 + 6634446e: 45 85 f6 test %r14d,%r14d + 66344471: 41 0f 9f c1 setg %r9b + 66344475: 45 3b 08 cmp (%r8),%r9d + 66344478: 74 39 je 663444b3 + 6634447a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634447e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 + 66344485: 00 + 66344486: 45 8b 10 mov (%r8),%r10d + 66344489: 45 85 d2 test %r10d,%r10d + 6634448c: 75 25 jne 663444b3 + 6634448e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344492: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 + 66344499: 00 + 6634449a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634449e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663444a5: 4c 63 06 movslq (%rsi),%r8 + 663444a8: 45 8d 50 01 lea 0x1(%r8),%r10d + 663444ac: 44 89 16 mov %r10d,(%rsi) + 663444af: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663444b3: 48 83 c0 04 add $0x4,%rax + 663444b7: 48 83 f8 40 cmp $0x40,%rax + 663444bb: 0f 85 6f ff ff ff jne 66344430 + 663444c1: 5b pop %rbx + 663444c2: 5e pop %rsi + 663444c3: 5f pop %rdi + 663444c4: 41 5e pop %r14 + 663444c6: c3 retq + 663444c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663444ce: 00 00 + 663444d0: 48 83 c2 44 add $0x44,%rdx + 663444d4: b8 88 00 00 00 mov $0x88,%eax + 663444d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663444e0: 44 8b 02 mov (%rdx),%r8d + 663444e3: 45 85 c0 test %r8d,%r8d + 663444e6: 74 59 je 66344541 + 663444e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663444ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 663444f0: 45 29 01 sub %r8d,(%r9) + 663444f3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663444f9: 45 8b 09 mov (%r9),%r9d + 663444fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344500: 45 85 c9 test %r9d,%r9d + 66344503: 41 0f 9f c1 setg %r9b + 66344507: 45 0f b6 c9 movzbl %r9b,%r9d + 6634450b: 45 3b 08 cmp (%r8),%r9d + 6634450e: 74 31 je 66344541 + 66344510: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344514: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344518: 45 8b 00 mov (%r8),%r8d + 6634451b: 45 85 c0 test %r8d,%r8d + 6634451e: 75 21 jne 66344541 + 66344520: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344524: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344528: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634452c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344533: 4c 63 06 movslq (%rsi),%r8 + 66344536: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634453a: 44 89 16 mov %r10d,(%rsi) + 6634453d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344541: 48 83 c0 08 add $0x8,%rax + 66344545: 48 83 c2 04 add $0x4,%rdx + 66344549: 48 3d 08 01 00 00 cmp $0x108,%rax + 6634454f: 75 8f jne 663444e0 + 66344551: 5b pop %rbx + 66344552: 5e pop %rsi + 66344553: 5f pop %rdi + 66344554: 41 5e pop %r14 + 66344556: c3 retq + 66344557: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634455e: 00 00 -0000000066344570 : - 66344570: 41 56 push %r14 - 66344572: 57 push %rdi - 66344573: 56 push %rsi - 66344574: 53 push %rbx - 66344575: 48 8b 3d a4 33 01 00 mov 0x133a4(%rip),%rdi # 66357920 - 6634457c: 48 8b 35 ad 33 01 00 mov 0x133ad(%rip),%rsi # 66357930 - 66344583: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66344587: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634458b: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66344592: 8b 00 mov (%rax),%eax - 66344594: 85 c0 test %eax,%eax - 66344596: 0f 84 94 00 00 00 je 66344630 - 6634459c: 31 c0 xor %eax,%eax - 6634459e: 66 90 xchg %ax,%ax - 663445a0: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 - 663445a5: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d - 663445aa: 45 8b 00 mov (%r8),%r8d - 663445ad: 45 39 c8 cmp %r9d,%r8d - 663445b0: 74 65 je 66344617 - 663445b2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663445b6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663445ba: 45 89 c6 mov %r8d,%r14d - 663445bd: 45 29 ce sub %r9d,%r14d - 663445c0: 45 31 c9 xor %r9d,%r9d - 663445c3: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 - 663445c8: 45 01 33 add %r14d,(%r11) - 663445cb: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) - 663445d0: 45 8b 33 mov (%r11),%r14d - 663445d3: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 - 663445d8: 45 85 f6 test %r14d,%r14d - 663445db: 41 0f 9f c1 setg %r9b - 663445df: 45 3b 08 cmp (%r8),%r9d - 663445e2: 74 33 je 66344617 - 663445e4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663445e8: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 - 663445ed: 45 8b 18 mov (%r8),%r11d - 663445f0: 45 85 db test %r11d,%r11d - 663445f3: 75 22 jne 66344617 - 663445f5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663445f9: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 - 663445fe: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344602: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344609: 4c 63 06 movslq (%rsi),%r8 - 6634460c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344610: 44 89 1e mov %r11d,(%rsi) - 66344613: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344617: 48 83 c0 04 add $0x4,%rax - 6634461b: 48 83 f8 30 cmp $0x30,%rax - 6634461f: 0f 85 7b ff ff ff jne 663445a0 - 66344625: 5b pop %rbx - 66344626: 5e pop %rsi - 66344627: 5f pop %rdi - 66344628: 41 5e pop %r14 - 6634462a: c3 retq - 6634462b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344630: 48 83 c2 34 add $0x34,%rdx - 66344634: b8 68 00 00 00 mov $0x68,%eax - 66344639: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344640: 44 8b 02 mov (%rdx),%r8d - 66344643: 45 85 c0 test %r8d,%r8d - 66344646: 74 59 je 663446a1 - 66344648: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634464c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344650: 45 29 01 sub %r8d,(%r9) - 66344653: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344659: 45 8b 09 mov (%r9),%r9d - 6634465c: 4d 8b 04 02 mov (%r10,%rax,1),%r8 - 66344660: 45 85 c9 test %r9d,%r9d - 66344663: 41 0f 9f c1 setg %r9b - 66344667: 45 0f b6 c9 movzbl %r9b,%r9d - 6634466b: 45 3b 08 cmp (%r8),%r9d - 6634466e: 74 31 je 663446a1 - 66344670: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344674: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344678: 45 8b 00 mov (%r8),%r8d - 6634467b: 45 85 c0 test %r8d,%r8d - 6634467e: 75 21 jne 663446a1 - 66344680: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344684: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344688: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634468c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344693: 4c 63 06 movslq (%rsi),%r8 - 66344696: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634469a: 44 89 1e mov %r11d,(%rsi) - 6634469d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663446a1: 48 83 c0 08 add $0x8,%rax - 663446a5: 48 83 c2 04 add $0x4,%rdx - 663446a9: 48 3d c8 00 00 00 cmp $0xc8,%rax - 663446af: 75 8f jne 66344640 - 663446b1: 5b pop %rbx - 663446b2: 5e pop %rsi - 663446b3: 5f pop %rdi - 663446b4: 41 5e pop %r14 - 663446b6: c3 retq - 663446b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663446be: 00 00 +0000000066344560 : + 66344560: 48 8b 41 10 mov 0x10(%rcx),%rax + 66344564: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344568: 4c 8b 48 18 mov 0x18(%rax),%r9 + 6634456c: 44 8b 42 08 mov 0x8(%rdx),%r8d + 66344570: 45 8b 09 mov (%r9),%r9d + 66344573: 45 85 c9 test %r9d,%r9d + 66344576: 75 2b jne 663445a3 + 66344578: 45 85 c0 test %r8d,%r8d + 6634457b: 74 25 je 663445a2 + 6634457d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344581: 48 8b 40 10 mov 0x10(%rax),%rax + 66344585: 4d 8b 49 10 mov 0x10(%r9),%r9 + 66344589: 45 29 01 sub %r8d,(%r9) + 6634458c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) + 66344593: 41 8b 11 mov (%r9),%edx + 66344596: 85 d2 test %edx,%edx + 66344598: 0f 9f c2 setg %dl + 6634459b: 0f b6 d2 movzbl %dl,%edx + 6634459e: 3b 10 cmp (%rax),%edx + 663445a0: 75 36 jne 663445d8 + 663445a2: c3 retq + 663445a3: 4c 8b 48 08 mov 0x8(%rax),%r9 + 663445a7: 45 8b 09 mov (%r9),%r9d + 663445aa: 45 39 c1 cmp %r8d,%r9d + 663445ad: 74 f3 je 663445a2 + 663445af: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663445b3: 45 89 cb mov %r9d,%r11d + 663445b6: 45 29 c3 sub %r8d,%r11d + 663445b9: 48 8b 40 10 mov 0x10(%rax),%rax + 663445bd: 4d 8b 52 10 mov 0x10(%r10),%r10 + 663445c1: 45 01 1a add %r11d,(%r10) + 663445c4: 44 89 4a 08 mov %r9d,0x8(%rdx) + 663445c8: 45 8b 02 mov (%r10),%r8d + 663445cb: 45 85 c0 test %r8d,%r8d + 663445ce: 0f 9f c2 setg %dl + 663445d1: 0f b6 d2 movzbl %dl,%edx + 663445d4: 3b 10 cmp (%rax),%edx + 663445d6: 74 ca je 663445a2 + 663445d8: 48 8b 41 20 mov 0x20(%rcx),%rax + 663445dc: 48 8b 40 10 mov 0x10(%rax),%rax + 663445e0: 8b 00 mov (%rax),%eax + 663445e2: 85 c0 test %eax,%eax + 663445e4: 75 bc jne 663445a2 + 663445e6: 48 8b 41 28 mov 0x28(%rcx),%rax + 663445ea: 48 8b 0d 3f 33 01 00 mov 0x1333f(%rip),%rcx # 66357930 + 663445f1: 4c 8b 05 28 33 01 00 mov 0x13328(%rip),%r8 # 66357920 + 663445f8: 48 8b 50 10 mov 0x10(%rax),%rdx + 663445fc: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344600: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344606: 48 63 01 movslq (%rcx),%rax + 66344609: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634460d: 44 89 09 mov %r9d,(%rcx) + 66344610: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344614: c3 retq + 66344615: 90 nop + 66344616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634461d: 00 00 00 -00000000663446c0 : - 663446c0: 41 56 push %r14 - 663446c2: 57 push %rdi - 663446c3: 56 push %rsi - 663446c4: 53 push %rbx - 663446c5: 48 8b 3d 54 32 01 00 mov 0x13254(%rip),%rdi # 66357920 - 663446cc: 48 8b 35 5d 32 01 00 mov 0x1325d(%rip),%rsi # 66357930 - 663446d3: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663446d7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663446db: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 663446e2: 8b 00 mov (%rax),%eax - 663446e4: 85 c0 test %eax,%eax - 663446e6: 0f 84 94 00 00 00 je 66344780 - 663446ec: 31 c0 xor %eax,%eax - 663446ee: 66 90 xchg %ax,%ax - 663446f0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 663446f5: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d - 663446fa: 45 8b 00 mov (%r8),%r8d - 663446fd: 45 39 d0 cmp %r10d,%r8d - 66344700: 74 65 je 66344767 - 66344702: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344706: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634470a: 45 89 c6 mov %r8d,%r14d - 6634470d: 45 29 d6 sub %r10d,%r14d - 66344710: 45 31 d2 xor %r10d,%r10d - 66344713: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 - 66344718: 45 01 33 add %r14d,(%r11) - 6634471b: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) - 66344720: 45 8b 33 mov (%r11),%r14d - 66344723: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 - 66344728: 45 85 f6 test %r14d,%r14d - 6634472b: 41 0f 9f c2 setg %r10b - 6634472f: 45 3b 10 cmp (%r8),%r10d - 66344732: 74 33 je 66344767 - 66344734: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344738: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 - 6634473d: 45 8b 18 mov (%r8),%r11d - 66344740: 45 85 db test %r11d,%r11d - 66344743: 75 22 jne 66344767 - 66344745: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344749: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 - 6634474e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344752: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344759: 4c 63 06 movslq (%rsi),%r8 - 6634475c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344760: 44 89 1e mov %r11d,(%rsi) - 66344763: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344767: 48 83 c0 04 add $0x4,%rax - 6634476b: 48 83 f8 2c cmp $0x2c,%rax - 6634476f: 0f 85 7b ff ff ff jne 663446f0 - 66344775: 5b pop %rbx - 66344776: 5e pop %rsi - 66344777: 5f pop %rdi - 66344778: 41 5e pop %r14 - 6634477a: c3 retq - 6634477b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344780: 48 83 c2 30 add $0x30,%rdx - 66344784: b8 60 00 00 00 mov $0x60,%eax - 66344789: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344790: 44 8b 02 mov (%rdx),%r8d - 66344793: 45 85 c0 test %r8d,%r8d - 66344796: 74 59 je 663447f1 - 66344798: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634479c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 663447a0: 45 29 02 sub %r8d,(%r10) - 663447a3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663447a9: 45 8b 12 mov (%r10),%r10d - 663447ac: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 663447b0: 45 85 d2 test %r10d,%r10d - 663447b3: 41 0f 9f c2 setg %r10b - 663447b7: 45 0f b6 d2 movzbl %r10b,%r10d - 663447bb: 45 3b 10 cmp (%r8),%r10d - 663447be: 74 31 je 663447f1 - 663447c0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663447c4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663447c8: 45 8b 00 mov (%r8),%r8d - 663447cb: 45 85 c0 test %r8d,%r8d - 663447ce: 75 21 jne 663447f1 - 663447d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663447d4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 663447d8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663447dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663447e3: 4c 63 06 movslq (%rsi),%r8 - 663447e6: 45 8d 58 01 lea 0x1(%r8),%r11d - 663447ea: 44 89 1e mov %r11d,(%rsi) - 663447ed: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663447f1: 48 83 c0 08 add $0x8,%rax - 663447f5: 48 83 c2 04 add $0x4,%rdx - 663447f9: 48 3d b8 00 00 00 cmp $0xb8,%rax - 663447ff: 75 8f jne 66344790 - 66344801: 5b pop %rbx - 66344802: 5e pop %rsi - 66344803: 5f pop %rdi - 66344804: 41 5e pop %r14 - 66344806: c3 retq - 66344807: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634480e: 00 00 +0000000066344620 : + 66344620: 48 8b 41 10 mov 0x10(%rcx),%rax + 66344624: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344628: 4c 8b 48 18 mov 0x18(%rax),%r9 + 6634462c: 44 8b 42 08 mov 0x8(%rdx),%r8d + 66344630: 45 8b 09 mov (%r9),%r9d + 66344633: 45 85 c9 test %r9d,%r9d + 66344636: 75 2b jne 66344663 + 66344638: 45 85 c0 test %r8d,%r8d + 6634463b: 74 25 je 66344662 + 6634463d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344641: 48 8b 40 10 mov 0x10(%rax),%rax + 66344645: 4d 8b 49 10 mov 0x10(%r9),%r9 + 66344649: 45 29 01 sub %r8d,(%r9) + 6634464c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) + 66344653: 41 8b 11 mov (%r9),%edx + 66344656: 85 d2 test %edx,%edx + 66344658: 0f 9f c2 setg %dl + 6634465b: 0f b6 d2 movzbl %dl,%edx + 6634465e: 3b 10 cmp (%rax),%edx + 66344660: 75 36 jne 66344698 + 66344662: c3 retq + 66344663: 4c 8b 48 08 mov 0x8(%rax),%r9 + 66344667: 45 8b 09 mov (%r9),%r9d + 6634466a: 45 39 c1 cmp %r8d,%r9d + 6634466d: 74 f3 je 66344662 + 6634466f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344673: 45 89 cb mov %r9d,%r11d + 66344676: 45 29 c3 sub %r8d,%r11d + 66344679: 48 8b 40 10 mov 0x10(%rax),%rax + 6634467d: 4d 8b 52 10 mov 0x10(%r10),%r10 + 66344681: 45 01 1a add %r11d,(%r10) + 66344684: 44 89 4a 08 mov %r9d,0x8(%rdx) + 66344688: 45 8b 02 mov (%r10),%r8d + 6634468b: 45 85 c0 test %r8d,%r8d + 6634468e: 0f 9f c2 setg %dl + 66344691: 0f b6 d2 movzbl %dl,%edx + 66344694: 3b 10 cmp (%rax),%edx + 66344696: 74 ca je 66344662 + 66344698: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634469c: 48 8b 40 10 mov 0x10(%rax),%rax + 663446a0: 8b 00 mov (%rax),%eax + 663446a2: 85 c0 test %eax,%eax + 663446a4: 75 bc jne 66344662 + 663446a6: 48 8b 41 28 mov 0x28(%rcx),%rax + 663446aa: 48 8b 0d 7f 32 01 00 mov 0x1327f(%rip),%rcx # 66357930 + 663446b1: 4c 8b 05 68 32 01 00 mov 0x13268(%rip),%r8 # 66357920 + 663446b8: 48 8b 50 10 mov 0x10(%rax),%rdx + 663446bc: 48 8b 42 10 mov 0x10(%rdx),%rax + 663446c0: c7 00 01 00 00 00 movl $0x1,(%rax) + 663446c6: 48 63 01 movslq (%rcx),%rax + 663446c9: 44 8d 48 01 lea 0x1(%rax),%r9d + 663446cd: 44 89 09 mov %r9d,(%rcx) + 663446d0: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663446d4: c3 retq + 663446d5: 90 nop + 663446d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663446dd: 00 00 00 -0000000066344810 : - 66344810: 41 56 push %r14 - 66344812: 57 push %rdi - 66344813: 56 push %rsi - 66344814: 53 push %rbx - 66344815: 48 8b 3d 04 31 01 00 mov 0x13104(%rip),%rdi # 66357920 - 6634481c: 48 8b 35 0d 31 01 00 mov 0x1310d(%rip),%rsi # 66357930 - 66344823: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344827: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634482b: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 66344832: 8b 00 mov (%rax),%eax - 66344834: 85 c0 test %eax,%eax - 66344836: 0f 84 94 00 00 00 je 663448d0 - 6634483c: 31 c0 xor %eax,%eax - 6634483e: 66 90 xchg %ax,%ax - 66344840: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344845: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d - 6634484a: 45 8b 00 mov (%r8),%r8d - 6634484d: 45 39 d0 cmp %r10d,%r8d - 66344850: 74 65 je 663448b7 - 66344852: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344856: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634485a: 45 89 c6 mov %r8d,%r14d - 6634485d: 45 29 d6 sub %r10d,%r14d - 66344860: 45 31 d2 xor %r10d,%r10d - 66344863: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 - 66344868: 45 01 33 add %r14d,(%r11) - 6634486b: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) - 66344870: 45 8b 33 mov (%r11),%r14d - 66344873: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 - 66344878: 45 85 f6 test %r14d,%r14d - 6634487b: 41 0f 9f c2 setg %r10b - 6634487f: 45 3b 10 cmp (%r8),%r10d - 66344882: 74 33 je 663448b7 - 66344884: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344888: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 - 6634488d: 45 8b 18 mov (%r8),%r11d - 66344890: 45 85 db test %r11d,%r11d - 66344893: 75 22 jne 663448b7 - 66344895: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344899: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 - 6634489e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663448a2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663448a9: 4c 63 06 movslq (%rsi),%r8 - 663448ac: 45 8d 58 01 lea 0x1(%r8),%r11d - 663448b0: 44 89 1e mov %r11d,(%rsi) - 663448b3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663448b7: 48 83 c0 04 add $0x4,%rax - 663448bb: 48 83 f8 2c cmp $0x2c,%rax - 663448bf: 0f 85 7b ff ff ff jne 66344840 - 663448c5: 5b pop %rbx - 663448c6: 5e pop %rsi - 663448c7: 5f pop %rdi - 663448c8: 41 5e pop %r14 - 663448ca: c3 retq - 663448cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663448d0: 48 83 c2 30 add $0x30,%rdx - 663448d4: b8 60 00 00 00 mov $0x60,%eax - 663448d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663448e0: 44 8b 02 mov (%rdx),%r8d - 663448e3: 45 85 c0 test %r8d,%r8d - 663448e6: 74 59 je 66344941 - 663448e8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663448ec: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 663448f0: 45 29 02 sub %r8d,(%r10) - 663448f3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663448f9: 45 8b 12 mov (%r10),%r10d - 663448fc: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66344900: 45 85 d2 test %r10d,%r10d - 66344903: 41 0f 9f c2 setg %r10b - 66344907: 45 0f b6 d2 movzbl %r10b,%r10d - 6634490b: 45 3b 10 cmp (%r8),%r10d - 6634490e: 74 31 je 66344941 - 66344910: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344914: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344918: 45 8b 00 mov (%r8),%r8d - 6634491b: 45 85 c0 test %r8d,%r8d - 6634491e: 75 21 jne 66344941 - 66344920: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344924: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66344928: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634492c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344933: 4c 63 06 movslq (%rsi),%r8 - 66344936: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634493a: 44 89 1e mov %r11d,(%rsi) - 6634493d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344941: 48 83 c0 08 add $0x8,%rax - 66344945: 48 83 c2 04 add $0x4,%rdx - 66344949: 48 3d b8 00 00 00 cmp $0xb8,%rax - 6634494f: 75 8f jne 663448e0 - 66344951: 5b pop %rbx - 66344952: 5e pop %rsi - 66344953: 5f pop %rdi - 66344954: 41 5e pop %r14 - 66344956: c3 retq - 66344957: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634495e: 00 00 +00000000663446e0 : + 663446e0: 41 56 push %r14 + 663446e2: 57 push %rdi + 663446e3: 56 push %rsi + 663446e4: 53 push %rbx + 663446e5: 48 8b 3d 34 32 01 00 mov 0x13234(%rip),%rdi # 66357920 + 663446ec: 48 8b 35 3d 32 01 00 mov 0x1323d(%rip),%rsi # 66357930 + 663446f3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663446f7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663446fb: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 66344702: 8b 00 mov (%rax),%eax + 66344704: 85 c0 test %eax,%eax + 66344706: 0f 84 a4 00 00 00 je 663447b0 + 6634470c: 31 c0 xor %eax,%eax + 6634470e: 66 90 xchg %ax,%ax + 66344710: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344715: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d + 6634471a: 45 8b 00 mov (%r8),%r8d + 6634471d: 45 39 c8 cmp %r9d,%r8d + 66344720: 74 71 je 66344793 + 66344722: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344726: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634472a: 45 89 c6 mov %r8d,%r14d + 6634472d: 45 29 ce sub %r9d,%r14d + 66344730: 45 31 c9 xor %r9d,%r9d + 66344733: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 + 6634473a: 00 + 6634473b: 45 01 32 add %r14d,(%r10) + 6634473e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) + 66344743: 45 8b 32 mov (%r10),%r14d + 66344746: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 + 6634474d: 00 + 6634474e: 45 85 f6 test %r14d,%r14d + 66344751: 41 0f 9f c1 setg %r9b + 66344755: 45 3b 08 cmp (%r8),%r9d + 66344758: 74 39 je 66344793 + 6634475a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634475e: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 + 66344765: 00 + 66344766: 45 8b 10 mov (%r8),%r10d + 66344769: 45 85 d2 test %r10d,%r10d + 6634476c: 75 25 jne 66344793 + 6634476e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344772: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 + 66344779: 00 + 6634477a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634477e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344785: 4c 63 06 movslq (%rsi),%r8 + 66344788: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634478c: 44 89 16 mov %r10d,(%rsi) + 6634478f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344793: 48 83 c0 04 add $0x4,%rax + 66344797: 48 83 f8 3c cmp $0x3c,%rax + 6634479b: 0f 85 6f ff ff ff jne 66344710 + 663447a1: 5b pop %rbx + 663447a2: 5e pop %rsi + 663447a3: 5f pop %rdi + 663447a4: 41 5e pop %r14 + 663447a6: c3 retq + 663447a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663447ae: 00 00 + 663447b0: 48 83 c2 40 add $0x40,%rdx + 663447b4: b8 80 00 00 00 mov $0x80,%eax + 663447b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663447c0: 44 8b 02 mov (%rdx),%r8d + 663447c3: 45 85 c0 test %r8d,%r8d + 663447c6: 74 59 je 66344821 + 663447c8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663447cc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 663447d0: 45 29 01 sub %r8d,(%r9) + 663447d3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663447d9: 45 8b 09 mov (%r9),%r9d + 663447dc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 663447e0: 45 85 c9 test %r9d,%r9d + 663447e3: 41 0f 9f c1 setg %r9b + 663447e7: 45 0f b6 c9 movzbl %r9b,%r9d + 663447eb: 45 3b 08 cmp (%r8),%r9d + 663447ee: 74 31 je 66344821 + 663447f0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663447f4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663447f8: 45 8b 00 mov (%r8),%r8d + 663447fb: 45 85 c0 test %r8d,%r8d + 663447fe: 75 21 jne 66344821 + 66344800: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344804: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344808: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634480c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344813: 4c 63 06 movslq (%rsi),%r8 + 66344816: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634481a: 44 89 16 mov %r10d,(%rsi) + 6634481d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344821: 48 83 c0 08 add $0x8,%rax + 66344825: 48 83 c2 04 add $0x4,%rdx + 66344829: 48 3d f8 00 00 00 cmp $0xf8,%rax + 6634482f: 75 8f jne 663447c0 + 66344831: 5b pop %rbx + 66344832: 5e pop %rsi + 66344833: 5f pop %rdi + 66344834: 41 5e pop %r14 + 66344836: c3 retq + 66344837: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634483e: 00 00 -0000000066344960 : - 66344960: 41 56 push %r14 - 66344962: 57 push %rdi - 66344963: 56 push %rsi - 66344964: 53 push %rbx - 66344965: 48 8b 3d b4 2f 01 00 mov 0x12fb4(%rip),%rdi # 66357920 - 6634496c: 48 8b 35 bd 2f 01 00 mov 0x12fbd(%rip),%rsi # 66357930 - 66344973: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344977: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634497b: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax - 66344982: 8b 00 mov (%rax),%eax - 66344984: 85 c0 test %eax,%eax - 66344986: 0f 84 94 00 00 00 je 66344a20 - 6634498c: 31 c0 xor %eax,%eax - 6634498e: 66 90 xchg %ax,%ax - 66344990: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344995: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d - 6634499a: 45 8b 00 mov (%r8),%r8d - 6634499d: 45 39 d0 cmp %r10d,%r8d - 663449a0: 74 65 je 66344a07 - 663449a2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663449a6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663449aa: 45 89 c6 mov %r8d,%r14d - 663449ad: 45 29 d6 sub %r10d,%r14d - 663449b0: 45 31 d2 xor %r10d,%r10d - 663449b3: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 - 663449b8: 45 01 33 add %r14d,(%r11) - 663449bb: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) - 663449c0: 45 8b 33 mov (%r11),%r14d - 663449c3: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 - 663449c8: 45 85 f6 test %r14d,%r14d - 663449cb: 41 0f 9f c2 setg %r10b - 663449cf: 45 3b 10 cmp (%r8),%r10d - 663449d2: 74 33 je 66344a07 - 663449d4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663449d8: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 - 663449dd: 45 8b 18 mov (%r8),%r11d - 663449e0: 45 85 db test %r11d,%r11d - 663449e3: 75 22 jne 66344a07 - 663449e5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663449e9: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 - 663449ee: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663449f2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663449f9: 4c 63 06 movslq (%rsi),%r8 - 663449fc: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344a00: 44 89 1e mov %r11d,(%rsi) - 66344a03: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344a07: 48 83 c0 04 add $0x4,%rax - 66344a0b: 48 83 f8 28 cmp $0x28,%rax - 66344a0f: 0f 85 7b ff ff ff jne 66344990 - 66344a15: 5b pop %rbx - 66344a16: 5e pop %rsi - 66344a17: 5f pop %rdi - 66344a18: 41 5e pop %r14 - 66344a1a: c3 retq - 66344a1b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344a20: 48 83 c2 2c add $0x2c,%rdx - 66344a24: b8 58 00 00 00 mov $0x58,%eax - 66344a29: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344a30: 44 8b 02 mov (%rdx),%r8d - 66344a33: 45 85 c0 test %r8d,%r8d - 66344a36: 74 59 je 66344a91 - 66344a38: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344a3c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66344a40: 45 29 02 sub %r8d,(%r10) - 66344a43: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344a49: 45 8b 12 mov (%r10),%r10d - 66344a4c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66344a50: 45 85 d2 test %r10d,%r10d - 66344a53: 41 0f 9f c2 setg %r10b - 66344a57: 45 0f b6 d2 movzbl %r10b,%r10d - 66344a5b: 45 3b 10 cmp (%r8),%r10d - 66344a5e: 74 31 je 66344a91 - 66344a60: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344a64: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344a68: 45 8b 00 mov (%r8),%r8d - 66344a6b: 45 85 c0 test %r8d,%r8d - 66344a6e: 75 21 jne 66344a91 - 66344a70: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344a74: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66344a78: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344a7c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344a83: 4c 63 06 movslq (%rsi),%r8 - 66344a86: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344a8a: 44 89 1e mov %r11d,(%rsi) - 66344a8d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344a91: 48 83 c0 08 add $0x8,%rax - 66344a95: 48 83 c2 04 add $0x4,%rdx - 66344a99: 48 3d a8 00 00 00 cmp $0xa8,%rax - 66344a9f: 75 8f jne 66344a30 - 66344aa1: 5b pop %rbx - 66344aa2: 5e pop %rsi - 66344aa3: 5f pop %rdi - 66344aa4: 41 5e pop %r14 - 66344aa6: c3 retq - 66344aa7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344aae: 00 00 +0000000066344840 : + 66344840: 41 56 push %r14 + 66344842: 57 push %rdi + 66344843: 56 push %rsi + 66344844: 53 push %rbx + 66344845: 48 8b 3d d4 30 01 00 mov 0x130d4(%rip),%rdi # 66357920 + 6634484c: 48 8b 35 dd 30 01 00 mov 0x130dd(%rip),%rsi # 66357930 + 66344853: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344857: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634485b: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 66344862: 8b 00 mov (%rax),%eax + 66344864: 85 c0 test %eax,%eax + 66344866: 0f 84 a4 00 00 00 je 66344910 + 6634486c: 31 c0 xor %eax,%eax + 6634486e: 66 90 xchg %ax,%ax + 66344870: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344875: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d + 6634487a: 45 8b 00 mov (%r8),%r8d + 6634487d: 45 39 c8 cmp %r9d,%r8d + 66344880: 74 71 je 663448f3 + 66344882: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344886: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634488a: 45 89 c6 mov %r8d,%r14d + 6634488d: 45 29 ce sub %r9d,%r14d + 66344890: 45 31 c9 xor %r9d,%r9d + 66344893: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 + 6634489a: 00 + 6634489b: 45 01 32 add %r14d,(%r10) + 6634489e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) + 663448a3: 45 8b 32 mov (%r10),%r14d + 663448a6: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 + 663448ad: 00 + 663448ae: 45 85 f6 test %r14d,%r14d + 663448b1: 41 0f 9f c1 setg %r9b + 663448b5: 45 3b 08 cmp (%r8),%r9d + 663448b8: 74 39 je 663448f3 + 663448ba: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663448be: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 + 663448c5: 00 + 663448c6: 45 8b 10 mov (%r8),%r10d + 663448c9: 45 85 d2 test %r10d,%r10d + 663448cc: 75 25 jne 663448f3 + 663448ce: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663448d2: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 + 663448d9: 00 + 663448da: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663448de: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663448e5: 4c 63 06 movslq (%rsi),%r8 + 663448e8: 45 8d 50 01 lea 0x1(%r8),%r10d + 663448ec: 44 89 16 mov %r10d,(%rsi) + 663448ef: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663448f3: 48 83 c0 04 add $0x4,%rax + 663448f7: 48 83 f8 3c cmp $0x3c,%rax + 663448fb: 0f 85 6f ff ff ff jne 66344870 + 66344901: 5b pop %rbx + 66344902: 5e pop %rsi + 66344903: 5f pop %rdi + 66344904: 41 5e pop %r14 + 66344906: c3 retq + 66344907: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634490e: 00 00 + 66344910: 48 83 c2 40 add $0x40,%rdx + 66344914: b8 80 00 00 00 mov $0x80,%eax + 66344919: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344920: 44 8b 02 mov (%rdx),%r8d + 66344923: 45 85 c0 test %r8d,%r8d + 66344926: 74 59 je 66344981 + 66344928: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634492c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344930: 45 29 01 sub %r8d,(%r9) + 66344933: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344939: 45 8b 09 mov (%r9),%r9d + 6634493c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344940: 45 85 c9 test %r9d,%r9d + 66344943: 41 0f 9f c1 setg %r9b + 66344947: 45 0f b6 c9 movzbl %r9b,%r9d + 6634494b: 45 3b 08 cmp (%r8),%r9d + 6634494e: 74 31 je 66344981 + 66344950: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344954: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344958: 45 8b 00 mov (%r8),%r8d + 6634495b: 45 85 c0 test %r8d,%r8d + 6634495e: 75 21 jne 66344981 + 66344960: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344964: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344968: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634496c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344973: 4c 63 06 movslq (%rsi),%r8 + 66344976: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634497a: 44 89 16 mov %r10d,(%rsi) + 6634497d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344981: 48 83 c0 08 add $0x8,%rax + 66344985: 48 83 c2 04 add $0x4,%rdx + 66344989: 48 3d f8 00 00 00 cmp $0xf8,%rax + 6634498f: 75 8f jne 66344920 + 66344991: 5b pop %rbx + 66344992: 5e pop %rsi + 66344993: 5f pop %rdi + 66344994: 41 5e pop %r14 + 66344996: c3 retq + 66344997: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634499e: 00 00 -0000000066344ab0 : - 66344ab0: 41 56 push %r14 - 66344ab2: 57 push %rdi - 66344ab3: 56 push %rsi - 66344ab4: 53 push %rbx - 66344ab5: 48 8b 3d 64 2e 01 00 mov 0x12e64(%rip),%rdi # 66357920 - 66344abc: 48 8b 35 6d 2e 01 00 mov 0x12e6d(%rip),%rsi # 66357930 - 66344ac3: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344ac7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344acb: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax - 66344ad2: 8b 00 mov (%rax),%eax - 66344ad4: 85 c0 test %eax,%eax - 66344ad6: 0f 84 94 00 00 00 je 66344b70 - 66344adc: 31 c0 xor %eax,%eax - 66344ade: 66 90 xchg %ax,%ax - 66344ae0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344ae5: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d - 66344aea: 45 8b 00 mov (%r8),%r8d - 66344aed: 45 39 d0 cmp %r10d,%r8d - 66344af0: 74 65 je 66344b57 - 66344af2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344af6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344afa: 45 89 c6 mov %r8d,%r14d - 66344afd: 45 29 d6 sub %r10d,%r14d - 66344b00: 45 31 d2 xor %r10d,%r10d - 66344b03: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 - 66344b08: 45 01 33 add %r14d,(%r11) - 66344b0b: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) - 66344b10: 45 8b 33 mov (%r11),%r14d - 66344b13: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 - 66344b18: 45 85 f6 test %r14d,%r14d - 66344b1b: 41 0f 9f c2 setg %r10b - 66344b1f: 45 3b 10 cmp (%r8),%r10d - 66344b22: 74 33 je 66344b57 - 66344b24: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344b28: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 - 66344b2d: 45 8b 18 mov (%r8),%r11d - 66344b30: 45 85 db test %r11d,%r11d - 66344b33: 75 22 jne 66344b57 - 66344b35: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344b39: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 - 66344b3e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344b42: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344b49: 4c 63 06 movslq (%rsi),%r8 - 66344b4c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344b50: 44 89 1e mov %r11d,(%rsi) - 66344b53: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344b57: 48 83 c0 04 add $0x4,%rax - 66344b5b: 48 83 f8 28 cmp $0x28,%rax - 66344b5f: 0f 85 7b ff ff ff jne 66344ae0 - 66344b65: 5b pop %rbx - 66344b66: 5e pop %rsi - 66344b67: 5f pop %rdi - 66344b68: 41 5e pop %r14 - 66344b6a: c3 retq - 66344b6b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344b70: 48 83 c2 2c add $0x2c,%rdx - 66344b74: b8 58 00 00 00 mov $0x58,%eax - 66344b79: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344b80: 44 8b 02 mov (%rdx),%r8d - 66344b83: 45 85 c0 test %r8d,%r8d - 66344b86: 74 59 je 66344be1 - 66344b88: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344b8c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66344b90: 45 29 02 sub %r8d,(%r10) - 66344b93: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344b99: 45 8b 12 mov (%r10),%r10d - 66344b9c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66344ba0: 45 85 d2 test %r10d,%r10d - 66344ba3: 41 0f 9f c2 setg %r10b - 66344ba7: 45 0f b6 d2 movzbl %r10b,%r10d - 66344bab: 45 3b 10 cmp (%r8),%r10d - 66344bae: 74 31 je 66344be1 - 66344bb0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344bb4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344bb8: 45 8b 00 mov (%r8),%r8d - 66344bbb: 45 85 c0 test %r8d,%r8d - 66344bbe: 75 21 jne 66344be1 - 66344bc0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344bc4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66344bc8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344bcc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344bd3: 4c 63 06 movslq (%rsi),%r8 - 66344bd6: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344bda: 44 89 1e mov %r11d,(%rsi) - 66344bdd: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344be1: 48 83 c0 08 add $0x8,%rax - 66344be5: 48 83 c2 04 add $0x4,%rdx - 66344be9: 48 3d a8 00 00 00 cmp $0xa8,%rax - 66344bef: 75 8f jne 66344b80 - 66344bf1: 5b pop %rbx - 66344bf2: 5e pop %rsi - 66344bf3: 5f pop %rdi - 66344bf4: 41 5e pop %r14 - 66344bf6: c3 retq - 66344bf7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344bfe: 00 00 +00000000663449a0 : + 663449a0: 41 56 push %r14 + 663449a2: 57 push %rdi + 663449a3: 56 push %rsi + 663449a4: 53 push %rbx + 663449a5: 48 8b 3d 74 2f 01 00 mov 0x12f74(%rip),%rdi # 66357920 + 663449ac: 48 8b 35 7d 2f 01 00 mov 0x12f7d(%rip),%rsi # 66357930 + 663449b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663449b7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663449bb: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 663449c2: 8b 00 mov (%rax),%eax + 663449c4: 85 c0 test %eax,%eax + 663449c6: 0f 84 94 00 00 00 je 66344a60 + 663449cc: 31 c0 xor %eax,%eax + 663449ce: 66 90 xchg %ax,%ax + 663449d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 663449d5: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d + 663449da: 45 8b 00 mov (%r8),%r8d + 663449dd: 45 39 c8 cmp %r9d,%r8d + 663449e0: 74 65 je 66344a47 + 663449e2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663449e6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663449ea: 45 89 c6 mov %r8d,%r14d + 663449ed: 45 29 ce sub %r9d,%r14d + 663449f0: 45 31 c9 xor %r9d,%r9d + 663449f3: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 + 663449f8: 45 01 32 add %r14d,(%r10) + 663449fb: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) + 66344a00: 45 8b 32 mov (%r10),%r14d + 66344a03: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 + 66344a08: 45 85 f6 test %r14d,%r14d + 66344a0b: 41 0f 9f c1 setg %r9b + 66344a0f: 45 3b 08 cmp (%r8),%r9d + 66344a12: 74 33 je 66344a47 + 66344a14: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344a18: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 + 66344a1d: 45 8b 10 mov (%r8),%r10d + 66344a20: 45 85 d2 test %r10d,%r10d + 66344a23: 75 22 jne 66344a47 + 66344a25: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344a29: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 + 66344a2e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344a32: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344a39: 4c 63 06 movslq (%rsi),%r8 + 66344a3c: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344a40: 44 89 16 mov %r10d,(%rsi) + 66344a43: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344a47: 48 83 c0 04 add $0x4,%rax + 66344a4b: 48 83 f8 38 cmp $0x38,%rax + 66344a4f: 0f 85 7b ff ff ff jne 663449d0 + 66344a55: 5b pop %rbx + 66344a56: 5e pop %rsi + 66344a57: 5f pop %rdi + 66344a58: 41 5e pop %r14 + 66344a5a: c3 retq + 66344a5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344a60: 48 83 c2 3c add $0x3c,%rdx + 66344a64: b8 78 00 00 00 mov $0x78,%eax + 66344a69: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344a70: 44 8b 02 mov (%rdx),%r8d + 66344a73: 45 85 c0 test %r8d,%r8d + 66344a76: 74 59 je 66344ad1 + 66344a78: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344a7c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344a80: 45 29 01 sub %r8d,(%r9) + 66344a83: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344a89: 45 8b 09 mov (%r9),%r9d + 66344a8c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344a90: 45 85 c9 test %r9d,%r9d + 66344a93: 41 0f 9f c1 setg %r9b + 66344a97: 45 0f b6 c9 movzbl %r9b,%r9d + 66344a9b: 45 3b 08 cmp (%r8),%r9d + 66344a9e: 74 31 je 66344ad1 + 66344aa0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344aa4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344aa8: 45 8b 00 mov (%r8),%r8d + 66344aab: 45 85 c0 test %r8d,%r8d + 66344aae: 75 21 jne 66344ad1 + 66344ab0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344ab4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344ab8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344abc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344ac3: 4c 63 06 movslq (%rsi),%r8 + 66344ac6: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344aca: 44 89 16 mov %r10d,(%rsi) + 66344acd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344ad1: 48 83 c0 08 add $0x8,%rax + 66344ad5: 48 83 c2 04 add $0x4,%rdx + 66344ad9: 48 3d e8 00 00 00 cmp $0xe8,%rax + 66344adf: 75 8f jne 66344a70 + 66344ae1: 5b pop %rbx + 66344ae2: 5e pop %rsi + 66344ae3: 5f pop %rdi + 66344ae4: 41 5e pop %r14 + 66344ae6: c3 retq + 66344ae7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344aee: 00 00 -0000000066344c00 : - 66344c00: 41 56 push %r14 - 66344c02: 57 push %rdi - 66344c03: 56 push %rsi - 66344c04: 53 push %rbx - 66344c05: 48 8b 3d 14 2d 01 00 mov 0x12d14(%rip),%rdi # 66357920 - 66344c0c: 48 8b 35 1d 2d 01 00 mov 0x12d1d(%rip),%rsi # 66357930 - 66344c13: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344c17: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344c1b: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax - 66344c22: 8b 00 mov (%rax),%eax - 66344c24: 85 c0 test %eax,%eax - 66344c26: 0f 84 94 00 00 00 je 66344cc0 - 66344c2c: 31 c0 xor %eax,%eax - 66344c2e: 66 90 xchg %ax,%ax - 66344c30: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344c35: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d - 66344c3a: 45 8b 00 mov (%r8),%r8d - 66344c3d: 45 39 d0 cmp %r10d,%r8d - 66344c40: 74 65 je 66344ca7 - 66344c42: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344c46: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344c4a: 45 89 c6 mov %r8d,%r14d - 66344c4d: 45 29 d6 sub %r10d,%r14d - 66344c50: 45 31 d2 xor %r10d,%r10d - 66344c53: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 - 66344c58: 45 01 33 add %r14d,(%r11) - 66344c5b: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) - 66344c60: 45 8b 33 mov (%r11),%r14d - 66344c63: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 - 66344c68: 45 85 f6 test %r14d,%r14d - 66344c6b: 41 0f 9f c2 setg %r10b - 66344c6f: 45 3b 10 cmp (%r8),%r10d - 66344c72: 74 33 je 66344ca7 - 66344c74: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344c78: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 - 66344c7d: 45 8b 18 mov (%r8),%r11d - 66344c80: 45 85 db test %r11d,%r11d - 66344c83: 75 22 jne 66344ca7 - 66344c85: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344c89: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 - 66344c8e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344c92: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344c99: 4c 63 06 movslq (%rsi),%r8 - 66344c9c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344ca0: 44 89 1e mov %r11d,(%rsi) - 66344ca3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344ca7: 48 83 c0 04 add $0x4,%rax - 66344cab: 48 83 f8 24 cmp $0x24,%rax - 66344caf: 0f 85 7b ff ff ff jne 66344c30 - 66344cb5: 5b pop %rbx - 66344cb6: 5e pop %rsi - 66344cb7: 5f pop %rdi - 66344cb8: 41 5e pop %r14 - 66344cba: c3 retq - 66344cbb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344cc0: 48 83 c2 28 add $0x28,%rdx - 66344cc4: b8 50 00 00 00 mov $0x50,%eax - 66344cc9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344cd0: 44 8b 02 mov (%rdx),%r8d - 66344cd3: 45 85 c0 test %r8d,%r8d - 66344cd6: 74 59 je 66344d31 - 66344cd8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344cdc: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66344ce0: 45 29 02 sub %r8d,(%r10) - 66344ce3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344ce9: 45 8b 12 mov (%r10),%r10d - 66344cec: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66344cf0: 45 85 d2 test %r10d,%r10d - 66344cf3: 41 0f 9f c2 setg %r10b - 66344cf7: 45 0f b6 d2 movzbl %r10b,%r10d - 66344cfb: 45 3b 10 cmp (%r8),%r10d - 66344cfe: 74 31 je 66344d31 - 66344d00: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344d04: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344d08: 45 8b 00 mov (%r8),%r8d - 66344d0b: 45 85 c0 test %r8d,%r8d - 66344d0e: 75 21 jne 66344d31 - 66344d10: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344d14: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66344d18: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344d1c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344d23: 4c 63 06 movslq (%rsi),%r8 - 66344d26: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344d2a: 44 89 1e mov %r11d,(%rsi) - 66344d2d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344d31: 48 83 c0 08 add $0x8,%rax - 66344d35: 48 83 c2 04 add $0x4,%rdx - 66344d39: 48 3d 98 00 00 00 cmp $0x98,%rax - 66344d3f: 75 8f jne 66344cd0 - 66344d41: 5b pop %rbx - 66344d42: 5e pop %rsi - 66344d43: 5f pop %rdi - 66344d44: 41 5e pop %r14 - 66344d46: c3 retq - 66344d47: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344d4e: 00 00 +0000000066344af0 : + 66344af0: 41 56 push %r14 + 66344af2: 57 push %rdi + 66344af3: 56 push %rsi + 66344af4: 53 push %rbx + 66344af5: 48 8b 3d 24 2e 01 00 mov 0x12e24(%rip),%rdi # 66357920 + 66344afc: 48 8b 35 2d 2e 01 00 mov 0x12e2d(%rip),%rsi # 66357930 + 66344b03: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344b07: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344b0b: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 66344b12: 8b 00 mov (%rax),%eax + 66344b14: 85 c0 test %eax,%eax + 66344b16: 0f 84 94 00 00 00 je 66344bb0 + 66344b1c: 31 c0 xor %eax,%eax + 66344b1e: 66 90 xchg %ax,%ax + 66344b20: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344b25: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d + 66344b2a: 45 8b 00 mov (%r8),%r8d + 66344b2d: 45 39 c8 cmp %r9d,%r8d + 66344b30: 74 65 je 66344b97 + 66344b32: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344b36: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66344b3a: 45 89 c6 mov %r8d,%r14d + 66344b3d: 45 29 ce sub %r9d,%r14d + 66344b40: 45 31 c9 xor %r9d,%r9d + 66344b43: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 + 66344b48: 45 01 32 add %r14d,(%r10) + 66344b4b: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) + 66344b50: 45 8b 32 mov (%r10),%r14d + 66344b53: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 + 66344b58: 45 85 f6 test %r14d,%r14d + 66344b5b: 41 0f 9f c1 setg %r9b + 66344b5f: 45 3b 08 cmp (%r8),%r9d + 66344b62: 74 33 je 66344b97 + 66344b64: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344b68: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 + 66344b6d: 45 8b 10 mov (%r8),%r10d + 66344b70: 45 85 d2 test %r10d,%r10d + 66344b73: 75 22 jne 66344b97 + 66344b75: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344b79: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 + 66344b7e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344b82: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344b89: 4c 63 06 movslq (%rsi),%r8 + 66344b8c: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344b90: 44 89 16 mov %r10d,(%rsi) + 66344b93: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344b97: 48 83 c0 04 add $0x4,%rax + 66344b9b: 48 83 f8 38 cmp $0x38,%rax + 66344b9f: 0f 85 7b ff ff ff jne 66344b20 + 66344ba5: 5b pop %rbx + 66344ba6: 5e pop %rsi + 66344ba7: 5f pop %rdi + 66344ba8: 41 5e pop %r14 + 66344baa: c3 retq + 66344bab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344bb0: 48 83 c2 3c add $0x3c,%rdx + 66344bb4: b8 78 00 00 00 mov $0x78,%eax + 66344bb9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344bc0: 44 8b 02 mov (%rdx),%r8d + 66344bc3: 45 85 c0 test %r8d,%r8d + 66344bc6: 74 59 je 66344c21 + 66344bc8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344bcc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344bd0: 45 29 01 sub %r8d,(%r9) + 66344bd3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344bd9: 45 8b 09 mov (%r9),%r9d + 66344bdc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344be0: 45 85 c9 test %r9d,%r9d + 66344be3: 41 0f 9f c1 setg %r9b + 66344be7: 45 0f b6 c9 movzbl %r9b,%r9d + 66344beb: 45 3b 08 cmp (%r8),%r9d + 66344bee: 74 31 je 66344c21 + 66344bf0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344bf4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344bf8: 45 8b 00 mov (%r8),%r8d + 66344bfb: 45 85 c0 test %r8d,%r8d + 66344bfe: 75 21 jne 66344c21 + 66344c00: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344c04: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344c08: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344c0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344c13: 4c 63 06 movslq (%rsi),%r8 + 66344c16: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344c1a: 44 89 16 mov %r10d,(%rsi) + 66344c1d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344c21: 48 83 c0 08 add $0x8,%rax + 66344c25: 48 83 c2 04 add $0x4,%rdx + 66344c29: 48 3d e8 00 00 00 cmp $0xe8,%rax + 66344c2f: 75 8f jne 66344bc0 + 66344c31: 5b pop %rbx + 66344c32: 5e pop %rsi + 66344c33: 5f pop %rdi + 66344c34: 41 5e pop %r14 + 66344c36: c3 retq + 66344c37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344c3e: 00 00 -0000000066344d50 : - 66344d50: 41 56 push %r14 - 66344d52: 57 push %rdi - 66344d53: 56 push %rsi - 66344d54: 53 push %rbx - 66344d55: 48 8b 3d c4 2b 01 00 mov 0x12bc4(%rip),%rdi # 66357920 - 66344d5c: 48 8b 35 cd 2b 01 00 mov 0x12bcd(%rip),%rsi # 66357930 - 66344d63: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344d67: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344d6b: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax - 66344d72: 8b 00 mov (%rax),%eax - 66344d74: 85 c0 test %eax,%eax - 66344d76: 0f 84 94 00 00 00 je 66344e10 - 66344d7c: 31 c0 xor %eax,%eax - 66344d7e: 66 90 xchg %ax,%ax - 66344d80: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344d85: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d - 66344d8a: 45 8b 00 mov (%r8),%r8d - 66344d8d: 45 39 d0 cmp %r10d,%r8d - 66344d90: 74 65 je 66344df7 - 66344d92: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344d96: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344d9a: 45 89 c6 mov %r8d,%r14d - 66344d9d: 45 29 d6 sub %r10d,%r14d - 66344da0: 45 31 d2 xor %r10d,%r10d - 66344da3: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 - 66344da8: 45 01 33 add %r14d,(%r11) - 66344dab: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) - 66344db0: 45 8b 33 mov (%r11),%r14d - 66344db3: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 - 66344db8: 45 85 f6 test %r14d,%r14d - 66344dbb: 41 0f 9f c2 setg %r10b - 66344dbf: 45 3b 10 cmp (%r8),%r10d - 66344dc2: 74 33 je 66344df7 - 66344dc4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344dc8: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 - 66344dcd: 45 8b 18 mov (%r8),%r11d - 66344dd0: 45 85 db test %r11d,%r11d - 66344dd3: 75 22 jne 66344df7 - 66344dd5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344dd9: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 - 66344dde: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344de2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344de9: 4c 63 06 movslq (%rsi),%r8 - 66344dec: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344df0: 44 89 1e mov %r11d,(%rsi) - 66344df3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344df7: 48 83 c0 04 add $0x4,%rax - 66344dfb: 48 83 f8 24 cmp $0x24,%rax - 66344dff: 0f 85 7b ff ff ff jne 66344d80 - 66344e05: 5b pop %rbx - 66344e06: 5e pop %rsi - 66344e07: 5f pop %rdi - 66344e08: 41 5e pop %r14 - 66344e0a: c3 retq - 66344e0b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344e10: 48 83 c2 28 add $0x28,%rdx - 66344e14: b8 50 00 00 00 mov $0x50,%eax - 66344e19: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344e20: 44 8b 02 mov (%rdx),%r8d - 66344e23: 45 85 c0 test %r8d,%r8d - 66344e26: 74 59 je 66344e81 - 66344e28: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344e2c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66344e30: 45 29 02 sub %r8d,(%r10) - 66344e33: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344e39: 45 8b 12 mov (%r10),%r10d - 66344e3c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66344e40: 45 85 d2 test %r10d,%r10d - 66344e43: 41 0f 9f c2 setg %r10b - 66344e47: 45 0f b6 d2 movzbl %r10b,%r10d - 66344e4b: 45 3b 10 cmp (%r8),%r10d - 66344e4e: 74 31 je 66344e81 - 66344e50: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344e54: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344e58: 45 8b 00 mov (%r8),%r8d - 66344e5b: 45 85 c0 test %r8d,%r8d - 66344e5e: 75 21 jne 66344e81 - 66344e60: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344e64: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66344e68: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344e6c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344e73: 4c 63 06 movslq (%rsi),%r8 - 66344e76: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344e7a: 44 89 1e mov %r11d,(%rsi) - 66344e7d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344e81: 48 83 c0 08 add $0x8,%rax - 66344e85: 48 83 c2 04 add $0x4,%rdx - 66344e89: 48 3d 98 00 00 00 cmp $0x98,%rax - 66344e8f: 75 8f jne 66344e20 - 66344e91: 5b pop %rbx - 66344e92: 5e pop %rsi - 66344e93: 5f pop %rdi - 66344e94: 41 5e pop %r14 - 66344e96: c3 retq - 66344e97: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344e9e: 00 00 +0000000066344c40 : + 66344c40: 41 56 push %r14 + 66344c42: 57 push %rdi + 66344c43: 56 push %rsi + 66344c44: 53 push %rbx + 66344c45: 48 8b 3d d4 2c 01 00 mov 0x12cd4(%rip),%rdi # 66357920 + 66344c4c: 48 8b 35 dd 2c 01 00 mov 0x12cdd(%rip),%rsi # 66357930 + 66344c53: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344c57: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344c5b: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 66344c62: 8b 00 mov (%rax),%eax + 66344c64: 85 c0 test %eax,%eax + 66344c66: 0f 84 94 00 00 00 je 66344d00 + 66344c6c: 31 c0 xor %eax,%eax + 66344c6e: 66 90 xchg %ax,%ax + 66344c70: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344c75: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d + 66344c7a: 45 8b 00 mov (%r8),%r8d + 66344c7d: 45 39 c8 cmp %r9d,%r8d + 66344c80: 74 65 je 66344ce7 + 66344c82: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344c86: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66344c8a: 45 89 c6 mov %r8d,%r14d + 66344c8d: 45 29 ce sub %r9d,%r14d + 66344c90: 45 31 c9 xor %r9d,%r9d + 66344c93: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 + 66344c98: 45 01 32 add %r14d,(%r10) + 66344c9b: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) + 66344ca0: 45 8b 32 mov (%r10),%r14d + 66344ca3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 + 66344ca8: 45 85 f6 test %r14d,%r14d + 66344cab: 41 0f 9f c1 setg %r9b + 66344caf: 45 3b 08 cmp (%r8),%r9d + 66344cb2: 74 33 je 66344ce7 + 66344cb4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344cb8: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 + 66344cbd: 45 8b 10 mov (%r8),%r10d + 66344cc0: 45 85 d2 test %r10d,%r10d + 66344cc3: 75 22 jne 66344ce7 + 66344cc5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344cc9: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 + 66344cce: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344cd2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344cd9: 4c 63 06 movslq (%rsi),%r8 + 66344cdc: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344ce0: 44 89 16 mov %r10d,(%rsi) + 66344ce3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344ce7: 48 83 c0 04 add $0x4,%rax + 66344ceb: 48 83 f8 34 cmp $0x34,%rax + 66344cef: 0f 85 7b ff ff ff jne 66344c70 + 66344cf5: 5b pop %rbx + 66344cf6: 5e pop %rsi + 66344cf7: 5f pop %rdi + 66344cf8: 41 5e pop %r14 + 66344cfa: c3 retq + 66344cfb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344d00: 48 83 c2 38 add $0x38,%rdx + 66344d04: b8 70 00 00 00 mov $0x70,%eax + 66344d09: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344d10: 44 8b 02 mov (%rdx),%r8d + 66344d13: 45 85 c0 test %r8d,%r8d + 66344d16: 74 59 je 66344d71 + 66344d18: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344d1c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344d20: 45 29 01 sub %r8d,(%r9) + 66344d23: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344d29: 45 8b 09 mov (%r9),%r9d + 66344d2c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344d30: 45 85 c9 test %r9d,%r9d + 66344d33: 41 0f 9f c1 setg %r9b + 66344d37: 45 0f b6 c9 movzbl %r9b,%r9d + 66344d3b: 45 3b 08 cmp (%r8),%r9d + 66344d3e: 74 31 je 66344d71 + 66344d40: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344d44: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344d48: 45 8b 00 mov (%r8),%r8d + 66344d4b: 45 85 c0 test %r8d,%r8d + 66344d4e: 75 21 jne 66344d71 + 66344d50: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344d54: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344d58: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344d5c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344d63: 4c 63 06 movslq (%rsi),%r8 + 66344d66: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344d6a: 44 89 16 mov %r10d,(%rsi) + 66344d6d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344d71: 48 83 c0 08 add $0x8,%rax + 66344d75: 48 83 c2 04 add $0x4,%rdx + 66344d79: 48 3d d8 00 00 00 cmp $0xd8,%rax + 66344d7f: 75 8f jne 66344d10 + 66344d81: 5b pop %rbx + 66344d82: 5e pop %rsi + 66344d83: 5f pop %rdi + 66344d84: 41 5e pop %r14 + 66344d86: c3 retq + 66344d87: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344d8e: 00 00 -0000000066344ea0 : - 66344ea0: 41 56 push %r14 - 66344ea2: 57 push %rdi - 66344ea3: 56 push %rsi - 66344ea4: 53 push %rbx - 66344ea5: 48 8b 3d 74 2a 01 00 mov 0x12a74(%rip),%rdi # 66357920 - 66344eac: 48 8b 35 7d 2a 01 00 mov 0x12a7d(%rip),%rsi # 66357930 - 66344eb3: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66344eb7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344ebb: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax - 66344ec2: 44 8b 10 mov (%rax),%r10d - 66344ec5: 45 85 d2 test %r10d,%r10d - 66344ec8: 0f 84 92 00 00 00 je 66344f60 - 66344ece: 31 c0 xor %eax,%eax - 66344ed0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66344ed5: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d - 66344eda: 45 8b 00 mov (%r8),%r8d - 66344edd: 45 39 d0 cmp %r10d,%r8d - 66344ee0: 74 65 je 66344f47 - 66344ee2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344ee6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344eea: 45 89 c6 mov %r8d,%r14d - 66344eed: 45 29 d6 sub %r10d,%r14d - 66344ef0: 45 31 d2 xor %r10d,%r10d - 66344ef3: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 - 66344ef8: 45 01 33 add %r14d,(%r11) - 66344efb: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) - 66344f00: 45 8b 03 mov (%r11),%r8d - 66344f03: 45 85 c0 test %r8d,%r8d - 66344f06: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 - 66344f0b: 41 0f 9f c2 setg %r10b - 66344f0f: 45 3b 10 cmp (%r8),%r10d - 66344f12: 74 33 je 66344f47 - 66344f14: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344f18: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 - 66344f1d: 45 8b 30 mov (%r8),%r14d - 66344f20: 45 85 f6 test %r14d,%r14d - 66344f23: 75 22 jne 66344f47 - 66344f25: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344f29: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 - 66344f2e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66344f32: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344f39: 4c 63 06 movslq (%rsi),%r8 - 66344f3c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344f40: 44 89 1e mov %r11d,(%rsi) - 66344f43: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66344f47: 48 83 c0 04 add $0x4,%rax - 66344f4b: 48 83 f8 20 cmp $0x20,%rax - 66344f4f: 0f 85 7b ff ff ff jne 66344ed0 - 66344f55: 5b pop %rbx - 66344f56: 5e pop %rsi - 66344f57: 5f pop %rdi - 66344f58: 41 5e pop %r14 - 66344f5a: c3 retq - 66344f5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344f60: 8b 42 24 mov 0x24(%rdx),%eax - 66344f63: 85 c0 test %eax,%eax - 66344f65: 74 57 je 66344fbe - 66344f67: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66344f6b: 4d 8b 40 48 mov 0x48(%r8),%r8 - 66344f6f: 41 29 00 sub %eax,(%r8) - 66344f72: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 66344f79: 41 8b 18 mov (%r8),%ebx - 66344f7c: 45 31 c0 xor %r8d,%r8d - 66344f7f: 49 8b 41 48 mov 0x48(%r9),%rax - 66344f83: 85 db test %ebx,%ebx - 66344f85: 41 0f 9f c0 setg %r8b - 66344f89: 44 3b 00 cmp (%rax),%r8d - 66344f8c: 74 30 je 66344fbe - 66344f8e: 48 8b 41 20 mov 0x20(%rcx),%rax - 66344f92: 48 8b 40 48 mov 0x48(%rax),%rax - 66344f96: 44 8b 18 mov (%rax),%r11d - 66344f99: 45 85 db test %r11d,%r11d - 66344f9c: 75 20 jne 66344fbe - 66344f9e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66344fa2: 4c 8b 40 48 mov 0x48(%rax),%r8 - 66344fa6: 49 8b 40 10 mov 0x10(%r8),%rax - 66344faa: c7 00 01 00 00 00 movl $0x1,(%rax) - 66344fb0: 48 63 06 movslq (%rsi),%rax - 66344fb3: 44 8d 50 01 lea 0x1(%rax),%r10d - 66344fb7: 44 89 16 mov %r10d,(%rsi) - 66344fba: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66344fbe: 8b 42 28 mov 0x28(%rdx),%eax - 66344fc1: 85 c0 test %eax,%eax - 66344fc3: 74 58 je 6634501d - 66344fc5: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66344fc9: 4d 8b 40 50 mov 0x50(%r8),%r8 - 66344fcd: 41 29 00 sub %eax,(%r8) - 66344fd0: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 66344fd7: 45 8b 10 mov (%r8),%r10d - 66344fda: 45 31 c0 xor %r8d,%r8d - 66344fdd: 49 8b 41 50 mov 0x50(%r9),%rax - 66344fe1: 45 85 d2 test %r10d,%r10d - 66344fe4: 41 0f 9f c0 setg %r8b - 66344fe8: 44 3b 00 cmp (%rax),%r8d - 66344feb: 74 30 je 6634501d - 66344fed: 48 8b 41 20 mov 0x20(%rcx),%rax - 66344ff1: 48 8b 40 50 mov 0x50(%rax),%rax - 66344ff5: 44 8b 00 mov (%rax),%r8d - 66344ff8: 45 85 c0 test %r8d,%r8d - 66344ffb: 75 20 jne 6634501d - 66344ffd: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345001: 4c 8b 40 50 mov 0x50(%rax),%r8 - 66345005: 49 8b 40 10 mov 0x10(%r8),%rax - 66345009: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634500f: 48 63 06 movslq (%rsi),%rax - 66345012: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345016: 44 89 16 mov %r10d,(%rsi) - 66345019: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634501d: 8b 42 2c mov 0x2c(%rdx),%eax - 66345020: 85 c0 test %eax,%eax - 66345022: 74 55 je 66345079 - 66345024: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345028: 4d 8b 40 58 mov 0x58(%r8),%r8 - 6634502c: 41 29 00 sub %eax,(%r8) - 6634502f: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 66345036: 41 8b 00 mov (%r8),%eax - 66345039: 45 31 c0 xor %r8d,%r8d - 6634503c: 85 c0 test %eax,%eax - 6634503e: 49 8b 41 58 mov 0x58(%r9),%rax - 66345042: 41 0f 9f c0 setg %r8b - 66345046: 44 3b 00 cmp (%rax),%r8d - 66345049: 74 2e je 66345079 - 6634504b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634504f: 48 8b 40 58 mov 0x58(%rax),%rax - 66345053: 8b 00 mov (%rax),%eax - 66345055: 85 c0 test %eax,%eax - 66345057: 75 20 jne 66345079 - 66345059: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634505d: 4c 8b 40 58 mov 0x58(%rax),%r8 - 66345061: 49 8b 40 10 mov 0x10(%r8),%rax - 66345065: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634506b: 48 63 06 movslq (%rsi),%rax - 6634506e: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345072: 44 89 16 mov %r10d,(%rsi) - 66345075: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345079: 8b 42 30 mov 0x30(%rdx),%eax - 6634507c: 85 c0 test %eax,%eax - 6634507e: 74 55 je 663450d5 - 66345080: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345084: 4d 8b 40 60 mov 0x60(%r8),%r8 - 66345088: 41 29 00 sub %eax,(%r8) - 6634508b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 66345092: 41 8b 00 mov (%r8),%eax - 66345095: 45 31 c0 xor %r8d,%r8d - 66345098: 85 c0 test %eax,%eax - 6634509a: 49 8b 41 60 mov 0x60(%r9),%rax - 6634509e: 41 0f 9f c0 setg %r8b - 663450a2: 44 3b 00 cmp (%rax),%r8d - 663450a5: 74 2e je 663450d5 - 663450a7: 48 8b 41 20 mov 0x20(%rcx),%rax - 663450ab: 48 8b 40 60 mov 0x60(%rax),%rax - 663450af: 8b 00 mov (%rax),%eax - 663450b1: 85 c0 test %eax,%eax - 663450b3: 75 20 jne 663450d5 - 663450b5: 48 8b 41 28 mov 0x28(%rcx),%rax - 663450b9: 4c 8b 40 60 mov 0x60(%rax),%r8 - 663450bd: 49 8b 40 10 mov 0x10(%r8),%rax - 663450c1: c7 00 01 00 00 00 movl $0x1,(%rax) - 663450c7: 48 63 06 movslq (%rsi),%rax - 663450ca: 44 8d 50 01 lea 0x1(%rax),%r10d - 663450ce: 44 89 16 mov %r10d,(%rsi) - 663450d1: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 663450d5: 8b 42 34 mov 0x34(%rdx),%eax - 663450d8: 85 c0 test %eax,%eax - 663450da: 74 55 je 66345131 - 663450dc: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 663450e0: 4d 8b 40 68 mov 0x68(%r8),%r8 - 663450e4: 41 29 00 sub %eax,(%r8) - 663450e7: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 663450ee: 41 8b 00 mov (%r8),%eax - 663450f1: 45 31 c0 xor %r8d,%r8d - 663450f4: 85 c0 test %eax,%eax - 663450f6: 49 8b 41 68 mov 0x68(%r9),%rax - 663450fa: 41 0f 9f c0 setg %r8b - 663450fe: 44 3b 00 cmp (%rax),%r8d - 66345101: 74 2e je 66345131 - 66345103: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345107: 48 8b 40 68 mov 0x68(%rax),%rax - 6634510b: 8b 00 mov (%rax),%eax - 6634510d: 85 c0 test %eax,%eax - 6634510f: 75 20 jne 66345131 - 66345111: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345115: 4c 8b 40 68 mov 0x68(%rax),%r8 - 66345119: 49 8b 40 10 mov 0x10(%r8),%rax - 6634511d: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345123: 48 63 06 movslq (%rsi),%rax - 66345126: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634512a: 44 89 16 mov %r10d,(%rsi) - 6634512d: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345131: 8b 42 38 mov 0x38(%rdx),%eax - 66345134: 85 c0 test %eax,%eax - 66345136: 74 56 je 6634518e - 66345138: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634513c: 4d 8b 40 70 mov 0x70(%r8),%r8 - 66345140: 41 29 00 sub %eax,(%r8) - 66345143: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634514a: 45 8b 30 mov (%r8),%r14d - 6634514d: 45 31 c0 xor %r8d,%r8d - 66345150: 49 8b 41 70 mov 0x70(%r9),%rax - 66345154: 45 85 f6 test %r14d,%r14d - 66345157: 41 0f 9f c0 setg %r8b - 6634515b: 44 3b 00 cmp (%rax),%r8d - 6634515e: 74 2e je 6634518e - 66345160: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345164: 48 8b 40 70 mov 0x70(%rax),%rax - 66345168: 8b 18 mov (%rax),%ebx - 6634516a: 85 db test %ebx,%ebx - 6634516c: 75 20 jne 6634518e - 6634516e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345172: 4c 8b 40 70 mov 0x70(%rax),%r8 - 66345176: 49 8b 40 10 mov 0x10(%r8),%rax - 6634517a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345180: 48 63 06 movslq (%rsi),%rax - 66345183: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345187: 44 89 16 mov %r10d,(%rsi) - 6634518a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634518e: 8b 42 3c mov 0x3c(%rdx),%eax - 66345191: 85 c0 test %eax,%eax - 66345193: 74 58 je 663451ed - 66345195: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345199: 4d 8b 40 78 mov 0x78(%r8),%r8 - 6634519d: 41 29 00 sub %eax,(%r8) - 663451a0: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 663451a7: 45 8b 18 mov (%r8),%r11d - 663451aa: 45 31 c0 xor %r8d,%r8d - 663451ad: 49 8b 41 78 mov 0x78(%r9),%rax - 663451b1: 45 85 db test %r11d,%r11d - 663451b4: 41 0f 9f c0 setg %r8b - 663451b8: 44 3b 00 cmp (%rax),%r8d - 663451bb: 74 30 je 663451ed - 663451bd: 48 8b 41 20 mov 0x20(%rcx),%rax - 663451c1: 48 8b 40 78 mov 0x78(%rax),%rax - 663451c5: 44 8b 10 mov (%rax),%r10d - 663451c8: 45 85 d2 test %r10d,%r10d - 663451cb: 75 20 jne 663451ed - 663451cd: 48 8b 41 28 mov 0x28(%rcx),%rax - 663451d1: 4c 8b 40 78 mov 0x78(%rax),%r8 - 663451d5: 49 8b 40 10 mov 0x10(%r8),%rax - 663451d9: c7 00 01 00 00 00 movl $0x1,(%rax) - 663451df: 48 63 06 movslq (%rsi),%rax - 663451e2: 44 8d 50 01 lea 0x1(%rax),%r10d - 663451e6: 44 89 16 mov %r10d,(%rsi) - 663451e9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 663451ed: 8b 42 40 mov 0x40(%rdx),%eax - 663451f0: 85 c0 test %eax,%eax - 663451f2: 0f 84 5d fd ff ff je 66344f55 - 663451f8: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 663451fc: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 - 66345203: 41 29 00 sub %eax,(%r8) - 66345206: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634520d: 31 d2 xor %edx,%edx - 6634520f: 45 8b 00 mov (%r8),%r8d - 66345212: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax - 66345219: 45 85 c0 test %r8d,%r8d - 6634521c: 0f 9f c2 setg %dl - 6634521f: 3b 10 cmp (%rax),%edx - 66345221: 0f 84 2e fd ff ff je 66344f55 - 66345227: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634522b: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 66345232: 8b 00 mov (%rax),%eax - 66345234: 85 c0 test %eax,%eax - 66345236: 0f 85 19 fd ff ff jne 66344f55 - 6634523c: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345240: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 66345247: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634524b: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345251: 48 63 06 movslq (%rsi),%rax - 66345254: 8d 48 01 lea 0x1(%rax),%ecx - 66345257: 89 0e mov %ecx,(%rsi) - 66345259: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) - 6634525d: 5b pop %rbx - 6634525e: 5e pop %rsi - 6634525f: 5f pop %rdi - 66345260: 41 5e pop %r14 - 66345262: c3 retq - 66345263: 0f 1f 00 nopl (%rax) - 66345266: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634526d: 00 00 00 +0000000066344d90 : + 66344d90: 41 56 push %r14 + 66344d92: 57 push %rdi + 66344d93: 56 push %rsi + 66344d94: 53 push %rbx + 66344d95: 48 8b 3d 84 2b 01 00 mov 0x12b84(%rip),%rdi # 66357920 + 66344d9c: 48 8b 35 8d 2b 01 00 mov 0x12b8d(%rip),%rsi # 66357930 + 66344da3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66344da7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344dab: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 66344db2: 8b 00 mov (%rax),%eax + 66344db4: 85 c0 test %eax,%eax + 66344db6: 0f 84 94 00 00 00 je 66344e50 + 66344dbc: 31 c0 xor %eax,%eax + 66344dbe: 66 90 xchg %ax,%ax + 66344dc0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 66344dc5: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d + 66344dca: 45 8b 00 mov (%r8),%r8d + 66344dcd: 45 39 c8 cmp %r9d,%r8d + 66344dd0: 74 65 je 66344e37 + 66344dd2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344dd6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66344dda: 45 89 c6 mov %r8d,%r14d + 66344ddd: 45 29 ce sub %r9d,%r14d + 66344de0: 45 31 c9 xor %r9d,%r9d + 66344de3: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 + 66344de8: 45 01 32 add %r14d,(%r10) + 66344deb: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) + 66344df0: 45 8b 32 mov (%r10),%r14d + 66344df3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 + 66344df8: 45 85 f6 test %r14d,%r14d + 66344dfb: 41 0f 9f c1 setg %r9b + 66344dff: 45 3b 08 cmp (%r8),%r9d + 66344e02: 74 33 je 66344e37 + 66344e04: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344e08: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 + 66344e0d: 45 8b 10 mov (%r8),%r10d + 66344e10: 45 85 d2 test %r10d,%r10d + 66344e13: 75 22 jne 66344e37 + 66344e15: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344e19: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 + 66344e1e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344e22: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344e29: 4c 63 06 movslq (%rsi),%r8 + 66344e2c: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344e30: 44 89 16 mov %r10d,(%rsi) + 66344e33: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344e37: 48 83 c0 04 add $0x4,%rax + 66344e3b: 48 83 f8 34 cmp $0x34,%rax + 66344e3f: 0f 85 7b ff ff ff jne 66344dc0 + 66344e45: 5b pop %rbx + 66344e46: 5e pop %rsi + 66344e47: 5f pop %rdi + 66344e48: 41 5e pop %r14 + 66344e4a: c3 retq + 66344e4b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344e50: 48 83 c2 38 add $0x38,%rdx + 66344e54: b8 70 00 00 00 mov $0x70,%eax + 66344e59: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344e60: 44 8b 02 mov (%rdx),%r8d + 66344e63: 45 85 c0 test %r8d,%r8d + 66344e66: 74 59 je 66344ec1 + 66344e68: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344e6c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344e70: 45 29 01 sub %r8d,(%r9) + 66344e73: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344e79: 45 8b 09 mov (%r9),%r9d + 66344e7c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 66344e80: 45 85 c9 test %r9d,%r9d + 66344e83: 41 0f 9f c1 setg %r9b + 66344e87: 45 0f b6 c9 movzbl %r9b,%r9d + 66344e8b: 45 3b 08 cmp (%r8),%r9d + 66344e8e: 74 31 je 66344ec1 + 66344e90: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344e94: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344e98: 45 8b 00 mov (%r8),%r8d + 66344e9b: 45 85 c0 test %r8d,%r8d + 66344e9e: 75 21 jne 66344ec1 + 66344ea0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344ea4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344ea8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344eac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344eb3: 4c 63 06 movslq (%rsi),%r8 + 66344eb6: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344eba: 44 89 16 mov %r10d,(%rsi) + 66344ebd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344ec1: 48 83 c0 08 add $0x8,%rax + 66344ec5: 48 83 c2 04 add $0x4,%rdx + 66344ec9: 48 3d d8 00 00 00 cmp $0xd8,%rax + 66344ecf: 75 8f jne 66344e60 + 66344ed1: 5b pop %rbx + 66344ed2: 5e pop %rsi + 66344ed3: 5f pop %rdi + 66344ed4: 41 5e pop %r14 + 66344ed6: c3 retq + 66344ed7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344ede: 00 00 -0000000066345270 : - 66345270: 41 56 push %r14 - 66345272: 57 push %rdi - 66345273: 56 push %rsi - 66345274: 53 push %rbx - 66345275: 48 8b 3d a4 26 01 00 mov 0x126a4(%rip),%rdi # 66357920 - 6634527c: 48 8b 35 ad 26 01 00 mov 0x126ad(%rip),%rsi # 66357930 - 66345283: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345287: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634528b: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax - 66345292: 44 8b 10 mov (%rax),%r10d - 66345295: 45 85 d2 test %r10d,%r10d - 66345298: 0f 84 92 00 00 00 je 66345330 - 6634529e: 31 c0 xor %eax,%eax - 663452a0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 663452a5: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d - 663452aa: 45 8b 00 mov (%r8),%r8d - 663452ad: 45 39 d0 cmp %r10d,%r8d - 663452b0: 74 65 je 66345317 - 663452b2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663452b6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663452ba: 45 89 c6 mov %r8d,%r14d - 663452bd: 45 29 d6 sub %r10d,%r14d - 663452c0: 45 31 d2 xor %r10d,%r10d - 663452c3: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 - 663452c8: 45 01 33 add %r14d,(%r11) - 663452cb: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) - 663452d0: 45 8b 03 mov (%r11),%r8d - 663452d3: 45 85 c0 test %r8d,%r8d - 663452d6: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 - 663452db: 41 0f 9f c2 setg %r10b - 663452df: 45 3b 10 cmp (%r8),%r10d - 663452e2: 74 33 je 66345317 - 663452e4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663452e8: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 - 663452ed: 45 8b 30 mov (%r8),%r14d - 663452f0: 45 85 f6 test %r14d,%r14d - 663452f3: 75 22 jne 66345317 - 663452f5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663452f9: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 - 663452fe: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345302: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345309: 4c 63 06 movslq (%rsi),%r8 - 6634530c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345310: 44 89 1e mov %r11d,(%rsi) - 66345313: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345317: 48 83 c0 04 add $0x4,%rax - 6634531b: 48 83 f8 20 cmp $0x20,%rax - 6634531f: 0f 85 7b ff ff ff jne 663452a0 - 66345325: 5b pop %rbx - 66345326: 5e pop %rsi - 66345327: 5f pop %rdi - 66345328: 41 5e pop %r14 - 6634532a: c3 retq - 6634532b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345330: 8b 42 24 mov 0x24(%rdx),%eax - 66345333: 85 c0 test %eax,%eax - 66345335: 74 57 je 6634538e - 66345337: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634533b: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634533f: 41 29 00 sub %eax,(%r8) - 66345342: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 66345349: 41 8b 18 mov (%r8),%ebx - 6634534c: 45 31 c0 xor %r8d,%r8d - 6634534f: 49 8b 41 48 mov 0x48(%r9),%rax - 66345353: 85 db test %ebx,%ebx - 66345355: 41 0f 9f c0 setg %r8b - 66345359: 44 3b 00 cmp (%rax),%r8d - 6634535c: 74 30 je 6634538e - 6634535e: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345362: 48 8b 40 48 mov 0x48(%rax),%rax - 66345366: 44 8b 18 mov (%rax),%r11d - 66345369: 45 85 db test %r11d,%r11d - 6634536c: 75 20 jne 6634538e - 6634536e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345372: 4c 8b 40 48 mov 0x48(%rax),%r8 - 66345376: 49 8b 40 10 mov 0x10(%r8),%rax - 6634537a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345380: 48 63 06 movslq (%rsi),%rax - 66345383: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345387: 44 89 16 mov %r10d,(%rsi) - 6634538a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634538e: 8b 42 28 mov 0x28(%rdx),%eax - 66345391: 85 c0 test %eax,%eax - 66345393: 74 58 je 663453ed - 66345395: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345399: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634539d: 41 29 00 sub %eax,(%r8) - 663453a0: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 663453a7: 45 8b 10 mov (%r8),%r10d - 663453aa: 45 31 c0 xor %r8d,%r8d - 663453ad: 49 8b 41 50 mov 0x50(%r9),%rax - 663453b1: 45 85 d2 test %r10d,%r10d - 663453b4: 41 0f 9f c0 setg %r8b - 663453b8: 44 3b 00 cmp (%rax),%r8d - 663453bb: 74 30 je 663453ed - 663453bd: 48 8b 41 20 mov 0x20(%rcx),%rax - 663453c1: 48 8b 40 50 mov 0x50(%rax),%rax - 663453c5: 44 8b 00 mov (%rax),%r8d - 663453c8: 45 85 c0 test %r8d,%r8d - 663453cb: 75 20 jne 663453ed - 663453cd: 48 8b 41 28 mov 0x28(%rcx),%rax - 663453d1: 4c 8b 40 50 mov 0x50(%rax),%r8 - 663453d5: 49 8b 40 10 mov 0x10(%r8),%rax - 663453d9: c7 00 01 00 00 00 movl $0x1,(%rax) - 663453df: 48 63 06 movslq (%rsi),%rax - 663453e2: 44 8d 50 01 lea 0x1(%rax),%r10d - 663453e6: 44 89 16 mov %r10d,(%rsi) - 663453e9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 663453ed: 8b 42 2c mov 0x2c(%rdx),%eax - 663453f0: 85 c0 test %eax,%eax - 663453f2: 74 55 je 66345449 - 663453f4: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 663453f8: 4d 8b 40 58 mov 0x58(%r8),%r8 - 663453fc: 41 29 00 sub %eax,(%r8) - 663453ff: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 66345406: 41 8b 00 mov (%r8),%eax - 66345409: 45 31 c0 xor %r8d,%r8d - 6634540c: 85 c0 test %eax,%eax - 6634540e: 49 8b 41 58 mov 0x58(%r9),%rax - 66345412: 41 0f 9f c0 setg %r8b - 66345416: 44 3b 00 cmp (%rax),%r8d - 66345419: 74 2e je 66345449 - 6634541b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634541f: 48 8b 40 58 mov 0x58(%rax),%rax - 66345423: 8b 00 mov (%rax),%eax - 66345425: 85 c0 test %eax,%eax - 66345427: 75 20 jne 66345449 - 66345429: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634542d: 4c 8b 40 58 mov 0x58(%rax),%r8 - 66345431: 49 8b 40 10 mov 0x10(%r8),%rax - 66345435: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634543b: 48 63 06 movslq (%rsi),%rax - 6634543e: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345442: 44 89 16 mov %r10d,(%rsi) - 66345445: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345449: 8b 42 30 mov 0x30(%rdx),%eax - 6634544c: 85 c0 test %eax,%eax - 6634544e: 74 55 je 663454a5 - 66345450: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345454: 4d 8b 40 60 mov 0x60(%r8),%r8 - 66345458: 41 29 00 sub %eax,(%r8) - 6634545b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 66345462: 41 8b 00 mov (%r8),%eax - 66345465: 45 31 c0 xor %r8d,%r8d - 66345468: 85 c0 test %eax,%eax - 6634546a: 49 8b 41 60 mov 0x60(%r9),%rax - 6634546e: 41 0f 9f c0 setg %r8b - 66345472: 44 3b 00 cmp (%rax),%r8d - 66345475: 74 2e je 663454a5 - 66345477: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634547b: 48 8b 40 60 mov 0x60(%rax),%rax - 6634547f: 8b 00 mov (%rax),%eax - 66345481: 85 c0 test %eax,%eax - 66345483: 75 20 jne 663454a5 - 66345485: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345489: 4c 8b 40 60 mov 0x60(%rax),%r8 - 6634548d: 49 8b 40 10 mov 0x10(%r8),%rax - 66345491: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345497: 48 63 06 movslq (%rsi),%rax - 6634549a: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634549e: 44 89 16 mov %r10d,(%rsi) - 663454a1: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 663454a5: 8b 42 34 mov 0x34(%rdx),%eax - 663454a8: 85 c0 test %eax,%eax - 663454aa: 74 55 je 66345501 - 663454ac: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 663454b0: 4d 8b 40 68 mov 0x68(%r8),%r8 - 663454b4: 41 29 00 sub %eax,(%r8) - 663454b7: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 663454be: 41 8b 00 mov (%r8),%eax - 663454c1: 45 31 c0 xor %r8d,%r8d - 663454c4: 85 c0 test %eax,%eax - 663454c6: 49 8b 41 68 mov 0x68(%r9),%rax - 663454ca: 41 0f 9f c0 setg %r8b - 663454ce: 44 3b 00 cmp (%rax),%r8d - 663454d1: 74 2e je 66345501 - 663454d3: 48 8b 41 20 mov 0x20(%rcx),%rax - 663454d7: 48 8b 40 68 mov 0x68(%rax),%rax - 663454db: 8b 00 mov (%rax),%eax - 663454dd: 85 c0 test %eax,%eax - 663454df: 75 20 jne 66345501 - 663454e1: 48 8b 41 28 mov 0x28(%rcx),%rax - 663454e5: 4c 8b 40 68 mov 0x68(%rax),%r8 - 663454e9: 49 8b 40 10 mov 0x10(%r8),%rax - 663454ed: c7 00 01 00 00 00 movl $0x1,(%rax) - 663454f3: 48 63 06 movslq (%rsi),%rax - 663454f6: 44 8d 50 01 lea 0x1(%rax),%r10d - 663454fa: 44 89 16 mov %r10d,(%rsi) - 663454fd: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345501: 8b 42 38 mov 0x38(%rdx),%eax - 66345504: 85 c0 test %eax,%eax - 66345506: 74 56 je 6634555e - 66345508: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634550c: 4d 8b 40 70 mov 0x70(%r8),%r8 - 66345510: 41 29 00 sub %eax,(%r8) - 66345513: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634551a: 45 8b 30 mov (%r8),%r14d - 6634551d: 45 31 c0 xor %r8d,%r8d - 66345520: 49 8b 41 70 mov 0x70(%r9),%rax - 66345524: 45 85 f6 test %r14d,%r14d - 66345527: 41 0f 9f c0 setg %r8b - 6634552b: 44 3b 00 cmp (%rax),%r8d - 6634552e: 74 2e je 6634555e - 66345530: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345534: 48 8b 40 70 mov 0x70(%rax),%rax - 66345538: 8b 18 mov (%rax),%ebx - 6634553a: 85 db test %ebx,%ebx - 6634553c: 75 20 jne 6634555e - 6634553e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345542: 4c 8b 40 70 mov 0x70(%rax),%r8 - 66345546: 49 8b 40 10 mov 0x10(%r8),%rax - 6634554a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345550: 48 63 06 movslq (%rsi),%rax - 66345553: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345557: 44 89 16 mov %r10d,(%rsi) - 6634555a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634555e: 8b 42 3c mov 0x3c(%rdx),%eax - 66345561: 85 c0 test %eax,%eax - 66345563: 74 58 je 663455bd - 66345565: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345569: 4d 8b 40 78 mov 0x78(%r8),%r8 - 6634556d: 41 29 00 sub %eax,(%r8) - 66345570: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 66345577: 45 8b 18 mov (%r8),%r11d - 6634557a: 45 31 c0 xor %r8d,%r8d - 6634557d: 49 8b 41 78 mov 0x78(%r9),%rax - 66345581: 45 85 db test %r11d,%r11d - 66345584: 41 0f 9f c0 setg %r8b - 66345588: 44 3b 00 cmp (%rax),%r8d - 6634558b: 74 30 je 663455bd - 6634558d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345591: 48 8b 40 78 mov 0x78(%rax),%rax - 66345595: 44 8b 10 mov (%rax),%r10d - 66345598: 45 85 d2 test %r10d,%r10d - 6634559b: 75 20 jne 663455bd - 6634559d: 48 8b 41 28 mov 0x28(%rcx),%rax - 663455a1: 4c 8b 40 78 mov 0x78(%rax),%r8 - 663455a5: 49 8b 40 10 mov 0x10(%r8),%rax - 663455a9: c7 00 01 00 00 00 movl $0x1,(%rax) - 663455af: 48 63 06 movslq (%rsi),%rax - 663455b2: 44 8d 50 01 lea 0x1(%rax),%r10d - 663455b6: 44 89 16 mov %r10d,(%rsi) - 663455b9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 663455bd: 8b 42 40 mov 0x40(%rdx),%eax - 663455c0: 85 c0 test %eax,%eax - 663455c2: 0f 84 5d fd ff ff je 66345325 - 663455c8: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 663455cc: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 - 663455d3: 41 29 00 sub %eax,(%r8) - 663455d6: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 663455dd: 31 d2 xor %edx,%edx - 663455df: 45 8b 00 mov (%r8),%r8d - 663455e2: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax - 663455e9: 45 85 c0 test %r8d,%r8d - 663455ec: 0f 9f c2 setg %dl - 663455ef: 3b 10 cmp (%rax),%edx - 663455f1: 0f 84 2e fd ff ff je 66345325 - 663455f7: 48 8b 41 20 mov 0x20(%rcx),%rax - 663455fb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 66345602: 8b 00 mov (%rax),%eax - 66345604: 85 c0 test %eax,%eax - 66345606: 0f 85 19 fd ff ff jne 66345325 - 6634560c: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345610: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 66345617: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634561b: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345621: 48 63 06 movslq (%rsi),%rax - 66345624: 8d 48 01 lea 0x1(%rax),%ecx - 66345627: 89 0e mov %ecx,(%rsi) - 66345629: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) - 6634562d: 5b pop %rbx - 6634562e: 5e pop %rsi - 6634562f: 5f pop %rdi - 66345630: 41 5e pop %r14 - 66345632: c3 retq - 66345633: 0f 1f 00 nopl (%rax) - 66345636: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634563d: 00 00 00 +0000000066344ee0 : + 66344ee0: 41 56 push %r14 + 66344ee2: 57 push %rdi + 66344ee3: 56 push %rsi + 66344ee4: 53 push %rbx + 66344ee5: 48 8b 3d 34 2a 01 00 mov 0x12a34(%rip),%rdi # 66357920 + 66344eec: 48 8b 35 3d 2a 01 00 mov 0x12a3d(%rip),%rsi # 66357930 + 66344ef3: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66344ef7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344efb: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 66344f02: 8b 00 mov (%rax),%eax + 66344f04: 85 c0 test %eax,%eax + 66344f06: 0f 84 94 00 00 00 je 66344fa0 + 66344f0c: 31 c0 xor %eax,%eax + 66344f0e: 66 90 xchg %ax,%ax + 66344f10: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 + 66344f15: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d + 66344f1a: 45 8b 00 mov (%r8),%r8d + 66344f1d: 45 39 c8 cmp %r9d,%r8d + 66344f20: 74 65 je 66344f87 + 66344f22: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66344f26: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66344f2a: 45 89 c6 mov %r8d,%r14d + 66344f2d: 45 29 ce sub %r9d,%r14d + 66344f30: 45 31 c9 xor %r9d,%r9d + 66344f33: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 + 66344f38: 45 01 33 add %r14d,(%r11) + 66344f3b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) + 66344f40: 45 8b 33 mov (%r11),%r14d + 66344f43: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 + 66344f48: 45 85 f6 test %r14d,%r14d + 66344f4b: 41 0f 9f c1 setg %r9b + 66344f4f: 45 3b 08 cmp (%r8),%r9d + 66344f52: 74 33 je 66344f87 + 66344f54: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344f58: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 + 66344f5d: 45 8b 18 mov (%r8),%r11d + 66344f60: 45 85 db test %r11d,%r11d + 66344f63: 75 22 jne 66344f87 + 66344f65: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344f69: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 + 66344f6e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344f72: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344f79: 4c 63 06 movslq (%rsi),%r8 + 66344f7c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66344f80: 44 89 1e mov %r11d,(%rsi) + 66344f83: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66344f87: 48 83 c0 04 add $0x4,%rax + 66344f8b: 48 83 f8 30 cmp $0x30,%rax + 66344f8f: 0f 85 7b ff ff ff jne 66344f10 + 66344f95: 5b pop %rbx + 66344f96: 5e pop %rsi + 66344f97: 5f pop %rdi + 66344f98: 41 5e pop %r14 + 66344f9a: c3 retq + 66344f9b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344fa0: 48 83 c2 34 add $0x34,%rdx + 66344fa4: b8 68 00 00 00 mov $0x68,%eax + 66344fa9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66344fb0: 44 8b 02 mov (%rdx),%r8d + 66344fb3: 45 85 c0 test %r8d,%r8d + 66344fb6: 74 59 je 66345011 + 66344fb8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66344fbc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66344fc0: 45 29 01 sub %r8d,(%r9) + 66344fc3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66344fc9: 45 8b 09 mov (%r9),%r9d + 66344fcc: 4d 8b 04 02 mov (%r10,%rax,1),%r8 + 66344fd0: 45 85 c9 test %r9d,%r9d + 66344fd3: 41 0f 9f c1 setg %r9b + 66344fd7: 45 0f b6 c9 movzbl %r9b,%r9d + 66344fdb: 45 3b 08 cmp (%r8),%r9d + 66344fde: 74 31 je 66345011 + 66344fe0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344fe4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66344fe8: 45 8b 00 mov (%r8),%r8d + 66344feb: 45 85 c0 test %r8d,%r8d + 66344fee: 75 21 jne 66345011 + 66344ff0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344ff4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66344ff8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344ffc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345003: 4c 63 06 movslq (%rsi),%r8 + 66345006: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634500a: 44 89 1e mov %r11d,(%rsi) + 6634500d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66345011: 48 83 c0 08 add $0x8,%rax + 66345015: 48 83 c2 04 add $0x4,%rdx + 66345019: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634501f: 75 8f jne 66344fb0 + 66345021: 5b pop %rbx + 66345022: 5e pop %rsi + 66345023: 5f pop %rdi + 66345024: 41 5e pop %r14 + 66345026: c3 retq + 66345027: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634502e: 00 00 -0000000066345640 : - 66345640: 56 push %rsi - 66345641: 53 push %rbx - 66345642: 4c 8b 0d d7 22 01 00 mov 0x122d7(%rip),%r9 # 66357920 - 66345649: 4c 8b 05 e0 22 01 00 mov 0x122e0(%rip),%r8 # 66357930 - 66345650: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66345654: 48 8b 41 08 mov 0x8(%rcx),%rax - 66345658: 4c 8b 52 78 mov 0x78(%rdx),%r10 - 6634565c: 41 8b 32 mov (%r10),%esi - 6634565f: 85 f6 test %esi,%esi - 66345661: 0f 84 39 02 00 00 je 663458a0 - 66345667: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634566b: 44 8b 58 20 mov 0x20(%rax),%r11d - 6634566f: 45 8b 12 mov (%r10),%r10d - 66345672: 45 39 d3 cmp %r10d,%r11d - 66345675: 74 3c je 663456b3 - 66345677: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634567b: 44 89 d6 mov %r10d,%esi - 6634567e: 44 29 de sub %r11d,%esi - 66345681: 45 31 db xor %r11d,%r11d - 66345684: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66345688: 01 33 add %esi,(%rbx) - 6634568a: 44 89 50 20 mov %r10d,0x20(%rax) - 6634568e: 8b 1b mov (%rbx),%ebx - 66345690: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66345694: 85 db test %ebx,%ebx - 66345696: 41 0f 9f c3 setg %r11b - 6634569a: 45 3b 1a cmp (%r10),%r11d - 6634569d: 74 14 je 663456b3 - 6634569f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663456a3: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663456a7: 45 8b 1a mov (%r10),%r11d - 663456aa: 45 85 db test %r11d,%r11d - 663456ad: 0f 84 ad 05 00 00 je 66345c60 - 663456b3: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 663456b7: 44 8b 58 24 mov 0x24(%rax),%r11d - 663456bb: 45 8b 12 mov (%r10),%r10d - 663456be: 45 39 da cmp %r11d,%r10d - 663456c1: 74 3d je 66345700 - 663456c3: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663456c7: 44 89 d6 mov %r10d,%esi - 663456ca: 44 29 de sub %r11d,%esi - 663456cd: 45 31 db xor %r11d,%r11d - 663456d0: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663456d4: 01 33 add %esi,(%rbx) - 663456d6: 44 89 50 24 mov %r10d,0x24(%rax) - 663456da: 44 8b 13 mov (%rbx),%r10d - 663456dd: 45 85 d2 test %r10d,%r10d - 663456e0: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663456e4: 41 0f 9f c3 setg %r11b - 663456e8: 45 3b 1a cmp (%r10),%r11d - 663456eb: 74 13 je 66345700 - 663456ed: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663456f1: 4d 8b 52 48 mov 0x48(%r10),%r10 - 663456f5: 41 8b 32 mov (%r10),%esi - 663456f8: 85 f6 test %esi,%esi - 663456fa: 0f 84 30 05 00 00 je 66345c30 - 66345700: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66345704: 44 8b 58 28 mov 0x28(%rax),%r11d - 66345708: 45 8b 12 mov (%r10),%r10d - 6634570b: 45 39 da cmp %r11d,%r10d - 6634570e: 74 3c je 6634574c - 66345710: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345714: 44 89 d6 mov %r10d,%esi - 66345717: 44 29 de sub %r11d,%esi - 6634571a: 45 31 db xor %r11d,%r11d - 6634571d: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66345721: 01 33 add %esi,(%rbx) - 66345723: 44 89 50 28 mov %r10d,0x28(%rax) - 66345727: 8b 1b mov (%rbx),%ebx - 66345729: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 6634572d: 85 db test %ebx,%ebx - 6634572f: 41 0f 9f c3 setg %r11b - 66345733: 45 3b 1a cmp (%r10),%r11d - 66345736: 74 14 je 6634574c - 66345738: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634573c: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66345740: 45 8b 1a mov (%r10),%r11d - 66345743: 45 85 db test %r11d,%r11d - 66345746: 0f 84 b4 04 00 00 je 66345c00 - 6634574c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66345750: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66345754: 45 8b 12 mov (%r10),%r10d - 66345757: 45 39 da cmp %r11d,%r10d - 6634575a: 74 3d je 66345799 - 6634575c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345760: 44 89 d6 mov %r10d,%esi - 66345763: 44 29 de sub %r11d,%esi - 66345766: 45 31 db xor %r11d,%r11d - 66345769: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 6634576d: 01 33 add %esi,(%rbx) - 6634576f: 44 89 50 2c mov %r10d,0x2c(%rax) - 66345773: 44 8b 13 mov (%rbx),%r10d - 66345776: 45 85 d2 test %r10d,%r10d - 66345779: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 6634577d: 41 0f 9f c3 setg %r11b - 66345781: 45 3b 1a cmp (%r10),%r11d - 66345784: 74 13 je 66345799 - 66345786: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634578a: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634578e: 41 8b 32 mov (%r10),%esi - 66345791: 85 f6 test %esi,%esi - 66345793: 0f 84 37 04 00 00 je 66345bd0 - 66345799: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 6634579d: 44 8b 58 30 mov 0x30(%rax),%r11d - 663457a1: 45 8b 12 mov (%r10),%r10d - 663457a4: 45 39 da cmp %r11d,%r10d - 663457a7: 74 3c je 663457e5 - 663457a9: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663457ad: 44 89 d6 mov %r10d,%esi - 663457b0: 44 29 de sub %r11d,%esi - 663457b3: 45 31 db xor %r11d,%r11d - 663457b6: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 663457ba: 01 33 add %esi,(%rbx) - 663457bc: 44 89 50 30 mov %r10d,0x30(%rax) - 663457c0: 8b 1b mov (%rbx),%ebx - 663457c2: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 663457c6: 85 db test %ebx,%ebx - 663457c8: 41 0f 9f c3 setg %r11b - 663457cc: 45 3b 1a cmp (%r10),%r11d - 663457cf: 74 14 je 663457e5 - 663457d1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663457d5: 4d 8b 52 60 mov 0x60(%r10),%r10 - 663457d9: 45 8b 12 mov (%r10),%r10d - 663457dc: 45 85 d2 test %r10d,%r10d - 663457df: 0f 84 bb 03 00 00 je 66345ba0 - 663457e5: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663457e9: 44 8b 58 34 mov 0x34(%rax),%r11d - 663457ed: 45 8b 12 mov (%r10),%r10d - 663457f0: 45 39 da cmp %r11d,%r10d - 663457f3: 74 3b je 66345830 - 663457f5: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663457f9: 44 89 d6 mov %r10d,%esi - 663457fc: 44 29 de sub %r11d,%esi - 663457ff: 45 31 db xor %r11d,%r11d - 66345802: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 66345806: 01 33 add %esi,(%rbx) - 66345808: 44 89 50 34 mov %r10d,0x34(%rax) - 6634580c: 8b 33 mov (%rbx),%esi - 6634580e: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66345812: 85 f6 test %esi,%esi - 66345814: 41 0f 9f c3 setg %r11b - 66345818: 45 3b 1a cmp (%r10),%r11d - 6634581b: 74 13 je 66345830 - 6634581d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345821: 4d 8b 52 68 mov 0x68(%r10),%r10 - 66345825: 41 8b 1a mov (%r10),%ebx - 66345828: 85 db test %ebx,%ebx - 6634582a: 0f 84 40 03 00 00 je 66345b70 - 66345830: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66345834: 44 8b 58 38 mov 0x38(%rax),%r11d - 66345838: 45 8b 12 mov (%r10),%r10d - 6634583b: 45 39 da cmp %r11d,%r10d - 6634583e: 74 58 je 66345898 - 66345840: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345844: 44 89 d6 mov %r10d,%esi - 66345847: 44 29 de sub %r11d,%esi - 6634584a: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 6634584e: 01 33 add %esi,(%rbx) - 66345850: 44 89 50 38 mov %r10d,0x38(%rax) - 66345854: 44 8b 1b mov (%rbx),%r11d - 66345857: 45 85 db test %r11d,%r11d - 6634585a: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634585e: 41 0f 9f c2 setg %r10b - 66345862: 45 0f b6 d2 movzbl %r10b,%r10d - 66345866: 44 3b 10 cmp (%rax),%r10d - 66345869: 74 2d je 66345898 - 6634586b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634586f: 48 8b 40 70 mov 0x70(%rax),%rax - 66345873: 8b 00 mov (%rax),%eax - 66345875: 85 c0 test %eax,%eax - 66345877: 75 1f jne 66345898 - 66345879: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634587d: 48 8b 50 70 mov 0x70(%rax),%rdx - 66345881: 48 8b 42 10 mov 0x10(%rdx),%rax - 66345885: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634588b: 49 63 00 movslq (%r8),%rax - 6634588e: 8d 48 01 lea 0x1(%rax),%ecx - 66345891: 41 89 08 mov %ecx,(%r8) - 66345894: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66345898: 5b pop %rbx - 66345899: 5e pop %rsi - 6634589a: c3 retq - 6634589b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663458a0: 44 8b 50 20 mov 0x20(%rax),%r10d - 663458a4: 45 85 d2 test %r10d,%r10d - 663458a7: 74 3b je 663458e4 - 663458a9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663458ad: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 663458b1: 45 29 13 sub %r10d,(%r11) - 663458b4: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 663458bb: 45 8b 13 mov (%r11),%r10d - 663458be: 45 31 db xor %r11d,%r11d - 663458c1: 45 85 d2 test %r10d,%r10d - 663458c4: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663458c8: 41 0f 9f c3 setg %r11b - 663458cc: 45 3b 1a cmp (%r10),%r11d - 663458cf: 74 13 je 663458e4 - 663458d1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663458d5: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663458d9: 41 8b 32 mov (%r10),%esi - 663458dc: 85 f6 test %esi,%esi - 663458de: 0f 84 5c 02 00 00 je 66345b40 - 663458e4: 44 8b 50 24 mov 0x24(%rax),%r10d - 663458e8: 45 85 d2 test %r10d,%r10d - 663458eb: 74 3b je 66345928 - 663458ed: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663458f1: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 663458f5: 45 29 13 sub %r10d,(%r11) - 663458f8: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 663458ff: 41 8b 1b mov (%r11),%ebx - 66345902: 45 31 db xor %r11d,%r11d - 66345905: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66345909: 85 db test %ebx,%ebx - 6634590b: 41 0f 9f c3 setg %r11b - 6634590f: 45 3b 1a cmp (%r10),%r11d - 66345912: 74 14 je 66345928 - 66345914: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345918: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634591c: 45 8b 1a mov (%r10),%r11d - 6634591f: 45 85 db test %r11d,%r11d - 66345922: 0f 84 e8 01 00 00 je 66345b10 - 66345928: 44 8b 50 28 mov 0x28(%rax),%r10d - 6634592c: 45 85 d2 test %r10d,%r10d - 6634592f: 74 3b je 6634596c - 66345931: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345935: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66345939: 45 29 13 sub %r10d,(%r11) - 6634593c: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66345943: 45 8b 13 mov (%r11),%r10d - 66345946: 45 31 db xor %r11d,%r11d - 66345949: 45 85 d2 test %r10d,%r10d - 6634594c: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66345950: 41 0f 9f c3 setg %r11b - 66345954: 45 3b 1a cmp (%r10),%r11d - 66345957: 74 13 je 6634596c - 66345959: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634595d: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66345961: 41 8b 32 mov (%r10),%esi - 66345964: 85 f6 test %esi,%esi - 66345966: 0f 84 74 01 00 00 je 66345ae0 - 6634596c: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66345970: 45 85 d2 test %r10d,%r10d - 66345973: 74 3b je 663459b0 - 66345975: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345979: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 6634597d: 45 29 13 sub %r10d,(%r11) - 66345980: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 66345987: 41 8b 1b mov (%r11),%ebx - 6634598a: 45 31 db xor %r11d,%r11d - 6634598d: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66345991: 85 db test %ebx,%ebx - 66345993: 41 0f 9f c3 setg %r11b - 66345997: 45 3b 1a cmp (%r10),%r11d - 6634599a: 74 14 je 663459b0 - 6634599c: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663459a0: 4d 8b 52 58 mov 0x58(%r10),%r10 - 663459a4: 45 8b 1a mov (%r10),%r11d - 663459a7: 45 85 db test %r11d,%r11d - 663459aa: 0f 84 00 01 00 00 je 66345ab0 - 663459b0: 44 8b 50 30 mov 0x30(%rax),%r10d - 663459b4: 45 85 d2 test %r10d,%r10d - 663459b7: 74 3b je 663459f4 - 663459b9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663459bd: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 663459c1: 45 29 13 sub %r10d,(%r11) - 663459c4: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 663459cb: 45 8b 13 mov (%r11),%r10d - 663459ce: 45 31 db xor %r11d,%r11d - 663459d1: 45 85 d2 test %r10d,%r10d - 663459d4: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 663459d8: 41 0f 9f c3 setg %r11b - 663459dc: 45 3b 1a cmp (%r10),%r11d - 663459df: 74 13 je 663459f4 - 663459e1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663459e5: 4d 8b 52 60 mov 0x60(%r10),%r10 - 663459e9: 41 8b 32 mov (%r10),%esi - 663459ec: 85 f6 test %esi,%esi - 663459ee: 0f 84 8f 00 00 00 je 66345a83 - 663459f4: 44 8b 50 34 mov 0x34(%rax),%r10d - 663459f8: 45 85 d2 test %r10d,%r10d - 663459fb: 74 37 je 66345a34 - 663459fd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345a01: 4d 8b 5b 68 mov 0x68(%r11),%r11 - 66345a05: 45 29 13 sub %r10d,(%r11) - 66345a08: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 66345a0f: 41 8b 1b mov (%r11),%ebx - 66345a12: 45 31 db xor %r11d,%r11d - 66345a15: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66345a19: 85 db test %ebx,%ebx - 66345a1b: 41 0f 9f c3 setg %r11b - 66345a1f: 45 3b 1a cmp (%r10),%r11d - 66345a22: 74 10 je 66345a34 - 66345a24: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345a28: 4d 8b 52 68 mov 0x68(%r10),%r10 - 66345a2c: 45 8b 1a mov (%r10),%r11d - 66345a2f: 45 85 db test %r11d,%r11d - 66345a32: 74 2c je 66345a60 - 66345a34: 44 8b 50 38 mov 0x38(%rax),%r10d - 66345a38: 45 85 d2 test %r10d,%r10d - 66345a3b: 0f 84 57 fe ff ff je 66345898 - 66345a41: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345a45: 4d 8b 5b 70 mov 0x70(%r11),%r11 - 66345a49: 45 29 13 sub %r10d,(%r11) - 66345a4c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) - 66345a53: 45 8b 13 mov (%r11),%r10d - 66345a56: 45 85 d2 test %r10d,%r10d - 66345a59: e9 fc fd ff ff jmpq 6634585a - 66345a5e: 66 90 xchg %ax,%ax - 66345a60: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345a64: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66345a68: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345a6c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345a73: 4d 63 10 movslq (%r8),%r10 - 66345a76: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345a7a: 41 89 18 mov %ebx,(%r8) - 66345a7d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345a81: eb b1 jmp 66345a34 - 66345a83: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345a87: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 66345a8b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345a8f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345a96: 4d 63 10 movslq (%r8),%r10 - 66345a99: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345a9d: 41 89 18 mov %ebx,(%r8) - 66345aa0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345aa4: e9 4b ff ff ff jmpq 663459f4 - 66345aa9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66345ab0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345ab4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66345ab8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345abc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345ac3: 4d 63 10 movslq (%r8),%r10 - 66345ac6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345aca: 41 89 18 mov %ebx,(%r8) - 66345acd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345ad1: e9 da fe ff ff jmpq 663459b0 - 66345ad6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345add: 00 00 00 - 66345ae0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345ae4: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66345ae8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345aec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345af3: 4d 63 10 movslq (%r8),%r10 - 66345af6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345afa: 41 89 18 mov %ebx,(%r8) - 66345afd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345b01: e9 66 fe ff ff jmpq 6634596c - 66345b06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345b0d: 00 00 00 - 66345b10: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345b14: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66345b18: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345b1c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345b23: 4d 63 10 movslq (%r8),%r10 - 66345b26: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345b2a: 41 89 18 mov %ebx,(%r8) - 66345b2d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345b31: e9 f2 fd ff ff jmpq 66345928 - 66345b36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345b3d: 00 00 00 - 66345b40: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345b44: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66345b48: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345b4c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345b53: 4d 63 10 movslq (%r8),%r10 - 66345b56: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345b5a: 41 89 18 mov %ebx,(%r8) - 66345b5d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345b61: e9 7e fd ff ff jmpq 663458e4 - 66345b66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345b6d: 00 00 00 - 66345b70: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345b74: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66345b78: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345b7c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345b83: 4d 63 10 movslq (%r8),%r10 - 66345b86: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345b8a: 41 89 18 mov %ebx,(%r8) - 66345b8d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345b91: e9 9a fc ff ff jmpq 66345830 - 66345b96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345b9d: 00 00 00 - 66345ba0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345ba4: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 66345ba8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345bac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345bb3: 4d 63 10 movslq (%r8),%r10 - 66345bb6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345bba: 41 89 18 mov %ebx,(%r8) - 66345bbd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345bc1: e9 1f fc ff ff jmpq 663457e5 - 66345bc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345bcd: 00 00 00 - 66345bd0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345bd4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66345bd8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345bdc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345be3: 4d 63 10 movslq (%r8),%r10 - 66345be6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345bea: 41 89 18 mov %ebx,(%r8) - 66345bed: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345bf1: e9 a3 fb ff ff jmpq 66345799 - 66345bf6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345bfd: 00 00 00 - 66345c00: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345c04: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66345c08: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345c0c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345c13: 4d 63 10 movslq (%r8),%r10 - 66345c16: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345c1a: 41 89 18 mov %ebx,(%r8) - 66345c1d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345c21: e9 26 fb ff ff jmpq 6634574c - 66345c26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345c2d: 00 00 00 - 66345c30: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345c34: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66345c38: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345c3c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345c43: 4d 63 10 movslq (%r8),%r10 - 66345c46: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345c4a: 41 89 18 mov %ebx,(%r8) - 66345c4d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345c51: e9 aa fa ff ff jmpq 66345700 - 66345c56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345c5d: 00 00 00 - 66345c60: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66345c64: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66345c68: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66345c6c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66345c73: 4d 63 10 movslq (%r8),%r10 - 66345c76: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66345c7a: 41 89 18 mov %ebx,(%r8) - 66345c7d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66345c81: e9 2d fa ff ff jmpq 663456b3 - 66345c86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345c8d: 00 00 00 +0000000066345030 : + 66345030: 41 56 push %r14 + 66345032: 57 push %rdi + 66345033: 56 push %rsi + 66345034: 53 push %rbx + 66345035: 48 8b 3d e4 28 01 00 mov 0x128e4(%rip),%rdi # 66357920 + 6634503c: 48 8b 35 ed 28 01 00 mov 0x128ed(%rip),%rsi # 66357930 + 66345043: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66345047: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634504b: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 66345052: 8b 00 mov (%rax),%eax + 66345054: 85 c0 test %eax,%eax + 66345056: 0f 84 94 00 00 00 je 663450f0 + 6634505c: 31 c0 xor %eax,%eax + 6634505e: 66 90 xchg %ax,%ax + 66345060: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 + 66345065: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d + 6634506a: 45 8b 00 mov (%r8),%r8d + 6634506d: 45 39 c8 cmp %r9d,%r8d + 66345070: 74 65 je 663450d7 + 66345072: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345076: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634507a: 45 89 c6 mov %r8d,%r14d + 6634507d: 45 29 ce sub %r9d,%r14d + 66345080: 45 31 c9 xor %r9d,%r9d + 66345083: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 + 66345088: 45 01 33 add %r14d,(%r11) + 6634508b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) + 66345090: 45 8b 33 mov (%r11),%r14d + 66345093: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 + 66345098: 45 85 f6 test %r14d,%r14d + 6634509b: 41 0f 9f c1 setg %r9b + 6634509f: 45 3b 08 cmp (%r8),%r9d + 663450a2: 74 33 je 663450d7 + 663450a4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663450a8: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 + 663450ad: 45 8b 18 mov (%r8),%r11d + 663450b0: 45 85 db test %r11d,%r11d + 663450b3: 75 22 jne 663450d7 + 663450b5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663450b9: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 + 663450be: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663450c2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663450c9: 4c 63 06 movslq (%rsi),%r8 + 663450cc: 45 8d 58 01 lea 0x1(%r8),%r11d + 663450d0: 44 89 1e mov %r11d,(%rsi) + 663450d3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 663450d7: 48 83 c0 04 add $0x4,%rax + 663450db: 48 83 f8 30 cmp $0x30,%rax + 663450df: 0f 85 7b ff ff ff jne 66345060 + 663450e5: 5b pop %rbx + 663450e6: 5e pop %rsi + 663450e7: 5f pop %rdi + 663450e8: 41 5e pop %r14 + 663450ea: c3 retq + 663450eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663450f0: 48 83 c2 34 add $0x34,%rdx + 663450f4: b8 68 00 00 00 mov $0x68,%eax + 663450f9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66345100: 44 8b 02 mov (%rdx),%r8d + 66345103: 45 85 c0 test %r8d,%r8d + 66345106: 74 59 je 66345161 + 66345108: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634510c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66345110: 45 29 01 sub %r8d,(%r9) + 66345113: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345119: 45 8b 09 mov (%r9),%r9d + 6634511c: 4d 8b 04 02 mov (%r10,%rax,1),%r8 + 66345120: 45 85 c9 test %r9d,%r9d + 66345123: 41 0f 9f c1 setg %r9b + 66345127: 45 0f b6 c9 movzbl %r9b,%r9d + 6634512b: 45 3b 08 cmp (%r8),%r9d + 6634512e: 74 31 je 66345161 + 66345130: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345134: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345138: 45 8b 00 mov (%r8),%r8d + 6634513b: 45 85 c0 test %r8d,%r8d + 6634513e: 75 21 jne 66345161 + 66345140: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345144: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66345148: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634514c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345153: 4c 63 06 movslq (%rsi),%r8 + 66345156: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634515a: 44 89 1e mov %r11d,(%rsi) + 6634515d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 66345161: 48 83 c0 08 add $0x8,%rax + 66345165: 48 83 c2 04 add $0x4,%rdx + 66345169: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634516f: 75 8f jne 66345100 + 66345171: 5b pop %rbx + 66345172: 5e pop %rsi + 66345173: 5f pop %rdi + 66345174: 41 5e pop %r14 + 66345176: c3 retq + 66345177: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634517e: 00 00 -0000000066345c90 : - 66345c90: 56 push %rsi - 66345c91: 53 push %rbx - 66345c92: 4c 8b 0d 87 1c 01 00 mov 0x11c87(%rip),%r9 # 66357920 - 66345c99: 4c 8b 05 90 1c 01 00 mov 0x11c90(%rip),%r8 # 66357930 - 66345ca0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66345ca4: 48 8b 41 08 mov 0x8(%rcx),%rax - 66345ca8: 4c 8b 52 78 mov 0x78(%rdx),%r10 - 66345cac: 41 8b 32 mov (%r10),%esi - 66345caf: 85 f6 test %esi,%esi - 66345cb1: 0f 84 39 02 00 00 je 66345ef0 - 66345cb7: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 66345cbb: 44 8b 58 20 mov 0x20(%rax),%r11d - 66345cbf: 45 8b 12 mov (%r10),%r10d - 66345cc2: 45 39 d3 cmp %r10d,%r11d - 66345cc5: 74 3c je 66345d03 - 66345cc7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345ccb: 44 89 d6 mov %r10d,%esi - 66345cce: 44 29 de sub %r11d,%esi - 66345cd1: 45 31 db xor %r11d,%r11d - 66345cd4: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66345cd8: 01 33 add %esi,(%rbx) - 66345cda: 44 89 50 20 mov %r10d,0x20(%rax) - 66345cde: 8b 1b mov (%rbx),%ebx - 66345ce0: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66345ce4: 85 db test %ebx,%ebx - 66345ce6: 41 0f 9f c3 setg %r11b - 66345cea: 45 3b 1a cmp (%r10),%r11d - 66345ced: 74 14 je 66345d03 - 66345cef: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345cf3: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66345cf7: 45 8b 1a mov (%r10),%r11d - 66345cfa: 45 85 db test %r11d,%r11d - 66345cfd: 0f 84 ad 05 00 00 je 663462b0 - 66345d03: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66345d07: 44 8b 58 24 mov 0x24(%rax),%r11d - 66345d0b: 45 8b 12 mov (%r10),%r10d - 66345d0e: 45 39 da cmp %r11d,%r10d - 66345d11: 74 3d je 66345d50 - 66345d13: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345d17: 44 89 d6 mov %r10d,%esi - 66345d1a: 44 29 de sub %r11d,%esi - 66345d1d: 45 31 db xor %r11d,%r11d - 66345d20: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66345d24: 01 33 add %esi,(%rbx) - 66345d26: 44 89 50 24 mov %r10d,0x24(%rax) - 66345d2a: 44 8b 13 mov (%rbx),%r10d - 66345d2d: 45 85 d2 test %r10d,%r10d - 66345d30: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66345d34: 41 0f 9f c3 setg %r11b - 66345d38: 45 3b 1a cmp (%r10),%r11d - 66345d3b: 74 13 je 66345d50 - 66345d3d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345d41: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66345d45: 41 8b 32 mov (%r10),%esi - 66345d48: 85 f6 test %esi,%esi - 66345d4a: 0f 84 30 05 00 00 je 66346280 - 66345d50: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66345d54: 44 8b 58 28 mov 0x28(%rax),%r11d - 66345d58: 45 8b 12 mov (%r10),%r10d - 66345d5b: 45 39 da cmp %r11d,%r10d - 66345d5e: 74 3c je 66345d9c - 66345d60: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345d64: 44 89 d6 mov %r10d,%esi - 66345d67: 44 29 de sub %r11d,%esi - 66345d6a: 45 31 db xor %r11d,%r11d - 66345d6d: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66345d71: 01 33 add %esi,(%rbx) - 66345d73: 44 89 50 28 mov %r10d,0x28(%rax) - 66345d77: 8b 1b mov (%rbx),%ebx - 66345d79: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66345d7d: 85 db test %ebx,%ebx - 66345d7f: 41 0f 9f c3 setg %r11b - 66345d83: 45 3b 1a cmp (%r10),%r11d - 66345d86: 74 14 je 66345d9c - 66345d88: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345d8c: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66345d90: 45 8b 1a mov (%r10),%r11d - 66345d93: 45 85 db test %r11d,%r11d - 66345d96: 0f 84 b4 04 00 00 je 66346250 - 66345d9c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66345da0: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66345da4: 45 8b 12 mov (%r10),%r10d - 66345da7: 45 39 da cmp %r11d,%r10d - 66345daa: 74 3d je 66345de9 - 66345dac: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345db0: 44 89 d6 mov %r10d,%esi - 66345db3: 44 29 de sub %r11d,%esi - 66345db6: 45 31 db xor %r11d,%r11d - 66345db9: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 66345dbd: 01 33 add %esi,(%rbx) - 66345dbf: 44 89 50 2c mov %r10d,0x2c(%rax) - 66345dc3: 44 8b 13 mov (%rbx),%r10d - 66345dc6: 45 85 d2 test %r10d,%r10d - 66345dc9: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66345dcd: 41 0f 9f c3 setg %r11b - 66345dd1: 45 3b 1a cmp (%r10),%r11d - 66345dd4: 74 13 je 66345de9 - 66345dd6: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345dda: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66345dde: 41 8b 32 mov (%r10),%esi - 66345de1: 85 f6 test %esi,%esi - 66345de3: 0f 84 37 04 00 00 je 66346220 - 66345de9: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 66345ded: 44 8b 58 30 mov 0x30(%rax),%r11d - 66345df1: 45 8b 12 mov (%r10),%r10d - 66345df4: 45 39 da cmp %r11d,%r10d - 66345df7: 74 3c je 66345e35 - 66345df9: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345dfd: 44 89 d6 mov %r10d,%esi - 66345e00: 44 29 de sub %r11d,%esi - 66345e03: 45 31 db xor %r11d,%r11d - 66345e06: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66345e0a: 01 33 add %esi,(%rbx) - 66345e0c: 44 89 50 30 mov %r10d,0x30(%rax) - 66345e10: 8b 1b mov (%rbx),%ebx - 66345e12: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 66345e16: 85 db test %ebx,%ebx - 66345e18: 41 0f 9f c3 setg %r11b - 66345e1c: 45 3b 1a cmp (%r10),%r11d - 66345e1f: 74 14 je 66345e35 - 66345e21: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345e25: 4d 8b 52 60 mov 0x60(%r10),%r10 - 66345e29: 45 8b 12 mov (%r10),%r10d - 66345e2c: 45 85 d2 test %r10d,%r10d - 66345e2f: 0f 84 bb 03 00 00 je 663461f0 - 66345e35: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66345e39: 44 8b 58 34 mov 0x34(%rax),%r11d - 66345e3d: 45 8b 12 mov (%r10),%r10d - 66345e40: 45 39 da cmp %r11d,%r10d - 66345e43: 74 3b je 66345e80 - 66345e45: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345e49: 44 89 d6 mov %r10d,%esi - 66345e4c: 44 29 de sub %r11d,%esi - 66345e4f: 45 31 db xor %r11d,%r11d - 66345e52: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 66345e56: 01 33 add %esi,(%rbx) - 66345e58: 44 89 50 34 mov %r10d,0x34(%rax) - 66345e5c: 8b 33 mov (%rbx),%esi - 66345e5e: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66345e62: 85 f6 test %esi,%esi - 66345e64: 41 0f 9f c3 setg %r11b - 66345e68: 45 3b 1a cmp (%r10),%r11d - 66345e6b: 74 13 je 66345e80 - 66345e6d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345e71: 4d 8b 52 68 mov 0x68(%r10),%r10 - 66345e75: 41 8b 1a mov (%r10),%ebx - 66345e78: 85 db test %ebx,%ebx - 66345e7a: 0f 84 40 03 00 00 je 663461c0 - 66345e80: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66345e84: 44 8b 58 38 mov 0x38(%rax),%r11d - 66345e88: 45 8b 12 mov (%r10),%r10d - 66345e8b: 45 39 da cmp %r11d,%r10d - 66345e8e: 74 58 je 66345ee8 - 66345e90: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66345e94: 44 89 d6 mov %r10d,%esi - 66345e97: 44 29 de sub %r11d,%esi - 66345e9a: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 66345e9e: 01 33 add %esi,(%rbx) - 66345ea0: 44 89 50 38 mov %r10d,0x38(%rax) - 66345ea4: 44 8b 1b mov (%rbx),%r11d - 66345ea7: 45 85 db test %r11d,%r11d - 66345eaa: 48 8b 42 70 mov 0x70(%rdx),%rax - 66345eae: 41 0f 9f c2 setg %r10b - 66345eb2: 45 0f b6 d2 movzbl %r10b,%r10d - 66345eb6: 44 3b 10 cmp (%rax),%r10d - 66345eb9: 74 2d je 66345ee8 - 66345ebb: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345ebf: 48 8b 40 70 mov 0x70(%rax),%rax - 66345ec3: 8b 00 mov (%rax),%eax - 66345ec5: 85 c0 test %eax,%eax - 66345ec7: 75 1f jne 66345ee8 - 66345ec9: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345ecd: 48 8b 50 70 mov 0x70(%rax),%rdx - 66345ed1: 48 8b 42 10 mov 0x10(%rdx),%rax - 66345ed5: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345edb: 49 63 00 movslq (%r8),%rax - 66345ede: 8d 48 01 lea 0x1(%rax),%ecx - 66345ee1: 41 89 08 mov %ecx,(%r8) - 66345ee4: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66345ee8: 5b pop %rbx - 66345ee9: 5e pop %rsi - 66345eea: c3 retq - 66345eeb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345ef0: 44 8b 50 20 mov 0x20(%rax),%r10d - 66345ef4: 45 85 d2 test %r10d,%r10d - 66345ef7: 74 3b je 66345f34 - 66345ef9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345efd: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66345f01: 45 29 13 sub %r10d,(%r11) - 66345f04: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66345f0b: 45 8b 13 mov (%r11),%r10d - 66345f0e: 45 31 db xor %r11d,%r11d - 66345f11: 45 85 d2 test %r10d,%r10d - 66345f14: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66345f18: 41 0f 9f c3 setg %r11b - 66345f1c: 45 3b 1a cmp (%r10),%r11d - 66345f1f: 74 13 je 66345f34 - 66345f21: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345f25: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66345f29: 41 8b 32 mov (%r10),%esi - 66345f2c: 85 f6 test %esi,%esi - 66345f2e: 0f 84 5c 02 00 00 je 66346190 - 66345f34: 44 8b 50 24 mov 0x24(%rax),%r10d - 66345f38: 45 85 d2 test %r10d,%r10d - 66345f3b: 74 3b je 66345f78 - 66345f3d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345f41: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66345f45: 45 29 13 sub %r10d,(%r11) - 66345f48: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66345f4f: 41 8b 1b mov (%r11),%ebx - 66345f52: 45 31 db xor %r11d,%r11d - 66345f55: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66345f59: 85 db test %ebx,%ebx - 66345f5b: 41 0f 9f c3 setg %r11b - 66345f5f: 45 3b 1a cmp (%r10),%r11d - 66345f62: 74 14 je 66345f78 - 66345f64: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345f68: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66345f6c: 45 8b 1a mov (%r10),%r11d - 66345f6f: 45 85 db test %r11d,%r11d - 66345f72: 0f 84 e8 01 00 00 je 66346160 - 66345f78: 44 8b 50 28 mov 0x28(%rax),%r10d - 66345f7c: 45 85 d2 test %r10d,%r10d - 66345f7f: 74 3b je 66345fbc - 66345f81: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345f85: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66345f89: 45 29 13 sub %r10d,(%r11) - 66345f8c: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66345f93: 45 8b 13 mov (%r11),%r10d - 66345f96: 45 31 db xor %r11d,%r11d - 66345f99: 45 85 d2 test %r10d,%r10d - 66345f9c: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66345fa0: 41 0f 9f c3 setg %r11b - 66345fa4: 45 3b 1a cmp (%r10),%r11d - 66345fa7: 74 13 je 66345fbc - 66345fa9: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345fad: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66345fb1: 41 8b 32 mov (%r10),%esi - 66345fb4: 85 f6 test %esi,%esi - 66345fb6: 0f 84 74 01 00 00 je 66346130 - 66345fbc: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66345fc0: 45 85 d2 test %r10d,%r10d - 66345fc3: 74 3b je 66346000 - 66345fc5: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345fc9: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 66345fcd: 45 29 13 sub %r10d,(%r11) - 66345fd0: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 66345fd7: 41 8b 1b mov (%r11),%ebx - 66345fda: 45 31 db xor %r11d,%r11d - 66345fdd: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66345fe1: 85 db test %ebx,%ebx - 66345fe3: 41 0f 9f c3 setg %r11b - 66345fe7: 45 3b 1a cmp (%r10),%r11d - 66345fea: 74 14 je 66346000 - 66345fec: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66345ff0: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66345ff4: 45 8b 1a mov (%r10),%r11d - 66345ff7: 45 85 db test %r11d,%r11d - 66345ffa: 0f 84 00 01 00 00 je 66346100 - 66346000: 44 8b 50 30 mov 0x30(%rax),%r10d - 66346004: 45 85 d2 test %r10d,%r10d - 66346007: 74 3b je 66346044 - 66346009: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634600d: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 66346011: 45 29 13 sub %r10d,(%r11) - 66346014: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634601b: 45 8b 13 mov (%r11),%r10d - 6634601e: 45 31 db xor %r11d,%r11d - 66346021: 45 85 d2 test %r10d,%r10d - 66346024: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 66346028: 41 0f 9f c3 setg %r11b - 6634602c: 45 3b 1a cmp (%r10),%r11d - 6634602f: 74 13 je 66346044 - 66346031: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346035: 4d 8b 52 60 mov 0x60(%r10),%r10 - 66346039: 41 8b 32 mov (%r10),%esi - 6634603c: 85 f6 test %esi,%esi - 6634603e: 0f 84 8f 00 00 00 je 663460d3 - 66346044: 44 8b 50 34 mov 0x34(%rax),%r10d - 66346048: 45 85 d2 test %r10d,%r10d - 6634604b: 74 37 je 66346084 - 6634604d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346051: 4d 8b 5b 68 mov 0x68(%r11),%r11 - 66346055: 45 29 13 sub %r10d,(%r11) - 66346058: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 6634605f: 41 8b 1b mov (%r11),%ebx - 66346062: 45 31 db xor %r11d,%r11d - 66346065: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66346069: 85 db test %ebx,%ebx - 6634606b: 41 0f 9f c3 setg %r11b - 6634606f: 45 3b 1a cmp (%r10),%r11d - 66346072: 74 10 je 66346084 - 66346074: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346078: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634607c: 45 8b 1a mov (%r10),%r11d - 6634607f: 45 85 db test %r11d,%r11d - 66346082: 74 2c je 663460b0 - 66346084: 44 8b 50 38 mov 0x38(%rax),%r10d - 66346088: 45 85 d2 test %r10d,%r10d - 6634608b: 0f 84 57 fe ff ff je 66345ee8 - 66346091: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346095: 4d 8b 5b 70 mov 0x70(%r11),%r11 - 66346099: 45 29 13 sub %r10d,(%r11) - 6634609c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) - 663460a3: 45 8b 13 mov (%r11),%r10d - 663460a6: 45 85 d2 test %r10d,%r10d - 663460a9: e9 fc fd ff ff jmpq 66345eaa - 663460ae: 66 90 xchg %ax,%ax - 663460b0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663460b4: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 663460b8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663460bc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663460c3: 4d 63 10 movslq (%r8),%r10 - 663460c6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663460ca: 41 89 18 mov %ebx,(%r8) - 663460cd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663460d1: eb b1 jmp 66346084 - 663460d3: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663460d7: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 663460db: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663460df: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663460e6: 4d 63 10 movslq (%r8),%r10 - 663460e9: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663460ed: 41 89 18 mov %ebx,(%r8) - 663460f0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663460f4: e9 4b ff ff ff jmpq 66346044 - 663460f9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66346100: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346104: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346108: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634610c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346113: 4d 63 10 movslq (%r8),%r10 - 66346116: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634611a: 41 89 18 mov %ebx,(%r8) - 6634611d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346121: e9 da fe ff ff jmpq 66346000 - 66346126: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634612d: 00 00 00 - 66346130: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346134: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346138: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634613c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346143: 4d 63 10 movslq (%r8),%r10 - 66346146: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634614a: 41 89 18 mov %ebx,(%r8) - 6634614d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346151: e9 66 fe ff ff jmpq 66345fbc - 66346156: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634615d: 00 00 00 - 66346160: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346164: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346168: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634616c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346173: 4d 63 10 movslq (%r8),%r10 - 66346176: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634617a: 41 89 18 mov %ebx,(%r8) - 6634617d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346181: e9 f2 fd ff ff jmpq 66345f78 - 66346186: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634618d: 00 00 00 - 66346190: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346194: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346198: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634619c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663461a3: 4d 63 10 movslq (%r8),%r10 - 663461a6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663461aa: 41 89 18 mov %ebx,(%r8) - 663461ad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663461b1: e9 7e fd ff ff jmpq 66345f34 - 663461b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663461bd: 00 00 00 - 663461c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663461c4: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 663461c8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663461cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663461d3: 4d 63 10 movslq (%r8),%r10 - 663461d6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663461da: 41 89 18 mov %ebx,(%r8) - 663461dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663461e1: e9 9a fc ff ff jmpq 66345e80 - 663461e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663461ed: 00 00 00 - 663461f0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663461f4: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 663461f8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663461fc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346203: 4d 63 10 movslq (%r8),%r10 - 66346206: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634620a: 41 89 18 mov %ebx,(%r8) - 6634620d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346211: e9 1f fc ff ff jmpq 66345e35 - 66346216: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634621d: 00 00 00 - 66346220: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346224: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346228: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634622c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346233: 4d 63 10 movslq (%r8),%r10 - 66346236: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634623a: 41 89 18 mov %ebx,(%r8) - 6634623d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346241: e9 a3 fb ff ff jmpq 66345de9 - 66346246: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634624d: 00 00 00 - 66346250: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346254: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346258: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634625c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346263: 4d 63 10 movslq (%r8),%r10 - 66346266: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634626a: 41 89 18 mov %ebx,(%r8) - 6634626d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346271: e9 26 fb ff ff jmpq 66345d9c - 66346276: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634627d: 00 00 00 - 66346280: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346284: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346288: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634628c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346293: 4d 63 10 movslq (%r8),%r10 - 66346296: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634629a: 41 89 18 mov %ebx,(%r8) - 6634629d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663462a1: e9 aa fa ff ff jmpq 66345d50 - 663462a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663462ad: 00 00 00 - 663462b0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663462b4: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 663462b8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663462bc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663462c3: 4d 63 10 movslq (%r8),%r10 - 663462c6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663462ca: 41 89 18 mov %ebx,(%r8) - 663462cd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663462d1: e9 2d fa ff ff jmpq 66345d03 - 663462d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663462dd: 00 00 00 +0000000066345180 : + 66345180: 41 56 push %r14 + 66345182: 57 push %rdi + 66345183: 56 push %rsi + 66345184: 53 push %rbx + 66345185: 48 8b 3d 94 27 01 00 mov 0x12794(%rip),%rdi # 66357920 + 6634518c: 48 8b 35 9d 27 01 00 mov 0x1279d(%rip),%rsi # 66357930 + 66345193: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345197: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634519b: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 663451a2: 8b 00 mov (%rax),%eax + 663451a4: 85 c0 test %eax,%eax + 663451a6: 0f 84 94 00 00 00 je 66345240 + 663451ac: 31 c0 xor %eax,%eax + 663451ae: 66 90 xchg %ax,%ax + 663451b0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 663451b5: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d + 663451ba: 45 8b 00 mov (%r8),%r8d + 663451bd: 45 39 d0 cmp %r10d,%r8d + 663451c0: 74 65 je 66345227 + 663451c2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663451c6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663451ca: 45 89 c6 mov %r8d,%r14d + 663451cd: 45 29 d6 sub %r10d,%r14d + 663451d0: 45 31 d2 xor %r10d,%r10d + 663451d3: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 + 663451d8: 45 01 33 add %r14d,(%r11) + 663451db: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) + 663451e0: 45 8b 33 mov (%r11),%r14d + 663451e3: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 + 663451e8: 45 85 f6 test %r14d,%r14d + 663451eb: 41 0f 9f c2 setg %r10b + 663451ef: 45 3b 10 cmp (%r8),%r10d + 663451f2: 74 33 je 66345227 + 663451f4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663451f8: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 + 663451fd: 45 8b 18 mov (%r8),%r11d + 66345200: 45 85 db test %r11d,%r11d + 66345203: 75 22 jne 66345227 + 66345205: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345209: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 + 6634520e: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66345212: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345219: 4c 63 06 movslq (%rsi),%r8 + 6634521c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345220: 44 89 1e mov %r11d,(%rsi) + 66345223: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345227: 48 83 c0 04 add $0x4,%rax + 6634522b: 48 83 f8 2c cmp $0x2c,%rax + 6634522f: 0f 85 7b ff ff ff jne 663451b0 + 66345235: 5b pop %rbx + 66345236: 5e pop %rsi + 66345237: 5f pop %rdi + 66345238: 41 5e pop %r14 + 6634523a: c3 retq + 6634523b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345240: 48 83 c2 30 add $0x30,%rdx + 66345244: b8 60 00 00 00 mov $0x60,%eax + 66345249: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66345250: 44 8b 02 mov (%rdx),%r8d + 66345253: 45 85 c0 test %r8d,%r8d + 66345256: 74 59 je 663452b1 + 66345258: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634525c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 66345260: 45 29 02 sub %r8d,(%r10) + 66345263: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345269: 45 8b 12 mov (%r10),%r10d + 6634526c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 66345270: 45 85 d2 test %r10d,%r10d + 66345273: 41 0f 9f c2 setg %r10b + 66345277: 45 0f b6 d2 movzbl %r10b,%r10d + 6634527b: 45 3b 10 cmp (%r8),%r10d + 6634527e: 74 31 je 663452b1 + 66345280: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345284: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345288: 45 8b 00 mov (%r8),%r8d + 6634528b: 45 85 c0 test %r8d,%r8d + 6634528e: 75 21 jne 663452b1 + 66345290: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345294: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 66345298: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634529c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663452a3: 4c 63 06 movslq (%rsi),%r8 + 663452a6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663452aa: 44 89 1e mov %r11d,(%rsi) + 663452ad: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 663452b1: 48 83 c0 08 add $0x8,%rax + 663452b5: 48 83 c2 04 add $0x4,%rdx + 663452b9: 48 3d b8 00 00 00 cmp $0xb8,%rax + 663452bf: 75 8f jne 66345250 + 663452c1: 5b pop %rbx + 663452c2: 5e pop %rsi + 663452c3: 5f pop %rdi + 663452c4: 41 5e pop %r14 + 663452c6: c3 retq + 663452c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663452ce: 00 00 -00000000663462e0 : - 663462e0: 56 push %rsi - 663462e1: 53 push %rbx - 663462e2: 4c 8b 0d 37 16 01 00 mov 0x11637(%rip),%r9 # 66357920 - 663462e9: 4c 8b 05 40 16 01 00 mov 0x11640(%rip),%r8 # 66357930 - 663462f0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663462f4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663462f8: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 663462fc: 41 8b 32 mov (%r10),%esi - 663462ff: 85 f6 test %esi,%esi - 66346301: 0f 84 79 02 00 00 je 66346580 - 66346307: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634630b: 44 8b 58 1c mov 0x1c(%rax),%r11d - 6634630f: 45 8b 12 mov (%r10),%r10d - 66346312: 45 39 d3 cmp %r10d,%r11d - 66346315: 74 59 je 66346370 - 66346317: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634631b: 44 89 d6 mov %r10d,%esi - 6634631e: 44 29 de sub %r11d,%esi - 66346321: 45 31 db xor %r11d,%r11d - 66346324: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66346328: 01 33 add %esi,(%rbx) - 6634632a: 44 89 50 1c mov %r10d,0x1c(%rax) - 6634632e: 8b 1b mov (%rbx),%ebx - 66346330: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346334: 85 db test %ebx,%ebx - 66346336: 41 0f 9f c3 setg %r11b - 6634633a: 45 3b 1a cmp (%r10),%r11d - 6634633d: 74 31 je 66346370 - 6634633f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346343: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346347: 45 8b 1a mov (%r10),%r11d - 6634634a: 45 85 db test %r11d,%r11d - 6634634d: 75 21 jne 66346370 - 6634634f: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346353: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66346357: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634635b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346362: 4d 63 10 movslq (%r8),%r10 - 66346365: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346369: 41 89 18 mov %ebx,(%r8) - 6634636c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346370: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66346374: 44 8b 58 20 mov 0x20(%rax),%r11d - 66346378: 45 8b 12 mov (%r10),%r10d - 6634637b: 45 39 da cmp %r11d,%r10d - 6634637e: 74 5a je 663463da - 66346380: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346384: 44 89 d6 mov %r10d,%esi - 66346387: 44 29 de sub %r11d,%esi - 6634638a: 45 31 db xor %r11d,%r11d - 6634638d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346391: 01 33 add %esi,(%rbx) - 66346393: 44 89 50 20 mov %r10d,0x20(%rax) - 66346397: 44 8b 13 mov (%rbx),%r10d - 6634639a: 45 85 d2 test %r10d,%r10d - 6634639d: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663463a1: 41 0f 9f c3 setg %r11b - 663463a5: 45 3b 1a cmp (%r10),%r11d - 663463a8: 74 30 je 663463da - 663463aa: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663463ae: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663463b2: 41 8b 32 mov (%r10),%esi - 663463b5: 85 f6 test %esi,%esi - 663463b7: 75 21 jne 663463da - 663463b9: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663463bd: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 663463c1: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663463c5: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663463cc: 4d 63 10 movslq (%r8),%r10 - 663463cf: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663463d3: 41 89 18 mov %ebx,(%r8) - 663463d6: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663463da: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 663463de: 44 8b 58 24 mov 0x24(%rax),%r11d - 663463e2: 45 8b 12 mov (%r10),%r10d - 663463e5: 45 39 da cmp %r11d,%r10d - 663463e8: 74 59 je 66346443 - 663463ea: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663463ee: 44 89 d6 mov %r10d,%esi - 663463f1: 44 29 de sub %r11d,%esi - 663463f4: 45 31 db xor %r11d,%r11d - 663463f7: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663463fb: 01 33 add %esi,(%rbx) - 663463fd: 44 89 50 24 mov %r10d,0x24(%rax) - 66346401: 8b 1b mov (%rbx),%ebx - 66346403: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346407: 85 db test %ebx,%ebx - 66346409: 41 0f 9f c3 setg %r11b - 6634640d: 45 3b 1a cmp (%r10),%r11d - 66346410: 74 31 je 66346443 - 66346412: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346416: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634641a: 45 8b 1a mov (%r10),%r11d - 6634641d: 45 85 db test %r11d,%r11d - 66346420: 75 21 jne 66346443 - 66346422: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346426: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 6634642a: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634642e: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346435: 4d 63 10 movslq (%r8),%r10 - 66346438: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634643c: 41 89 18 mov %ebx,(%r8) - 6634643f: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346443: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346447: 44 8b 58 28 mov 0x28(%rax),%r11d - 6634644b: 45 8b 12 mov (%r10),%r10d - 6634644e: 45 39 da cmp %r11d,%r10d - 66346451: 74 5a je 663464ad - 66346453: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346457: 44 89 d6 mov %r10d,%esi - 6634645a: 44 29 de sub %r11d,%esi - 6634645d: 45 31 db xor %r11d,%r11d - 66346460: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66346464: 01 33 add %esi,(%rbx) - 66346466: 44 89 50 28 mov %r10d,0x28(%rax) - 6634646a: 44 8b 13 mov (%rbx),%r10d - 6634646d: 45 85 d2 test %r10d,%r10d - 66346470: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346474: 41 0f 9f c3 setg %r11b - 66346478: 45 3b 1a cmp (%r10),%r11d - 6634647b: 74 30 je 663464ad - 6634647d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346481: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346485: 41 8b 32 mov (%r10),%esi - 66346488: 85 f6 test %esi,%esi - 6634648a: 75 21 jne 663464ad - 6634648c: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346490: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346494: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346498: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 6634649f: 4d 63 10 movslq (%r8),%r10 - 663464a2: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663464a6: 41 89 18 mov %ebx,(%r8) - 663464a9: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663464ad: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 663464b1: 44 8b 58 2c mov 0x2c(%rax),%r11d - 663464b5: 45 8b 12 mov (%r10),%r10d - 663464b8: 45 39 da cmp %r11d,%r10d - 663464bb: 74 59 je 66346516 - 663464bd: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663464c1: 44 89 d6 mov %r10d,%esi - 663464c4: 44 29 de sub %r11d,%esi - 663464c7: 45 31 db xor %r11d,%r11d - 663464ca: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 663464ce: 01 33 add %esi,(%rbx) - 663464d0: 44 89 50 2c mov %r10d,0x2c(%rax) - 663464d4: 8b 1b mov (%rbx),%ebx - 663464d6: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 663464da: 85 db test %ebx,%ebx - 663464dc: 41 0f 9f c3 setg %r11b - 663464e0: 45 3b 1a cmp (%r10),%r11d - 663464e3: 74 31 je 66346516 - 663464e5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663464e9: 4d 8b 52 58 mov 0x58(%r10),%r10 - 663464ed: 45 8b 12 mov (%r10),%r10d - 663464f0: 45 85 d2 test %r10d,%r10d - 663464f3: 75 21 jne 66346516 - 663464f5: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663464f9: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 663464fd: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346501: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346508: 4d 63 10 movslq (%r8),%r10 - 6634650b: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634650f: 41 89 18 mov %ebx,(%r8) - 66346512: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346516: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 6634651a: 44 8b 58 30 mov 0x30(%rax),%r11d - 6634651e: 45 8b 12 mov (%r10),%r10d - 66346521: 45 39 da cmp %r11d,%r10d - 66346524: 74 56 je 6634657c - 66346526: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634652a: 44 89 d6 mov %r10d,%esi - 6634652d: 44 29 de sub %r11d,%esi - 66346530: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66346534: 01 33 add %esi,(%rbx) - 66346536: 44 89 50 30 mov %r10d,0x30(%rax) - 6634653a: 8b 33 mov (%rbx),%esi - 6634653c: 85 f6 test %esi,%esi - 6634653e: 48 8b 42 60 mov 0x60(%rdx),%rax - 66346542: 41 0f 9f c2 setg %r10b - 66346546: 45 0f b6 d2 movzbl %r10b,%r10d - 6634654a: 44 3b 10 cmp (%rax),%r10d - 6634654d: 74 2d je 6634657c - 6634654f: 48 8b 41 20 mov 0x20(%rcx),%rax - 66346553: 48 8b 40 60 mov 0x60(%rax),%rax - 66346557: 8b 00 mov (%rax),%eax - 66346559: 85 c0 test %eax,%eax - 6634655b: 75 1f jne 6634657c - 6634655d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66346561: 48 8b 50 60 mov 0x60(%rax),%rdx - 66346565: 48 8b 42 10 mov 0x10(%rdx),%rax - 66346569: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634656f: 49 63 00 movslq (%r8),%rax - 66346572: 8d 48 01 lea 0x1(%rax),%ecx - 66346575: 41 89 08 mov %ecx,(%r8) - 66346578: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634657c: 5b pop %rbx - 6634657d: 5e pop %rsi - 6634657e: c3 retq - 6634657f: 90 nop - 66346580: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66346584: 45 85 d2 test %r10d,%r10d - 66346587: 74 3b je 663465c4 - 66346589: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634658d: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66346591: 45 29 13 sub %r10d,(%r11) - 66346594: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634659b: 41 8b 1b mov (%r11),%ebx - 6634659e: 45 31 db xor %r11d,%r11d - 663465a1: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 663465a5: 85 db test %ebx,%ebx - 663465a7: 41 0f 9f c3 setg %r11b - 663465ab: 45 3b 1a cmp (%r10),%r11d - 663465ae: 74 14 je 663465c4 - 663465b0: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663465b4: 4d 8b 52 38 mov 0x38(%r10),%r10 - 663465b8: 45 8b 1a mov (%r10),%r11d - 663465bb: 45 85 db test %r11d,%r11d - 663465be: 0f 84 ec 01 00 00 je 663467b0 - 663465c4: 44 8b 50 20 mov 0x20(%rax),%r10d - 663465c8: 45 85 d2 test %r10d,%r10d - 663465cb: 74 3b je 66346608 - 663465cd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663465d1: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 663465d5: 45 29 13 sub %r10d,(%r11) - 663465d8: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 663465df: 45 8b 13 mov (%r11),%r10d - 663465e2: 45 31 db xor %r11d,%r11d - 663465e5: 45 85 d2 test %r10d,%r10d - 663465e8: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663465ec: 41 0f 9f c3 setg %r11b - 663465f0: 45 3b 1a cmp (%r10),%r11d - 663465f3: 74 13 je 66346608 - 663465f5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663465f9: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663465fd: 41 8b 32 mov (%r10),%esi - 66346600: 85 f6 test %esi,%esi - 66346602: 0f 84 78 01 00 00 je 66346780 - 66346608: 44 8b 50 24 mov 0x24(%rax),%r10d - 6634660c: 45 85 d2 test %r10d,%r10d - 6634660f: 74 3b je 6634664c - 66346611: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346615: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66346619: 45 29 13 sub %r10d,(%r11) - 6634661c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66346623: 41 8b 1b mov (%r11),%ebx - 66346626: 45 31 db xor %r11d,%r11d - 66346629: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 6634662d: 85 db test %ebx,%ebx - 6634662f: 41 0f 9f c3 setg %r11b - 66346633: 45 3b 1a cmp (%r10),%r11d - 66346636: 74 14 je 6634664c - 66346638: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634663c: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346640: 45 8b 1a mov (%r10),%r11d - 66346643: 45 85 db test %r11d,%r11d - 66346646: 0f 84 04 01 00 00 je 66346750 - 6634664c: 44 8b 50 28 mov 0x28(%rax),%r10d - 66346650: 45 85 d2 test %r10d,%r10d - 66346653: 74 3b je 66346690 - 66346655: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346659: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 6634665d: 45 29 13 sub %r10d,(%r11) - 66346660: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66346667: 45 8b 13 mov (%r11),%r10d - 6634666a: 45 31 db xor %r11d,%r11d - 6634666d: 45 85 d2 test %r10d,%r10d - 66346670: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346674: 41 0f 9f c3 setg %r11b - 66346678: 45 3b 1a cmp (%r10),%r11d - 6634667b: 74 13 je 66346690 - 6634667d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346681: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346685: 41 8b 32 mov (%r10),%esi - 66346688: 85 f6 test %esi,%esi - 6634668a: 0f 84 93 00 00 00 je 66346723 - 66346690: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66346694: 45 85 d2 test %r10d,%r10d - 66346697: 74 37 je 663466d0 - 66346699: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634669d: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 663466a1: 45 29 13 sub %r10d,(%r11) - 663466a4: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 663466ab: 41 8b 1b mov (%r11),%ebx - 663466ae: 45 31 db xor %r11d,%r11d - 663466b1: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 663466b5: 85 db test %ebx,%ebx - 663466b7: 41 0f 9f c3 setg %r11b - 663466bb: 45 3b 1a cmp (%r10),%r11d - 663466be: 74 10 je 663466d0 - 663466c0: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663466c4: 4d 8b 52 58 mov 0x58(%r10),%r10 - 663466c8: 45 8b 1a mov (%r10),%r11d - 663466cb: 45 85 db test %r11d,%r11d - 663466ce: 74 30 je 66346700 - 663466d0: 44 8b 50 30 mov 0x30(%rax),%r10d - 663466d4: 45 85 d2 test %r10d,%r10d - 663466d7: 0f 84 9f fe ff ff je 6634657c - 663466dd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663466e1: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 663466e5: 45 29 13 sub %r10d,(%r11) - 663466e8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 663466ef: 45 8b 13 mov (%r11),%r10d - 663466f2: 45 85 d2 test %r10d,%r10d - 663466f5: e9 44 fe ff ff jmpq 6634653e - 663466fa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66346700: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346704: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346708: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634670c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346713: 4d 63 10 movslq (%r8),%r10 - 66346716: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634671a: 41 89 18 mov %ebx,(%r8) - 6634671d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346721: eb ad jmp 663466d0 - 66346723: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346727: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 6634672b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634672f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346736: 4d 63 10 movslq (%r8),%r10 - 66346739: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634673d: 41 89 18 mov %ebx,(%r8) - 66346740: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346744: e9 47 ff ff ff jmpq 66346690 - 66346749: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66346750: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346754: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346758: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634675c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346763: 4d 63 10 movslq (%r8),%r10 - 66346766: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634676a: 41 89 18 mov %ebx,(%r8) - 6634676d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346771: e9 d6 fe ff ff jmpq 6634664c - 66346776: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634677d: 00 00 00 - 66346780: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346784: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346788: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634678c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346793: 4d 63 10 movslq (%r8),%r10 - 66346796: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634679a: 41 89 18 mov %ebx,(%r8) - 6634679d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663467a1: e9 62 fe ff ff jmpq 66346608 - 663467a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663467ad: 00 00 00 - 663467b0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663467b4: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 663467b8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663467bc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663467c3: 4d 63 10 movslq (%r8),%r10 - 663467c6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663467ca: 41 89 18 mov %ebx,(%r8) - 663467cd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663467d1: e9 ee fd ff ff jmpq 663465c4 - 663467d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663467dd: 00 00 00 +00000000663452d0 : + 663452d0: 41 56 push %r14 + 663452d2: 57 push %rdi + 663452d3: 56 push %rsi + 663452d4: 53 push %rbx + 663452d5: 48 8b 3d 44 26 01 00 mov 0x12644(%rip),%rdi # 66357920 + 663452dc: 48 8b 35 4d 26 01 00 mov 0x1264d(%rip),%rsi # 66357930 + 663452e3: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663452e7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663452eb: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 663452f2: 8b 00 mov (%rax),%eax + 663452f4: 85 c0 test %eax,%eax + 663452f6: 0f 84 94 00 00 00 je 66345390 + 663452fc: 31 c0 xor %eax,%eax + 663452fe: 66 90 xchg %ax,%ax + 66345300: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 66345305: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d + 6634530a: 45 8b 00 mov (%r8),%r8d + 6634530d: 45 39 d0 cmp %r10d,%r8d + 66345310: 74 65 je 66345377 + 66345312: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345316: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634531a: 45 89 c6 mov %r8d,%r14d + 6634531d: 45 29 d6 sub %r10d,%r14d + 66345320: 45 31 d2 xor %r10d,%r10d + 66345323: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 + 66345328: 45 01 33 add %r14d,(%r11) + 6634532b: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) + 66345330: 45 8b 33 mov (%r11),%r14d + 66345333: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 + 66345338: 45 85 f6 test %r14d,%r14d + 6634533b: 41 0f 9f c2 setg %r10b + 6634533f: 45 3b 10 cmp (%r8),%r10d + 66345342: 74 33 je 66345377 + 66345344: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345348: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 + 6634534d: 45 8b 18 mov (%r8),%r11d + 66345350: 45 85 db test %r11d,%r11d + 66345353: 75 22 jne 66345377 + 66345355: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345359: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 + 6634535e: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66345362: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345369: 4c 63 06 movslq (%rsi),%r8 + 6634536c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345370: 44 89 1e mov %r11d,(%rsi) + 66345373: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345377: 48 83 c0 04 add $0x4,%rax + 6634537b: 48 83 f8 2c cmp $0x2c,%rax + 6634537f: 0f 85 7b ff ff ff jne 66345300 + 66345385: 5b pop %rbx + 66345386: 5e pop %rsi + 66345387: 5f pop %rdi + 66345388: 41 5e pop %r14 + 6634538a: c3 retq + 6634538b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345390: 48 83 c2 30 add $0x30,%rdx + 66345394: b8 60 00 00 00 mov $0x60,%eax + 66345399: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663453a0: 44 8b 02 mov (%rdx),%r8d + 663453a3: 45 85 c0 test %r8d,%r8d + 663453a6: 74 59 je 66345401 + 663453a8: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663453ac: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 663453b0: 45 29 02 sub %r8d,(%r10) + 663453b3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663453b9: 45 8b 12 mov (%r10),%r10d + 663453bc: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 663453c0: 45 85 d2 test %r10d,%r10d + 663453c3: 41 0f 9f c2 setg %r10b + 663453c7: 45 0f b6 d2 movzbl %r10b,%r10d + 663453cb: 45 3b 10 cmp (%r8),%r10d + 663453ce: 74 31 je 66345401 + 663453d0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663453d4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663453d8: 45 8b 00 mov (%r8),%r8d + 663453db: 45 85 c0 test %r8d,%r8d + 663453de: 75 21 jne 66345401 + 663453e0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663453e4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 663453e8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663453ec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663453f3: 4c 63 06 movslq (%rsi),%r8 + 663453f6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663453fa: 44 89 1e mov %r11d,(%rsi) + 663453fd: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345401: 48 83 c0 08 add $0x8,%rax + 66345405: 48 83 c2 04 add $0x4,%rdx + 66345409: 48 3d b8 00 00 00 cmp $0xb8,%rax + 6634540f: 75 8f jne 663453a0 + 66345411: 5b pop %rbx + 66345412: 5e pop %rsi + 66345413: 5f pop %rdi + 66345414: 41 5e pop %r14 + 66345416: c3 retq + 66345417: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634541e: 00 00 -00000000663467e0 : - 663467e0: 56 push %rsi - 663467e1: 53 push %rbx - 663467e2: 4c 8b 0d 37 11 01 00 mov 0x11137(%rip),%r9 # 66357920 - 663467e9: 4c 8b 05 40 11 01 00 mov 0x11140(%rip),%r8 # 66357930 - 663467f0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663467f4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663467f8: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 663467fc: 41 8b 32 mov (%r10),%esi - 663467ff: 85 f6 test %esi,%esi - 66346801: 0f 84 79 02 00 00 je 66346a80 - 66346807: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634680b: 44 8b 58 1c mov 0x1c(%rax),%r11d - 6634680f: 45 8b 12 mov (%r10),%r10d - 66346812: 45 39 d3 cmp %r10d,%r11d - 66346815: 74 59 je 66346870 - 66346817: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634681b: 44 89 d6 mov %r10d,%esi - 6634681e: 44 29 de sub %r11d,%esi - 66346821: 45 31 db xor %r11d,%r11d - 66346824: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66346828: 01 33 add %esi,(%rbx) - 6634682a: 44 89 50 1c mov %r10d,0x1c(%rax) - 6634682e: 8b 1b mov (%rbx),%ebx - 66346830: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346834: 85 db test %ebx,%ebx - 66346836: 41 0f 9f c3 setg %r11b - 6634683a: 45 3b 1a cmp (%r10),%r11d - 6634683d: 74 31 je 66346870 - 6634683f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346843: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346847: 45 8b 1a mov (%r10),%r11d - 6634684a: 45 85 db test %r11d,%r11d - 6634684d: 75 21 jne 66346870 - 6634684f: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346853: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66346857: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634685b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346862: 4d 63 10 movslq (%r8),%r10 - 66346865: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346869: 41 89 18 mov %ebx,(%r8) - 6634686c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346870: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66346874: 44 8b 58 20 mov 0x20(%rax),%r11d - 66346878: 45 8b 12 mov (%r10),%r10d - 6634687b: 45 39 da cmp %r11d,%r10d - 6634687e: 74 5a je 663468da - 66346880: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346884: 44 89 d6 mov %r10d,%esi - 66346887: 44 29 de sub %r11d,%esi - 6634688a: 45 31 db xor %r11d,%r11d - 6634688d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346891: 01 33 add %esi,(%rbx) - 66346893: 44 89 50 20 mov %r10d,0x20(%rax) - 66346897: 44 8b 13 mov (%rbx),%r10d - 6634689a: 45 85 d2 test %r10d,%r10d - 6634689d: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663468a1: 41 0f 9f c3 setg %r11b - 663468a5: 45 3b 1a cmp (%r10),%r11d - 663468a8: 74 30 je 663468da - 663468aa: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663468ae: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663468b2: 41 8b 32 mov (%r10),%esi - 663468b5: 85 f6 test %esi,%esi - 663468b7: 75 21 jne 663468da - 663468b9: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663468bd: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 663468c1: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663468c5: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663468cc: 4d 63 10 movslq (%r8),%r10 - 663468cf: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663468d3: 41 89 18 mov %ebx,(%r8) - 663468d6: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663468da: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 663468de: 44 8b 58 24 mov 0x24(%rax),%r11d - 663468e2: 45 8b 12 mov (%r10),%r10d - 663468e5: 45 39 da cmp %r11d,%r10d - 663468e8: 74 59 je 66346943 - 663468ea: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663468ee: 44 89 d6 mov %r10d,%esi - 663468f1: 44 29 de sub %r11d,%esi - 663468f4: 45 31 db xor %r11d,%r11d - 663468f7: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663468fb: 01 33 add %esi,(%rbx) - 663468fd: 44 89 50 24 mov %r10d,0x24(%rax) - 66346901: 8b 1b mov (%rbx),%ebx - 66346903: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346907: 85 db test %ebx,%ebx - 66346909: 41 0f 9f c3 setg %r11b - 6634690d: 45 3b 1a cmp (%r10),%r11d - 66346910: 74 31 je 66346943 - 66346912: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346916: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634691a: 45 8b 1a mov (%r10),%r11d - 6634691d: 45 85 db test %r11d,%r11d - 66346920: 75 21 jne 66346943 - 66346922: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346926: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 6634692a: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634692e: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346935: 4d 63 10 movslq (%r8),%r10 - 66346938: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634693c: 41 89 18 mov %ebx,(%r8) - 6634693f: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346943: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346947: 44 8b 58 28 mov 0x28(%rax),%r11d - 6634694b: 45 8b 12 mov (%r10),%r10d - 6634694e: 45 39 da cmp %r11d,%r10d - 66346951: 74 5a je 663469ad - 66346953: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346957: 44 89 d6 mov %r10d,%esi - 6634695a: 44 29 de sub %r11d,%esi - 6634695d: 45 31 db xor %r11d,%r11d - 66346960: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66346964: 01 33 add %esi,(%rbx) - 66346966: 44 89 50 28 mov %r10d,0x28(%rax) - 6634696a: 44 8b 13 mov (%rbx),%r10d - 6634696d: 45 85 d2 test %r10d,%r10d - 66346970: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346974: 41 0f 9f c3 setg %r11b - 66346978: 45 3b 1a cmp (%r10),%r11d - 6634697b: 74 30 je 663469ad - 6634697d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346981: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346985: 41 8b 32 mov (%r10),%esi - 66346988: 85 f6 test %esi,%esi - 6634698a: 75 21 jne 663469ad - 6634698c: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346990: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346994: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346998: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 6634699f: 4d 63 10 movslq (%r8),%r10 - 663469a2: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663469a6: 41 89 18 mov %ebx,(%r8) - 663469a9: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663469ad: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 663469b1: 44 8b 58 2c mov 0x2c(%rax),%r11d - 663469b5: 45 8b 12 mov (%r10),%r10d - 663469b8: 45 39 da cmp %r11d,%r10d - 663469bb: 74 59 je 66346a16 - 663469bd: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663469c1: 44 89 d6 mov %r10d,%esi - 663469c4: 44 29 de sub %r11d,%esi - 663469c7: 45 31 db xor %r11d,%r11d - 663469ca: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 663469ce: 01 33 add %esi,(%rbx) - 663469d0: 44 89 50 2c mov %r10d,0x2c(%rax) - 663469d4: 8b 1b mov (%rbx),%ebx - 663469d6: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 663469da: 85 db test %ebx,%ebx - 663469dc: 41 0f 9f c3 setg %r11b - 663469e0: 45 3b 1a cmp (%r10),%r11d - 663469e3: 74 31 je 66346a16 - 663469e5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663469e9: 4d 8b 52 58 mov 0x58(%r10),%r10 - 663469ed: 45 8b 12 mov (%r10),%r10d - 663469f0: 45 85 d2 test %r10d,%r10d - 663469f3: 75 21 jne 66346a16 - 663469f5: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663469f9: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 663469fd: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346a01: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346a08: 4d 63 10 movslq (%r8),%r10 - 66346a0b: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346a0f: 41 89 18 mov %ebx,(%r8) - 66346a12: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346a16: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66346a1a: 44 8b 58 30 mov 0x30(%rax),%r11d - 66346a1e: 45 8b 12 mov (%r10),%r10d - 66346a21: 45 39 da cmp %r11d,%r10d - 66346a24: 74 56 je 66346a7c - 66346a26: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346a2a: 44 89 d6 mov %r10d,%esi - 66346a2d: 44 29 de sub %r11d,%esi - 66346a30: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66346a34: 01 33 add %esi,(%rbx) - 66346a36: 44 89 50 30 mov %r10d,0x30(%rax) - 66346a3a: 8b 33 mov (%rbx),%esi - 66346a3c: 85 f6 test %esi,%esi - 66346a3e: 48 8b 42 60 mov 0x60(%rdx),%rax - 66346a42: 41 0f 9f c2 setg %r10b - 66346a46: 45 0f b6 d2 movzbl %r10b,%r10d - 66346a4a: 44 3b 10 cmp (%rax),%r10d - 66346a4d: 74 2d je 66346a7c - 66346a4f: 48 8b 41 20 mov 0x20(%rcx),%rax - 66346a53: 48 8b 40 60 mov 0x60(%rax),%rax - 66346a57: 8b 00 mov (%rax),%eax - 66346a59: 85 c0 test %eax,%eax - 66346a5b: 75 1f jne 66346a7c - 66346a5d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66346a61: 48 8b 50 60 mov 0x60(%rax),%rdx - 66346a65: 48 8b 42 10 mov 0x10(%rdx),%rax - 66346a69: c7 00 01 00 00 00 movl $0x1,(%rax) - 66346a6f: 49 63 00 movslq (%r8),%rax - 66346a72: 8d 48 01 lea 0x1(%rax),%ecx - 66346a75: 41 89 08 mov %ecx,(%r8) - 66346a78: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66346a7c: 5b pop %rbx - 66346a7d: 5e pop %rsi - 66346a7e: c3 retq - 66346a7f: 90 nop - 66346a80: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66346a84: 45 85 d2 test %r10d,%r10d - 66346a87: 74 3b je 66346ac4 - 66346a89: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346a8d: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66346a91: 45 29 13 sub %r10d,(%r11) - 66346a94: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66346a9b: 41 8b 1b mov (%r11),%ebx - 66346a9e: 45 31 db xor %r11d,%r11d - 66346aa1: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346aa5: 85 db test %ebx,%ebx - 66346aa7: 41 0f 9f c3 setg %r11b - 66346aab: 45 3b 1a cmp (%r10),%r11d - 66346aae: 74 14 je 66346ac4 - 66346ab0: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346ab4: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346ab8: 45 8b 1a mov (%r10),%r11d - 66346abb: 45 85 db test %r11d,%r11d - 66346abe: 0f 84 ec 01 00 00 je 66346cb0 - 66346ac4: 44 8b 50 20 mov 0x20(%rax),%r10d - 66346ac8: 45 85 d2 test %r10d,%r10d - 66346acb: 74 3b je 66346b08 - 66346acd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346ad1: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66346ad5: 45 29 13 sub %r10d,(%r11) - 66346ad8: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66346adf: 45 8b 13 mov (%r11),%r10d - 66346ae2: 45 31 db xor %r11d,%r11d - 66346ae5: 45 85 d2 test %r10d,%r10d - 66346ae8: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346aec: 41 0f 9f c3 setg %r11b - 66346af0: 45 3b 1a cmp (%r10),%r11d - 66346af3: 74 13 je 66346b08 - 66346af5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346af9: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346afd: 41 8b 32 mov (%r10),%esi - 66346b00: 85 f6 test %esi,%esi - 66346b02: 0f 84 78 01 00 00 je 66346c80 - 66346b08: 44 8b 50 24 mov 0x24(%rax),%r10d - 66346b0c: 45 85 d2 test %r10d,%r10d - 66346b0f: 74 3b je 66346b4c - 66346b11: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346b15: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66346b19: 45 29 13 sub %r10d,(%r11) - 66346b1c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66346b23: 41 8b 1b mov (%r11),%ebx - 66346b26: 45 31 db xor %r11d,%r11d - 66346b29: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346b2d: 85 db test %ebx,%ebx - 66346b2f: 41 0f 9f c3 setg %r11b - 66346b33: 45 3b 1a cmp (%r10),%r11d - 66346b36: 74 14 je 66346b4c - 66346b38: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346b3c: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346b40: 45 8b 1a mov (%r10),%r11d - 66346b43: 45 85 db test %r11d,%r11d - 66346b46: 0f 84 04 01 00 00 je 66346c50 - 66346b4c: 44 8b 50 28 mov 0x28(%rax),%r10d - 66346b50: 45 85 d2 test %r10d,%r10d - 66346b53: 74 3b je 66346b90 - 66346b55: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346b59: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66346b5d: 45 29 13 sub %r10d,(%r11) - 66346b60: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66346b67: 45 8b 13 mov (%r11),%r10d - 66346b6a: 45 31 db xor %r11d,%r11d - 66346b6d: 45 85 d2 test %r10d,%r10d - 66346b70: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346b74: 41 0f 9f c3 setg %r11b - 66346b78: 45 3b 1a cmp (%r10),%r11d - 66346b7b: 74 13 je 66346b90 - 66346b7d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346b81: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346b85: 41 8b 32 mov (%r10),%esi - 66346b88: 85 f6 test %esi,%esi - 66346b8a: 0f 84 93 00 00 00 je 66346c23 - 66346b90: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66346b94: 45 85 d2 test %r10d,%r10d - 66346b97: 74 37 je 66346bd0 - 66346b99: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346b9d: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 66346ba1: 45 29 13 sub %r10d,(%r11) - 66346ba4: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 66346bab: 41 8b 1b mov (%r11),%ebx - 66346bae: 45 31 db xor %r11d,%r11d - 66346bb1: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66346bb5: 85 db test %ebx,%ebx - 66346bb7: 41 0f 9f c3 setg %r11b - 66346bbb: 45 3b 1a cmp (%r10),%r11d - 66346bbe: 74 10 je 66346bd0 - 66346bc0: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346bc4: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66346bc8: 45 8b 1a mov (%r10),%r11d - 66346bcb: 45 85 db test %r11d,%r11d - 66346bce: 74 30 je 66346c00 - 66346bd0: 44 8b 50 30 mov 0x30(%rax),%r10d - 66346bd4: 45 85 d2 test %r10d,%r10d - 66346bd7: 0f 84 9f fe ff ff je 66346a7c - 66346bdd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346be1: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 66346be5: 45 29 13 sub %r10d,(%r11) - 66346be8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 66346bef: 45 8b 13 mov (%r11),%r10d - 66346bf2: 45 85 d2 test %r10d,%r10d - 66346bf5: e9 44 fe ff ff jmpq 66346a3e - 66346bfa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66346c00: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c04: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346c08: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346c0c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c13: 4d 63 10 movslq (%r8),%r10 - 66346c16: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c1a: 41 89 18 mov %ebx,(%r8) - 66346c1d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c21: eb ad jmp 66346bd0 - 66346c23: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c27: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346c2b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346c2f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c36: 4d 63 10 movslq (%r8),%r10 - 66346c39: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c3d: 41 89 18 mov %ebx,(%r8) - 66346c40: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c44: e9 47 ff ff ff jmpq 66346b90 - 66346c49: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +0000000066345420 : + 66345420: 41 56 push %r14 + 66345422: 57 push %rdi + 66345423: 56 push %rsi + 66345424: 53 push %rbx + 66345425: 48 8b 3d f4 24 01 00 mov 0x124f4(%rip),%rdi # 66357920 + 6634542c: 48 8b 35 fd 24 01 00 mov 0x124fd(%rip),%rsi # 66357930 + 66345433: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345437: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634543b: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax + 66345442: 8b 00 mov (%rax),%eax + 66345444: 85 c0 test %eax,%eax + 66345446: 0f 84 94 00 00 00 je 663454e0 + 6634544c: 31 c0 xor %eax,%eax + 6634544e: 66 90 xchg %ax,%ax + 66345450: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 66345455: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d + 6634545a: 45 8b 00 mov (%r8),%r8d + 6634545d: 45 39 d0 cmp %r10d,%r8d + 66345460: 74 65 je 663454c7 + 66345462: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345466: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634546a: 45 89 c6 mov %r8d,%r14d + 6634546d: 45 29 d6 sub %r10d,%r14d + 66345470: 45 31 d2 xor %r10d,%r10d + 66345473: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 + 66345478: 45 01 33 add %r14d,(%r11) + 6634547b: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) + 66345480: 45 8b 33 mov (%r11),%r14d + 66345483: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 + 66345488: 45 85 f6 test %r14d,%r14d + 6634548b: 41 0f 9f c2 setg %r10b + 6634548f: 45 3b 10 cmp (%r8),%r10d + 66345492: 74 33 je 663454c7 + 66345494: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345498: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 + 6634549d: 45 8b 18 mov (%r8),%r11d + 663454a0: 45 85 db test %r11d,%r11d + 663454a3: 75 22 jne 663454c7 + 663454a5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663454a9: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 + 663454ae: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663454b2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663454b9: 4c 63 06 movslq (%rsi),%r8 + 663454bc: 45 8d 58 01 lea 0x1(%r8),%r11d + 663454c0: 44 89 1e mov %r11d,(%rsi) + 663454c3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 663454c7: 48 83 c0 04 add $0x4,%rax + 663454cb: 48 83 f8 28 cmp $0x28,%rax + 663454cf: 0f 85 7b ff ff ff jne 66345450 + 663454d5: 5b pop %rbx + 663454d6: 5e pop %rsi + 663454d7: 5f pop %rdi + 663454d8: 41 5e pop %r14 + 663454da: c3 retq + 663454db: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663454e0: 48 83 c2 2c add $0x2c,%rdx + 663454e4: b8 58 00 00 00 mov $0x58,%eax + 663454e9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663454f0: 44 8b 02 mov (%rdx),%r8d + 663454f3: 45 85 c0 test %r8d,%r8d + 663454f6: 74 59 je 66345551 + 663454f8: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663454fc: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 66345500: 45 29 02 sub %r8d,(%r10) + 66345503: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345509: 45 8b 12 mov (%r10),%r10d + 6634550c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 66345510: 45 85 d2 test %r10d,%r10d + 66345513: 41 0f 9f c2 setg %r10b + 66345517: 45 0f b6 d2 movzbl %r10b,%r10d + 6634551b: 45 3b 10 cmp (%r8),%r10d + 6634551e: 74 31 je 66345551 + 66345520: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345524: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345528: 45 8b 00 mov (%r8),%r8d + 6634552b: 45 85 c0 test %r8d,%r8d + 6634552e: 75 21 jne 66345551 + 66345530: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345534: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 66345538: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634553c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345543: 4c 63 06 movslq (%rsi),%r8 + 66345546: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634554a: 44 89 1e mov %r11d,(%rsi) + 6634554d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345551: 48 83 c0 08 add $0x8,%rax + 66345555: 48 83 c2 04 add $0x4,%rdx + 66345559: 48 3d a8 00 00 00 cmp $0xa8,%rax + 6634555f: 75 8f jne 663454f0 + 66345561: 5b pop %rbx + 66345562: 5e pop %rsi + 66345563: 5f pop %rdi + 66345564: 41 5e pop %r14 + 66345566: c3 retq + 66345567: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634556e: 00 00 + +0000000066345570 : + 66345570: 41 56 push %r14 + 66345572: 57 push %rdi + 66345573: 56 push %rsi + 66345574: 53 push %rbx + 66345575: 48 8b 3d a4 23 01 00 mov 0x123a4(%rip),%rdi # 66357920 + 6634557c: 48 8b 35 ad 23 01 00 mov 0x123ad(%rip),%rsi # 66357930 + 66345583: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345587: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634558b: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax + 66345592: 8b 00 mov (%rax),%eax + 66345594: 85 c0 test %eax,%eax + 66345596: 0f 84 94 00 00 00 je 66345630 + 6634559c: 31 c0 xor %eax,%eax + 6634559e: 66 90 xchg %ax,%ax + 663455a0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 663455a5: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d + 663455aa: 45 8b 00 mov (%r8),%r8d + 663455ad: 45 39 d0 cmp %r10d,%r8d + 663455b0: 74 65 je 66345617 + 663455b2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663455b6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663455ba: 45 89 c6 mov %r8d,%r14d + 663455bd: 45 29 d6 sub %r10d,%r14d + 663455c0: 45 31 d2 xor %r10d,%r10d + 663455c3: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 + 663455c8: 45 01 33 add %r14d,(%r11) + 663455cb: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) + 663455d0: 45 8b 33 mov (%r11),%r14d + 663455d3: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 + 663455d8: 45 85 f6 test %r14d,%r14d + 663455db: 41 0f 9f c2 setg %r10b + 663455df: 45 3b 10 cmp (%r8),%r10d + 663455e2: 74 33 je 66345617 + 663455e4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663455e8: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 + 663455ed: 45 8b 18 mov (%r8),%r11d + 663455f0: 45 85 db test %r11d,%r11d + 663455f3: 75 22 jne 66345617 + 663455f5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663455f9: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 + 663455fe: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66345602: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345609: 4c 63 06 movslq (%rsi),%r8 + 6634560c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345610: 44 89 1e mov %r11d,(%rsi) + 66345613: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345617: 48 83 c0 04 add $0x4,%rax + 6634561b: 48 83 f8 28 cmp $0x28,%rax + 6634561f: 0f 85 7b ff ff ff jne 663455a0 + 66345625: 5b pop %rbx + 66345626: 5e pop %rsi + 66345627: 5f pop %rdi + 66345628: 41 5e pop %r14 + 6634562a: c3 retq + 6634562b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345630: 48 83 c2 2c add $0x2c,%rdx + 66345634: b8 58 00 00 00 mov $0x58,%eax + 66345639: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66345640: 44 8b 02 mov (%rdx),%r8d + 66345643: 45 85 c0 test %r8d,%r8d + 66345646: 74 59 je 663456a1 + 66345648: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634564c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 66345650: 45 29 02 sub %r8d,(%r10) + 66345653: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345659: 45 8b 12 mov (%r10),%r10d + 6634565c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 66345660: 45 85 d2 test %r10d,%r10d + 66345663: 41 0f 9f c2 setg %r10b + 66345667: 45 0f b6 d2 movzbl %r10b,%r10d + 6634566b: 45 3b 10 cmp (%r8),%r10d + 6634566e: 74 31 je 663456a1 + 66345670: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345674: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345678: 45 8b 00 mov (%r8),%r8d + 6634567b: 45 85 c0 test %r8d,%r8d + 6634567e: 75 21 jne 663456a1 + 66345680: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345684: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 66345688: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634568c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345693: 4c 63 06 movslq (%rsi),%r8 + 66345696: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634569a: 44 89 1e mov %r11d,(%rsi) + 6634569d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 663456a1: 48 83 c0 08 add $0x8,%rax + 663456a5: 48 83 c2 04 add $0x4,%rdx + 663456a9: 48 3d a8 00 00 00 cmp $0xa8,%rax + 663456af: 75 8f jne 66345640 + 663456b1: 5b pop %rbx + 663456b2: 5e pop %rsi + 663456b3: 5f pop %rdi + 663456b4: 41 5e pop %r14 + 663456b6: c3 retq + 663456b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 663456be: 00 00 + +00000000663456c0 : + 663456c0: 41 56 push %r14 + 663456c2: 57 push %rdi + 663456c3: 56 push %rsi + 663456c4: 53 push %rbx + 663456c5: 48 8b 3d 54 22 01 00 mov 0x12254(%rip),%rdi # 66357920 + 663456cc: 48 8b 35 5d 22 01 00 mov 0x1225d(%rip),%rsi # 66357930 + 663456d3: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663456d7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663456db: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax + 663456e2: 8b 00 mov (%rax),%eax + 663456e4: 85 c0 test %eax,%eax + 663456e6: 0f 84 94 00 00 00 je 66345780 + 663456ec: 31 c0 xor %eax,%eax + 663456ee: 66 90 xchg %ax,%ax + 663456f0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 663456f5: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d + 663456fa: 45 8b 00 mov (%r8),%r8d + 663456fd: 45 39 d0 cmp %r10d,%r8d + 66345700: 74 65 je 66345767 + 66345702: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345706: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634570a: 45 89 c6 mov %r8d,%r14d + 6634570d: 45 29 d6 sub %r10d,%r14d + 66345710: 45 31 d2 xor %r10d,%r10d + 66345713: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 + 66345718: 45 01 33 add %r14d,(%r11) + 6634571b: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) + 66345720: 45 8b 33 mov (%r11),%r14d + 66345723: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 + 66345728: 45 85 f6 test %r14d,%r14d + 6634572b: 41 0f 9f c2 setg %r10b + 6634572f: 45 3b 10 cmp (%r8),%r10d + 66345732: 74 33 je 66345767 + 66345734: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345738: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 + 6634573d: 45 8b 18 mov (%r8),%r11d + 66345740: 45 85 db test %r11d,%r11d + 66345743: 75 22 jne 66345767 + 66345745: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345749: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 + 6634574e: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66345752: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345759: 4c 63 06 movslq (%rsi),%r8 + 6634575c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345760: 44 89 1e mov %r11d,(%rsi) + 66345763: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345767: 48 83 c0 04 add $0x4,%rax + 6634576b: 48 83 f8 24 cmp $0x24,%rax + 6634576f: 0f 85 7b ff ff ff jne 663456f0 + 66345775: 5b pop %rbx + 66345776: 5e pop %rsi + 66345777: 5f pop %rdi + 66345778: 41 5e pop %r14 + 6634577a: c3 retq + 6634577b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345780: 48 83 c2 28 add $0x28,%rdx + 66345784: b8 50 00 00 00 mov $0x50,%eax + 66345789: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66345790: 44 8b 02 mov (%rdx),%r8d + 66345793: 45 85 c0 test %r8d,%r8d + 66345796: 74 59 je 663457f1 + 66345798: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634579c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 663457a0: 45 29 02 sub %r8d,(%r10) + 663457a3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663457a9: 45 8b 12 mov (%r10),%r10d + 663457ac: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 663457b0: 45 85 d2 test %r10d,%r10d + 663457b3: 41 0f 9f c2 setg %r10b + 663457b7: 45 0f b6 d2 movzbl %r10b,%r10d + 663457bb: 45 3b 10 cmp (%r8),%r10d + 663457be: 74 31 je 663457f1 + 663457c0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663457c4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663457c8: 45 8b 00 mov (%r8),%r8d + 663457cb: 45 85 c0 test %r8d,%r8d + 663457ce: 75 21 jne 663457f1 + 663457d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663457d4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 663457d8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663457dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663457e3: 4c 63 06 movslq (%rsi),%r8 + 663457e6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663457ea: 44 89 1e mov %r11d,(%rsi) + 663457ed: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 663457f1: 48 83 c0 08 add $0x8,%rax + 663457f5: 48 83 c2 04 add $0x4,%rdx + 663457f9: 48 3d 98 00 00 00 cmp $0x98,%rax + 663457ff: 75 8f jne 66345790 + 66345801: 5b pop %rbx + 66345802: 5e pop %rsi + 66345803: 5f pop %rdi + 66345804: 41 5e pop %r14 + 66345806: c3 retq + 66345807: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634580e: 00 00 + +0000000066345810 : + 66345810: 41 56 push %r14 + 66345812: 57 push %rdi + 66345813: 56 push %rsi + 66345814: 53 push %rbx + 66345815: 48 8b 3d 04 21 01 00 mov 0x12104(%rip),%rdi # 66357920 + 6634581c: 48 8b 35 0d 21 01 00 mov 0x1210d(%rip),%rsi # 66357930 + 66345823: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345827: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634582b: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax + 66345832: 8b 00 mov (%rax),%eax + 66345834: 85 c0 test %eax,%eax + 66345836: 0f 84 94 00 00 00 je 663458d0 + 6634583c: 31 c0 xor %eax,%eax + 6634583e: 66 90 xchg %ax,%ax + 66345840: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 66345845: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d + 6634584a: 45 8b 00 mov (%r8),%r8d + 6634584d: 45 39 d0 cmp %r10d,%r8d + 66345850: 74 65 je 663458b7 + 66345852: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345856: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634585a: 45 89 c6 mov %r8d,%r14d + 6634585d: 45 29 d6 sub %r10d,%r14d + 66345860: 45 31 d2 xor %r10d,%r10d + 66345863: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 + 66345868: 45 01 33 add %r14d,(%r11) + 6634586b: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) + 66345870: 45 8b 33 mov (%r11),%r14d + 66345873: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 + 66345878: 45 85 f6 test %r14d,%r14d + 6634587b: 41 0f 9f c2 setg %r10b + 6634587f: 45 3b 10 cmp (%r8),%r10d + 66345882: 74 33 je 663458b7 + 66345884: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345888: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 + 6634588d: 45 8b 18 mov (%r8),%r11d + 66345890: 45 85 db test %r11d,%r11d + 66345893: 75 22 jne 663458b7 + 66345895: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345899: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 + 6634589e: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663458a2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663458a9: 4c 63 06 movslq (%rsi),%r8 + 663458ac: 45 8d 58 01 lea 0x1(%r8),%r11d + 663458b0: 44 89 1e mov %r11d,(%rsi) + 663458b3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 663458b7: 48 83 c0 04 add $0x4,%rax + 663458bb: 48 83 f8 24 cmp $0x24,%rax + 663458bf: 0f 85 7b ff ff ff jne 66345840 + 663458c5: 5b pop %rbx + 663458c6: 5e pop %rsi + 663458c7: 5f pop %rdi + 663458c8: 41 5e pop %r14 + 663458ca: c3 retq + 663458cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663458d0: 48 83 c2 28 add $0x28,%rdx + 663458d4: b8 50 00 00 00 mov $0x50,%eax + 663458d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663458e0: 44 8b 02 mov (%rdx),%r8d + 663458e3: 45 85 c0 test %r8d,%r8d + 663458e6: 74 59 je 66345941 + 663458e8: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663458ec: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 663458f0: 45 29 02 sub %r8d,(%r10) + 663458f3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663458f9: 45 8b 12 mov (%r10),%r10d + 663458fc: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 66345900: 45 85 d2 test %r10d,%r10d + 66345903: 41 0f 9f c2 setg %r10b + 66345907: 45 0f b6 d2 movzbl %r10b,%r10d + 6634590b: 45 3b 10 cmp (%r8),%r10d + 6634590e: 74 31 je 66345941 + 66345910: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345914: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345918: 45 8b 00 mov (%r8),%r8d + 6634591b: 45 85 c0 test %r8d,%r8d + 6634591e: 75 21 jne 66345941 + 66345920: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345924: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 66345928: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634592c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345933: 4c 63 06 movslq (%rsi),%r8 + 66345936: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634593a: 44 89 1e mov %r11d,(%rsi) + 6634593d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345941: 48 83 c0 08 add $0x8,%rax + 66345945: 48 83 c2 04 add $0x4,%rdx + 66345949: 48 3d 98 00 00 00 cmp $0x98,%rax + 6634594f: 75 8f jne 663458e0 + 66345951: 5b pop %rbx + 66345952: 5e pop %rsi + 66345953: 5f pop %rdi + 66345954: 41 5e pop %r14 + 66345956: c3 retq + 66345957: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634595e: 00 00 + +0000000066345960 : + 66345960: 41 56 push %r14 + 66345962: 57 push %rdi + 66345963: 56 push %rsi + 66345964: 53 push %rbx + 66345965: 48 8b 3d b4 1f 01 00 mov 0x11fb4(%rip),%rdi # 66357920 + 6634596c: 48 8b 35 bd 1f 01 00 mov 0x11fbd(%rip),%rsi # 66357930 + 66345973: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345977: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634597b: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax + 66345982: 44 8b 10 mov (%rax),%r10d + 66345985: 45 85 d2 test %r10d,%r10d + 66345988: 0f 84 92 00 00 00 je 66345a20 + 6634598e: 31 c0 xor %eax,%eax + 66345990: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 66345995: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d + 6634599a: 45 8b 00 mov (%r8),%r8d + 6634599d: 45 39 d0 cmp %r10d,%r8d + 663459a0: 74 65 je 66345a07 + 663459a2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663459a6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 663459aa: 45 89 c6 mov %r8d,%r14d + 663459ad: 45 29 d6 sub %r10d,%r14d + 663459b0: 45 31 d2 xor %r10d,%r10d + 663459b3: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 + 663459b8: 45 01 33 add %r14d,(%r11) + 663459bb: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) + 663459c0: 45 8b 03 mov (%r11),%r8d + 663459c3: 45 85 c0 test %r8d,%r8d + 663459c6: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 + 663459cb: 41 0f 9f c2 setg %r10b + 663459cf: 45 3b 10 cmp (%r8),%r10d + 663459d2: 74 33 je 66345a07 + 663459d4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663459d8: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 + 663459dd: 45 8b 30 mov (%r8),%r14d + 663459e0: 45 85 f6 test %r14d,%r14d + 663459e3: 75 22 jne 66345a07 + 663459e5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663459e9: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 + 663459ee: 4d 8b 42 10 mov 0x10(%r10),%r8 + 663459f2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663459f9: 4c 63 06 movslq (%rsi),%r8 + 663459fc: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345a00: 44 89 1e mov %r11d,(%rsi) + 66345a03: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345a07: 48 83 c0 04 add $0x4,%rax + 66345a0b: 48 83 f8 20 cmp $0x20,%rax + 66345a0f: 0f 85 7b ff ff ff jne 66345990 + 66345a15: 5b pop %rbx + 66345a16: 5e pop %rsi + 66345a17: 5f pop %rdi + 66345a18: 41 5e pop %r14 + 66345a1a: c3 retq + 66345a1b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345a20: 8b 42 24 mov 0x24(%rdx),%eax + 66345a23: 85 c0 test %eax,%eax + 66345a25: 74 57 je 66345a7e + 66345a27: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345a2b: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66345a2f: 41 29 00 sub %eax,(%r8) + 66345a32: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66345a39: 41 8b 18 mov (%r8),%ebx + 66345a3c: 45 31 c0 xor %r8d,%r8d + 66345a3f: 49 8b 41 48 mov 0x48(%r9),%rax + 66345a43: 85 db test %ebx,%ebx + 66345a45: 41 0f 9f c0 setg %r8b + 66345a49: 44 3b 00 cmp (%rax),%r8d + 66345a4c: 74 30 je 66345a7e + 66345a4e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345a52: 48 8b 40 48 mov 0x48(%rax),%rax + 66345a56: 44 8b 18 mov (%rax),%r11d + 66345a59: 45 85 db test %r11d,%r11d + 66345a5c: 75 20 jne 66345a7e + 66345a5e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345a62: 4c 8b 40 48 mov 0x48(%rax),%r8 + 66345a66: 49 8b 40 10 mov 0x10(%r8),%rax + 66345a6a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345a70: 48 63 06 movslq (%rsi),%rax + 66345a73: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345a77: 44 89 16 mov %r10d,(%rsi) + 66345a7a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345a7e: 8b 42 28 mov 0x28(%rdx),%eax + 66345a81: 85 c0 test %eax,%eax + 66345a83: 74 58 je 66345add + 66345a85: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345a89: 4d 8b 40 50 mov 0x50(%r8),%r8 + 66345a8d: 41 29 00 sub %eax,(%r8) + 66345a90: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66345a97: 45 8b 10 mov (%r8),%r10d + 66345a9a: 45 31 c0 xor %r8d,%r8d + 66345a9d: 49 8b 41 50 mov 0x50(%r9),%rax + 66345aa1: 45 85 d2 test %r10d,%r10d + 66345aa4: 41 0f 9f c0 setg %r8b + 66345aa8: 44 3b 00 cmp (%rax),%r8d + 66345aab: 74 30 je 66345add + 66345aad: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345ab1: 48 8b 40 50 mov 0x50(%rax),%rax + 66345ab5: 44 8b 00 mov (%rax),%r8d + 66345ab8: 45 85 c0 test %r8d,%r8d + 66345abb: 75 20 jne 66345add + 66345abd: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345ac1: 4c 8b 40 50 mov 0x50(%rax),%r8 + 66345ac5: 49 8b 40 10 mov 0x10(%r8),%rax + 66345ac9: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345acf: 48 63 06 movslq (%rsi),%rax + 66345ad2: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345ad6: 44 89 16 mov %r10d,(%rsi) + 66345ad9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345add: 8b 42 2c mov 0x2c(%rdx),%eax + 66345ae0: 85 c0 test %eax,%eax + 66345ae2: 74 55 je 66345b39 + 66345ae4: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345ae8: 4d 8b 40 58 mov 0x58(%r8),%r8 + 66345aec: 41 29 00 sub %eax,(%r8) + 66345aef: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66345af6: 41 8b 00 mov (%r8),%eax + 66345af9: 45 31 c0 xor %r8d,%r8d + 66345afc: 85 c0 test %eax,%eax + 66345afe: 49 8b 41 58 mov 0x58(%r9),%rax + 66345b02: 41 0f 9f c0 setg %r8b + 66345b06: 44 3b 00 cmp (%rax),%r8d + 66345b09: 74 2e je 66345b39 + 66345b0b: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345b0f: 48 8b 40 58 mov 0x58(%rax),%rax + 66345b13: 8b 00 mov (%rax),%eax + 66345b15: 85 c0 test %eax,%eax + 66345b17: 75 20 jne 66345b39 + 66345b19: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345b1d: 4c 8b 40 58 mov 0x58(%rax),%r8 + 66345b21: 49 8b 40 10 mov 0x10(%r8),%rax + 66345b25: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345b2b: 48 63 06 movslq (%rsi),%rax + 66345b2e: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345b32: 44 89 16 mov %r10d,(%rsi) + 66345b35: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345b39: 8b 42 30 mov 0x30(%rdx),%eax + 66345b3c: 85 c0 test %eax,%eax + 66345b3e: 74 55 je 66345b95 + 66345b40: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345b44: 4d 8b 40 60 mov 0x60(%r8),%r8 + 66345b48: 41 29 00 sub %eax,(%r8) + 66345b4b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 66345b52: 41 8b 00 mov (%r8),%eax + 66345b55: 45 31 c0 xor %r8d,%r8d + 66345b58: 85 c0 test %eax,%eax + 66345b5a: 49 8b 41 60 mov 0x60(%r9),%rax + 66345b5e: 41 0f 9f c0 setg %r8b + 66345b62: 44 3b 00 cmp (%rax),%r8d + 66345b65: 74 2e je 66345b95 + 66345b67: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345b6b: 48 8b 40 60 mov 0x60(%rax),%rax + 66345b6f: 8b 00 mov (%rax),%eax + 66345b71: 85 c0 test %eax,%eax + 66345b73: 75 20 jne 66345b95 + 66345b75: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345b79: 4c 8b 40 60 mov 0x60(%rax),%r8 + 66345b7d: 49 8b 40 10 mov 0x10(%r8),%rax + 66345b81: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345b87: 48 63 06 movslq (%rsi),%rax + 66345b8a: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345b8e: 44 89 16 mov %r10d,(%rsi) + 66345b91: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345b95: 8b 42 34 mov 0x34(%rdx),%eax + 66345b98: 85 c0 test %eax,%eax + 66345b9a: 74 55 je 66345bf1 + 66345b9c: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345ba0: 4d 8b 40 68 mov 0x68(%r8),%r8 + 66345ba4: 41 29 00 sub %eax,(%r8) + 66345ba7: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 66345bae: 41 8b 00 mov (%r8),%eax + 66345bb1: 45 31 c0 xor %r8d,%r8d + 66345bb4: 85 c0 test %eax,%eax + 66345bb6: 49 8b 41 68 mov 0x68(%r9),%rax + 66345bba: 41 0f 9f c0 setg %r8b + 66345bbe: 44 3b 00 cmp (%rax),%r8d + 66345bc1: 74 2e je 66345bf1 + 66345bc3: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345bc7: 48 8b 40 68 mov 0x68(%rax),%rax + 66345bcb: 8b 00 mov (%rax),%eax + 66345bcd: 85 c0 test %eax,%eax + 66345bcf: 75 20 jne 66345bf1 + 66345bd1: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345bd5: 4c 8b 40 68 mov 0x68(%rax),%r8 + 66345bd9: 49 8b 40 10 mov 0x10(%r8),%rax + 66345bdd: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345be3: 48 63 06 movslq (%rsi),%rax + 66345be6: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345bea: 44 89 16 mov %r10d,(%rsi) + 66345bed: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345bf1: 8b 42 38 mov 0x38(%rdx),%eax + 66345bf4: 85 c0 test %eax,%eax + 66345bf6: 74 56 je 66345c4e + 66345bf8: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345bfc: 4d 8b 40 70 mov 0x70(%r8),%r8 + 66345c00: 41 29 00 sub %eax,(%r8) + 66345c03: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 66345c0a: 45 8b 30 mov (%r8),%r14d + 66345c0d: 45 31 c0 xor %r8d,%r8d + 66345c10: 49 8b 41 70 mov 0x70(%r9),%rax + 66345c14: 45 85 f6 test %r14d,%r14d + 66345c17: 41 0f 9f c0 setg %r8b + 66345c1b: 44 3b 00 cmp (%rax),%r8d + 66345c1e: 74 2e je 66345c4e + 66345c20: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345c24: 48 8b 40 70 mov 0x70(%rax),%rax + 66345c28: 8b 18 mov (%rax),%ebx + 66345c2a: 85 db test %ebx,%ebx + 66345c2c: 75 20 jne 66345c4e + 66345c2e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345c32: 4c 8b 40 70 mov 0x70(%rax),%r8 + 66345c36: 49 8b 40 10 mov 0x10(%r8),%rax + 66345c3a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345c40: 48 63 06 movslq (%rsi),%rax + 66345c43: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345c47: 44 89 16 mov %r10d,(%rsi) + 66345c4a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345c4e: 8b 42 3c mov 0x3c(%rdx),%eax + 66345c51: 85 c0 test %eax,%eax + 66345c53: 74 58 je 66345cad + 66345c55: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345c59: 4d 8b 40 78 mov 0x78(%r8),%r8 + 66345c5d: 41 29 00 sub %eax,(%r8) + 66345c60: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 66345c67: 45 8b 18 mov (%r8),%r11d + 66345c6a: 45 31 c0 xor %r8d,%r8d + 66345c6d: 49 8b 41 78 mov 0x78(%r9),%rax + 66345c71: 45 85 db test %r11d,%r11d + 66345c74: 41 0f 9f c0 setg %r8b + 66345c78: 44 3b 00 cmp (%rax),%r8d + 66345c7b: 74 30 je 66345cad + 66345c7d: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345c81: 48 8b 40 78 mov 0x78(%rax),%rax + 66345c85: 44 8b 10 mov (%rax),%r10d + 66345c88: 45 85 d2 test %r10d,%r10d + 66345c8b: 75 20 jne 66345cad + 66345c8d: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345c91: 4c 8b 40 78 mov 0x78(%rax),%r8 + 66345c95: 49 8b 40 10 mov 0x10(%r8),%rax + 66345c99: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345c9f: 48 63 06 movslq (%rsi),%rax + 66345ca2: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345ca6: 44 89 16 mov %r10d,(%rsi) + 66345ca9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345cad: 8b 42 40 mov 0x40(%rdx),%eax + 66345cb0: 85 c0 test %eax,%eax + 66345cb2: 0f 84 5d fd ff ff je 66345a15 + 66345cb8: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345cbc: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 + 66345cc3: 41 29 00 sub %eax,(%r8) + 66345cc6: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 66345ccd: 31 d2 xor %edx,%edx + 66345ccf: 45 8b 00 mov (%r8),%r8d + 66345cd2: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax + 66345cd9: 45 85 c0 test %r8d,%r8d + 66345cdc: 0f 9f c2 setg %dl + 66345cdf: 3b 10 cmp (%rax),%edx + 66345ce1: 0f 84 2e fd ff ff je 66345a15 + 66345ce7: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345ceb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 66345cf2: 8b 00 mov (%rax),%eax + 66345cf4: 85 c0 test %eax,%eax + 66345cf6: 0f 85 19 fd ff ff jne 66345a15 + 66345cfc: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345d00: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 66345d07: 48 8b 42 10 mov 0x10(%rdx),%rax + 66345d0b: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345d11: 48 63 06 movslq (%rsi),%rax + 66345d14: 8d 48 01 lea 0x1(%rax),%ecx + 66345d17: 89 0e mov %ecx,(%rsi) + 66345d19: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) + 66345d1d: 5b pop %rbx + 66345d1e: 5e pop %rsi + 66345d1f: 5f pop %rdi + 66345d20: 41 5e pop %r14 + 66345d22: c3 retq + 66345d23: 0f 1f 00 nopl (%rax) + 66345d26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66345d2d: 00 00 00 + +0000000066345d30 : + 66345d30: 41 56 push %r14 + 66345d32: 57 push %rdi + 66345d33: 56 push %rsi + 66345d34: 53 push %rbx + 66345d35: 48 8b 3d e4 1b 01 00 mov 0x11be4(%rip),%rdi # 66357920 + 66345d3c: 48 8b 35 ed 1b 01 00 mov 0x11bed(%rip),%rsi # 66357930 + 66345d43: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66345d47: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66345d4b: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax + 66345d52: 44 8b 10 mov (%rax),%r10d + 66345d55: 45 85 d2 test %r10d,%r10d + 66345d58: 0f 84 92 00 00 00 je 66345df0 + 66345d5e: 31 c0 xor %eax,%eax + 66345d60: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 66345d65: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d + 66345d6a: 45 8b 00 mov (%r8),%r8d + 66345d6d: 45 39 d0 cmp %r10d,%r8d + 66345d70: 74 65 je 66345dd7 + 66345d72: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66345d76: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 66345d7a: 45 89 c6 mov %r8d,%r14d + 66345d7d: 45 29 d6 sub %r10d,%r14d + 66345d80: 45 31 d2 xor %r10d,%r10d + 66345d83: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 + 66345d88: 45 01 33 add %r14d,(%r11) + 66345d8b: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) + 66345d90: 45 8b 03 mov (%r11),%r8d + 66345d93: 45 85 c0 test %r8d,%r8d + 66345d96: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 + 66345d9b: 41 0f 9f c2 setg %r10b + 66345d9f: 45 3b 10 cmp (%r8),%r10d + 66345da2: 74 33 je 66345dd7 + 66345da4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66345da8: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 + 66345dad: 45 8b 30 mov (%r8),%r14d + 66345db0: 45 85 f6 test %r14d,%r14d + 66345db3: 75 22 jne 66345dd7 + 66345db5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66345db9: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 + 66345dbe: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66345dc2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345dc9: 4c 63 06 movslq (%rsi),%r8 + 66345dcc: 45 8d 58 01 lea 0x1(%r8),%r11d + 66345dd0: 44 89 1e mov %r11d,(%rsi) + 66345dd3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 66345dd7: 48 83 c0 04 add $0x4,%rax + 66345ddb: 48 83 f8 20 cmp $0x20,%rax + 66345ddf: 0f 85 7b ff ff ff jne 66345d60 + 66345de5: 5b pop %rbx + 66345de6: 5e pop %rsi + 66345de7: 5f pop %rdi + 66345de8: 41 5e pop %r14 + 66345dea: c3 retq + 66345deb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345df0: 8b 42 24 mov 0x24(%rdx),%eax + 66345df3: 85 c0 test %eax,%eax + 66345df5: 74 57 je 66345e4e + 66345df7: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345dfb: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66345dff: 41 29 00 sub %eax,(%r8) + 66345e02: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66345e09: 41 8b 18 mov (%r8),%ebx + 66345e0c: 45 31 c0 xor %r8d,%r8d + 66345e0f: 49 8b 41 48 mov 0x48(%r9),%rax + 66345e13: 85 db test %ebx,%ebx + 66345e15: 41 0f 9f c0 setg %r8b + 66345e19: 44 3b 00 cmp (%rax),%r8d + 66345e1c: 74 30 je 66345e4e + 66345e1e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345e22: 48 8b 40 48 mov 0x48(%rax),%rax + 66345e26: 44 8b 18 mov (%rax),%r11d + 66345e29: 45 85 db test %r11d,%r11d + 66345e2c: 75 20 jne 66345e4e + 66345e2e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345e32: 4c 8b 40 48 mov 0x48(%rax),%r8 + 66345e36: 49 8b 40 10 mov 0x10(%r8),%rax + 66345e3a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345e40: 48 63 06 movslq (%rsi),%rax + 66345e43: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345e47: 44 89 16 mov %r10d,(%rsi) + 66345e4a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345e4e: 8b 42 28 mov 0x28(%rdx),%eax + 66345e51: 85 c0 test %eax,%eax + 66345e53: 74 58 je 66345ead + 66345e55: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345e59: 4d 8b 40 50 mov 0x50(%r8),%r8 + 66345e5d: 41 29 00 sub %eax,(%r8) + 66345e60: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66345e67: 45 8b 10 mov (%r8),%r10d + 66345e6a: 45 31 c0 xor %r8d,%r8d + 66345e6d: 49 8b 41 50 mov 0x50(%r9),%rax + 66345e71: 45 85 d2 test %r10d,%r10d + 66345e74: 41 0f 9f c0 setg %r8b + 66345e78: 44 3b 00 cmp (%rax),%r8d + 66345e7b: 74 30 je 66345ead + 66345e7d: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345e81: 48 8b 40 50 mov 0x50(%rax),%rax + 66345e85: 44 8b 00 mov (%rax),%r8d + 66345e88: 45 85 c0 test %r8d,%r8d + 66345e8b: 75 20 jne 66345ead + 66345e8d: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345e91: 4c 8b 40 50 mov 0x50(%rax),%r8 + 66345e95: 49 8b 40 10 mov 0x10(%r8),%rax + 66345e99: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345e9f: 48 63 06 movslq (%rsi),%rax + 66345ea2: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345ea6: 44 89 16 mov %r10d,(%rsi) + 66345ea9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345ead: 8b 42 2c mov 0x2c(%rdx),%eax + 66345eb0: 85 c0 test %eax,%eax + 66345eb2: 74 55 je 66345f09 + 66345eb4: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345eb8: 4d 8b 40 58 mov 0x58(%r8),%r8 + 66345ebc: 41 29 00 sub %eax,(%r8) + 66345ebf: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66345ec6: 41 8b 00 mov (%r8),%eax + 66345ec9: 45 31 c0 xor %r8d,%r8d + 66345ecc: 85 c0 test %eax,%eax + 66345ece: 49 8b 41 58 mov 0x58(%r9),%rax + 66345ed2: 41 0f 9f c0 setg %r8b + 66345ed6: 44 3b 00 cmp (%rax),%r8d + 66345ed9: 74 2e je 66345f09 + 66345edb: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345edf: 48 8b 40 58 mov 0x58(%rax),%rax + 66345ee3: 8b 00 mov (%rax),%eax + 66345ee5: 85 c0 test %eax,%eax + 66345ee7: 75 20 jne 66345f09 + 66345ee9: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345eed: 4c 8b 40 58 mov 0x58(%rax),%r8 + 66345ef1: 49 8b 40 10 mov 0x10(%r8),%rax + 66345ef5: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345efb: 48 63 06 movslq (%rsi),%rax + 66345efe: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345f02: 44 89 16 mov %r10d,(%rsi) + 66345f05: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345f09: 8b 42 30 mov 0x30(%rdx),%eax + 66345f0c: 85 c0 test %eax,%eax + 66345f0e: 74 55 je 66345f65 + 66345f10: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345f14: 4d 8b 40 60 mov 0x60(%r8),%r8 + 66345f18: 41 29 00 sub %eax,(%r8) + 66345f1b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 66345f22: 41 8b 00 mov (%r8),%eax + 66345f25: 45 31 c0 xor %r8d,%r8d + 66345f28: 85 c0 test %eax,%eax + 66345f2a: 49 8b 41 60 mov 0x60(%r9),%rax + 66345f2e: 41 0f 9f c0 setg %r8b + 66345f32: 44 3b 00 cmp (%rax),%r8d + 66345f35: 74 2e je 66345f65 + 66345f37: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345f3b: 48 8b 40 60 mov 0x60(%rax),%rax + 66345f3f: 8b 00 mov (%rax),%eax + 66345f41: 85 c0 test %eax,%eax + 66345f43: 75 20 jne 66345f65 + 66345f45: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345f49: 4c 8b 40 60 mov 0x60(%rax),%r8 + 66345f4d: 49 8b 40 10 mov 0x10(%r8),%rax + 66345f51: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345f57: 48 63 06 movslq (%rsi),%rax + 66345f5a: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345f5e: 44 89 16 mov %r10d,(%rsi) + 66345f61: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345f65: 8b 42 34 mov 0x34(%rdx),%eax + 66345f68: 85 c0 test %eax,%eax + 66345f6a: 74 55 je 66345fc1 + 66345f6c: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345f70: 4d 8b 40 68 mov 0x68(%r8),%r8 + 66345f74: 41 29 00 sub %eax,(%r8) + 66345f77: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 66345f7e: 41 8b 00 mov (%r8),%eax + 66345f81: 45 31 c0 xor %r8d,%r8d + 66345f84: 85 c0 test %eax,%eax + 66345f86: 49 8b 41 68 mov 0x68(%r9),%rax + 66345f8a: 41 0f 9f c0 setg %r8b + 66345f8e: 44 3b 00 cmp (%rax),%r8d + 66345f91: 74 2e je 66345fc1 + 66345f93: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345f97: 48 8b 40 68 mov 0x68(%rax),%rax + 66345f9b: 8b 00 mov (%rax),%eax + 66345f9d: 85 c0 test %eax,%eax + 66345f9f: 75 20 jne 66345fc1 + 66345fa1: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345fa5: 4c 8b 40 68 mov 0x68(%rax),%r8 + 66345fa9: 49 8b 40 10 mov 0x10(%r8),%rax + 66345fad: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345fb3: 48 63 06 movslq (%rsi),%rax + 66345fb6: 44 8d 50 01 lea 0x1(%rax),%r10d + 66345fba: 44 89 16 mov %r10d,(%rsi) + 66345fbd: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 66345fc1: 8b 42 38 mov 0x38(%rdx),%eax + 66345fc4: 85 c0 test %eax,%eax + 66345fc6: 74 56 je 6634601e + 66345fc8: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66345fcc: 4d 8b 40 70 mov 0x70(%r8),%r8 + 66345fd0: 41 29 00 sub %eax,(%r8) + 66345fd3: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 66345fda: 45 8b 30 mov (%r8),%r14d + 66345fdd: 45 31 c0 xor %r8d,%r8d + 66345fe0: 49 8b 41 70 mov 0x70(%r9),%rax + 66345fe4: 45 85 f6 test %r14d,%r14d + 66345fe7: 41 0f 9f c0 setg %r8b + 66345feb: 44 3b 00 cmp (%rax),%r8d + 66345fee: 74 2e je 6634601e + 66345ff0: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345ff4: 48 8b 40 70 mov 0x70(%rax),%rax + 66345ff8: 8b 18 mov (%rax),%ebx + 66345ffa: 85 db test %ebx,%ebx + 66345ffc: 75 20 jne 6634601e + 66345ffe: 48 8b 41 28 mov 0x28(%rcx),%rax + 66346002: 4c 8b 40 70 mov 0x70(%rax),%r8 + 66346006: 49 8b 40 10 mov 0x10(%r8),%rax + 6634600a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66346010: 48 63 06 movslq (%rsi),%rax + 66346013: 44 8d 50 01 lea 0x1(%rax),%r10d + 66346017: 44 89 16 mov %r10d,(%rsi) + 6634601a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 6634601e: 8b 42 3c mov 0x3c(%rdx),%eax + 66346021: 85 c0 test %eax,%eax + 66346023: 74 58 je 6634607d + 66346025: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 66346029: 4d 8b 40 78 mov 0x78(%r8),%r8 + 6634602d: 41 29 00 sub %eax,(%r8) + 66346030: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 66346037: 45 8b 18 mov (%r8),%r11d + 6634603a: 45 31 c0 xor %r8d,%r8d + 6634603d: 49 8b 41 78 mov 0x78(%r9),%rax + 66346041: 45 85 db test %r11d,%r11d + 66346044: 41 0f 9f c0 setg %r8b + 66346048: 44 3b 00 cmp (%rax),%r8d + 6634604b: 74 30 je 6634607d + 6634604d: 48 8b 41 20 mov 0x20(%rcx),%rax + 66346051: 48 8b 40 78 mov 0x78(%rax),%rax + 66346055: 44 8b 10 mov (%rax),%r10d + 66346058: 45 85 d2 test %r10d,%r10d + 6634605b: 75 20 jne 6634607d + 6634605d: 48 8b 41 28 mov 0x28(%rcx),%rax + 66346061: 4c 8b 40 78 mov 0x78(%rax),%r8 + 66346065: 49 8b 40 10 mov 0x10(%r8),%rax + 66346069: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634606f: 48 63 06 movslq (%rsi),%rax + 66346072: 44 8d 50 01 lea 0x1(%rax),%r10d + 66346076: 44 89 16 mov %r10d,(%rsi) + 66346079: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) + 6634607d: 8b 42 40 mov 0x40(%rdx),%eax + 66346080: 85 c0 test %eax,%eax + 66346082: 0f 84 5d fd ff ff je 66345de5 + 66346088: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634608c: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 + 66346093: 41 29 00 sub %eax,(%r8) + 66346096: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634609d: 31 d2 xor %edx,%edx + 6634609f: 45 8b 00 mov (%r8),%r8d + 663460a2: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax + 663460a9: 45 85 c0 test %r8d,%r8d + 663460ac: 0f 9f c2 setg %dl + 663460af: 3b 10 cmp (%rax),%edx + 663460b1: 0f 84 2e fd ff ff je 66345de5 + 663460b7: 48 8b 41 20 mov 0x20(%rcx),%rax + 663460bb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 663460c2: 8b 00 mov (%rax),%eax + 663460c4: 85 c0 test %eax,%eax + 663460c6: 0f 85 19 fd ff ff jne 66345de5 + 663460cc: 48 8b 41 28 mov 0x28(%rcx),%rax + 663460d0: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 663460d7: 48 8b 42 10 mov 0x10(%rdx),%rax + 663460db: c7 00 01 00 00 00 movl $0x1,(%rax) + 663460e1: 48 63 06 movslq (%rsi),%rax + 663460e4: 8d 48 01 lea 0x1(%rax),%ecx + 663460e7: 89 0e mov %ecx,(%rsi) + 663460e9: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) + 663460ed: 5b pop %rbx + 663460ee: 5e pop %rsi + 663460ef: 5f pop %rdi + 663460f0: 41 5e pop %r14 + 663460f2: c3 retq + 663460f3: 0f 1f 00 nopl (%rax) + 663460f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663460fd: 00 00 00 + +0000000066346100 : + 66346100: 56 push %rsi + 66346101: 53 push %rbx + 66346102: 4c 8b 0d 17 18 01 00 mov 0x11817(%rip),%r9 # 66357920 + 66346109: 4c 8b 05 20 18 01 00 mov 0x11820(%rip),%r8 # 66357930 + 66346110: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66346114: 48 8b 41 08 mov 0x8(%rcx),%rax + 66346118: 4c 8b 52 78 mov 0x78(%rdx),%r10 + 6634611c: 41 8b 32 mov (%r10),%esi + 6634611f: 85 f6 test %esi,%esi + 66346121: 0f 84 39 02 00 00 je 66346360 + 66346127: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 6634612b: 44 8b 58 20 mov 0x20(%rax),%r11d + 6634612f: 45 8b 12 mov (%r10),%r10d + 66346132: 45 39 d3 cmp %r10d,%r11d + 66346135: 74 3c je 66346173 + 66346137: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634613b: 44 89 d6 mov %r10d,%esi + 6634613e: 44 29 de sub %r11d,%esi + 66346141: 45 31 db xor %r11d,%r11d + 66346144: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66346148: 01 33 add %esi,(%rbx) + 6634614a: 44 89 50 20 mov %r10d,0x20(%rax) + 6634614e: 8b 1b mov (%rbx),%ebx + 66346150: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66346154: 85 db test %ebx,%ebx + 66346156: 41 0f 9f c3 setg %r11b + 6634615a: 45 3b 1a cmp (%r10),%r11d + 6634615d: 74 14 je 66346173 + 6634615f: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346163: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66346167: 45 8b 1a mov (%r10),%r11d + 6634616a: 45 85 db test %r11d,%r11d + 6634616d: 0f 84 ad 05 00 00 je 66346720 + 66346173: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 66346177: 44 8b 58 24 mov 0x24(%rax),%r11d + 6634617b: 45 8b 12 mov (%r10),%r10d + 6634617e: 45 39 da cmp %r11d,%r10d + 66346181: 74 3d je 663461c0 + 66346183: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346187: 44 89 d6 mov %r10d,%esi + 6634618a: 44 29 de sub %r11d,%esi + 6634618d: 45 31 db xor %r11d,%r11d + 66346190: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 66346194: 01 33 add %esi,(%rbx) + 66346196: 44 89 50 24 mov %r10d,0x24(%rax) + 6634619a: 44 8b 13 mov (%rbx),%r10d + 6634619d: 45 85 d2 test %r10d,%r10d + 663461a0: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663461a4: 41 0f 9f c3 setg %r11b + 663461a8: 45 3b 1a cmp (%r10),%r11d + 663461ab: 74 13 je 663461c0 + 663461ad: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663461b1: 4d 8b 52 48 mov 0x48(%r10),%r10 + 663461b5: 41 8b 32 mov (%r10),%esi + 663461b8: 85 f6 test %esi,%esi + 663461ba: 0f 84 30 05 00 00 je 663466f0 + 663461c0: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 663461c4: 44 8b 58 28 mov 0x28(%rax),%r11d + 663461c8: 45 8b 12 mov (%r10),%r10d + 663461cb: 45 39 da cmp %r11d,%r10d + 663461ce: 74 3c je 6634620c + 663461d0: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663461d4: 44 89 d6 mov %r10d,%esi + 663461d7: 44 29 de sub %r11d,%esi + 663461da: 45 31 db xor %r11d,%r11d + 663461dd: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 663461e1: 01 33 add %esi,(%rbx) + 663461e3: 44 89 50 28 mov %r10d,0x28(%rax) + 663461e7: 8b 1b mov (%rbx),%ebx + 663461e9: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 663461ed: 85 db test %ebx,%ebx + 663461ef: 41 0f 9f c3 setg %r11b + 663461f3: 45 3b 1a cmp (%r10),%r11d + 663461f6: 74 14 je 6634620c + 663461f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663461fc: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66346200: 45 8b 1a mov (%r10),%r11d + 66346203: 45 85 db test %r11d,%r11d + 66346206: 0f 84 b4 04 00 00 je 663466c0 + 6634620c: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 66346210: 44 8b 58 2c mov 0x2c(%rax),%r11d + 66346214: 45 8b 12 mov (%r10),%r10d + 66346217: 45 39 da cmp %r11d,%r10d + 6634621a: 74 3d je 66346259 + 6634621c: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346220: 44 89 d6 mov %r10d,%esi + 66346223: 44 29 de sub %r11d,%esi + 66346226: 45 31 db xor %r11d,%r11d + 66346229: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 6634622d: 01 33 add %esi,(%rbx) + 6634622f: 44 89 50 2c mov %r10d,0x2c(%rax) + 66346233: 44 8b 13 mov (%rbx),%r10d + 66346236: 45 85 d2 test %r10d,%r10d + 66346239: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 6634623d: 41 0f 9f c3 setg %r11b + 66346241: 45 3b 1a cmp (%r10),%r11d + 66346244: 74 13 je 66346259 + 66346246: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634624a: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634624e: 41 8b 32 mov (%r10),%esi + 66346251: 85 f6 test %esi,%esi + 66346253: 0f 84 37 04 00 00 je 66346690 + 66346259: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 6634625d: 44 8b 58 30 mov 0x30(%rax),%r11d + 66346261: 45 8b 12 mov (%r10),%r10d + 66346264: 45 39 da cmp %r11d,%r10d + 66346267: 74 3c je 663462a5 + 66346269: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634626d: 44 89 d6 mov %r10d,%esi + 66346270: 44 29 de sub %r11d,%esi + 66346273: 45 31 db xor %r11d,%r11d + 66346276: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 6634627a: 01 33 add %esi,(%rbx) + 6634627c: 44 89 50 30 mov %r10d,0x30(%rax) + 66346280: 8b 1b mov (%rbx),%ebx + 66346282: 4c 8b 52 60 mov 0x60(%rdx),%r10 + 66346286: 85 db test %ebx,%ebx + 66346288: 41 0f 9f c3 setg %r11b + 6634628c: 45 3b 1a cmp (%r10),%r11d + 6634628f: 74 14 je 663462a5 + 66346291: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346295: 4d 8b 52 60 mov 0x60(%r10),%r10 + 66346299: 45 8b 12 mov (%r10),%r10d + 6634629c: 45 85 d2 test %r10d,%r10d + 6634629f: 0f 84 bb 03 00 00 je 66346660 + 663462a5: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 663462a9: 44 8b 58 34 mov 0x34(%rax),%r11d + 663462ad: 45 8b 12 mov (%r10),%r10d + 663462b0: 45 39 da cmp %r11d,%r10d + 663462b3: 74 3b je 663462f0 + 663462b5: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663462b9: 44 89 d6 mov %r10d,%esi + 663462bc: 44 29 de sub %r11d,%esi + 663462bf: 45 31 db xor %r11d,%r11d + 663462c2: 48 8b 5b 68 mov 0x68(%rbx),%rbx + 663462c6: 01 33 add %esi,(%rbx) + 663462c8: 44 89 50 34 mov %r10d,0x34(%rax) + 663462cc: 8b 33 mov (%rbx),%esi + 663462ce: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 663462d2: 85 f6 test %esi,%esi + 663462d4: 41 0f 9f c3 setg %r11b + 663462d8: 45 3b 1a cmp (%r10),%r11d + 663462db: 74 13 je 663462f0 + 663462dd: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663462e1: 4d 8b 52 68 mov 0x68(%r10),%r10 + 663462e5: 41 8b 1a mov (%r10),%ebx + 663462e8: 85 db test %ebx,%ebx + 663462ea: 0f 84 40 03 00 00 je 66346630 + 663462f0: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 663462f4: 44 8b 58 38 mov 0x38(%rax),%r11d + 663462f8: 45 8b 12 mov (%r10),%r10d + 663462fb: 45 39 da cmp %r11d,%r10d + 663462fe: 74 58 je 66346358 + 66346300: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346304: 44 89 d6 mov %r10d,%esi + 66346307: 44 29 de sub %r11d,%esi + 6634630a: 48 8b 5b 70 mov 0x70(%rbx),%rbx + 6634630e: 01 33 add %esi,(%rbx) + 66346310: 44 89 50 38 mov %r10d,0x38(%rax) + 66346314: 44 8b 1b mov (%rbx),%r11d + 66346317: 45 85 db test %r11d,%r11d + 6634631a: 48 8b 42 70 mov 0x70(%rdx),%rax + 6634631e: 41 0f 9f c2 setg %r10b + 66346322: 45 0f b6 d2 movzbl %r10b,%r10d + 66346326: 44 3b 10 cmp (%rax),%r10d + 66346329: 74 2d je 66346358 + 6634632b: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634632f: 48 8b 40 70 mov 0x70(%rax),%rax + 66346333: 8b 00 mov (%rax),%eax + 66346335: 85 c0 test %eax,%eax + 66346337: 75 1f jne 66346358 + 66346339: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634633d: 48 8b 50 70 mov 0x70(%rax),%rdx + 66346341: 48 8b 42 10 mov 0x10(%rdx),%rax + 66346345: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634634b: 49 63 00 movslq (%r8),%rax + 6634634e: 8d 48 01 lea 0x1(%rax),%ecx + 66346351: 41 89 08 mov %ecx,(%r8) + 66346354: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 66346358: 5b pop %rbx + 66346359: 5e pop %rsi + 6634635a: c3 retq + 6634635b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66346360: 44 8b 50 20 mov 0x20(%rax),%r10d + 66346364: 45 85 d2 test %r10d,%r10d + 66346367: 74 3b je 663463a4 + 66346369: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634636d: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66346371: 45 29 13 sub %r10d,(%r11) + 66346374: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 6634637b: 45 8b 13 mov (%r11),%r10d + 6634637e: 45 31 db xor %r11d,%r11d + 66346381: 45 85 d2 test %r10d,%r10d + 66346384: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66346388: 41 0f 9f c3 setg %r11b + 6634638c: 45 3b 1a cmp (%r10),%r11d + 6634638f: 74 13 je 663463a4 + 66346391: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346395: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66346399: 41 8b 32 mov (%r10),%esi + 6634639c: 85 f6 test %esi,%esi + 6634639e: 0f 84 5c 02 00 00 je 66346600 + 663463a4: 44 8b 50 24 mov 0x24(%rax),%r10d + 663463a8: 45 85 d2 test %r10d,%r10d + 663463ab: 74 3b je 663463e8 + 663463ad: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663463b1: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 663463b5: 45 29 13 sub %r10d,(%r11) + 663463b8: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 663463bf: 41 8b 1b mov (%r11),%ebx + 663463c2: 45 31 db xor %r11d,%r11d + 663463c5: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663463c9: 85 db test %ebx,%ebx + 663463cb: 41 0f 9f c3 setg %r11b + 663463cf: 45 3b 1a cmp (%r10),%r11d + 663463d2: 74 14 je 663463e8 + 663463d4: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663463d8: 4d 8b 52 48 mov 0x48(%r10),%r10 + 663463dc: 45 8b 1a mov (%r10),%r11d + 663463df: 45 85 db test %r11d,%r11d + 663463e2: 0f 84 e8 01 00 00 je 663465d0 + 663463e8: 44 8b 50 28 mov 0x28(%rax),%r10d + 663463ec: 45 85 d2 test %r10d,%r10d + 663463ef: 74 3b je 6634642c + 663463f1: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663463f5: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 663463f9: 45 29 13 sub %r10d,(%r11) + 663463fc: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66346403: 45 8b 13 mov (%r11),%r10d + 66346406: 45 31 db xor %r11d,%r11d + 66346409: 45 85 d2 test %r10d,%r10d + 6634640c: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66346410: 41 0f 9f c3 setg %r11b + 66346414: 45 3b 1a cmp (%r10),%r11d + 66346417: 74 13 je 6634642c + 66346419: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634641d: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66346421: 41 8b 32 mov (%r10),%esi + 66346424: 85 f6 test %esi,%esi + 66346426: 0f 84 74 01 00 00 je 663465a0 + 6634642c: 44 8b 50 2c mov 0x2c(%rax),%r10d + 66346430: 45 85 d2 test %r10d,%r10d + 66346433: 74 3b je 66346470 + 66346435: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346439: 4d 8b 5b 58 mov 0x58(%r11),%r11 + 6634643d: 45 29 13 sub %r10d,(%r11) + 66346440: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 66346447: 41 8b 1b mov (%r11),%ebx + 6634644a: 45 31 db xor %r11d,%r11d + 6634644d: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66346451: 85 db test %ebx,%ebx + 66346453: 41 0f 9f c3 setg %r11b + 66346457: 45 3b 1a cmp (%r10),%r11d + 6634645a: 74 14 je 66346470 + 6634645c: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346460: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66346464: 45 8b 1a mov (%r10),%r11d + 66346467: 45 85 db test %r11d,%r11d + 6634646a: 0f 84 00 01 00 00 je 66346570 + 66346470: 44 8b 50 30 mov 0x30(%rax),%r10d + 66346474: 45 85 d2 test %r10d,%r10d + 66346477: 74 3b je 663464b4 + 66346479: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634647d: 4d 8b 5b 60 mov 0x60(%r11),%r11 + 66346481: 45 29 13 sub %r10d,(%r11) + 66346484: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 6634648b: 45 8b 13 mov (%r11),%r10d + 6634648e: 45 31 db xor %r11d,%r11d + 66346491: 45 85 d2 test %r10d,%r10d + 66346494: 4c 8b 52 60 mov 0x60(%rdx),%r10 + 66346498: 41 0f 9f c3 setg %r11b + 6634649c: 45 3b 1a cmp (%r10),%r11d + 6634649f: 74 13 je 663464b4 + 663464a1: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663464a5: 4d 8b 52 60 mov 0x60(%r10),%r10 + 663464a9: 41 8b 32 mov (%r10),%esi + 663464ac: 85 f6 test %esi,%esi + 663464ae: 0f 84 8f 00 00 00 je 66346543 + 663464b4: 44 8b 50 34 mov 0x34(%rax),%r10d + 663464b8: 45 85 d2 test %r10d,%r10d + 663464bb: 74 37 je 663464f4 + 663464bd: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663464c1: 4d 8b 5b 68 mov 0x68(%r11),%r11 + 663464c5: 45 29 13 sub %r10d,(%r11) + 663464c8: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) + 663464cf: 41 8b 1b mov (%r11),%ebx + 663464d2: 45 31 db xor %r11d,%r11d + 663464d5: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 663464d9: 85 db test %ebx,%ebx + 663464db: 41 0f 9f c3 setg %r11b + 663464df: 45 3b 1a cmp (%r10),%r11d + 663464e2: 74 10 je 663464f4 + 663464e4: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663464e8: 4d 8b 52 68 mov 0x68(%r10),%r10 + 663464ec: 45 8b 1a mov (%r10),%r11d + 663464ef: 45 85 db test %r11d,%r11d + 663464f2: 74 2c je 66346520 + 663464f4: 44 8b 50 38 mov 0x38(%rax),%r10d + 663464f8: 45 85 d2 test %r10d,%r10d + 663464fb: 0f 84 57 fe ff ff je 66346358 + 66346501: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346505: 4d 8b 5b 70 mov 0x70(%r11),%r11 + 66346509: 45 29 13 sub %r10d,(%r11) + 6634650c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) + 66346513: 45 8b 13 mov (%r11),%r10d + 66346516: 45 85 d2 test %r10d,%r10d + 66346519: e9 fc fd ff ff jmpq 6634631a + 6634651e: 66 90 xchg %ax,%ax + 66346520: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346524: 4d 8b 5a 68 mov 0x68(%r10),%r11 + 66346528: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634652c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346533: 4d 63 10 movslq (%r8),%r10 + 66346536: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634653a: 41 89 18 mov %ebx,(%r8) + 6634653d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346541: eb b1 jmp 663464f4 + 66346543: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346547: 4d 8b 5a 60 mov 0x60(%r10),%r11 + 6634654b: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634654f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346556: 4d 63 10 movslq (%r8),%r10 + 66346559: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634655d: 41 89 18 mov %ebx,(%r8) + 66346560: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346564: e9 4b ff ff ff jmpq 663464b4 + 66346569: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66346570: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346574: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 66346578: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634657c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346583: 4d 63 10 movslq (%r8),%r10 + 66346586: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634658a: 41 89 18 mov %ebx,(%r8) + 6634658d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346591: e9 da fe ff ff jmpq 66346470 + 66346596: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634659d: 00 00 00 + 663465a0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663465a4: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 663465a8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663465ac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663465b3: 4d 63 10 movslq (%r8),%r10 + 663465b6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663465ba: 41 89 18 mov %ebx,(%r8) + 663465bd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663465c1: e9 66 fe ff ff jmpq 6634642c + 663465c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663465cd: 00 00 00 + 663465d0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663465d4: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 663465d8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663465dc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663465e3: 4d 63 10 movslq (%r8),%r10 + 663465e6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663465ea: 41 89 18 mov %ebx,(%r8) + 663465ed: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663465f1: e9 f2 fd ff ff jmpq 663463e8 + 663465f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663465fd: 00 00 00 + 66346600: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346604: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66346608: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634660c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346613: 4d 63 10 movslq (%r8),%r10 + 66346616: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634661a: 41 89 18 mov %ebx,(%r8) + 6634661d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346621: e9 7e fd ff ff jmpq 663463a4 + 66346626: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634662d: 00 00 00 + 66346630: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346634: 4d 8b 5a 68 mov 0x68(%r10),%r11 + 66346638: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634663c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346643: 4d 63 10 movslq (%r8),%r10 + 66346646: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634664a: 41 89 18 mov %ebx,(%r8) + 6634664d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346651: e9 9a fc ff ff jmpq 663462f0 + 66346656: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634665d: 00 00 00 + 66346660: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346664: 4d 8b 5a 60 mov 0x60(%r10),%r11 + 66346668: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634666c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346673: 4d 63 10 movslq (%r8),%r10 + 66346676: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634667a: 41 89 18 mov %ebx,(%r8) + 6634667d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346681: e9 1f fc ff ff jmpq 663462a5 + 66346686: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634668d: 00 00 00 + 66346690: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346694: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 66346698: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634669c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663466a3: 4d 63 10 movslq (%r8),%r10 + 663466a6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663466aa: 41 89 18 mov %ebx,(%r8) + 663466ad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663466b1: e9 a3 fb ff ff jmpq 66346259 + 663466b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663466bd: 00 00 00 + 663466c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663466c4: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 663466c8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663466cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663466d3: 4d 63 10 movslq (%r8),%r10 + 663466d6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663466da: 41 89 18 mov %ebx,(%r8) + 663466dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663466e1: e9 26 fb ff ff jmpq 6634620c + 663466e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663466ed: 00 00 00 + 663466f0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663466f4: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 663466f8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663466fc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346703: 4d 63 10 movslq (%r8),%r10 + 66346706: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634670a: 41 89 18 mov %ebx,(%r8) + 6634670d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346711: e9 aa fa ff ff jmpq 663461c0 + 66346716: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634671d: 00 00 00 + 66346720: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346724: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66346728: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634672c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346733: 4d 63 10 movslq (%r8),%r10 + 66346736: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634673a: 41 89 18 mov %ebx,(%r8) + 6634673d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346741: e9 2d fa ff ff jmpq 66346173 + 66346746: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634674d: 00 00 00 + +0000000066346750 : + 66346750: 56 push %rsi + 66346751: 53 push %rbx + 66346752: 4c 8b 0d c7 11 01 00 mov 0x111c7(%rip),%r9 # 66357920 + 66346759: 4c 8b 05 d0 11 01 00 mov 0x111d0(%rip),%r8 # 66357930 + 66346760: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66346764: 48 8b 41 08 mov 0x8(%rcx),%rax + 66346768: 4c 8b 52 78 mov 0x78(%rdx),%r10 + 6634676c: 41 8b 32 mov (%r10),%esi + 6634676f: 85 f6 test %esi,%esi + 66346771: 0f 84 39 02 00 00 je 663469b0 + 66346777: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 6634677b: 44 8b 58 20 mov 0x20(%rax),%r11d + 6634677f: 45 8b 12 mov (%r10),%r10d + 66346782: 45 39 d3 cmp %r10d,%r11d + 66346785: 74 3c je 663467c3 + 66346787: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634678b: 44 89 d6 mov %r10d,%esi + 6634678e: 44 29 de sub %r11d,%esi + 66346791: 45 31 db xor %r11d,%r11d + 66346794: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66346798: 01 33 add %esi,(%rbx) + 6634679a: 44 89 50 20 mov %r10d,0x20(%rax) + 6634679e: 8b 1b mov (%rbx),%ebx + 663467a0: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 663467a4: 85 db test %ebx,%ebx + 663467a6: 41 0f 9f c3 setg %r11b + 663467aa: 45 3b 1a cmp (%r10),%r11d + 663467ad: 74 14 je 663467c3 + 663467af: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663467b3: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663467b7: 45 8b 1a mov (%r10),%r11d + 663467ba: 45 85 db test %r11d,%r11d + 663467bd: 0f 84 ad 05 00 00 je 66346d70 + 663467c3: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 663467c7: 44 8b 58 24 mov 0x24(%rax),%r11d + 663467cb: 45 8b 12 mov (%r10),%r10d + 663467ce: 45 39 da cmp %r11d,%r10d + 663467d1: 74 3d je 66346810 + 663467d3: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663467d7: 44 89 d6 mov %r10d,%esi + 663467da: 44 29 de sub %r11d,%esi + 663467dd: 45 31 db xor %r11d,%r11d + 663467e0: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 663467e4: 01 33 add %esi,(%rbx) + 663467e6: 44 89 50 24 mov %r10d,0x24(%rax) + 663467ea: 44 8b 13 mov (%rbx),%r10d + 663467ed: 45 85 d2 test %r10d,%r10d + 663467f0: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663467f4: 41 0f 9f c3 setg %r11b + 663467f8: 45 3b 1a cmp (%r10),%r11d + 663467fb: 74 13 je 66346810 + 663467fd: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346801: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66346805: 41 8b 32 mov (%r10),%esi + 66346808: 85 f6 test %esi,%esi + 6634680a: 0f 84 30 05 00 00 je 66346d40 + 66346810: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 66346814: 44 8b 58 28 mov 0x28(%rax),%r11d + 66346818: 45 8b 12 mov (%r10),%r10d + 6634681b: 45 39 da cmp %r11d,%r10d + 6634681e: 74 3c je 6634685c + 66346820: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346824: 44 89 d6 mov %r10d,%esi + 66346827: 44 29 de sub %r11d,%esi + 6634682a: 45 31 db xor %r11d,%r11d + 6634682d: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66346831: 01 33 add %esi,(%rbx) + 66346833: 44 89 50 28 mov %r10d,0x28(%rax) + 66346837: 8b 1b mov (%rbx),%ebx + 66346839: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 6634683d: 85 db test %ebx,%ebx + 6634683f: 41 0f 9f c3 setg %r11b + 66346843: 45 3b 1a cmp (%r10),%r11d + 66346846: 74 14 je 6634685c + 66346848: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634684c: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66346850: 45 8b 1a mov (%r10),%r11d + 66346853: 45 85 db test %r11d,%r11d + 66346856: 0f 84 b4 04 00 00 je 66346d10 + 6634685c: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 66346860: 44 8b 58 2c mov 0x2c(%rax),%r11d + 66346864: 45 8b 12 mov (%r10),%r10d + 66346867: 45 39 da cmp %r11d,%r10d + 6634686a: 74 3d je 663468a9 + 6634686c: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346870: 44 89 d6 mov %r10d,%esi + 66346873: 44 29 de sub %r11d,%esi + 66346876: 45 31 db xor %r11d,%r11d + 66346879: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 6634687d: 01 33 add %esi,(%rbx) + 6634687f: 44 89 50 2c mov %r10d,0x2c(%rax) + 66346883: 44 8b 13 mov (%rbx),%r10d + 66346886: 45 85 d2 test %r10d,%r10d + 66346889: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 6634688d: 41 0f 9f c3 setg %r11b + 66346891: 45 3b 1a cmp (%r10),%r11d + 66346894: 74 13 je 663468a9 + 66346896: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634689a: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634689e: 41 8b 32 mov (%r10),%esi + 663468a1: 85 f6 test %esi,%esi + 663468a3: 0f 84 37 04 00 00 je 66346ce0 + 663468a9: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 663468ad: 44 8b 58 30 mov 0x30(%rax),%r11d + 663468b1: 45 8b 12 mov (%r10),%r10d + 663468b4: 45 39 da cmp %r11d,%r10d + 663468b7: 74 3c je 663468f5 + 663468b9: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663468bd: 44 89 d6 mov %r10d,%esi + 663468c0: 44 29 de sub %r11d,%esi + 663468c3: 45 31 db xor %r11d,%r11d + 663468c6: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 663468ca: 01 33 add %esi,(%rbx) + 663468cc: 44 89 50 30 mov %r10d,0x30(%rax) + 663468d0: 8b 1b mov (%rbx),%ebx + 663468d2: 4c 8b 52 60 mov 0x60(%rdx),%r10 + 663468d6: 85 db test %ebx,%ebx + 663468d8: 41 0f 9f c3 setg %r11b + 663468dc: 45 3b 1a cmp (%r10),%r11d + 663468df: 74 14 je 663468f5 + 663468e1: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663468e5: 4d 8b 52 60 mov 0x60(%r10),%r10 + 663468e9: 45 8b 12 mov (%r10),%r10d + 663468ec: 45 85 d2 test %r10d,%r10d + 663468ef: 0f 84 bb 03 00 00 je 66346cb0 + 663468f5: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 663468f9: 44 8b 58 34 mov 0x34(%rax),%r11d + 663468fd: 45 8b 12 mov (%r10),%r10d + 66346900: 45 39 da cmp %r11d,%r10d + 66346903: 74 3b je 66346940 + 66346905: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346909: 44 89 d6 mov %r10d,%esi + 6634690c: 44 29 de sub %r11d,%esi + 6634690f: 45 31 db xor %r11d,%r11d + 66346912: 48 8b 5b 68 mov 0x68(%rbx),%rbx + 66346916: 01 33 add %esi,(%rbx) + 66346918: 44 89 50 34 mov %r10d,0x34(%rax) + 6634691c: 8b 33 mov (%rbx),%esi + 6634691e: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 66346922: 85 f6 test %esi,%esi + 66346924: 41 0f 9f c3 setg %r11b + 66346928: 45 3b 1a cmp (%r10),%r11d + 6634692b: 74 13 je 66346940 + 6634692d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346931: 4d 8b 52 68 mov 0x68(%r10),%r10 + 66346935: 41 8b 1a mov (%r10),%ebx + 66346938: 85 db test %ebx,%ebx + 6634693a: 0f 84 40 03 00 00 je 66346c80 + 66346940: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66346944: 44 8b 58 38 mov 0x38(%rax),%r11d + 66346948: 45 8b 12 mov (%r10),%r10d + 6634694b: 45 39 da cmp %r11d,%r10d + 6634694e: 74 58 je 663469a8 + 66346950: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346954: 44 89 d6 mov %r10d,%esi + 66346957: 44 29 de sub %r11d,%esi + 6634695a: 48 8b 5b 70 mov 0x70(%rbx),%rbx + 6634695e: 01 33 add %esi,(%rbx) + 66346960: 44 89 50 38 mov %r10d,0x38(%rax) + 66346964: 44 8b 1b mov (%rbx),%r11d + 66346967: 45 85 db test %r11d,%r11d + 6634696a: 48 8b 42 70 mov 0x70(%rdx),%rax + 6634696e: 41 0f 9f c2 setg %r10b + 66346972: 45 0f b6 d2 movzbl %r10b,%r10d + 66346976: 44 3b 10 cmp (%rax),%r10d + 66346979: 74 2d je 663469a8 + 6634697b: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634697f: 48 8b 40 70 mov 0x70(%rax),%rax + 66346983: 8b 00 mov (%rax),%eax + 66346985: 85 c0 test %eax,%eax + 66346987: 75 1f jne 663469a8 + 66346989: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634698d: 48 8b 50 70 mov 0x70(%rax),%rdx + 66346991: 48 8b 42 10 mov 0x10(%rdx),%rax + 66346995: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634699b: 49 63 00 movslq (%r8),%rax + 6634699e: 8d 48 01 lea 0x1(%rax),%ecx + 663469a1: 41 89 08 mov %ecx,(%r8) + 663469a4: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 663469a8: 5b pop %rbx + 663469a9: 5e pop %rsi + 663469aa: c3 retq + 663469ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663469b0: 44 8b 50 20 mov 0x20(%rax),%r10d + 663469b4: 45 85 d2 test %r10d,%r10d + 663469b7: 74 3b je 663469f4 + 663469b9: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663469bd: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 663469c1: 45 29 13 sub %r10d,(%r11) + 663469c4: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 663469cb: 45 8b 13 mov (%r11),%r10d + 663469ce: 45 31 db xor %r11d,%r11d + 663469d1: 45 85 d2 test %r10d,%r10d + 663469d4: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 663469d8: 41 0f 9f c3 setg %r11b + 663469dc: 45 3b 1a cmp (%r10),%r11d + 663469df: 74 13 je 663469f4 + 663469e1: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663469e5: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663469e9: 41 8b 32 mov (%r10),%esi + 663469ec: 85 f6 test %esi,%esi + 663469ee: 0f 84 5c 02 00 00 je 66346c50 + 663469f4: 44 8b 50 24 mov 0x24(%rax),%r10d + 663469f8: 45 85 d2 test %r10d,%r10d + 663469fb: 74 3b je 66346a38 + 663469fd: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346a01: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 66346a05: 45 29 13 sub %r10d,(%r11) + 66346a08: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 66346a0f: 41 8b 1b mov (%r11),%ebx + 66346a12: 45 31 db xor %r11d,%r11d + 66346a15: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 66346a19: 85 db test %ebx,%ebx + 66346a1b: 41 0f 9f c3 setg %r11b + 66346a1f: 45 3b 1a cmp (%r10),%r11d + 66346a22: 74 14 je 66346a38 + 66346a24: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346a28: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66346a2c: 45 8b 1a mov (%r10),%r11d + 66346a2f: 45 85 db test %r11d,%r11d + 66346a32: 0f 84 e8 01 00 00 je 66346c20 + 66346a38: 44 8b 50 28 mov 0x28(%rax),%r10d + 66346a3c: 45 85 d2 test %r10d,%r10d + 66346a3f: 74 3b je 66346a7c + 66346a41: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346a45: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 66346a49: 45 29 13 sub %r10d,(%r11) + 66346a4c: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66346a53: 45 8b 13 mov (%r11),%r10d + 66346a56: 45 31 db xor %r11d,%r11d + 66346a59: 45 85 d2 test %r10d,%r10d + 66346a5c: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66346a60: 41 0f 9f c3 setg %r11b + 66346a64: 45 3b 1a cmp (%r10),%r11d + 66346a67: 74 13 je 66346a7c + 66346a69: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346a6d: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66346a71: 41 8b 32 mov (%r10),%esi + 66346a74: 85 f6 test %esi,%esi + 66346a76: 0f 84 74 01 00 00 je 66346bf0 + 66346a7c: 44 8b 50 2c mov 0x2c(%rax),%r10d + 66346a80: 45 85 d2 test %r10d,%r10d + 66346a83: 74 3b je 66346ac0 + 66346a85: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346a89: 4d 8b 5b 58 mov 0x58(%r11),%r11 + 66346a8d: 45 29 13 sub %r10d,(%r11) + 66346a90: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 66346a97: 41 8b 1b mov (%r11),%ebx + 66346a9a: 45 31 db xor %r11d,%r11d + 66346a9d: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66346aa1: 85 db test %ebx,%ebx + 66346aa3: 41 0f 9f c3 setg %r11b + 66346aa7: 45 3b 1a cmp (%r10),%r11d + 66346aaa: 74 14 je 66346ac0 + 66346aac: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346ab0: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66346ab4: 45 8b 1a mov (%r10),%r11d + 66346ab7: 45 85 db test %r11d,%r11d + 66346aba: 0f 84 00 01 00 00 je 66346bc0 + 66346ac0: 44 8b 50 30 mov 0x30(%rax),%r10d + 66346ac4: 45 85 d2 test %r10d,%r10d + 66346ac7: 74 3b je 66346b04 + 66346ac9: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346acd: 4d 8b 5b 60 mov 0x60(%r11),%r11 + 66346ad1: 45 29 13 sub %r10d,(%r11) + 66346ad4: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 66346adb: 45 8b 13 mov (%r11),%r10d + 66346ade: 45 31 db xor %r11d,%r11d + 66346ae1: 45 85 d2 test %r10d,%r10d + 66346ae4: 4c 8b 52 60 mov 0x60(%rdx),%r10 + 66346ae8: 41 0f 9f c3 setg %r11b + 66346aec: 45 3b 1a cmp (%r10),%r11d + 66346aef: 74 13 je 66346b04 + 66346af1: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346af5: 4d 8b 52 60 mov 0x60(%r10),%r10 + 66346af9: 41 8b 32 mov (%r10),%esi + 66346afc: 85 f6 test %esi,%esi + 66346afe: 0f 84 8f 00 00 00 je 66346b93 + 66346b04: 44 8b 50 34 mov 0x34(%rax),%r10d + 66346b08: 45 85 d2 test %r10d,%r10d + 66346b0b: 74 37 je 66346b44 + 66346b0d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346b11: 4d 8b 5b 68 mov 0x68(%r11),%r11 + 66346b15: 45 29 13 sub %r10d,(%r11) + 66346b18: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) + 66346b1f: 41 8b 1b mov (%r11),%ebx + 66346b22: 45 31 db xor %r11d,%r11d + 66346b25: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 66346b29: 85 db test %ebx,%ebx + 66346b2b: 41 0f 9f c3 setg %r11b + 66346b2f: 45 3b 1a cmp (%r10),%r11d + 66346b32: 74 10 je 66346b44 + 66346b34: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346b38: 4d 8b 52 68 mov 0x68(%r10),%r10 + 66346b3c: 45 8b 1a mov (%r10),%r11d + 66346b3f: 45 85 db test %r11d,%r11d + 66346b42: 74 2c je 66346b70 + 66346b44: 44 8b 50 38 mov 0x38(%rax),%r10d + 66346b48: 45 85 d2 test %r10d,%r10d + 66346b4b: 0f 84 57 fe ff ff je 663469a8 + 66346b51: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66346b55: 4d 8b 5b 70 mov 0x70(%r11),%r11 + 66346b59: 45 29 13 sub %r10d,(%r11) + 66346b5c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) + 66346b63: 45 8b 13 mov (%r11),%r10d + 66346b66: 45 85 d2 test %r10d,%r10d + 66346b69: e9 fc fd ff ff jmpq 6634696a + 66346b6e: 66 90 xchg %ax,%ax + 66346b70: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346b74: 4d 8b 5a 68 mov 0x68(%r10),%r11 + 66346b78: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346b7c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346b83: 4d 63 10 movslq (%r8),%r10 + 66346b86: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346b8a: 41 89 18 mov %ebx,(%r8) + 66346b8d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346b91: eb b1 jmp 66346b44 + 66346b93: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346b97: 4d 8b 5a 60 mov 0x60(%r10),%r11 + 66346b9b: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346b9f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346ba6: 4d 63 10 movslq (%r8),%r10 + 66346ba9: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346bad: 41 89 18 mov %ebx,(%r8) + 66346bb0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346bb4: e9 4b ff ff ff jmpq 66346b04 + 66346bb9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66346bc0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346bc4: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 66346bc8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346bcc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346bd3: 4d 63 10 movslq (%r8),%r10 + 66346bd6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346bda: 41 89 18 mov %ebx,(%r8) + 66346bdd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346be1: e9 da fe ff ff jmpq 66346ac0 + 66346be6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346bed: 00 00 00 + 66346bf0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346bf4: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 66346bf8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346bfc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346c03: 4d 63 10 movslq (%r8),%r10 + 66346c06: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346c0a: 41 89 18 mov %ebx,(%r8) + 66346c0d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346c11: e9 66 fe ff ff jmpq 66346a7c + 66346c16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346c1d: 00 00 00 + 66346c20: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346c24: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66346c28: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346c2c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346c33: 4d 63 10 movslq (%r8),%r10 + 66346c36: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346c3a: 41 89 18 mov %ebx,(%r8) + 66346c3d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346c41: e9 f2 fd ff ff jmpq 66346a38 + 66346c46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346c4d: 00 00 00 66346c50: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c54: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66346c54: 4d 8b 5a 40 mov 0x40(%r10),%r11 66346c58: 4d 8b 53 10 mov 0x10(%r11),%r10 66346c5c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) 66346c63: 4d 63 10 movslq (%r8),%r10 66346c66: 41 8d 5a 01 lea 0x1(%r10),%ebx 66346c6a: 41 89 18 mov %ebx,(%r8) 66346c6d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c71: e9 d6 fe ff ff jmpq 66346b4c + 66346c71: e9 7e fd ff ff jmpq 663469f4 66346c76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) 66346c7d: 00 00 00 66346c80: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c84: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66346c84: 4d 8b 5a 68 mov 0x68(%r10),%r11 66346c88: 4d 8b 53 10 mov 0x10(%r11),%r10 66346c8c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) 66346c93: 4d 63 10 movslq (%r8),%r10 66346c96: 41 8d 5a 01 lea 0x1(%r10),%ebx 66346c9a: 41 89 18 mov %ebx,(%r8) 66346c9d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346ca1: e9 62 fe ff ff jmpq 66346b08 + 66346ca1: e9 9a fc ff ff jmpq 66346940 66346ca6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) 66346cad: 00 00 00 66346cb0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346cb4: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66346cb4: 4d 8b 5a 60 mov 0x60(%r10),%r11 66346cb8: 4d 8b 53 10 mov 0x10(%r11),%r10 66346cbc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) 66346cc3: 4d 63 10 movslq (%r8),%r10 66346cc6: 41 8d 5a 01 lea 0x1(%r10),%ebx 66346cca: 41 89 18 mov %ebx,(%r8) 66346ccd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346cd1: e9 ee fd ff ff jmpq 66346ac4 + 66346cd1: e9 1f fc ff ff jmpq 663468f5 66346cd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) 66346cdd: 00 00 00 + 66346ce0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346ce4: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 66346ce8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346cec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346cf3: 4d 63 10 movslq (%r8),%r10 + 66346cf6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346cfa: 41 89 18 mov %ebx,(%r8) + 66346cfd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346d01: e9 a3 fb ff ff jmpq 663468a9 + 66346d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346d0d: 00 00 00 + 66346d10: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346d14: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 66346d18: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346d1c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346d23: 4d 63 10 movslq (%r8),%r10 + 66346d26: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346d2a: 41 89 18 mov %ebx,(%r8) + 66346d2d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346d31: e9 26 fb ff ff jmpq 6634685c + 66346d36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346d3d: 00 00 00 + 66346d40: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346d44: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66346d48: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346d4c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346d53: 4d 63 10 movslq (%r8),%r10 + 66346d56: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346d5a: 41 89 18 mov %ebx,(%r8) + 66346d5d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346d61: e9 aa fa ff ff jmpq 66346810 + 66346d66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346d6d: 00 00 00 + 66346d70: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346d74: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66346d78: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346d7c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346d83: 4d 63 10 movslq (%r8),%r10 + 66346d86: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346d8a: 41 89 18 mov %ebx,(%r8) + 66346d8d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346d91: e9 2d fa ff ff jmpq 663467c3 + 66346d96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346d9d: 00 00 00 -0000000066346ce0 : - 66346ce0: 56 push %rsi - 66346ce1: 53 push %rbx - 66346ce2: 4c 8b 0d 37 0c 01 00 mov 0x10c37(%rip),%r9 # 66357920 - 66346ce9: 4c 8b 05 40 0c 01 00 mov 0x10c40(%rip),%r8 # 66357930 - 66346cf0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66346cf4: 48 8b 41 08 mov 0x8(%rcx),%rax - 66346cf8: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66346cfc: 41 8b 32 mov (%r10),%esi - 66346cff: 85 f6 test %esi,%esi - 66346d01: 0f 84 9b 01 00 00 je 66346ea2 - 66346d07: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 66346d0b: 44 8b 58 18 mov 0x18(%rax),%r11d - 66346d0f: 45 8b 12 mov (%r10),%r10d - 66346d12: 45 39 d3 cmp %r10d,%r11d - 66346d15: 74 3c je 66346d53 - 66346d17: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346d1b: 44 89 d6 mov %r10d,%esi - 66346d1e: 44 29 de sub %r11d,%esi - 66346d21: 45 31 db xor %r11d,%r11d - 66346d24: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66346d28: 01 33 add %esi,(%rbx) - 66346d2a: 44 89 50 18 mov %r10d,0x18(%rax) - 66346d2e: 8b 1b mov (%rbx),%ebx - 66346d30: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66346d34: 85 db test %ebx,%ebx - 66346d36: 41 0f 9f c3 setg %r11b - 66346d3a: 45 3b 1a cmp (%r10),%r11d - 66346d3d: 74 14 je 66346d53 - 66346d3f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346d43: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66346d47: 45 8b 1a mov (%r10),%r11d - 66346d4a: 45 85 db test %r11d,%r11d - 66346d4d: 0f 84 cd 03 00 00 je 66347120 - 66346d53: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66346d57: 44 8b 58 1c mov 0x1c(%rax),%r11d - 66346d5b: 45 8b 12 mov (%r10),%r10d - 66346d5e: 45 39 da cmp %r11d,%r10d - 66346d61: 74 3d je 66346da0 - 66346d63: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346d67: 44 89 d6 mov %r10d,%esi - 66346d6a: 44 29 de sub %r11d,%esi - 66346d6d: 45 31 db xor %r11d,%r11d - 66346d70: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66346d74: 01 33 add %esi,(%rbx) - 66346d76: 44 89 50 1c mov %r10d,0x1c(%rax) - 66346d7a: 44 8b 13 mov (%rbx),%r10d - 66346d7d: 45 85 d2 test %r10d,%r10d - 66346d80: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346d84: 41 0f 9f c3 setg %r11b - 66346d88: 45 3b 1a cmp (%r10),%r11d - 66346d8b: 74 13 je 66346da0 - 66346d8d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346d91: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346d95: 41 8b 32 mov (%r10),%esi - 66346d98: 85 f6 test %esi,%esi - 66346d9a: 0f 84 50 03 00 00 je 663470f0 - 66346da0: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66346da4: 44 8b 58 20 mov 0x20(%rax),%r11d - 66346da8: 45 8b 12 mov (%r10),%r10d - 66346dab: 45 39 da cmp %r11d,%r10d - 66346dae: 74 3c je 66346dec - 66346db0: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346db4: 44 89 d6 mov %r10d,%esi - 66346db7: 44 29 de sub %r11d,%esi - 66346dba: 45 31 db xor %r11d,%r11d - 66346dbd: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346dc1: 01 33 add %esi,(%rbx) - 66346dc3: 44 89 50 20 mov %r10d,0x20(%rax) - 66346dc7: 8b 1b mov (%rbx),%ebx - 66346dc9: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346dcd: 85 db test %ebx,%ebx - 66346dcf: 41 0f 9f c3 setg %r11b - 66346dd3: 45 3b 1a cmp (%r10),%r11d - 66346dd6: 74 14 je 66346dec - 66346dd8: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346ddc: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346de0: 45 8b 12 mov (%r10),%r10d - 66346de3: 45 85 d2 test %r10d,%r10d - 66346de6: 0f 84 d4 02 00 00 je 663470c0 - 66346dec: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346df0: 44 8b 58 24 mov 0x24(%rax),%r11d - 66346df4: 45 8b 12 mov (%r10),%r10d - 66346df7: 45 39 da cmp %r11d,%r10d - 66346dfa: 74 3b je 66346e37 - 66346dfc: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346e00: 44 89 d6 mov %r10d,%esi - 66346e03: 44 29 de sub %r11d,%esi - 66346e06: 45 31 db xor %r11d,%r11d - 66346e09: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66346e0d: 01 33 add %esi,(%rbx) - 66346e0f: 44 89 50 24 mov %r10d,0x24(%rax) - 66346e13: 8b 33 mov (%rbx),%esi - 66346e15: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346e19: 85 f6 test %esi,%esi - 66346e1b: 41 0f 9f c3 setg %r11b - 66346e1f: 45 3b 1a cmp (%r10),%r11d - 66346e22: 74 13 je 66346e37 - 66346e24: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346e28: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346e2c: 41 8b 1a mov (%r10),%ebx - 66346e2f: 85 db test %ebx,%ebx - 66346e31: 0f 84 59 02 00 00 je 66347090 - 66346e37: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 66346e3b: 44 8b 58 28 mov 0x28(%rax),%r11d - 66346e3f: 45 8b 12 mov (%r10),%r10d - 66346e42: 45 39 da cmp %r11d,%r10d - 66346e45: 74 58 je 66346e9f - 66346e47: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346e4b: 44 89 d6 mov %r10d,%esi - 66346e4e: 44 29 de sub %r11d,%esi - 66346e51: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66346e55: 01 33 add %esi,(%rbx) - 66346e57: 44 89 50 28 mov %r10d,0x28(%rax) - 66346e5b: 44 8b 1b mov (%rbx),%r11d - 66346e5e: 45 85 db test %r11d,%r11d - 66346e61: 48 8b 42 50 mov 0x50(%rdx),%rax - 66346e65: 41 0f 9f c2 setg %r10b - 66346e69: 45 0f b6 d2 movzbl %r10b,%r10d - 66346e6d: 44 3b 10 cmp (%rax),%r10d - 66346e70: 74 2d je 66346e9f - 66346e72: 48 8b 41 20 mov 0x20(%rcx),%rax - 66346e76: 48 8b 40 50 mov 0x50(%rax),%rax - 66346e7a: 8b 00 mov (%rax),%eax - 66346e7c: 85 c0 test %eax,%eax - 66346e7e: 75 1f jne 66346e9f - 66346e80: 48 8b 41 28 mov 0x28(%rcx),%rax - 66346e84: 48 8b 50 50 mov 0x50(%rax),%rdx - 66346e88: 48 8b 42 10 mov 0x10(%rdx),%rax - 66346e8c: c7 00 01 00 00 00 movl $0x1,(%rax) - 66346e92: 49 63 00 movslq (%r8),%rax - 66346e95: 8d 48 01 lea 0x1(%rax),%ecx - 66346e98: 41 89 08 mov %ecx,(%r8) - 66346e9b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66346e9f: 5b pop %rbx - 66346ea0: 5e pop %rsi - 66346ea1: c3 retq - 66346ea2: 44 8b 50 18 mov 0x18(%rax),%r10d - 66346ea6: 45 85 d2 test %r10d,%r10d - 66346ea9: 74 3b je 66346ee6 - 66346eab: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346eaf: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66346eb3: 45 29 13 sub %r10d,(%r11) - 66346eb6: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66346ebd: 45 8b 13 mov (%r11),%r10d - 66346ec0: 45 31 db xor %r11d,%r11d - 66346ec3: 45 85 d2 test %r10d,%r10d - 66346ec6: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66346eca: 41 0f 9f c3 setg %r11b - 66346ece: 45 3b 1a cmp (%r10),%r11d - 66346ed1: 74 13 je 66346ee6 - 66346ed3: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346ed7: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66346edb: 41 8b 32 mov (%r10),%esi - 66346ede: 85 f6 test %esi,%esi - 66346ee0: 0f 84 7a 01 00 00 je 66347060 - 66346ee6: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66346eea: 45 85 d2 test %r10d,%r10d - 66346eed: 74 3b je 66346f2a - 66346eef: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346ef3: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66346ef7: 45 29 13 sub %r10d,(%r11) - 66346efa: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66346f01: 41 8b 1b mov (%r11),%ebx - 66346f04: 45 31 db xor %r11d,%r11d - 66346f07: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346f0b: 85 db test %ebx,%ebx - 66346f0d: 41 0f 9f c3 setg %r11b - 66346f11: 45 3b 1a cmp (%r10),%r11d - 66346f14: 74 14 je 66346f2a - 66346f16: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346f1a: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346f1e: 45 8b 1a mov (%r10),%r11d - 66346f21: 45 85 db test %r11d,%r11d - 66346f24: 0f 84 06 01 00 00 je 66347030 - 66346f2a: 44 8b 50 20 mov 0x20(%rax),%r10d - 66346f2e: 45 85 d2 test %r10d,%r10d - 66346f31: 74 3b je 66346f6e - 66346f33: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346f37: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66346f3b: 45 29 13 sub %r10d,(%r11) - 66346f3e: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66346f45: 45 8b 13 mov (%r11),%r10d - 66346f48: 45 31 db xor %r11d,%r11d - 66346f4b: 45 85 d2 test %r10d,%r10d - 66346f4e: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346f52: 41 0f 9f c3 setg %r11b - 66346f56: 45 3b 1a cmp (%r10),%r11d - 66346f59: 74 13 je 66346f6e - 66346f5b: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346f5f: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346f63: 41 8b 32 mov (%r10),%esi - 66346f66: 85 f6 test %esi,%esi - 66346f68: 0f 84 95 00 00 00 je 66347003 - 66346f6e: 44 8b 50 24 mov 0x24(%rax),%r10d - 66346f72: 45 85 d2 test %r10d,%r10d - 66346f75: 74 37 je 66346fae - 66346f77: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346f7b: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66346f7f: 45 29 13 sub %r10d,(%r11) - 66346f82: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66346f89: 41 8b 1b mov (%r11),%ebx - 66346f8c: 45 31 db xor %r11d,%r11d - 66346f8f: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346f93: 85 db test %ebx,%ebx - 66346f95: 41 0f 9f c3 setg %r11b - 66346f99: 45 3b 1a cmp (%r10),%r11d - 66346f9c: 74 10 je 66346fae - 66346f9e: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346fa2: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346fa6: 45 8b 1a mov (%r10),%r11d - 66346fa9: 45 85 db test %r11d,%r11d - 66346fac: 74 32 je 66346fe0 - 66346fae: 44 8b 50 28 mov 0x28(%rax),%r10d - 66346fb2: 45 85 d2 test %r10d,%r10d - 66346fb5: 0f 84 e4 fe ff ff je 66346e9f - 66346fbb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346fbf: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66346fc3: 45 29 13 sub %r10d,(%r11) - 66346fc6: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66346fcd: 45 8b 13 mov (%r11),%r10d - 66346fd0: 45 85 d2 test %r10d,%r10d - 66346fd3: e9 89 fe ff ff jmpq 66346e61 - 66346fd8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66346fdf: 00 - 66346fe0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346fe4: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346fe8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346fec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346ff3: 4d 63 10 movslq (%r8),%r10 - 66346ff6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346ffa: 41 89 18 mov %ebx,(%r8) - 66346ffd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347001: eb ab jmp 66346fae - 66347003: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347007: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 6634700b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634700f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347016: 4d 63 10 movslq (%r8),%r10 - 66347019: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634701d: 41 89 18 mov %ebx,(%r8) - 66347020: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347024: e9 45 ff ff ff jmpq 66346f6e - 66347029: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66347030: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347034: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347038: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634703c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347043: 4d 63 10 movslq (%r8),%r10 - 66347046: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634704a: 41 89 18 mov %ebx,(%r8) - 6634704d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347051: e9 d4 fe ff ff jmpq 66346f2a - 66347056: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634705d: 00 00 00 - 66347060: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347064: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347068: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634706c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347073: 4d 63 10 movslq (%r8),%r10 - 66347076: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634707a: 41 89 18 mov %ebx,(%r8) - 6634707d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347081: e9 60 fe ff ff jmpq 66346ee6 - 66347086: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634708d: 00 00 00 - 66347090: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347094: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347098: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634709c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663470a3: 4d 63 10 movslq (%r8),%r10 - 663470a6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663470aa: 41 89 18 mov %ebx,(%r8) - 663470ad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663470b1: e9 81 fd ff ff jmpq 66346e37 - 663470b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663470bd: 00 00 00 - 663470c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663470c4: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 663470c8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663470cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663470d3: 4d 63 10 movslq (%r8),%r10 - 663470d6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663470da: 41 89 18 mov %ebx,(%r8) - 663470dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663470e1: e9 06 fd ff ff jmpq 66346dec - 663470e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663470ed: 00 00 00 - 663470f0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663470f4: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 663470f8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663470fc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347103: 4d 63 10 movslq (%r8),%r10 - 66347106: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634710a: 41 89 18 mov %ebx,(%r8) - 6634710d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347111: e9 8a fc ff ff jmpq 66346da0 - 66347116: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634711d: 00 00 00 - 66347120: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347124: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347128: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634712c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347133: 4d 63 10 movslq (%r8),%r10 - 66347136: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634713a: 41 89 18 mov %ebx,(%r8) - 6634713d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347141: e9 0d fc ff ff jmpq 66346d53 - 66347146: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634714d: 00 00 00 +0000000066346da0 : + 66346da0: 56 push %rsi + 66346da1: 53 push %rbx + 66346da2: 4c 8b 0d 77 0b 01 00 mov 0x10b77(%rip),%r9 # 66357920 + 66346da9: 4c 8b 05 80 0b 01 00 mov 0x10b80(%rip),%r8 # 66357930 + 66346db0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66346db4: 48 8b 41 08 mov 0x8(%rcx),%rax + 66346db8: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 66346dbc: 41 8b 32 mov (%r10),%esi + 66346dbf: 85 f6 test %esi,%esi + 66346dc1: 0f 84 79 02 00 00 je 66347040 + 66346dc7: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 66346dcb: 44 8b 58 1c mov 0x1c(%rax),%r11d + 66346dcf: 45 8b 12 mov (%r10),%r10d + 66346dd2: 45 39 d3 cmp %r10d,%r11d + 66346dd5: 74 59 je 66346e30 + 66346dd7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346ddb: 44 89 d6 mov %r10d,%esi + 66346dde: 44 29 de sub %r11d,%esi + 66346de1: 45 31 db xor %r11d,%r11d + 66346de4: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66346de8: 01 33 add %esi,(%rbx) + 66346dea: 44 89 50 1c mov %r10d,0x1c(%rax) + 66346dee: 8b 1b mov (%rbx),%ebx + 66346df0: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66346df4: 85 db test %ebx,%ebx + 66346df6: 41 0f 9f c3 setg %r11b + 66346dfa: 45 3b 1a cmp (%r10),%r11d + 66346dfd: 74 31 je 66346e30 + 66346dff: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346e03: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66346e07: 45 8b 1a mov (%r10),%r11d + 66346e0a: 45 85 db test %r11d,%r11d + 66346e0d: 75 21 jne 66346e30 + 66346e0f: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346e13: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66346e17: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346e1b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346e22: 4d 63 10 movslq (%r8),%r10 + 66346e25: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346e29: 41 89 18 mov %ebx,(%r8) + 66346e2c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346e30: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 66346e34: 44 8b 58 20 mov 0x20(%rax),%r11d + 66346e38: 45 8b 12 mov (%r10),%r10d + 66346e3b: 45 39 da cmp %r11d,%r10d + 66346e3e: 74 5a je 66346e9a + 66346e40: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346e44: 44 89 d6 mov %r10d,%esi + 66346e47: 44 29 de sub %r11d,%esi + 66346e4a: 45 31 db xor %r11d,%r11d + 66346e4d: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66346e51: 01 33 add %esi,(%rbx) + 66346e53: 44 89 50 20 mov %r10d,0x20(%rax) + 66346e57: 44 8b 13 mov (%rbx),%r10d + 66346e5a: 45 85 d2 test %r10d,%r10d + 66346e5d: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66346e61: 41 0f 9f c3 setg %r11b + 66346e65: 45 3b 1a cmp (%r10),%r11d + 66346e68: 74 30 je 66346e9a + 66346e6a: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346e6e: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66346e72: 41 8b 32 mov (%r10),%esi + 66346e75: 85 f6 test %esi,%esi + 66346e77: 75 21 jne 66346e9a + 66346e79: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346e7d: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66346e81: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346e85: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346e8c: 4d 63 10 movslq (%r8),%r10 + 66346e8f: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346e93: 41 89 18 mov %ebx,(%r8) + 66346e96: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346e9a: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 66346e9e: 44 8b 58 24 mov 0x24(%rax),%r11d + 66346ea2: 45 8b 12 mov (%r10),%r10d + 66346ea5: 45 39 da cmp %r11d,%r10d + 66346ea8: 74 59 je 66346f03 + 66346eaa: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346eae: 44 89 d6 mov %r10d,%esi + 66346eb1: 44 29 de sub %r11d,%esi + 66346eb4: 45 31 db xor %r11d,%r11d + 66346eb7: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 66346ebb: 01 33 add %esi,(%rbx) + 66346ebd: 44 89 50 24 mov %r10d,0x24(%rax) + 66346ec1: 8b 1b mov (%rbx),%ebx + 66346ec3: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 66346ec7: 85 db test %ebx,%ebx + 66346ec9: 41 0f 9f c3 setg %r11b + 66346ecd: 45 3b 1a cmp (%r10),%r11d + 66346ed0: 74 31 je 66346f03 + 66346ed2: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346ed6: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66346eda: 45 8b 1a mov (%r10),%r11d + 66346edd: 45 85 db test %r11d,%r11d + 66346ee0: 75 21 jne 66346f03 + 66346ee2: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346ee6: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66346eea: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346eee: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346ef5: 4d 63 10 movslq (%r8),%r10 + 66346ef8: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346efc: 41 89 18 mov %ebx,(%r8) + 66346eff: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346f03: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 66346f07: 44 8b 58 28 mov 0x28(%rax),%r11d + 66346f0b: 45 8b 12 mov (%r10),%r10d + 66346f0e: 45 39 da cmp %r11d,%r10d + 66346f11: 74 5a je 66346f6d + 66346f13: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346f17: 44 89 d6 mov %r10d,%esi + 66346f1a: 44 29 de sub %r11d,%esi + 66346f1d: 45 31 db xor %r11d,%r11d + 66346f20: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66346f24: 01 33 add %esi,(%rbx) + 66346f26: 44 89 50 28 mov %r10d,0x28(%rax) + 66346f2a: 44 8b 13 mov (%rbx),%r10d + 66346f2d: 45 85 d2 test %r10d,%r10d + 66346f30: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66346f34: 41 0f 9f c3 setg %r11b + 66346f38: 45 3b 1a cmp (%r10),%r11d + 66346f3b: 74 30 je 66346f6d + 66346f3d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346f41: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66346f45: 41 8b 32 mov (%r10),%esi + 66346f48: 85 f6 test %esi,%esi + 66346f4a: 75 21 jne 66346f6d + 66346f4c: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346f50: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 66346f54: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346f58: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346f5f: 4d 63 10 movslq (%r8),%r10 + 66346f62: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346f66: 41 89 18 mov %ebx,(%r8) + 66346f69: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346f6d: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 66346f71: 44 8b 58 2c mov 0x2c(%rax),%r11d + 66346f75: 45 8b 12 mov (%r10),%r10d + 66346f78: 45 39 da cmp %r11d,%r10d + 66346f7b: 74 59 je 66346fd6 + 66346f7d: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346f81: 44 89 d6 mov %r10d,%esi + 66346f84: 44 29 de sub %r11d,%esi + 66346f87: 45 31 db xor %r11d,%r11d + 66346f8a: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 66346f8e: 01 33 add %esi,(%rbx) + 66346f90: 44 89 50 2c mov %r10d,0x2c(%rax) + 66346f94: 8b 1b mov (%rbx),%ebx + 66346f96: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66346f9a: 85 db test %ebx,%ebx + 66346f9c: 41 0f 9f c3 setg %r11b + 66346fa0: 45 3b 1a cmp (%r10),%r11d + 66346fa3: 74 31 je 66346fd6 + 66346fa5: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66346fa9: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66346fad: 45 8b 12 mov (%r10),%r10d + 66346fb0: 45 85 d2 test %r10d,%r10d + 66346fb3: 75 21 jne 66346fd6 + 66346fb5: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66346fb9: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 66346fbd: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66346fc1: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66346fc8: 4d 63 10 movslq (%r8),%r10 + 66346fcb: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66346fcf: 41 89 18 mov %ebx,(%r8) + 66346fd2: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66346fd6: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 66346fda: 44 8b 58 30 mov 0x30(%rax),%r11d + 66346fde: 45 8b 12 mov (%r10),%r10d + 66346fe1: 45 39 da cmp %r11d,%r10d + 66346fe4: 74 56 je 6634703c + 66346fe6: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66346fea: 44 89 d6 mov %r10d,%esi + 66346fed: 44 29 de sub %r11d,%esi + 66346ff0: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 66346ff4: 01 33 add %esi,(%rbx) + 66346ff6: 44 89 50 30 mov %r10d,0x30(%rax) + 66346ffa: 8b 33 mov (%rbx),%esi + 66346ffc: 85 f6 test %esi,%esi + 66346ffe: 48 8b 42 60 mov 0x60(%rdx),%rax + 66347002: 41 0f 9f c2 setg %r10b + 66347006: 45 0f b6 d2 movzbl %r10b,%r10d + 6634700a: 44 3b 10 cmp (%rax),%r10d + 6634700d: 74 2d je 6634703c + 6634700f: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347013: 48 8b 40 60 mov 0x60(%rax),%rax + 66347017: 8b 00 mov (%rax),%eax + 66347019: 85 c0 test %eax,%eax + 6634701b: 75 1f jne 6634703c + 6634701d: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347021: 48 8b 50 60 mov 0x60(%rax),%rdx + 66347025: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347029: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634702f: 49 63 00 movslq (%r8),%rax + 66347032: 8d 48 01 lea 0x1(%rax),%ecx + 66347035: 41 89 08 mov %ecx,(%r8) + 66347038: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 6634703c: 5b pop %rbx + 6634703d: 5e pop %rsi + 6634703e: c3 retq + 6634703f: 90 nop + 66347040: 44 8b 50 1c mov 0x1c(%rax),%r10d + 66347044: 45 85 d2 test %r10d,%r10d + 66347047: 74 3b je 66347084 + 66347049: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634704d: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66347051: 45 29 13 sub %r10d,(%r11) + 66347054: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 6634705b: 41 8b 1b mov (%r11),%ebx + 6634705e: 45 31 db xor %r11d,%r11d + 66347061: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66347065: 85 db test %ebx,%ebx + 66347067: 41 0f 9f c3 setg %r11b + 6634706b: 45 3b 1a cmp (%r10),%r11d + 6634706e: 74 14 je 66347084 + 66347070: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347074: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347078: 45 8b 1a mov (%r10),%r11d + 6634707b: 45 85 db test %r11d,%r11d + 6634707e: 0f 84 ec 01 00 00 je 66347270 + 66347084: 44 8b 50 20 mov 0x20(%rax),%r10d + 66347088: 45 85 d2 test %r10d,%r10d + 6634708b: 74 3b je 663470c8 + 6634708d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347091: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66347095: 45 29 13 sub %r10d,(%r11) + 66347098: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 6634709f: 45 8b 13 mov (%r11),%r10d + 663470a2: 45 31 db xor %r11d,%r11d + 663470a5: 45 85 d2 test %r10d,%r10d + 663470a8: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 663470ac: 41 0f 9f c3 setg %r11b + 663470b0: 45 3b 1a cmp (%r10),%r11d + 663470b3: 74 13 je 663470c8 + 663470b5: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663470b9: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663470bd: 41 8b 32 mov (%r10),%esi + 663470c0: 85 f6 test %esi,%esi + 663470c2: 0f 84 78 01 00 00 je 66347240 + 663470c8: 44 8b 50 24 mov 0x24(%rax),%r10d + 663470cc: 45 85 d2 test %r10d,%r10d + 663470cf: 74 3b je 6634710c + 663470d1: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663470d5: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 663470d9: 45 29 13 sub %r10d,(%r11) + 663470dc: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 663470e3: 41 8b 1b mov (%r11),%ebx + 663470e6: 45 31 db xor %r11d,%r11d + 663470e9: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663470ed: 85 db test %ebx,%ebx + 663470ef: 41 0f 9f c3 setg %r11b + 663470f3: 45 3b 1a cmp (%r10),%r11d + 663470f6: 74 14 je 6634710c + 663470f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663470fc: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347100: 45 8b 1a mov (%r10),%r11d + 66347103: 45 85 db test %r11d,%r11d + 66347106: 0f 84 04 01 00 00 je 66347210 + 6634710c: 44 8b 50 28 mov 0x28(%rax),%r10d + 66347110: 45 85 d2 test %r10d,%r10d + 66347113: 74 3b je 66347150 + 66347115: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347119: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 6634711d: 45 29 13 sub %r10d,(%r11) + 66347120: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66347127: 45 8b 13 mov (%r11),%r10d + 6634712a: 45 31 db xor %r11d,%r11d + 6634712d: 45 85 d2 test %r10d,%r10d + 66347130: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66347134: 41 0f 9f c3 setg %r11b + 66347138: 45 3b 1a cmp (%r10),%r11d + 6634713b: 74 13 je 66347150 + 6634713d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347141: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66347145: 41 8b 32 mov (%r10),%esi + 66347148: 85 f6 test %esi,%esi + 6634714a: 0f 84 93 00 00 00 je 663471e3 + 66347150: 44 8b 50 2c mov 0x2c(%rax),%r10d + 66347154: 45 85 d2 test %r10d,%r10d + 66347157: 74 37 je 66347190 + 66347159: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634715d: 4d 8b 5b 58 mov 0x58(%r11),%r11 + 66347161: 45 29 13 sub %r10d,(%r11) + 66347164: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 6634716b: 41 8b 1b mov (%r11),%ebx + 6634716e: 45 31 db xor %r11d,%r11d + 66347171: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66347175: 85 db test %ebx,%ebx + 66347177: 41 0f 9f c3 setg %r11b + 6634717b: 45 3b 1a cmp (%r10),%r11d + 6634717e: 74 10 je 66347190 + 66347180: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347184: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66347188: 45 8b 1a mov (%r10),%r11d + 6634718b: 45 85 db test %r11d,%r11d + 6634718e: 74 30 je 663471c0 + 66347190: 44 8b 50 30 mov 0x30(%rax),%r10d + 66347194: 45 85 d2 test %r10d,%r10d + 66347197: 0f 84 9f fe ff ff je 6634703c + 6634719d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663471a1: 4d 8b 5b 60 mov 0x60(%r11),%r11 + 663471a5: 45 29 13 sub %r10d,(%r11) + 663471a8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 663471af: 45 8b 13 mov (%r11),%r10d + 663471b2: 45 85 d2 test %r10d,%r10d + 663471b5: e9 44 fe ff ff jmpq 66346ffe + 663471ba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663471c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663471c4: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 663471c8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663471cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663471d3: 4d 63 10 movslq (%r8),%r10 + 663471d6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663471da: 41 89 18 mov %ebx,(%r8) + 663471dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663471e1: eb ad jmp 66347190 + 663471e3: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663471e7: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 663471eb: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663471ef: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663471f6: 4d 63 10 movslq (%r8),%r10 + 663471f9: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663471fd: 41 89 18 mov %ebx,(%r8) + 66347200: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347204: e9 47 ff ff ff jmpq 66347150 + 66347209: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66347210: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347214: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347218: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634721c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347223: 4d 63 10 movslq (%r8),%r10 + 66347226: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634722a: 41 89 18 mov %ebx,(%r8) + 6634722d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347231: e9 d6 fe ff ff jmpq 6634710c + 66347236: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634723d: 00 00 00 + 66347240: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347244: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347248: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634724c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347253: 4d 63 10 movslq (%r8),%r10 + 66347256: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634725a: 41 89 18 mov %ebx,(%r8) + 6634725d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347261: e9 62 fe ff ff jmpq 663470c8 + 66347266: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634726d: 00 00 00 + 66347270: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347274: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347278: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634727c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347283: 4d 63 10 movslq (%r8),%r10 + 66347286: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634728a: 41 89 18 mov %ebx,(%r8) + 6634728d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347291: e9 ee fd ff ff jmpq 66347084 + 66347296: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634729d: 00 00 00 -0000000066347150 : - 66347150: 56 push %rsi - 66347151: 53 push %rbx - 66347152: 4c 8b 0d c7 07 01 00 mov 0x107c7(%rip),%r9 # 66357920 - 66347159: 4c 8b 05 d0 07 01 00 mov 0x107d0(%rip),%r8 # 66357930 - 66347160: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66347164: 48 8b 41 08 mov 0x8(%rcx),%rax - 66347168: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 6634716c: 41 8b 32 mov (%r10),%esi - 6634716f: 85 f6 test %esi,%esi - 66347171: 0f 84 9b 01 00 00 je 66347312 - 66347177: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634717b: 44 8b 58 18 mov 0x18(%rax),%r11d - 6634717f: 45 8b 12 mov (%r10),%r10d - 66347182: 45 39 d3 cmp %r10d,%r11d - 66347185: 74 3c je 663471c3 - 66347187: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634718b: 44 89 d6 mov %r10d,%esi - 6634718e: 44 29 de sub %r11d,%esi - 66347191: 45 31 db xor %r11d,%r11d - 66347194: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66347198: 01 33 add %esi,(%rbx) - 6634719a: 44 89 50 18 mov %r10d,0x18(%rax) - 6634719e: 8b 1b mov (%rbx),%ebx - 663471a0: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663471a4: 85 db test %ebx,%ebx - 663471a6: 41 0f 9f c3 setg %r11b - 663471aa: 45 3b 1a cmp (%r10),%r11d - 663471ad: 74 14 je 663471c3 - 663471af: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663471b3: 4d 8b 52 30 mov 0x30(%r10),%r10 - 663471b7: 45 8b 1a mov (%r10),%r11d - 663471ba: 45 85 db test %r11d,%r11d - 663471bd: 0f 84 cd 03 00 00 je 66347590 - 663471c3: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 663471c7: 44 8b 58 1c mov 0x1c(%rax),%r11d - 663471cb: 45 8b 12 mov (%r10),%r10d - 663471ce: 45 39 da cmp %r11d,%r10d - 663471d1: 74 3d je 66347210 - 663471d3: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663471d7: 44 89 d6 mov %r10d,%esi - 663471da: 44 29 de sub %r11d,%esi - 663471dd: 45 31 db xor %r11d,%r11d - 663471e0: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 663471e4: 01 33 add %esi,(%rbx) - 663471e6: 44 89 50 1c mov %r10d,0x1c(%rax) - 663471ea: 44 8b 13 mov (%rbx),%r10d - 663471ed: 45 85 d2 test %r10d,%r10d - 663471f0: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 663471f4: 41 0f 9f c3 setg %r11b - 663471f8: 45 3b 1a cmp (%r10),%r11d - 663471fb: 74 13 je 66347210 - 663471fd: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347201: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347205: 41 8b 32 mov (%r10),%esi - 66347208: 85 f6 test %esi,%esi - 6634720a: 0f 84 50 03 00 00 je 66347560 - 66347210: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66347214: 44 8b 58 20 mov 0x20(%rax),%r11d - 66347218: 45 8b 12 mov (%r10),%r10d - 6634721b: 45 39 da cmp %r11d,%r10d - 6634721e: 74 3c je 6634725c - 66347220: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347224: 44 89 d6 mov %r10d,%esi - 66347227: 44 29 de sub %r11d,%esi - 6634722a: 45 31 db xor %r11d,%r11d - 6634722d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347231: 01 33 add %esi,(%rbx) - 66347233: 44 89 50 20 mov %r10d,0x20(%rax) - 66347237: 8b 1b mov (%rbx),%ebx - 66347239: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 6634723d: 85 db test %ebx,%ebx - 6634723f: 41 0f 9f c3 setg %r11b - 66347243: 45 3b 1a cmp (%r10),%r11d - 66347246: 74 14 je 6634725c - 66347248: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634724c: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66347250: 45 8b 12 mov (%r10),%r10d - 66347253: 45 85 d2 test %r10d,%r10d - 66347256: 0f 84 d4 02 00 00 je 66347530 - 6634725c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66347260: 44 8b 58 24 mov 0x24(%rax),%r11d - 66347264: 45 8b 12 mov (%r10),%r10d - 66347267: 45 39 da cmp %r11d,%r10d - 6634726a: 74 3b je 663472a7 - 6634726c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347270: 44 89 d6 mov %r10d,%esi - 66347273: 44 29 de sub %r11d,%esi - 66347276: 45 31 db xor %r11d,%r11d - 66347279: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 6634727d: 01 33 add %esi,(%rbx) - 6634727f: 44 89 50 24 mov %r10d,0x24(%rax) - 66347283: 8b 33 mov (%rbx),%esi - 66347285: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66347289: 85 f6 test %esi,%esi - 6634728b: 41 0f 9f c3 setg %r11b - 6634728f: 45 3b 1a cmp (%r10),%r11d - 66347292: 74 13 je 663472a7 - 66347294: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347298: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634729c: 41 8b 1a mov (%r10),%ebx - 6634729f: 85 db test %ebx,%ebx - 663472a1: 0f 84 59 02 00 00 je 66347500 - 663472a7: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 663472ab: 44 8b 58 28 mov 0x28(%rax),%r11d - 663472af: 45 8b 12 mov (%r10),%r10d - 663472b2: 45 39 da cmp %r11d,%r10d - 663472b5: 74 58 je 6634730f - 663472b7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663472bb: 44 89 d6 mov %r10d,%esi - 663472be: 44 29 de sub %r11d,%esi - 663472c1: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 663472c5: 01 33 add %esi,(%rbx) - 663472c7: 44 89 50 28 mov %r10d,0x28(%rax) - 663472cb: 44 8b 1b mov (%rbx),%r11d - 663472ce: 45 85 db test %r11d,%r11d - 663472d1: 48 8b 42 50 mov 0x50(%rdx),%rax - 663472d5: 41 0f 9f c2 setg %r10b - 663472d9: 45 0f b6 d2 movzbl %r10b,%r10d - 663472dd: 44 3b 10 cmp (%rax),%r10d - 663472e0: 74 2d je 6634730f - 663472e2: 48 8b 41 20 mov 0x20(%rcx),%rax - 663472e6: 48 8b 40 50 mov 0x50(%rax),%rax - 663472ea: 8b 00 mov (%rax),%eax - 663472ec: 85 c0 test %eax,%eax - 663472ee: 75 1f jne 6634730f - 663472f0: 48 8b 41 28 mov 0x28(%rcx),%rax - 663472f4: 48 8b 50 50 mov 0x50(%rax),%rdx - 663472f8: 48 8b 42 10 mov 0x10(%rdx),%rax - 663472fc: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347302: 49 63 00 movslq (%r8),%rax - 66347305: 8d 48 01 lea 0x1(%rax),%ecx - 66347308: 41 89 08 mov %ecx,(%r8) - 6634730b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634730f: 5b pop %rbx - 66347310: 5e pop %rsi - 66347311: c3 retq - 66347312: 44 8b 50 18 mov 0x18(%rax),%r10d - 66347316: 45 85 d2 test %r10d,%r10d - 66347319: 74 3b je 66347356 - 6634731b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634731f: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66347323: 45 29 13 sub %r10d,(%r11) - 66347326: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 6634732d: 45 8b 13 mov (%r11),%r10d - 66347330: 45 31 db xor %r11d,%r11d - 66347333: 45 85 d2 test %r10d,%r10d - 66347336: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 6634733a: 41 0f 9f c3 setg %r11b - 6634733e: 45 3b 1a cmp (%r10),%r11d - 66347341: 74 13 je 66347356 - 66347343: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347347: 4d 8b 52 30 mov 0x30(%r10),%r10 - 6634734b: 41 8b 32 mov (%r10),%esi - 6634734e: 85 f6 test %esi,%esi - 66347350: 0f 84 7a 01 00 00 je 663474d0 - 66347356: 44 8b 50 1c mov 0x1c(%rax),%r10d +00000000663472a0 : + 663472a0: 56 push %rsi + 663472a1: 53 push %rbx + 663472a2: 4c 8b 0d 77 06 01 00 mov 0x10677(%rip),%r9 # 66357920 + 663472a9: 4c 8b 05 80 06 01 00 mov 0x10680(%rip),%r8 # 66357930 + 663472b0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663472b4: 48 8b 41 08 mov 0x8(%rcx),%rax + 663472b8: 4c 8b 52 68 mov 0x68(%rdx),%r10 + 663472bc: 41 8b 32 mov (%r10),%esi + 663472bf: 85 f6 test %esi,%esi + 663472c1: 0f 84 79 02 00 00 je 66347540 + 663472c7: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 663472cb: 44 8b 58 1c mov 0x1c(%rax),%r11d + 663472cf: 45 8b 12 mov (%r10),%r10d + 663472d2: 45 39 d3 cmp %r10d,%r11d + 663472d5: 74 59 je 66347330 + 663472d7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663472db: 44 89 d6 mov %r10d,%esi + 663472de: 44 29 de sub %r11d,%esi + 663472e1: 45 31 db xor %r11d,%r11d + 663472e4: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 663472e8: 01 33 add %esi,(%rbx) + 663472ea: 44 89 50 1c mov %r10d,0x1c(%rax) + 663472ee: 8b 1b mov (%rbx),%ebx + 663472f0: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 663472f4: 85 db test %ebx,%ebx + 663472f6: 41 0f 9f c3 setg %r11b + 663472fa: 45 3b 1a cmp (%r10),%r11d + 663472fd: 74 31 je 66347330 + 663472ff: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347303: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347307: 45 8b 1a mov (%r10),%r11d + 6634730a: 45 85 db test %r11d,%r11d + 6634730d: 75 21 jne 66347330 + 6634730f: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347313: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347317: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634731b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347322: 4d 63 10 movslq (%r8),%r10 + 66347325: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347329: 41 89 18 mov %ebx,(%r8) + 6634732c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347330: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 66347334: 44 8b 58 20 mov 0x20(%rax),%r11d + 66347338: 45 8b 12 mov (%r10),%r10d + 6634733b: 45 39 da cmp %r11d,%r10d + 6634733e: 74 5a je 6634739a + 66347340: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347344: 44 89 d6 mov %r10d,%esi + 66347347: 44 29 de sub %r11d,%esi + 6634734a: 45 31 db xor %r11d,%r11d + 6634734d: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66347351: 01 33 add %esi,(%rbx) + 66347353: 44 89 50 20 mov %r10d,0x20(%rax) + 66347357: 44 8b 13 mov (%rbx),%r10d 6634735a: 45 85 d2 test %r10d,%r10d - 6634735d: 74 3b je 6634739a - 6634735f: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347363: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347367: 45 29 13 sub %r10d,(%r11) - 6634736a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66347371: 41 8b 1b mov (%r11),%ebx - 66347374: 45 31 db xor %r11d,%r11d - 66347377: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 6634737b: 85 db test %ebx,%ebx - 6634737d: 41 0f 9f c3 setg %r11b - 66347381: 45 3b 1a cmp (%r10),%r11d - 66347384: 74 14 je 6634739a - 66347386: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634738a: 4d 8b 52 38 mov 0x38(%r10),%r10 - 6634738e: 45 8b 1a mov (%r10),%r11d - 66347391: 45 85 db test %r11d,%r11d - 66347394: 0f 84 06 01 00 00 je 663474a0 - 6634739a: 44 8b 50 20 mov 0x20(%rax),%r10d - 6634739e: 45 85 d2 test %r10d,%r10d - 663473a1: 74 3b je 663473de - 663473a3: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663473a7: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 663473ab: 45 29 13 sub %r10d,(%r11) - 663473ae: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 663473b5: 45 8b 13 mov (%r11),%r10d - 663473b8: 45 31 db xor %r11d,%r11d - 663473bb: 45 85 d2 test %r10d,%r10d - 663473be: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663473c2: 41 0f 9f c3 setg %r11b - 663473c6: 45 3b 1a cmp (%r10),%r11d - 663473c9: 74 13 je 663473de - 663473cb: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663473cf: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663473d3: 41 8b 32 mov (%r10),%esi - 663473d6: 85 f6 test %esi,%esi - 663473d8: 0f 84 95 00 00 00 je 66347473 - 663473de: 44 8b 50 24 mov 0x24(%rax),%r10d - 663473e2: 45 85 d2 test %r10d,%r10d - 663473e5: 74 37 je 6634741e - 663473e7: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663473eb: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 663473ef: 45 29 13 sub %r10d,(%r11) - 663473f2: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 663473f9: 41 8b 1b mov (%r11),%ebx - 663473fc: 45 31 db xor %r11d,%r11d - 663473ff: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66347403: 85 db test %ebx,%ebx - 66347405: 41 0f 9f c3 setg %r11b - 66347409: 45 3b 1a cmp (%r10),%r11d - 6634740c: 74 10 je 6634741e - 6634740e: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347412: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347416: 45 8b 1a mov (%r10),%r11d - 66347419: 45 85 db test %r11d,%r11d - 6634741c: 74 32 je 66347450 - 6634741e: 44 8b 50 28 mov 0x28(%rax),%r10d - 66347422: 45 85 d2 test %r10d,%r10d - 66347425: 0f 84 e4 fe ff ff je 6634730f - 6634742b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634742f: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66347433: 45 29 13 sub %r10d,(%r11) - 66347436: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 6634743d: 45 8b 13 mov (%r11),%r10d - 66347440: 45 85 d2 test %r10d,%r10d - 66347443: e9 89 fe ff ff jmpq 663472d1 - 66347448: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634744f: 00 - 66347450: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347454: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347458: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634745c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347463: 4d 63 10 movslq (%r8),%r10 - 66347466: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634746a: 41 89 18 mov %ebx,(%r8) - 6634746d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347471: eb ab jmp 6634741e - 66347473: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347477: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 6634747b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634747f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347486: 4d 63 10 movslq (%r8),%r10 - 66347489: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634748d: 41 89 18 mov %ebx,(%r8) - 66347490: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347494: e9 45 ff ff ff jmpq 663473de - 66347499: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663474a0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663474a4: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 663474a8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663474ac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663474b3: 4d 63 10 movslq (%r8),%r10 - 663474b6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663474ba: 41 89 18 mov %ebx,(%r8) - 663474bd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663474c1: e9 d4 fe ff ff jmpq 6634739a - 663474c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663474cd: 00 00 00 - 663474d0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663474d4: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 663474d8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663474dc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663474e3: 4d 63 10 movslq (%r8),%r10 - 663474e6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663474ea: 41 89 18 mov %ebx,(%r8) - 663474ed: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663474f1: e9 60 fe ff ff jmpq 66347356 - 663474f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663474fd: 00 00 00 - 66347500: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347504: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347508: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634750c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347513: 4d 63 10 movslq (%r8),%r10 - 66347516: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634751a: 41 89 18 mov %ebx,(%r8) - 6634751d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347521: e9 81 fd ff ff jmpq 663472a7 - 66347526: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634752d: 00 00 00 - 66347530: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347534: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347538: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634753c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347543: 4d 63 10 movslq (%r8),%r10 - 66347546: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634754a: 41 89 18 mov %ebx,(%r8) - 6634754d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347551: e9 06 fd ff ff jmpq 6634725c - 66347556: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634755d: 00 00 00 - 66347560: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347564: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347568: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634756c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347573: 4d 63 10 movslq (%r8),%r10 - 66347576: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634757a: 41 89 18 mov %ebx,(%r8) - 6634757d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347581: e9 8a fc ff ff jmpq 66347210 - 66347586: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634758d: 00 00 00 - 66347590: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347594: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347598: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634759c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663475a3: 4d 63 10 movslq (%r8),%r10 - 663475a6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663475aa: 41 89 18 mov %ebx,(%r8) - 663475ad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663475b1: e9 0d fc ff ff jmpq 663471c3 - 663475b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663475bd: 00 00 00 + 6634735d: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66347361: 41 0f 9f c3 setg %r11b + 66347365: 45 3b 1a cmp (%r10),%r11d + 66347368: 74 30 je 6634739a + 6634736a: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634736e: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66347372: 41 8b 32 mov (%r10),%esi + 66347375: 85 f6 test %esi,%esi + 66347377: 75 21 jne 6634739a + 66347379: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 6634737d: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347381: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347385: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 6634738c: 4d 63 10 movslq (%r8),%r10 + 6634738f: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347393: 41 89 18 mov %ebx,(%r8) + 66347396: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 6634739a: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 6634739e: 44 8b 58 24 mov 0x24(%rax),%r11d + 663473a2: 45 8b 12 mov (%r10),%r10d + 663473a5: 45 39 da cmp %r11d,%r10d + 663473a8: 74 59 je 66347403 + 663473aa: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663473ae: 44 89 d6 mov %r10d,%esi + 663473b1: 44 29 de sub %r11d,%esi + 663473b4: 45 31 db xor %r11d,%r11d + 663473b7: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 663473bb: 01 33 add %esi,(%rbx) + 663473bd: 44 89 50 24 mov %r10d,0x24(%rax) + 663473c1: 8b 1b mov (%rbx),%ebx + 663473c3: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663473c7: 85 db test %ebx,%ebx + 663473c9: 41 0f 9f c3 setg %r11b + 663473cd: 45 3b 1a cmp (%r10),%r11d + 663473d0: 74 31 je 66347403 + 663473d2: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663473d6: 4d 8b 52 48 mov 0x48(%r10),%r10 + 663473da: 45 8b 1a mov (%r10),%r11d + 663473dd: 45 85 db test %r11d,%r11d + 663473e0: 75 21 jne 66347403 + 663473e2: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663473e6: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 663473ea: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663473ee: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663473f5: 4d 63 10 movslq (%r8),%r10 + 663473f8: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663473fc: 41 89 18 mov %ebx,(%r8) + 663473ff: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347403: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 66347407: 44 8b 58 28 mov 0x28(%rax),%r11d + 6634740b: 45 8b 12 mov (%r10),%r10d + 6634740e: 45 39 da cmp %r11d,%r10d + 66347411: 74 5a je 6634746d + 66347413: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347417: 44 89 d6 mov %r10d,%esi + 6634741a: 44 29 de sub %r11d,%esi + 6634741d: 45 31 db xor %r11d,%r11d + 66347420: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66347424: 01 33 add %esi,(%rbx) + 66347426: 44 89 50 28 mov %r10d,0x28(%rax) + 6634742a: 44 8b 13 mov (%rbx),%r10d + 6634742d: 45 85 d2 test %r10d,%r10d + 66347430: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66347434: 41 0f 9f c3 setg %r11b + 66347438: 45 3b 1a cmp (%r10),%r11d + 6634743b: 74 30 je 6634746d + 6634743d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347441: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66347445: 41 8b 32 mov (%r10),%esi + 66347448: 85 f6 test %esi,%esi + 6634744a: 75 21 jne 6634746d + 6634744c: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347450: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 66347454: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347458: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 6634745f: 4d 63 10 movslq (%r8),%r10 + 66347462: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347466: 41 89 18 mov %ebx,(%r8) + 66347469: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 6634746d: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 66347471: 44 8b 58 2c mov 0x2c(%rax),%r11d + 66347475: 45 8b 12 mov (%r10),%r10d + 66347478: 45 39 da cmp %r11d,%r10d + 6634747b: 74 59 je 663474d6 + 6634747d: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347481: 44 89 d6 mov %r10d,%esi + 66347484: 44 29 de sub %r11d,%esi + 66347487: 45 31 db xor %r11d,%r11d + 6634748a: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 6634748e: 01 33 add %esi,(%rbx) + 66347490: 44 89 50 2c mov %r10d,0x2c(%rax) + 66347494: 8b 1b mov (%rbx),%ebx + 66347496: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 6634749a: 85 db test %ebx,%ebx + 6634749c: 41 0f 9f c3 setg %r11b + 663474a0: 45 3b 1a cmp (%r10),%r11d + 663474a3: 74 31 je 663474d6 + 663474a5: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663474a9: 4d 8b 52 58 mov 0x58(%r10),%r10 + 663474ad: 45 8b 12 mov (%r10),%r10d + 663474b0: 45 85 d2 test %r10d,%r10d + 663474b3: 75 21 jne 663474d6 + 663474b5: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663474b9: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 663474bd: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663474c1: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663474c8: 4d 63 10 movslq (%r8),%r10 + 663474cb: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663474cf: 41 89 18 mov %ebx,(%r8) + 663474d2: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663474d6: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 663474da: 44 8b 58 30 mov 0x30(%rax),%r11d + 663474de: 45 8b 12 mov (%r10),%r10d + 663474e1: 45 39 da cmp %r11d,%r10d + 663474e4: 74 56 je 6634753c + 663474e6: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663474ea: 44 89 d6 mov %r10d,%esi + 663474ed: 44 29 de sub %r11d,%esi + 663474f0: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 663474f4: 01 33 add %esi,(%rbx) + 663474f6: 44 89 50 30 mov %r10d,0x30(%rax) + 663474fa: 8b 33 mov (%rbx),%esi + 663474fc: 85 f6 test %esi,%esi + 663474fe: 48 8b 42 60 mov 0x60(%rdx),%rax + 66347502: 41 0f 9f c2 setg %r10b + 66347506: 45 0f b6 d2 movzbl %r10b,%r10d + 6634750a: 44 3b 10 cmp (%rax),%r10d + 6634750d: 74 2d je 6634753c + 6634750f: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347513: 48 8b 40 60 mov 0x60(%rax),%rax + 66347517: 8b 00 mov (%rax),%eax + 66347519: 85 c0 test %eax,%eax + 6634751b: 75 1f jne 6634753c + 6634751d: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347521: 48 8b 50 60 mov 0x60(%rax),%rdx + 66347525: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347529: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634752f: 49 63 00 movslq (%r8),%rax + 66347532: 8d 48 01 lea 0x1(%rax),%ecx + 66347535: 41 89 08 mov %ecx,(%r8) + 66347538: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 6634753c: 5b pop %rbx + 6634753d: 5e pop %rsi + 6634753e: c3 retq + 6634753f: 90 nop + 66347540: 44 8b 50 1c mov 0x1c(%rax),%r10d + 66347544: 45 85 d2 test %r10d,%r10d + 66347547: 74 3b je 66347584 + 66347549: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634754d: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66347551: 45 29 13 sub %r10d,(%r11) + 66347554: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 6634755b: 41 8b 1b mov (%r11),%ebx + 6634755e: 45 31 db xor %r11d,%r11d + 66347561: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66347565: 85 db test %ebx,%ebx + 66347567: 41 0f 9f c3 setg %r11b + 6634756b: 45 3b 1a cmp (%r10),%r11d + 6634756e: 74 14 je 66347584 + 66347570: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347574: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347578: 45 8b 1a mov (%r10),%r11d + 6634757b: 45 85 db test %r11d,%r11d + 6634757e: 0f 84 ec 01 00 00 je 66347770 + 66347584: 44 8b 50 20 mov 0x20(%rax),%r10d + 66347588: 45 85 d2 test %r10d,%r10d + 6634758b: 74 3b je 663475c8 + 6634758d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347591: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66347595: 45 29 13 sub %r10d,(%r11) + 66347598: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 6634759f: 45 8b 13 mov (%r11),%r10d + 663475a2: 45 31 db xor %r11d,%r11d + 663475a5: 45 85 d2 test %r10d,%r10d + 663475a8: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 663475ac: 41 0f 9f c3 setg %r11b + 663475b0: 45 3b 1a cmp (%r10),%r11d + 663475b3: 74 13 je 663475c8 + 663475b5: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663475b9: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663475bd: 41 8b 32 mov (%r10),%esi + 663475c0: 85 f6 test %esi,%esi + 663475c2: 0f 84 78 01 00 00 je 66347740 + 663475c8: 44 8b 50 24 mov 0x24(%rax),%r10d + 663475cc: 45 85 d2 test %r10d,%r10d + 663475cf: 74 3b je 6634760c + 663475d1: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663475d5: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 663475d9: 45 29 13 sub %r10d,(%r11) + 663475dc: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 663475e3: 41 8b 1b mov (%r11),%ebx + 663475e6: 45 31 db xor %r11d,%r11d + 663475e9: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663475ed: 85 db test %ebx,%ebx + 663475ef: 41 0f 9f c3 setg %r11b + 663475f3: 45 3b 1a cmp (%r10),%r11d + 663475f6: 74 14 je 6634760c + 663475f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663475fc: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347600: 45 8b 1a mov (%r10),%r11d + 66347603: 45 85 db test %r11d,%r11d + 66347606: 0f 84 04 01 00 00 je 66347710 + 6634760c: 44 8b 50 28 mov 0x28(%rax),%r10d + 66347610: 45 85 d2 test %r10d,%r10d + 66347613: 74 3b je 66347650 + 66347615: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347619: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 6634761d: 45 29 13 sub %r10d,(%r11) + 66347620: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66347627: 45 8b 13 mov (%r11),%r10d + 6634762a: 45 31 db xor %r11d,%r11d + 6634762d: 45 85 d2 test %r10d,%r10d + 66347630: 4c 8b 52 50 mov 0x50(%rdx),%r10 + 66347634: 41 0f 9f c3 setg %r11b + 66347638: 45 3b 1a cmp (%r10),%r11d + 6634763b: 74 13 je 66347650 + 6634763d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347641: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66347645: 41 8b 32 mov (%r10),%esi + 66347648: 85 f6 test %esi,%esi + 6634764a: 0f 84 93 00 00 00 je 663476e3 + 66347650: 44 8b 50 2c mov 0x2c(%rax),%r10d + 66347654: 45 85 d2 test %r10d,%r10d + 66347657: 74 37 je 66347690 + 66347659: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634765d: 4d 8b 5b 58 mov 0x58(%r11),%r11 + 66347661: 45 29 13 sub %r10d,(%r11) + 66347664: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 6634766b: 41 8b 1b mov (%r11),%ebx + 6634766e: 45 31 db xor %r11d,%r11d + 66347671: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66347675: 85 db test %ebx,%ebx + 66347677: 41 0f 9f c3 setg %r11b + 6634767b: 45 3b 1a cmp (%r10),%r11d + 6634767e: 74 10 je 66347690 + 66347680: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347684: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66347688: 45 8b 1a mov (%r10),%r11d + 6634768b: 45 85 db test %r11d,%r11d + 6634768e: 74 30 je 663476c0 + 66347690: 44 8b 50 30 mov 0x30(%rax),%r10d + 66347694: 45 85 d2 test %r10d,%r10d + 66347697: 0f 84 9f fe ff ff je 6634753c + 6634769d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663476a1: 4d 8b 5b 60 mov 0x60(%r11),%r11 + 663476a5: 45 29 13 sub %r10d,(%r11) + 663476a8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 663476af: 45 8b 13 mov (%r11),%r10d + 663476b2: 45 85 d2 test %r10d,%r10d + 663476b5: e9 44 fe ff ff jmpq 663474fe + 663476ba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663476c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663476c4: 4d 8b 5a 58 mov 0x58(%r10),%r11 + 663476c8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663476cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663476d3: 4d 63 10 movslq (%r8),%r10 + 663476d6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663476da: 41 89 18 mov %ebx,(%r8) + 663476dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 663476e1: eb ad jmp 66347690 + 663476e3: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 663476e7: 4d 8b 5a 50 mov 0x50(%r10),%r11 + 663476eb: 4d 8b 53 10 mov 0x10(%r11),%r10 + 663476ef: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 663476f6: 4d 63 10 movslq (%r8),%r10 + 663476f9: 41 8d 5a 01 lea 0x1(%r10),%ebx + 663476fd: 41 89 18 mov %ebx,(%r8) + 66347700: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347704: e9 47 ff ff ff jmpq 66347650 + 66347709: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66347710: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347714: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347718: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634771c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347723: 4d 63 10 movslq (%r8),%r10 + 66347726: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634772a: 41 89 18 mov %ebx,(%r8) + 6634772d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347731: e9 d6 fe ff ff jmpq 6634760c + 66347736: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634773d: 00 00 00 + 66347740: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347744: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347748: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634774c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347753: 4d 63 10 movslq (%r8),%r10 + 66347756: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634775a: 41 89 18 mov %ebx,(%r8) + 6634775d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347761: e9 62 fe ff ff jmpq 663475c8 + 66347766: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634776d: 00 00 00 + 66347770: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347774: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347778: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634777c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347783: 4d 63 10 movslq (%r8),%r10 + 66347786: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634778a: 41 89 18 mov %ebx,(%r8) + 6634778d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347791: e9 ee fd ff ff jmpq 66347584 + 66347796: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634779d: 00 00 00 -00000000663475c0 : - 663475c0: 56 push %rsi - 663475c1: 53 push %rbx - 663475c2: 4c 8b 15 57 03 01 00 mov 0x10357(%rip),%r10 # 66357920 - 663475c9: 4c 8b 05 60 03 01 00 mov 0x10360(%rip),%r8 # 66357930 - 663475d0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663475d4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663475d8: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 663475dc: 41 8b 31 mov (%r9),%esi - 663475df: 85 f6 test %esi,%esi - 663475e1: 0f 84 6d 01 00 00 je 66347754 - 663475e7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 663475eb: 44 8b 58 14 mov 0x14(%rax),%r11d - 663475ef: 45 8b 09 mov (%r9),%r9d - 663475f2: 45 39 cb cmp %r9d,%r11d - 663475f5: 74 59 je 66347650 - 663475f7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663475fb: 44 89 ce mov %r9d,%esi - 663475fe: 44 29 de sub %r11d,%esi - 66347601: 45 31 db xor %r11d,%r11d - 66347604: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 66347608: 01 33 add %esi,(%rbx) - 6634760a: 44 89 48 14 mov %r9d,0x14(%rax) - 6634760e: 8b 1b mov (%rbx),%ebx - 66347610: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66347614: 85 db test %ebx,%ebx - 66347616: 41 0f 9f c3 setg %r11b - 6634761a: 45 3b 19 cmp (%r9),%r11d - 6634761d: 74 31 je 66347650 - 6634761f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347623: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66347627: 45 8b 19 mov (%r9),%r11d - 6634762a: 45 85 db test %r11d,%r11d - 6634762d: 75 21 jne 66347650 - 6634762f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347633: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66347637: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634763b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347642: 4d 63 08 movslq (%r8),%r9 - 66347645: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347649: 41 89 18 mov %ebx,(%r8) - 6634764c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347650: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66347654: 44 8b 58 18 mov 0x18(%rax),%r11d - 66347658: 45 8b 09 mov (%r9),%r9d - 6634765b: 45 39 d9 cmp %r11d,%r9d - 6634765e: 74 5a je 663476ba - 66347660: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347664: 44 89 ce mov %r9d,%esi - 66347667: 44 29 de sub %r11d,%esi - 6634766a: 45 31 db xor %r11d,%r11d - 6634766d: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66347671: 01 33 add %esi,(%rbx) - 66347673: 44 89 48 18 mov %r9d,0x18(%rax) - 66347677: 44 8b 0b mov (%rbx),%r9d - 6634767a: 45 85 c9 test %r9d,%r9d - 6634767d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 66347681: 41 0f 9f c3 setg %r11b - 66347685: 45 3b 19 cmp (%r9),%r11d - 66347688: 74 30 je 663476ba - 6634768a: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634768e: 4d 8b 49 30 mov 0x30(%r9),%r9 - 66347692: 41 8b 31 mov (%r9),%esi - 66347695: 85 f6 test %esi,%esi - 66347697: 75 21 jne 663476ba - 66347699: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634769d: 4d 8b 59 30 mov 0x30(%r9),%r11 - 663476a1: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663476a5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663476ac: 4d 63 08 movslq (%r8),%r9 - 663476af: 41 8d 59 01 lea 0x1(%r9),%ebx - 663476b3: 41 89 18 mov %ebx,(%r8) - 663476b6: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663476ba: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 663476be: 44 8b 58 1c mov 0x1c(%rax),%r11d - 663476c2: 45 8b 09 mov (%r9),%r9d - 663476c5: 45 39 d9 cmp %r11d,%r9d - 663476c8: 74 59 je 66347723 - 663476ca: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663476ce: 44 89 ce mov %r9d,%esi - 663476d1: 44 29 de sub %r11d,%esi - 663476d4: 45 31 db xor %r11d,%r11d - 663476d7: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 663476db: 01 33 add %esi,(%rbx) - 663476dd: 44 89 48 1c mov %r9d,0x1c(%rax) - 663476e1: 8b 1b mov (%rbx),%ebx - 663476e3: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 663476e7: 85 db test %ebx,%ebx - 663476e9: 41 0f 9f c3 setg %r11b - 663476ed: 45 3b 19 cmp (%r9),%r11d - 663476f0: 74 31 je 66347723 - 663476f2: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663476f6: 4d 8b 49 38 mov 0x38(%r9),%r9 - 663476fa: 45 8b 09 mov (%r9),%r9d - 663476fd: 45 85 c9 test %r9d,%r9d - 66347700: 75 21 jne 66347723 - 66347702: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347706: 4d 8b 59 38 mov 0x38(%r9),%r11 - 6634770a: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634770e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347715: 4d 63 08 movslq (%r8),%r9 - 66347718: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634771c: 41 89 18 mov %ebx,(%r8) - 6634771f: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347723: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66347727: 44 8b 58 20 mov 0x20(%rax),%r11d - 6634772b: 45 8b 09 mov (%r9),%r9d - 6634772e: 45 39 d9 cmp %r11d,%r9d - 66347731: 0f 84 9f 01 00 00 je 663478d6 - 66347737: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634773b: 44 89 ce mov %r9d,%esi - 6634773e: 44 29 de sub %r11d,%esi - 66347741: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347745: 01 33 add %esi,(%rbx) - 66347747: 44 89 48 20 mov %r9d,0x20(%rax) - 6634774b: 8b 33 mov (%rbx),%esi - 6634774d: 85 f6 test %esi,%esi - 6634774f: e9 44 01 00 00 jmpq 66347898 - 66347754: 44 8b 48 14 mov 0x14(%rax),%r9d - 66347758: 45 85 c9 test %r9d,%r9d - 6634775b: 74 58 je 663477b5 - 6634775d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347761: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66347765: 45 29 0b sub %r9d,(%r11) - 66347768: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634776f: 41 8b 1b mov (%r11),%ebx - 66347772: 45 31 db xor %r11d,%r11d - 66347775: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66347779: 85 db test %ebx,%ebx - 6634777b: 41 0f 9f c3 setg %r11b - 6634777f: 45 3b 19 cmp (%r9),%r11d - 66347782: 74 31 je 663477b5 - 66347784: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347788: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634778c: 45 8b 19 mov (%r9),%r11d - 6634778f: 45 85 db test %r11d,%r11d - 66347792: 75 21 jne 663477b5 - 66347794: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347798: 4d 8b 59 28 mov 0x28(%r9),%r11 - 6634779c: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663477a0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663477a7: 4d 63 08 movslq (%r8),%r9 - 663477aa: 41 8d 59 01 lea 0x1(%r9),%ebx - 663477ae: 41 89 18 mov %ebx,(%r8) - 663477b1: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663477b5: 44 8b 48 18 mov 0x18(%rax),%r9d - 663477b9: 45 85 c9 test %r9d,%r9d - 663477bc: 74 58 je 66347816 - 663477be: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663477c2: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 663477c6: 45 29 0b sub %r9d,(%r11) - 663477c9: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 663477d0: 45 8b 0b mov (%r11),%r9d - 663477d3: 45 31 db xor %r11d,%r11d - 663477d6: 45 85 c9 test %r9d,%r9d - 663477d9: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 663477dd: 41 0f 9f c3 setg %r11b - 663477e1: 45 3b 19 cmp (%r9),%r11d - 663477e4: 74 30 je 66347816 - 663477e6: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663477ea: 4d 8b 49 30 mov 0x30(%r9),%r9 - 663477ee: 41 8b 31 mov (%r9),%esi - 663477f1: 85 f6 test %esi,%esi - 663477f3: 75 21 jne 66347816 - 663477f5: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663477f9: 4d 8b 59 30 mov 0x30(%r9),%r11 - 663477fd: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347801: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347808: 4d 63 08 movslq (%r8),%r9 - 6634780b: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634780f: 41 89 18 mov %ebx,(%r8) - 66347812: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347816: 44 8b 48 1c mov 0x1c(%rax),%r9d - 6634781a: 45 85 c9 test %r9d,%r9d - 6634781d: 74 58 je 66347877 - 6634781f: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347823: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347827: 45 29 0b sub %r9d,(%r11) - 6634782a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66347831: 41 8b 1b mov (%r11),%ebx - 66347834: 45 31 db xor %r11d,%r11d - 66347837: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634783b: 85 db test %ebx,%ebx - 6634783d: 41 0f 9f c3 setg %r11b - 66347841: 45 3b 19 cmp (%r9),%r11d - 66347844: 74 31 je 66347877 - 66347846: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634784a: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634784e: 45 8b 19 mov (%r9),%r11d - 66347851: 45 85 db test %r11d,%r11d - 66347854: 75 21 jne 66347877 - 66347856: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634785a: 4d 8b 59 38 mov 0x38(%r9),%r11 - 6634785e: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347862: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347869: 4d 63 08 movslq (%r8),%r9 - 6634786c: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347870: 41 89 18 mov %ebx,(%r8) - 66347873: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347877: 44 8b 48 20 mov 0x20(%rax),%r9d - 6634787b: 45 85 c9 test %r9d,%r9d - 6634787e: 74 56 je 663478d6 - 66347880: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347884: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66347888: 45 29 0b sub %r9d,(%r11) - 6634788b: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66347892: 45 8b 0b mov (%r11),%r9d - 66347895: 45 85 c9 test %r9d,%r9d - 66347898: 48 8b 42 40 mov 0x40(%rdx),%rax - 6634789c: 41 0f 9f c1 setg %r9b - 663478a0: 45 0f b6 c9 movzbl %r9b,%r9d - 663478a4: 44 3b 08 cmp (%rax),%r9d - 663478a7: 74 2d je 663478d6 - 663478a9: 48 8b 41 20 mov 0x20(%rcx),%rax - 663478ad: 48 8b 40 40 mov 0x40(%rax),%rax - 663478b1: 8b 00 mov (%rax),%eax - 663478b3: 85 c0 test %eax,%eax - 663478b5: 75 1f jne 663478d6 - 663478b7: 48 8b 41 28 mov 0x28(%rcx),%rax - 663478bb: 48 8b 50 40 mov 0x40(%rax),%rdx - 663478bf: 48 8b 42 10 mov 0x10(%rdx),%rax - 663478c3: c7 00 01 00 00 00 movl $0x1,(%rax) - 663478c9: 49 63 00 movslq (%r8),%rax - 663478cc: 8d 48 01 lea 0x1(%rax),%ecx - 663478cf: 41 89 08 mov %ecx,(%r8) - 663478d2: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 663478d6: 5b pop %rbx - 663478d7: 5e pop %rsi - 663478d8: c3 retq - 663478d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +00000000663477a0 : + 663477a0: 56 push %rsi + 663477a1: 53 push %rbx + 663477a2: 4c 8b 0d 77 01 01 00 mov 0x10177(%rip),%r9 # 66357920 + 663477a9: 4c 8b 05 80 01 01 00 mov 0x10180(%rip),%r8 # 66357930 + 663477b0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663477b4: 48 8b 41 08 mov 0x8(%rcx),%rax + 663477b8: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 663477bc: 41 8b 32 mov (%r10),%esi + 663477bf: 85 f6 test %esi,%esi + 663477c1: 0f 84 9b 01 00 00 je 66347962 + 663477c7: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 663477cb: 44 8b 58 18 mov 0x18(%rax),%r11d + 663477cf: 45 8b 12 mov (%r10),%r10d + 663477d2: 45 39 d3 cmp %r10d,%r11d + 663477d5: 74 3c je 66347813 + 663477d7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663477db: 44 89 d6 mov %r10d,%esi + 663477de: 44 29 de sub %r11d,%esi + 663477e1: 45 31 db xor %r11d,%r11d + 663477e4: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 663477e8: 01 33 add %esi,(%rbx) + 663477ea: 44 89 50 18 mov %r10d,0x18(%rax) + 663477ee: 8b 1b mov (%rbx),%ebx + 663477f0: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 663477f4: 85 db test %ebx,%ebx + 663477f6: 41 0f 9f c3 setg %r11b + 663477fa: 45 3b 1a cmp (%r10),%r11d + 663477fd: 74 14 je 66347813 + 663477ff: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347803: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66347807: 45 8b 1a mov (%r10),%r11d + 6634780a: 45 85 db test %r11d,%r11d + 6634780d: 0f 84 cd 03 00 00 je 66347be0 + 66347813: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 66347817: 44 8b 58 1c mov 0x1c(%rax),%r11d + 6634781b: 45 8b 12 mov (%r10),%r10d + 6634781e: 45 39 da cmp %r11d,%r10d + 66347821: 74 3d je 66347860 + 66347823: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347827: 44 89 d6 mov %r10d,%esi + 6634782a: 44 29 de sub %r11d,%esi + 6634782d: 45 31 db xor %r11d,%r11d + 66347830: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66347834: 01 33 add %esi,(%rbx) + 66347836: 44 89 50 1c mov %r10d,0x1c(%rax) + 6634783a: 44 8b 13 mov (%rbx),%r10d + 6634783d: 45 85 d2 test %r10d,%r10d + 66347840: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66347844: 41 0f 9f c3 setg %r11b + 66347848: 45 3b 1a cmp (%r10),%r11d + 6634784b: 74 13 je 66347860 + 6634784d: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347851: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347855: 41 8b 32 mov (%r10),%esi + 66347858: 85 f6 test %esi,%esi + 6634785a: 0f 84 50 03 00 00 je 66347bb0 + 66347860: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 66347864: 44 8b 58 20 mov 0x20(%rax),%r11d + 66347868: 45 8b 12 mov (%r10),%r10d + 6634786b: 45 39 da cmp %r11d,%r10d + 6634786e: 74 3c je 663478ac + 66347870: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347874: 44 89 d6 mov %r10d,%esi + 66347877: 44 29 de sub %r11d,%esi + 6634787a: 45 31 db xor %r11d,%r11d + 6634787d: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66347881: 01 33 add %esi,(%rbx) + 66347883: 44 89 50 20 mov %r10d,0x20(%rax) + 66347887: 8b 1b mov (%rbx),%ebx + 66347889: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 6634788d: 85 db test %ebx,%ebx + 6634788f: 41 0f 9f c3 setg %r11b + 66347893: 45 3b 1a cmp (%r10),%r11d + 66347896: 74 14 je 663478ac + 66347898: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 6634789c: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663478a0: 45 8b 12 mov (%r10),%r10d + 663478a3: 45 85 d2 test %r10d,%r10d + 663478a6: 0f 84 d4 02 00 00 je 66347b80 + 663478ac: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 663478b0: 44 8b 58 24 mov 0x24(%rax),%r11d + 663478b4: 45 8b 12 mov (%r10),%r10d + 663478b7: 45 39 da cmp %r11d,%r10d + 663478ba: 74 3b je 663478f7 + 663478bc: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663478c0: 44 89 d6 mov %r10d,%esi + 663478c3: 44 29 de sub %r11d,%esi + 663478c6: 45 31 db xor %r11d,%r11d + 663478c9: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 663478cd: 01 33 add %esi,(%rbx) + 663478cf: 44 89 50 24 mov %r10d,0x24(%rax) + 663478d3: 8b 33 mov (%rbx),%esi + 663478d5: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 663478d9: 85 f6 test %esi,%esi + 663478db: 41 0f 9f c3 setg %r11b + 663478df: 45 3b 1a cmp (%r10),%r11d + 663478e2: 74 13 je 663478f7 + 663478e4: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663478e8: 4d 8b 52 48 mov 0x48(%r10),%r10 + 663478ec: 41 8b 1a mov (%r10),%ebx + 663478ef: 85 db test %ebx,%ebx + 663478f1: 0f 84 59 02 00 00 je 66347b50 + 663478f7: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 663478fb: 44 8b 58 28 mov 0x28(%rax),%r11d + 663478ff: 45 8b 12 mov (%r10),%r10d + 66347902: 45 39 da cmp %r11d,%r10d + 66347905: 74 58 je 6634795f + 66347907: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634790b: 44 89 d6 mov %r10d,%esi + 6634790e: 44 29 de sub %r11d,%esi + 66347911: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66347915: 01 33 add %esi,(%rbx) + 66347917: 44 89 50 28 mov %r10d,0x28(%rax) + 6634791b: 44 8b 1b mov (%rbx),%r11d + 6634791e: 45 85 db test %r11d,%r11d + 66347921: 48 8b 42 50 mov 0x50(%rdx),%rax + 66347925: 41 0f 9f c2 setg %r10b + 66347929: 45 0f b6 d2 movzbl %r10b,%r10d + 6634792d: 44 3b 10 cmp (%rax),%r10d + 66347930: 74 2d je 6634795f + 66347932: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347936: 48 8b 40 50 mov 0x50(%rax),%rax + 6634793a: 8b 00 mov (%rax),%eax + 6634793c: 85 c0 test %eax,%eax + 6634793e: 75 1f jne 6634795f + 66347940: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347944: 48 8b 50 50 mov 0x50(%rax),%rdx + 66347948: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634794c: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347952: 49 63 00 movslq (%r8),%rax + 66347955: 8d 48 01 lea 0x1(%rax),%ecx + 66347958: 41 89 08 mov %ecx,(%r8) + 6634795b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 6634795f: 5b pop %rbx + 66347960: 5e pop %rsi + 66347961: c3 retq + 66347962: 44 8b 50 18 mov 0x18(%rax),%r10d + 66347966: 45 85 d2 test %r10d,%r10d + 66347969: 74 3b je 663479a6 + 6634796b: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634796f: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66347973: 45 29 13 sub %r10d,(%r11) + 66347976: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 6634797d: 45 8b 13 mov (%r11),%r10d + 66347980: 45 31 db xor %r11d,%r11d + 66347983: 45 85 d2 test %r10d,%r10d + 66347986: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 6634798a: 41 0f 9f c3 setg %r11b + 6634798e: 45 3b 1a cmp (%r10),%r11d + 66347991: 74 13 je 663479a6 + 66347993: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347997: 4d 8b 52 30 mov 0x30(%r10),%r10 + 6634799b: 41 8b 32 mov (%r10),%esi + 6634799e: 85 f6 test %esi,%esi + 663479a0: 0f 84 7a 01 00 00 je 66347b20 + 663479a6: 44 8b 50 1c mov 0x1c(%rax),%r10d + 663479aa: 45 85 d2 test %r10d,%r10d + 663479ad: 74 3b je 663479ea + 663479af: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663479b3: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 663479b7: 45 29 13 sub %r10d,(%r11) + 663479ba: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 663479c1: 41 8b 1b mov (%r11),%ebx + 663479c4: 45 31 db xor %r11d,%r11d + 663479c7: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 663479cb: 85 db test %ebx,%ebx + 663479cd: 41 0f 9f c3 setg %r11b + 663479d1: 45 3b 1a cmp (%r10),%r11d + 663479d4: 74 14 je 663479ea + 663479d6: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 663479da: 4d 8b 52 38 mov 0x38(%r10),%r10 + 663479de: 45 8b 1a mov (%r10),%r11d + 663479e1: 45 85 db test %r11d,%r11d + 663479e4: 0f 84 06 01 00 00 je 66347af0 + 663479ea: 44 8b 50 20 mov 0x20(%rax),%r10d + 663479ee: 45 85 d2 test %r10d,%r10d + 663479f1: 74 3b je 66347a2e + 663479f3: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663479f7: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 663479fb: 45 29 13 sub %r10d,(%r11) + 663479fe: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 66347a05: 45 8b 13 mov (%r11),%r10d + 66347a08: 45 31 db xor %r11d,%r11d + 66347a0b: 45 85 d2 test %r10d,%r10d + 66347a0e: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66347a12: 41 0f 9f c3 setg %r11b + 66347a16: 45 3b 1a cmp (%r10),%r11d + 66347a19: 74 13 je 66347a2e + 66347a1b: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347a1f: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66347a23: 41 8b 32 mov (%r10),%esi + 66347a26: 85 f6 test %esi,%esi + 66347a28: 0f 84 95 00 00 00 je 66347ac3 + 66347a2e: 44 8b 50 24 mov 0x24(%rax),%r10d + 66347a32: 45 85 d2 test %r10d,%r10d + 66347a35: 74 37 je 66347a6e + 66347a37: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347a3b: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 66347a3f: 45 29 13 sub %r10d,(%r11) + 66347a42: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 66347a49: 41 8b 1b mov (%r11),%ebx + 66347a4c: 45 31 db xor %r11d,%r11d + 66347a4f: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 66347a53: 85 db test %ebx,%ebx + 66347a55: 41 0f 9f c3 setg %r11b + 66347a59: 45 3b 1a cmp (%r10),%r11d + 66347a5c: 74 10 je 66347a6e + 66347a5e: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347a62: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347a66: 45 8b 1a mov (%r10),%r11d + 66347a69: 45 85 db test %r11d,%r11d + 66347a6c: 74 32 je 66347aa0 + 66347a6e: 44 8b 50 28 mov 0x28(%rax),%r10d + 66347a72: 45 85 d2 test %r10d,%r10d + 66347a75: 0f 84 e4 fe ff ff je 6634795f + 66347a7b: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347a7f: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 66347a83: 45 29 13 sub %r10d,(%r11) + 66347a86: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66347a8d: 45 8b 13 mov (%r11),%r10d + 66347a90: 45 85 d2 test %r10d,%r10d + 66347a93: e9 89 fe ff ff jmpq 66347921 + 66347a98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66347a9f: 00 + 66347aa0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347aa4: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347aa8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347aac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347ab3: 4d 63 10 movslq (%r8),%r10 + 66347ab6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347aba: 41 89 18 mov %ebx,(%r8) + 66347abd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347ac1: eb ab jmp 66347a6e + 66347ac3: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347ac7: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347acb: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347acf: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347ad6: 4d 63 10 movslq (%r8),%r10 + 66347ad9: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347add: 41 89 18 mov %ebx,(%r8) + 66347ae0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347ae4: e9 45 ff ff ff jmpq 66347a2e + 66347ae9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66347af0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347af4: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347af8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347afc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347b03: 4d 63 10 movslq (%r8),%r10 + 66347b06: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347b0a: 41 89 18 mov %ebx,(%r8) + 66347b0d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347b11: e9 d4 fe ff ff jmpq 663479ea + 66347b16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347b1d: 00 00 00 + 66347b20: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347b24: 4d 8b 5a 30 mov 0x30(%r10),%r11 + 66347b28: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347b2c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347b33: 4d 63 10 movslq (%r8),%r10 + 66347b36: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347b3a: 41 89 18 mov %ebx,(%r8) + 66347b3d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347b41: e9 60 fe ff ff jmpq 663479a6 + 66347b46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347b4d: 00 00 00 + 66347b50: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347b54: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347b58: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347b5c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347b63: 4d 63 10 movslq (%r8),%r10 + 66347b66: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347b6a: 41 89 18 mov %ebx,(%r8) + 66347b6d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347b71: e9 81 fd ff ff jmpq 663478f7 + 66347b76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347b7d: 00 00 00 + 66347b80: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347b84: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347b88: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347b8c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347b93: 4d 63 10 movslq (%r8),%r10 + 66347b96: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347b9a: 41 89 18 mov %ebx,(%r8) + 66347b9d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347ba1: e9 06 fd ff ff jmpq 663478ac + 66347ba6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347bad: 00 00 00 + 66347bb0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347bb4: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347bb8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347bbc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347bc3: 4d 63 10 movslq (%r8),%r10 + 66347bc6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347bca: 41 89 18 mov %ebx,(%r8) + 66347bcd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347bd1: e9 8a fc ff ff jmpq 66347860 + 66347bd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347bdd: 00 00 00 + 66347be0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347be4: 4d 8b 5a 30 mov 0x30(%r10),%r11 + 66347be8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347bec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347bf3: 4d 63 10 movslq (%r8),%r10 + 66347bf6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347bfa: 41 89 18 mov %ebx,(%r8) + 66347bfd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347c01: e9 0d fc ff ff jmpq 66347813 + 66347c06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347c0d: 00 00 00 -00000000663478e0 : - 663478e0: 56 push %rsi - 663478e1: 53 push %rbx - 663478e2: 4c 8b 15 37 00 01 00 mov 0x10037(%rip),%r10 # 66357920 - 663478e9: 4c 8b 05 40 00 01 00 mov 0x10040(%rip),%r8 # 66357930 - 663478f0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663478f4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663478f8: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 663478fc: 41 8b 31 mov (%r9),%esi - 663478ff: 85 f6 test %esi,%esi - 66347901: 0f 84 6d 01 00 00 je 66347a74 - 66347907: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 6634790b: 44 8b 58 14 mov 0x14(%rax),%r11d - 6634790f: 45 8b 09 mov (%r9),%r9d - 66347912: 45 39 cb cmp %r9d,%r11d - 66347915: 74 59 je 66347970 - 66347917: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634791b: 44 89 ce mov %r9d,%esi - 6634791e: 44 29 de sub %r11d,%esi - 66347921: 45 31 db xor %r11d,%r11d - 66347924: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 66347928: 01 33 add %esi,(%rbx) - 6634792a: 44 89 48 14 mov %r9d,0x14(%rax) - 6634792e: 8b 1b mov (%rbx),%ebx - 66347930: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66347934: 85 db test %ebx,%ebx - 66347936: 41 0f 9f c3 setg %r11b - 6634793a: 45 3b 19 cmp (%r9),%r11d - 6634793d: 74 31 je 66347970 - 6634793f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347943: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66347947: 45 8b 19 mov (%r9),%r11d - 6634794a: 45 85 db test %r11d,%r11d - 6634794d: 75 21 jne 66347970 - 6634794f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347953: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66347957: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634795b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347962: 4d 63 08 movslq (%r8),%r9 - 66347965: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347969: 41 89 18 mov %ebx,(%r8) - 6634796c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347970: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66347974: 44 8b 58 18 mov 0x18(%rax),%r11d - 66347978: 45 8b 09 mov (%r9),%r9d - 6634797b: 45 39 d9 cmp %r11d,%r9d - 6634797e: 74 5a je 663479da - 66347980: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347984: 44 89 ce mov %r9d,%esi - 66347987: 44 29 de sub %r11d,%esi - 6634798a: 45 31 db xor %r11d,%r11d - 6634798d: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66347991: 01 33 add %esi,(%rbx) - 66347993: 44 89 48 18 mov %r9d,0x18(%rax) - 66347997: 44 8b 0b mov (%rbx),%r9d - 6634799a: 45 85 c9 test %r9d,%r9d - 6634799d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 663479a1: 41 0f 9f c3 setg %r11b - 663479a5: 45 3b 19 cmp (%r9),%r11d - 663479a8: 74 30 je 663479da - 663479aa: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663479ae: 4d 8b 49 30 mov 0x30(%r9),%r9 - 663479b2: 41 8b 31 mov (%r9),%esi - 663479b5: 85 f6 test %esi,%esi - 663479b7: 75 21 jne 663479da - 663479b9: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663479bd: 4d 8b 59 30 mov 0x30(%r9),%r11 - 663479c1: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663479c5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663479cc: 4d 63 08 movslq (%r8),%r9 - 663479cf: 41 8d 59 01 lea 0x1(%r9),%ebx - 663479d3: 41 89 18 mov %ebx,(%r8) - 663479d6: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663479da: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 663479de: 44 8b 58 1c mov 0x1c(%rax),%r11d - 663479e2: 45 8b 09 mov (%r9),%r9d - 663479e5: 45 39 d9 cmp %r11d,%r9d - 663479e8: 74 59 je 66347a43 - 663479ea: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663479ee: 44 89 ce mov %r9d,%esi - 663479f1: 44 29 de sub %r11d,%esi - 663479f4: 45 31 db xor %r11d,%r11d - 663479f7: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 663479fb: 01 33 add %esi,(%rbx) - 663479fd: 44 89 48 1c mov %r9d,0x1c(%rax) - 66347a01: 8b 1b mov (%rbx),%ebx - 66347a03: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 66347a07: 85 db test %ebx,%ebx - 66347a09: 41 0f 9f c3 setg %r11b - 66347a0d: 45 3b 19 cmp (%r9),%r11d - 66347a10: 74 31 je 66347a43 - 66347a12: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347a16: 4d 8b 49 38 mov 0x38(%r9),%r9 - 66347a1a: 45 8b 09 mov (%r9),%r9d - 66347a1d: 45 85 c9 test %r9d,%r9d - 66347a20: 75 21 jne 66347a43 - 66347a22: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347a26: 4d 8b 59 38 mov 0x38(%r9),%r11 - 66347a2a: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347a2e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347a35: 4d 63 08 movslq (%r8),%r9 - 66347a38: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347a3c: 41 89 18 mov %ebx,(%r8) - 66347a3f: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347a43: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66347a47: 44 8b 58 20 mov 0x20(%rax),%r11d - 66347a4b: 45 8b 09 mov (%r9),%r9d - 66347a4e: 45 39 d9 cmp %r11d,%r9d - 66347a51: 0f 84 9f 01 00 00 je 66347bf6 - 66347a57: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347a5b: 44 89 ce mov %r9d,%esi - 66347a5e: 44 29 de sub %r11d,%esi - 66347a61: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347a65: 01 33 add %esi,(%rbx) - 66347a67: 44 89 48 20 mov %r9d,0x20(%rax) - 66347a6b: 8b 33 mov (%rbx),%esi - 66347a6d: 85 f6 test %esi,%esi - 66347a6f: e9 44 01 00 00 jmpq 66347bb8 - 66347a74: 44 8b 48 14 mov 0x14(%rax),%r9d - 66347a78: 45 85 c9 test %r9d,%r9d - 66347a7b: 74 58 je 66347ad5 - 66347a7d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347a81: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66347a85: 45 29 0b sub %r9d,(%r11) - 66347a88: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 66347a8f: 41 8b 1b mov (%r11),%ebx - 66347a92: 45 31 db xor %r11d,%r11d - 66347a95: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66347a99: 85 db test %ebx,%ebx - 66347a9b: 41 0f 9f c3 setg %r11b - 66347a9f: 45 3b 19 cmp (%r9),%r11d - 66347aa2: 74 31 je 66347ad5 - 66347aa4: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347aa8: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66347aac: 45 8b 19 mov (%r9),%r11d - 66347aaf: 45 85 db test %r11d,%r11d - 66347ab2: 75 21 jne 66347ad5 - 66347ab4: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347ab8: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66347abc: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347ac0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347ac7: 4d 63 08 movslq (%r8),%r9 - 66347aca: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347ace: 41 89 18 mov %ebx,(%r8) - 66347ad1: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347ad5: 44 8b 48 18 mov 0x18(%rax),%r9d - 66347ad9: 45 85 c9 test %r9d,%r9d - 66347adc: 74 58 je 66347b36 - 66347ade: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347ae2: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66347ae6: 45 29 0b sub %r9d,(%r11) - 66347ae9: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66347af0: 45 8b 0b mov (%r11),%r9d - 66347af3: 45 31 db xor %r11d,%r11d - 66347af6: 45 85 c9 test %r9d,%r9d - 66347af9: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 66347afd: 41 0f 9f c3 setg %r11b - 66347b01: 45 3b 19 cmp (%r9),%r11d - 66347b04: 74 30 je 66347b36 - 66347b06: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347b0a: 4d 8b 49 30 mov 0x30(%r9),%r9 - 66347b0e: 41 8b 31 mov (%r9),%esi - 66347b11: 85 f6 test %esi,%esi - 66347b13: 75 21 jne 66347b36 - 66347b15: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347b19: 4d 8b 59 30 mov 0x30(%r9),%r11 - 66347b1d: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347b21: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347b28: 4d 63 08 movslq (%r8),%r9 - 66347b2b: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347b2f: 41 89 18 mov %ebx,(%r8) - 66347b32: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347b36: 44 8b 48 1c mov 0x1c(%rax),%r9d - 66347b3a: 45 85 c9 test %r9d,%r9d - 66347b3d: 74 58 je 66347b97 - 66347b3f: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347b43: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347b47: 45 29 0b sub %r9d,(%r11) - 66347b4a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66347b51: 41 8b 1b mov (%r11),%ebx - 66347b54: 45 31 db xor %r11d,%r11d - 66347b57: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 66347b5b: 85 db test %ebx,%ebx - 66347b5d: 41 0f 9f c3 setg %r11b - 66347b61: 45 3b 19 cmp (%r9),%r11d - 66347b64: 74 31 je 66347b97 - 66347b66: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66347b6a: 4d 8b 49 38 mov 0x38(%r9),%r9 - 66347b6e: 45 8b 19 mov (%r9),%r11d - 66347b71: 45 85 db test %r11d,%r11d - 66347b74: 75 21 jne 66347b97 - 66347b76: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66347b7a: 4d 8b 59 38 mov 0x38(%r9),%r11 - 66347b7e: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66347b82: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66347b89: 4d 63 08 movslq (%r8),%r9 - 66347b8c: 41 8d 59 01 lea 0x1(%r9),%ebx - 66347b90: 41 89 18 mov %ebx,(%r8) - 66347b93: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66347b97: 44 8b 48 20 mov 0x20(%rax),%r9d - 66347b9b: 45 85 c9 test %r9d,%r9d - 66347b9e: 74 56 je 66347bf6 - 66347ba0: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347ba4: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66347ba8: 45 29 0b sub %r9d,(%r11) - 66347bab: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66347bb2: 45 8b 0b mov (%r11),%r9d - 66347bb5: 45 85 c9 test %r9d,%r9d - 66347bb8: 48 8b 42 40 mov 0x40(%rdx),%rax - 66347bbc: 41 0f 9f c1 setg %r9b - 66347bc0: 45 0f b6 c9 movzbl %r9b,%r9d - 66347bc4: 44 3b 08 cmp (%rax),%r9d - 66347bc7: 74 2d je 66347bf6 - 66347bc9: 48 8b 41 20 mov 0x20(%rcx),%rax - 66347bcd: 48 8b 40 40 mov 0x40(%rax),%rax - 66347bd1: 8b 00 mov (%rax),%eax - 66347bd3: 85 c0 test %eax,%eax - 66347bd5: 75 1f jne 66347bf6 - 66347bd7: 48 8b 41 28 mov 0x28(%rcx),%rax - 66347bdb: 48 8b 50 40 mov 0x40(%rax),%rdx - 66347bdf: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347be3: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347be9: 49 63 00 movslq (%r8),%rax - 66347bec: 8d 48 01 lea 0x1(%rax),%ecx - 66347bef: 41 89 08 mov %ecx,(%r8) - 66347bf2: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66347bf6: 5b pop %rbx - 66347bf7: 5e pop %rsi - 66347bf8: c3 retq - 66347bf9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +0000000066347c10 : + 66347c10: 56 push %rsi + 66347c11: 53 push %rbx + 66347c12: 4c 8b 0d 07 fd 00 00 mov 0xfd07(%rip),%r9 # 66357920 + 66347c19: 4c 8b 05 10 fd 00 00 mov 0xfd10(%rip),%r8 # 66357930 + 66347c20: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66347c24: 48 8b 41 08 mov 0x8(%rcx),%rax + 66347c28: 4c 8b 52 58 mov 0x58(%rdx),%r10 + 66347c2c: 41 8b 32 mov (%r10),%esi + 66347c2f: 85 f6 test %esi,%esi + 66347c31: 0f 84 9b 01 00 00 je 66347dd2 + 66347c37: 4c 8b 52 08 mov 0x8(%rdx),%r10 + 66347c3b: 44 8b 58 18 mov 0x18(%rax),%r11d + 66347c3f: 45 8b 12 mov (%r10),%r10d + 66347c42: 45 39 d3 cmp %r10d,%r11d + 66347c45: 74 3c je 66347c83 + 66347c47: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347c4b: 44 89 d6 mov %r10d,%esi + 66347c4e: 44 29 de sub %r11d,%esi + 66347c51: 45 31 db xor %r11d,%r11d + 66347c54: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 66347c58: 01 33 add %esi,(%rbx) + 66347c5a: 44 89 50 18 mov %r10d,0x18(%rax) + 66347c5e: 8b 1b mov (%rbx),%ebx + 66347c60: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 66347c64: 85 db test %ebx,%ebx + 66347c66: 41 0f 9f c3 setg %r11b + 66347c6a: 45 3b 1a cmp (%r10),%r11d + 66347c6d: 74 14 je 66347c83 + 66347c6f: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347c73: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66347c77: 45 8b 1a mov (%r10),%r11d + 66347c7a: 45 85 db test %r11d,%r11d + 66347c7d: 0f 84 cd 03 00 00 je 66348050 + 66347c83: 4c 8b 52 10 mov 0x10(%rdx),%r10 + 66347c87: 44 8b 58 1c mov 0x1c(%rax),%r11d + 66347c8b: 45 8b 12 mov (%r10),%r10d + 66347c8e: 45 39 da cmp %r11d,%r10d + 66347c91: 74 3d je 66347cd0 + 66347c93: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347c97: 44 89 d6 mov %r10d,%esi + 66347c9a: 44 29 de sub %r11d,%esi + 66347c9d: 45 31 db xor %r11d,%r11d + 66347ca0: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66347ca4: 01 33 add %esi,(%rbx) + 66347ca6: 44 89 50 1c mov %r10d,0x1c(%rax) + 66347caa: 44 8b 13 mov (%rbx),%r10d + 66347cad: 45 85 d2 test %r10d,%r10d + 66347cb0: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66347cb4: 41 0f 9f c3 setg %r11b + 66347cb8: 45 3b 1a cmp (%r10),%r11d + 66347cbb: 74 13 je 66347cd0 + 66347cbd: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347cc1: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347cc5: 41 8b 32 mov (%r10),%esi + 66347cc8: 85 f6 test %esi,%esi + 66347cca: 0f 84 50 03 00 00 je 66348020 + 66347cd0: 4c 8b 52 18 mov 0x18(%rdx),%r10 + 66347cd4: 44 8b 58 20 mov 0x20(%rax),%r11d + 66347cd8: 45 8b 12 mov (%r10),%r10d + 66347cdb: 45 39 da cmp %r11d,%r10d + 66347cde: 74 3c je 66347d1c + 66347ce0: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347ce4: 44 89 d6 mov %r10d,%esi + 66347ce7: 44 29 de sub %r11d,%esi + 66347cea: 45 31 db xor %r11d,%r11d + 66347ced: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66347cf1: 01 33 add %esi,(%rbx) + 66347cf3: 44 89 50 20 mov %r10d,0x20(%rax) + 66347cf7: 8b 1b mov (%rbx),%ebx + 66347cf9: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66347cfd: 85 db test %ebx,%ebx + 66347cff: 41 0f 9f c3 setg %r11b + 66347d03: 45 3b 1a cmp (%r10),%r11d + 66347d06: 74 14 je 66347d1c + 66347d08: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347d0c: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66347d10: 45 8b 12 mov (%r10),%r10d + 66347d13: 45 85 d2 test %r10d,%r10d + 66347d16: 0f 84 d4 02 00 00 je 66347ff0 + 66347d1c: 4c 8b 52 20 mov 0x20(%rdx),%r10 + 66347d20: 44 8b 58 24 mov 0x24(%rax),%r11d + 66347d24: 45 8b 12 mov (%r10),%r10d + 66347d27: 45 39 da cmp %r11d,%r10d + 66347d2a: 74 3b je 66347d67 + 66347d2c: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347d30: 44 89 d6 mov %r10d,%esi + 66347d33: 44 29 de sub %r11d,%esi + 66347d36: 45 31 db xor %r11d,%r11d + 66347d39: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 66347d3d: 01 33 add %esi,(%rbx) + 66347d3f: 44 89 50 24 mov %r10d,0x24(%rax) + 66347d43: 8b 33 mov (%rbx),%esi + 66347d45: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 66347d49: 85 f6 test %esi,%esi + 66347d4b: 41 0f 9f c3 setg %r11b + 66347d4f: 45 3b 1a cmp (%r10),%r11d + 66347d52: 74 13 je 66347d67 + 66347d54: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347d58: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347d5c: 41 8b 1a mov (%r10),%ebx + 66347d5f: 85 db test %ebx,%ebx + 66347d61: 0f 84 59 02 00 00 je 66347fc0 + 66347d67: 4c 8b 52 28 mov 0x28(%rdx),%r10 + 66347d6b: 44 8b 58 28 mov 0x28(%rax),%r11d + 66347d6f: 45 8b 12 mov (%r10),%r10d + 66347d72: 45 39 da cmp %r11d,%r10d + 66347d75: 74 58 je 66347dcf + 66347d77: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66347d7b: 44 89 d6 mov %r10d,%esi + 66347d7e: 44 29 de sub %r11d,%esi + 66347d81: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66347d85: 01 33 add %esi,(%rbx) + 66347d87: 44 89 50 28 mov %r10d,0x28(%rax) + 66347d8b: 44 8b 1b mov (%rbx),%r11d + 66347d8e: 45 85 db test %r11d,%r11d + 66347d91: 48 8b 42 50 mov 0x50(%rdx),%rax + 66347d95: 41 0f 9f c2 setg %r10b + 66347d99: 45 0f b6 d2 movzbl %r10b,%r10d + 66347d9d: 44 3b 10 cmp (%rax),%r10d + 66347da0: 74 2d je 66347dcf + 66347da2: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347da6: 48 8b 40 50 mov 0x50(%rax),%rax + 66347daa: 8b 00 mov (%rax),%eax + 66347dac: 85 c0 test %eax,%eax + 66347dae: 75 1f jne 66347dcf + 66347db0: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347db4: 48 8b 50 50 mov 0x50(%rax),%rdx + 66347db8: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347dbc: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347dc2: 49 63 00 movslq (%r8),%rax + 66347dc5: 8d 48 01 lea 0x1(%rax),%ecx + 66347dc8: 41 89 08 mov %ecx,(%r8) + 66347dcb: 49 89 14 c1 mov %rdx,(%r9,%rax,8) + 66347dcf: 5b pop %rbx + 66347dd0: 5e pop %rsi + 66347dd1: c3 retq + 66347dd2: 44 8b 50 18 mov 0x18(%rax),%r10d + 66347dd6: 45 85 d2 test %r10d,%r10d + 66347dd9: 74 3b je 66347e16 + 66347ddb: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347ddf: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66347de3: 45 29 13 sub %r10d,(%r11) + 66347de6: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 66347ded: 45 8b 13 mov (%r11),%r10d + 66347df0: 45 31 db xor %r11d,%r11d + 66347df3: 45 85 d2 test %r10d,%r10d + 66347df6: 4c 8b 52 30 mov 0x30(%rdx),%r10 + 66347dfa: 41 0f 9f c3 setg %r11b + 66347dfe: 45 3b 1a cmp (%r10),%r11d + 66347e01: 74 13 je 66347e16 + 66347e03: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347e07: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66347e0b: 41 8b 32 mov (%r10),%esi + 66347e0e: 85 f6 test %esi,%esi + 66347e10: 0f 84 7a 01 00 00 je 66347f90 + 66347e16: 44 8b 50 1c mov 0x1c(%rax),%r10d + 66347e1a: 45 85 d2 test %r10d,%r10d + 66347e1d: 74 3b je 66347e5a + 66347e1f: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347e23: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66347e27: 45 29 13 sub %r10d,(%r11) + 66347e2a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 66347e31: 41 8b 1b mov (%r11),%ebx + 66347e34: 45 31 db xor %r11d,%r11d + 66347e37: 4c 8b 52 38 mov 0x38(%rdx),%r10 + 66347e3b: 85 db test %ebx,%ebx + 66347e3d: 41 0f 9f c3 setg %r11b + 66347e41: 45 3b 1a cmp (%r10),%r11d + 66347e44: 74 14 je 66347e5a + 66347e46: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347e4a: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66347e4e: 45 8b 1a mov (%r10),%r11d + 66347e51: 45 85 db test %r11d,%r11d + 66347e54: 0f 84 06 01 00 00 je 66347f60 + 66347e5a: 44 8b 50 20 mov 0x20(%rax),%r10d + 66347e5e: 45 85 d2 test %r10d,%r10d + 66347e61: 74 3b je 66347e9e + 66347e63: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347e67: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66347e6b: 45 29 13 sub %r10d,(%r11) + 66347e6e: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 66347e75: 45 8b 13 mov (%r11),%r10d + 66347e78: 45 31 db xor %r11d,%r11d + 66347e7b: 45 85 d2 test %r10d,%r10d + 66347e7e: 4c 8b 52 40 mov 0x40(%rdx),%r10 + 66347e82: 41 0f 9f c3 setg %r11b + 66347e86: 45 3b 1a cmp (%r10),%r11d + 66347e89: 74 13 je 66347e9e + 66347e8b: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347e8f: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66347e93: 41 8b 32 mov (%r10),%esi + 66347e96: 85 f6 test %esi,%esi + 66347e98: 0f 84 95 00 00 00 je 66347f33 + 66347e9e: 44 8b 50 24 mov 0x24(%rax),%r10d + 66347ea2: 45 85 d2 test %r10d,%r10d + 66347ea5: 74 37 je 66347ede + 66347ea7: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347eab: 4d 8b 5b 48 mov 0x48(%r11),%r11 + 66347eaf: 45 29 13 sub %r10d,(%r11) + 66347eb2: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 66347eb9: 41 8b 1b mov (%r11),%ebx + 66347ebc: 45 31 db xor %r11d,%r11d + 66347ebf: 4c 8b 52 48 mov 0x48(%rdx),%r10 + 66347ec3: 85 db test %ebx,%ebx + 66347ec5: 41 0f 9f c3 setg %r11b + 66347ec9: 45 3b 1a cmp (%r10),%r11d + 66347ecc: 74 10 je 66347ede + 66347ece: 4c 8b 51 20 mov 0x20(%rcx),%r10 + 66347ed2: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347ed6: 45 8b 1a mov (%r10),%r11d + 66347ed9: 45 85 db test %r11d,%r11d + 66347edc: 74 32 je 66347f10 + 66347ede: 44 8b 50 28 mov 0x28(%rax),%r10d + 66347ee2: 45 85 d2 test %r10d,%r10d + 66347ee5: 0f 84 e4 fe ff ff je 66347dcf + 66347eeb: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66347eef: 4d 8b 5b 50 mov 0x50(%r11),%r11 + 66347ef3: 45 29 13 sub %r10d,(%r11) + 66347ef6: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 66347efd: 45 8b 13 mov (%r11),%r10d + 66347f00: 45 85 d2 test %r10d,%r10d + 66347f03: e9 89 fe ff ff jmpq 66347d91 + 66347f08: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66347f0f: 00 + 66347f10: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347f14: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347f18: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347f1c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347f23: 4d 63 10 movslq (%r8),%r10 + 66347f26: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347f2a: 41 89 18 mov %ebx,(%r8) + 66347f2d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347f31: eb ab jmp 66347ede + 66347f33: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347f37: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347f3b: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347f3f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347f46: 4d 63 10 movslq (%r8),%r10 + 66347f49: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347f4d: 41 89 18 mov %ebx,(%r8) + 66347f50: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347f54: e9 45 ff ff ff jmpq 66347e9e + 66347f59: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66347f60: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347f64: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66347f68: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347f6c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347f73: 4d 63 10 movslq (%r8),%r10 + 66347f76: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347f7a: 41 89 18 mov %ebx,(%r8) + 66347f7d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347f81: e9 d4 fe ff ff jmpq 66347e5a + 66347f86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347f8d: 00 00 00 + 66347f90: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347f94: 4d 8b 5a 30 mov 0x30(%r10),%r11 + 66347f98: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347f9c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347fa3: 4d 63 10 movslq (%r8),%r10 + 66347fa6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347faa: 41 89 18 mov %ebx,(%r8) + 66347fad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347fb1: e9 60 fe ff ff jmpq 66347e16 + 66347fb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347fbd: 00 00 00 + 66347fc0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347fc4: 4d 8b 5a 48 mov 0x48(%r10),%r11 + 66347fc8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347fcc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66347fd3: 4d 63 10 movslq (%r8),%r10 + 66347fd6: 41 8d 5a 01 lea 0x1(%r10),%ebx + 66347fda: 41 89 18 mov %ebx,(%r8) + 66347fdd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66347fe1: e9 81 fd ff ff jmpq 66347d67 + 66347fe6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347fed: 00 00 00 + 66347ff0: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66347ff4: 4d 8b 5a 40 mov 0x40(%r10),%r11 + 66347ff8: 4d 8b 53 10 mov 0x10(%r11),%r10 + 66347ffc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66348003: 4d 63 10 movslq (%r8),%r10 + 66348006: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634800a: 41 89 18 mov %ebx,(%r8) + 6634800d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66348011: e9 06 fd ff ff jmpq 66347d1c + 66348016: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634801d: 00 00 00 + 66348020: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66348024: 4d 8b 5a 38 mov 0x38(%r10),%r11 + 66348028: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634802c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66348033: 4d 63 10 movslq (%r8),%r10 + 66348036: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634803a: 41 89 18 mov %ebx,(%r8) + 6634803d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66348041: e9 8a fc ff ff jmpq 66347cd0 + 66348046: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634804d: 00 00 00 + 66348050: 4c 8b 51 28 mov 0x28(%rcx),%r10 + 66348054: 4d 8b 5a 30 mov 0x30(%r10),%r11 + 66348058: 4d 8b 53 10 mov 0x10(%r11),%r10 + 6634805c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66348063: 4d 63 10 movslq (%r8),%r10 + 66348066: 41 8d 5a 01 lea 0x1(%r10),%ebx + 6634806a: 41 89 18 mov %ebx,(%r8) + 6634806d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) + 66348071: e9 0d fc ff ff jmpq 66347c83 + 66348076: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634807d: 00 00 00 -0000000066347c00 : - 66347c00: 41 55 push %r13 - 66347c02: 41 54 push %r12 - 66347c04: 55 push %rbp - 66347c05: 57 push %rdi - 66347c06: 56 push %rsi - 66347c07: 53 push %rbx - 66347c08: 48 83 ec 28 sub $0x28,%rsp - 66347c0c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66347c10: 49 8b 81 50 02 00 00 mov 0x250(%r9),%rax - 66347c17: 48 89 ce mov %rcx,%rsi - 66347c1a: 8b 18 mov (%rax),%ebx - 66347c1c: 85 db test %ebx,%ebx - 66347c1e: 0f 84 41 01 00 00 je 66347d65 - 66347c24: 49 8b 41 10 mov 0x10(%r9),%rax - 66347c28: bb 28 00 00 00 mov $0x28,%ebx - 66347c2d: 4c 8d 2d cc c3 00 00 lea 0xc3cc(%rip),%r13 # 66354000 <.rdata> - 66347c34: 4c 8d 25 d5 c3 00 00 lea 0xc3d5(%rip),%r12 # 66354010 <.rdata+0x10> - 66347c3b: 8b 10 mov (%rax),%edx - 66347c3d: 49 8b 41 08 mov 0x8(%r9),%rax - 66347c41: 8b 00 mov (%rax),%eax - 66347c43: 8d 04 50 lea (%rax,%rdx,2),%eax - 66347c46: 49 8b 51 18 mov 0x18(%r9),%rdx - 66347c4a: 8b 12 mov (%rdx),%edx - 66347c4c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66347c4f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66347c53: 8b 12 mov (%rdx),%edx - 66347c55: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66347c58: 49 8b 41 28 mov 0x28(%r9),%rax - 66347c5c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66347c60: 8b 00 mov (%rax),%eax - 66347c62: c1 e0 04 shl $0x4,%eax - 66347c65: 01 f8 add %edi,%eax - 66347c67: 8b 3a mov (%rdx),%edi - 66347c69: 49 8b 51 48 mov 0x48(%r9),%rdx - 66347c6d: c1 e7 05 shl $0x5,%edi - 66347c70: 01 c7 add %eax,%edi - 66347c72: 49 8b 41 38 mov 0x38(%r9),%rax - 66347c76: 8b 00 mov (%rax),%eax - 66347c78: c1 e0 06 shl $0x6,%eax - 66347c7b: 01 c7 add %eax,%edi - 66347c7d: 49 8b 41 40 mov 0x40(%r9),%rax - 66347c81: 8b 00 mov (%rax),%eax - 66347c83: c1 e0 07 shl $0x7,%eax - 66347c86: 01 f8 add %edi,%eax - 66347c88: 8b 3a mov (%rdx),%edi - 66347c8a: c1 e7 08 shl $0x8,%edi - 66347c8d: 01 c7 add %eax,%edi - 66347c8f: 48 63 ef movslq %edi,%rbp - 66347c92: 48 c1 e5 02 shl $0x2,%rbp - 66347c96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347c9d: 00 00 00 - 66347ca0: 85 ff test %edi,%edi - 66347ca2: 78 05 js 66347ca9 - 66347ca4: 39 7e 38 cmp %edi,0x38(%rsi) - 66347ca7: 7f 11 jg 66347cba - 66347ca9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66347caf: 4c 89 ea mov %r13,%rdx - 66347cb2: 4c 89 e1 mov %r12,%rcx - 66347cb5: e8 96 a2 00 00 callq 66351f50 <_assert> - 66347cba: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66347cbe: 48 8b 46 40 mov 0x40(%rsi),%rax - 66347cc2: 48 01 da add %rbx,%rdx - 66347cc5: 8b 04 28 mov (%rax,%rbp,1),%eax - 66347cc8: 8b 0a mov (%rdx),%ecx - 66347cca: 39 c8 cmp %ecx,%eax - 66347ccc: 74 6c je 66347d3a - 66347cce: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66347cd2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66347cd6: 41 89 c3 mov %eax,%r11d - 66347cd9: 41 29 cb sub %ecx,%r11d - 66347cdc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66347ce0: 45 01 18 add %r11d,(%r8) - 66347ce3: 89 02 mov %eax,(%rdx) - 66347ce5: 31 d2 xor %edx,%edx - 66347ce7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66347ceb: 45 8b 18 mov (%r8),%r11d - 66347cee: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66347cf2: 45 85 db test %r11d,%r11d - 66347cf5: 0f 9f c2 setg %dl - 66347cf8: 3b 10 cmp (%rax),%edx - 66347cfa: 74 3e je 66347d3a - 66347cfc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66347d00: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66347d04: 44 8b 10 mov (%rax),%r10d - 66347d07: 45 85 d2 test %r10d,%r10d - 66347d0a: 75 2e jne 66347d3a - 66347d0c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66347d10: 48 8b 0d 19 fc 00 00 mov 0xfc19(%rip),%rcx # 66357930 - 66347d17: 4c 8b 05 02 fc 00 00 mov 0xfc02(%rip),%r8 # 66357920 - 66347d1e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66347d22: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347d26: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347d2c: 48 63 01 movslq (%rcx),%rax - 66347d2f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66347d33: 44 89 09 mov %r9d,(%rcx) - 66347d36: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66347d3a: 48 83 c3 04 add $0x4,%rbx - 66347d3e: 81 c7 00 02 00 00 add $0x200,%edi - 66347d44: 48 81 c5 00 08 00 00 add $0x800,%rbp - 66347d4b: 48 81 fb 28 01 00 00 cmp $0x128,%rbx - 66347d52: 0f 85 48 ff ff ff jne 66347ca0 - 66347d58: 48 83 c4 28 add $0x28,%rsp - 66347d5c: 5b pop %rbx - 66347d5d: 5e pop %rsi - 66347d5e: 5f pop %rdi - 66347d5f: 5d pop %rbp - 66347d60: 41 5c pop %r12 - 66347d62: 41 5d pop %r13 - 66347d64: c3 retq - 66347d65: 48 8b 41 08 mov 0x8(%rcx),%rax - 66347d69: 4c 8b 1d b0 fb 00 00 mov 0xfbb0(%rip),%r11 # 66357920 - 66347d70: 4c 8b 15 b9 fb 00 00 mov 0xfbb9(%rip),%r10 # 66357930 - 66347d77: 48 8d 50 28 lea 0x28(%rax),%rdx - 66347d7b: b8 50 00 00 00 mov $0x50,%eax - 66347d80: 8b 0a mov (%rdx),%ecx - 66347d82: 85 c9 test %ecx,%ecx - 66347d84: 74 55 je 66347ddb - 66347d86: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66347d8a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66347d8e: 41 29 08 sub %ecx,(%r8) - 66347d91: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66347d97: 45 8b 00 mov (%r8),%r8d - 66347d9a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66347d9e: 45 85 c0 test %r8d,%r8d - 66347da1: 41 0f 9f c0 setg %r8b - 66347da5: 45 0f b6 c0 movzbl %r8b,%r8d - 66347da9: 44 3b 01 cmp (%rcx),%r8d - 66347dac: 74 2d je 66347ddb - 66347dae: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66347db2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66347db6: 8b 09 mov (%rcx),%ecx - 66347db8: 85 c9 test %ecx,%ecx - 66347dba: 75 1f jne 66347ddb - 66347dbc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66347dc0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66347dc4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66347dc8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66347dce: 49 63 0a movslq (%r10),%rcx - 66347dd1: 8d 59 01 lea 0x1(%rcx),%ebx - 66347dd4: 41 89 1a mov %ebx,(%r10) - 66347dd7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66347ddb: 48 83 c0 08 add $0x8,%rax - 66347ddf: 48 83 c2 04 add $0x4,%rdx - 66347de3: 48 3d 50 02 00 00 cmp $0x250,%rax - 66347de9: 75 95 jne 66347d80 - 66347deb: 48 83 c4 28 add $0x28,%rsp - 66347def: 5b pop %rbx - 66347df0: 5e pop %rsi - 66347df1: 5f pop %rdi - 66347df2: 5d pop %rbp - 66347df3: 41 5c pop %r12 - 66347df5: 41 5d pop %r13 - 66347df7: c3 retq - 66347df8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66347dff: 00 +0000000066348080 : + 66348080: 56 push %rsi + 66348081: 53 push %rbx + 66348082: 4c 8b 15 97 f8 00 00 mov 0xf897(%rip),%r10 # 66357920 + 66348089: 4c 8b 05 a0 f8 00 00 mov 0xf8a0(%rip),%r8 # 66357930 + 66348090: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66348094: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348098: 4c 8b 4a 48 mov 0x48(%rdx),%r9 + 6634809c: 41 8b 31 mov (%r9),%esi + 6634809f: 85 f6 test %esi,%esi + 663480a1: 0f 84 6d 01 00 00 je 66348214 + 663480a7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 + 663480ab: 44 8b 58 14 mov 0x14(%rax),%r11d + 663480af: 45 8b 09 mov (%r9),%r9d + 663480b2: 45 39 cb cmp %r9d,%r11d + 663480b5: 74 59 je 66348110 + 663480b7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663480bb: 44 89 ce mov %r9d,%esi + 663480be: 44 29 de sub %r11d,%esi + 663480c1: 45 31 db xor %r11d,%r11d + 663480c4: 48 8b 5b 28 mov 0x28(%rbx),%rbx + 663480c8: 01 33 add %esi,(%rbx) + 663480ca: 44 89 48 14 mov %r9d,0x14(%rax) + 663480ce: 8b 1b mov (%rbx),%ebx + 663480d0: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 663480d4: 85 db test %ebx,%ebx + 663480d6: 41 0f 9f c3 setg %r11b + 663480da: 45 3b 19 cmp (%r9),%r11d + 663480dd: 74 31 je 66348110 + 663480df: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663480e3: 4d 8b 49 28 mov 0x28(%r9),%r9 + 663480e7: 45 8b 19 mov (%r9),%r11d + 663480ea: 45 85 db test %r11d,%r11d + 663480ed: 75 21 jne 66348110 + 663480ef: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663480f3: 4d 8b 59 28 mov 0x28(%r9),%r11 + 663480f7: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663480fb: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348102: 4d 63 08 movslq (%r8),%r9 + 66348105: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348109: 41 89 18 mov %ebx,(%r8) + 6634810c: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348110: 4c 8b 4a 10 mov 0x10(%rdx),%r9 + 66348114: 44 8b 58 18 mov 0x18(%rax),%r11d + 66348118: 45 8b 09 mov (%r9),%r9d + 6634811b: 45 39 d9 cmp %r11d,%r9d + 6634811e: 74 5a je 6634817a + 66348120: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66348124: 44 89 ce mov %r9d,%esi + 66348127: 44 29 de sub %r11d,%esi + 6634812a: 45 31 db xor %r11d,%r11d + 6634812d: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 66348131: 01 33 add %esi,(%rbx) + 66348133: 44 89 48 18 mov %r9d,0x18(%rax) + 66348137: 44 8b 0b mov (%rbx),%r9d + 6634813a: 45 85 c9 test %r9d,%r9d + 6634813d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 66348141: 41 0f 9f c3 setg %r11b + 66348145: 45 3b 19 cmp (%r9),%r11d + 66348148: 74 30 je 6634817a + 6634814a: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634814e: 4d 8b 49 30 mov 0x30(%r9),%r9 + 66348152: 41 8b 31 mov (%r9),%esi + 66348155: 85 f6 test %esi,%esi + 66348157: 75 21 jne 6634817a + 66348159: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634815d: 4d 8b 59 30 mov 0x30(%r9),%r11 + 66348161: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348165: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634816c: 4d 63 08 movslq (%r8),%r9 + 6634816f: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348173: 41 89 18 mov %ebx,(%r8) + 66348176: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 6634817a: 4c 8b 4a 18 mov 0x18(%rdx),%r9 + 6634817e: 44 8b 58 1c mov 0x1c(%rax),%r11d + 66348182: 45 8b 09 mov (%r9),%r9d + 66348185: 45 39 d9 cmp %r11d,%r9d + 66348188: 74 59 je 663481e3 + 6634818a: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634818e: 44 89 ce mov %r9d,%esi + 66348191: 44 29 de sub %r11d,%esi + 66348194: 45 31 db xor %r11d,%r11d + 66348197: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 6634819b: 01 33 add %esi,(%rbx) + 6634819d: 44 89 48 1c mov %r9d,0x1c(%rax) + 663481a1: 8b 1b mov (%rbx),%ebx + 663481a3: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 663481a7: 85 db test %ebx,%ebx + 663481a9: 41 0f 9f c3 setg %r11b + 663481ad: 45 3b 19 cmp (%r9),%r11d + 663481b0: 74 31 je 663481e3 + 663481b2: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663481b6: 4d 8b 49 38 mov 0x38(%r9),%r9 + 663481ba: 45 8b 09 mov (%r9),%r9d + 663481bd: 45 85 c9 test %r9d,%r9d + 663481c0: 75 21 jne 663481e3 + 663481c2: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663481c6: 4d 8b 59 38 mov 0x38(%r9),%r11 + 663481ca: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663481ce: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663481d5: 4d 63 08 movslq (%r8),%r9 + 663481d8: 41 8d 59 01 lea 0x1(%r9),%ebx + 663481dc: 41 89 18 mov %ebx,(%r8) + 663481df: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663481e3: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 663481e7: 44 8b 58 20 mov 0x20(%rax),%r11d + 663481eb: 45 8b 09 mov (%r9),%r9d + 663481ee: 45 39 d9 cmp %r11d,%r9d + 663481f1: 0f 84 9f 01 00 00 je 66348396 + 663481f7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663481fb: 44 89 ce mov %r9d,%esi + 663481fe: 44 29 de sub %r11d,%esi + 66348201: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66348205: 01 33 add %esi,(%rbx) + 66348207: 44 89 48 20 mov %r9d,0x20(%rax) + 6634820b: 8b 33 mov (%rbx),%esi + 6634820d: 85 f6 test %esi,%esi + 6634820f: e9 44 01 00 00 jmpq 66348358 + 66348214: 44 8b 48 14 mov 0x14(%rax),%r9d + 66348218: 45 85 c9 test %r9d,%r9d + 6634821b: 74 58 je 66348275 + 6634821d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348221: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66348225: 45 29 0b sub %r9d,(%r11) + 66348228: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 6634822f: 41 8b 1b mov (%r11),%ebx + 66348232: 45 31 db xor %r11d,%r11d + 66348235: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 66348239: 85 db test %ebx,%ebx + 6634823b: 41 0f 9f c3 setg %r11b + 6634823f: 45 3b 19 cmp (%r9),%r11d + 66348242: 74 31 je 66348275 + 66348244: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66348248: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634824c: 45 8b 19 mov (%r9),%r11d + 6634824f: 45 85 db test %r11d,%r11d + 66348252: 75 21 jne 66348275 + 66348254: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66348258: 4d 8b 59 28 mov 0x28(%r9),%r11 + 6634825c: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348260: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348267: 4d 63 08 movslq (%r8),%r9 + 6634826a: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634826e: 41 89 18 mov %ebx,(%r8) + 66348271: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348275: 44 8b 48 18 mov 0x18(%rax),%r9d + 66348279: 45 85 c9 test %r9d,%r9d + 6634827c: 74 58 je 663482d6 + 6634827e: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348282: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66348286: 45 29 0b sub %r9d,(%r11) + 66348289: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 66348290: 45 8b 0b mov (%r11),%r9d + 66348293: 45 31 db xor %r11d,%r11d + 66348296: 45 85 c9 test %r9d,%r9d + 66348299: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 6634829d: 41 0f 9f c3 setg %r11b + 663482a1: 45 3b 19 cmp (%r9),%r11d + 663482a4: 74 30 je 663482d6 + 663482a6: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663482aa: 4d 8b 49 30 mov 0x30(%r9),%r9 + 663482ae: 41 8b 31 mov (%r9),%esi + 663482b1: 85 f6 test %esi,%esi + 663482b3: 75 21 jne 663482d6 + 663482b5: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663482b9: 4d 8b 59 30 mov 0x30(%r9),%r11 + 663482bd: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663482c1: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663482c8: 4d 63 08 movslq (%r8),%r9 + 663482cb: 41 8d 59 01 lea 0x1(%r9),%ebx + 663482cf: 41 89 18 mov %ebx,(%r8) + 663482d2: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663482d6: 44 8b 48 1c mov 0x1c(%rax),%r9d + 663482da: 45 85 c9 test %r9d,%r9d + 663482dd: 74 58 je 66348337 + 663482df: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663482e3: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 663482e7: 45 29 0b sub %r9d,(%r11) + 663482ea: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 663482f1: 41 8b 1b mov (%r11),%ebx + 663482f4: 45 31 db xor %r11d,%r11d + 663482f7: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 663482fb: 85 db test %ebx,%ebx + 663482fd: 41 0f 9f c3 setg %r11b + 66348301: 45 3b 19 cmp (%r9),%r11d + 66348304: 74 31 je 66348337 + 66348306: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634830a: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634830e: 45 8b 19 mov (%r9),%r11d + 66348311: 45 85 db test %r11d,%r11d + 66348314: 75 21 jne 66348337 + 66348316: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634831a: 4d 8b 59 38 mov 0x38(%r9),%r11 + 6634831e: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348322: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348329: 4d 63 08 movslq (%r8),%r9 + 6634832c: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348330: 41 89 18 mov %ebx,(%r8) + 66348333: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348337: 44 8b 48 20 mov 0x20(%rax),%r9d + 6634833b: 45 85 c9 test %r9d,%r9d + 6634833e: 74 56 je 66348396 + 66348340: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348344: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66348348: 45 29 0b sub %r9d,(%r11) + 6634834b: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 66348352: 45 8b 0b mov (%r11),%r9d + 66348355: 45 85 c9 test %r9d,%r9d + 66348358: 48 8b 42 40 mov 0x40(%rdx),%rax + 6634835c: 41 0f 9f c1 setg %r9b + 66348360: 45 0f b6 c9 movzbl %r9b,%r9d + 66348364: 44 3b 08 cmp (%rax),%r9d + 66348367: 74 2d je 66348396 + 66348369: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634836d: 48 8b 40 40 mov 0x40(%rax),%rax + 66348371: 8b 00 mov (%rax),%eax + 66348373: 85 c0 test %eax,%eax + 66348375: 75 1f jne 66348396 + 66348377: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634837b: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634837f: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348383: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348389: 49 63 00 movslq (%r8),%rax + 6634838c: 8d 48 01 lea 0x1(%rax),%ecx + 6634838f: 41 89 08 mov %ecx,(%r8) + 66348392: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66348396: 5b pop %rbx + 66348397: 5e pop %rsi + 66348398: c3 retq + 66348399: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066347e00 : - 66347e00: 41 55 push %r13 - 66347e02: 41 54 push %r12 - 66347e04: 55 push %rbp - 66347e05: 57 push %rdi - 66347e06: 56 push %rsi - 66347e07: 53 push %rbx - 66347e08: 48 83 ec 28 sub $0x28,%rsp - 66347e0c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66347e10: 49 8b 81 58 02 00 00 mov 0x258(%r9),%rax - 66347e17: 48 89 ce mov %rcx,%rsi - 66347e1a: 8b 18 mov (%rax),%ebx - 66347e1c: 85 db test %ebx,%ebx - 66347e1e: 0f 84 4c 01 00 00 je 66347f70 - 66347e24: 49 8b 41 10 mov 0x10(%r9),%rax - 66347e28: bb 2c 00 00 00 mov $0x2c,%ebx - 66347e2d: 4c 8d 2d cc c1 00 00 lea 0xc1cc(%rip),%r13 # 66354000 <.rdata> - 66347e34: 4c 8d 25 d5 c1 00 00 lea 0xc1d5(%rip),%r12 # 66354010 <.rdata+0x10> - 66347e3b: 8b 10 mov (%rax),%edx - 66347e3d: 49 8b 41 08 mov 0x8(%r9),%rax - 66347e41: 8b 00 mov (%rax),%eax - 66347e43: 8d 04 50 lea (%rax,%rdx,2),%eax - 66347e46: 49 8b 51 18 mov 0x18(%r9),%rdx - 66347e4a: 8b 12 mov (%rdx),%edx - 66347e4c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66347e4f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66347e53: 8b 12 mov (%rdx),%edx - 66347e55: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66347e58: 49 8b 41 28 mov 0x28(%r9),%rax - 66347e5c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66347e60: 8b 00 mov (%rax),%eax - 66347e62: c1 e0 04 shl $0x4,%eax - 66347e65: 01 c7 add %eax,%edi - 66347e67: 49 8b 41 30 mov 0x30(%r9),%rax - 66347e6b: 8b 00 mov (%rax),%eax - 66347e6d: c1 e0 05 shl $0x5,%eax - 66347e70: 01 f8 add %edi,%eax - 66347e72: 8b 3a mov (%rdx),%edi - 66347e74: 49 8b 51 50 mov 0x50(%r9),%rdx - 66347e78: c1 e7 06 shl $0x6,%edi - 66347e7b: 01 c7 add %eax,%edi - 66347e7d: 49 8b 41 40 mov 0x40(%r9),%rax - 66347e81: 8b 00 mov (%rax),%eax - 66347e83: c1 e0 07 shl $0x7,%eax - 66347e86: 01 c7 add %eax,%edi - 66347e88: 49 8b 41 48 mov 0x48(%r9),%rax - 66347e8c: 8b 00 mov (%rax),%eax - 66347e8e: c1 e0 08 shl $0x8,%eax - 66347e91: 01 f8 add %edi,%eax - 66347e93: 8b 3a mov (%rdx),%edi - 66347e95: c1 e7 09 shl $0x9,%edi - 66347e98: 01 c7 add %eax,%edi - 66347e9a: 48 63 ef movslq %edi,%rbp - 66347e9d: 48 c1 e5 02 shl $0x2,%rbp - 66347ea1: 85 ff test %edi,%edi - 66347ea3: 78 05 js 66347eaa - 66347ea5: 39 7e 38 cmp %edi,0x38(%rsi) - 66347ea8: 7f 11 jg 66347ebb - 66347eaa: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66347eb0: 4c 89 ea mov %r13,%rdx - 66347eb3: 4c 89 e1 mov %r12,%rcx - 66347eb6: e8 95 a0 00 00 callq 66351f50 <_assert> - 66347ebb: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66347ebf: 48 8b 46 40 mov 0x40(%rsi),%rax - 66347ec3: 48 01 da add %rbx,%rdx - 66347ec6: 8b 04 28 mov (%rax,%rbp,1),%eax - 66347ec9: 8b 0a mov (%rdx),%ecx - 66347ecb: 39 c8 cmp %ecx,%eax - 66347ecd: 74 6c je 66347f3b - 66347ecf: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66347ed3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66347ed7: 41 89 c3 mov %eax,%r11d - 66347eda: 41 29 cb sub %ecx,%r11d - 66347edd: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66347ee1: 45 01 18 add %r11d,(%r8) - 66347ee4: 89 02 mov %eax,(%rdx) - 66347ee6: 31 d2 xor %edx,%edx - 66347ee8: 48 8b 46 10 mov 0x10(%rsi),%rax - 66347eec: 45 8b 18 mov (%r8),%r11d - 66347eef: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66347ef3: 45 85 db test %r11d,%r11d - 66347ef6: 0f 9f c2 setg %dl - 66347ef9: 3b 10 cmp (%rax),%edx - 66347efb: 74 3e je 66347f3b - 66347efd: 48 8b 46 20 mov 0x20(%rsi),%rax - 66347f01: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66347f05: 44 8b 10 mov (%rax),%r10d - 66347f08: 45 85 d2 test %r10d,%r10d - 66347f0b: 75 2e jne 66347f3b - 66347f0d: 48 8b 46 28 mov 0x28(%rsi),%rax - 66347f11: 48 8b 0d 18 fa 00 00 mov 0xfa18(%rip),%rcx # 66357930 - 66347f18: 4c 8b 05 01 fa 00 00 mov 0xfa01(%rip),%r8 # 66357920 - 66347f1f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66347f23: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347f27: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347f2d: 48 63 01 movslq (%rcx),%rax - 66347f30: 44 8d 48 01 lea 0x1(%rax),%r9d - 66347f34: 44 89 09 mov %r9d,(%rcx) - 66347f37: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66347f3b: 48 83 c3 04 add $0x4,%rbx - 66347f3f: 81 c7 00 04 00 00 add $0x400,%edi - 66347f45: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 66347f4c: 48 81 fb 2c 01 00 00 cmp $0x12c,%rbx - 66347f53: 0f 85 48 ff ff ff jne 66347ea1 - 66347f59: 48 83 c4 28 add $0x28,%rsp - 66347f5d: 5b pop %rbx - 66347f5e: 5e pop %rsi - 66347f5f: 5f pop %rdi - 66347f60: 5d pop %rbp - 66347f61: 41 5c pop %r12 - 66347f63: 41 5d pop %r13 - 66347f65: c3 retq - 66347f66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347f6d: 00 00 00 - 66347f70: 48 8b 41 08 mov 0x8(%rcx),%rax - 66347f74: 4c 8b 1d a5 f9 00 00 mov 0xf9a5(%rip),%r11 # 66357920 - 66347f7b: 4c 8b 15 ae f9 00 00 mov 0xf9ae(%rip),%r10 # 66357930 - 66347f82: 48 8d 50 2c lea 0x2c(%rax),%rdx - 66347f86: b8 58 00 00 00 mov $0x58,%eax - 66347f8b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66347f90: 8b 0a mov (%rdx),%ecx - 66347f92: 85 c9 test %ecx,%ecx - 66347f94: 74 55 je 66347feb - 66347f96: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66347f9a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66347f9e: 41 29 08 sub %ecx,(%r8) - 66347fa1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66347fa7: 45 8b 00 mov (%r8),%r8d - 66347faa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66347fae: 45 85 c0 test %r8d,%r8d - 66347fb1: 41 0f 9f c0 setg %r8b - 66347fb5: 45 0f b6 c0 movzbl %r8b,%r8d - 66347fb9: 44 3b 01 cmp (%rcx),%r8d - 66347fbc: 74 2d je 66347feb - 66347fbe: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66347fc2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66347fc6: 8b 09 mov (%rcx),%ecx - 66347fc8: 85 c9 test %ecx,%ecx - 66347fca: 75 1f jne 66347feb - 66347fcc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66347fd0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66347fd4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66347fd8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66347fde: 49 63 0a movslq (%r10),%rcx - 66347fe1: 8d 59 01 lea 0x1(%rcx),%ebx - 66347fe4: 41 89 1a mov %ebx,(%r10) - 66347fe7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66347feb: 48 83 c0 08 add $0x8,%rax - 66347fef: 48 83 c2 04 add $0x4,%rdx - 66347ff3: 48 3d 58 02 00 00 cmp $0x258,%rax - 66347ff9: 75 95 jne 66347f90 - 66347ffb: 48 83 c4 28 add $0x28,%rsp - 66347fff: 5b pop %rbx - 66348000: 5e pop %rsi - 66348001: 5f pop %rdi - 66348002: 5d pop %rbp - 66348003: 41 5c pop %r12 - 66348005: 41 5d pop %r13 - 66348007: c3 retq - 66348008: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634800f: 00 +00000000663483a0 : + 663483a0: 56 push %rsi + 663483a1: 53 push %rbx + 663483a2: 4c 8b 15 77 f5 00 00 mov 0xf577(%rip),%r10 # 66357920 + 663483a9: 4c 8b 05 80 f5 00 00 mov 0xf580(%rip),%r8 # 66357930 + 663483b0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663483b4: 48 8b 41 08 mov 0x8(%rcx),%rax + 663483b8: 4c 8b 4a 48 mov 0x48(%rdx),%r9 + 663483bc: 41 8b 31 mov (%r9),%esi + 663483bf: 85 f6 test %esi,%esi + 663483c1: 0f 84 6d 01 00 00 je 66348534 + 663483c7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 + 663483cb: 44 8b 58 14 mov 0x14(%rax),%r11d + 663483cf: 45 8b 09 mov (%r9),%r9d + 663483d2: 45 39 cb cmp %r9d,%r11d + 663483d5: 74 59 je 66348430 + 663483d7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663483db: 44 89 ce mov %r9d,%esi + 663483de: 44 29 de sub %r11d,%esi + 663483e1: 45 31 db xor %r11d,%r11d + 663483e4: 48 8b 5b 28 mov 0x28(%rbx),%rbx + 663483e8: 01 33 add %esi,(%rbx) + 663483ea: 44 89 48 14 mov %r9d,0x14(%rax) + 663483ee: 8b 1b mov (%rbx),%ebx + 663483f0: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 663483f4: 85 db test %ebx,%ebx + 663483f6: 41 0f 9f c3 setg %r11b + 663483fa: 45 3b 19 cmp (%r9),%r11d + 663483fd: 74 31 je 66348430 + 663483ff: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66348403: 4d 8b 49 28 mov 0x28(%r9),%r9 + 66348407: 45 8b 19 mov (%r9),%r11d + 6634840a: 45 85 db test %r11d,%r11d + 6634840d: 75 21 jne 66348430 + 6634840f: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66348413: 4d 8b 59 28 mov 0x28(%r9),%r11 + 66348417: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 6634841b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348422: 4d 63 08 movslq (%r8),%r9 + 66348425: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348429: 41 89 18 mov %ebx,(%r8) + 6634842c: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348430: 4c 8b 4a 10 mov 0x10(%rdx),%r9 + 66348434: 44 8b 58 18 mov 0x18(%rax),%r11d + 66348438: 45 8b 09 mov (%r9),%r9d + 6634843b: 45 39 d9 cmp %r11d,%r9d + 6634843e: 74 5a je 6634849a + 66348440: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66348444: 44 89 ce mov %r9d,%esi + 66348447: 44 29 de sub %r11d,%esi + 6634844a: 45 31 db xor %r11d,%r11d + 6634844d: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 66348451: 01 33 add %esi,(%rbx) + 66348453: 44 89 48 18 mov %r9d,0x18(%rax) + 66348457: 44 8b 0b mov (%rbx),%r9d + 6634845a: 45 85 c9 test %r9d,%r9d + 6634845d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 66348461: 41 0f 9f c3 setg %r11b + 66348465: 45 3b 19 cmp (%r9),%r11d + 66348468: 74 30 je 6634849a + 6634846a: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634846e: 4d 8b 49 30 mov 0x30(%r9),%r9 + 66348472: 41 8b 31 mov (%r9),%esi + 66348475: 85 f6 test %esi,%esi + 66348477: 75 21 jne 6634849a + 66348479: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634847d: 4d 8b 59 30 mov 0x30(%r9),%r11 + 66348481: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348485: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634848c: 4d 63 08 movslq (%r8),%r9 + 6634848f: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348493: 41 89 18 mov %ebx,(%r8) + 66348496: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 6634849a: 4c 8b 4a 18 mov 0x18(%rdx),%r9 + 6634849e: 44 8b 58 1c mov 0x1c(%rax),%r11d + 663484a2: 45 8b 09 mov (%r9),%r9d + 663484a5: 45 39 d9 cmp %r11d,%r9d + 663484a8: 74 59 je 66348503 + 663484aa: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663484ae: 44 89 ce mov %r9d,%esi + 663484b1: 44 29 de sub %r11d,%esi + 663484b4: 45 31 db xor %r11d,%r11d + 663484b7: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 663484bb: 01 33 add %esi,(%rbx) + 663484bd: 44 89 48 1c mov %r9d,0x1c(%rax) + 663484c1: 8b 1b mov (%rbx),%ebx + 663484c3: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 663484c7: 85 db test %ebx,%ebx + 663484c9: 41 0f 9f c3 setg %r11b + 663484cd: 45 3b 19 cmp (%r9),%r11d + 663484d0: 74 31 je 66348503 + 663484d2: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663484d6: 4d 8b 49 38 mov 0x38(%r9),%r9 + 663484da: 45 8b 09 mov (%r9),%r9d + 663484dd: 45 85 c9 test %r9d,%r9d + 663484e0: 75 21 jne 66348503 + 663484e2: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663484e6: 4d 8b 59 38 mov 0x38(%r9),%r11 + 663484ea: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663484ee: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663484f5: 4d 63 08 movslq (%r8),%r9 + 663484f8: 41 8d 59 01 lea 0x1(%r9),%ebx + 663484fc: 41 89 18 mov %ebx,(%r8) + 663484ff: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348503: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 66348507: 44 8b 58 20 mov 0x20(%rax),%r11d + 6634850b: 45 8b 09 mov (%r9),%r9d + 6634850e: 45 39 d9 cmp %r11d,%r9d + 66348511: 0f 84 9f 01 00 00 je 663486b6 + 66348517: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634851b: 44 89 ce mov %r9d,%esi + 6634851e: 44 29 de sub %r11d,%esi + 66348521: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66348525: 01 33 add %esi,(%rbx) + 66348527: 44 89 48 20 mov %r9d,0x20(%rax) + 6634852b: 8b 33 mov (%rbx),%esi + 6634852d: 85 f6 test %esi,%esi + 6634852f: e9 44 01 00 00 jmpq 66348678 + 66348534: 44 8b 48 14 mov 0x14(%rax),%r9d + 66348538: 45 85 c9 test %r9d,%r9d + 6634853b: 74 58 je 66348595 + 6634853d: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348541: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66348545: 45 29 0b sub %r9d,(%r11) + 66348548: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 6634854f: 41 8b 1b mov (%r11),%ebx + 66348552: 45 31 db xor %r11d,%r11d + 66348555: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 66348559: 85 db test %ebx,%ebx + 6634855b: 41 0f 9f c3 setg %r11b + 6634855f: 45 3b 19 cmp (%r9),%r11d + 66348562: 74 31 je 66348595 + 66348564: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66348568: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634856c: 45 8b 19 mov (%r9),%r11d + 6634856f: 45 85 db test %r11d,%r11d + 66348572: 75 21 jne 66348595 + 66348574: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66348578: 4d 8b 59 28 mov 0x28(%r9),%r11 + 6634857c: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348580: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348587: 4d 63 08 movslq (%r8),%r9 + 6634858a: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634858e: 41 89 18 mov %ebx,(%r8) + 66348591: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348595: 44 8b 48 18 mov 0x18(%rax),%r9d + 66348599: 45 85 c9 test %r9d,%r9d + 6634859c: 74 58 je 663485f6 + 6634859e: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663485a2: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 663485a6: 45 29 0b sub %r9d,(%r11) + 663485a9: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 663485b0: 45 8b 0b mov (%r11),%r9d + 663485b3: 45 31 db xor %r11d,%r11d + 663485b6: 45 85 c9 test %r9d,%r9d + 663485b9: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 663485bd: 41 0f 9f c3 setg %r11b + 663485c1: 45 3b 19 cmp (%r9),%r11d + 663485c4: 74 30 je 663485f6 + 663485c6: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663485ca: 4d 8b 49 30 mov 0x30(%r9),%r9 + 663485ce: 41 8b 31 mov (%r9),%esi + 663485d1: 85 f6 test %esi,%esi + 663485d3: 75 21 jne 663485f6 + 663485d5: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663485d9: 4d 8b 59 30 mov 0x30(%r9),%r11 + 663485dd: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663485e1: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663485e8: 4d 63 08 movslq (%r8),%r9 + 663485eb: 41 8d 59 01 lea 0x1(%r9),%ebx + 663485ef: 41 89 18 mov %ebx,(%r8) + 663485f2: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663485f6: 44 8b 48 1c mov 0x1c(%rax),%r9d + 663485fa: 45 85 c9 test %r9d,%r9d + 663485fd: 74 58 je 66348657 + 663485ff: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348603: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66348607: 45 29 0b sub %r9d,(%r11) + 6634860a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 66348611: 41 8b 1b mov (%r11),%ebx + 66348614: 45 31 db xor %r11d,%r11d + 66348617: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 6634861b: 85 db test %ebx,%ebx + 6634861d: 41 0f 9f c3 setg %r11b + 66348621: 45 3b 19 cmp (%r9),%r11d + 66348624: 74 31 je 66348657 + 66348626: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634862a: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634862e: 45 8b 19 mov (%r9),%r11d + 66348631: 45 85 db test %r11d,%r11d + 66348634: 75 21 jne 66348657 + 66348636: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634863a: 4d 8b 59 38 mov 0x38(%r9),%r11 + 6634863e: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66348642: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66348649: 4d 63 08 movslq (%r8),%r9 + 6634864c: 41 8d 59 01 lea 0x1(%r9),%ebx + 66348650: 41 89 18 mov %ebx,(%r8) + 66348653: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66348657: 44 8b 48 20 mov 0x20(%rax),%r9d + 6634865b: 45 85 c9 test %r9d,%r9d + 6634865e: 74 56 je 663486b6 + 66348660: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66348664: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66348668: 45 29 0b sub %r9d,(%r11) + 6634866b: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 66348672: 45 8b 0b mov (%r11),%r9d + 66348675: 45 85 c9 test %r9d,%r9d + 66348678: 48 8b 42 40 mov 0x40(%rdx),%rax + 6634867c: 41 0f 9f c1 setg %r9b + 66348680: 45 0f b6 c9 movzbl %r9b,%r9d + 66348684: 44 3b 08 cmp (%rax),%r9d + 66348687: 74 2d je 663486b6 + 66348689: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634868d: 48 8b 40 40 mov 0x40(%rax),%rax + 66348691: 8b 00 mov (%rax),%eax + 66348693: 85 c0 test %eax,%eax + 66348695: 75 1f jne 663486b6 + 66348697: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634869b: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634869f: 48 8b 42 10 mov 0x10(%rdx),%rax + 663486a3: c7 00 01 00 00 00 movl $0x1,(%rax) + 663486a9: 49 63 00 movslq (%r8),%rax + 663486ac: 8d 48 01 lea 0x1(%rax),%ecx + 663486af: 41 89 08 mov %ecx,(%r8) + 663486b2: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 663486b6: 5b pop %rbx + 663486b7: 5e pop %rsi + 663486b8: c3 retq + 663486b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066348010 : - 66348010: 41 55 push %r13 - 66348012: 41 54 push %r12 - 66348014: 55 push %rbp - 66348015: 57 push %rdi - 66348016: 56 push %rsi - 66348017: 53 push %rbx - 66348018: 48 83 ec 28 sub $0x28,%rsp - 6634801c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348020: 49 8b 81 48 02 00 00 mov 0x248(%r9),%rax - 66348027: 48 89 ce mov %rcx,%rsi - 6634802a: 8b 18 mov (%rax),%ebx - 6634802c: 85 db test %ebx,%ebx - 6634802e: 0f 84 31 01 00 00 je 66348165 - 66348034: 49 8b 41 10 mov 0x10(%r9),%rax - 66348038: bb 24 00 00 00 mov $0x24,%ebx - 6634803d: 4c 8d 2d bc bf 00 00 lea 0xbfbc(%rip),%r13 # 66354000 <.rdata> - 66348044: 4c 8d 25 c5 bf 00 00 lea 0xbfc5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634804b: 8b 10 mov (%rax),%edx - 6634804d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348051: 8b 00 mov (%rax),%eax - 66348053: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348056: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634805a: 8b 12 mov (%rdx),%edx - 6634805c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634805f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348063: 8b 12 mov (%rdx),%edx - 66348065: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66348068: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634806c: 8b 3a mov (%rdx),%edi - 6634806e: 49 8b 51 40 mov 0x40(%r9),%rdx - 66348072: c1 e7 04 shl $0x4,%edi - 66348075: 01 c7 add %eax,%edi - 66348077: 49 8b 41 30 mov 0x30(%r9),%rax - 6634807b: 8b 00 mov (%rax),%eax - 6634807d: c1 e0 05 shl $0x5,%eax - 66348080: 01 c7 add %eax,%edi - 66348082: 49 8b 41 38 mov 0x38(%r9),%rax - 66348086: 8b 00 mov (%rax),%eax - 66348088: c1 e0 06 shl $0x6,%eax - 6634808b: 01 f8 add %edi,%eax - 6634808d: 8b 3a mov (%rdx),%edi - 6634808f: c1 e7 07 shl $0x7,%edi - 66348092: 01 c7 add %eax,%edi - 66348094: 48 63 ef movslq %edi,%rbp - 66348097: 48 c1 e5 02 shl $0x2,%rbp - 6634809b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663480a0: 85 ff test %edi,%edi - 663480a2: 78 05 js 663480a9 - 663480a4: 39 7e 38 cmp %edi,0x38(%rsi) - 663480a7: 7f 11 jg 663480ba - 663480a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663480af: 4c 89 ea mov %r13,%rdx - 663480b2: 4c 89 e1 mov %r12,%rcx - 663480b5: e8 96 9e 00 00 callq 66351f50 <_assert> - 663480ba: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663480be: 48 8b 46 40 mov 0x40(%rsi),%rax - 663480c2: 48 01 da add %rbx,%rdx - 663480c5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663480c8: 8b 0a mov (%rdx),%ecx - 663480ca: 39 c8 cmp %ecx,%eax - 663480cc: 74 6c je 6634813a - 663480ce: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663480d2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663480d6: 41 89 c3 mov %eax,%r11d - 663480d9: 41 29 cb sub %ecx,%r11d - 663480dc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663480e0: 45 01 18 add %r11d,(%r8) - 663480e3: 89 02 mov %eax,(%rdx) - 663480e5: 31 d2 xor %edx,%edx - 663480e7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663480eb: 45 8b 18 mov (%r8),%r11d - 663480ee: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663480f2: 45 85 db test %r11d,%r11d - 663480f5: 0f 9f c2 setg %dl - 663480f8: 3b 10 cmp (%rax),%edx - 663480fa: 74 3e je 6634813a - 663480fc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348100: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348104: 44 8b 10 mov (%rax),%r10d - 66348107: 45 85 d2 test %r10d,%r10d - 6634810a: 75 2e jne 6634813a - 6634810c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348110: 48 8b 0d 19 f8 00 00 mov 0xf819(%rip),%rcx # 66357930 - 66348117: 4c 8b 05 02 f8 00 00 mov 0xf802(%rip),%r8 # 66357920 - 6634811e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348122: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348126: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634812c: 48 63 01 movslq (%rcx),%rax - 6634812f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348133: 44 89 09 mov %r9d,(%rcx) - 66348136: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634813a: 48 83 c3 04 add $0x4,%rbx - 6634813e: 81 c7 00 01 00 00 add $0x100,%edi - 66348144: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634814b: 48 81 fb 24 01 00 00 cmp $0x124,%rbx - 66348152: 0f 85 48 ff ff ff jne 663480a0 - 66348158: 48 83 c4 28 add $0x28,%rsp - 6634815c: 5b pop %rbx - 6634815d: 5e pop %rsi - 6634815e: 5f pop %rdi - 6634815f: 5d pop %rbp - 66348160: 41 5c pop %r12 - 66348162: 41 5d pop %r13 - 66348164: c3 retq - 66348165: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348169: 4c 8b 1d b0 f7 00 00 mov 0xf7b0(%rip),%r11 # 66357920 - 66348170: 4c 8b 15 b9 f7 00 00 mov 0xf7b9(%rip),%r10 # 66357930 - 66348177: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634817b: b8 48 00 00 00 mov $0x48,%eax - 66348180: 8b 0a mov (%rdx),%ecx - 66348182: 85 c9 test %ecx,%ecx - 66348184: 74 55 je 663481db - 66348186: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634818a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634818e: 41 29 08 sub %ecx,(%r8) - 66348191: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348197: 45 8b 00 mov (%r8),%r8d - 6634819a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634819e: 45 85 c0 test %r8d,%r8d - 663481a1: 41 0f 9f c0 setg %r8b - 663481a5: 45 0f b6 c0 movzbl %r8b,%r8d - 663481a9: 44 3b 01 cmp (%rcx),%r8d - 663481ac: 74 2d je 663481db - 663481ae: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663481b2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663481b6: 8b 09 mov (%rcx),%ecx - 663481b8: 85 c9 test %ecx,%ecx - 663481ba: 75 1f jne 663481db - 663481bc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663481c0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663481c4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663481c8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663481ce: 49 63 0a movslq (%r10),%rcx - 663481d1: 8d 59 01 lea 0x1(%rcx),%ebx - 663481d4: 41 89 1a mov %ebx,(%r10) - 663481d7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663481db: 48 83 c0 08 add $0x8,%rax - 663481df: 48 83 c2 04 add $0x4,%rdx - 663481e3: 48 3d 48 02 00 00 cmp $0x248,%rax - 663481e9: 75 95 jne 66348180 - 663481eb: 48 83 c4 28 add $0x28,%rsp - 663481ef: 5b pop %rbx - 663481f0: 5e pop %rsi - 663481f1: 5f pop %rdi - 663481f2: 5d pop %rbp - 663481f3: 41 5c pop %r12 - 663481f5: 41 5d pop %r13 - 663481f7: c3 retq - 663481f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663481ff: 00 +00000000663486c0 : + 663486c0: 41 55 push %r13 + 663486c2: 41 54 push %r12 + 663486c4: 55 push %rbp + 663486c5: 57 push %rdi + 663486c6: 56 push %rsi + 663486c7: 53 push %rbx + 663486c8: 48 83 ec 28 sub $0x28,%rsp + 663486cc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663486d0: 49 8b 81 60 02 00 00 mov 0x260(%r9),%rax + 663486d7: 48 89 ce mov %rcx,%rsi + 663486da: 8b 18 mov (%rax),%ebx + 663486dc: 85 db test %ebx,%ebx + 663486de: 0f 84 51 01 00 00 je 66348835 + 663486e4: 49 8b 41 10 mov 0x10(%r9),%rax + 663486e8: bb 30 00 00 00 mov $0x30,%ebx + 663486ed: 4c 8d 2d 0c b9 00 00 lea 0xb90c(%rip),%r13 # 66354000 <.rdata> + 663486f4: 4c 8d 25 15 b9 00 00 lea 0xb915(%rip),%r12 # 66354010 <.rdata+0x10> + 663486fb: 8b 10 mov (%rax),%edx + 663486fd: 49 8b 41 08 mov 0x8(%r9),%rax + 66348701: 8b 00 mov (%rax),%eax + 66348703: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348706: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634870a: 8b 12 mov (%rdx),%edx + 6634870c: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634870f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348713: 8b 12 mov (%rdx),%edx + 66348715: 8d 04 d0 lea (%rax,%rdx,8),%eax + 66348718: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634871c: 8b 3a mov (%rdx),%edi + 6634871e: 49 8b 51 40 mov 0x40(%r9),%rdx + 66348722: c1 e7 04 shl $0x4,%edi + 66348725: 01 c7 add %eax,%edi + 66348727: 49 8b 41 30 mov 0x30(%r9),%rax + 6634872b: 8b 00 mov (%rax),%eax + 6634872d: c1 e0 05 shl $0x5,%eax + 66348730: 01 c7 add %eax,%edi + 66348732: 49 8b 41 38 mov 0x38(%r9),%rax + 66348736: 8b 00 mov (%rax),%eax + 66348738: c1 e0 06 shl $0x6,%eax + 6634873b: 01 f8 add %edi,%eax + 6634873d: 8b 3a mov (%rdx),%edi + 6634873f: 49 8b 51 58 mov 0x58(%r9),%rdx + 66348743: c1 e7 07 shl $0x7,%edi + 66348746: 01 c7 add %eax,%edi + 66348748: 49 8b 41 48 mov 0x48(%r9),%rax + 6634874c: 8b 00 mov (%rax),%eax + 6634874e: c1 e0 08 shl $0x8,%eax + 66348751: 01 c7 add %eax,%edi + 66348753: 49 8b 41 50 mov 0x50(%r9),%rax + 66348757: 8b 00 mov (%rax),%eax + 66348759: c1 e0 09 shl $0x9,%eax + 6634875c: 01 f8 add %edi,%eax + 6634875e: 8b 3a mov (%rdx),%edi + 66348760: c1 e7 0a shl $0xa,%edi + 66348763: 01 c7 add %eax,%edi + 66348765: 48 63 ef movslq %edi,%rbp + 66348768: 48 c1 e5 02 shl $0x2,%rbp + 6634876c: 0f 1f 40 00 nopl 0x0(%rax) + 66348770: 85 ff test %edi,%edi + 66348772: 78 05 js 66348779 + 66348774: 39 7e 38 cmp %edi,0x38(%rsi) + 66348777: 7f 11 jg 6634878a + 66348779: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634877f: 4c 89 ea mov %r13,%rdx + 66348782: 4c 89 e1 mov %r12,%rcx + 66348785: e8 86 9a 00 00 callq 66352210 <_assert> + 6634878a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634878e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66348792: 48 01 da add %rbx,%rdx + 66348795: 8b 04 28 mov (%rax,%rbp,1),%eax + 66348798: 8b 0a mov (%rdx),%ecx + 6634879a: 39 c8 cmp %ecx,%eax + 6634879c: 74 6c je 6634880a + 6634879e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 663487a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 663487a6: 41 89 c3 mov %eax,%r11d + 663487a9: 41 29 cb sub %ecx,%r11d + 663487ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 663487b0: 45 01 18 add %r11d,(%r8) + 663487b3: 89 02 mov %eax,(%rdx) + 663487b5: 31 d2 xor %edx,%edx + 663487b7: 48 8b 46 10 mov 0x10(%rsi),%rax + 663487bb: 45 8b 18 mov (%r8),%r11d + 663487be: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663487c2: 45 85 db test %r11d,%r11d + 663487c5: 0f 9f c2 setg %dl + 663487c8: 3b 10 cmp (%rax),%edx + 663487ca: 74 3e je 6634880a + 663487cc: 48 8b 46 20 mov 0x20(%rsi),%rax + 663487d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663487d4: 44 8b 10 mov (%rax),%r10d + 663487d7: 45 85 d2 test %r10d,%r10d + 663487da: 75 2e jne 6634880a + 663487dc: 48 8b 46 28 mov 0x28(%rsi),%rax + 663487e0: 48 8b 0d 49 f1 00 00 mov 0xf149(%rip),%rcx # 66357930 + 663487e7: 4c 8b 05 32 f1 00 00 mov 0xf132(%rip),%r8 # 66357920 + 663487ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 663487f2: 48 8b 42 10 mov 0x10(%rdx),%rax + 663487f6: c7 00 01 00 00 00 movl $0x1,(%rax) + 663487fc: 48 63 01 movslq (%rcx),%rax + 663487ff: 44 8d 48 01 lea 0x1(%rax),%r9d + 66348803: 44 89 09 mov %r9d,(%rcx) + 66348806: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634880a: 48 83 c3 04 add $0x4,%rbx + 6634880e: 81 c7 00 08 00 00 add $0x800,%edi + 66348814: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634881b: 48 81 fb 30 01 00 00 cmp $0x130,%rbx + 66348822: 0f 85 48 ff ff ff jne 66348770 + 66348828: 48 83 c4 28 add $0x28,%rsp + 6634882c: 5b pop %rbx + 6634882d: 5e pop %rsi + 6634882e: 5f pop %rdi + 6634882f: 5d pop %rbp + 66348830: 41 5c pop %r12 + 66348832: 41 5d pop %r13 + 66348834: c3 retq + 66348835: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348839: 4c 8b 1d e0 f0 00 00 mov 0xf0e0(%rip),%r11 # 66357920 + 66348840: 4c 8b 15 e9 f0 00 00 mov 0xf0e9(%rip),%r10 # 66357930 + 66348847: 48 8d 50 30 lea 0x30(%rax),%rdx + 6634884b: b8 60 00 00 00 mov $0x60,%eax + 66348850: 8b 0a mov (%rdx),%ecx + 66348852: 85 c9 test %ecx,%ecx + 66348854: 74 55 je 663488ab + 66348856: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634885a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634885e: 41 29 08 sub %ecx,(%r8) + 66348861: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348867: 45 8b 00 mov (%r8),%r8d + 6634886a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634886e: 45 85 c0 test %r8d,%r8d + 66348871: 41 0f 9f c0 setg %r8b + 66348875: 45 0f b6 c0 movzbl %r8b,%r8d + 66348879: 44 3b 01 cmp (%rcx),%r8d + 6634887c: 74 2d je 663488ab + 6634887e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66348882: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348886: 8b 09 mov (%rcx),%ecx + 66348888: 85 c9 test %ecx,%ecx + 6634888a: 75 1f jne 663488ab + 6634888c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66348890: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348894: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348898: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634889e: 49 63 0a movslq (%r10),%rcx + 663488a1: 8d 59 01 lea 0x1(%rcx),%ebx + 663488a4: 41 89 1a mov %ebx,(%r10) + 663488a7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663488ab: 48 83 c0 08 add $0x8,%rax + 663488af: 48 83 c2 04 add $0x4,%rdx + 663488b3: 48 3d 60 02 00 00 cmp $0x260,%rax + 663488b9: 75 95 jne 66348850 + 663488bb: 48 83 c4 28 add $0x28,%rsp + 663488bf: 5b pop %rbx + 663488c0: 5e pop %rsi + 663488c1: 5f pop %rdi + 663488c2: 5d pop %rbp + 663488c3: 41 5c pop %r12 + 663488c5: 41 5d pop %r13 + 663488c7: c3 retq + 663488c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663488cf: 00 -0000000066348200 : - 66348200: 41 55 push %r13 - 66348202: 41 54 push %r12 - 66348204: 55 push %rbp - 66348205: 57 push %rdi - 66348206: 56 push %rsi - 66348207: 53 push %rbx - 66348208: 48 83 ec 28 sub $0x28,%rsp - 6634820c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348210: 49 8b 81 38 02 00 00 mov 0x238(%r9),%rax - 66348217: 48 89 ce mov %rcx,%rsi - 6634821a: 8b 18 mov (%rax),%ebx - 6634821c: 85 db test %ebx,%ebx - 6634821e: 0f 84 1c 01 00 00 je 66348340 - 66348224: 49 8b 41 10 mov 0x10(%r9),%rax - 66348228: bb 1c 00 00 00 mov $0x1c,%ebx - 6634822d: 4c 8d 2d cc bd 00 00 lea 0xbdcc(%rip),%r13 # 66354000 <.rdata> - 66348234: 4c 8d 25 d5 bd 00 00 lea 0xbdd5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634823b: 8b 10 mov (%rax),%edx - 6634823d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348241: 8b 00 mov (%rax),%eax - 66348243: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348246: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634824a: 8b 12 mov (%rdx),%edx - 6634824c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634824f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348253: 8b 12 mov (%rdx),%edx - 66348255: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348258: 49 8b 41 28 mov 0x28(%r9),%rax - 6634825c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348260: 8b 00 mov (%rax),%eax - 66348262: c1 e0 04 shl $0x4,%eax - 66348265: 01 f8 add %edi,%eax - 66348267: 8b 3a mov (%rdx),%edi - 66348269: c1 e7 05 shl $0x5,%edi - 6634826c: 01 c7 add %eax,%edi - 6634826e: 48 63 ef movslq %edi,%rbp - 66348271: 48 c1 e5 02 shl $0x2,%rbp - 66348275: 85 ff test %edi,%edi - 66348277: 78 05 js 6634827e - 66348279: 39 7e 38 cmp %edi,0x38(%rsi) - 6634827c: 7f 11 jg 6634828f - 6634827e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348284: 4c 89 ea mov %r13,%rdx - 66348287: 4c 89 e1 mov %r12,%rcx - 6634828a: e8 c1 9c 00 00 callq 66351f50 <_assert> - 6634828f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348293: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348297: 48 01 da add %rbx,%rdx - 6634829a: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634829d: 8b 0a mov (%rdx),%ecx - 6634829f: 39 c8 cmp %ecx,%eax - 663482a1: 74 6c je 6634830f - 663482a3: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663482a7: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663482ab: 41 89 c3 mov %eax,%r11d - 663482ae: 41 29 cb sub %ecx,%r11d - 663482b1: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663482b5: 45 01 18 add %r11d,(%r8) - 663482b8: 89 02 mov %eax,(%rdx) - 663482ba: 31 d2 xor %edx,%edx - 663482bc: 48 8b 46 10 mov 0x10(%rsi),%rax - 663482c0: 45 8b 18 mov (%r8),%r11d - 663482c3: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663482c7: 45 85 db test %r11d,%r11d - 663482ca: 0f 9f c2 setg %dl - 663482cd: 3b 10 cmp (%rax),%edx - 663482cf: 74 3e je 6634830f - 663482d1: 48 8b 46 20 mov 0x20(%rsi),%rax - 663482d5: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663482d9: 44 8b 10 mov (%rax),%r10d - 663482dc: 45 85 d2 test %r10d,%r10d - 663482df: 75 2e jne 6634830f - 663482e1: 48 8b 46 28 mov 0x28(%rsi),%rax - 663482e5: 48 8b 0d 44 f6 00 00 mov 0xf644(%rip),%rcx # 66357930 - 663482ec: 4c 8b 05 2d f6 00 00 mov 0xf62d(%rip),%r8 # 66357920 - 663482f3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663482f7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663482fb: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348301: 48 63 01 movslq (%rcx),%rax - 66348304: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348308: 44 89 09 mov %r9d,(%rcx) - 6634830b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634830f: 48 83 c3 04 add $0x4,%rbx - 66348313: 83 c7 40 add $0x40,%edi - 66348316: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634831d: 48 81 fb 1c 01 00 00 cmp $0x11c,%rbx - 66348324: 0f 85 4b ff ff ff jne 66348275 - 6634832a: 48 83 c4 28 add $0x28,%rsp - 6634832e: 5b pop %rbx - 6634832f: 5e pop %rsi - 66348330: 5f pop %rdi - 66348331: 5d pop %rbp - 66348332: 41 5c pop %r12 - 66348334: 41 5d pop %r13 - 66348336: c3 retq - 66348337: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634833e: 00 00 - 66348340: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348344: 4c 8b 1d d5 f5 00 00 mov 0xf5d5(%rip),%r11 # 66357920 - 6634834b: 4c 8b 15 de f5 00 00 mov 0xf5de(%rip),%r10 # 66357930 - 66348352: 48 8d 50 1c lea 0x1c(%rax),%rdx - 66348356: b8 38 00 00 00 mov $0x38,%eax - 6634835b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66348360: 8b 0a mov (%rdx),%ecx - 66348362: 85 c9 test %ecx,%ecx - 66348364: 74 55 je 663483bb - 66348366: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634836a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634836e: 41 29 08 sub %ecx,(%r8) - 66348371: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348377: 45 8b 00 mov (%r8),%r8d - 6634837a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634837e: 45 85 c0 test %r8d,%r8d - 66348381: 41 0f 9f c0 setg %r8b - 66348385: 45 0f b6 c0 movzbl %r8b,%r8d - 66348389: 44 3b 01 cmp (%rcx),%r8d - 6634838c: 74 2d je 663483bb - 6634838e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348392: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348396: 8b 09 mov (%rcx),%ecx - 66348398: 85 c9 test %ecx,%ecx - 6634839a: 75 1f jne 663483bb - 6634839c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663483a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663483a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663483a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663483ae: 49 63 0a movslq (%r10),%rcx - 663483b1: 8d 59 01 lea 0x1(%rcx),%ebx - 663483b4: 41 89 1a mov %ebx,(%r10) - 663483b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663483bb: 48 83 c0 08 add $0x8,%rax - 663483bf: 48 83 c2 04 add $0x4,%rdx - 663483c3: 48 3d 38 02 00 00 cmp $0x238,%rax - 663483c9: 75 95 jne 66348360 - 663483cb: 48 83 c4 28 add $0x28,%rsp - 663483cf: 5b pop %rbx - 663483d0: 5e pop %rsi - 663483d1: 5f pop %rdi - 663483d2: 5d pop %rbp - 663483d3: 41 5c pop %r12 - 663483d5: 41 5d pop %r13 - 663483d7: c3 retq - 663483d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663483df: 00 +00000000663488d0 : + 663488d0: 41 55 push %r13 + 663488d2: 41 54 push %r12 + 663488d4: 55 push %rbp + 663488d5: 57 push %rdi + 663488d6: 56 push %rsi + 663488d7: 53 push %rbx + 663488d8: 48 83 ec 28 sub $0x28,%rsp + 663488dc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663488e0: 49 8b 81 50 02 00 00 mov 0x250(%r9),%rax + 663488e7: 48 89 ce mov %rcx,%rsi + 663488ea: 8b 18 mov (%rax),%ebx + 663488ec: 85 db test %ebx,%ebx + 663488ee: 0f 84 41 01 00 00 je 66348a35 + 663488f4: 49 8b 41 10 mov 0x10(%r9),%rax + 663488f8: bb 28 00 00 00 mov $0x28,%ebx + 663488fd: 4c 8d 2d fc b6 00 00 lea 0xb6fc(%rip),%r13 # 66354000 <.rdata> + 66348904: 4c 8d 25 05 b7 00 00 lea 0xb705(%rip),%r12 # 66354010 <.rdata+0x10> + 6634890b: 8b 10 mov (%rax),%edx + 6634890d: 49 8b 41 08 mov 0x8(%r9),%rax + 66348911: 8b 00 mov (%rax),%eax + 66348913: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348916: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634891a: 8b 12 mov (%rdx),%edx + 6634891c: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634891f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348923: 8b 12 mov (%rdx),%edx + 66348925: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66348928: 49 8b 41 28 mov 0x28(%r9),%rax + 6634892c: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348930: 8b 00 mov (%rax),%eax + 66348932: c1 e0 04 shl $0x4,%eax + 66348935: 01 f8 add %edi,%eax + 66348937: 8b 3a mov (%rdx),%edi + 66348939: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634893d: c1 e7 05 shl $0x5,%edi + 66348940: 01 c7 add %eax,%edi + 66348942: 49 8b 41 38 mov 0x38(%r9),%rax + 66348946: 8b 00 mov (%rax),%eax + 66348948: c1 e0 06 shl $0x6,%eax + 6634894b: 01 c7 add %eax,%edi + 6634894d: 49 8b 41 40 mov 0x40(%r9),%rax + 66348951: 8b 00 mov (%rax),%eax + 66348953: c1 e0 07 shl $0x7,%eax + 66348956: 01 f8 add %edi,%eax + 66348958: 8b 3a mov (%rdx),%edi + 6634895a: c1 e7 08 shl $0x8,%edi + 6634895d: 01 c7 add %eax,%edi + 6634895f: 48 63 ef movslq %edi,%rbp + 66348962: 48 c1 e5 02 shl $0x2,%rbp + 66348966: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634896d: 00 00 00 + 66348970: 85 ff test %edi,%edi + 66348972: 78 05 js 66348979 + 66348974: 39 7e 38 cmp %edi,0x38(%rsi) + 66348977: 7f 11 jg 6634898a + 66348979: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634897f: 4c 89 ea mov %r13,%rdx + 66348982: 4c 89 e1 mov %r12,%rcx + 66348985: e8 86 98 00 00 callq 66352210 <_assert> + 6634898a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634898e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66348992: 48 01 da add %rbx,%rdx + 66348995: 8b 04 28 mov (%rax,%rbp,1),%eax + 66348998: 8b 0a mov (%rdx),%ecx + 6634899a: 39 c8 cmp %ecx,%eax + 6634899c: 74 6c je 66348a0a + 6634899e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 663489a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 663489a6: 41 89 c3 mov %eax,%r11d + 663489a9: 41 29 cb sub %ecx,%r11d + 663489ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 663489b0: 45 01 18 add %r11d,(%r8) + 663489b3: 89 02 mov %eax,(%rdx) + 663489b5: 31 d2 xor %edx,%edx + 663489b7: 48 8b 46 10 mov 0x10(%rsi),%rax + 663489bb: 45 8b 18 mov (%r8),%r11d + 663489be: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663489c2: 45 85 db test %r11d,%r11d + 663489c5: 0f 9f c2 setg %dl + 663489c8: 3b 10 cmp (%rax),%edx + 663489ca: 74 3e je 66348a0a + 663489cc: 48 8b 46 20 mov 0x20(%rsi),%rax + 663489d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663489d4: 44 8b 10 mov (%rax),%r10d + 663489d7: 45 85 d2 test %r10d,%r10d + 663489da: 75 2e jne 66348a0a + 663489dc: 48 8b 46 28 mov 0x28(%rsi),%rax + 663489e0: 48 8b 0d 49 ef 00 00 mov 0xef49(%rip),%rcx # 66357930 + 663489e7: 4c 8b 05 32 ef 00 00 mov 0xef32(%rip),%r8 # 66357920 + 663489ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 663489f2: 48 8b 42 10 mov 0x10(%rdx),%rax + 663489f6: c7 00 01 00 00 00 movl $0x1,(%rax) + 663489fc: 48 63 01 movslq (%rcx),%rax + 663489ff: 44 8d 48 01 lea 0x1(%rax),%r9d + 66348a03: 44 89 09 mov %r9d,(%rcx) + 66348a06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66348a0a: 48 83 c3 04 add $0x4,%rbx + 66348a0e: 81 c7 00 02 00 00 add $0x200,%edi + 66348a14: 48 81 c5 00 08 00 00 add $0x800,%rbp + 66348a1b: 48 81 fb 28 01 00 00 cmp $0x128,%rbx + 66348a22: 0f 85 48 ff ff ff jne 66348970 + 66348a28: 48 83 c4 28 add $0x28,%rsp + 66348a2c: 5b pop %rbx + 66348a2d: 5e pop %rsi + 66348a2e: 5f pop %rdi + 66348a2f: 5d pop %rbp + 66348a30: 41 5c pop %r12 + 66348a32: 41 5d pop %r13 + 66348a34: c3 retq + 66348a35: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348a39: 4c 8b 1d e0 ee 00 00 mov 0xeee0(%rip),%r11 # 66357920 + 66348a40: 4c 8b 15 e9 ee 00 00 mov 0xeee9(%rip),%r10 # 66357930 + 66348a47: 48 8d 50 28 lea 0x28(%rax),%rdx + 66348a4b: b8 50 00 00 00 mov $0x50,%eax + 66348a50: 8b 0a mov (%rdx),%ecx + 66348a52: 85 c9 test %ecx,%ecx + 66348a54: 74 55 je 66348aab + 66348a56: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348a5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66348a5e: 41 29 08 sub %ecx,(%r8) + 66348a61: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348a67: 45 8b 00 mov (%r8),%r8d + 66348a6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66348a6e: 45 85 c0 test %r8d,%r8d + 66348a71: 41 0f 9f c0 setg %r8b + 66348a75: 45 0f b6 c0 movzbl %r8b,%r8d + 66348a79: 44 3b 01 cmp (%rcx),%r8d + 66348a7c: 74 2d je 66348aab + 66348a7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66348a82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348a86: 8b 09 mov (%rcx),%ecx + 66348a88: 85 c9 test %ecx,%ecx + 66348a8a: 75 1f jne 66348aab + 66348a8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66348a90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348a94: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348a98: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348a9e: 49 63 0a movslq (%r10),%rcx + 66348aa1: 8d 59 01 lea 0x1(%rcx),%ebx + 66348aa4: 41 89 1a mov %ebx,(%r10) + 66348aa7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66348aab: 48 83 c0 08 add $0x8,%rax + 66348aaf: 48 83 c2 04 add $0x4,%rdx + 66348ab3: 48 3d 50 02 00 00 cmp $0x250,%rax + 66348ab9: 75 95 jne 66348a50 + 66348abb: 48 83 c4 28 add $0x28,%rsp + 66348abf: 5b pop %rbx + 66348ac0: 5e pop %rsi + 66348ac1: 5f pop %rdi + 66348ac2: 5d pop %rbp + 66348ac3: 41 5c pop %r12 + 66348ac5: 41 5d pop %r13 + 66348ac7: c3 retq + 66348ac8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66348acf: 00 -00000000663483e0 : - 663483e0: 41 55 push %r13 - 663483e2: 41 54 push %r12 - 663483e4: 55 push %rbp - 663483e5: 57 push %rdi - 663483e6: 56 push %rsi - 663483e7: 53 push %rbx - 663483e8: 48 83 ec 28 sub $0x28,%rsp - 663483ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663483f0: 49 8b 81 60 02 00 00 mov 0x260(%r9),%rax - 663483f7: 48 89 ce mov %rcx,%rsi - 663483fa: 8b 18 mov (%rax),%ebx - 663483fc: 85 db test %ebx,%ebx - 663483fe: 0f 84 51 01 00 00 je 66348555 - 66348404: 49 8b 41 10 mov 0x10(%r9),%rax - 66348408: bb 30 00 00 00 mov $0x30,%ebx - 6634840d: 4c 8d 2d ec bb 00 00 lea 0xbbec(%rip),%r13 # 66354000 <.rdata> - 66348414: 4c 8d 25 f5 bb 00 00 lea 0xbbf5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634841b: 8b 10 mov (%rax),%edx - 6634841d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348421: 8b 00 mov (%rax),%eax - 66348423: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348426: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634842a: 8b 12 mov (%rdx),%edx - 6634842c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634842f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348433: 8b 12 mov (%rdx),%edx - 66348435: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66348438: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634843c: 8b 3a mov (%rdx),%edi - 6634843e: 49 8b 51 40 mov 0x40(%r9),%rdx - 66348442: c1 e7 04 shl $0x4,%edi - 66348445: 01 c7 add %eax,%edi - 66348447: 49 8b 41 30 mov 0x30(%r9),%rax - 6634844b: 8b 00 mov (%rax),%eax - 6634844d: c1 e0 05 shl $0x5,%eax - 66348450: 01 c7 add %eax,%edi - 66348452: 49 8b 41 38 mov 0x38(%r9),%rax - 66348456: 8b 00 mov (%rax),%eax - 66348458: c1 e0 06 shl $0x6,%eax - 6634845b: 01 f8 add %edi,%eax - 6634845d: 8b 3a mov (%rdx),%edi - 6634845f: 49 8b 51 58 mov 0x58(%r9),%rdx - 66348463: c1 e7 07 shl $0x7,%edi - 66348466: 01 c7 add %eax,%edi - 66348468: 49 8b 41 48 mov 0x48(%r9),%rax - 6634846c: 8b 00 mov (%rax),%eax - 6634846e: c1 e0 08 shl $0x8,%eax - 66348471: 01 c7 add %eax,%edi - 66348473: 49 8b 41 50 mov 0x50(%r9),%rax - 66348477: 8b 00 mov (%rax),%eax - 66348479: c1 e0 09 shl $0x9,%eax - 6634847c: 01 f8 add %edi,%eax - 6634847e: 8b 3a mov (%rdx),%edi - 66348480: c1 e7 0a shl $0xa,%edi - 66348483: 01 c7 add %eax,%edi - 66348485: 48 63 ef movslq %edi,%rbp - 66348488: 48 c1 e5 02 shl $0x2,%rbp - 6634848c: 0f 1f 40 00 nopl 0x0(%rax) - 66348490: 85 ff test %edi,%edi - 66348492: 78 05 js 66348499 - 66348494: 39 7e 38 cmp %edi,0x38(%rsi) - 66348497: 7f 11 jg 663484aa - 66348499: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634849f: 4c 89 ea mov %r13,%rdx - 663484a2: 4c 89 e1 mov %r12,%rcx - 663484a5: e8 a6 9a 00 00 callq 66351f50 <_assert> - 663484aa: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663484ae: 48 8b 46 40 mov 0x40(%rsi),%rax - 663484b2: 48 01 da add %rbx,%rdx - 663484b5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663484b8: 8b 0a mov (%rdx),%ecx - 663484ba: 39 c8 cmp %ecx,%eax - 663484bc: 74 6c je 6634852a - 663484be: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663484c2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663484c6: 41 89 c3 mov %eax,%r11d - 663484c9: 41 29 cb sub %ecx,%r11d - 663484cc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663484d0: 45 01 18 add %r11d,(%r8) - 663484d3: 89 02 mov %eax,(%rdx) - 663484d5: 31 d2 xor %edx,%edx - 663484d7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663484db: 45 8b 18 mov (%r8),%r11d - 663484de: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663484e2: 45 85 db test %r11d,%r11d - 663484e5: 0f 9f c2 setg %dl - 663484e8: 3b 10 cmp (%rax),%edx - 663484ea: 74 3e je 6634852a - 663484ec: 48 8b 46 20 mov 0x20(%rsi),%rax - 663484f0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663484f4: 44 8b 10 mov (%rax),%r10d - 663484f7: 45 85 d2 test %r10d,%r10d - 663484fa: 75 2e jne 6634852a - 663484fc: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348500: 48 8b 0d 29 f4 00 00 mov 0xf429(%rip),%rcx # 66357930 - 66348507: 4c 8b 05 12 f4 00 00 mov 0xf412(%rip),%r8 # 66357920 - 6634850e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348512: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348516: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634851c: 48 63 01 movslq (%rcx),%rax - 6634851f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348523: 44 89 09 mov %r9d,(%rcx) - 66348526: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634852a: 48 83 c3 04 add $0x4,%rbx - 6634852e: 81 c7 00 08 00 00 add $0x800,%edi - 66348534: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634853b: 48 81 fb 30 01 00 00 cmp $0x130,%rbx - 66348542: 0f 85 48 ff ff ff jne 66348490 - 66348548: 48 83 c4 28 add $0x28,%rsp - 6634854c: 5b pop %rbx - 6634854d: 5e pop %rsi - 6634854e: 5f pop %rdi - 6634854f: 5d pop %rbp - 66348550: 41 5c pop %r12 - 66348552: 41 5d pop %r13 - 66348554: c3 retq - 66348555: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348559: 4c 8b 1d c0 f3 00 00 mov 0xf3c0(%rip),%r11 # 66357920 - 66348560: 4c 8b 15 c9 f3 00 00 mov 0xf3c9(%rip),%r10 # 66357930 - 66348567: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634856b: b8 60 00 00 00 mov $0x60,%eax - 66348570: 8b 0a mov (%rdx),%ecx - 66348572: 85 c9 test %ecx,%ecx - 66348574: 74 55 je 663485cb - 66348576: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634857a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634857e: 41 29 08 sub %ecx,(%r8) - 66348581: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348587: 45 8b 00 mov (%r8),%r8d - 6634858a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634858e: 45 85 c0 test %r8d,%r8d - 66348591: 41 0f 9f c0 setg %r8b - 66348595: 45 0f b6 c0 movzbl %r8b,%r8d - 66348599: 44 3b 01 cmp (%rcx),%r8d - 6634859c: 74 2d je 663485cb - 6634859e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663485a2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663485a6: 8b 09 mov (%rcx),%ecx - 663485a8: 85 c9 test %ecx,%ecx - 663485aa: 75 1f jne 663485cb - 663485ac: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663485b0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663485b4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663485b8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663485be: 49 63 0a movslq (%r10),%rcx - 663485c1: 8d 59 01 lea 0x1(%rcx),%ebx - 663485c4: 41 89 1a mov %ebx,(%r10) - 663485c7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663485cb: 48 83 c0 08 add $0x8,%rax - 663485cf: 48 83 c2 04 add $0x4,%rdx - 663485d3: 48 3d 60 02 00 00 cmp $0x260,%rax - 663485d9: 75 95 jne 66348570 - 663485db: 48 83 c4 28 add $0x28,%rsp - 663485df: 5b pop %rbx - 663485e0: 5e pop %rsi - 663485e1: 5f pop %rdi - 663485e2: 5d pop %rbp - 663485e3: 41 5c pop %r12 - 663485e5: 41 5d pop %r13 - 663485e7: c3 retq - 663485e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663485ef: 00 +0000000066348ad0 : + 66348ad0: 41 55 push %r13 + 66348ad2: 41 54 push %r12 + 66348ad4: 55 push %rbp + 66348ad5: 57 push %rdi + 66348ad6: 56 push %rsi + 66348ad7: 53 push %rbx + 66348ad8: 48 83 ec 28 sub $0x28,%rsp + 66348adc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348ae0: 49 8b 81 38 02 00 00 mov 0x238(%r9),%rax + 66348ae7: 48 89 ce mov %rcx,%rsi + 66348aea: 8b 18 mov (%rax),%ebx + 66348aec: 85 db test %ebx,%ebx + 66348aee: 0f 84 1c 01 00 00 je 66348c10 + 66348af4: 49 8b 41 10 mov 0x10(%r9),%rax + 66348af8: bb 1c 00 00 00 mov $0x1c,%ebx + 66348afd: 4c 8d 2d fc b4 00 00 lea 0xb4fc(%rip),%r13 # 66354000 <.rdata> + 66348b04: 4c 8d 25 05 b5 00 00 lea 0xb505(%rip),%r12 # 66354010 <.rdata+0x10> + 66348b0b: 8b 10 mov (%rax),%edx + 66348b0d: 49 8b 41 08 mov 0x8(%r9),%rax + 66348b11: 8b 00 mov (%rax),%eax + 66348b13: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348b16: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348b1a: 8b 12 mov (%rdx),%edx + 66348b1c: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348b1f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348b23: 8b 12 mov (%rdx),%edx + 66348b25: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66348b28: 49 8b 41 28 mov 0x28(%r9),%rax + 66348b2c: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348b30: 8b 00 mov (%rax),%eax + 66348b32: c1 e0 04 shl $0x4,%eax + 66348b35: 01 f8 add %edi,%eax + 66348b37: 8b 3a mov (%rdx),%edi + 66348b39: c1 e7 05 shl $0x5,%edi + 66348b3c: 01 c7 add %eax,%edi + 66348b3e: 48 63 ef movslq %edi,%rbp + 66348b41: 48 c1 e5 02 shl $0x2,%rbp + 66348b45: 85 ff test %edi,%edi + 66348b47: 78 05 js 66348b4e + 66348b49: 39 7e 38 cmp %edi,0x38(%rsi) + 66348b4c: 7f 11 jg 66348b5f + 66348b4e: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348b54: 4c 89 ea mov %r13,%rdx + 66348b57: 4c 89 e1 mov %r12,%rcx + 66348b5a: e8 b1 96 00 00 callq 66352210 <_assert> + 66348b5f: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66348b63: 48 8b 46 40 mov 0x40(%rsi),%rax + 66348b67: 48 01 da add %rbx,%rdx + 66348b6a: 8b 04 28 mov (%rax,%rbp,1),%eax + 66348b6d: 8b 0a mov (%rdx),%ecx + 66348b6f: 39 c8 cmp %ecx,%eax + 66348b71: 74 6c je 66348bdf + 66348b73: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348b77: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66348b7b: 41 89 c3 mov %eax,%r11d + 66348b7e: 41 29 cb sub %ecx,%r11d + 66348b81: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66348b85: 45 01 18 add %r11d,(%r8) + 66348b88: 89 02 mov %eax,(%rdx) + 66348b8a: 31 d2 xor %edx,%edx + 66348b8c: 48 8b 46 10 mov 0x10(%rsi),%rax + 66348b90: 45 8b 18 mov (%r8),%r11d + 66348b93: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348b97: 45 85 db test %r11d,%r11d + 66348b9a: 0f 9f c2 setg %dl + 66348b9d: 3b 10 cmp (%rax),%edx + 66348b9f: 74 3e je 66348bdf + 66348ba1: 48 8b 46 20 mov 0x20(%rsi),%rax + 66348ba5: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348ba9: 44 8b 10 mov (%rax),%r10d + 66348bac: 45 85 d2 test %r10d,%r10d + 66348baf: 75 2e jne 66348bdf + 66348bb1: 48 8b 46 28 mov 0x28(%rsi),%rax + 66348bb5: 48 8b 0d 74 ed 00 00 mov 0xed74(%rip),%rcx # 66357930 + 66348bbc: 4c 8b 05 5d ed 00 00 mov 0xed5d(%rip),%r8 # 66357920 + 66348bc3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66348bc7: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348bcb: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348bd1: 48 63 01 movslq (%rcx),%rax + 66348bd4: 44 8d 48 01 lea 0x1(%rax),%r9d + 66348bd8: 44 89 09 mov %r9d,(%rcx) + 66348bdb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66348bdf: 48 83 c3 04 add $0x4,%rbx + 66348be3: 83 c7 40 add $0x40,%edi + 66348be6: 48 81 c5 00 01 00 00 add $0x100,%rbp + 66348bed: 48 81 fb 1c 01 00 00 cmp $0x11c,%rbx + 66348bf4: 0f 85 4b ff ff ff jne 66348b45 + 66348bfa: 48 83 c4 28 add $0x28,%rsp + 66348bfe: 5b pop %rbx + 66348bff: 5e pop %rsi + 66348c00: 5f pop %rdi + 66348c01: 5d pop %rbp + 66348c02: 41 5c pop %r12 + 66348c04: 41 5d pop %r13 + 66348c06: c3 retq + 66348c07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66348c0e: 00 00 + 66348c10: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348c14: 4c 8b 1d 05 ed 00 00 mov 0xed05(%rip),%r11 # 66357920 + 66348c1b: 4c 8b 15 0e ed 00 00 mov 0xed0e(%rip),%r10 # 66357930 + 66348c22: 48 8d 50 1c lea 0x1c(%rax),%rdx + 66348c26: b8 38 00 00 00 mov $0x38,%eax + 66348c2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348c30: 8b 0a mov (%rdx),%ecx + 66348c32: 85 c9 test %ecx,%ecx + 66348c34: 74 55 je 66348c8b + 66348c36: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348c3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66348c3e: 41 29 08 sub %ecx,(%r8) + 66348c41: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348c47: 45 8b 00 mov (%r8),%r8d + 66348c4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66348c4e: 45 85 c0 test %r8d,%r8d + 66348c51: 41 0f 9f c0 setg %r8b + 66348c55: 45 0f b6 c0 movzbl %r8b,%r8d + 66348c59: 44 3b 01 cmp (%rcx),%r8d + 66348c5c: 74 2d je 66348c8b + 66348c5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66348c62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348c66: 8b 09 mov (%rcx),%ecx + 66348c68: 85 c9 test %ecx,%ecx + 66348c6a: 75 1f jne 66348c8b + 66348c6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66348c70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348c74: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348c78: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348c7e: 49 63 0a movslq (%r10),%rcx + 66348c81: 8d 59 01 lea 0x1(%rcx),%ebx + 66348c84: 41 89 1a mov %ebx,(%r10) + 66348c87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66348c8b: 48 83 c0 08 add $0x8,%rax + 66348c8f: 48 83 c2 04 add $0x4,%rdx + 66348c93: 48 3d 38 02 00 00 cmp $0x238,%rax + 66348c99: 75 95 jne 66348c30 + 66348c9b: 48 83 c4 28 add $0x28,%rsp + 66348c9f: 5b pop %rbx + 66348ca0: 5e pop %rsi + 66348ca1: 5f pop %rdi + 66348ca2: 5d pop %rbp + 66348ca3: 41 5c pop %r12 + 66348ca5: 41 5d pop %r13 + 66348ca7: c3 retq + 66348ca8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66348caf: 00 -00000000663485f0 : - 663485f0: 41 55 push %r13 - 663485f2: 41 54 push %r12 - 663485f4: 55 push %rbp - 663485f5: 57 push %rdi - 663485f6: 56 push %rsi - 663485f7: 53 push %rbx - 663485f8: 48 83 ec 28 sub $0x28,%rsp - 663485fc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348600: 49 8b 81 68 02 00 00 mov 0x268(%r9),%rax - 66348607: 48 89 ce mov %rcx,%rsi - 6634860a: 8b 18 mov (%rax),%ebx - 6634860c: 85 db test %ebx,%ebx - 6634860e: 0f 84 61 01 00 00 je 66348775 - 66348614: 49 8b 41 10 mov 0x10(%r9),%rax - 66348618: bb 34 00 00 00 mov $0x34,%ebx - 6634861d: 4c 8d 2d dc b9 00 00 lea 0xb9dc(%rip),%r13 # 66354000 <.rdata> - 66348624: 4c 8d 25 e5 b9 00 00 lea 0xb9e5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634862b: 8b 10 mov (%rax),%edx - 6634862d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348631: 8b 00 mov (%rax),%eax - 66348633: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348636: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634863a: 8b 12 mov (%rdx),%edx - 6634863c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634863f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348643: 8b 12 mov (%rdx),%edx - 66348645: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348648: 49 8b 41 28 mov 0x28(%r9),%rax - 6634864c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348650: 8b 00 mov (%rax),%eax - 66348652: c1 e0 04 shl $0x4,%eax - 66348655: 01 f8 add %edi,%eax - 66348657: 8b 3a mov (%rdx),%edi - 66348659: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634865d: c1 e7 05 shl $0x5,%edi - 66348660: 01 c7 add %eax,%edi - 66348662: 49 8b 41 38 mov 0x38(%r9),%rax - 66348666: 8b 00 mov (%rax),%eax - 66348668: c1 e0 06 shl $0x6,%eax - 6634866b: 01 c7 add %eax,%edi - 6634866d: 49 8b 41 40 mov 0x40(%r9),%rax - 66348671: 8b 00 mov (%rax),%eax - 66348673: c1 e0 07 shl $0x7,%eax - 66348676: 01 f8 add %edi,%eax - 66348678: 8b 3a mov (%rdx),%edi - 6634867a: 49 8b 51 60 mov 0x60(%r9),%rdx - 6634867e: c1 e7 08 shl $0x8,%edi - 66348681: 01 c7 add %eax,%edi - 66348683: 49 8b 41 50 mov 0x50(%r9),%rax - 66348687: 8b 00 mov (%rax),%eax - 66348689: c1 e0 09 shl $0x9,%eax - 6634868c: 01 c7 add %eax,%edi - 6634868e: 49 8b 41 58 mov 0x58(%r9),%rax - 66348692: 8b 00 mov (%rax),%eax - 66348694: c1 e0 0a shl $0xa,%eax - 66348697: 01 f8 add %edi,%eax - 66348699: 8b 3a mov (%rdx),%edi - 6634869b: c1 e7 0b shl $0xb,%edi - 6634869e: 01 c7 add %eax,%edi - 663486a0: 48 63 ef movslq %edi,%rbp - 663486a3: 48 c1 e5 02 shl $0x2,%rbp - 663486a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663486ae: 00 00 - 663486b0: 85 ff test %edi,%edi - 663486b2: 78 05 js 663486b9 - 663486b4: 39 7e 38 cmp %edi,0x38(%rsi) - 663486b7: 7f 11 jg 663486ca - 663486b9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663486bf: 4c 89 ea mov %r13,%rdx - 663486c2: 4c 89 e1 mov %r12,%rcx - 663486c5: e8 86 98 00 00 callq 66351f50 <_assert> - 663486ca: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663486ce: 48 8b 46 40 mov 0x40(%rsi),%rax - 663486d2: 48 01 da add %rbx,%rdx - 663486d5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663486d8: 8b 0a mov (%rdx),%ecx - 663486da: 39 c8 cmp %ecx,%eax - 663486dc: 74 6c je 6634874a - 663486de: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663486e2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663486e6: 41 89 c3 mov %eax,%r11d - 663486e9: 41 29 cb sub %ecx,%r11d - 663486ec: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663486f0: 45 01 18 add %r11d,(%r8) - 663486f3: 89 02 mov %eax,(%rdx) - 663486f5: 31 d2 xor %edx,%edx - 663486f7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663486fb: 45 8b 18 mov (%r8),%r11d - 663486fe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348702: 45 85 db test %r11d,%r11d - 66348705: 0f 9f c2 setg %dl - 66348708: 3b 10 cmp (%rax),%edx - 6634870a: 74 3e je 6634874a - 6634870c: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348710: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348714: 44 8b 10 mov (%rax),%r10d - 66348717: 45 85 d2 test %r10d,%r10d - 6634871a: 75 2e jne 6634874a - 6634871c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348720: 48 8b 0d 09 f2 00 00 mov 0xf209(%rip),%rcx # 66357930 - 66348727: 4c 8b 05 f2 f1 00 00 mov 0xf1f2(%rip),%r8 # 66357920 - 6634872e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348732: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348736: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634873c: 48 63 01 movslq (%rcx),%rax - 6634873f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348743: 44 89 09 mov %r9d,(%rcx) - 66348746: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634874a: 48 83 c3 04 add $0x4,%rbx - 6634874e: 81 c7 00 10 00 00 add $0x1000,%edi - 66348754: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634875b: 48 81 fb 34 01 00 00 cmp $0x134,%rbx - 66348762: 0f 85 48 ff ff ff jne 663486b0 - 66348768: 48 83 c4 28 add $0x28,%rsp - 6634876c: 5b pop %rbx - 6634876d: 5e pop %rsi - 6634876e: 5f pop %rdi - 6634876f: 5d pop %rbp - 66348770: 41 5c pop %r12 - 66348772: 41 5d pop %r13 - 66348774: c3 retq - 66348775: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348779: 4c 8b 1d a0 f1 00 00 mov 0xf1a0(%rip),%r11 # 66357920 - 66348780: 4c 8b 15 a9 f1 00 00 mov 0xf1a9(%rip),%r10 # 66357930 - 66348787: 48 8d 50 34 lea 0x34(%rax),%rdx - 6634878b: b8 68 00 00 00 mov $0x68,%eax - 66348790: 8b 0a mov (%rdx),%ecx - 66348792: 85 c9 test %ecx,%ecx - 66348794: 74 55 je 663487eb - 66348796: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634879a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634879e: 41 29 08 sub %ecx,(%r8) - 663487a1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663487a7: 45 8b 00 mov (%r8),%r8d - 663487aa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 663487ae: 45 85 c0 test %r8d,%r8d - 663487b1: 41 0f 9f c0 setg %r8b - 663487b5: 45 0f b6 c0 movzbl %r8b,%r8d - 663487b9: 44 3b 01 cmp (%rcx),%r8d - 663487bc: 74 2d je 663487eb - 663487be: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663487c2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663487c6: 8b 09 mov (%rcx),%ecx - 663487c8: 85 c9 test %ecx,%ecx - 663487ca: 75 1f jne 663487eb - 663487cc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663487d0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663487d4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663487d8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663487de: 49 63 0a movslq (%r10),%rcx - 663487e1: 8d 59 01 lea 0x1(%rcx),%ebx - 663487e4: 41 89 1a mov %ebx,(%r10) - 663487e7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663487eb: 48 83 c0 08 add $0x8,%rax - 663487ef: 48 83 c2 04 add $0x4,%rdx - 663487f3: 48 3d 68 02 00 00 cmp $0x268,%rax - 663487f9: 75 95 jne 66348790 - 663487fb: 48 83 c4 28 add $0x28,%rsp - 663487ff: 5b pop %rbx - 66348800: 5e pop %rsi - 66348801: 5f pop %rdi - 66348802: 5d pop %rbp - 66348803: 41 5c pop %r12 - 66348805: 41 5d pop %r13 - 66348807: c3 retq - 66348808: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634880f: 00 +0000000066348cb0 : + 66348cb0: 41 55 push %r13 + 66348cb2: 41 54 push %r12 + 66348cb4: 55 push %rbp + 66348cb5: 57 push %rdi + 66348cb6: 56 push %rsi + 66348cb7: 53 push %rbx + 66348cb8: 48 83 ec 28 sub $0x28,%rsp + 66348cbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348cc0: 49 8b 81 68 02 00 00 mov 0x268(%r9),%rax + 66348cc7: 48 89 ce mov %rcx,%rsi + 66348cca: 8b 18 mov (%rax),%ebx + 66348ccc: 85 db test %ebx,%ebx + 66348cce: 0f 84 61 01 00 00 je 66348e35 + 66348cd4: 49 8b 41 10 mov 0x10(%r9),%rax + 66348cd8: bb 34 00 00 00 mov $0x34,%ebx + 66348cdd: 4c 8d 2d 1c b3 00 00 lea 0xb31c(%rip),%r13 # 66354000 <.rdata> + 66348ce4: 4c 8d 25 25 b3 00 00 lea 0xb325(%rip),%r12 # 66354010 <.rdata+0x10> + 66348ceb: 8b 10 mov (%rax),%edx + 66348ced: 49 8b 41 08 mov 0x8(%r9),%rax + 66348cf1: 8b 00 mov (%rax),%eax + 66348cf3: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348cf6: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348cfa: 8b 12 mov (%rdx),%edx + 66348cfc: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348cff: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348d03: 8b 12 mov (%rdx),%edx + 66348d05: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66348d08: 49 8b 41 28 mov 0x28(%r9),%rax + 66348d0c: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348d10: 8b 00 mov (%rax),%eax + 66348d12: c1 e0 04 shl $0x4,%eax + 66348d15: 01 f8 add %edi,%eax + 66348d17: 8b 3a mov (%rdx),%edi + 66348d19: 49 8b 51 48 mov 0x48(%r9),%rdx + 66348d1d: c1 e7 05 shl $0x5,%edi + 66348d20: 01 c7 add %eax,%edi + 66348d22: 49 8b 41 38 mov 0x38(%r9),%rax + 66348d26: 8b 00 mov (%rax),%eax + 66348d28: c1 e0 06 shl $0x6,%eax + 66348d2b: 01 c7 add %eax,%edi + 66348d2d: 49 8b 41 40 mov 0x40(%r9),%rax + 66348d31: 8b 00 mov (%rax),%eax + 66348d33: c1 e0 07 shl $0x7,%eax + 66348d36: 01 f8 add %edi,%eax + 66348d38: 8b 3a mov (%rdx),%edi + 66348d3a: 49 8b 51 60 mov 0x60(%r9),%rdx + 66348d3e: c1 e7 08 shl $0x8,%edi + 66348d41: 01 c7 add %eax,%edi + 66348d43: 49 8b 41 50 mov 0x50(%r9),%rax + 66348d47: 8b 00 mov (%rax),%eax + 66348d49: c1 e0 09 shl $0x9,%eax + 66348d4c: 01 c7 add %eax,%edi + 66348d4e: 49 8b 41 58 mov 0x58(%r9),%rax + 66348d52: 8b 00 mov (%rax),%eax + 66348d54: c1 e0 0a shl $0xa,%eax + 66348d57: 01 f8 add %edi,%eax + 66348d59: 8b 3a mov (%rdx),%edi + 66348d5b: c1 e7 0b shl $0xb,%edi + 66348d5e: 01 c7 add %eax,%edi + 66348d60: 48 63 ef movslq %edi,%rbp + 66348d63: 48 c1 e5 02 shl $0x2,%rbp + 66348d67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66348d6e: 00 00 + 66348d70: 85 ff test %edi,%edi + 66348d72: 78 05 js 66348d79 + 66348d74: 39 7e 38 cmp %edi,0x38(%rsi) + 66348d77: 7f 11 jg 66348d8a + 66348d79: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348d7f: 4c 89 ea mov %r13,%rdx + 66348d82: 4c 89 e1 mov %r12,%rcx + 66348d85: e8 86 94 00 00 callq 66352210 <_assert> + 66348d8a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66348d8e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66348d92: 48 01 da add %rbx,%rdx + 66348d95: 8b 04 28 mov (%rax,%rbp,1),%eax + 66348d98: 8b 0a mov (%rdx),%ecx + 66348d9a: 39 c8 cmp %ecx,%eax + 66348d9c: 74 6c je 66348e0a + 66348d9e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348da2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66348da6: 41 89 c3 mov %eax,%r11d + 66348da9: 41 29 cb sub %ecx,%r11d + 66348dac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66348db0: 45 01 18 add %r11d,(%r8) + 66348db3: 89 02 mov %eax,(%rdx) + 66348db5: 31 d2 xor %edx,%edx + 66348db7: 48 8b 46 10 mov 0x10(%rsi),%rax + 66348dbb: 45 8b 18 mov (%r8),%r11d + 66348dbe: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348dc2: 45 85 db test %r11d,%r11d + 66348dc5: 0f 9f c2 setg %dl + 66348dc8: 3b 10 cmp (%rax),%edx + 66348dca: 74 3e je 66348e0a + 66348dcc: 48 8b 46 20 mov 0x20(%rsi),%rax + 66348dd0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348dd4: 44 8b 10 mov (%rax),%r10d + 66348dd7: 45 85 d2 test %r10d,%r10d + 66348dda: 75 2e jne 66348e0a + 66348ddc: 48 8b 46 28 mov 0x28(%rsi),%rax + 66348de0: 48 8b 0d 49 eb 00 00 mov 0xeb49(%rip),%rcx # 66357930 + 66348de7: 4c 8b 05 32 eb 00 00 mov 0xeb32(%rip),%r8 # 66357920 + 66348dee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66348df2: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348df6: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348dfc: 48 63 01 movslq (%rcx),%rax + 66348dff: 44 8d 48 01 lea 0x1(%rax),%r9d + 66348e03: 44 89 09 mov %r9d,(%rcx) + 66348e06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66348e0a: 48 83 c3 04 add $0x4,%rbx + 66348e0e: 81 c7 00 10 00 00 add $0x1000,%edi + 66348e14: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 66348e1b: 48 81 fb 34 01 00 00 cmp $0x134,%rbx + 66348e22: 0f 85 48 ff ff ff jne 66348d70 + 66348e28: 48 83 c4 28 add $0x28,%rsp + 66348e2c: 5b pop %rbx + 66348e2d: 5e pop %rsi + 66348e2e: 5f pop %rdi + 66348e2f: 5d pop %rbp + 66348e30: 41 5c pop %r12 + 66348e32: 41 5d pop %r13 + 66348e34: c3 retq + 66348e35: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348e39: 4c 8b 1d e0 ea 00 00 mov 0xeae0(%rip),%r11 # 66357920 + 66348e40: 4c 8b 15 e9 ea 00 00 mov 0xeae9(%rip),%r10 # 66357930 + 66348e47: 48 8d 50 34 lea 0x34(%rax),%rdx + 66348e4b: b8 68 00 00 00 mov $0x68,%eax + 66348e50: 8b 0a mov (%rdx),%ecx + 66348e52: 85 c9 test %ecx,%ecx + 66348e54: 74 55 je 66348eab + 66348e56: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348e5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66348e5e: 41 29 08 sub %ecx,(%r8) + 66348e61: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348e67: 45 8b 00 mov (%r8),%r8d + 66348e6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66348e6e: 45 85 c0 test %r8d,%r8d + 66348e71: 41 0f 9f c0 setg %r8b + 66348e75: 45 0f b6 c0 movzbl %r8b,%r8d + 66348e79: 44 3b 01 cmp (%rcx),%r8d + 66348e7c: 74 2d je 66348eab + 66348e7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66348e82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348e86: 8b 09 mov (%rcx),%ecx + 66348e88: 85 c9 test %ecx,%ecx + 66348e8a: 75 1f jne 66348eab + 66348e8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66348e90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348e94: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348e98: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348e9e: 49 63 0a movslq (%r10),%rcx + 66348ea1: 8d 59 01 lea 0x1(%rcx),%ebx + 66348ea4: 41 89 1a mov %ebx,(%r10) + 66348ea7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66348eab: 48 83 c0 08 add $0x8,%rax + 66348eaf: 48 83 c2 04 add $0x4,%rdx + 66348eb3: 48 3d 68 02 00 00 cmp $0x268,%rax + 66348eb9: 75 95 jne 66348e50 + 66348ebb: 48 83 c4 28 add $0x28,%rsp + 66348ebf: 5b pop %rbx + 66348ec0: 5e pop %rsi + 66348ec1: 5f pop %rdi + 66348ec2: 5d pop %rbp + 66348ec3: 41 5c pop %r12 + 66348ec5: 41 5d pop %r13 + 66348ec7: c3 retq + 66348ec8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66348ecf: 00 -0000000066348810 : - 66348810: 56 push %rsi - 66348811: 53 push %rbx - 66348812: 4c 8b 15 07 f1 00 00 mov 0xf107(%rip),%r10 # 66357920 - 66348819: 4c 8b 05 10 f1 00 00 mov 0xf110(%rip),%r8 # 66357930 - 66348820: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66348824: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348828: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634882c: 41 8b 31 mov (%r9),%esi - 6634882f: 85 f6 test %esi,%esi - 66348831: 0f 84 09 01 00 00 je 66348940 - 66348837: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 6634883b: 44 8b 58 10 mov 0x10(%rax),%r11d - 6634883f: 45 8b 09 mov (%r9),%r9d - 66348842: 45 39 cb cmp %r9d,%r11d - 66348845: 74 59 je 663488a0 - 66348847: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634884b: 44 89 ce mov %r9d,%esi - 6634884e: 44 29 de sub %r11d,%esi - 66348851: 45 31 db xor %r11d,%r11d - 66348854: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 66348858: 01 33 add %esi,(%rbx) - 6634885a: 44 89 48 10 mov %r9d,0x10(%rax) - 6634885e: 8b 1b mov (%rbx),%ebx - 66348860: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66348864: 85 db test %ebx,%ebx - 66348866: 41 0f 9f c3 setg %r11b - 6634886a: 45 3b 19 cmp (%r9),%r11d - 6634886d: 74 31 je 663488a0 - 6634886f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348873: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66348877: 45 8b 09 mov (%r9),%r9d - 6634887a: 45 85 c9 test %r9d,%r9d - 6634887d: 75 21 jne 663488a0 - 6634887f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348883: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66348887: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634888b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348892: 4d 63 08 movslq (%r8),%r9 - 66348895: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348899: 41 89 18 mov %ebx,(%r8) - 6634889c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663488a0: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 663488a4: 44 8b 58 14 mov 0x14(%rax),%r11d - 663488a8: 45 8b 09 mov (%r9),%r9d - 663488ab: 45 39 d9 cmp %r11d,%r9d - 663488ae: 74 58 je 66348908 - 663488b0: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663488b4: 44 89 ce mov %r9d,%esi - 663488b7: 44 29 de sub %r11d,%esi - 663488ba: 45 31 db xor %r11d,%r11d - 663488bd: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 663488c1: 01 33 add %esi,(%rbx) - 663488c3: 44 89 48 14 mov %r9d,0x14(%rax) - 663488c7: 8b 33 mov (%rbx),%esi - 663488c9: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663488cd: 85 f6 test %esi,%esi - 663488cf: 41 0f 9f c3 setg %r11b - 663488d3: 45 3b 19 cmp (%r9),%r11d - 663488d6: 74 30 je 66348908 - 663488d8: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663488dc: 4d 8b 49 28 mov 0x28(%r9),%r9 - 663488e0: 41 8b 19 mov (%r9),%ebx - 663488e3: 85 db test %ebx,%ebx - 663488e5: 75 21 jne 66348908 - 663488e7: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663488eb: 4d 8b 59 28 mov 0x28(%r9),%r11 - 663488ef: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663488f3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663488fa: 4d 63 08 movslq (%r8),%r9 - 663488fd: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348901: 41 89 18 mov %ebx,(%r8) - 66348904: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348908: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 6634890c: 44 8b 58 18 mov 0x18(%rax),%r11d - 66348910: 45 8b 09 mov (%r9),%r9d - 66348913: 45 39 d9 cmp %r11d,%r9d - 66348916: 0f 84 45 01 00 00 je 66348a61 - 6634891c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348920: 44 89 ce mov %r9d,%esi - 66348923: 44 29 de sub %r11d,%esi - 66348926: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 6634892a: 01 33 add %esi,(%rbx) - 6634892c: 44 89 48 18 mov %r9d,0x18(%rax) - 66348930: 44 8b 1b mov (%rbx),%r11d - 66348933: 45 85 db test %r11d,%r11d - 66348936: e9 e8 00 00 00 jmpq 66348a23 - 6634893b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66348940: 44 8b 48 10 mov 0x10(%rax),%r9d - 66348944: 45 85 c9 test %r9d,%r9d - 66348947: 74 58 je 663489a1 - 66348949: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634894d: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 66348951: 45 29 0b sub %r9d,(%r11) - 66348954: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) - 6634895b: 45 8b 0b mov (%r11),%r9d - 6634895e: 45 31 db xor %r11d,%r11d - 66348961: 45 85 c9 test %r9d,%r9d - 66348964: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66348968: 41 0f 9f c3 setg %r11b - 6634896c: 45 3b 19 cmp (%r9),%r11d - 6634896f: 74 30 je 663489a1 - 66348971: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348975: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66348979: 41 8b 31 mov (%r9),%esi - 6634897c: 85 f6 test %esi,%esi - 6634897e: 75 21 jne 663489a1 - 66348980: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348984: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66348988: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634898c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348993: 4d 63 08 movslq (%r8),%r9 - 66348996: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634899a: 41 89 18 mov %ebx,(%r8) - 6634899d: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663489a1: 44 8b 48 14 mov 0x14(%rax),%r9d - 663489a5: 45 85 c9 test %r9d,%r9d - 663489a8: 74 58 je 66348a02 - 663489aa: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663489ae: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 663489b2: 45 29 0b sub %r9d,(%r11) - 663489b5: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 663489bc: 41 8b 1b mov (%r11),%ebx - 663489bf: 45 31 db xor %r11d,%r11d - 663489c2: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663489c6: 85 db test %ebx,%ebx - 663489c8: 41 0f 9f c3 setg %r11b - 663489cc: 45 3b 19 cmp (%r9),%r11d - 663489cf: 74 31 je 66348a02 - 663489d1: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663489d5: 4d 8b 49 28 mov 0x28(%r9),%r9 - 663489d9: 45 8b 19 mov (%r9),%r11d - 663489dc: 45 85 db test %r11d,%r11d - 663489df: 75 21 jne 66348a02 - 663489e1: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663489e5: 4d 8b 59 28 mov 0x28(%r9),%r11 - 663489e9: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663489ed: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663489f4: 4d 63 08 movslq (%r8),%r9 - 663489f7: 41 8d 59 01 lea 0x1(%r9),%ebx - 663489fb: 41 89 18 mov %ebx,(%r8) - 663489fe: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348a02: 44 8b 48 18 mov 0x18(%rax),%r9d - 66348a06: 45 85 c9 test %r9d,%r9d - 66348a09: 74 56 je 66348a61 - 66348a0b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348a0f: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66348a13: 45 29 0b sub %r9d,(%r11) - 66348a16: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66348a1d: 45 8b 0b mov (%r11),%r9d - 66348a20: 45 85 c9 test %r9d,%r9d - 66348a23: 48 8b 42 30 mov 0x30(%rdx),%rax - 66348a27: 41 0f 9f c1 setg %r9b - 66348a2b: 45 0f b6 c9 movzbl %r9b,%r9d - 66348a2f: 44 3b 08 cmp (%rax),%r9d - 66348a32: 74 2d je 66348a61 - 66348a34: 48 8b 41 20 mov 0x20(%rcx),%rax - 66348a38: 48 8b 40 30 mov 0x30(%rax),%rax - 66348a3c: 8b 00 mov (%rax),%eax - 66348a3e: 85 c0 test %eax,%eax - 66348a40: 75 1f jne 66348a61 - 66348a42: 48 8b 41 28 mov 0x28(%rcx),%rax - 66348a46: 48 8b 50 30 mov 0x30(%rax),%rdx - 66348a4a: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348a4e: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348a54: 49 63 00 movslq (%r8),%rax - 66348a57: 8d 48 01 lea 0x1(%rax),%ecx - 66348a5a: 41 89 08 mov %ecx,(%r8) - 66348a5d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66348a61: 5b pop %rbx - 66348a62: 5e pop %rsi - 66348a63: c3 retq - 66348a64: 66 90 xchg %ax,%ax - 66348a66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66348a6d: 00 00 00 +0000000066348ed0 : + 66348ed0: 41 55 push %r13 + 66348ed2: 41 54 push %r12 + 66348ed4: 55 push %rbp + 66348ed5: 57 push %rdi + 66348ed6: 56 push %rsi + 66348ed7: 53 push %rbx + 66348ed8: 48 83 ec 28 sub $0x28,%rsp + 66348edc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348ee0: 49 8b 81 58 02 00 00 mov 0x258(%r9),%rax + 66348ee7: 48 89 ce mov %rcx,%rsi + 66348eea: 8b 18 mov (%rax),%ebx + 66348eec: 85 db test %ebx,%ebx + 66348eee: 0f 84 4c 01 00 00 je 66349040 + 66348ef4: 49 8b 41 10 mov 0x10(%r9),%rax + 66348ef8: bb 2c 00 00 00 mov $0x2c,%ebx + 66348efd: 4c 8d 2d fc b0 00 00 lea 0xb0fc(%rip),%r13 # 66354000 <.rdata> + 66348f04: 4c 8d 25 05 b1 00 00 lea 0xb105(%rip),%r12 # 66354010 <.rdata+0x10> + 66348f0b: 8b 10 mov (%rax),%edx + 66348f0d: 49 8b 41 08 mov 0x8(%r9),%rax + 66348f11: 8b 00 mov (%rax),%eax + 66348f13: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348f16: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348f1a: 8b 12 mov (%rdx),%edx + 66348f1c: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348f1f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348f23: 8b 12 mov (%rdx),%edx + 66348f25: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66348f28: 49 8b 41 28 mov 0x28(%r9),%rax + 66348f2c: 49 8b 51 38 mov 0x38(%r9),%rdx + 66348f30: 8b 00 mov (%rax),%eax + 66348f32: c1 e0 04 shl $0x4,%eax + 66348f35: 01 c7 add %eax,%edi + 66348f37: 49 8b 41 30 mov 0x30(%r9),%rax + 66348f3b: 8b 00 mov (%rax),%eax + 66348f3d: c1 e0 05 shl $0x5,%eax + 66348f40: 01 f8 add %edi,%eax + 66348f42: 8b 3a mov (%rdx),%edi + 66348f44: 49 8b 51 50 mov 0x50(%r9),%rdx + 66348f48: c1 e7 06 shl $0x6,%edi + 66348f4b: 01 c7 add %eax,%edi + 66348f4d: 49 8b 41 40 mov 0x40(%r9),%rax + 66348f51: 8b 00 mov (%rax),%eax + 66348f53: c1 e0 07 shl $0x7,%eax + 66348f56: 01 c7 add %eax,%edi + 66348f58: 49 8b 41 48 mov 0x48(%r9),%rax + 66348f5c: 8b 00 mov (%rax),%eax + 66348f5e: c1 e0 08 shl $0x8,%eax + 66348f61: 01 f8 add %edi,%eax + 66348f63: 8b 3a mov (%rdx),%edi + 66348f65: c1 e7 09 shl $0x9,%edi + 66348f68: 01 c7 add %eax,%edi + 66348f6a: 48 63 ef movslq %edi,%rbp + 66348f6d: 48 c1 e5 02 shl $0x2,%rbp + 66348f71: 85 ff test %edi,%edi + 66348f73: 78 05 js 66348f7a + 66348f75: 39 7e 38 cmp %edi,0x38(%rsi) + 66348f78: 7f 11 jg 66348f8b + 66348f7a: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348f80: 4c 89 ea mov %r13,%rdx + 66348f83: 4c 89 e1 mov %r12,%rcx + 66348f86: e8 85 92 00 00 callq 66352210 <_assert> + 66348f8b: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66348f8f: 48 8b 46 40 mov 0x40(%rsi),%rax + 66348f93: 48 01 da add %rbx,%rdx + 66348f96: 8b 04 28 mov (%rax,%rbp,1),%eax + 66348f99: 8b 0a mov (%rdx),%ecx + 66348f9b: 39 c8 cmp %ecx,%eax + 66348f9d: 74 6c je 6634900b + 66348f9f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66348fa3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66348fa7: 41 89 c3 mov %eax,%r11d + 66348faa: 41 29 cb sub %ecx,%r11d + 66348fad: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66348fb1: 45 01 18 add %r11d,(%r8) + 66348fb4: 89 02 mov %eax,(%rdx) + 66348fb6: 31 d2 xor %edx,%edx + 66348fb8: 48 8b 46 10 mov 0x10(%rsi),%rax + 66348fbc: 45 8b 18 mov (%r8),%r11d + 66348fbf: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348fc3: 45 85 db test %r11d,%r11d + 66348fc6: 0f 9f c2 setg %dl + 66348fc9: 3b 10 cmp (%rax),%edx + 66348fcb: 74 3e je 6634900b + 66348fcd: 48 8b 46 20 mov 0x20(%rsi),%rax + 66348fd1: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66348fd5: 44 8b 10 mov (%rax),%r10d + 66348fd8: 45 85 d2 test %r10d,%r10d + 66348fdb: 75 2e jne 6634900b + 66348fdd: 48 8b 46 28 mov 0x28(%rsi),%rax + 66348fe1: 48 8b 0d 48 e9 00 00 mov 0xe948(%rip),%rcx # 66357930 + 66348fe8: 4c 8b 05 31 e9 00 00 mov 0xe931(%rip),%r8 # 66357920 + 66348fef: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66348ff3: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348ff7: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348ffd: 48 63 01 movslq (%rcx),%rax + 66349000: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349004: 44 89 09 mov %r9d,(%rcx) + 66349007: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634900b: 48 83 c3 04 add $0x4,%rbx + 6634900f: 81 c7 00 04 00 00 add $0x400,%edi + 66349015: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634901c: 48 81 fb 2c 01 00 00 cmp $0x12c,%rbx + 66349023: 0f 85 48 ff ff ff jne 66348f71 + 66349029: 48 83 c4 28 add $0x28,%rsp + 6634902d: 5b pop %rbx + 6634902e: 5e pop %rsi + 6634902f: 5f pop %rdi + 66349030: 5d pop %rbp + 66349031: 41 5c pop %r12 + 66349033: 41 5d pop %r13 + 66349035: c3 retq + 66349036: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634903d: 00 00 00 + 66349040: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349044: 4c 8b 1d d5 e8 00 00 mov 0xe8d5(%rip),%r11 # 66357920 + 6634904b: 4c 8b 15 de e8 00 00 mov 0xe8de(%rip),%r10 # 66357930 + 66349052: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66349056: b8 58 00 00 00 mov $0x58,%eax + 6634905b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349060: 8b 0a mov (%rdx),%ecx + 66349062: 85 c9 test %ecx,%ecx + 66349064: 74 55 je 663490bb + 66349066: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634906a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634906e: 41 29 08 sub %ecx,(%r8) + 66349071: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349077: 45 8b 00 mov (%r8),%r8d + 6634907a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634907e: 45 85 c0 test %r8d,%r8d + 66349081: 41 0f 9f c0 setg %r8b + 66349085: 45 0f b6 c0 movzbl %r8b,%r8d + 66349089: 44 3b 01 cmp (%rcx),%r8d + 6634908c: 74 2d je 663490bb + 6634908e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349092: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349096: 8b 09 mov (%rcx),%ecx + 66349098: 85 c9 test %ecx,%ecx + 6634909a: 75 1f jne 663490bb + 6634909c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 663490a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663490a4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663490a8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663490ae: 49 63 0a movslq (%r10),%rcx + 663490b1: 8d 59 01 lea 0x1(%rcx),%ebx + 663490b4: 41 89 1a mov %ebx,(%r10) + 663490b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663490bb: 48 83 c0 08 add $0x8,%rax + 663490bf: 48 83 c2 04 add $0x4,%rdx + 663490c3: 48 3d 58 02 00 00 cmp $0x258,%rax + 663490c9: 75 95 jne 66349060 + 663490cb: 48 83 c4 28 add $0x28,%rsp + 663490cf: 5b pop %rbx + 663490d0: 5e pop %rsi + 663490d1: 5f pop %rdi + 663490d2: 5d pop %rbp + 663490d3: 41 5c pop %r12 + 663490d5: 41 5d pop %r13 + 663490d7: c3 retq + 663490d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663490df: 00 -0000000066348a70 : - 66348a70: 56 push %rsi - 66348a71: 53 push %rbx - 66348a72: 4c 8b 15 a7 ee 00 00 mov 0xeea7(%rip),%r10 # 66357920 - 66348a79: 4c 8b 05 b0 ee 00 00 mov 0xeeb0(%rip),%r8 # 66357930 - 66348a80: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66348a84: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348a88: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 66348a8c: 41 8b 31 mov (%r9),%esi - 66348a8f: 85 f6 test %esi,%esi - 66348a91: 0f 84 09 01 00 00 je 66348ba0 - 66348a97: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 66348a9b: 44 8b 58 10 mov 0x10(%rax),%r11d - 66348a9f: 45 8b 09 mov (%r9),%r9d - 66348aa2: 45 39 cb cmp %r9d,%r11d - 66348aa5: 74 59 je 66348b00 - 66348aa7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348aab: 44 89 ce mov %r9d,%esi - 66348aae: 44 29 de sub %r11d,%esi - 66348ab1: 45 31 db xor %r11d,%r11d - 66348ab4: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 66348ab8: 01 33 add %esi,(%rbx) - 66348aba: 44 89 48 10 mov %r9d,0x10(%rax) - 66348abe: 8b 1b mov (%rbx),%ebx - 66348ac0: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66348ac4: 85 db test %ebx,%ebx - 66348ac6: 41 0f 9f c3 setg %r11b - 66348aca: 45 3b 19 cmp (%r9),%r11d - 66348acd: 74 31 je 66348b00 - 66348acf: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348ad3: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66348ad7: 45 8b 09 mov (%r9),%r9d - 66348ada: 45 85 c9 test %r9d,%r9d - 66348add: 75 21 jne 66348b00 - 66348adf: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348ae3: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66348ae7: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348aeb: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348af2: 4d 63 08 movslq (%r8),%r9 - 66348af5: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348af9: 41 89 18 mov %ebx,(%r8) - 66348afc: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348b00: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66348b04: 44 8b 58 14 mov 0x14(%rax),%r11d - 66348b08: 45 8b 09 mov (%r9),%r9d - 66348b0b: 45 39 d9 cmp %r11d,%r9d - 66348b0e: 74 58 je 66348b68 - 66348b10: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348b14: 44 89 ce mov %r9d,%esi - 66348b17: 44 29 de sub %r11d,%esi - 66348b1a: 45 31 db xor %r11d,%r11d - 66348b1d: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 66348b21: 01 33 add %esi,(%rbx) - 66348b23: 44 89 48 14 mov %r9d,0x14(%rax) - 66348b27: 8b 33 mov (%rbx),%esi - 66348b29: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66348b2d: 85 f6 test %esi,%esi - 66348b2f: 41 0f 9f c3 setg %r11b - 66348b33: 45 3b 19 cmp (%r9),%r11d - 66348b36: 74 30 je 66348b68 - 66348b38: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348b3c: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66348b40: 41 8b 19 mov (%r9),%ebx - 66348b43: 85 db test %ebx,%ebx - 66348b45: 75 21 jne 66348b68 - 66348b47: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348b4b: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66348b4f: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348b53: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348b5a: 4d 63 08 movslq (%r8),%r9 - 66348b5d: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348b61: 41 89 18 mov %ebx,(%r8) - 66348b64: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348b68: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 66348b6c: 44 8b 58 18 mov 0x18(%rax),%r11d - 66348b70: 45 8b 09 mov (%r9),%r9d - 66348b73: 45 39 d9 cmp %r11d,%r9d - 66348b76: 0f 84 45 01 00 00 je 66348cc1 - 66348b7c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348b80: 44 89 ce mov %r9d,%esi - 66348b83: 44 29 de sub %r11d,%esi - 66348b86: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66348b8a: 01 33 add %esi,(%rbx) - 66348b8c: 44 89 48 18 mov %r9d,0x18(%rax) - 66348b90: 44 8b 1b mov (%rbx),%r11d - 66348b93: 45 85 db test %r11d,%r11d - 66348b96: e9 e8 00 00 00 jmpq 66348c83 - 66348b9b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66348ba0: 44 8b 48 10 mov 0x10(%rax),%r9d - 66348ba4: 45 85 c9 test %r9d,%r9d - 66348ba7: 74 58 je 66348c01 - 66348ba9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348bad: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 66348bb1: 45 29 0b sub %r9d,(%r11) - 66348bb4: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) - 66348bbb: 45 8b 0b mov (%r11),%r9d - 66348bbe: 45 31 db xor %r11d,%r11d - 66348bc1: 45 85 c9 test %r9d,%r9d - 66348bc4: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66348bc8: 41 0f 9f c3 setg %r11b - 66348bcc: 45 3b 19 cmp (%r9),%r11d - 66348bcf: 74 30 je 66348c01 - 66348bd1: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348bd5: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66348bd9: 41 8b 31 mov (%r9),%esi - 66348bdc: 85 f6 test %esi,%esi - 66348bde: 75 21 jne 66348c01 - 66348be0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348be4: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66348be8: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348bec: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348bf3: 4d 63 08 movslq (%r8),%r9 - 66348bf6: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348bfa: 41 89 18 mov %ebx,(%r8) - 66348bfd: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348c01: 44 8b 48 14 mov 0x14(%rax),%r9d - 66348c05: 45 85 c9 test %r9d,%r9d - 66348c08: 74 58 je 66348c62 - 66348c0a: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348c0e: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66348c12: 45 29 0b sub %r9d,(%r11) - 66348c15: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 66348c1c: 41 8b 1b mov (%r11),%ebx - 66348c1f: 45 31 db xor %r11d,%r11d - 66348c22: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66348c26: 85 db test %ebx,%ebx - 66348c28: 41 0f 9f c3 setg %r11b - 66348c2c: 45 3b 19 cmp (%r9),%r11d - 66348c2f: 74 31 je 66348c62 - 66348c31: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348c35: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66348c39: 45 8b 19 mov (%r9),%r11d - 66348c3c: 45 85 db test %r11d,%r11d - 66348c3f: 75 21 jne 66348c62 - 66348c41: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348c45: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66348c49: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348c4d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348c54: 4d 63 08 movslq (%r8),%r9 - 66348c57: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348c5b: 41 89 18 mov %ebx,(%r8) - 66348c5e: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348c62: 44 8b 48 18 mov 0x18(%rax),%r9d - 66348c66: 45 85 c9 test %r9d,%r9d - 66348c69: 74 56 je 66348cc1 - 66348c6b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348c6f: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66348c73: 45 29 0b sub %r9d,(%r11) - 66348c76: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66348c7d: 45 8b 0b mov (%r11),%r9d - 66348c80: 45 85 c9 test %r9d,%r9d - 66348c83: 48 8b 42 30 mov 0x30(%rdx),%rax - 66348c87: 41 0f 9f c1 setg %r9b - 66348c8b: 45 0f b6 c9 movzbl %r9b,%r9d - 66348c8f: 44 3b 08 cmp (%rax),%r9d - 66348c92: 74 2d je 66348cc1 - 66348c94: 48 8b 41 20 mov 0x20(%rcx),%rax - 66348c98: 48 8b 40 30 mov 0x30(%rax),%rax - 66348c9c: 8b 00 mov (%rax),%eax - 66348c9e: 85 c0 test %eax,%eax - 66348ca0: 75 1f jne 66348cc1 - 66348ca2: 48 8b 41 28 mov 0x28(%rcx),%rax - 66348ca6: 48 8b 50 30 mov 0x30(%rax),%rdx - 66348caa: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348cae: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348cb4: 49 63 00 movslq (%r8),%rax - 66348cb7: 8d 48 01 lea 0x1(%rax),%ecx - 66348cba: 41 89 08 mov %ecx,(%r8) - 66348cbd: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66348cc1: 5b pop %rbx - 66348cc2: 5e pop %rsi - 66348cc3: c3 retq - 66348cc4: 66 90 xchg %ax,%ax - 66348cc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66348ccd: 00 00 00 +00000000663490e0 : + 663490e0: 41 55 push %r13 + 663490e2: 41 54 push %r12 + 663490e4: 55 push %rbp + 663490e5: 57 push %rdi + 663490e6: 56 push %rsi + 663490e7: 53 push %rbx + 663490e8: 48 83 ec 28 sub $0x28,%rsp + 663490ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663490f0: 49 8b 81 48 02 00 00 mov 0x248(%r9),%rax + 663490f7: 48 89 ce mov %rcx,%rsi + 663490fa: 8b 18 mov (%rax),%ebx + 663490fc: 85 db test %ebx,%ebx + 663490fe: 0f 84 31 01 00 00 je 66349235 + 66349104: 49 8b 41 10 mov 0x10(%r9),%rax + 66349108: bb 24 00 00 00 mov $0x24,%ebx + 6634910d: 4c 8d 2d ec ae 00 00 lea 0xaeec(%rip),%r13 # 66354000 <.rdata> + 66349114: 4c 8d 25 f5 ae 00 00 lea 0xaef5(%rip),%r12 # 66354010 <.rdata+0x10> + 6634911b: 8b 10 mov (%rax),%edx + 6634911d: 49 8b 41 08 mov 0x8(%r9),%rax + 66349121: 8b 00 mov (%rax),%eax + 66349123: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349126: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634912a: 8b 12 mov (%rdx),%edx + 6634912c: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634912f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349133: 8b 12 mov (%rdx),%edx + 66349135: 8d 04 d0 lea (%rax,%rdx,8),%eax + 66349138: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634913c: 8b 3a mov (%rdx),%edi + 6634913e: 49 8b 51 40 mov 0x40(%r9),%rdx + 66349142: c1 e7 04 shl $0x4,%edi + 66349145: 01 c7 add %eax,%edi + 66349147: 49 8b 41 30 mov 0x30(%r9),%rax + 6634914b: 8b 00 mov (%rax),%eax + 6634914d: c1 e0 05 shl $0x5,%eax + 66349150: 01 c7 add %eax,%edi + 66349152: 49 8b 41 38 mov 0x38(%r9),%rax + 66349156: 8b 00 mov (%rax),%eax + 66349158: c1 e0 06 shl $0x6,%eax + 6634915b: 01 f8 add %edi,%eax + 6634915d: 8b 3a mov (%rdx),%edi + 6634915f: c1 e7 07 shl $0x7,%edi + 66349162: 01 c7 add %eax,%edi + 66349164: 48 63 ef movslq %edi,%rbp + 66349167: 48 c1 e5 02 shl $0x2,%rbp + 6634916b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349170: 85 ff test %edi,%edi + 66349172: 78 05 js 66349179 + 66349174: 39 7e 38 cmp %edi,0x38(%rsi) + 66349177: 7f 11 jg 6634918a + 66349179: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634917f: 4c 89 ea mov %r13,%rdx + 66349182: 4c 89 e1 mov %r12,%rcx + 66349185: e8 86 90 00 00 callq 66352210 <_assert> + 6634918a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634918e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66349192: 48 01 da add %rbx,%rdx + 66349195: 8b 04 28 mov (%rax,%rbp,1),%eax + 66349198: 8b 0a mov (%rdx),%ecx + 6634919a: 39 c8 cmp %ecx,%eax + 6634919c: 74 6c je 6634920a + 6634919e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 663491a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 663491a6: 41 89 c3 mov %eax,%r11d + 663491a9: 41 29 cb sub %ecx,%r11d + 663491ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 663491b0: 45 01 18 add %r11d,(%r8) + 663491b3: 89 02 mov %eax,(%rdx) + 663491b5: 31 d2 xor %edx,%edx + 663491b7: 48 8b 46 10 mov 0x10(%rsi),%rax + 663491bb: 45 8b 18 mov (%r8),%r11d + 663491be: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663491c2: 45 85 db test %r11d,%r11d + 663491c5: 0f 9f c2 setg %dl + 663491c8: 3b 10 cmp (%rax),%edx + 663491ca: 74 3e je 6634920a + 663491cc: 48 8b 46 20 mov 0x20(%rsi),%rax + 663491d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663491d4: 44 8b 10 mov (%rax),%r10d + 663491d7: 45 85 d2 test %r10d,%r10d + 663491da: 75 2e jne 6634920a + 663491dc: 48 8b 46 28 mov 0x28(%rsi),%rax + 663491e0: 48 8b 0d 49 e7 00 00 mov 0xe749(%rip),%rcx # 66357930 + 663491e7: 4c 8b 05 32 e7 00 00 mov 0xe732(%rip),%r8 # 66357920 + 663491ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 663491f2: 48 8b 42 10 mov 0x10(%rdx),%rax + 663491f6: c7 00 01 00 00 00 movl $0x1,(%rax) + 663491fc: 48 63 01 movslq (%rcx),%rax + 663491ff: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349203: 44 89 09 mov %r9d,(%rcx) + 66349206: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634920a: 48 83 c3 04 add $0x4,%rbx + 6634920e: 81 c7 00 01 00 00 add $0x100,%edi + 66349214: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634921b: 48 81 fb 24 01 00 00 cmp $0x124,%rbx + 66349222: 0f 85 48 ff ff ff jne 66349170 + 66349228: 48 83 c4 28 add $0x28,%rsp + 6634922c: 5b pop %rbx + 6634922d: 5e pop %rsi + 6634922e: 5f pop %rdi + 6634922f: 5d pop %rbp + 66349230: 41 5c pop %r12 + 66349232: 41 5d pop %r13 + 66349234: c3 retq + 66349235: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349239: 4c 8b 1d e0 e6 00 00 mov 0xe6e0(%rip),%r11 # 66357920 + 66349240: 4c 8b 15 e9 e6 00 00 mov 0xe6e9(%rip),%r10 # 66357930 + 66349247: 48 8d 50 24 lea 0x24(%rax),%rdx + 6634924b: b8 48 00 00 00 mov $0x48,%eax + 66349250: 8b 0a mov (%rdx),%ecx + 66349252: 85 c9 test %ecx,%ecx + 66349254: 74 55 je 663492ab + 66349256: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634925a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634925e: 41 29 08 sub %ecx,(%r8) + 66349261: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349267: 45 8b 00 mov (%r8),%r8d + 6634926a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634926e: 45 85 c0 test %r8d,%r8d + 66349271: 41 0f 9f c0 setg %r8b + 66349275: 45 0f b6 c0 movzbl %r8b,%r8d + 66349279: 44 3b 01 cmp (%rcx),%r8d + 6634927c: 74 2d je 663492ab + 6634927e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349282: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349286: 8b 09 mov (%rcx),%ecx + 66349288: 85 c9 test %ecx,%ecx + 6634928a: 75 1f jne 663492ab + 6634928c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66349290: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349294: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349298: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634929e: 49 63 0a movslq (%r10),%rcx + 663492a1: 8d 59 01 lea 0x1(%rcx),%ebx + 663492a4: 41 89 1a mov %ebx,(%r10) + 663492a7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663492ab: 48 83 c0 08 add $0x8,%rax + 663492af: 48 83 c2 04 add $0x4,%rdx + 663492b3: 48 3d 48 02 00 00 cmp $0x248,%rax + 663492b9: 75 95 jne 66349250 + 663492bb: 48 83 c4 28 add $0x28,%rsp + 663492bf: 5b pop %rbx + 663492c0: 5e pop %rsi + 663492c1: 5f pop %rdi + 663492c2: 5d pop %rbp + 663492c3: 41 5c pop %r12 + 663492c5: 41 5d pop %r13 + 663492c7: c3 retq + 663492c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663492cf: 00 -0000000066348cd0 : - 66348cd0: 41 55 push %r13 - 66348cd2: 41 54 push %r12 - 66348cd4: 55 push %rbp - 66348cd5: 57 push %rdi - 66348cd6: 56 push %rsi - 66348cd7: 53 push %rbx - 66348cd8: 48 83 ec 28 sub $0x28,%rsp - 66348cdc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348ce0: 49 8b 81 e8 01 00 00 mov 0x1e8(%r9),%rax - 66348ce7: 48 89 ce mov %rcx,%rsi - 66348cea: 8b 18 mov (%rax),%ebx - 66348cec: 85 db test %ebx,%ebx - 66348cee: 0f 84 61 01 00 00 je 66348e55 - 66348cf4: 49 8b 41 10 mov 0x10(%r9),%rax - 66348cf8: bb 34 00 00 00 mov $0x34,%ebx - 66348cfd: 4c 8d 2d fc b2 00 00 lea 0xb2fc(%rip),%r13 # 66354000 <.rdata> - 66348d04: 4c 8d 25 05 b3 00 00 lea 0xb305(%rip),%r12 # 66354010 <.rdata+0x10> - 66348d0b: 8b 10 mov (%rax),%edx - 66348d0d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348d11: 8b 00 mov (%rax),%eax - 66348d13: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348d16: 49 8b 51 18 mov 0x18(%r9),%rdx - 66348d1a: 8b 12 mov (%rdx),%edx - 66348d1c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66348d1f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348d23: 8b 12 mov (%rdx),%edx - 66348d25: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348d28: 49 8b 41 28 mov 0x28(%r9),%rax - 66348d2c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66348d30: 8b 00 mov (%rax),%eax - 66348d32: c1 e0 04 shl $0x4,%eax - 66348d35: 01 c7 add %eax,%edi - 66348d37: 49 8b 41 30 mov 0x30(%r9),%rax - 66348d3b: 8b 00 mov (%rax),%eax - 66348d3d: c1 e0 05 shl $0x5,%eax - 66348d40: 01 f8 add %edi,%eax - 66348d42: 8b 3a mov (%rdx),%edi - 66348d44: 49 8b 51 40 mov 0x40(%r9),%rdx - 66348d48: c1 e7 06 shl $0x6,%edi - 66348d4b: 01 f8 add %edi,%eax - 66348d4d: 8b 3a mov (%rdx),%edi - 66348d4f: 49 8b 51 58 mov 0x58(%r9),%rdx - 66348d53: c1 e7 07 shl $0x7,%edi - 66348d56: 01 c7 add %eax,%edi - 66348d58: 49 8b 41 48 mov 0x48(%r9),%rax - 66348d5c: 8b 00 mov (%rax),%eax - 66348d5e: c1 e0 08 shl $0x8,%eax - 66348d61: 01 c7 add %eax,%edi - 66348d63: 49 8b 41 50 mov 0x50(%r9),%rax - 66348d67: 8b 00 mov (%rax),%eax - 66348d69: c1 e0 09 shl $0x9,%eax - 66348d6c: 01 f8 add %edi,%eax - 66348d6e: 8b 3a mov (%rdx),%edi - 66348d70: 49 8b 51 60 mov 0x60(%r9),%rdx - 66348d74: c1 e7 0a shl $0xa,%edi - 66348d77: 01 f8 add %edi,%eax - 66348d79: 8b 3a mov (%rdx),%edi - 66348d7b: c1 e7 0b shl $0xb,%edi - 66348d7e: 01 c7 add %eax,%edi - 66348d80: 48 63 ef movslq %edi,%rbp - 66348d83: 48 c1 e5 02 shl $0x2,%rbp - 66348d87: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66348d8e: 00 00 - 66348d90: 85 ff test %edi,%edi - 66348d92: 78 05 js 66348d99 - 66348d94: 39 7e 38 cmp %edi,0x38(%rsi) - 66348d97: 7f 11 jg 66348daa - 66348d99: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348d9f: 4c 89 ea mov %r13,%rdx - 66348da2: 4c 89 e1 mov %r12,%rcx - 66348da5: e8 a6 91 00 00 callq 66351f50 <_assert> - 66348daa: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348dae: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348db2: 48 01 da add %rbx,%rdx - 66348db5: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348db8: 8b 0a mov (%rdx),%ecx - 66348dba: 39 c8 cmp %ecx,%eax - 66348dbc: 74 6c je 66348e2a - 66348dbe: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348dc2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66348dc6: 41 89 c3 mov %eax,%r11d - 66348dc9: 41 29 cb sub %ecx,%r11d - 66348dcc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66348dd0: 45 01 18 add %r11d,(%r8) - 66348dd3: 89 02 mov %eax,(%rdx) - 66348dd5: 31 d2 xor %edx,%edx - 66348dd7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66348ddb: 45 8b 18 mov (%r8),%r11d - 66348dde: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348de2: 45 85 db test %r11d,%r11d - 66348de5: 0f 9f c2 setg %dl - 66348de8: 3b 10 cmp (%rax),%edx - 66348dea: 74 3e je 66348e2a - 66348dec: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348df0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348df4: 44 8b 10 mov (%rax),%r10d - 66348df7: 45 85 d2 test %r10d,%r10d - 66348dfa: 75 2e jne 66348e2a - 66348dfc: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348e00: 48 8b 0d 29 eb 00 00 mov 0xeb29(%rip),%rcx # 66357930 - 66348e07: 4c 8b 05 12 eb 00 00 mov 0xeb12(%rip),%r8 # 66357920 - 66348e0e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348e12: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348e16: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348e1c: 48 63 01 movslq (%rcx),%rax - 66348e1f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348e23: 44 89 09 mov %r9d,(%rcx) - 66348e26: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66348e2a: 48 83 c3 04 add $0x4,%rbx - 66348e2e: 81 c7 00 10 00 00 add $0x1000,%edi - 66348e34: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 66348e3b: 48 81 fb f4 00 00 00 cmp $0xf4,%rbx - 66348e42: 0f 85 48 ff ff ff jne 66348d90 - 66348e48: 48 83 c4 28 add $0x28,%rsp - 66348e4c: 5b pop %rbx - 66348e4d: 5e pop %rsi - 66348e4e: 5f pop %rdi - 66348e4f: 5d pop %rbp - 66348e50: 41 5c pop %r12 - 66348e52: 41 5d pop %r13 - 66348e54: c3 retq - 66348e55: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348e59: 4c 8b 1d c0 ea 00 00 mov 0xeac0(%rip),%r11 # 66357920 - 66348e60: 4c 8b 15 c9 ea 00 00 mov 0xeac9(%rip),%r10 # 66357930 - 66348e67: 48 8d 50 34 lea 0x34(%rax),%rdx - 66348e6b: b8 68 00 00 00 mov $0x68,%eax - 66348e70: 8b 0a mov (%rdx),%ecx - 66348e72: 85 c9 test %ecx,%ecx - 66348e74: 74 55 je 66348ecb - 66348e76: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348e7a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66348e7e: 41 29 08 sub %ecx,(%r8) - 66348e81: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348e87: 45 8b 00 mov (%r8),%r8d - 66348e8a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66348e8e: 45 85 c0 test %r8d,%r8d - 66348e91: 41 0f 9f c0 setg %r8b - 66348e95: 45 0f b6 c0 movzbl %r8b,%r8d - 66348e99: 44 3b 01 cmp (%rcx),%r8d - 66348e9c: 74 2d je 66348ecb - 66348e9e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348ea2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348ea6: 8b 09 mov (%rcx),%ecx - 66348ea8: 85 c9 test %ecx,%ecx - 66348eaa: 75 1f jne 66348ecb - 66348eac: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66348eb0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66348eb4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66348eb8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66348ebe: 49 63 0a movslq (%r10),%rcx - 66348ec1: 8d 59 01 lea 0x1(%rcx),%ebx - 66348ec4: 41 89 1a mov %ebx,(%r10) - 66348ec7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66348ecb: 48 83 c0 08 add $0x8,%rax - 66348ecf: 48 83 c2 04 add $0x4,%rdx - 66348ed3: 48 3d e8 01 00 00 cmp $0x1e8,%rax - 66348ed9: 75 95 jne 66348e70 - 66348edb: 48 83 c4 28 add $0x28,%rsp - 66348edf: 5b pop %rbx - 66348ee0: 5e pop %rsi - 66348ee1: 5f pop %rdi - 66348ee2: 5d pop %rbp - 66348ee3: 41 5c pop %r12 - 66348ee5: 41 5d pop %r13 - 66348ee7: c3 retq - 66348ee8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66348eef: 00 +00000000663492d0 : + 663492d0: 56 push %rsi + 663492d1: 53 push %rbx + 663492d2: 4c 8b 15 47 e6 00 00 mov 0xe647(%rip),%r10 # 66357920 + 663492d9: 4c 8b 05 50 e6 00 00 mov 0xe650(%rip),%r8 # 66357930 + 663492e0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663492e4: 48 8b 41 08 mov 0x8(%rcx),%rax + 663492e8: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 663492ec: 41 8b 31 mov (%r9),%esi + 663492ef: 85 f6 test %esi,%esi + 663492f1: 0f 84 09 01 00 00 je 66349400 + 663492f7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 + 663492fb: 44 8b 58 10 mov 0x10(%rax),%r11d + 663492ff: 45 8b 09 mov (%r9),%r9d + 66349302: 45 39 cb cmp %r9d,%r11d + 66349305: 74 59 je 66349360 + 66349307: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634930b: 44 89 ce mov %r9d,%esi + 6634930e: 44 29 de sub %r11d,%esi + 66349311: 45 31 db xor %r11d,%r11d + 66349314: 48 8b 5b 20 mov 0x20(%rbx),%rbx + 66349318: 01 33 add %esi,(%rbx) + 6634931a: 44 89 48 10 mov %r9d,0x10(%rax) + 6634931e: 8b 1b mov (%rbx),%ebx + 66349320: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 66349324: 85 db test %ebx,%ebx + 66349326: 41 0f 9f c3 setg %r11b + 6634932a: 45 3b 19 cmp (%r9),%r11d + 6634932d: 74 31 je 66349360 + 6634932f: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66349333: 4d 8b 49 20 mov 0x20(%r9),%r9 + 66349337: 45 8b 09 mov (%r9),%r9d + 6634933a: 45 85 c9 test %r9d,%r9d + 6634933d: 75 21 jne 66349360 + 6634933f: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66349343: 4d 8b 59 20 mov 0x20(%r9),%r11 + 66349347: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 6634934b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66349352: 4d 63 08 movslq (%r8),%r9 + 66349355: 41 8d 59 01 lea 0x1(%r9),%ebx + 66349359: 41 89 18 mov %ebx,(%r8) + 6634935c: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66349360: 4c 8b 4a 10 mov 0x10(%rdx),%r9 + 66349364: 44 8b 58 14 mov 0x14(%rax),%r11d + 66349368: 45 8b 09 mov (%r9),%r9d + 6634936b: 45 39 d9 cmp %r11d,%r9d + 6634936e: 74 58 je 663493c8 + 66349370: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66349374: 44 89 ce mov %r9d,%esi + 66349377: 44 29 de sub %r11d,%esi + 6634937a: 45 31 db xor %r11d,%r11d + 6634937d: 48 8b 5b 28 mov 0x28(%rbx),%rbx + 66349381: 01 33 add %esi,(%rbx) + 66349383: 44 89 48 14 mov %r9d,0x14(%rax) + 66349387: 8b 33 mov (%rbx),%esi + 66349389: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 6634938d: 85 f6 test %esi,%esi + 6634938f: 41 0f 9f c3 setg %r11b + 66349393: 45 3b 19 cmp (%r9),%r11d + 66349396: 74 30 je 663493c8 + 66349398: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634939c: 4d 8b 49 28 mov 0x28(%r9),%r9 + 663493a0: 41 8b 19 mov (%r9),%ebx + 663493a3: 85 db test %ebx,%ebx + 663493a5: 75 21 jne 663493c8 + 663493a7: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663493ab: 4d 8b 59 28 mov 0x28(%r9),%r11 + 663493af: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663493b3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663493ba: 4d 63 08 movslq (%r8),%r9 + 663493bd: 41 8d 59 01 lea 0x1(%r9),%ebx + 663493c1: 41 89 18 mov %ebx,(%r8) + 663493c4: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663493c8: 4c 8b 4a 18 mov 0x18(%rdx),%r9 + 663493cc: 44 8b 58 18 mov 0x18(%rax),%r11d + 663493d0: 45 8b 09 mov (%r9),%r9d + 663493d3: 45 39 d9 cmp %r11d,%r9d + 663493d6: 0f 84 45 01 00 00 je 66349521 + 663493dc: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663493e0: 44 89 ce mov %r9d,%esi + 663493e3: 44 29 de sub %r11d,%esi + 663493e6: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 663493ea: 01 33 add %esi,(%rbx) + 663493ec: 44 89 48 18 mov %r9d,0x18(%rax) + 663493f0: 44 8b 1b mov (%rbx),%r11d + 663493f3: 45 85 db test %r11d,%r11d + 663493f6: e9 e8 00 00 00 jmpq 663494e3 + 663493fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349400: 44 8b 48 10 mov 0x10(%rax),%r9d + 66349404: 45 85 c9 test %r9d,%r9d + 66349407: 74 58 je 66349461 + 66349409: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634940d: 4d 8b 5b 20 mov 0x20(%r11),%r11 + 66349411: 45 29 0b sub %r9d,(%r11) + 66349414: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) + 6634941b: 45 8b 0b mov (%r11),%r9d + 6634941e: 45 31 db xor %r11d,%r11d + 66349421: 45 85 c9 test %r9d,%r9d + 66349424: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 66349428: 41 0f 9f c3 setg %r11b + 6634942c: 45 3b 19 cmp (%r9),%r11d + 6634942f: 74 30 je 66349461 + 66349431: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66349435: 4d 8b 49 20 mov 0x20(%r9),%r9 + 66349439: 41 8b 31 mov (%r9),%esi + 6634943c: 85 f6 test %esi,%esi + 6634943e: 75 21 jne 66349461 + 66349440: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66349444: 4d 8b 59 20 mov 0x20(%r9),%r11 + 66349448: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 6634944c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66349453: 4d 63 08 movslq (%r8),%r9 + 66349456: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634945a: 41 89 18 mov %ebx,(%r8) + 6634945d: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66349461: 44 8b 48 14 mov 0x14(%rax),%r9d + 66349465: 45 85 c9 test %r9d,%r9d + 66349468: 74 58 je 663494c2 + 6634946a: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634946e: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66349472: 45 29 0b sub %r9d,(%r11) + 66349475: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 6634947c: 41 8b 1b mov (%r11),%ebx + 6634947f: 45 31 db xor %r11d,%r11d + 66349482: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 66349486: 85 db test %ebx,%ebx + 66349488: 41 0f 9f c3 setg %r11b + 6634948c: 45 3b 19 cmp (%r9),%r11d + 6634948f: 74 31 je 663494c2 + 66349491: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66349495: 4d 8b 49 28 mov 0x28(%r9),%r9 + 66349499: 45 8b 19 mov (%r9),%r11d + 6634949c: 45 85 db test %r11d,%r11d + 6634949f: 75 21 jne 663494c2 + 663494a1: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663494a5: 4d 8b 59 28 mov 0x28(%r9),%r11 + 663494a9: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663494ad: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663494b4: 4d 63 08 movslq (%r8),%r9 + 663494b7: 41 8d 59 01 lea 0x1(%r9),%ebx + 663494bb: 41 89 18 mov %ebx,(%r8) + 663494be: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663494c2: 44 8b 48 18 mov 0x18(%rax),%r9d + 663494c6: 45 85 c9 test %r9d,%r9d + 663494c9: 74 56 je 66349521 + 663494cb: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663494cf: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 663494d3: 45 29 0b sub %r9d,(%r11) + 663494d6: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 663494dd: 45 8b 0b mov (%r11),%r9d + 663494e0: 45 85 c9 test %r9d,%r9d + 663494e3: 48 8b 42 30 mov 0x30(%rdx),%rax + 663494e7: 41 0f 9f c1 setg %r9b + 663494eb: 45 0f b6 c9 movzbl %r9b,%r9d + 663494ef: 44 3b 08 cmp (%rax),%r9d + 663494f2: 74 2d je 66349521 + 663494f4: 48 8b 41 20 mov 0x20(%rcx),%rax + 663494f8: 48 8b 40 30 mov 0x30(%rax),%rax + 663494fc: 8b 00 mov (%rax),%eax + 663494fe: 85 c0 test %eax,%eax + 66349500: 75 1f jne 66349521 + 66349502: 48 8b 41 28 mov 0x28(%rcx),%rax + 66349506: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634950a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634950e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349514: 49 63 00 movslq (%r8),%rax + 66349517: 8d 48 01 lea 0x1(%rax),%ecx + 6634951a: 41 89 08 mov %ecx,(%r8) + 6634951d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66349521: 5b pop %rbx + 66349522: 5e pop %rsi + 66349523: c3 retq + 66349524: 66 90 xchg %ax,%ax + 66349526: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634952d: 00 00 00 -0000000066348ef0 : - 66348ef0: 41 55 push %r13 - 66348ef2: 41 54 push %r12 - 66348ef4: 55 push %rbp - 66348ef5: 57 push %rdi - 66348ef6: 56 push %rsi - 66348ef7: 53 push %rbx - 66348ef8: 48 83 ec 28 sub $0x28,%rsp - 66348efc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348f00: 49 8b 81 e0 01 00 00 mov 0x1e0(%r9),%rax - 66348f07: 48 89 ce mov %rcx,%rsi - 66348f0a: 8b 18 mov (%rax),%ebx - 66348f0c: 85 db test %ebx,%ebx - 66348f0e: 0f 84 51 01 00 00 je 66349065 - 66348f14: 49 8b 41 10 mov 0x10(%r9),%rax - 66348f18: bb 30 00 00 00 mov $0x30,%ebx - 66348f1d: 4c 8d 2d dc b0 00 00 lea 0xb0dc(%rip),%r13 # 66354000 <.rdata> - 66348f24: 4c 8d 25 e5 b0 00 00 lea 0xb0e5(%rip),%r12 # 66354010 <.rdata+0x10> - 66348f2b: 8b 10 mov (%rax),%edx - 66348f2d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348f31: 8b 00 mov (%rax),%eax - 66348f33: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348f36: 49 8b 51 18 mov 0x18(%r9),%rdx - 66348f3a: 8b 12 mov (%rdx),%edx - 66348f3c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66348f3f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348f43: 8b 12 mov (%rdx),%edx - 66348f45: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348f48: 49 8b 41 28 mov 0x28(%r9),%rax - 66348f4c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348f50: 8b 00 mov (%rax),%eax - 66348f52: c1 e0 04 shl $0x4,%eax - 66348f55: 01 f8 add %edi,%eax - 66348f57: 8b 3a mov (%rdx),%edi - 66348f59: 49 8b 51 38 mov 0x38(%r9),%rdx - 66348f5d: c1 e7 05 shl $0x5,%edi - 66348f60: 01 f8 add %edi,%eax - 66348f62: 8b 3a mov (%rdx),%edi - 66348f64: 49 8b 51 50 mov 0x50(%r9),%rdx - 66348f68: c1 e7 06 shl $0x6,%edi - 66348f6b: 01 c7 add %eax,%edi - 66348f6d: 49 8b 41 40 mov 0x40(%r9),%rax - 66348f71: 8b 00 mov (%rax),%eax - 66348f73: c1 e0 07 shl $0x7,%eax - 66348f76: 01 c7 add %eax,%edi - 66348f78: 49 8b 41 48 mov 0x48(%r9),%rax - 66348f7c: 8b 00 mov (%rax),%eax - 66348f7e: c1 e0 08 shl $0x8,%eax - 66348f81: 01 f8 add %edi,%eax - 66348f83: 8b 3a mov (%rdx),%edi - 66348f85: 49 8b 51 58 mov 0x58(%r9),%rdx - 66348f89: c1 e7 09 shl $0x9,%edi - 66348f8c: 01 f8 add %edi,%eax - 66348f8e: 8b 3a mov (%rdx),%edi - 66348f90: c1 e7 0a shl $0xa,%edi - 66348f93: 01 c7 add %eax,%edi - 66348f95: 48 63 ef movslq %edi,%rbp - 66348f98: 48 c1 e5 02 shl $0x2,%rbp - 66348f9c: 0f 1f 40 00 nopl 0x0(%rax) - 66348fa0: 85 ff test %edi,%edi - 66348fa2: 78 05 js 66348fa9 - 66348fa4: 39 7e 38 cmp %edi,0x38(%rsi) - 66348fa7: 7f 11 jg 66348fba - 66348fa9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348faf: 4c 89 ea mov %r13,%rdx - 66348fb2: 4c 89 e1 mov %r12,%rcx - 66348fb5: e8 96 8f 00 00 callq 66351f50 <_assert> - 66348fba: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348fbe: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348fc2: 48 01 da add %rbx,%rdx - 66348fc5: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348fc8: 8b 0a mov (%rdx),%ecx - 66348fca: 39 c8 cmp %ecx,%eax - 66348fcc: 74 6c je 6634903a - 66348fce: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348fd2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66348fd6: 41 89 c3 mov %eax,%r11d - 66348fd9: 41 29 cb sub %ecx,%r11d - 66348fdc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66348fe0: 45 01 18 add %r11d,(%r8) - 66348fe3: 89 02 mov %eax,(%rdx) - 66348fe5: 31 d2 xor %edx,%edx - 66348fe7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66348feb: 45 8b 18 mov (%r8),%r11d - 66348fee: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348ff2: 45 85 db test %r11d,%r11d - 66348ff5: 0f 9f c2 setg %dl - 66348ff8: 3b 10 cmp (%rax),%edx - 66348ffa: 74 3e je 6634903a - 66348ffc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349000: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349004: 44 8b 10 mov (%rax),%r10d - 66349007: 45 85 d2 test %r10d,%r10d - 6634900a: 75 2e jne 6634903a - 6634900c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349010: 48 8b 0d 19 e9 00 00 mov 0xe919(%rip),%rcx # 66357930 - 66349017: 4c 8b 05 02 e9 00 00 mov 0xe902(%rip),%r8 # 66357920 - 6634901e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349022: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349026: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634902c: 48 63 01 movslq (%rcx),%rax - 6634902f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349033: 44 89 09 mov %r9d,(%rcx) - 66349036: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634903a: 48 83 c3 04 add $0x4,%rbx - 6634903e: 81 c7 00 08 00 00 add $0x800,%edi - 66349044: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634904b: 48 81 fb f0 00 00 00 cmp $0xf0,%rbx - 66349052: 0f 85 48 ff ff ff jne 66348fa0 - 66349058: 48 83 c4 28 add $0x28,%rsp - 6634905c: 5b pop %rbx - 6634905d: 5e pop %rsi - 6634905e: 5f pop %rdi - 6634905f: 5d pop %rbp - 66349060: 41 5c pop %r12 - 66349062: 41 5d pop %r13 - 66349064: c3 retq - 66349065: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349069: 4c 8b 1d b0 e8 00 00 mov 0xe8b0(%rip),%r11 # 66357920 - 66349070: 4c 8b 15 b9 e8 00 00 mov 0xe8b9(%rip),%r10 # 66357930 - 66349077: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634907b: b8 60 00 00 00 mov $0x60,%eax - 66349080: 8b 0a mov (%rdx),%ecx - 66349082: 85 c9 test %ecx,%ecx - 66349084: 74 55 je 663490db - 66349086: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634908a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634908e: 41 29 08 sub %ecx,(%r8) - 66349091: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349097: 45 8b 00 mov (%r8),%r8d - 6634909a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634909e: 45 85 c0 test %r8d,%r8d - 663490a1: 41 0f 9f c0 setg %r8b - 663490a5: 45 0f b6 c0 movzbl %r8b,%r8d - 663490a9: 44 3b 01 cmp (%rcx),%r8d - 663490ac: 74 2d je 663490db - 663490ae: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663490b2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663490b6: 8b 09 mov (%rcx),%ecx - 663490b8: 85 c9 test %ecx,%ecx - 663490ba: 75 1f jne 663490db - 663490bc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663490c0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663490c4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663490c8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663490ce: 49 63 0a movslq (%r10),%rcx - 663490d1: 8d 59 01 lea 0x1(%rcx),%ebx - 663490d4: 41 89 1a mov %ebx,(%r10) - 663490d7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663490db: 48 83 c0 08 add $0x8,%rax - 663490df: 48 83 c2 04 add $0x4,%rdx - 663490e3: 48 3d e0 01 00 00 cmp $0x1e0,%rax - 663490e9: 75 95 jne 66349080 - 663490eb: 48 83 c4 28 add $0x28,%rsp - 663490ef: 5b pop %rbx - 663490f0: 5e pop %rsi - 663490f1: 5f pop %rdi - 663490f2: 5d pop %rbp - 663490f3: 41 5c pop %r12 - 663490f5: 41 5d pop %r13 - 663490f7: c3 retq - 663490f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663490ff: 00 - -0000000066349100 : - 66349100: 41 55 push %r13 - 66349102: 41 54 push %r12 - 66349104: 55 push %rbp - 66349105: 57 push %rdi - 66349106: 56 push %rsi - 66349107: 53 push %rbx - 66349108: 48 83 ec 28 sub $0x28,%rsp - 6634910c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349110: 49 8b 81 d8 01 00 00 mov 0x1d8(%r9),%rax - 66349117: 48 89 ce mov %rcx,%rsi - 6634911a: 8b 18 mov (%rax),%ebx - 6634911c: 85 db test %ebx,%ebx - 6634911e: 0f 84 4c 01 00 00 je 66349270 - 66349124: 49 8b 41 10 mov 0x10(%r9),%rax - 66349128: bb 2c 00 00 00 mov $0x2c,%ebx - 6634912d: 4c 8d 2d cc ae 00 00 lea 0xaecc(%rip),%r13 # 66354000 <.rdata> - 66349134: 4c 8d 25 d5 ae 00 00 lea 0xaed5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634913b: 8b 10 mov (%rax),%edx - 6634913d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349141: 8b 00 mov (%rax),%eax - 66349143: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349146: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634914a: 8b 12 mov (%rdx),%edx - 6634914c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634914f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349153: 8b 12 mov (%rdx),%edx - 66349155: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66349158: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634915c: 8b 3a mov (%rdx),%edi - 6634915e: 49 8b 51 30 mov 0x30(%r9),%rdx - 66349162: c1 e7 04 shl $0x4,%edi - 66349165: 01 f8 add %edi,%eax - 66349167: 8b 3a mov (%rdx),%edi - 66349169: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634916d: c1 e7 05 shl $0x5,%edi - 66349170: 01 c7 add %eax,%edi - 66349172: 49 8b 41 38 mov 0x38(%r9),%rax - 66349176: 8b 00 mov (%rax),%eax - 66349178: c1 e0 06 shl $0x6,%eax - 6634917b: 01 c7 add %eax,%edi - 6634917d: 49 8b 41 40 mov 0x40(%r9),%rax - 66349181: 8b 00 mov (%rax),%eax - 66349183: c1 e0 07 shl $0x7,%eax - 66349186: 01 f8 add %edi,%eax - 66349188: 8b 3a mov (%rdx),%edi - 6634918a: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634918e: c1 e7 08 shl $0x8,%edi - 66349191: 01 f8 add %edi,%eax - 66349193: 8b 3a mov (%rdx),%edi - 66349195: c1 e7 09 shl $0x9,%edi - 66349198: 01 c7 add %eax,%edi - 6634919a: 48 63 ef movslq %edi,%rbp - 6634919d: 48 c1 e5 02 shl $0x2,%rbp - 663491a1: 85 ff test %edi,%edi - 663491a3: 78 05 js 663491aa - 663491a5: 39 7e 38 cmp %edi,0x38(%rsi) - 663491a8: 7f 11 jg 663491bb - 663491aa: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663491b0: 4c 89 ea mov %r13,%rdx - 663491b3: 4c 89 e1 mov %r12,%rcx - 663491b6: e8 95 8d 00 00 callq 66351f50 <_assert> - 663491bb: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663491bf: 48 8b 46 40 mov 0x40(%rsi),%rax - 663491c3: 48 01 da add %rbx,%rdx - 663491c6: 8b 04 28 mov (%rax,%rbp,1),%eax - 663491c9: 8b 0a mov (%rdx),%ecx - 663491cb: 39 c8 cmp %ecx,%eax - 663491cd: 74 6c je 6634923b - 663491cf: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663491d3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663491d7: 41 89 c3 mov %eax,%r11d - 663491da: 41 29 cb sub %ecx,%r11d - 663491dd: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663491e1: 45 01 18 add %r11d,(%r8) - 663491e4: 89 02 mov %eax,(%rdx) - 663491e6: 31 d2 xor %edx,%edx - 663491e8: 48 8b 46 10 mov 0x10(%rsi),%rax - 663491ec: 45 8b 18 mov (%r8),%r11d - 663491ef: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663491f3: 45 85 db test %r11d,%r11d - 663491f6: 0f 9f c2 setg %dl - 663491f9: 3b 10 cmp (%rax),%edx - 663491fb: 74 3e je 6634923b - 663491fd: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349201: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349205: 44 8b 10 mov (%rax),%r10d - 66349208: 45 85 d2 test %r10d,%r10d - 6634920b: 75 2e jne 6634923b - 6634920d: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349211: 48 8b 0d 18 e7 00 00 mov 0xe718(%rip),%rcx # 66357930 - 66349218: 4c 8b 05 01 e7 00 00 mov 0xe701(%rip),%r8 # 66357920 - 6634921f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349223: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349227: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634922d: 48 63 01 movslq (%rcx),%rax - 66349230: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349234: 44 89 09 mov %r9d,(%rcx) - 66349237: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634923b: 48 83 c3 04 add $0x4,%rbx - 6634923f: 81 c7 00 04 00 00 add $0x400,%edi - 66349245: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634924c: 48 81 fb ec 00 00 00 cmp $0xec,%rbx - 66349253: 0f 85 48 ff ff ff jne 663491a1 - 66349259: 48 83 c4 28 add $0x28,%rsp - 6634925d: 5b pop %rbx - 6634925e: 5e pop %rsi - 6634925f: 5f pop %rdi - 66349260: 5d pop %rbp - 66349261: 41 5c pop %r12 - 66349263: 41 5d pop %r13 - 66349265: c3 retq - 66349266: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634926d: 00 00 00 - 66349270: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349274: 4c 8b 1d a5 e6 00 00 mov 0xe6a5(%rip),%r11 # 66357920 - 6634927b: 4c 8b 15 ae e6 00 00 mov 0xe6ae(%rip),%r10 # 66357930 - 66349282: 48 8d 50 2c lea 0x2c(%rax),%rdx - 66349286: b8 58 00 00 00 mov $0x58,%eax - 6634928b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349290: 8b 0a mov (%rdx),%ecx - 66349292: 85 c9 test %ecx,%ecx - 66349294: 74 55 je 663492eb - 66349296: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634929a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634929e: 41 29 08 sub %ecx,(%r8) - 663492a1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663492a7: 45 8b 00 mov (%r8),%r8d - 663492aa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 663492ae: 45 85 c0 test %r8d,%r8d - 663492b1: 41 0f 9f c0 setg %r8b - 663492b5: 45 0f b6 c0 movzbl %r8b,%r8d - 663492b9: 44 3b 01 cmp (%rcx),%r8d - 663492bc: 74 2d je 663492eb - 663492be: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663492c2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663492c6: 8b 09 mov (%rcx),%ecx - 663492c8: 85 c9 test %ecx,%ecx - 663492ca: 75 1f jne 663492eb - 663492cc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663492d0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663492d4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663492d8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663492de: 49 63 0a movslq (%r10),%rcx - 663492e1: 8d 59 01 lea 0x1(%rcx),%ebx - 663492e4: 41 89 1a mov %ebx,(%r10) - 663492e7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663492eb: 48 83 c0 08 add $0x8,%rax - 663492ef: 48 83 c2 04 add $0x4,%rdx - 663492f3: 48 3d d8 01 00 00 cmp $0x1d8,%rax - 663492f9: 75 95 jne 66349290 - 663492fb: 48 83 c4 28 add $0x28,%rsp - 663492ff: 5b pop %rbx - 66349300: 5e pop %rsi - 66349301: 5f pop %rdi - 66349302: 5d pop %rbp - 66349303: 41 5c pop %r12 - 66349305: 41 5d pop %r13 - 66349307: c3 retq - 66349308: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634930f: 00 - -0000000066349310 : - 66349310: 41 55 push %r13 - 66349312: 41 54 push %r12 - 66349314: 55 push %rbp - 66349315: 57 push %rdi - 66349316: 56 push %rsi - 66349317: 53 push %rbx - 66349318: 48 83 ec 28 sub $0x28,%rsp - 6634931c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349320: 49 8b 81 c8 01 00 00 mov 0x1c8(%r9),%rax - 66349327: 48 89 ce mov %rcx,%rsi - 6634932a: 8b 18 mov (%rax),%ebx - 6634932c: 85 db test %ebx,%ebx - 6634932e: 0f 84 31 01 00 00 je 66349465 - 66349334: 49 8b 41 10 mov 0x10(%r9),%rax - 66349338: bb 24 00 00 00 mov $0x24,%ebx - 6634933d: 4c 8d 2d bc ac 00 00 lea 0xacbc(%rip),%r13 # 66354000 <.rdata> - 66349344: 4c 8d 25 c5 ac 00 00 lea 0xacc5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634934b: 8b 10 mov (%rax),%edx - 6634934d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349351: 8b 00 mov (%rax),%eax - 66349353: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349356: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634935a: 8b 12 mov (%rdx),%edx - 6634935c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634935f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349363: 8b 12 mov (%rdx),%edx - 66349365: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349368: 49 8b 41 28 mov 0x28(%r9),%rax - 6634936c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349370: 8b 00 mov (%rax),%eax - 66349372: c1 e0 04 shl $0x4,%eax - 66349375: 01 c7 add %eax,%edi - 66349377: 49 8b 41 30 mov 0x30(%r9),%rax - 6634937b: 8b 00 mov (%rax),%eax - 6634937d: c1 e0 05 shl $0x5,%eax - 66349380: 01 f8 add %edi,%eax - 66349382: 8b 3a mov (%rdx),%edi - 66349384: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349388: c1 e7 06 shl $0x6,%edi - 6634938b: 01 f8 add %edi,%eax - 6634938d: 8b 3a mov (%rdx),%edi - 6634938f: c1 e7 07 shl $0x7,%edi - 66349392: 01 c7 add %eax,%edi - 66349394: 48 63 ef movslq %edi,%rbp - 66349397: 48 c1 e5 02 shl $0x2,%rbp - 6634939b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663493a0: 85 ff test %edi,%edi - 663493a2: 78 05 js 663493a9 - 663493a4: 39 7e 38 cmp %edi,0x38(%rsi) - 663493a7: 7f 11 jg 663493ba - 663493a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663493af: 4c 89 ea mov %r13,%rdx - 663493b2: 4c 89 e1 mov %r12,%rcx - 663493b5: e8 96 8b 00 00 callq 66351f50 <_assert> - 663493ba: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663493be: 48 8b 46 40 mov 0x40(%rsi),%rax - 663493c2: 48 01 da add %rbx,%rdx - 663493c5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663493c8: 8b 0a mov (%rdx),%ecx - 663493ca: 39 c8 cmp %ecx,%eax - 663493cc: 74 6c je 6634943a - 663493ce: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663493d2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663493d6: 41 89 c3 mov %eax,%r11d - 663493d9: 41 29 cb sub %ecx,%r11d - 663493dc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663493e0: 45 01 18 add %r11d,(%r8) - 663493e3: 89 02 mov %eax,(%rdx) - 663493e5: 31 d2 xor %edx,%edx - 663493e7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663493eb: 45 8b 18 mov (%r8),%r11d - 663493ee: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663493f2: 45 85 db test %r11d,%r11d - 663493f5: 0f 9f c2 setg %dl - 663493f8: 3b 10 cmp (%rax),%edx - 663493fa: 74 3e je 6634943a - 663493fc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349400: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349404: 44 8b 10 mov (%rax),%r10d - 66349407: 45 85 d2 test %r10d,%r10d - 6634940a: 75 2e jne 6634943a - 6634940c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349410: 48 8b 0d 19 e5 00 00 mov 0xe519(%rip),%rcx # 66357930 - 66349417: 4c 8b 05 02 e5 00 00 mov 0xe502(%rip),%r8 # 66357920 - 6634941e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349422: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349426: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634942c: 48 63 01 movslq (%rcx),%rax - 6634942f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349433: 44 89 09 mov %r9d,(%rcx) - 66349436: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634943a: 48 83 c3 04 add $0x4,%rbx - 6634943e: 81 c7 00 01 00 00 add $0x100,%edi - 66349444: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634944b: 48 81 fb e4 00 00 00 cmp $0xe4,%rbx - 66349452: 0f 85 48 ff ff ff jne 663493a0 - 66349458: 48 83 c4 28 add $0x28,%rsp - 6634945c: 5b pop %rbx - 6634945d: 5e pop %rsi - 6634945e: 5f pop %rdi - 6634945f: 5d pop %rbp - 66349460: 41 5c pop %r12 - 66349462: 41 5d pop %r13 - 66349464: c3 retq - 66349465: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349469: 4c 8b 1d b0 e4 00 00 mov 0xe4b0(%rip),%r11 # 66357920 - 66349470: 4c 8b 15 b9 e4 00 00 mov 0xe4b9(%rip),%r10 # 66357930 - 66349477: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634947b: b8 48 00 00 00 mov $0x48,%eax - 66349480: 8b 0a mov (%rdx),%ecx - 66349482: 85 c9 test %ecx,%ecx - 66349484: 74 55 je 663494db - 66349486: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634948a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634948e: 41 29 08 sub %ecx,(%r8) - 66349491: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349497: 45 8b 00 mov (%r8),%r8d - 6634949a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634949e: 45 85 c0 test %r8d,%r8d - 663494a1: 41 0f 9f c0 setg %r8b - 663494a5: 45 0f b6 c0 movzbl %r8b,%r8d - 663494a9: 44 3b 01 cmp (%rcx),%r8d - 663494ac: 74 2d je 663494db - 663494ae: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 663494b2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 663494b6: 8b 09 mov (%rcx),%ecx - 663494b8: 85 c9 test %ecx,%ecx - 663494ba: 75 1f jne 663494db - 663494bc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663494c0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663494c4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663494c8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663494ce: 49 63 0a movslq (%r10),%rcx - 663494d1: 8d 59 01 lea 0x1(%rcx),%ebx - 663494d4: 41 89 1a mov %ebx,(%r10) - 663494d7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663494db: 48 83 c0 08 add $0x8,%rax - 663494df: 48 83 c2 04 add $0x4,%rdx - 663494e3: 48 3d c8 01 00 00 cmp $0x1c8,%rax - 663494e9: 75 95 jne 66349480 - 663494eb: 48 83 c4 28 add $0x28,%rsp - 663494ef: 5b pop %rbx - 663494f0: 5e pop %rsi - 663494f1: 5f pop %rdi - 663494f2: 5d pop %rbp - 663494f3: 41 5c pop %r12 - 663494f5: 41 5d pop %r13 - 663494f7: c3 retq - 663494f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663494ff: 00 - -0000000066349500 : - 66349500: 41 55 push %r13 - 66349502: 41 54 push %r12 - 66349504: 55 push %rbp - 66349505: 57 push %rdi - 66349506: 56 push %rsi - 66349507: 53 push %rbx - 66349508: 48 83 ec 28 sub $0x28,%rsp - 6634950c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349510: 49 8b 81 b8 01 00 00 mov 0x1b8(%r9),%rax - 66349517: 48 89 ce mov %rcx,%rsi - 6634951a: 8b 18 mov (%rax),%ebx - 6634951c: 85 db test %ebx,%ebx - 6634951e: 0f 84 1c 01 00 00 je 66349640 - 66349524: 49 8b 41 10 mov 0x10(%r9),%rax - 66349528: bb 1c 00 00 00 mov $0x1c,%ebx - 6634952d: 4c 8d 2d cc aa 00 00 lea 0xaacc(%rip),%r13 # 66354000 <.rdata> - 66349534: 4c 8d 25 d5 aa 00 00 lea 0xaad5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634953b: 8b 10 mov (%rax),%edx - 6634953d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349541: 8b 00 mov (%rax),%eax - 66349543: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349546: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634954a: 8b 12 mov (%rdx),%edx - 6634954c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634954f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349553: 8b 12 mov (%rdx),%edx - 66349555: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66349558: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634955c: 8b 3a mov (%rdx),%edi - 6634955e: 49 8b 51 30 mov 0x30(%r9),%rdx - 66349562: c1 e7 04 shl $0x4,%edi - 66349565: 01 f8 add %edi,%eax - 66349567: 8b 3a mov (%rdx),%edi - 66349569: c1 e7 05 shl $0x5,%edi - 6634956c: 01 c7 add %eax,%edi - 6634956e: 48 63 ef movslq %edi,%rbp - 66349571: 48 c1 e5 02 shl $0x2,%rbp - 66349575: 85 ff test %edi,%edi - 66349577: 78 05 js 6634957e - 66349579: 39 7e 38 cmp %edi,0x38(%rsi) - 6634957c: 7f 11 jg 6634958f - 6634957e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349584: 4c 89 ea mov %r13,%rdx - 66349587: 4c 89 e1 mov %r12,%rcx - 6634958a: e8 c1 89 00 00 callq 66351f50 <_assert> - 6634958f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349593: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349597: 48 01 da add %rbx,%rdx - 6634959a: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634959d: 8b 0a mov (%rdx),%ecx - 6634959f: 39 c8 cmp %ecx,%eax - 663495a1: 74 6c je 6634960f - 663495a3: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663495a7: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663495ab: 41 89 c3 mov %eax,%r11d - 663495ae: 41 29 cb sub %ecx,%r11d - 663495b1: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663495b5: 45 01 18 add %r11d,(%r8) - 663495b8: 89 02 mov %eax,(%rdx) - 663495ba: 31 d2 xor %edx,%edx - 663495bc: 48 8b 46 10 mov 0x10(%rsi),%rax - 663495c0: 45 8b 18 mov (%r8),%r11d - 663495c3: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663495c7: 45 85 db test %r11d,%r11d - 663495ca: 0f 9f c2 setg %dl - 663495cd: 3b 10 cmp (%rax),%edx - 663495cf: 74 3e je 6634960f - 663495d1: 48 8b 46 20 mov 0x20(%rsi),%rax - 663495d5: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663495d9: 44 8b 10 mov (%rax),%r10d - 663495dc: 45 85 d2 test %r10d,%r10d - 663495df: 75 2e jne 6634960f - 663495e1: 48 8b 46 28 mov 0x28(%rsi),%rax - 663495e5: 48 8b 0d 44 e3 00 00 mov 0xe344(%rip),%rcx # 66357930 - 663495ec: 4c 8b 05 2d e3 00 00 mov 0xe32d(%rip),%r8 # 66357920 - 663495f3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663495f7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663495fb: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349601: 48 63 01 movslq (%rcx),%rax - 66349604: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349608: 44 89 09 mov %r9d,(%rcx) - 6634960b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634960f: 48 83 c3 04 add $0x4,%rbx - 66349613: 83 c7 40 add $0x40,%edi - 66349616: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634961d: 48 81 fb dc 00 00 00 cmp $0xdc,%rbx - 66349624: 0f 85 4b ff ff ff jne 66349575 - 6634962a: 48 83 c4 28 add $0x28,%rsp - 6634962e: 5b pop %rbx - 6634962f: 5e pop %rsi - 66349630: 5f pop %rdi - 66349631: 5d pop %rbp - 66349632: 41 5c pop %r12 - 66349634: 41 5d pop %r13 - 66349636: c3 retq - 66349637: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634963e: 00 00 - 66349640: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349644: 4c 8b 1d d5 e2 00 00 mov 0xe2d5(%rip),%r11 # 66357920 - 6634964b: 4c 8b 15 de e2 00 00 mov 0xe2de(%rip),%r10 # 66357930 - 66349652: 48 8d 50 1c lea 0x1c(%rax),%rdx - 66349656: b8 38 00 00 00 mov $0x38,%eax +0000000066349530 : + 66349530: 56 push %rsi + 66349531: 53 push %rbx + 66349532: 4c 8b 15 e7 e3 00 00 mov 0xe3e7(%rip),%r10 # 66357920 + 66349539: 4c 8b 05 f0 e3 00 00 mov 0xe3f0(%rip),%r8 # 66357930 + 66349540: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66349544: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349548: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 6634954c: 41 8b 31 mov (%r9),%esi + 6634954f: 85 f6 test %esi,%esi + 66349551: 0f 84 09 01 00 00 je 66349660 + 66349557: 4c 8b 4a 08 mov 0x8(%rdx),%r9 + 6634955b: 44 8b 58 10 mov 0x10(%rax),%r11d + 6634955f: 45 8b 09 mov (%r9),%r9d + 66349562: 45 39 cb cmp %r9d,%r11d + 66349565: 74 59 je 663495c0 + 66349567: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634956b: 44 89 ce mov %r9d,%esi + 6634956e: 44 29 de sub %r11d,%esi + 66349571: 45 31 db xor %r11d,%r11d + 66349574: 48 8b 5b 20 mov 0x20(%rbx),%rbx + 66349578: 01 33 add %esi,(%rbx) + 6634957a: 44 89 48 10 mov %r9d,0x10(%rax) + 6634957e: 8b 1b mov (%rbx),%ebx + 66349580: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 66349584: 85 db test %ebx,%ebx + 66349586: 41 0f 9f c3 setg %r11b + 6634958a: 45 3b 19 cmp (%r9),%r11d + 6634958d: 74 31 je 663495c0 + 6634958f: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66349593: 4d 8b 49 20 mov 0x20(%r9),%r9 + 66349597: 45 8b 09 mov (%r9),%r9d + 6634959a: 45 85 c9 test %r9d,%r9d + 6634959d: 75 21 jne 663495c0 + 6634959f: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663495a3: 4d 8b 59 20 mov 0x20(%r9),%r11 + 663495a7: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663495ab: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663495b2: 4d 63 08 movslq (%r8),%r9 + 663495b5: 41 8d 59 01 lea 0x1(%r9),%ebx + 663495b9: 41 89 18 mov %ebx,(%r8) + 663495bc: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663495c0: 4c 8b 4a 10 mov 0x10(%rdx),%r9 + 663495c4: 44 8b 58 14 mov 0x14(%rax),%r11d + 663495c8: 45 8b 09 mov (%r9),%r9d + 663495cb: 45 39 d9 cmp %r11d,%r9d + 663495ce: 74 58 je 66349628 + 663495d0: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663495d4: 44 89 ce mov %r9d,%esi + 663495d7: 44 29 de sub %r11d,%esi + 663495da: 45 31 db xor %r11d,%r11d + 663495dd: 48 8b 5b 28 mov 0x28(%rbx),%rbx + 663495e1: 01 33 add %esi,(%rbx) + 663495e3: 44 89 48 14 mov %r9d,0x14(%rax) + 663495e7: 8b 33 mov (%rbx),%esi + 663495e9: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 663495ed: 85 f6 test %esi,%esi + 663495ef: 41 0f 9f c3 setg %r11b + 663495f3: 45 3b 19 cmp (%r9),%r11d + 663495f6: 74 30 je 66349628 + 663495f8: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663495fc: 4d 8b 49 28 mov 0x28(%r9),%r9 + 66349600: 41 8b 19 mov (%r9),%ebx + 66349603: 85 db test %ebx,%ebx + 66349605: 75 21 jne 66349628 + 66349607: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634960b: 4d 8b 59 28 mov 0x28(%r9),%r11 + 6634960f: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 66349613: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634961a: 4d 63 08 movslq (%r8),%r9 + 6634961d: 41 8d 59 01 lea 0x1(%r9),%ebx + 66349621: 41 89 18 mov %ebx,(%r8) + 66349624: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66349628: 4c 8b 4a 18 mov 0x18(%rdx),%r9 + 6634962c: 44 8b 58 18 mov 0x18(%rax),%r11d + 66349630: 45 8b 09 mov (%r9),%r9d + 66349633: 45 39 d9 cmp %r11d,%r9d + 66349636: 0f 84 45 01 00 00 je 66349781 + 6634963c: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66349640: 44 89 ce mov %r9d,%esi + 66349643: 44 29 de sub %r11d,%esi + 66349646: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 6634964a: 01 33 add %esi,(%rbx) + 6634964c: 44 89 48 18 mov %r9d,0x18(%rax) + 66349650: 44 8b 1b mov (%rbx),%r11d + 66349653: 45 85 db test %r11d,%r11d + 66349656: e9 e8 00 00 00 jmpq 66349743 6634965b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349660: 8b 0a mov (%rdx),%ecx - 66349662: 85 c9 test %ecx,%ecx - 66349664: 74 55 je 663496bb - 66349666: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634966a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634966e: 41 29 08 sub %ecx,(%r8) - 66349671: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349677: 45 8b 00 mov (%r8),%r8d - 6634967a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634967e: 45 85 c0 test %r8d,%r8d - 66349681: 41 0f 9f c0 setg %r8b - 66349685: 45 0f b6 c0 movzbl %r8b,%r8d - 66349689: 44 3b 01 cmp (%rcx),%r8d - 6634968c: 74 2d je 663496bb - 6634968e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349692: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349696: 8b 09 mov (%rcx),%ecx - 66349698: 85 c9 test %ecx,%ecx - 6634969a: 75 1f jne 663496bb - 6634969c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663496a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663496a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663496a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663496ae: 49 63 0a movslq (%r10),%rcx - 663496b1: 8d 59 01 lea 0x1(%rcx),%ebx - 663496b4: 41 89 1a mov %ebx,(%r10) - 663496b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663496bb: 48 83 c0 08 add $0x8,%rax - 663496bf: 48 83 c2 04 add $0x4,%rdx - 663496c3: 48 3d b8 01 00 00 cmp $0x1b8,%rax - 663496c9: 75 95 jne 66349660 - 663496cb: 48 83 c4 28 add $0x28,%rsp - 663496cf: 5b pop %rbx - 663496d0: 5e pop %rsi - 663496d1: 5f pop %rdi - 663496d2: 5d pop %rbp - 663496d3: 41 5c pop %r12 - 663496d5: 41 5d pop %r13 - 663496d7: c3 retq - 663496d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663496df: 00 + 66349660: 44 8b 48 10 mov 0x10(%rax),%r9d + 66349664: 45 85 c9 test %r9d,%r9d + 66349667: 74 58 je 663496c1 + 66349669: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634966d: 4d 8b 5b 20 mov 0x20(%r11),%r11 + 66349671: 45 29 0b sub %r9d,(%r11) + 66349674: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) + 6634967b: 45 8b 0b mov (%r11),%r9d + 6634967e: 45 31 db xor %r11d,%r11d + 66349681: 45 85 c9 test %r9d,%r9d + 66349684: 4c 8b 4a 20 mov 0x20(%rdx),%r9 + 66349688: 41 0f 9f c3 setg %r11b + 6634968c: 45 3b 19 cmp (%r9),%r11d + 6634968f: 74 30 je 663496c1 + 66349691: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66349695: 4d 8b 49 20 mov 0x20(%r9),%r9 + 66349699: 41 8b 31 mov (%r9),%esi + 6634969c: 85 f6 test %esi,%esi + 6634969e: 75 21 jne 663496c1 + 663496a0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663496a4: 4d 8b 59 20 mov 0x20(%r9),%r11 + 663496a8: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 663496ac: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663496b3: 4d 63 08 movslq (%r8),%r9 + 663496b6: 41 8d 59 01 lea 0x1(%r9),%ebx + 663496ba: 41 89 18 mov %ebx,(%r8) + 663496bd: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 663496c1: 44 8b 48 14 mov 0x14(%rax),%r9d + 663496c5: 45 85 c9 test %r9d,%r9d + 663496c8: 74 58 je 66349722 + 663496ca: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663496ce: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 663496d2: 45 29 0b sub %r9d,(%r11) + 663496d5: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 663496dc: 41 8b 1b mov (%r11),%ebx + 663496df: 45 31 db xor %r11d,%r11d + 663496e2: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 663496e6: 85 db test %ebx,%ebx + 663496e8: 41 0f 9f c3 setg %r11b + 663496ec: 45 3b 19 cmp (%r9),%r11d + 663496ef: 74 31 je 66349722 + 663496f1: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663496f5: 4d 8b 49 28 mov 0x28(%r9),%r9 + 663496f9: 45 8b 19 mov (%r9),%r11d + 663496fc: 45 85 db test %r11d,%r11d + 663496ff: 75 21 jne 66349722 + 66349701: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66349705: 4d 8b 59 28 mov 0x28(%r9),%r11 + 66349709: 4d 8b 4b 10 mov 0x10(%r11),%r9 + 6634970d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66349714: 4d 63 08 movslq (%r8),%r9 + 66349717: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634971b: 41 89 18 mov %ebx,(%r8) + 6634971e: 4f 89 1c ca mov %r11,(%r10,%r9,8) + 66349722: 44 8b 48 18 mov 0x18(%rax),%r9d + 66349726: 45 85 c9 test %r9d,%r9d + 66349729: 74 56 je 66349781 + 6634972b: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634972f: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66349733: 45 29 0b sub %r9d,(%r11) + 66349736: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 6634973d: 45 8b 0b mov (%r11),%r9d + 66349740: 45 85 c9 test %r9d,%r9d + 66349743: 48 8b 42 30 mov 0x30(%rdx),%rax + 66349747: 41 0f 9f c1 setg %r9b + 6634974b: 45 0f b6 c9 movzbl %r9b,%r9d + 6634974f: 44 3b 08 cmp (%rax),%r9d + 66349752: 74 2d je 66349781 + 66349754: 48 8b 41 20 mov 0x20(%rcx),%rax + 66349758: 48 8b 40 30 mov 0x30(%rax),%rax + 6634975c: 8b 00 mov (%rax),%eax + 6634975e: 85 c0 test %eax,%eax + 66349760: 75 1f jne 66349781 + 66349762: 48 8b 41 28 mov 0x28(%rcx),%rax + 66349766: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634976a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634976e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349774: 49 63 00 movslq (%r8),%rax + 66349777: 8d 48 01 lea 0x1(%rax),%ecx + 6634977a: 41 89 08 mov %ecx,(%r8) + 6634977d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66349781: 5b pop %rbx + 66349782: 5e pop %rsi + 66349783: c3 retq + 66349784: 66 90 xchg %ax,%ax + 66349786: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634978d: 00 00 00 -00000000663496e0 : - 663496e0: 41 55 push %r13 - 663496e2: 41 54 push %r12 - 663496e4: 55 push %rbp - 663496e5: 57 push %rdi - 663496e6: 56 push %rsi - 663496e7: 53 push %rbx - 663496e8: 48 83 ec 28 sub $0x28,%rsp - 663496ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663496f0: 49 8b 81 d0 01 00 00 mov 0x1d0(%r9),%rax - 663496f7: 48 89 ce mov %rcx,%rsi - 663496fa: 8b 18 mov (%rax),%ebx - 663496fc: 85 db test %ebx,%ebx - 663496fe: 0f 84 41 01 00 00 je 66349845 - 66349704: 49 8b 41 10 mov 0x10(%r9),%rax - 66349708: bb 28 00 00 00 mov $0x28,%ebx - 6634970d: 4c 8d 2d ec a8 00 00 lea 0xa8ec(%rip),%r13 # 66354000 <.rdata> - 66349714: 4c 8d 25 f5 a8 00 00 lea 0xa8f5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634971b: 8b 10 mov (%rax),%edx - 6634971d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349721: 8b 00 mov (%rax),%eax - 66349723: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349726: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634972a: 8b 12 mov (%rdx),%edx - 6634972c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634972f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349733: 8b 12 mov (%rdx),%edx - 66349735: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66349738: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634973c: 8b 3a mov (%rdx),%edi - 6634973e: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349742: c1 e7 04 shl $0x4,%edi - 66349745: 01 c7 add %eax,%edi - 66349747: 49 8b 41 30 mov 0x30(%r9),%rax - 6634974b: 8b 00 mov (%rax),%eax - 6634974d: c1 e0 05 shl $0x5,%eax - 66349750: 01 c7 add %eax,%edi - 66349752: 49 8b 41 38 mov 0x38(%r9),%rax - 66349756: 8b 00 mov (%rax),%eax - 66349758: c1 e0 06 shl $0x6,%eax - 6634975b: 01 f8 add %edi,%eax - 6634975d: 8b 3a mov (%rdx),%edi - 6634975f: 49 8b 51 48 mov 0x48(%r9),%rdx - 66349763: c1 e7 07 shl $0x7,%edi - 66349766: 01 f8 add %edi,%eax - 66349768: 8b 3a mov (%rdx),%edi - 6634976a: c1 e7 08 shl $0x8,%edi - 6634976d: 01 c7 add %eax,%edi - 6634976f: 48 63 ef movslq %edi,%rbp - 66349772: 48 c1 e5 02 shl $0x2,%rbp - 66349776: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634977d: 00 00 00 - 66349780: 85 ff test %edi,%edi - 66349782: 78 05 js 66349789 - 66349784: 39 7e 38 cmp %edi,0x38(%rsi) - 66349787: 7f 11 jg 6634979a - 66349789: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634978f: 4c 89 ea mov %r13,%rdx - 66349792: 4c 89 e1 mov %r12,%rcx - 66349795: e8 b6 87 00 00 callq 66351f50 <_assert> - 6634979a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634979e: 48 8b 46 40 mov 0x40(%rsi),%rax - 663497a2: 48 01 da add %rbx,%rdx - 663497a5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663497a8: 8b 0a mov (%rdx),%ecx - 663497aa: 39 c8 cmp %ecx,%eax - 663497ac: 74 6c je 6634981a - 663497ae: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663497b2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663497b6: 41 89 c3 mov %eax,%r11d - 663497b9: 41 29 cb sub %ecx,%r11d - 663497bc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663497c0: 45 01 18 add %r11d,(%r8) - 663497c3: 89 02 mov %eax,(%rdx) - 663497c5: 31 d2 xor %edx,%edx - 663497c7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663497cb: 45 8b 18 mov (%r8),%r11d - 663497ce: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663497d2: 45 85 db test %r11d,%r11d - 663497d5: 0f 9f c2 setg %dl - 663497d8: 3b 10 cmp (%rax),%edx - 663497da: 74 3e je 6634981a - 663497dc: 48 8b 46 20 mov 0x20(%rsi),%rax - 663497e0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663497e4: 44 8b 10 mov (%rax),%r10d - 663497e7: 45 85 d2 test %r10d,%r10d - 663497ea: 75 2e jne 6634981a - 663497ec: 48 8b 46 28 mov 0x28(%rsi),%rax - 663497f0: 48 8b 0d 39 e1 00 00 mov 0xe139(%rip),%rcx # 66357930 - 663497f7: 4c 8b 05 22 e1 00 00 mov 0xe122(%rip),%r8 # 66357920 - 663497fe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349802: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349806: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634980c: 48 63 01 movslq (%rcx),%rax - 6634980f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349813: 44 89 09 mov %r9d,(%rcx) - 66349816: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634981a: 48 83 c3 04 add $0x4,%rbx - 6634981e: 81 c7 00 02 00 00 add $0x200,%edi - 66349824: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634982b: 48 81 fb e8 00 00 00 cmp $0xe8,%rbx - 66349832: 0f 85 48 ff ff ff jne 66349780 - 66349838: 48 83 c4 28 add $0x28,%rsp - 6634983c: 5b pop %rbx - 6634983d: 5e pop %rsi - 6634983e: 5f pop %rdi - 6634983f: 5d pop %rbp - 66349840: 41 5c pop %r12 - 66349842: 41 5d pop %r13 - 66349844: c3 retq - 66349845: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349849: 4c 8b 1d d0 e0 00 00 mov 0xe0d0(%rip),%r11 # 66357920 - 66349850: 4c 8b 15 d9 e0 00 00 mov 0xe0d9(%rip),%r10 # 66357930 - 66349857: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634985b: b8 50 00 00 00 mov $0x50,%eax - 66349860: 8b 0a mov (%rdx),%ecx - 66349862: 85 c9 test %ecx,%ecx - 66349864: 74 55 je 663498bb - 66349866: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634986a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634986e: 41 29 08 sub %ecx,(%r8) - 66349871: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349877: 45 8b 00 mov (%r8),%r8d - 6634987a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634987e: 45 85 c0 test %r8d,%r8d - 66349881: 41 0f 9f c0 setg %r8b - 66349885: 45 0f b6 c0 movzbl %r8b,%r8d - 66349889: 44 3b 01 cmp (%rcx),%r8d - 6634988c: 74 2d je 663498bb - 6634988e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349892: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349896: 8b 09 mov (%rcx),%ecx - 66349898: 85 c9 test %ecx,%ecx - 6634989a: 75 1f jne 663498bb - 6634989c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663498a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663498a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663498a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663498ae: 49 63 0a movslq (%r10),%rcx - 663498b1: 8d 59 01 lea 0x1(%rcx),%ebx - 663498b4: 41 89 1a mov %ebx,(%r10) - 663498b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663498bb: 48 83 c0 08 add $0x8,%rax - 663498bf: 48 83 c2 04 add $0x4,%rdx - 663498c3: 48 3d d0 01 00 00 cmp $0x1d0,%rax - 663498c9: 75 95 jne 66349860 - 663498cb: 48 83 c4 28 add $0x28,%rsp - 663498cf: 5b pop %rbx - 663498d0: 5e pop %rsi - 663498d1: 5f pop %rdi - 663498d2: 5d pop %rbp - 663498d3: 41 5c pop %r12 - 663498d5: 41 5d pop %r13 - 663498d7: c3 retq - 663498d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663498df: 00 +0000000066349790 : + 66349790: 41 55 push %r13 + 66349792: 41 54 push %r12 + 66349794: 55 push %rbp + 66349795: 57 push %rdi + 66349796: 56 push %rsi + 66349797: 53 push %rbx + 66349798: 48 83 ec 28 sub $0x28,%rsp + 6634979c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663497a0: 49 8b 81 e0 01 00 00 mov 0x1e0(%r9),%rax + 663497a7: 48 89 ce mov %rcx,%rsi + 663497aa: 8b 18 mov (%rax),%ebx + 663497ac: 85 db test %ebx,%ebx + 663497ae: 0f 84 51 01 00 00 je 66349905 + 663497b4: 49 8b 41 10 mov 0x10(%r9),%rax + 663497b8: bb 30 00 00 00 mov $0x30,%ebx + 663497bd: 4c 8d 2d 3c a8 00 00 lea 0xa83c(%rip),%r13 # 66354000 <.rdata> + 663497c4: 4c 8d 25 45 a8 00 00 lea 0xa845(%rip),%r12 # 66354010 <.rdata+0x10> + 663497cb: 8b 10 mov (%rax),%edx + 663497cd: 49 8b 41 08 mov 0x8(%r9),%rax + 663497d1: 8b 00 mov (%rax),%eax + 663497d3: 8d 04 50 lea (%rax,%rdx,2),%eax + 663497d6: 49 8b 51 18 mov 0x18(%r9),%rdx + 663497da: 8b 12 mov (%rdx),%edx + 663497dc: 8d 04 90 lea (%rax,%rdx,4),%eax + 663497df: 49 8b 51 20 mov 0x20(%r9),%rdx + 663497e3: 8b 12 mov (%rdx),%edx + 663497e5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 663497e8: 49 8b 41 28 mov 0x28(%r9),%rax + 663497ec: 49 8b 51 30 mov 0x30(%r9),%rdx + 663497f0: 8b 00 mov (%rax),%eax + 663497f2: c1 e0 04 shl $0x4,%eax + 663497f5: 01 f8 add %edi,%eax + 663497f7: 8b 3a mov (%rdx),%edi + 663497f9: 49 8b 51 38 mov 0x38(%r9),%rdx + 663497fd: c1 e7 05 shl $0x5,%edi + 66349800: 01 f8 add %edi,%eax + 66349802: 8b 3a mov (%rdx),%edi + 66349804: 49 8b 51 50 mov 0x50(%r9),%rdx + 66349808: c1 e7 06 shl $0x6,%edi + 6634980b: 01 c7 add %eax,%edi + 6634980d: 49 8b 41 40 mov 0x40(%r9),%rax + 66349811: 8b 00 mov (%rax),%eax + 66349813: c1 e0 07 shl $0x7,%eax + 66349816: 01 c7 add %eax,%edi + 66349818: 49 8b 41 48 mov 0x48(%r9),%rax + 6634981c: 8b 00 mov (%rax),%eax + 6634981e: c1 e0 08 shl $0x8,%eax + 66349821: 01 f8 add %edi,%eax + 66349823: 8b 3a mov (%rdx),%edi + 66349825: 49 8b 51 58 mov 0x58(%r9),%rdx + 66349829: c1 e7 09 shl $0x9,%edi + 6634982c: 01 f8 add %edi,%eax + 6634982e: 8b 3a mov (%rdx),%edi + 66349830: c1 e7 0a shl $0xa,%edi + 66349833: 01 c7 add %eax,%edi + 66349835: 48 63 ef movslq %edi,%rbp + 66349838: 48 c1 e5 02 shl $0x2,%rbp + 6634983c: 0f 1f 40 00 nopl 0x0(%rax) + 66349840: 85 ff test %edi,%edi + 66349842: 78 05 js 66349849 + 66349844: 39 7e 38 cmp %edi,0x38(%rsi) + 66349847: 7f 11 jg 6634985a + 66349849: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634984f: 4c 89 ea mov %r13,%rdx + 66349852: 4c 89 e1 mov %r12,%rcx + 66349855: e8 b6 89 00 00 callq 66352210 <_assert> + 6634985a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634985e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66349862: 48 01 da add %rbx,%rdx + 66349865: 8b 04 28 mov (%rax,%rbp,1),%eax + 66349868: 8b 0a mov (%rdx),%ecx + 6634986a: 39 c8 cmp %ecx,%eax + 6634986c: 74 6c je 663498da + 6634986e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349872: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66349876: 41 89 c3 mov %eax,%r11d + 66349879: 41 29 cb sub %ecx,%r11d + 6634987c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66349880: 45 01 18 add %r11d,(%r8) + 66349883: 89 02 mov %eax,(%rdx) + 66349885: 31 d2 xor %edx,%edx + 66349887: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634988b: 45 8b 18 mov (%r8),%r11d + 6634988e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349892: 45 85 db test %r11d,%r11d + 66349895: 0f 9f c2 setg %dl + 66349898: 3b 10 cmp (%rax),%edx + 6634989a: 74 3e je 663498da + 6634989c: 48 8b 46 20 mov 0x20(%rsi),%rax + 663498a0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 663498a4: 44 8b 10 mov (%rax),%r10d + 663498a7: 45 85 d2 test %r10d,%r10d + 663498aa: 75 2e jne 663498da + 663498ac: 48 8b 46 28 mov 0x28(%rsi),%rax + 663498b0: 48 8b 0d 79 e0 00 00 mov 0xe079(%rip),%rcx # 66357930 + 663498b7: 4c 8b 05 62 e0 00 00 mov 0xe062(%rip),%r8 # 66357920 + 663498be: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 663498c2: 48 8b 42 10 mov 0x10(%rdx),%rax + 663498c6: c7 00 01 00 00 00 movl $0x1,(%rax) + 663498cc: 48 63 01 movslq (%rcx),%rax + 663498cf: 44 8d 48 01 lea 0x1(%rax),%r9d + 663498d3: 44 89 09 mov %r9d,(%rcx) + 663498d6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663498da: 48 83 c3 04 add $0x4,%rbx + 663498de: 81 c7 00 08 00 00 add $0x800,%edi + 663498e4: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 663498eb: 48 81 fb f0 00 00 00 cmp $0xf0,%rbx + 663498f2: 0f 85 48 ff ff ff jne 66349840 + 663498f8: 48 83 c4 28 add $0x28,%rsp + 663498fc: 5b pop %rbx + 663498fd: 5e pop %rsi + 663498fe: 5f pop %rdi + 663498ff: 5d pop %rbp + 66349900: 41 5c pop %r12 + 66349902: 41 5d pop %r13 + 66349904: c3 retq + 66349905: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349909: 4c 8b 1d 10 e0 00 00 mov 0xe010(%rip),%r11 # 66357920 + 66349910: 4c 8b 15 19 e0 00 00 mov 0xe019(%rip),%r10 # 66357930 + 66349917: 48 8d 50 30 lea 0x30(%rax),%rdx + 6634991b: b8 60 00 00 00 mov $0x60,%eax + 66349920: 8b 0a mov (%rdx),%ecx + 66349922: 85 c9 test %ecx,%ecx + 66349924: 74 55 je 6634997b + 66349926: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634992a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634992e: 41 29 08 sub %ecx,(%r8) + 66349931: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349937: 45 8b 00 mov (%r8),%r8d + 6634993a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634993e: 45 85 c0 test %r8d,%r8d + 66349941: 41 0f 9f c0 setg %r8b + 66349945: 45 0f b6 c0 movzbl %r8b,%r8d + 66349949: 44 3b 01 cmp (%rcx),%r8d + 6634994c: 74 2d je 6634997b + 6634994e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349952: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349956: 8b 09 mov (%rcx),%ecx + 66349958: 85 c9 test %ecx,%ecx + 6634995a: 75 1f jne 6634997b + 6634995c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66349960: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349964: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349968: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634996e: 49 63 0a movslq (%r10),%rcx + 66349971: 8d 59 01 lea 0x1(%rcx),%ebx + 66349974: 41 89 1a mov %ebx,(%r10) + 66349977: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634997b: 48 83 c0 08 add $0x8,%rax + 6634997f: 48 83 c2 04 add $0x4,%rdx + 66349983: 48 3d e0 01 00 00 cmp $0x1e0,%rax + 66349989: 75 95 jne 66349920 + 6634998b: 48 83 c4 28 add $0x28,%rsp + 6634998f: 5b pop %rbx + 66349990: 5e pop %rsi + 66349991: 5f pop %rdi + 66349992: 5d pop %rbp + 66349993: 41 5c pop %r12 + 66349995: 41 5d pop %r13 + 66349997: c3 retq + 66349998: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634999f: 00 -00000000663498e0 : - 663498e0: 41 55 push %r13 - 663498e2: 41 54 push %r12 - 663498e4: 55 push %rbp - 663498e5: 57 push %rdi - 663498e6: 56 push %rsi - 663498e7: 53 push %rbx - 663498e8: 48 83 ec 28 sub $0x28,%rsp - 663498ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663498f0: 49 8b 81 68 01 00 00 mov 0x168(%r9),%rax - 663498f7: 48 89 ce mov %rcx,%rsi - 663498fa: 8b 18 mov (%rax),%ebx - 663498fc: 85 db test %ebx,%ebx - 663498fe: 0f 84 61 01 00 00 je 66349a65 - 66349904: 49 8b 41 10 mov 0x10(%r9),%rax - 66349908: bb 34 00 00 00 mov $0x34,%ebx - 6634990d: 4c 8d 2d ec a6 00 00 lea 0xa6ec(%rip),%r13 # 66354000 <.rdata> - 66349914: 4c 8d 25 f5 a6 00 00 lea 0xa6f5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634991b: 8b 10 mov (%rax),%edx - 6634991d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349921: 8b 00 mov (%rax),%eax - 66349923: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349926: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634992a: 8b 12 mov (%rdx),%edx - 6634992c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634992f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349933: 8b 12 mov (%rdx),%edx - 66349935: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349938: 49 8b 41 28 mov 0x28(%r9),%rax - 6634993c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349940: 8b 00 mov (%rax),%eax - 66349942: c1 e0 04 shl $0x4,%eax - 66349945: 01 c7 add %eax,%edi - 66349947: 49 8b 41 30 mov 0x30(%r9),%rax - 6634994b: 8b 00 mov (%rax),%eax - 6634994d: c1 e0 05 shl $0x5,%eax - 66349950: 01 f8 add %edi,%eax - 66349952: 8b 3a mov (%rdx),%edi - 66349954: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349958: c1 e7 06 shl $0x6,%edi - 6634995b: 01 f8 add %edi,%eax - 6634995d: 8b 3a mov (%rdx),%edi - 6634995f: 49 8b 51 58 mov 0x58(%r9),%rdx - 66349963: c1 e7 07 shl $0x7,%edi - 66349966: 01 c7 add %eax,%edi - 66349968: 49 8b 41 48 mov 0x48(%r9),%rax - 6634996c: 8b 00 mov (%rax),%eax - 6634996e: c1 e0 08 shl $0x8,%eax - 66349971: 01 c7 add %eax,%edi - 66349973: 49 8b 41 50 mov 0x50(%r9),%rax - 66349977: 8b 00 mov (%rax),%eax - 66349979: c1 e0 09 shl $0x9,%eax - 6634997c: 01 f8 add %edi,%eax - 6634997e: 8b 3a mov (%rdx),%edi - 66349980: 49 8b 51 60 mov 0x60(%r9),%rdx - 66349984: c1 e7 0a shl $0xa,%edi - 66349987: 01 f8 add %edi,%eax - 66349989: 8b 3a mov (%rdx),%edi - 6634998b: c1 e7 0b shl $0xb,%edi - 6634998e: 01 c7 add %eax,%edi - 66349990: 48 63 ef movslq %edi,%rbp - 66349993: 48 c1 e5 02 shl $0x2,%rbp - 66349997: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634999e: 00 00 - 663499a0: 85 ff test %edi,%edi - 663499a2: 78 05 js 663499a9 - 663499a4: 39 7e 38 cmp %edi,0x38(%rsi) - 663499a7: 7f 11 jg 663499ba - 663499a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663499af: 4c 89 ea mov %r13,%rdx - 663499b2: 4c 89 e1 mov %r12,%rcx - 663499b5: e8 96 85 00 00 callq 66351f50 <_assert> - 663499ba: 48 8b 56 08 mov 0x8(%rsi),%rdx - 663499be: 48 8b 46 40 mov 0x40(%rsi),%rax - 663499c2: 48 01 da add %rbx,%rdx - 663499c5: 8b 04 28 mov (%rax,%rbp,1),%eax - 663499c8: 8b 0a mov (%rdx),%ecx - 663499ca: 39 c8 cmp %ecx,%eax - 663499cc: 74 6c je 66349a3a - 663499ce: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663499d2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663499d6: 41 89 c3 mov %eax,%r11d - 663499d9: 41 29 cb sub %ecx,%r11d - 663499dc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663499e0: 45 01 18 add %r11d,(%r8) - 663499e3: 89 02 mov %eax,(%rdx) - 663499e5: 31 d2 xor %edx,%edx - 663499e7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663499eb: 45 8b 18 mov (%r8),%r11d - 663499ee: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663499f2: 45 85 db test %r11d,%r11d - 663499f5: 0f 9f c2 setg %dl - 663499f8: 3b 10 cmp (%rax),%edx - 663499fa: 74 3e je 66349a3a - 663499fc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349a00: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349a04: 44 8b 10 mov (%rax),%r10d - 66349a07: 45 85 d2 test %r10d,%r10d - 66349a0a: 75 2e jne 66349a3a - 66349a0c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349a10: 48 8b 0d 19 df 00 00 mov 0xdf19(%rip),%rcx # 66357930 - 66349a17: 4c 8b 05 02 df 00 00 mov 0xdf02(%rip),%r8 # 66357920 - 66349a1e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349a22: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349a26: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349a2c: 48 63 01 movslq (%rcx),%rax - 66349a2f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349a33: 44 89 09 mov %r9d,(%rcx) - 66349a36: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349a3a: 48 83 c3 04 add $0x4,%rbx - 66349a3e: 81 c7 00 10 00 00 add $0x1000,%edi - 66349a44: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 66349a4b: 48 81 fb b4 00 00 00 cmp $0xb4,%rbx - 66349a52: 0f 85 48 ff ff ff jne 663499a0 - 66349a58: 48 83 c4 28 add $0x28,%rsp - 66349a5c: 5b pop %rbx - 66349a5d: 5e pop %rsi - 66349a5e: 5f pop %rdi - 66349a5f: 5d pop %rbp - 66349a60: 41 5c pop %r12 - 66349a62: 41 5d pop %r13 - 66349a64: c3 retq - 66349a65: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349a69: 4c 8b 1d b0 de 00 00 mov 0xdeb0(%rip),%r11 # 66357920 - 66349a70: 4c 8b 15 b9 de 00 00 mov 0xdeb9(%rip),%r10 # 66357930 - 66349a77: 48 8d 50 34 lea 0x34(%rax),%rdx - 66349a7b: b8 68 00 00 00 mov $0x68,%eax - 66349a80: 8b 0a mov (%rdx),%ecx - 66349a82: 85 c9 test %ecx,%ecx - 66349a84: 74 55 je 66349adb - 66349a86: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349a8a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349a8e: 41 29 08 sub %ecx,(%r8) - 66349a91: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349a97: 45 8b 00 mov (%r8),%r8d - 66349a9a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349a9e: 45 85 c0 test %r8d,%r8d - 66349aa1: 41 0f 9f c0 setg %r8b - 66349aa5: 45 0f b6 c0 movzbl %r8b,%r8d - 66349aa9: 44 3b 01 cmp (%rcx),%r8d - 66349aac: 74 2d je 66349adb - 66349aae: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349ab2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349ab6: 8b 09 mov (%rcx),%ecx - 66349ab8: 85 c9 test %ecx,%ecx - 66349aba: 75 1f jne 66349adb - 66349abc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349ac0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349ac4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349ac8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349ace: 49 63 0a movslq (%r10),%rcx - 66349ad1: 8d 59 01 lea 0x1(%rcx),%ebx - 66349ad4: 41 89 1a mov %ebx,(%r10) - 66349ad7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349adb: 48 83 c0 08 add $0x8,%rax - 66349adf: 48 83 c2 04 add $0x4,%rdx - 66349ae3: 48 3d 68 01 00 00 cmp $0x168,%rax - 66349ae9: 75 95 jne 66349a80 - 66349aeb: 48 83 c4 28 add $0x28,%rsp - 66349aef: 5b pop %rbx - 66349af0: 5e pop %rsi - 66349af1: 5f pop %rdi - 66349af2: 5d pop %rbp - 66349af3: 41 5c pop %r12 - 66349af5: 41 5d pop %r13 - 66349af7: c3 retq - 66349af8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349aff: 00 +00000000663499a0 : + 663499a0: 41 55 push %r13 + 663499a2: 41 54 push %r12 + 663499a4: 55 push %rbp + 663499a5: 57 push %rdi + 663499a6: 56 push %rsi + 663499a7: 53 push %rbx + 663499a8: 48 83 ec 28 sub $0x28,%rsp + 663499ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663499b0: 49 8b 81 d8 01 00 00 mov 0x1d8(%r9),%rax + 663499b7: 48 89 ce mov %rcx,%rsi + 663499ba: 8b 18 mov (%rax),%ebx + 663499bc: 85 db test %ebx,%ebx + 663499be: 0f 84 4c 01 00 00 je 66349b10 + 663499c4: 49 8b 41 10 mov 0x10(%r9),%rax + 663499c8: bb 2c 00 00 00 mov $0x2c,%ebx + 663499cd: 4c 8d 2d 2c a6 00 00 lea 0xa62c(%rip),%r13 # 66354000 <.rdata> + 663499d4: 4c 8d 25 35 a6 00 00 lea 0xa635(%rip),%r12 # 66354010 <.rdata+0x10> + 663499db: 8b 10 mov (%rax),%edx + 663499dd: 49 8b 41 08 mov 0x8(%r9),%rax + 663499e1: 8b 00 mov (%rax),%eax + 663499e3: 8d 04 50 lea (%rax,%rdx,2),%eax + 663499e6: 49 8b 51 18 mov 0x18(%r9),%rdx + 663499ea: 8b 12 mov (%rdx),%edx + 663499ec: 8d 04 90 lea (%rax,%rdx,4),%eax + 663499ef: 49 8b 51 20 mov 0x20(%r9),%rdx + 663499f3: 8b 12 mov (%rdx),%edx + 663499f5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 663499f8: 49 8b 51 28 mov 0x28(%r9),%rdx + 663499fc: 8b 3a mov (%rdx),%edi + 663499fe: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349a02: c1 e7 04 shl $0x4,%edi + 66349a05: 01 f8 add %edi,%eax + 66349a07: 8b 3a mov (%rdx),%edi + 66349a09: 49 8b 51 48 mov 0x48(%r9),%rdx + 66349a0d: c1 e7 05 shl $0x5,%edi + 66349a10: 01 c7 add %eax,%edi + 66349a12: 49 8b 41 38 mov 0x38(%r9),%rax + 66349a16: 8b 00 mov (%rax),%eax + 66349a18: c1 e0 06 shl $0x6,%eax + 66349a1b: 01 c7 add %eax,%edi + 66349a1d: 49 8b 41 40 mov 0x40(%r9),%rax + 66349a21: 8b 00 mov (%rax),%eax + 66349a23: c1 e0 07 shl $0x7,%eax + 66349a26: 01 f8 add %edi,%eax + 66349a28: 8b 3a mov (%rdx),%edi + 66349a2a: 49 8b 51 50 mov 0x50(%r9),%rdx + 66349a2e: c1 e7 08 shl $0x8,%edi + 66349a31: 01 f8 add %edi,%eax + 66349a33: 8b 3a mov (%rdx),%edi + 66349a35: c1 e7 09 shl $0x9,%edi + 66349a38: 01 c7 add %eax,%edi + 66349a3a: 48 63 ef movslq %edi,%rbp + 66349a3d: 48 c1 e5 02 shl $0x2,%rbp + 66349a41: 85 ff test %edi,%edi + 66349a43: 78 05 js 66349a4a + 66349a45: 39 7e 38 cmp %edi,0x38(%rsi) + 66349a48: 7f 11 jg 66349a5b + 66349a4a: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349a50: 4c 89 ea mov %r13,%rdx + 66349a53: 4c 89 e1 mov %r12,%rcx + 66349a56: e8 b5 87 00 00 callq 66352210 <_assert> + 66349a5b: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66349a5f: 48 8b 46 40 mov 0x40(%rsi),%rax + 66349a63: 48 01 da add %rbx,%rdx + 66349a66: 8b 04 28 mov (%rax,%rbp,1),%eax + 66349a69: 8b 0a mov (%rdx),%ecx + 66349a6b: 39 c8 cmp %ecx,%eax + 66349a6d: 74 6c je 66349adb + 66349a6f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349a73: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66349a77: 41 89 c3 mov %eax,%r11d + 66349a7a: 41 29 cb sub %ecx,%r11d + 66349a7d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66349a81: 45 01 18 add %r11d,(%r8) + 66349a84: 89 02 mov %eax,(%rdx) + 66349a86: 31 d2 xor %edx,%edx + 66349a88: 48 8b 46 10 mov 0x10(%rsi),%rax + 66349a8c: 45 8b 18 mov (%r8),%r11d + 66349a8f: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349a93: 45 85 db test %r11d,%r11d + 66349a96: 0f 9f c2 setg %dl + 66349a99: 3b 10 cmp (%rax),%edx + 66349a9b: 74 3e je 66349adb + 66349a9d: 48 8b 46 20 mov 0x20(%rsi),%rax + 66349aa1: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349aa5: 44 8b 10 mov (%rax),%r10d + 66349aa8: 45 85 d2 test %r10d,%r10d + 66349aab: 75 2e jne 66349adb + 66349aad: 48 8b 46 28 mov 0x28(%rsi),%rax + 66349ab1: 48 8b 0d 78 de 00 00 mov 0xde78(%rip),%rcx # 66357930 + 66349ab8: 4c 8b 05 61 de 00 00 mov 0xde61(%rip),%r8 # 66357920 + 66349abf: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66349ac3: 48 8b 42 10 mov 0x10(%rdx),%rax + 66349ac7: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349acd: 48 63 01 movslq (%rcx),%rax + 66349ad0: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349ad4: 44 89 09 mov %r9d,(%rcx) + 66349ad7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66349adb: 48 83 c3 04 add $0x4,%rbx + 66349adf: 81 c7 00 04 00 00 add $0x400,%edi + 66349ae5: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 66349aec: 48 81 fb ec 00 00 00 cmp $0xec,%rbx + 66349af3: 0f 85 48 ff ff ff jne 66349a41 + 66349af9: 48 83 c4 28 add $0x28,%rsp + 66349afd: 5b pop %rbx + 66349afe: 5e pop %rsi + 66349aff: 5f pop %rdi + 66349b00: 5d pop %rbp + 66349b01: 41 5c pop %r12 + 66349b03: 41 5d pop %r13 + 66349b05: c3 retq + 66349b06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66349b0d: 00 00 00 + 66349b10: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349b14: 4c 8b 1d 05 de 00 00 mov 0xde05(%rip),%r11 # 66357920 + 66349b1b: 4c 8b 15 0e de 00 00 mov 0xde0e(%rip),%r10 # 66357930 + 66349b22: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66349b26: b8 58 00 00 00 mov $0x58,%eax + 66349b2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349b30: 8b 0a mov (%rdx),%ecx + 66349b32: 85 c9 test %ecx,%ecx + 66349b34: 74 55 je 66349b8b + 66349b36: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349b3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349b3e: 41 29 08 sub %ecx,(%r8) + 66349b41: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349b47: 45 8b 00 mov (%r8),%r8d + 66349b4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349b4e: 45 85 c0 test %r8d,%r8d + 66349b51: 41 0f 9f c0 setg %r8b + 66349b55: 45 0f b6 c0 movzbl %r8b,%r8d + 66349b59: 44 3b 01 cmp (%rcx),%r8d + 66349b5c: 74 2d je 66349b8b + 66349b5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349b62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349b66: 8b 09 mov (%rcx),%ecx + 66349b68: 85 c9 test %ecx,%ecx + 66349b6a: 75 1f jne 66349b8b + 66349b6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66349b70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349b74: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349b78: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349b7e: 49 63 0a movslq (%r10),%rcx + 66349b81: 8d 59 01 lea 0x1(%rcx),%ebx + 66349b84: 41 89 1a mov %ebx,(%r10) + 66349b87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349b8b: 48 83 c0 08 add $0x8,%rax + 66349b8f: 48 83 c2 04 add $0x4,%rdx + 66349b93: 48 3d d8 01 00 00 cmp $0x1d8,%rax + 66349b99: 75 95 jne 66349b30 + 66349b9b: 48 83 c4 28 add $0x28,%rsp + 66349b9f: 5b pop %rbx + 66349ba0: 5e pop %rsi + 66349ba1: 5f pop %rdi + 66349ba2: 5d pop %rbp + 66349ba3: 41 5c pop %r12 + 66349ba5: 41 5d pop %r13 + 66349ba7: c3 retq + 66349ba8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349baf: 00 -0000000066349b00 : - 66349b00: 41 55 push %r13 - 66349b02: 41 54 push %r12 - 66349b04: 55 push %rbp - 66349b05: 57 push %rdi - 66349b06: 56 push %rsi - 66349b07: 53 push %rbx - 66349b08: 48 83 ec 28 sub $0x28,%rsp - 66349b0c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349b10: 49 8b 81 60 01 00 00 mov 0x160(%r9),%rax - 66349b17: 48 89 ce mov %rcx,%rsi - 66349b1a: 8b 18 mov (%rax),%ebx - 66349b1c: 85 db test %ebx,%ebx - 66349b1e: 0f 84 51 01 00 00 je 66349c75 - 66349b24: 49 8b 41 10 mov 0x10(%r9),%rax - 66349b28: bb 30 00 00 00 mov $0x30,%ebx - 66349b2d: 4c 8d 2d cc a4 00 00 lea 0xa4cc(%rip),%r13 # 66354000 <.rdata> - 66349b34: 4c 8d 25 d5 a4 00 00 lea 0xa4d5(%rip),%r12 # 66354010 <.rdata+0x10> - 66349b3b: 8b 10 mov (%rax),%edx - 66349b3d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349b41: 8b 00 mov (%rax),%eax - 66349b43: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349b46: 49 8b 51 18 mov 0x18(%r9),%rdx - 66349b4a: 8b 12 mov (%rdx),%edx - 66349b4c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66349b4f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349b53: 8b 12 mov (%rdx),%edx - 66349b55: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349b58: 49 8b 41 28 mov 0x28(%r9),%rax - 66349b5c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66349b60: 8b 00 mov (%rax),%eax - 66349b62: c1 e0 04 shl $0x4,%eax - 66349b65: 01 f8 add %edi,%eax - 66349b67: 8b 3a mov (%rdx),%edi - 66349b69: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349b6d: c1 e7 05 shl $0x5,%edi - 66349b70: 01 f8 add %edi,%eax - 66349b72: 8b 3a mov (%rdx),%edi - 66349b74: 49 8b 51 50 mov 0x50(%r9),%rdx - 66349b78: c1 e7 06 shl $0x6,%edi - 66349b7b: 01 c7 add %eax,%edi - 66349b7d: 49 8b 41 40 mov 0x40(%r9),%rax - 66349b81: 8b 00 mov (%rax),%eax - 66349b83: c1 e0 07 shl $0x7,%eax - 66349b86: 01 c7 add %eax,%edi - 66349b88: 49 8b 41 48 mov 0x48(%r9),%rax - 66349b8c: 8b 00 mov (%rax),%eax - 66349b8e: c1 e0 08 shl $0x8,%eax - 66349b91: 01 f8 add %edi,%eax - 66349b93: 8b 3a mov (%rdx),%edi - 66349b95: 49 8b 51 58 mov 0x58(%r9),%rdx - 66349b99: c1 e7 09 shl $0x9,%edi - 66349b9c: 01 f8 add %edi,%eax - 66349b9e: 8b 3a mov (%rdx),%edi - 66349ba0: c1 e7 0a shl $0xa,%edi - 66349ba3: 01 c7 add %eax,%edi - 66349ba5: 48 63 ef movslq %edi,%rbp - 66349ba8: 48 c1 e5 02 shl $0x2,%rbp - 66349bac: 0f 1f 40 00 nopl 0x0(%rax) - 66349bb0: 85 ff test %edi,%edi - 66349bb2: 78 05 js 66349bb9 - 66349bb4: 39 7e 38 cmp %edi,0x38(%rsi) - 66349bb7: 7f 11 jg 66349bca - 66349bb9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349bbf: 4c 89 ea mov %r13,%rdx - 66349bc2: 4c 89 e1 mov %r12,%rcx - 66349bc5: e8 86 83 00 00 callq 66351f50 <_assert> - 66349bca: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349bce: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349bd2: 48 01 da add %rbx,%rdx - 66349bd5: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349bd8: 8b 0a mov (%rdx),%ecx - 66349bda: 39 c8 cmp %ecx,%eax - 66349bdc: 74 6c je 66349c4a - 66349bde: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349be2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349be6: 41 89 c3 mov %eax,%r11d - 66349be9: 41 29 cb sub %ecx,%r11d - 66349bec: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349bf0: 45 01 18 add %r11d,(%r8) - 66349bf3: 89 02 mov %eax,(%rdx) - 66349bf5: 31 d2 xor %edx,%edx - 66349bf7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349bfb: 45 8b 18 mov (%r8),%r11d - 66349bfe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349c02: 45 85 db test %r11d,%r11d - 66349c05: 0f 9f c2 setg %dl - 66349c08: 3b 10 cmp (%rax),%edx - 66349c0a: 74 3e je 66349c4a - 66349c0c: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349c10: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349c14: 44 8b 10 mov (%rax),%r10d - 66349c17: 45 85 d2 test %r10d,%r10d - 66349c1a: 75 2e jne 66349c4a - 66349c1c: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349c20: 48 8b 0d 09 dd 00 00 mov 0xdd09(%rip),%rcx # 66357930 - 66349c27: 4c 8b 05 f2 dc 00 00 mov 0xdcf2(%rip),%r8 # 66357920 - 66349c2e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349c32: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349c36: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349c3c: 48 63 01 movslq (%rcx),%rax - 66349c3f: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349c43: 44 89 09 mov %r9d,(%rcx) - 66349c46: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349c4a: 48 83 c3 04 add $0x4,%rbx - 66349c4e: 81 c7 00 08 00 00 add $0x800,%edi - 66349c54: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 66349c5b: 48 81 fb b0 00 00 00 cmp $0xb0,%rbx - 66349c62: 0f 85 48 ff ff ff jne 66349bb0 - 66349c68: 48 83 c4 28 add $0x28,%rsp - 66349c6c: 5b pop %rbx - 66349c6d: 5e pop %rsi - 66349c6e: 5f pop %rdi - 66349c6f: 5d pop %rbp - 66349c70: 41 5c pop %r12 - 66349c72: 41 5d pop %r13 - 66349c74: c3 retq - 66349c75: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349c79: 4c 8b 1d a0 dc 00 00 mov 0xdca0(%rip),%r11 # 66357920 - 66349c80: 4c 8b 15 a9 dc 00 00 mov 0xdca9(%rip),%r10 # 66357930 - 66349c87: 48 8d 50 30 lea 0x30(%rax),%rdx - 66349c8b: b8 60 00 00 00 mov $0x60,%eax - 66349c90: 8b 0a mov (%rdx),%ecx - 66349c92: 85 c9 test %ecx,%ecx - 66349c94: 74 55 je 66349ceb - 66349c96: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349c9a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349c9e: 41 29 08 sub %ecx,(%r8) - 66349ca1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349ca7: 45 8b 00 mov (%r8),%r8d - 66349caa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349cae: 45 85 c0 test %r8d,%r8d - 66349cb1: 41 0f 9f c0 setg %r8b - 66349cb5: 45 0f b6 c0 movzbl %r8b,%r8d - 66349cb9: 44 3b 01 cmp (%rcx),%r8d - 66349cbc: 74 2d je 66349ceb - 66349cbe: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349cc2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349cc6: 8b 09 mov (%rcx),%ecx - 66349cc8: 85 c9 test %ecx,%ecx - 66349cca: 75 1f jne 66349ceb - 66349ccc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349cd0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349cd4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349cd8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349cde: 49 63 0a movslq (%r10),%rcx - 66349ce1: 8d 59 01 lea 0x1(%rcx),%ebx - 66349ce4: 41 89 1a mov %ebx,(%r10) - 66349ce7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349ceb: 48 83 c0 08 add $0x8,%rax - 66349cef: 48 83 c2 04 add $0x4,%rdx - 66349cf3: 48 3d 60 01 00 00 cmp $0x160,%rax - 66349cf9: 75 95 jne 66349c90 - 66349cfb: 48 83 c4 28 add $0x28,%rsp - 66349cff: 5b pop %rbx - 66349d00: 5e pop %rsi - 66349d01: 5f pop %rdi - 66349d02: 5d pop %rbp - 66349d03: 41 5c pop %r12 - 66349d05: 41 5d pop %r13 - 66349d07: c3 retq - 66349d08: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349d0f: 00 +0000000066349bb0 : + 66349bb0: 41 55 push %r13 + 66349bb2: 41 54 push %r12 + 66349bb4: 55 push %rbp + 66349bb5: 57 push %rdi + 66349bb6: 56 push %rsi + 66349bb7: 53 push %rbx + 66349bb8: 48 83 ec 28 sub $0x28,%rsp + 66349bbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349bc0: 49 8b 81 e8 01 00 00 mov 0x1e8(%r9),%rax + 66349bc7: 48 89 ce mov %rcx,%rsi + 66349bca: 8b 18 mov (%rax),%ebx + 66349bcc: 85 db test %ebx,%ebx + 66349bce: 0f 84 61 01 00 00 je 66349d35 + 66349bd4: 49 8b 41 10 mov 0x10(%r9),%rax + 66349bd8: bb 34 00 00 00 mov $0x34,%ebx + 66349bdd: 4c 8d 2d 1c a4 00 00 lea 0xa41c(%rip),%r13 # 66354000 <.rdata> + 66349be4: 4c 8d 25 25 a4 00 00 lea 0xa425(%rip),%r12 # 66354010 <.rdata+0x10> + 66349beb: 8b 10 mov (%rax),%edx + 66349bed: 49 8b 41 08 mov 0x8(%r9),%rax + 66349bf1: 8b 00 mov (%rax),%eax + 66349bf3: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349bf6: 49 8b 51 18 mov 0x18(%r9),%rdx + 66349bfa: 8b 12 mov (%rdx),%edx + 66349bfc: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349bff: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349c03: 8b 12 mov (%rdx),%edx + 66349c05: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66349c08: 49 8b 41 28 mov 0x28(%r9),%rax + 66349c0c: 49 8b 51 38 mov 0x38(%r9),%rdx + 66349c10: 8b 00 mov (%rax),%eax + 66349c12: c1 e0 04 shl $0x4,%eax + 66349c15: 01 c7 add %eax,%edi + 66349c17: 49 8b 41 30 mov 0x30(%r9),%rax + 66349c1b: 8b 00 mov (%rax),%eax + 66349c1d: c1 e0 05 shl $0x5,%eax + 66349c20: 01 f8 add %edi,%eax + 66349c22: 8b 3a mov (%rdx),%edi + 66349c24: 49 8b 51 40 mov 0x40(%r9),%rdx + 66349c28: c1 e7 06 shl $0x6,%edi + 66349c2b: 01 f8 add %edi,%eax + 66349c2d: 8b 3a mov (%rdx),%edi + 66349c2f: 49 8b 51 58 mov 0x58(%r9),%rdx + 66349c33: c1 e7 07 shl $0x7,%edi + 66349c36: 01 c7 add %eax,%edi + 66349c38: 49 8b 41 48 mov 0x48(%r9),%rax + 66349c3c: 8b 00 mov (%rax),%eax + 66349c3e: c1 e0 08 shl $0x8,%eax + 66349c41: 01 c7 add %eax,%edi + 66349c43: 49 8b 41 50 mov 0x50(%r9),%rax + 66349c47: 8b 00 mov (%rax),%eax + 66349c49: c1 e0 09 shl $0x9,%eax + 66349c4c: 01 f8 add %edi,%eax + 66349c4e: 8b 3a mov (%rdx),%edi + 66349c50: 49 8b 51 60 mov 0x60(%r9),%rdx + 66349c54: c1 e7 0a shl $0xa,%edi + 66349c57: 01 f8 add %edi,%eax + 66349c59: 8b 3a mov (%rdx),%edi + 66349c5b: c1 e7 0b shl $0xb,%edi + 66349c5e: 01 c7 add %eax,%edi + 66349c60: 48 63 ef movslq %edi,%rbp + 66349c63: 48 c1 e5 02 shl $0x2,%rbp + 66349c67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66349c6e: 00 00 + 66349c70: 85 ff test %edi,%edi + 66349c72: 78 05 js 66349c79 + 66349c74: 39 7e 38 cmp %edi,0x38(%rsi) + 66349c77: 7f 11 jg 66349c8a + 66349c79: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349c7f: 4c 89 ea mov %r13,%rdx + 66349c82: 4c 89 e1 mov %r12,%rcx + 66349c85: e8 86 85 00 00 callq 66352210 <_assert> + 66349c8a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66349c8e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66349c92: 48 01 da add %rbx,%rdx + 66349c95: 8b 04 28 mov (%rax,%rbp,1),%eax + 66349c98: 8b 0a mov (%rdx),%ecx + 66349c9a: 39 c8 cmp %ecx,%eax + 66349c9c: 74 6c je 66349d0a + 66349c9e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349ca2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66349ca6: 41 89 c3 mov %eax,%r11d + 66349ca9: 41 29 cb sub %ecx,%r11d + 66349cac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66349cb0: 45 01 18 add %r11d,(%r8) + 66349cb3: 89 02 mov %eax,(%rdx) + 66349cb5: 31 d2 xor %edx,%edx + 66349cb7: 48 8b 46 10 mov 0x10(%rsi),%rax + 66349cbb: 45 8b 18 mov (%r8),%r11d + 66349cbe: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349cc2: 45 85 db test %r11d,%r11d + 66349cc5: 0f 9f c2 setg %dl + 66349cc8: 3b 10 cmp (%rax),%edx + 66349cca: 74 3e je 66349d0a + 66349ccc: 48 8b 46 20 mov 0x20(%rsi),%rax + 66349cd0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349cd4: 44 8b 10 mov (%rax),%r10d + 66349cd7: 45 85 d2 test %r10d,%r10d + 66349cda: 75 2e jne 66349d0a + 66349cdc: 48 8b 46 28 mov 0x28(%rsi),%rax + 66349ce0: 48 8b 0d 49 dc 00 00 mov 0xdc49(%rip),%rcx # 66357930 + 66349ce7: 4c 8b 05 32 dc 00 00 mov 0xdc32(%rip),%r8 # 66357920 + 66349cee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66349cf2: 48 8b 42 10 mov 0x10(%rdx),%rax + 66349cf6: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349cfc: 48 63 01 movslq (%rcx),%rax + 66349cff: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349d03: 44 89 09 mov %r9d,(%rcx) + 66349d06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66349d0a: 48 83 c3 04 add $0x4,%rbx + 66349d0e: 81 c7 00 10 00 00 add $0x1000,%edi + 66349d14: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 66349d1b: 48 81 fb f4 00 00 00 cmp $0xf4,%rbx + 66349d22: 0f 85 48 ff ff ff jne 66349c70 + 66349d28: 48 83 c4 28 add $0x28,%rsp + 66349d2c: 5b pop %rbx + 66349d2d: 5e pop %rsi + 66349d2e: 5f pop %rdi + 66349d2f: 5d pop %rbp + 66349d30: 41 5c pop %r12 + 66349d32: 41 5d pop %r13 + 66349d34: c3 retq + 66349d35: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349d39: 4c 8b 1d e0 db 00 00 mov 0xdbe0(%rip),%r11 # 66357920 + 66349d40: 4c 8b 15 e9 db 00 00 mov 0xdbe9(%rip),%r10 # 66357930 + 66349d47: 48 8d 50 34 lea 0x34(%rax),%rdx + 66349d4b: b8 68 00 00 00 mov $0x68,%eax + 66349d50: 8b 0a mov (%rdx),%ecx + 66349d52: 85 c9 test %ecx,%ecx + 66349d54: 74 55 je 66349dab + 66349d56: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349d5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349d5e: 41 29 08 sub %ecx,(%r8) + 66349d61: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349d67: 45 8b 00 mov (%r8),%r8d + 66349d6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349d6e: 45 85 c0 test %r8d,%r8d + 66349d71: 41 0f 9f c0 setg %r8b + 66349d75: 45 0f b6 c0 movzbl %r8b,%r8d + 66349d79: 44 3b 01 cmp (%rcx),%r8d + 66349d7c: 74 2d je 66349dab + 66349d7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349d82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349d86: 8b 09 mov (%rcx),%ecx + 66349d88: 85 c9 test %ecx,%ecx + 66349d8a: 75 1f jne 66349dab + 66349d8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66349d90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349d94: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349d98: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349d9e: 49 63 0a movslq (%r10),%rcx + 66349da1: 8d 59 01 lea 0x1(%rcx),%ebx + 66349da4: 41 89 1a mov %ebx,(%r10) + 66349da7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349dab: 48 83 c0 08 add $0x8,%rax + 66349daf: 48 83 c2 04 add $0x4,%rdx + 66349db3: 48 3d e8 01 00 00 cmp $0x1e8,%rax + 66349db9: 75 95 jne 66349d50 + 66349dbb: 48 83 c4 28 add $0x28,%rsp + 66349dbf: 5b pop %rbx + 66349dc0: 5e pop %rsi + 66349dc1: 5f pop %rdi + 66349dc2: 5d pop %rbp + 66349dc3: 41 5c pop %r12 + 66349dc5: 41 5d pop %r13 + 66349dc7: c3 retq + 66349dc8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349dcf: 00 -0000000066349d10 : - 66349d10: 41 55 push %r13 - 66349d12: 41 54 push %r12 - 66349d14: 55 push %rbp - 66349d15: 57 push %rdi - 66349d16: 56 push %rsi - 66349d17: 53 push %rbx - 66349d18: 48 83 ec 28 sub $0x28,%rsp - 66349d1c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349d20: 49 8b 81 38 01 00 00 mov 0x138(%r9),%rax - 66349d27: 48 89 ce mov %rcx,%rsi - 66349d2a: 8b 18 mov (%rax),%ebx - 66349d2c: 85 db test %ebx,%ebx - 66349d2e: 0f 84 1c 01 00 00 je 66349e50 - 66349d34: 49 8b 41 10 mov 0x10(%r9),%rax - 66349d38: bb 1c 00 00 00 mov $0x1c,%ebx - 66349d3d: 4c 8d 2d bc a2 00 00 lea 0xa2bc(%rip),%r13 # 66354000 <.rdata> - 66349d44: 4c 8d 25 c5 a2 00 00 lea 0xa2c5(%rip),%r12 # 66354010 <.rdata+0x10> - 66349d4b: 8b 10 mov (%rax),%edx - 66349d4d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349d51: 8b 00 mov (%rax),%eax - 66349d53: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349d56: 49 8b 51 18 mov 0x18(%r9),%rdx - 66349d5a: 8b 12 mov (%rdx),%edx - 66349d5c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66349d5f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349d63: 8b 12 mov (%rdx),%edx - 66349d65: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66349d68: 49 8b 51 28 mov 0x28(%r9),%rdx - 66349d6c: 8b 3a mov (%rdx),%edi - 66349d6e: 49 8b 51 30 mov 0x30(%r9),%rdx - 66349d72: c1 e7 04 shl $0x4,%edi - 66349d75: 01 f8 add %edi,%eax - 66349d77: 8b 3a mov (%rdx),%edi - 66349d79: c1 e7 05 shl $0x5,%edi - 66349d7c: 01 c7 add %eax,%edi - 66349d7e: 48 63 ef movslq %edi,%rbp - 66349d81: 48 c1 e5 02 shl $0x2,%rbp - 66349d85: 85 ff test %edi,%edi - 66349d87: 78 05 js 66349d8e - 66349d89: 39 7e 38 cmp %edi,0x38(%rsi) - 66349d8c: 7f 11 jg 66349d9f - 66349d8e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349d94: 4c 89 ea mov %r13,%rdx - 66349d97: 4c 89 e1 mov %r12,%rcx - 66349d9a: e8 b1 81 00 00 callq 66351f50 <_assert> - 66349d9f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349da3: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349da7: 48 01 da add %rbx,%rdx - 66349daa: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349dad: 8b 0a mov (%rdx),%ecx - 66349daf: 39 c8 cmp %ecx,%eax - 66349db1: 74 6c je 66349e1f - 66349db3: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349db7: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349dbb: 41 89 c3 mov %eax,%r11d - 66349dbe: 41 29 cb sub %ecx,%r11d - 66349dc1: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349dc5: 45 01 18 add %r11d,(%r8) - 66349dc8: 89 02 mov %eax,(%rdx) - 66349dca: 31 d2 xor %edx,%edx - 66349dcc: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349dd0: 45 8b 18 mov (%r8),%r11d - 66349dd3: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349dd7: 45 85 db test %r11d,%r11d - 66349dda: 0f 9f c2 setg %dl - 66349ddd: 3b 10 cmp (%rax),%edx - 66349ddf: 74 3e je 66349e1f - 66349de1: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349de5: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349de9: 44 8b 10 mov (%rax),%r10d - 66349dec: 45 85 d2 test %r10d,%r10d - 66349def: 75 2e jne 66349e1f - 66349df1: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349df5: 48 8b 0d 34 db 00 00 mov 0xdb34(%rip),%rcx # 66357930 - 66349dfc: 4c 8b 05 1d db 00 00 mov 0xdb1d(%rip),%r8 # 66357920 - 66349e03: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349e07: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349e0b: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349e11: 48 63 01 movslq (%rcx),%rax - 66349e14: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349e18: 44 89 09 mov %r9d,(%rcx) - 66349e1b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349e1f: 48 83 c3 04 add $0x4,%rbx - 66349e23: 83 c7 40 add $0x40,%edi - 66349e26: 48 81 c5 00 01 00 00 add $0x100,%rbp - 66349e2d: 48 81 fb 9c 00 00 00 cmp $0x9c,%rbx - 66349e34: 0f 85 4b ff ff ff jne 66349d85 - 66349e3a: 48 83 c4 28 add $0x28,%rsp - 66349e3e: 5b pop %rbx - 66349e3f: 5e pop %rsi - 66349e40: 5f pop %rdi - 66349e41: 5d pop %rbp - 66349e42: 41 5c pop %r12 - 66349e44: 41 5d pop %r13 - 66349e46: c3 retq - 66349e47: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66349e4e: 00 00 - 66349e50: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349e54: 4c 8b 1d c5 da 00 00 mov 0xdac5(%rip),%r11 # 66357920 - 66349e5b: 4c 8b 15 ce da 00 00 mov 0xdace(%rip),%r10 # 66357930 - 66349e62: 48 8d 50 1c lea 0x1c(%rax),%rdx - 66349e66: b8 38 00 00 00 mov $0x38,%eax - 66349e6b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349e70: 8b 0a mov (%rdx),%ecx - 66349e72: 85 c9 test %ecx,%ecx - 66349e74: 74 55 je 66349ecb - 66349e76: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349e7a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349e7e: 41 29 08 sub %ecx,(%r8) - 66349e81: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349e87: 45 8b 00 mov (%r8),%r8d - 66349e8a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349e8e: 45 85 c0 test %r8d,%r8d - 66349e91: 41 0f 9f c0 setg %r8b - 66349e95: 45 0f b6 c0 movzbl %r8b,%r8d - 66349e99: 44 3b 01 cmp (%rcx),%r8d - 66349e9c: 74 2d je 66349ecb - 66349e9e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349ea2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349ea6: 8b 09 mov (%rcx),%ecx - 66349ea8: 85 c9 test %ecx,%ecx - 66349eaa: 75 1f jne 66349ecb - 66349eac: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349eb0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349eb4: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349eb8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349ebe: 49 63 0a movslq (%r10),%rcx - 66349ec1: 8d 59 01 lea 0x1(%rcx),%ebx - 66349ec4: 41 89 1a mov %ebx,(%r10) - 66349ec7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349ecb: 48 83 c0 08 add $0x8,%rax - 66349ecf: 48 83 c2 04 add $0x4,%rdx - 66349ed3: 48 3d 38 01 00 00 cmp $0x138,%rax - 66349ed9: 75 95 jne 66349e70 - 66349edb: 48 83 c4 28 add $0x28,%rsp - 66349edf: 5b pop %rbx - 66349ee0: 5e pop %rsi - 66349ee1: 5f pop %rdi - 66349ee2: 5d pop %rbp - 66349ee3: 41 5c pop %r12 - 66349ee5: 41 5d pop %r13 - 66349ee7: c3 retq - 66349ee8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349eef: 00 +0000000066349dd0 : + 66349dd0: 41 55 push %r13 + 66349dd2: 41 54 push %r12 + 66349dd4: 55 push %rbp + 66349dd5: 57 push %rdi + 66349dd6: 56 push %rsi + 66349dd7: 53 push %rbx + 66349dd8: 48 83 ec 28 sub $0x28,%rsp + 66349ddc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349de0: 49 8b 81 c8 01 00 00 mov 0x1c8(%r9),%rax + 66349de7: 48 89 ce mov %rcx,%rsi + 66349dea: 8b 18 mov (%rax),%ebx + 66349dec: 85 db test %ebx,%ebx + 66349dee: 0f 84 31 01 00 00 je 66349f25 + 66349df4: 49 8b 41 10 mov 0x10(%r9),%rax + 66349df8: bb 24 00 00 00 mov $0x24,%ebx + 66349dfd: 4c 8d 2d fc a1 00 00 lea 0xa1fc(%rip),%r13 # 66354000 <.rdata> + 66349e04: 4c 8d 25 05 a2 00 00 lea 0xa205(%rip),%r12 # 66354010 <.rdata+0x10> + 66349e0b: 8b 10 mov (%rax),%edx + 66349e0d: 49 8b 41 08 mov 0x8(%r9),%rax + 66349e11: 8b 00 mov (%rax),%eax + 66349e13: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349e16: 49 8b 51 18 mov 0x18(%r9),%rdx + 66349e1a: 8b 12 mov (%rdx),%edx + 66349e1c: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349e1f: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349e23: 8b 12 mov (%rdx),%edx + 66349e25: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66349e28: 49 8b 41 28 mov 0x28(%r9),%rax + 66349e2c: 49 8b 51 38 mov 0x38(%r9),%rdx + 66349e30: 8b 00 mov (%rax),%eax + 66349e32: c1 e0 04 shl $0x4,%eax + 66349e35: 01 c7 add %eax,%edi + 66349e37: 49 8b 41 30 mov 0x30(%r9),%rax + 66349e3b: 8b 00 mov (%rax),%eax + 66349e3d: c1 e0 05 shl $0x5,%eax + 66349e40: 01 f8 add %edi,%eax + 66349e42: 8b 3a mov (%rdx),%edi + 66349e44: 49 8b 51 40 mov 0x40(%r9),%rdx + 66349e48: c1 e7 06 shl $0x6,%edi + 66349e4b: 01 f8 add %edi,%eax + 66349e4d: 8b 3a mov (%rdx),%edi + 66349e4f: c1 e7 07 shl $0x7,%edi + 66349e52: 01 c7 add %eax,%edi + 66349e54: 48 63 ef movslq %edi,%rbp + 66349e57: 48 c1 e5 02 shl $0x2,%rbp + 66349e5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349e60: 85 ff test %edi,%edi + 66349e62: 78 05 js 66349e69 + 66349e64: 39 7e 38 cmp %edi,0x38(%rsi) + 66349e67: 7f 11 jg 66349e7a + 66349e69: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349e6f: 4c 89 ea mov %r13,%rdx + 66349e72: 4c 89 e1 mov %r12,%rcx + 66349e75: e8 96 83 00 00 callq 66352210 <_assert> + 66349e7a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66349e7e: 48 8b 46 40 mov 0x40(%rsi),%rax + 66349e82: 48 01 da add %rbx,%rdx + 66349e85: 8b 04 28 mov (%rax,%rbp,1),%eax + 66349e88: 8b 0a mov (%rdx),%ecx + 66349e8a: 39 c8 cmp %ecx,%eax + 66349e8c: 74 6c je 66349efa + 66349e8e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349e92: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 66349e96: 41 89 c3 mov %eax,%r11d + 66349e99: 41 29 cb sub %ecx,%r11d + 66349e9c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 66349ea0: 45 01 18 add %r11d,(%r8) + 66349ea3: 89 02 mov %eax,(%rdx) + 66349ea5: 31 d2 xor %edx,%edx + 66349ea7: 48 8b 46 10 mov 0x10(%rsi),%rax + 66349eab: 45 8b 18 mov (%r8),%r11d + 66349eae: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349eb2: 45 85 db test %r11d,%r11d + 66349eb5: 0f 9f c2 setg %dl + 66349eb8: 3b 10 cmp (%rax),%edx + 66349eba: 74 3e je 66349efa + 66349ebc: 48 8b 46 20 mov 0x20(%rsi),%rax + 66349ec0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 66349ec4: 44 8b 10 mov (%rax),%r10d + 66349ec7: 45 85 d2 test %r10d,%r10d + 66349eca: 75 2e jne 66349efa + 66349ecc: 48 8b 46 28 mov 0x28(%rsi),%rax + 66349ed0: 48 8b 0d 59 da 00 00 mov 0xda59(%rip),%rcx # 66357930 + 66349ed7: 4c 8b 05 42 da 00 00 mov 0xda42(%rip),%r8 # 66357920 + 66349ede: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 66349ee2: 48 8b 42 10 mov 0x10(%rdx),%rax + 66349ee6: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349eec: 48 63 01 movslq (%rcx),%rax + 66349eef: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349ef3: 44 89 09 mov %r9d,(%rcx) + 66349ef6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66349efa: 48 83 c3 04 add $0x4,%rbx + 66349efe: 81 c7 00 01 00 00 add $0x100,%edi + 66349f04: 48 81 c5 00 04 00 00 add $0x400,%rbp + 66349f0b: 48 81 fb e4 00 00 00 cmp $0xe4,%rbx + 66349f12: 0f 85 48 ff ff ff jne 66349e60 + 66349f18: 48 83 c4 28 add $0x28,%rsp + 66349f1c: 5b pop %rbx + 66349f1d: 5e pop %rsi + 66349f1e: 5f pop %rdi + 66349f1f: 5d pop %rbp + 66349f20: 41 5c pop %r12 + 66349f22: 41 5d pop %r13 + 66349f24: c3 retq + 66349f25: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349f29: 4c 8b 1d f0 d9 00 00 mov 0xd9f0(%rip),%r11 # 66357920 + 66349f30: 4c 8b 15 f9 d9 00 00 mov 0xd9f9(%rip),%r10 # 66357930 + 66349f37: 48 8d 50 24 lea 0x24(%rax),%rdx + 66349f3b: b8 48 00 00 00 mov $0x48,%eax + 66349f40: 8b 0a mov (%rdx),%ecx + 66349f42: 85 c9 test %ecx,%ecx + 66349f44: 74 55 je 66349f9b + 66349f46: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 66349f4a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349f4e: 41 29 08 sub %ecx,(%r8) + 66349f51: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349f57: 45 8b 00 mov (%r8),%r8d + 66349f5a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349f5e: 45 85 c0 test %r8d,%r8d + 66349f61: 41 0f 9f c0 setg %r8b + 66349f65: 45 0f b6 c0 movzbl %r8b,%r8d + 66349f69: 44 3b 01 cmp (%rcx),%r8d + 66349f6c: 74 2d je 66349f9b + 66349f6e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 66349f72: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349f76: 8b 09 mov (%rcx),%ecx + 66349f78: 85 c9 test %ecx,%ecx + 66349f7a: 75 1f jne 66349f9b + 66349f7c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 66349f80: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349f84: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349f88: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349f8e: 49 63 0a movslq (%r10),%rcx + 66349f91: 8d 59 01 lea 0x1(%rcx),%ebx + 66349f94: 41 89 1a mov %ebx,(%r10) + 66349f97: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349f9b: 48 83 c0 08 add $0x8,%rax + 66349f9f: 48 83 c2 04 add $0x4,%rdx + 66349fa3: 48 3d c8 01 00 00 cmp $0x1c8,%rax + 66349fa9: 75 95 jne 66349f40 + 66349fab: 48 83 c4 28 add $0x28,%rsp + 66349faf: 5b pop %rbx + 66349fb0: 5e pop %rsi + 66349fb1: 5f pop %rdi + 66349fb2: 5d pop %rbp + 66349fb3: 41 5c pop %r12 + 66349fb5: 41 5d pop %r13 + 66349fb7: c3 retq + 66349fb8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349fbf: 00 -0000000066349ef0 : - 66349ef0: 41 55 push %r13 - 66349ef2: 41 54 push %r12 - 66349ef4: 55 push %rbp - 66349ef5: 57 push %rdi - 66349ef6: 56 push %rsi - 66349ef7: 53 push %rbx - 66349ef8: 48 83 ec 28 sub $0x28,%rsp - 66349efc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349f00: 49 8b 81 48 01 00 00 mov 0x148(%r9),%rax - 66349f07: 48 89 ce mov %rcx,%rsi - 66349f0a: 8b 18 mov (%rax),%ebx - 66349f0c: 85 db test %ebx,%ebx - 66349f0e: 0f 84 31 01 00 00 je 6634a045 - 66349f14: 49 8b 41 10 mov 0x10(%r9),%rax - 66349f18: bb 24 00 00 00 mov $0x24,%ebx - 66349f1d: 4c 8d 2d dc a0 00 00 lea 0xa0dc(%rip),%r13 # 66354000 <.rdata> - 66349f24: 4c 8d 25 e5 a0 00 00 lea 0xa0e5(%rip),%r12 # 66354010 <.rdata+0x10> - 66349f2b: 8b 10 mov (%rax),%edx - 66349f2d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349f31: 8b 00 mov (%rax),%eax - 66349f33: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349f36: 49 8b 51 18 mov 0x18(%r9),%rdx - 66349f3a: 8b 12 mov (%rdx),%edx - 66349f3c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66349f3f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349f43: 8b 12 mov (%rdx),%edx - 66349f45: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349f48: 49 8b 41 28 mov 0x28(%r9),%rax - 66349f4c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349f50: 8b 00 mov (%rax),%eax - 66349f52: c1 e0 04 shl $0x4,%eax - 66349f55: 01 c7 add %eax,%edi - 66349f57: 49 8b 41 30 mov 0x30(%r9),%rax - 66349f5b: 8b 00 mov (%rax),%eax - 66349f5d: c1 e0 05 shl $0x5,%eax - 66349f60: 01 f8 add %edi,%eax - 66349f62: 8b 3a mov (%rdx),%edi - 66349f64: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349f68: c1 e7 06 shl $0x6,%edi - 66349f6b: 01 f8 add %edi,%eax - 66349f6d: 8b 3a mov (%rdx),%edi - 66349f6f: c1 e7 07 shl $0x7,%edi - 66349f72: 01 c7 add %eax,%edi - 66349f74: 48 63 ef movslq %edi,%rbp - 66349f77: 48 c1 e5 02 shl $0x2,%rbp - 66349f7b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349f80: 85 ff test %edi,%edi - 66349f82: 78 05 js 66349f89 - 66349f84: 39 7e 38 cmp %edi,0x38(%rsi) - 66349f87: 7f 11 jg 66349f9a - 66349f89: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349f8f: 4c 89 ea mov %r13,%rdx - 66349f92: 4c 89 e1 mov %r12,%rcx - 66349f95: e8 b6 7f 00 00 callq 66351f50 <_assert> - 66349f9a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349f9e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349fa2: 48 01 da add %rbx,%rdx - 66349fa5: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349fa8: 8b 0a mov (%rdx),%ecx - 66349faa: 39 c8 cmp %ecx,%eax - 66349fac: 74 6c je 6634a01a - 66349fae: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349fb2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349fb6: 41 89 c3 mov %eax,%r11d - 66349fb9: 41 29 cb sub %ecx,%r11d - 66349fbc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349fc0: 45 01 18 add %r11d,(%r8) - 66349fc3: 89 02 mov %eax,(%rdx) - 66349fc5: 31 d2 xor %edx,%edx - 66349fc7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349fcb: 45 8b 18 mov (%r8),%r11d - 66349fce: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349fd2: 45 85 db test %r11d,%r11d - 66349fd5: 0f 9f c2 setg %dl - 66349fd8: 3b 10 cmp (%rax),%edx - 66349fda: 74 3e je 6634a01a - 66349fdc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349fe0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349fe4: 44 8b 10 mov (%rax),%r10d - 66349fe7: 45 85 d2 test %r10d,%r10d - 66349fea: 75 2e jne 6634a01a - 66349fec: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349ff0: 48 8b 0d 39 d9 00 00 mov 0xd939(%rip),%rcx # 66357930 - 66349ff7: 4c 8b 05 22 d9 00 00 mov 0xd922(%rip),%r8 # 66357920 - 66349ffe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a002: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a006: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a00c: 48 63 01 movslq (%rcx),%rax - 6634a00f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a013: 44 89 09 mov %r9d,(%rcx) - 6634a016: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a01a: 48 83 c3 04 add $0x4,%rbx - 6634a01e: 81 c7 00 01 00 00 add $0x100,%edi - 6634a024: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634a02b: 48 81 fb a4 00 00 00 cmp $0xa4,%rbx - 6634a032: 0f 85 48 ff ff ff jne 66349f80 - 6634a038: 48 83 c4 28 add $0x28,%rsp - 6634a03c: 5b pop %rbx - 6634a03d: 5e pop %rsi - 6634a03e: 5f pop %rdi - 6634a03f: 5d pop %rbp - 6634a040: 41 5c pop %r12 - 6634a042: 41 5d pop %r13 - 6634a044: c3 retq - 6634a045: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a049: 4c 8b 1d d0 d8 00 00 mov 0xd8d0(%rip),%r11 # 66357920 - 6634a050: 4c 8b 15 d9 d8 00 00 mov 0xd8d9(%rip),%r10 # 66357930 - 6634a057: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634a05b: b8 48 00 00 00 mov $0x48,%eax - 6634a060: 8b 0a mov (%rdx),%ecx - 6634a062: 85 c9 test %ecx,%ecx - 6634a064: 74 55 je 6634a0bb - 6634a066: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a06a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a06e: 41 29 08 sub %ecx,(%r8) - 6634a071: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a077: 45 8b 00 mov (%r8),%r8d - 6634a07a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a07e: 45 85 c0 test %r8d,%r8d - 6634a081: 41 0f 9f c0 setg %r8b - 6634a085: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a089: 44 3b 01 cmp (%rcx),%r8d - 6634a08c: 74 2d je 6634a0bb - 6634a08e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a092: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a096: 8b 09 mov (%rcx),%ecx - 6634a098: 85 c9 test %ecx,%ecx - 6634a09a: 75 1f jne 6634a0bb - 6634a09c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a0a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a0a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a0a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a0ae: 49 63 0a movslq (%r10),%rcx - 6634a0b1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a0b4: 41 89 1a mov %ebx,(%r10) - 6634a0b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a0bb: 48 83 c0 08 add $0x8,%rax - 6634a0bf: 48 83 c2 04 add $0x4,%rdx - 6634a0c3: 48 3d 48 01 00 00 cmp $0x148,%rax - 6634a0c9: 75 95 jne 6634a060 - 6634a0cb: 48 83 c4 28 add $0x28,%rsp - 6634a0cf: 5b pop %rbx - 6634a0d0: 5e pop %rsi - 6634a0d1: 5f pop %rdi - 6634a0d2: 5d pop %rbp - 6634a0d3: 41 5c pop %r12 - 6634a0d5: 41 5d pop %r13 - 6634a0d7: c3 retq - 6634a0d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a0df: 00 +0000000066349fc0 : + 66349fc0: 41 55 push %r13 + 66349fc2: 41 54 push %r12 + 66349fc4: 55 push %rbp + 66349fc5: 57 push %rdi + 66349fc6: 56 push %rsi + 66349fc7: 53 push %rbx + 66349fc8: 48 83 ec 28 sub $0x28,%rsp + 66349fcc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349fd0: 49 8b 81 b8 01 00 00 mov 0x1b8(%r9),%rax + 66349fd7: 48 89 ce mov %rcx,%rsi + 66349fda: 8b 18 mov (%rax),%ebx + 66349fdc: 85 db test %ebx,%ebx + 66349fde: 0f 84 1c 01 00 00 je 6634a100 + 66349fe4: 49 8b 41 10 mov 0x10(%r9),%rax + 66349fe8: bb 1c 00 00 00 mov $0x1c,%ebx + 66349fed: 4c 8d 2d 0c a0 00 00 lea 0xa00c(%rip),%r13 # 66354000 <.rdata> + 66349ff4: 4c 8d 25 15 a0 00 00 lea 0xa015(%rip),%r12 # 66354010 <.rdata+0x10> + 66349ffb: 8b 10 mov (%rax),%edx + 66349ffd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a001: 8b 00 mov (%rax),%eax + 6634a003: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a006: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a00a: 8b 12 mov (%rdx),%edx + 6634a00c: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a00f: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a013: 8b 12 mov (%rdx),%edx + 6634a015: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a018: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a01c: 8b 3a mov (%rdx),%edi + 6634a01e: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634a022: c1 e7 04 shl $0x4,%edi + 6634a025: 01 f8 add %edi,%eax + 6634a027: 8b 3a mov (%rdx),%edi + 6634a029: c1 e7 05 shl $0x5,%edi + 6634a02c: 01 c7 add %eax,%edi + 6634a02e: 48 63 ef movslq %edi,%rbp + 6634a031: 48 c1 e5 02 shl $0x2,%rbp + 6634a035: 85 ff test %edi,%edi + 6634a037: 78 05 js 6634a03e + 6634a039: 39 7e 38 cmp %edi,0x38(%rsi) + 6634a03c: 7f 11 jg 6634a04f + 6634a03e: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a044: 4c 89 ea mov %r13,%rdx + 6634a047: 4c 89 e1 mov %r12,%rcx + 6634a04a: e8 c1 81 00 00 callq 66352210 <_assert> + 6634a04f: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634a053: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634a057: 48 01 da add %rbx,%rdx + 6634a05a: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634a05d: 8b 0a mov (%rdx),%ecx + 6634a05f: 39 c8 cmp %ecx,%eax + 6634a061: 74 6c je 6634a0cf + 6634a063: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a067: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634a06b: 41 89 c3 mov %eax,%r11d + 6634a06e: 41 29 cb sub %ecx,%r11d + 6634a071: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634a075: 45 01 18 add %r11d,(%r8) + 6634a078: 89 02 mov %eax,(%rdx) + 6634a07a: 31 d2 xor %edx,%edx + 6634a07c: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634a080: 45 8b 18 mov (%r8),%r11d + 6634a083: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a087: 45 85 db test %r11d,%r11d + 6634a08a: 0f 9f c2 setg %dl + 6634a08d: 3b 10 cmp (%rax),%edx + 6634a08f: 74 3e je 6634a0cf + 6634a091: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634a095: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a099: 44 8b 10 mov (%rax),%r10d + 6634a09c: 45 85 d2 test %r10d,%r10d + 6634a09f: 75 2e jne 6634a0cf + 6634a0a1: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634a0a5: 48 8b 0d 84 d8 00 00 mov 0xd884(%rip),%rcx # 66357930 + 6634a0ac: 4c 8b 05 6d d8 00 00 mov 0xd86d(%rip),%r8 # 66357920 + 6634a0b3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634a0b7: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a0bb: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a0c1: 48 63 01 movslq (%rcx),%rax + 6634a0c4: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a0c8: 44 89 09 mov %r9d,(%rcx) + 6634a0cb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a0cf: 48 83 c3 04 add $0x4,%rbx + 6634a0d3: 83 c7 40 add $0x40,%edi + 6634a0d6: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634a0dd: 48 81 fb dc 00 00 00 cmp $0xdc,%rbx + 6634a0e4: 0f 85 4b ff ff ff jne 6634a035 + 6634a0ea: 48 83 c4 28 add $0x28,%rsp + 6634a0ee: 5b pop %rbx + 6634a0ef: 5e pop %rsi + 6634a0f0: 5f pop %rdi + 6634a0f1: 5d pop %rbp + 6634a0f2: 41 5c pop %r12 + 6634a0f4: 41 5d pop %r13 + 6634a0f6: c3 retq + 6634a0f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634a0fe: 00 00 + 6634a100: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a104: 4c 8b 1d 15 d8 00 00 mov 0xd815(%rip),%r11 # 66357920 + 6634a10b: 4c 8b 15 1e d8 00 00 mov 0xd81e(%rip),%r10 # 66357930 + 6634a112: 48 8d 50 1c lea 0x1c(%rax),%rdx + 6634a116: b8 38 00 00 00 mov $0x38,%eax + 6634a11b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a120: 8b 0a mov (%rdx),%ecx + 6634a122: 85 c9 test %ecx,%ecx + 6634a124: 74 55 je 6634a17b + 6634a126: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a12a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a12e: 41 29 08 sub %ecx,(%r8) + 6634a131: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a137: 45 8b 00 mov (%r8),%r8d + 6634a13a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a13e: 45 85 c0 test %r8d,%r8d + 6634a141: 41 0f 9f c0 setg %r8b + 6634a145: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a149: 44 3b 01 cmp (%rcx),%r8d + 6634a14c: 74 2d je 6634a17b + 6634a14e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634a152: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a156: 8b 09 mov (%rcx),%ecx + 6634a158: 85 c9 test %ecx,%ecx + 6634a15a: 75 1f jne 6634a17b + 6634a15c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634a160: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a164: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a168: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a16e: 49 63 0a movslq (%r10),%rcx + 6634a171: 8d 59 01 lea 0x1(%rcx),%ebx + 6634a174: 41 89 1a mov %ebx,(%r10) + 6634a177: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a17b: 48 83 c0 08 add $0x8,%rax + 6634a17f: 48 83 c2 04 add $0x4,%rdx + 6634a183: 48 3d b8 01 00 00 cmp $0x1b8,%rax + 6634a189: 75 95 jne 6634a120 + 6634a18b: 48 83 c4 28 add $0x28,%rsp + 6634a18f: 5b pop %rbx + 6634a190: 5e pop %rsi + 6634a191: 5f pop %rdi + 6634a192: 5d pop %rbp + 6634a193: 41 5c pop %r12 + 6634a195: 41 5d pop %r13 + 6634a197: c3 retq + 6634a198: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a19f: 00 -000000006634a0e0 : - 6634a0e0: 41 55 push %r13 - 6634a0e2: 41 54 push %r12 - 6634a0e4: 55 push %rbp - 6634a0e5: 57 push %rdi - 6634a0e6: 56 push %rsi - 6634a0e7: 53 push %rbx - 6634a0e8: 48 83 ec 28 sub $0x28,%rsp - 6634a0ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a0f0: 49 8b 81 58 01 00 00 mov 0x158(%r9),%rax - 6634a0f7: 48 89 ce mov %rcx,%rsi - 6634a0fa: 8b 18 mov (%rax),%ebx - 6634a0fc: 85 db test %ebx,%ebx - 6634a0fe: 0f 84 4c 01 00 00 je 6634a250 - 6634a104: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a108: bb 2c 00 00 00 mov $0x2c,%ebx - 6634a10d: 4c 8d 2d ec 9e 00 00 lea 0x9eec(%rip),%r13 # 66354000 <.rdata> - 6634a114: 4c 8d 25 f5 9e 00 00 lea 0x9ef5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a11b: 8b 10 mov (%rax),%edx - 6634a11d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a121: 8b 00 mov (%rax),%eax - 6634a123: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a126: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a12a: 8b 12 mov (%rdx),%edx - 6634a12c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a12f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a133: 8b 12 mov (%rdx),%edx - 6634a135: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a138: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a13c: 8b 3a mov (%rdx),%edi - 6634a13e: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634a142: c1 e7 04 shl $0x4,%edi - 6634a145: 01 f8 add %edi,%eax - 6634a147: 8b 3a mov (%rdx),%edi - 6634a149: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634a14d: c1 e7 05 shl $0x5,%edi - 6634a150: 01 c7 add %eax,%edi - 6634a152: 49 8b 41 38 mov 0x38(%r9),%rax - 6634a156: 8b 00 mov (%rax),%eax - 6634a158: c1 e0 06 shl $0x6,%eax - 6634a15b: 01 c7 add %eax,%edi - 6634a15d: 49 8b 41 40 mov 0x40(%r9),%rax - 6634a161: 8b 00 mov (%rax),%eax - 6634a163: c1 e0 07 shl $0x7,%eax - 6634a166: 01 f8 add %edi,%eax - 6634a168: 8b 3a mov (%rdx),%edi - 6634a16a: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634a16e: c1 e7 08 shl $0x8,%edi - 6634a171: 01 f8 add %edi,%eax - 6634a173: 8b 3a mov (%rdx),%edi - 6634a175: c1 e7 09 shl $0x9,%edi - 6634a178: 01 c7 add %eax,%edi - 6634a17a: 48 63 ef movslq %edi,%rbp - 6634a17d: 48 c1 e5 02 shl $0x2,%rbp - 6634a181: 85 ff test %edi,%edi - 6634a183: 78 05 js 6634a18a - 6634a185: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a188: 7f 11 jg 6634a19b - 6634a18a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a190: 4c 89 ea mov %r13,%rdx - 6634a193: 4c 89 e1 mov %r12,%rcx - 6634a196: e8 b5 7d 00 00 callq 66351f50 <_assert> - 6634a19b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a19f: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a1a3: 48 01 da add %rbx,%rdx - 6634a1a6: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a1a9: 8b 0a mov (%rdx),%ecx - 6634a1ab: 39 c8 cmp %ecx,%eax - 6634a1ad: 74 6c je 6634a21b - 6634a1af: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a1b3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a1b7: 41 89 c3 mov %eax,%r11d - 6634a1ba: 41 29 cb sub %ecx,%r11d - 6634a1bd: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a1c1: 45 01 18 add %r11d,(%r8) - 6634a1c4: 89 02 mov %eax,(%rdx) - 6634a1c6: 31 d2 xor %edx,%edx - 6634a1c8: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a1cc: 45 8b 18 mov (%r8),%r11d - 6634a1cf: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a1d3: 45 85 db test %r11d,%r11d - 6634a1d6: 0f 9f c2 setg %dl - 6634a1d9: 3b 10 cmp (%rax),%edx - 6634a1db: 74 3e je 6634a21b - 6634a1dd: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a1e1: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a1e5: 44 8b 10 mov (%rax),%r10d - 6634a1e8: 45 85 d2 test %r10d,%r10d - 6634a1eb: 75 2e jne 6634a21b - 6634a1ed: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a1f1: 48 8b 0d 38 d7 00 00 mov 0xd738(%rip),%rcx # 66357930 - 6634a1f8: 4c 8b 05 21 d7 00 00 mov 0xd721(%rip),%r8 # 66357920 - 6634a1ff: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a203: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a207: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a20d: 48 63 01 movslq (%rcx),%rax - 6634a210: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a214: 44 89 09 mov %r9d,(%rcx) - 6634a217: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a21b: 48 83 c3 04 add $0x4,%rbx - 6634a21f: 81 c7 00 04 00 00 add $0x400,%edi - 6634a225: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634a22c: 48 81 fb ac 00 00 00 cmp $0xac,%rbx - 6634a233: 0f 85 48 ff ff ff jne 6634a181 - 6634a239: 48 83 c4 28 add $0x28,%rsp - 6634a23d: 5b pop %rbx - 6634a23e: 5e pop %rsi - 6634a23f: 5f pop %rdi - 6634a240: 5d pop %rbp - 6634a241: 41 5c pop %r12 - 6634a243: 41 5d pop %r13 - 6634a245: c3 retq - 6634a246: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634a24d: 00 00 00 - 6634a250: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a254: 4c 8b 1d c5 d6 00 00 mov 0xd6c5(%rip),%r11 # 66357920 - 6634a25b: 4c 8b 15 ce d6 00 00 mov 0xd6ce(%rip),%r10 # 66357930 - 6634a262: 48 8d 50 2c lea 0x2c(%rax),%rdx - 6634a266: b8 58 00 00 00 mov $0x58,%eax - 6634a26b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634a270: 8b 0a mov (%rdx),%ecx - 6634a272: 85 c9 test %ecx,%ecx - 6634a274: 74 55 je 6634a2cb - 6634a276: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a27a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a27e: 41 29 08 sub %ecx,(%r8) - 6634a281: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a287: 45 8b 00 mov (%r8),%r8d - 6634a28a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a28e: 45 85 c0 test %r8d,%r8d - 6634a291: 41 0f 9f c0 setg %r8b - 6634a295: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a299: 44 3b 01 cmp (%rcx),%r8d - 6634a29c: 74 2d je 6634a2cb - 6634a29e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a2a2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a2a6: 8b 09 mov (%rcx),%ecx - 6634a2a8: 85 c9 test %ecx,%ecx - 6634a2aa: 75 1f jne 6634a2cb - 6634a2ac: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a2b0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a2b4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a2b8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a2be: 49 63 0a movslq (%r10),%rcx - 6634a2c1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a2c4: 41 89 1a mov %ebx,(%r10) - 6634a2c7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a2cb: 48 83 c0 08 add $0x8,%rax - 6634a2cf: 48 83 c2 04 add $0x4,%rdx - 6634a2d3: 48 3d 58 01 00 00 cmp $0x158,%rax - 6634a2d9: 75 95 jne 6634a270 - 6634a2db: 48 83 c4 28 add $0x28,%rsp - 6634a2df: 5b pop %rbx - 6634a2e0: 5e pop %rsi - 6634a2e1: 5f pop %rdi - 6634a2e2: 5d pop %rbp - 6634a2e3: 41 5c pop %r12 - 6634a2e5: 41 5d pop %r13 - 6634a2e7: c3 retq - 6634a2e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a2ef: 00 +000000006634a1a0 : + 6634a1a0: 41 55 push %r13 + 6634a1a2: 41 54 push %r12 + 6634a1a4: 55 push %rbp + 6634a1a5: 57 push %rdi + 6634a1a6: 56 push %rsi + 6634a1a7: 53 push %rbx + 6634a1a8: 48 83 ec 28 sub $0x28,%rsp + 6634a1ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a1b0: 49 8b 81 d0 01 00 00 mov 0x1d0(%r9),%rax + 6634a1b7: 48 89 ce mov %rcx,%rsi + 6634a1ba: 8b 18 mov (%rax),%ebx + 6634a1bc: 85 db test %ebx,%ebx + 6634a1be: 0f 84 41 01 00 00 je 6634a305 + 6634a1c4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a1c8: bb 28 00 00 00 mov $0x28,%ebx + 6634a1cd: 4c 8d 2d 2c 9e 00 00 lea 0x9e2c(%rip),%r13 # 66354000 <.rdata> + 6634a1d4: 4c 8d 25 35 9e 00 00 lea 0x9e35(%rip),%r12 # 66354010 <.rdata+0x10> + 6634a1db: 8b 10 mov (%rax),%edx + 6634a1dd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a1e1: 8b 00 mov (%rax),%eax + 6634a1e3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a1e6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a1ea: 8b 12 mov (%rdx),%edx + 6634a1ec: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a1ef: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a1f3: 8b 12 mov (%rdx),%edx + 6634a1f5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a1f8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a1fc: 8b 3a mov (%rdx),%edi + 6634a1fe: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634a202: c1 e7 04 shl $0x4,%edi + 6634a205: 01 c7 add %eax,%edi + 6634a207: 49 8b 41 30 mov 0x30(%r9),%rax + 6634a20b: 8b 00 mov (%rax),%eax + 6634a20d: c1 e0 05 shl $0x5,%eax + 6634a210: 01 c7 add %eax,%edi + 6634a212: 49 8b 41 38 mov 0x38(%r9),%rax + 6634a216: 8b 00 mov (%rax),%eax + 6634a218: c1 e0 06 shl $0x6,%eax + 6634a21b: 01 f8 add %edi,%eax + 6634a21d: 8b 3a mov (%rdx),%edi + 6634a21f: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634a223: c1 e7 07 shl $0x7,%edi + 6634a226: 01 f8 add %edi,%eax + 6634a228: 8b 3a mov (%rdx),%edi + 6634a22a: c1 e7 08 shl $0x8,%edi + 6634a22d: 01 c7 add %eax,%edi + 6634a22f: 48 63 ef movslq %edi,%rbp + 6634a232: 48 c1 e5 02 shl $0x2,%rbp + 6634a236: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634a23d: 00 00 00 + 6634a240: 85 ff test %edi,%edi + 6634a242: 78 05 js 6634a249 + 6634a244: 39 7e 38 cmp %edi,0x38(%rsi) + 6634a247: 7f 11 jg 6634a25a + 6634a249: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a24f: 4c 89 ea mov %r13,%rdx + 6634a252: 4c 89 e1 mov %r12,%rcx + 6634a255: e8 b6 7f 00 00 callq 66352210 <_assert> + 6634a25a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634a25e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634a262: 48 01 da add %rbx,%rdx + 6634a265: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634a268: 8b 0a mov (%rdx),%ecx + 6634a26a: 39 c8 cmp %ecx,%eax + 6634a26c: 74 6c je 6634a2da + 6634a26e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a272: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634a276: 41 89 c3 mov %eax,%r11d + 6634a279: 41 29 cb sub %ecx,%r11d + 6634a27c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634a280: 45 01 18 add %r11d,(%r8) + 6634a283: 89 02 mov %eax,(%rdx) + 6634a285: 31 d2 xor %edx,%edx + 6634a287: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634a28b: 45 8b 18 mov (%r8),%r11d + 6634a28e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a292: 45 85 db test %r11d,%r11d + 6634a295: 0f 9f c2 setg %dl + 6634a298: 3b 10 cmp (%rax),%edx + 6634a29a: 74 3e je 6634a2da + 6634a29c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634a2a0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a2a4: 44 8b 10 mov (%rax),%r10d + 6634a2a7: 45 85 d2 test %r10d,%r10d + 6634a2aa: 75 2e jne 6634a2da + 6634a2ac: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634a2b0: 48 8b 0d 79 d6 00 00 mov 0xd679(%rip),%rcx # 66357930 + 6634a2b7: 4c 8b 05 62 d6 00 00 mov 0xd662(%rip),%r8 # 66357920 + 6634a2be: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634a2c2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a2c6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a2cc: 48 63 01 movslq (%rcx),%rax + 6634a2cf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a2d3: 44 89 09 mov %r9d,(%rcx) + 6634a2d6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a2da: 48 83 c3 04 add $0x4,%rbx + 6634a2de: 81 c7 00 02 00 00 add $0x200,%edi + 6634a2e4: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634a2eb: 48 81 fb e8 00 00 00 cmp $0xe8,%rbx + 6634a2f2: 0f 85 48 ff ff ff jne 6634a240 + 6634a2f8: 48 83 c4 28 add $0x28,%rsp + 6634a2fc: 5b pop %rbx + 6634a2fd: 5e pop %rsi + 6634a2fe: 5f pop %rdi + 6634a2ff: 5d pop %rbp + 6634a300: 41 5c pop %r12 + 6634a302: 41 5d pop %r13 + 6634a304: c3 retq + 6634a305: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a309: 4c 8b 1d 10 d6 00 00 mov 0xd610(%rip),%r11 # 66357920 + 6634a310: 4c 8b 15 19 d6 00 00 mov 0xd619(%rip),%r10 # 66357930 + 6634a317: 48 8d 50 28 lea 0x28(%rax),%rdx + 6634a31b: b8 50 00 00 00 mov $0x50,%eax + 6634a320: 8b 0a mov (%rdx),%ecx + 6634a322: 85 c9 test %ecx,%ecx + 6634a324: 74 55 je 6634a37b + 6634a326: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a32a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a32e: 41 29 08 sub %ecx,(%r8) + 6634a331: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a337: 45 8b 00 mov (%r8),%r8d + 6634a33a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a33e: 45 85 c0 test %r8d,%r8d + 6634a341: 41 0f 9f c0 setg %r8b + 6634a345: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a349: 44 3b 01 cmp (%rcx),%r8d + 6634a34c: 74 2d je 6634a37b + 6634a34e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634a352: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a356: 8b 09 mov (%rcx),%ecx + 6634a358: 85 c9 test %ecx,%ecx + 6634a35a: 75 1f jne 6634a37b + 6634a35c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634a360: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a364: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a368: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a36e: 49 63 0a movslq (%r10),%rcx + 6634a371: 8d 59 01 lea 0x1(%rcx),%ebx + 6634a374: 41 89 1a mov %ebx,(%r10) + 6634a377: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a37b: 48 83 c0 08 add $0x8,%rax + 6634a37f: 48 83 c2 04 add $0x4,%rdx + 6634a383: 48 3d d0 01 00 00 cmp $0x1d0,%rax + 6634a389: 75 95 jne 6634a320 + 6634a38b: 48 83 c4 28 add $0x28,%rsp + 6634a38f: 5b pop %rbx + 6634a390: 5e pop %rsi + 6634a391: 5f pop %rdi + 6634a392: 5d pop %rbp + 6634a393: 41 5c pop %r12 + 6634a395: 41 5d pop %r13 + 6634a397: c3 retq + 6634a398: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a39f: 00 -000000006634a2f0 : - 6634a2f0: 41 55 push %r13 - 6634a2f2: 41 54 push %r12 - 6634a2f4: 55 push %rbp - 6634a2f5: 57 push %rdi - 6634a2f6: 56 push %rsi - 6634a2f7: 53 push %rbx - 6634a2f8: 48 83 ec 28 sub $0x28,%rsp - 6634a2fc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a300: 49 8b 81 50 01 00 00 mov 0x150(%r9),%rax - 6634a307: 48 89 ce mov %rcx,%rsi - 6634a30a: 8b 18 mov (%rax),%ebx - 6634a30c: 85 db test %ebx,%ebx - 6634a30e: 0f 84 41 01 00 00 je 6634a455 - 6634a314: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a318: bb 28 00 00 00 mov $0x28,%ebx - 6634a31d: 4c 8d 2d dc 9c 00 00 lea 0x9cdc(%rip),%r13 # 66354000 <.rdata> - 6634a324: 4c 8d 25 e5 9c 00 00 lea 0x9ce5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a32b: 8b 10 mov (%rax),%edx - 6634a32d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a331: 8b 00 mov (%rax),%eax - 6634a333: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a336: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a33a: 8b 12 mov (%rdx),%edx - 6634a33c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a33f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a343: 8b 12 mov (%rdx),%edx - 6634a345: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a348: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a34c: 8b 3a mov (%rdx),%edi - 6634a34e: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634a352: c1 e7 04 shl $0x4,%edi - 6634a355: 01 c7 add %eax,%edi - 6634a357: 49 8b 41 30 mov 0x30(%r9),%rax - 6634a35b: 8b 00 mov (%rax),%eax - 6634a35d: c1 e0 05 shl $0x5,%eax - 6634a360: 01 c7 add %eax,%edi - 6634a362: 49 8b 41 38 mov 0x38(%r9),%rax - 6634a366: 8b 00 mov (%rax),%eax - 6634a368: c1 e0 06 shl $0x6,%eax - 6634a36b: 01 f8 add %edi,%eax - 6634a36d: 8b 3a mov (%rdx),%edi - 6634a36f: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634a373: c1 e7 07 shl $0x7,%edi - 6634a376: 01 f8 add %edi,%eax - 6634a378: 8b 3a mov (%rdx),%edi - 6634a37a: c1 e7 08 shl $0x8,%edi - 6634a37d: 01 c7 add %eax,%edi - 6634a37f: 48 63 ef movslq %edi,%rbp - 6634a382: 48 c1 e5 02 shl $0x2,%rbp - 6634a386: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634a38d: 00 00 00 - 6634a390: 85 ff test %edi,%edi - 6634a392: 78 05 js 6634a399 - 6634a394: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a397: 7f 11 jg 6634a3aa - 6634a399: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a39f: 4c 89 ea mov %r13,%rdx - 6634a3a2: 4c 89 e1 mov %r12,%rcx - 6634a3a5: e8 a6 7b 00 00 callq 66351f50 <_assert> - 6634a3aa: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a3ae: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a3b2: 48 01 da add %rbx,%rdx - 6634a3b5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a3b8: 8b 0a mov (%rdx),%ecx - 6634a3ba: 39 c8 cmp %ecx,%eax - 6634a3bc: 74 6c je 6634a42a - 6634a3be: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a3c2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a3c6: 41 89 c3 mov %eax,%r11d - 6634a3c9: 41 29 cb sub %ecx,%r11d - 6634a3cc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a3d0: 45 01 18 add %r11d,(%r8) - 6634a3d3: 89 02 mov %eax,(%rdx) - 6634a3d5: 31 d2 xor %edx,%edx - 6634a3d7: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a3db: 45 8b 18 mov (%r8),%r11d - 6634a3de: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a3e2: 45 85 db test %r11d,%r11d - 6634a3e5: 0f 9f c2 setg %dl - 6634a3e8: 3b 10 cmp (%rax),%edx - 6634a3ea: 74 3e je 6634a42a - 6634a3ec: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a3f0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a3f4: 44 8b 10 mov (%rax),%r10d - 6634a3f7: 45 85 d2 test %r10d,%r10d - 6634a3fa: 75 2e jne 6634a42a - 6634a3fc: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a400: 48 8b 0d 29 d5 00 00 mov 0xd529(%rip),%rcx # 66357930 - 6634a407: 4c 8b 05 12 d5 00 00 mov 0xd512(%rip),%r8 # 66357920 - 6634a40e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a412: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a416: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a41c: 48 63 01 movslq (%rcx),%rax - 6634a41f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a423: 44 89 09 mov %r9d,(%rcx) - 6634a426: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a42a: 48 83 c3 04 add $0x4,%rbx - 6634a42e: 81 c7 00 02 00 00 add $0x200,%edi - 6634a434: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634a43b: 48 81 fb a8 00 00 00 cmp $0xa8,%rbx - 6634a442: 0f 85 48 ff ff ff jne 6634a390 - 6634a448: 48 83 c4 28 add $0x28,%rsp - 6634a44c: 5b pop %rbx - 6634a44d: 5e pop %rsi - 6634a44e: 5f pop %rdi - 6634a44f: 5d pop %rbp - 6634a450: 41 5c pop %r12 - 6634a452: 41 5d pop %r13 - 6634a454: c3 retq - 6634a455: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a459: 4c 8b 1d c0 d4 00 00 mov 0xd4c0(%rip),%r11 # 66357920 - 6634a460: 4c 8b 15 c9 d4 00 00 mov 0xd4c9(%rip),%r10 # 66357930 - 6634a467: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634a46b: b8 50 00 00 00 mov $0x50,%eax - 6634a470: 8b 0a mov (%rdx),%ecx - 6634a472: 85 c9 test %ecx,%ecx - 6634a474: 74 55 je 6634a4cb - 6634a476: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a47a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a47e: 41 29 08 sub %ecx,(%r8) - 6634a481: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a487: 45 8b 00 mov (%r8),%r8d - 6634a48a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a48e: 45 85 c0 test %r8d,%r8d - 6634a491: 41 0f 9f c0 setg %r8b - 6634a495: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a499: 44 3b 01 cmp (%rcx),%r8d - 6634a49c: 74 2d je 6634a4cb - 6634a49e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a4a2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a4a6: 8b 09 mov (%rcx),%ecx - 6634a4a8: 85 c9 test %ecx,%ecx - 6634a4aa: 75 1f jne 6634a4cb - 6634a4ac: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a4b0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a4b4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a4b8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a4be: 49 63 0a movslq (%r10),%rcx - 6634a4c1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a4c4: 41 89 1a mov %ebx,(%r10) - 6634a4c7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a4cb: 48 83 c0 08 add $0x8,%rax - 6634a4cf: 48 83 c2 04 add $0x4,%rdx - 6634a4d3: 48 3d 50 01 00 00 cmp $0x150,%rax - 6634a4d9: 75 95 jne 6634a470 - 6634a4db: 48 83 c4 28 add $0x28,%rsp - 6634a4df: 5b pop %rbx - 6634a4e0: 5e pop %rsi - 6634a4e1: 5f pop %rdi - 6634a4e2: 5d pop %rbp - 6634a4e3: 41 5c pop %r12 - 6634a4e5: 41 5d pop %r13 - 6634a4e7: c3 retq - 6634a4e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a4ef: 00 +000000006634a3a0 : + 6634a3a0: 41 55 push %r13 + 6634a3a2: 41 54 push %r12 + 6634a3a4: 55 push %rbp + 6634a3a5: 57 push %rdi + 6634a3a6: 56 push %rsi + 6634a3a7: 53 push %rbx + 6634a3a8: 48 83 ec 28 sub $0x28,%rsp + 6634a3ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a3b0: 49 8b 81 38 01 00 00 mov 0x138(%r9),%rax + 6634a3b7: 48 89 ce mov %rcx,%rsi + 6634a3ba: 8b 18 mov (%rax),%ebx + 6634a3bc: 85 db test %ebx,%ebx + 6634a3be: 0f 84 1c 01 00 00 je 6634a4e0 + 6634a3c4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a3c8: bb 1c 00 00 00 mov $0x1c,%ebx + 6634a3cd: 4c 8d 2d 2c 9c 00 00 lea 0x9c2c(%rip),%r13 # 66354000 <.rdata> + 6634a3d4: 4c 8d 25 35 9c 00 00 lea 0x9c35(%rip),%r12 # 66354010 <.rdata+0x10> + 6634a3db: 8b 10 mov (%rax),%edx + 6634a3dd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a3e1: 8b 00 mov (%rax),%eax + 6634a3e3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a3e6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a3ea: 8b 12 mov (%rdx),%edx + 6634a3ec: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a3ef: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a3f3: 8b 12 mov (%rdx),%edx + 6634a3f5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a3f8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a3fc: 8b 3a mov (%rdx),%edi + 6634a3fe: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634a402: c1 e7 04 shl $0x4,%edi + 6634a405: 01 f8 add %edi,%eax + 6634a407: 8b 3a mov (%rdx),%edi + 6634a409: c1 e7 05 shl $0x5,%edi + 6634a40c: 01 c7 add %eax,%edi + 6634a40e: 48 63 ef movslq %edi,%rbp + 6634a411: 48 c1 e5 02 shl $0x2,%rbp + 6634a415: 85 ff test %edi,%edi + 6634a417: 78 05 js 6634a41e + 6634a419: 39 7e 38 cmp %edi,0x38(%rsi) + 6634a41c: 7f 11 jg 6634a42f + 6634a41e: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a424: 4c 89 ea mov %r13,%rdx + 6634a427: 4c 89 e1 mov %r12,%rcx + 6634a42a: e8 e1 7d 00 00 callq 66352210 <_assert> + 6634a42f: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634a433: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634a437: 48 01 da add %rbx,%rdx + 6634a43a: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634a43d: 8b 0a mov (%rdx),%ecx + 6634a43f: 39 c8 cmp %ecx,%eax + 6634a441: 74 6c je 6634a4af + 6634a443: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a447: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634a44b: 41 89 c3 mov %eax,%r11d + 6634a44e: 41 29 cb sub %ecx,%r11d + 6634a451: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634a455: 45 01 18 add %r11d,(%r8) + 6634a458: 89 02 mov %eax,(%rdx) + 6634a45a: 31 d2 xor %edx,%edx + 6634a45c: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634a460: 45 8b 18 mov (%r8),%r11d + 6634a463: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a467: 45 85 db test %r11d,%r11d + 6634a46a: 0f 9f c2 setg %dl + 6634a46d: 3b 10 cmp (%rax),%edx + 6634a46f: 74 3e je 6634a4af + 6634a471: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634a475: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a479: 44 8b 10 mov (%rax),%r10d + 6634a47c: 45 85 d2 test %r10d,%r10d + 6634a47f: 75 2e jne 6634a4af + 6634a481: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634a485: 48 8b 0d a4 d4 00 00 mov 0xd4a4(%rip),%rcx # 66357930 + 6634a48c: 4c 8b 05 8d d4 00 00 mov 0xd48d(%rip),%r8 # 66357920 + 6634a493: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634a497: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a49b: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a4a1: 48 63 01 movslq (%rcx),%rax + 6634a4a4: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a4a8: 44 89 09 mov %r9d,(%rcx) + 6634a4ab: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a4af: 48 83 c3 04 add $0x4,%rbx + 6634a4b3: 83 c7 40 add $0x40,%edi + 6634a4b6: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634a4bd: 48 81 fb 9c 00 00 00 cmp $0x9c,%rbx + 6634a4c4: 0f 85 4b ff ff ff jne 6634a415 + 6634a4ca: 48 83 c4 28 add $0x28,%rsp + 6634a4ce: 5b pop %rbx + 6634a4cf: 5e pop %rsi + 6634a4d0: 5f pop %rdi + 6634a4d1: 5d pop %rbp + 6634a4d2: 41 5c pop %r12 + 6634a4d4: 41 5d pop %r13 + 6634a4d6: c3 retq + 6634a4d7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634a4de: 00 00 + 6634a4e0: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a4e4: 4c 8b 1d 35 d4 00 00 mov 0xd435(%rip),%r11 # 66357920 + 6634a4eb: 4c 8b 15 3e d4 00 00 mov 0xd43e(%rip),%r10 # 66357930 + 6634a4f2: 48 8d 50 1c lea 0x1c(%rax),%rdx + 6634a4f6: b8 38 00 00 00 mov $0x38,%eax + 6634a4fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a500: 8b 0a mov (%rdx),%ecx + 6634a502: 85 c9 test %ecx,%ecx + 6634a504: 74 55 je 6634a55b + 6634a506: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a50a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a50e: 41 29 08 sub %ecx,(%r8) + 6634a511: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a517: 45 8b 00 mov (%r8),%r8d + 6634a51a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a51e: 45 85 c0 test %r8d,%r8d + 6634a521: 41 0f 9f c0 setg %r8b + 6634a525: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a529: 44 3b 01 cmp (%rcx),%r8d + 6634a52c: 74 2d je 6634a55b + 6634a52e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634a532: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a536: 8b 09 mov (%rcx),%ecx + 6634a538: 85 c9 test %ecx,%ecx + 6634a53a: 75 1f jne 6634a55b + 6634a53c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634a540: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a544: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a548: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a54e: 49 63 0a movslq (%r10),%rcx + 6634a551: 8d 59 01 lea 0x1(%rcx),%ebx + 6634a554: 41 89 1a mov %ebx,(%r10) + 6634a557: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a55b: 48 83 c0 08 add $0x8,%rax + 6634a55f: 48 83 c2 04 add $0x4,%rdx + 6634a563: 48 3d 38 01 00 00 cmp $0x138,%rax + 6634a569: 75 95 jne 6634a500 + 6634a56b: 48 83 c4 28 add $0x28,%rsp + 6634a56f: 5b pop %rbx + 6634a570: 5e pop %rsi + 6634a571: 5f pop %rdi + 6634a572: 5d pop %rbp + 6634a573: 41 5c pop %r12 + 6634a575: 41 5d pop %r13 + 6634a577: c3 retq + 6634a578: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a57f: 00 -000000006634a4f0 : - 6634a4f0: 41 55 push %r13 - 6634a4f2: 41 54 push %r12 - 6634a4f4: 55 push %rbp - 6634a4f5: 57 push %rdi - 6634a4f6: 56 push %rsi - 6634a4f7: 53 push %rbx - 6634a4f8: 48 83 ec 28 sub $0x28,%rsp - 6634a4fc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a500: 49 8b 81 e8 00 00 00 mov 0xe8(%r9),%rax - 6634a507: 48 89 ce mov %rcx,%rsi - 6634a50a: 8b 18 mov (%rax),%ebx - 6634a50c: 85 db test %ebx,%ebx - 6634a50e: 0f 84 5e 01 00 00 je 6634a672 - 6634a514: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a518: bb 34 00 00 00 mov $0x34,%ebx - 6634a51d: 4c 8d 2d dc 9a 00 00 lea 0x9adc(%rip),%r13 # 66354000 <.rdata> - 6634a524: 4c 8d 25 e5 9a 00 00 lea 0x9ae5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a52b: 8b 10 mov (%rax),%edx - 6634a52d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a531: 8b 00 mov (%rax),%eax - 6634a533: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a536: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a53a: 8b 12 mov (%rdx),%edx - 6634a53c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a53f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a543: 8b 12 mov (%rdx),%edx - 6634a545: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634a548: 49 8b 41 28 mov 0x28(%r9),%rax - 6634a54c: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634a550: 8b 00 mov (%rax),%eax - 6634a552: c1 e0 04 shl $0x4,%eax - 6634a555: 01 c7 add %eax,%edi - 6634a557: 49 8b 41 30 mov 0x30(%r9),%rax - 6634a55b: 8b 00 mov (%rax),%eax - 6634a55d: c1 e0 05 shl $0x5,%eax - 6634a560: 01 f8 add %edi,%eax - 6634a562: 8b 3a mov (%rdx),%edi - 6634a564: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634a568: c1 e7 06 shl $0x6,%edi - 6634a56b: 01 f8 add %edi,%eax - 6634a56d: 8b 3a mov (%rdx),%edi - 6634a56f: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634a573: c1 e7 07 shl $0x7,%edi - 6634a576: 01 c7 add %eax,%edi - 6634a578: 49 8b 41 48 mov 0x48(%r9),%rax - 6634a57c: 8b 00 mov (%rax),%eax - 6634a57e: c1 e0 08 shl $0x8,%eax - 6634a581: 01 c7 add %eax,%edi - 6634a583: 49 8b 41 50 mov 0x50(%r9),%rax - 6634a587: 8b 00 mov (%rax),%eax - 6634a589: c1 e0 09 shl $0x9,%eax - 6634a58c: 01 f8 add %edi,%eax - 6634a58e: 8b 3a mov (%rdx),%edi - 6634a590: 49 8b 51 60 mov 0x60(%r9),%rdx - 6634a594: c1 e7 0a shl $0xa,%edi - 6634a597: 01 f8 add %edi,%eax - 6634a599: 8b 3a mov (%rdx),%edi - 6634a59b: c1 e7 0b shl $0xb,%edi - 6634a59e: 01 c7 add %eax,%edi - 6634a5a0: 48 63 ef movslq %edi,%rbp - 6634a5a3: 48 c1 e5 02 shl $0x2,%rbp - 6634a5a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634a5ae: 00 00 - 6634a5b0: 85 ff test %edi,%edi - 6634a5b2: 78 05 js 6634a5b9 - 6634a5b4: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a5b7: 7f 11 jg 6634a5ca - 6634a5b9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a5bf: 4c 89 ea mov %r13,%rdx - 6634a5c2: 4c 89 e1 mov %r12,%rcx - 6634a5c5: e8 86 79 00 00 callq 66351f50 <_assert> - 6634a5ca: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a5ce: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a5d2: 48 01 da add %rbx,%rdx - 6634a5d5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a5d8: 8b 0a mov (%rdx),%ecx - 6634a5da: 39 c8 cmp %ecx,%eax - 6634a5dc: 74 6c je 6634a64a - 6634a5de: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a5e2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a5e6: 41 89 c3 mov %eax,%r11d - 6634a5e9: 41 29 cb sub %ecx,%r11d - 6634a5ec: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a5f0: 45 01 18 add %r11d,(%r8) - 6634a5f3: 89 02 mov %eax,(%rdx) - 6634a5f5: 31 d2 xor %edx,%edx - 6634a5f7: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a5fb: 45 8b 18 mov (%r8),%r11d - 6634a5fe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a602: 45 85 db test %r11d,%r11d - 6634a605: 0f 9f c2 setg %dl - 6634a608: 3b 10 cmp (%rax),%edx - 6634a60a: 74 3e je 6634a64a - 6634a60c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a610: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a614: 44 8b 10 mov (%rax),%r10d - 6634a617: 45 85 d2 test %r10d,%r10d - 6634a61a: 75 2e jne 6634a64a - 6634a61c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a620: 48 8b 0d 09 d3 00 00 mov 0xd309(%rip),%rcx # 66357930 - 6634a627: 4c 8b 05 f2 d2 00 00 mov 0xd2f2(%rip),%r8 # 66357920 - 6634a62e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a632: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a636: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a63c: 48 63 01 movslq (%rcx),%rax - 6634a63f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a643: 44 89 09 mov %r9d,(%rcx) - 6634a646: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a64a: 48 83 c3 04 add $0x4,%rbx - 6634a64e: 81 c7 00 10 00 00 add $0x1000,%edi - 6634a654: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634a65b: 48 83 fb 74 cmp $0x74,%rbx - 6634a65f: 0f 85 4b ff ff ff jne 6634a5b0 - 6634a665: 48 83 c4 28 add $0x28,%rsp - 6634a669: 5b pop %rbx - 6634a66a: 5e pop %rsi - 6634a66b: 5f pop %rdi - 6634a66c: 5d pop %rbp - 6634a66d: 41 5c pop %r12 - 6634a66f: 41 5d pop %r13 - 6634a671: c3 retq - 6634a672: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a676: 4c 8b 1d a3 d2 00 00 mov 0xd2a3(%rip),%r11 # 66357920 - 6634a67d: 4c 8b 15 ac d2 00 00 mov 0xd2ac(%rip),%r10 # 66357930 - 6634a684: 48 8d 50 34 lea 0x34(%rax),%rdx - 6634a688: b8 68 00 00 00 mov $0x68,%eax - 6634a68d: 0f 1f 00 nopl (%rax) - 6634a690: 8b 0a mov (%rdx),%ecx - 6634a692: 85 c9 test %ecx,%ecx - 6634a694: 74 55 je 6634a6eb - 6634a696: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a69a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a69e: 41 29 08 sub %ecx,(%r8) - 6634a6a1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a6a7: 45 8b 00 mov (%r8),%r8d - 6634a6aa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a6ae: 45 85 c0 test %r8d,%r8d - 6634a6b1: 41 0f 9f c0 setg %r8b - 6634a6b5: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a6b9: 44 3b 01 cmp (%rcx),%r8d - 6634a6bc: 74 2d je 6634a6eb - 6634a6be: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a6c2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a6c6: 8b 09 mov (%rcx),%ecx - 6634a6c8: 85 c9 test %ecx,%ecx - 6634a6ca: 75 1f jne 6634a6eb - 6634a6cc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a6d0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a6d4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a6d8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a6de: 49 63 0a movslq (%r10),%rcx - 6634a6e1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a6e4: 41 89 1a mov %ebx,(%r10) - 6634a6e7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a6eb: 48 83 c0 08 add $0x8,%rax - 6634a6ef: 48 83 c2 04 add $0x4,%rdx - 6634a6f3: 48 3d e8 00 00 00 cmp $0xe8,%rax - 6634a6f9: 75 95 jne 6634a690 - 6634a6fb: 48 83 c4 28 add $0x28,%rsp - 6634a6ff: 5b pop %rbx - 6634a700: 5e pop %rsi - 6634a701: 5f pop %rdi - 6634a702: 5d pop %rbp - 6634a703: 41 5c pop %r12 - 6634a705: 41 5d pop %r13 - 6634a707: c3 retq - 6634a708: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a70f: 00 +000000006634a580 : + 6634a580: 41 55 push %r13 + 6634a582: 41 54 push %r12 + 6634a584: 55 push %rbp + 6634a585: 57 push %rdi + 6634a586: 56 push %rsi + 6634a587: 53 push %rbx + 6634a588: 48 83 ec 28 sub $0x28,%rsp + 6634a58c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a590: 49 8b 81 58 01 00 00 mov 0x158(%r9),%rax + 6634a597: 48 89 ce mov %rcx,%rsi + 6634a59a: 8b 18 mov (%rax),%ebx + 6634a59c: 85 db test %ebx,%ebx + 6634a59e: 0f 84 4c 01 00 00 je 6634a6f0 + 6634a5a4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a5a8: bb 2c 00 00 00 mov $0x2c,%ebx + 6634a5ad: 4c 8d 2d 4c 9a 00 00 lea 0x9a4c(%rip),%r13 # 66354000 <.rdata> + 6634a5b4: 4c 8d 25 55 9a 00 00 lea 0x9a55(%rip),%r12 # 66354010 <.rdata+0x10> + 6634a5bb: 8b 10 mov (%rax),%edx + 6634a5bd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a5c1: 8b 00 mov (%rax),%eax + 6634a5c3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a5c6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a5ca: 8b 12 mov (%rdx),%edx + 6634a5cc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a5cf: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a5d3: 8b 12 mov (%rdx),%edx + 6634a5d5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a5d8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a5dc: 8b 3a mov (%rdx),%edi + 6634a5de: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634a5e2: c1 e7 04 shl $0x4,%edi + 6634a5e5: 01 f8 add %edi,%eax + 6634a5e7: 8b 3a mov (%rdx),%edi + 6634a5e9: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634a5ed: c1 e7 05 shl $0x5,%edi + 6634a5f0: 01 c7 add %eax,%edi + 6634a5f2: 49 8b 41 38 mov 0x38(%r9),%rax + 6634a5f6: 8b 00 mov (%rax),%eax + 6634a5f8: c1 e0 06 shl $0x6,%eax + 6634a5fb: 01 c7 add %eax,%edi + 6634a5fd: 49 8b 41 40 mov 0x40(%r9),%rax + 6634a601: 8b 00 mov (%rax),%eax + 6634a603: c1 e0 07 shl $0x7,%eax + 6634a606: 01 f8 add %edi,%eax + 6634a608: 8b 3a mov (%rdx),%edi + 6634a60a: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634a60e: c1 e7 08 shl $0x8,%edi + 6634a611: 01 f8 add %edi,%eax + 6634a613: 8b 3a mov (%rdx),%edi + 6634a615: c1 e7 09 shl $0x9,%edi + 6634a618: 01 c7 add %eax,%edi + 6634a61a: 48 63 ef movslq %edi,%rbp + 6634a61d: 48 c1 e5 02 shl $0x2,%rbp + 6634a621: 85 ff test %edi,%edi + 6634a623: 78 05 js 6634a62a + 6634a625: 39 7e 38 cmp %edi,0x38(%rsi) + 6634a628: 7f 11 jg 6634a63b + 6634a62a: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a630: 4c 89 ea mov %r13,%rdx + 6634a633: 4c 89 e1 mov %r12,%rcx + 6634a636: e8 d5 7b 00 00 callq 66352210 <_assert> + 6634a63b: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634a63f: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634a643: 48 01 da add %rbx,%rdx + 6634a646: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634a649: 8b 0a mov (%rdx),%ecx + 6634a64b: 39 c8 cmp %ecx,%eax + 6634a64d: 74 6c je 6634a6bb + 6634a64f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a653: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634a657: 41 89 c3 mov %eax,%r11d + 6634a65a: 41 29 cb sub %ecx,%r11d + 6634a65d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634a661: 45 01 18 add %r11d,(%r8) + 6634a664: 89 02 mov %eax,(%rdx) + 6634a666: 31 d2 xor %edx,%edx + 6634a668: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634a66c: 45 8b 18 mov (%r8),%r11d + 6634a66f: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a673: 45 85 db test %r11d,%r11d + 6634a676: 0f 9f c2 setg %dl + 6634a679: 3b 10 cmp (%rax),%edx + 6634a67b: 74 3e je 6634a6bb + 6634a67d: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634a681: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a685: 44 8b 10 mov (%rax),%r10d + 6634a688: 45 85 d2 test %r10d,%r10d + 6634a68b: 75 2e jne 6634a6bb + 6634a68d: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634a691: 48 8b 0d 98 d2 00 00 mov 0xd298(%rip),%rcx # 66357930 + 6634a698: 4c 8b 05 81 d2 00 00 mov 0xd281(%rip),%r8 # 66357920 + 6634a69f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634a6a3: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a6a7: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a6ad: 48 63 01 movslq (%rcx),%rax + 6634a6b0: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a6b4: 44 89 09 mov %r9d,(%rcx) + 6634a6b7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a6bb: 48 83 c3 04 add $0x4,%rbx + 6634a6bf: 81 c7 00 04 00 00 add $0x400,%edi + 6634a6c5: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634a6cc: 48 81 fb ac 00 00 00 cmp $0xac,%rbx + 6634a6d3: 0f 85 48 ff ff ff jne 6634a621 + 6634a6d9: 48 83 c4 28 add $0x28,%rsp + 6634a6dd: 5b pop %rbx + 6634a6de: 5e pop %rsi + 6634a6df: 5f pop %rdi + 6634a6e0: 5d pop %rbp + 6634a6e1: 41 5c pop %r12 + 6634a6e3: 41 5d pop %r13 + 6634a6e5: c3 retq + 6634a6e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634a6ed: 00 00 00 + 6634a6f0: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a6f4: 4c 8b 1d 25 d2 00 00 mov 0xd225(%rip),%r11 # 66357920 + 6634a6fb: 4c 8b 15 2e d2 00 00 mov 0xd22e(%rip),%r10 # 66357930 + 6634a702: 48 8d 50 2c lea 0x2c(%rax),%rdx + 6634a706: b8 58 00 00 00 mov $0x58,%eax + 6634a70b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a710: 8b 0a mov (%rdx),%ecx + 6634a712: 85 c9 test %ecx,%ecx + 6634a714: 74 55 je 6634a76b + 6634a716: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a71a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a71e: 41 29 08 sub %ecx,(%r8) + 6634a721: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a727: 45 8b 00 mov (%r8),%r8d + 6634a72a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a72e: 45 85 c0 test %r8d,%r8d + 6634a731: 41 0f 9f c0 setg %r8b + 6634a735: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a739: 44 3b 01 cmp (%rcx),%r8d + 6634a73c: 74 2d je 6634a76b + 6634a73e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634a742: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a746: 8b 09 mov (%rcx),%ecx + 6634a748: 85 c9 test %ecx,%ecx + 6634a74a: 75 1f jne 6634a76b + 6634a74c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634a750: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a754: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a758: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a75e: 49 63 0a movslq (%r10),%rcx + 6634a761: 8d 59 01 lea 0x1(%rcx),%ebx + 6634a764: 41 89 1a mov %ebx,(%r10) + 6634a767: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a76b: 48 83 c0 08 add $0x8,%rax + 6634a76f: 48 83 c2 04 add $0x4,%rdx + 6634a773: 48 3d 58 01 00 00 cmp $0x158,%rax + 6634a779: 75 95 jne 6634a710 + 6634a77b: 48 83 c4 28 add $0x28,%rsp + 6634a77f: 5b pop %rbx + 6634a780: 5e pop %rsi + 6634a781: 5f pop %rdi + 6634a782: 5d pop %rbp + 6634a783: 41 5c pop %r12 + 6634a785: 41 5d pop %r13 + 6634a787: c3 retq + 6634a788: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a78f: 00 -000000006634a710 : - 6634a710: 41 55 push %r13 - 6634a712: 41 54 push %r12 - 6634a714: 55 push %rbp - 6634a715: 57 push %rdi - 6634a716: 56 push %rsi - 6634a717: 53 push %rbx - 6634a718: 48 83 ec 28 sub $0x28,%rsp - 6634a71c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a720: 49 8b 81 d0 00 00 00 mov 0xd0(%r9),%rax - 6634a727: 48 89 ce mov %rcx,%rsi - 6634a72a: 8b 18 mov (%rax),%ebx - 6634a72c: 85 db test %ebx,%ebx - 6634a72e: 0f 84 3e 01 00 00 je 6634a872 - 6634a734: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a738: bb 28 00 00 00 mov $0x28,%ebx - 6634a73d: 4c 8d 2d bc 98 00 00 lea 0x98bc(%rip),%r13 # 66354000 <.rdata> - 6634a744: 4c 8d 25 c5 98 00 00 lea 0x98c5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a74b: 8b 10 mov (%rax),%edx - 6634a74d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a751: 8b 00 mov (%rax),%eax - 6634a753: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a756: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a75a: 8b 12 mov (%rdx),%edx - 6634a75c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a75f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a763: 8b 12 mov (%rdx),%edx - 6634a765: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a768: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a76c: 8b 3a mov (%rdx),%edi - 6634a76e: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634a772: c1 e7 04 shl $0x4,%edi - 6634a775: 01 c7 add %eax,%edi - 6634a777: 49 8b 41 30 mov 0x30(%r9),%rax - 6634a77b: 8b 00 mov (%rax),%eax - 6634a77d: c1 e0 05 shl $0x5,%eax - 6634a780: 01 c7 add %eax,%edi - 6634a782: 49 8b 41 38 mov 0x38(%r9),%rax - 6634a786: 8b 00 mov (%rax),%eax - 6634a788: c1 e0 06 shl $0x6,%eax - 6634a78b: 01 f8 add %edi,%eax - 6634a78d: 8b 3a mov (%rdx),%edi - 6634a78f: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634a793: c1 e7 07 shl $0x7,%edi - 6634a796: 01 f8 add %edi,%eax - 6634a798: 8b 3a mov (%rdx),%edi - 6634a79a: c1 e7 08 shl $0x8,%edi - 6634a79d: 01 c7 add %eax,%edi - 6634a79f: 48 63 ef movslq %edi,%rbp - 6634a7a2: 48 c1 e5 02 shl $0x2,%rbp - 6634a7a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634a7ad: 00 00 00 - 6634a7b0: 85 ff test %edi,%edi - 6634a7b2: 78 05 js 6634a7b9 - 6634a7b4: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a7b7: 7f 11 jg 6634a7ca - 6634a7b9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a7bf: 4c 89 ea mov %r13,%rdx - 6634a7c2: 4c 89 e1 mov %r12,%rcx - 6634a7c5: e8 86 77 00 00 callq 66351f50 <_assert> - 6634a7ca: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a7ce: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a7d2: 48 01 da add %rbx,%rdx - 6634a7d5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a7d8: 8b 0a mov (%rdx),%ecx - 6634a7da: 39 c8 cmp %ecx,%eax - 6634a7dc: 74 6c je 6634a84a - 6634a7de: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a7e2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a7e6: 41 89 c3 mov %eax,%r11d - 6634a7e9: 41 29 cb sub %ecx,%r11d - 6634a7ec: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a7f0: 45 01 18 add %r11d,(%r8) - 6634a7f3: 89 02 mov %eax,(%rdx) - 6634a7f5: 31 d2 xor %edx,%edx - 6634a7f7: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a7fb: 45 8b 18 mov (%r8),%r11d - 6634a7fe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a802: 45 85 db test %r11d,%r11d - 6634a805: 0f 9f c2 setg %dl - 6634a808: 3b 10 cmp (%rax),%edx - 6634a80a: 74 3e je 6634a84a - 6634a80c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a810: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a814: 44 8b 10 mov (%rax),%r10d - 6634a817: 45 85 d2 test %r10d,%r10d - 6634a81a: 75 2e jne 6634a84a - 6634a81c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a820: 48 8b 0d 09 d1 00 00 mov 0xd109(%rip),%rcx # 66357930 - 6634a827: 4c 8b 05 f2 d0 00 00 mov 0xd0f2(%rip),%r8 # 66357920 - 6634a82e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a832: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a836: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a83c: 48 63 01 movslq (%rcx),%rax - 6634a83f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a843: 44 89 09 mov %r9d,(%rcx) - 6634a846: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a84a: 48 83 c3 04 add $0x4,%rbx - 6634a84e: 81 c7 00 02 00 00 add $0x200,%edi - 6634a854: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634a85b: 48 83 fb 68 cmp $0x68,%rbx - 6634a85f: 0f 85 4b ff ff ff jne 6634a7b0 - 6634a865: 48 83 c4 28 add $0x28,%rsp - 6634a869: 5b pop %rbx - 6634a86a: 5e pop %rsi - 6634a86b: 5f pop %rdi - 6634a86c: 5d pop %rbp - 6634a86d: 41 5c pop %r12 - 6634a86f: 41 5d pop %r13 - 6634a871: c3 retq - 6634a872: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a876: 4c 8b 1d a3 d0 00 00 mov 0xd0a3(%rip),%r11 # 66357920 - 6634a87d: 4c 8b 15 ac d0 00 00 mov 0xd0ac(%rip),%r10 # 66357930 - 6634a884: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634a888: b8 50 00 00 00 mov $0x50,%eax - 6634a88d: 0f 1f 00 nopl (%rax) - 6634a890: 8b 0a mov (%rdx),%ecx - 6634a892: 85 c9 test %ecx,%ecx - 6634a894: 74 55 je 6634a8eb - 6634a896: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a89a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a89e: 41 29 08 sub %ecx,(%r8) - 6634a8a1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a8a7: 45 8b 00 mov (%r8),%r8d - 6634a8aa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a8ae: 45 85 c0 test %r8d,%r8d - 6634a8b1: 41 0f 9f c0 setg %r8b - 6634a8b5: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a8b9: 44 3b 01 cmp (%rcx),%r8d - 6634a8bc: 74 2d je 6634a8eb - 6634a8be: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a8c2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a8c6: 8b 09 mov (%rcx),%ecx - 6634a8c8: 85 c9 test %ecx,%ecx - 6634a8ca: 75 1f jne 6634a8eb - 6634a8cc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a8d0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a8d4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a8d8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a8de: 49 63 0a movslq (%r10),%rcx - 6634a8e1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a8e4: 41 89 1a mov %ebx,(%r10) - 6634a8e7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a8eb: 48 83 c0 08 add $0x8,%rax - 6634a8ef: 48 83 c2 04 add $0x4,%rdx - 6634a8f3: 48 3d d0 00 00 00 cmp $0xd0,%rax - 6634a8f9: 75 95 jne 6634a890 - 6634a8fb: 48 83 c4 28 add $0x28,%rsp - 6634a8ff: 5b pop %rbx - 6634a900: 5e pop %rsi - 6634a901: 5f pop %rdi - 6634a902: 5d pop %rbp - 6634a903: 41 5c pop %r12 - 6634a905: 41 5d pop %r13 - 6634a907: c3 retq - 6634a908: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a90f: 00 +000000006634a790 : + 6634a790: 41 55 push %r13 + 6634a792: 41 54 push %r12 + 6634a794: 55 push %rbp + 6634a795: 57 push %rdi + 6634a796: 56 push %rsi + 6634a797: 53 push %rbx + 6634a798: 48 83 ec 28 sub $0x28,%rsp + 6634a79c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a7a0: 49 8b 81 68 01 00 00 mov 0x168(%r9),%rax + 6634a7a7: 48 89 ce mov %rcx,%rsi + 6634a7aa: 8b 18 mov (%rax),%ebx + 6634a7ac: 85 db test %ebx,%ebx + 6634a7ae: 0f 84 61 01 00 00 je 6634a915 + 6634a7b4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a7b8: bb 34 00 00 00 mov $0x34,%ebx + 6634a7bd: 4c 8d 2d 3c 98 00 00 lea 0x983c(%rip),%r13 # 66354000 <.rdata> + 6634a7c4: 4c 8d 25 45 98 00 00 lea 0x9845(%rip),%r12 # 66354010 <.rdata+0x10> + 6634a7cb: 8b 10 mov (%rax),%edx + 6634a7cd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a7d1: 8b 00 mov (%rax),%eax + 6634a7d3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a7d6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a7da: 8b 12 mov (%rdx),%edx + 6634a7dc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a7df: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a7e3: 8b 12 mov (%rdx),%edx + 6634a7e5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634a7e8: 49 8b 41 28 mov 0x28(%r9),%rax + 6634a7ec: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634a7f0: 8b 00 mov (%rax),%eax + 6634a7f2: c1 e0 04 shl $0x4,%eax + 6634a7f5: 01 c7 add %eax,%edi + 6634a7f7: 49 8b 41 30 mov 0x30(%r9),%rax + 6634a7fb: 8b 00 mov (%rax),%eax + 6634a7fd: c1 e0 05 shl $0x5,%eax + 6634a800: 01 f8 add %edi,%eax + 6634a802: 8b 3a mov (%rdx),%edi + 6634a804: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634a808: c1 e7 06 shl $0x6,%edi + 6634a80b: 01 f8 add %edi,%eax + 6634a80d: 8b 3a mov (%rdx),%edi + 6634a80f: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634a813: c1 e7 07 shl $0x7,%edi + 6634a816: 01 c7 add %eax,%edi + 6634a818: 49 8b 41 48 mov 0x48(%r9),%rax + 6634a81c: 8b 00 mov (%rax),%eax + 6634a81e: c1 e0 08 shl $0x8,%eax + 6634a821: 01 c7 add %eax,%edi + 6634a823: 49 8b 41 50 mov 0x50(%r9),%rax + 6634a827: 8b 00 mov (%rax),%eax + 6634a829: c1 e0 09 shl $0x9,%eax + 6634a82c: 01 f8 add %edi,%eax + 6634a82e: 8b 3a mov (%rdx),%edi + 6634a830: 49 8b 51 60 mov 0x60(%r9),%rdx + 6634a834: c1 e7 0a shl $0xa,%edi + 6634a837: 01 f8 add %edi,%eax + 6634a839: 8b 3a mov (%rdx),%edi + 6634a83b: c1 e7 0b shl $0xb,%edi + 6634a83e: 01 c7 add %eax,%edi + 6634a840: 48 63 ef movslq %edi,%rbp + 6634a843: 48 c1 e5 02 shl $0x2,%rbp + 6634a847: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634a84e: 00 00 + 6634a850: 85 ff test %edi,%edi + 6634a852: 78 05 js 6634a859 + 6634a854: 39 7e 38 cmp %edi,0x38(%rsi) + 6634a857: 7f 11 jg 6634a86a + 6634a859: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a85f: 4c 89 ea mov %r13,%rdx + 6634a862: 4c 89 e1 mov %r12,%rcx + 6634a865: e8 a6 79 00 00 callq 66352210 <_assert> + 6634a86a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634a86e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634a872: 48 01 da add %rbx,%rdx + 6634a875: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634a878: 8b 0a mov (%rdx),%ecx + 6634a87a: 39 c8 cmp %ecx,%eax + 6634a87c: 74 6c je 6634a8ea + 6634a87e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a882: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634a886: 41 89 c3 mov %eax,%r11d + 6634a889: 41 29 cb sub %ecx,%r11d + 6634a88c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634a890: 45 01 18 add %r11d,(%r8) + 6634a893: 89 02 mov %eax,(%rdx) + 6634a895: 31 d2 xor %edx,%edx + 6634a897: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634a89b: 45 8b 18 mov (%r8),%r11d + 6634a89e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a8a2: 45 85 db test %r11d,%r11d + 6634a8a5: 0f 9f c2 setg %dl + 6634a8a8: 3b 10 cmp (%rax),%edx + 6634a8aa: 74 3e je 6634a8ea + 6634a8ac: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634a8b0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634a8b4: 44 8b 10 mov (%rax),%r10d + 6634a8b7: 45 85 d2 test %r10d,%r10d + 6634a8ba: 75 2e jne 6634a8ea + 6634a8bc: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634a8c0: 48 8b 0d 69 d0 00 00 mov 0xd069(%rip),%rcx # 66357930 + 6634a8c7: 4c 8b 05 52 d0 00 00 mov 0xd052(%rip),%r8 # 66357920 + 6634a8ce: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634a8d2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a8d6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a8dc: 48 63 01 movslq (%rcx),%rax + 6634a8df: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a8e3: 44 89 09 mov %r9d,(%rcx) + 6634a8e6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a8ea: 48 83 c3 04 add $0x4,%rbx + 6634a8ee: 81 c7 00 10 00 00 add $0x1000,%edi + 6634a8f4: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 6634a8fb: 48 81 fb b4 00 00 00 cmp $0xb4,%rbx + 6634a902: 0f 85 48 ff ff ff jne 6634a850 + 6634a908: 48 83 c4 28 add $0x28,%rsp + 6634a90c: 5b pop %rbx + 6634a90d: 5e pop %rsi + 6634a90e: 5f pop %rdi + 6634a90f: 5d pop %rbp + 6634a910: 41 5c pop %r12 + 6634a912: 41 5d pop %r13 + 6634a914: c3 retq + 6634a915: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a919: 4c 8b 1d 00 d0 00 00 mov 0xd000(%rip),%r11 # 66357920 + 6634a920: 4c 8b 15 09 d0 00 00 mov 0xd009(%rip),%r10 # 66357930 + 6634a927: 48 8d 50 34 lea 0x34(%rax),%rdx + 6634a92b: b8 68 00 00 00 mov $0x68,%eax + 6634a930: 8b 0a mov (%rdx),%ecx + 6634a932: 85 c9 test %ecx,%ecx + 6634a934: 74 55 je 6634a98b + 6634a936: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634a93a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a93e: 41 29 08 sub %ecx,(%r8) + 6634a941: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a947: 45 8b 00 mov (%r8),%r8d + 6634a94a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a94e: 45 85 c0 test %r8d,%r8d + 6634a951: 41 0f 9f c0 setg %r8b + 6634a955: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a959: 44 3b 01 cmp (%rcx),%r8d + 6634a95c: 74 2d je 6634a98b + 6634a95e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634a962: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a966: 8b 09 mov (%rcx),%ecx + 6634a968: 85 c9 test %ecx,%ecx + 6634a96a: 75 1f jne 6634a98b + 6634a96c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634a970: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a974: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a978: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a97e: 49 63 0a movslq (%r10),%rcx + 6634a981: 8d 59 01 lea 0x1(%rcx),%ebx + 6634a984: 41 89 1a mov %ebx,(%r10) + 6634a987: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a98b: 48 83 c0 08 add $0x8,%rax + 6634a98f: 48 83 c2 04 add $0x4,%rdx + 6634a993: 48 3d 68 01 00 00 cmp $0x168,%rax + 6634a999: 75 95 jne 6634a930 + 6634a99b: 48 83 c4 28 add $0x28,%rsp + 6634a99f: 5b pop %rbx + 6634a9a0: 5e pop %rsi + 6634a9a1: 5f pop %rdi + 6634a9a2: 5d pop %rbp + 6634a9a3: 41 5c pop %r12 + 6634a9a5: 41 5d pop %r13 + 6634a9a7: c3 retq + 6634a9a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a9af: 00 -000000006634a910 : - 6634a910: 41 55 push %r13 - 6634a912: 41 54 push %r12 - 6634a914: 55 push %rbp - 6634a915: 57 push %rdi - 6634a916: 56 push %rsi - 6634a917: 53 push %rbx - 6634a918: 48 83 ec 28 sub $0x28,%rsp - 6634a91c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a920: 49 8b 81 e0 00 00 00 mov 0xe0(%r9),%rax - 6634a927: 48 89 ce mov %rcx,%rsi - 6634a92a: 8b 18 mov (%rax),%ebx - 6634a92c: 85 db test %ebx,%ebx - 6634a92e: 0f 84 4e 01 00 00 je 6634aa82 - 6634a934: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a938: bb 30 00 00 00 mov $0x30,%ebx - 6634a93d: 4c 8d 2d bc 96 00 00 lea 0x96bc(%rip),%r13 # 66354000 <.rdata> - 6634a944: 4c 8d 25 c5 96 00 00 lea 0x96c5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a94b: 8b 10 mov (%rax),%edx - 6634a94d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a951: 8b 00 mov (%rax),%eax - 6634a953: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a956: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a95a: 8b 12 mov (%rdx),%edx - 6634a95c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a95f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a963: 8b 12 mov (%rdx),%edx - 6634a965: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634a968: 49 8b 41 28 mov 0x28(%r9),%rax - 6634a96c: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634a970: 8b 00 mov (%rax),%eax - 6634a972: c1 e0 04 shl $0x4,%eax - 6634a975: 01 f8 add %edi,%eax - 6634a977: 8b 3a mov (%rdx),%edi - 6634a979: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634a97d: c1 e7 05 shl $0x5,%edi - 6634a980: 01 f8 add %edi,%eax - 6634a982: 8b 3a mov (%rdx),%edi - 6634a984: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634a988: c1 e7 06 shl $0x6,%edi - 6634a98b: 01 c7 add %eax,%edi - 6634a98d: 49 8b 41 40 mov 0x40(%r9),%rax - 6634a991: 8b 00 mov (%rax),%eax - 6634a993: c1 e0 07 shl $0x7,%eax - 6634a996: 01 c7 add %eax,%edi - 6634a998: 49 8b 41 48 mov 0x48(%r9),%rax - 6634a99c: 8b 00 mov (%rax),%eax - 6634a99e: c1 e0 08 shl $0x8,%eax - 6634a9a1: 01 f8 add %edi,%eax - 6634a9a3: 8b 3a mov (%rdx),%edi - 6634a9a5: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634a9a9: c1 e7 09 shl $0x9,%edi - 6634a9ac: 01 f8 add %edi,%eax - 6634a9ae: 8b 3a mov (%rdx),%edi - 6634a9b0: c1 e7 0a shl $0xa,%edi - 6634a9b3: 01 c7 add %eax,%edi - 6634a9b5: 48 63 ef movslq %edi,%rbp - 6634a9b8: 48 c1 e5 02 shl $0x2,%rbp - 6634a9bc: 0f 1f 40 00 nopl 0x0(%rax) - 6634a9c0: 85 ff test %edi,%edi - 6634a9c2: 78 05 js 6634a9c9 - 6634a9c4: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a9c7: 7f 11 jg 6634a9da - 6634a9c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a9cf: 4c 89 ea mov %r13,%rdx - 6634a9d2: 4c 89 e1 mov %r12,%rcx - 6634a9d5: e8 76 75 00 00 callq 66351f50 <_assert> - 6634a9da: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a9de: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a9e2: 48 01 da add %rbx,%rdx - 6634a9e5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a9e8: 8b 0a mov (%rdx),%ecx - 6634a9ea: 39 c8 cmp %ecx,%eax - 6634a9ec: 74 6c je 6634aa5a - 6634a9ee: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a9f2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a9f6: 41 89 c3 mov %eax,%r11d - 6634a9f9: 41 29 cb sub %ecx,%r11d - 6634a9fc: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634aa00: 45 01 18 add %r11d,(%r8) - 6634aa03: 89 02 mov %eax,(%rdx) - 6634aa05: 31 d2 xor %edx,%edx - 6634aa07: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634aa0b: 45 8b 18 mov (%r8),%r11d - 6634aa0e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aa12: 45 85 db test %r11d,%r11d - 6634aa15: 0f 9f c2 setg %dl - 6634aa18: 3b 10 cmp (%rax),%edx - 6634aa1a: 74 3e je 6634aa5a - 6634aa1c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634aa20: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aa24: 44 8b 10 mov (%rax),%r10d - 6634aa27: 45 85 d2 test %r10d,%r10d - 6634aa2a: 75 2e jne 6634aa5a - 6634aa2c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634aa30: 48 8b 0d f9 ce 00 00 mov 0xcef9(%rip),%rcx # 66357930 - 6634aa37: 4c 8b 05 e2 ce 00 00 mov 0xcee2(%rip),%r8 # 66357920 - 6634aa3e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634aa42: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634aa46: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634aa4c: 48 63 01 movslq (%rcx),%rax - 6634aa4f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634aa53: 44 89 09 mov %r9d,(%rcx) - 6634aa56: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634aa5a: 48 83 c3 04 add $0x4,%rbx - 6634aa5e: 81 c7 00 08 00 00 add $0x800,%edi - 6634aa64: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634aa6b: 48 83 fb 70 cmp $0x70,%rbx - 6634aa6f: 0f 85 4b ff ff ff jne 6634a9c0 - 6634aa75: 48 83 c4 28 add $0x28,%rsp - 6634aa79: 5b pop %rbx - 6634aa7a: 5e pop %rsi - 6634aa7b: 5f pop %rdi - 6634aa7c: 5d pop %rbp - 6634aa7d: 41 5c pop %r12 - 6634aa7f: 41 5d pop %r13 - 6634aa81: c3 retq - 6634aa82: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634aa86: 4c 8b 1d 93 ce 00 00 mov 0xce93(%rip),%r11 # 66357920 - 6634aa8d: 4c 8b 15 9c ce 00 00 mov 0xce9c(%rip),%r10 # 66357930 - 6634aa94: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634aa98: b8 60 00 00 00 mov $0x60,%eax - 6634aa9d: 0f 1f 00 nopl (%rax) - 6634aaa0: 8b 0a mov (%rdx),%ecx - 6634aaa2: 85 c9 test %ecx,%ecx - 6634aaa4: 74 55 je 6634aafb - 6634aaa6: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634aaaa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634aaae: 41 29 08 sub %ecx,(%r8) - 6634aab1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634aab7: 45 8b 00 mov (%r8),%r8d - 6634aaba: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634aabe: 45 85 c0 test %r8d,%r8d - 6634aac1: 41 0f 9f c0 setg %r8b - 6634aac5: 45 0f b6 c0 movzbl %r8b,%r8d - 6634aac9: 44 3b 01 cmp (%rcx),%r8d - 6634aacc: 74 2d je 6634aafb - 6634aace: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634aad2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634aad6: 8b 09 mov (%rcx),%ecx - 6634aad8: 85 c9 test %ecx,%ecx - 6634aada: 75 1f jne 6634aafb - 6634aadc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634aae0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634aae4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634aae8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634aaee: 49 63 0a movslq (%r10),%rcx - 6634aaf1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634aaf4: 41 89 1a mov %ebx,(%r10) - 6634aaf7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634aafb: 48 83 c0 08 add $0x8,%rax - 6634aaff: 48 83 c2 04 add $0x4,%rdx - 6634ab03: 48 3d e0 00 00 00 cmp $0xe0,%rax - 6634ab09: 75 95 jne 6634aaa0 - 6634ab0b: 48 83 c4 28 add $0x28,%rsp - 6634ab0f: 5b pop %rbx - 6634ab10: 5e pop %rsi - 6634ab11: 5f pop %rdi - 6634ab12: 5d pop %rbp - 6634ab13: 41 5c pop %r12 - 6634ab15: 41 5d pop %r13 - 6634ab17: c3 retq - 6634ab18: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634ab1f: 00 +000000006634a9b0 : + 6634a9b0: 41 55 push %r13 + 6634a9b2: 41 54 push %r12 + 6634a9b4: 55 push %rbp + 6634a9b5: 57 push %rdi + 6634a9b6: 56 push %rsi + 6634a9b7: 53 push %rbx + 6634a9b8: 48 83 ec 28 sub $0x28,%rsp + 6634a9bc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a9c0: 49 8b 81 48 01 00 00 mov 0x148(%r9),%rax + 6634a9c7: 48 89 ce mov %rcx,%rsi + 6634a9ca: 8b 18 mov (%rax),%ebx + 6634a9cc: 85 db test %ebx,%ebx + 6634a9ce: 0f 84 31 01 00 00 je 6634ab05 + 6634a9d4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a9d8: bb 24 00 00 00 mov $0x24,%ebx + 6634a9dd: 4c 8d 2d 1c 96 00 00 lea 0x961c(%rip),%r13 # 66354000 <.rdata> + 6634a9e4: 4c 8d 25 25 96 00 00 lea 0x9625(%rip),%r12 # 66354010 <.rdata+0x10> + 6634a9eb: 8b 10 mov (%rax),%edx + 6634a9ed: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a9f1: 8b 00 mov (%rax),%eax + 6634a9f3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a9f6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a9fa: 8b 12 mov (%rdx),%edx + 6634a9fc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a9ff: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634aa03: 8b 12 mov (%rdx),%edx + 6634aa05: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634aa08: 49 8b 41 28 mov 0x28(%r9),%rax + 6634aa0c: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634aa10: 8b 00 mov (%rax),%eax + 6634aa12: c1 e0 04 shl $0x4,%eax + 6634aa15: 01 c7 add %eax,%edi + 6634aa17: 49 8b 41 30 mov 0x30(%r9),%rax + 6634aa1b: 8b 00 mov (%rax),%eax + 6634aa1d: c1 e0 05 shl $0x5,%eax + 6634aa20: 01 f8 add %edi,%eax + 6634aa22: 8b 3a mov (%rdx),%edi + 6634aa24: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634aa28: c1 e7 06 shl $0x6,%edi + 6634aa2b: 01 f8 add %edi,%eax + 6634aa2d: 8b 3a mov (%rdx),%edi + 6634aa2f: c1 e7 07 shl $0x7,%edi + 6634aa32: 01 c7 add %eax,%edi + 6634aa34: 48 63 ef movslq %edi,%rbp + 6634aa37: 48 c1 e5 02 shl $0x2,%rbp + 6634aa3b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634aa40: 85 ff test %edi,%edi + 6634aa42: 78 05 js 6634aa49 + 6634aa44: 39 7e 38 cmp %edi,0x38(%rsi) + 6634aa47: 7f 11 jg 6634aa5a + 6634aa49: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634aa4f: 4c 89 ea mov %r13,%rdx + 6634aa52: 4c 89 e1 mov %r12,%rcx + 6634aa55: e8 b6 77 00 00 callq 66352210 <_assert> + 6634aa5a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634aa5e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634aa62: 48 01 da add %rbx,%rdx + 6634aa65: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634aa68: 8b 0a mov (%rdx),%ecx + 6634aa6a: 39 c8 cmp %ecx,%eax + 6634aa6c: 74 6c je 6634aada + 6634aa6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634aa72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634aa76: 41 89 c3 mov %eax,%r11d + 6634aa79: 41 29 cb sub %ecx,%r11d + 6634aa7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634aa80: 45 01 18 add %r11d,(%r8) + 6634aa83: 89 02 mov %eax,(%rdx) + 6634aa85: 31 d2 xor %edx,%edx + 6634aa87: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634aa8b: 45 8b 18 mov (%r8),%r11d + 6634aa8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634aa92: 45 85 db test %r11d,%r11d + 6634aa95: 0f 9f c2 setg %dl + 6634aa98: 3b 10 cmp (%rax),%edx + 6634aa9a: 74 3e je 6634aada + 6634aa9c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634aaa0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634aaa4: 44 8b 10 mov (%rax),%r10d + 6634aaa7: 45 85 d2 test %r10d,%r10d + 6634aaaa: 75 2e jne 6634aada + 6634aaac: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634aab0: 48 8b 0d 79 ce 00 00 mov 0xce79(%rip),%rcx # 66357930 + 6634aab7: 4c 8b 05 62 ce 00 00 mov 0xce62(%rip),%r8 # 66357920 + 6634aabe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634aac2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634aac6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634aacc: 48 63 01 movslq (%rcx),%rax + 6634aacf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634aad3: 44 89 09 mov %r9d,(%rcx) + 6634aad6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634aada: 48 83 c3 04 add $0x4,%rbx + 6634aade: 81 c7 00 01 00 00 add $0x100,%edi + 6634aae4: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634aaeb: 48 81 fb a4 00 00 00 cmp $0xa4,%rbx + 6634aaf2: 0f 85 48 ff ff ff jne 6634aa40 + 6634aaf8: 48 83 c4 28 add $0x28,%rsp + 6634aafc: 5b pop %rbx + 6634aafd: 5e pop %rsi + 6634aafe: 5f pop %rdi + 6634aaff: 5d pop %rbp + 6634ab00: 41 5c pop %r12 + 6634ab02: 41 5d pop %r13 + 6634ab04: c3 retq + 6634ab05: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634ab09: 4c 8b 1d 10 ce 00 00 mov 0xce10(%rip),%r11 # 66357920 + 6634ab10: 4c 8b 15 19 ce 00 00 mov 0xce19(%rip),%r10 # 66357930 + 6634ab17: 48 8d 50 24 lea 0x24(%rax),%rdx + 6634ab1b: b8 48 00 00 00 mov $0x48,%eax + 6634ab20: 8b 0a mov (%rdx),%ecx + 6634ab22: 85 c9 test %ecx,%ecx + 6634ab24: 74 55 je 6634ab7b + 6634ab26: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634ab2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ab2e: 41 29 08 sub %ecx,(%r8) + 6634ab31: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ab37: 45 8b 00 mov (%r8),%r8d + 6634ab3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634ab3e: 45 85 c0 test %r8d,%r8d + 6634ab41: 41 0f 9f c0 setg %r8b + 6634ab45: 45 0f b6 c0 movzbl %r8b,%r8d + 6634ab49: 44 3b 01 cmp (%rcx),%r8d + 6634ab4c: 74 2d je 6634ab7b + 6634ab4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634ab52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634ab56: 8b 09 mov (%rcx),%ecx + 6634ab58: 85 c9 test %ecx,%ecx + 6634ab5a: 75 1f jne 6634ab7b + 6634ab5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634ab60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634ab64: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ab68: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ab6e: 49 63 0a movslq (%r10),%rcx + 6634ab71: 8d 59 01 lea 0x1(%rcx),%ebx + 6634ab74: 41 89 1a mov %ebx,(%r10) + 6634ab77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634ab7b: 48 83 c0 08 add $0x8,%rax + 6634ab7f: 48 83 c2 04 add $0x4,%rdx + 6634ab83: 48 3d 48 01 00 00 cmp $0x148,%rax + 6634ab89: 75 95 jne 6634ab20 + 6634ab8b: 48 83 c4 28 add $0x28,%rsp + 6634ab8f: 5b pop %rbx + 6634ab90: 5e pop %rsi + 6634ab91: 5f pop %rdi + 6634ab92: 5d pop %rbp + 6634ab93: 41 5c pop %r12 + 6634ab95: 41 5d pop %r13 + 6634ab97: c3 retq + 6634ab98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634ab9f: 00 -000000006634ab20 : - 6634ab20: 41 55 push %r13 - 6634ab22: 41 54 push %r12 - 6634ab24: 55 push %rbp - 6634ab25: 57 push %rdi - 6634ab26: 56 push %rsi - 6634ab27: 53 push %rbx - 6634ab28: 48 83 ec 28 sub $0x28,%rsp - 6634ab2c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634ab30: 49 8b 81 c8 00 00 00 mov 0xc8(%r9),%rax - 6634ab37: 48 89 ce mov %rcx,%rsi - 6634ab3a: 8b 18 mov (%rax),%ebx - 6634ab3c: 85 db test %ebx,%ebx - 6634ab3e: 0f 84 2e 01 00 00 je 6634ac72 - 6634ab44: 49 8b 41 10 mov 0x10(%r9),%rax - 6634ab48: bb 24 00 00 00 mov $0x24,%ebx - 6634ab4d: 4c 8d 2d ac 94 00 00 lea 0x94ac(%rip),%r13 # 66354000 <.rdata> - 6634ab54: 4c 8d 25 b5 94 00 00 lea 0x94b5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634ab5b: 8b 10 mov (%rax),%edx - 6634ab5d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634ab61: 8b 00 mov (%rax),%eax - 6634ab63: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634ab66: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634ab6a: 8b 12 mov (%rdx),%edx - 6634ab6c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634ab6f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634ab73: 8b 12 mov (%rdx),%edx - 6634ab75: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634ab78: 49 8b 41 28 mov 0x28(%r9),%rax - 6634ab7c: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634ab80: 8b 00 mov (%rax),%eax - 6634ab82: c1 e0 04 shl $0x4,%eax - 6634ab85: 01 c7 add %eax,%edi - 6634ab87: 49 8b 41 30 mov 0x30(%r9),%rax - 6634ab8b: 8b 00 mov (%rax),%eax - 6634ab8d: c1 e0 05 shl $0x5,%eax - 6634ab90: 01 f8 add %edi,%eax - 6634ab92: 8b 3a mov (%rdx),%edi - 6634ab94: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634ab98: c1 e7 06 shl $0x6,%edi - 6634ab9b: 01 f8 add %edi,%eax - 6634ab9d: 8b 3a mov (%rdx),%edi - 6634ab9f: c1 e7 07 shl $0x7,%edi - 6634aba2: 01 c7 add %eax,%edi - 6634aba4: 48 63 ef movslq %edi,%rbp - 6634aba7: 48 c1 e5 02 shl $0x2,%rbp - 6634abab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634abb0: 85 ff test %edi,%edi - 6634abb2: 78 05 js 6634abb9 - 6634abb4: 39 7e 38 cmp %edi,0x38(%rsi) - 6634abb7: 7f 11 jg 6634abca - 6634abb9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634abbf: 4c 89 ea mov %r13,%rdx - 6634abc2: 4c 89 e1 mov %r12,%rcx - 6634abc5: e8 86 73 00 00 callq 66351f50 <_assert> - 6634abca: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634abce: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634abd2: 48 01 da add %rbx,%rdx - 6634abd5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634abd8: 8b 0a mov (%rdx),%ecx - 6634abda: 39 c8 cmp %ecx,%eax - 6634abdc: 74 6c je 6634ac4a - 6634abde: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634abe2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634abe6: 41 89 c3 mov %eax,%r11d - 6634abe9: 41 29 cb sub %ecx,%r11d - 6634abec: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634abf0: 45 01 18 add %r11d,(%r8) - 6634abf3: 89 02 mov %eax,(%rdx) - 6634abf5: 31 d2 xor %edx,%edx - 6634abf7: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634abfb: 45 8b 18 mov (%r8),%r11d - 6634abfe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634ac02: 45 85 db test %r11d,%r11d - 6634ac05: 0f 9f c2 setg %dl - 6634ac08: 3b 10 cmp (%rax),%edx - 6634ac0a: 74 3e je 6634ac4a - 6634ac0c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634ac10: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634ac14: 44 8b 10 mov (%rax),%r10d - 6634ac17: 45 85 d2 test %r10d,%r10d - 6634ac1a: 75 2e jne 6634ac4a - 6634ac1c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634ac20: 48 8b 0d 09 cd 00 00 mov 0xcd09(%rip),%rcx # 66357930 - 6634ac27: 4c 8b 05 f2 cc 00 00 mov 0xccf2(%rip),%r8 # 66357920 - 6634ac2e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634ac32: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ac36: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ac3c: 48 63 01 movslq (%rcx),%rax - 6634ac3f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ac43: 44 89 09 mov %r9d,(%rcx) - 6634ac46: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ac4a: 48 83 c3 04 add $0x4,%rbx - 6634ac4e: 81 c7 00 01 00 00 add $0x100,%edi - 6634ac54: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634ac5b: 48 83 fb 64 cmp $0x64,%rbx - 6634ac5f: 0f 85 4b ff ff ff jne 6634abb0 - 6634ac65: 48 83 c4 28 add $0x28,%rsp - 6634ac69: 5b pop %rbx - 6634ac6a: 5e pop %rsi - 6634ac6b: 5f pop %rdi - 6634ac6c: 5d pop %rbp - 6634ac6d: 41 5c pop %r12 - 6634ac6f: 41 5d pop %r13 - 6634ac71: c3 retq - 6634ac72: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634ac76: 4c 8b 1d a3 cc 00 00 mov 0xcca3(%rip),%r11 # 66357920 - 6634ac7d: 4c 8b 15 ac cc 00 00 mov 0xccac(%rip),%r10 # 66357930 - 6634ac84: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634ac88: b8 48 00 00 00 mov $0x48,%eax - 6634ac8d: 0f 1f 00 nopl (%rax) - 6634ac90: 8b 0a mov (%rdx),%ecx - 6634ac92: 85 c9 test %ecx,%ecx - 6634ac94: 74 55 je 6634aceb - 6634ac96: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ac9a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634ac9e: 41 29 08 sub %ecx,(%r8) - 6634aca1: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634aca7: 45 8b 00 mov (%r8),%r8d - 6634acaa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634acae: 45 85 c0 test %r8d,%r8d - 6634acb1: 41 0f 9f c0 setg %r8b - 6634acb5: 45 0f b6 c0 movzbl %r8b,%r8d - 6634acb9: 44 3b 01 cmp (%rcx),%r8d - 6634acbc: 74 2d je 6634aceb - 6634acbe: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634acc2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634acc6: 8b 09 mov (%rcx),%ecx - 6634acc8: 85 c9 test %ecx,%ecx - 6634acca: 75 1f jne 6634aceb - 6634accc: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634acd0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634acd4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634acd8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634acde: 49 63 0a movslq (%r10),%rcx - 6634ace1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634ace4: 41 89 1a mov %ebx,(%r10) - 6634ace7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634aceb: 48 83 c0 08 add $0x8,%rax - 6634acef: 48 83 c2 04 add $0x4,%rdx - 6634acf3: 48 3d c8 00 00 00 cmp $0xc8,%rax - 6634acf9: 75 95 jne 6634ac90 - 6634acfb: 48 83 c4 28 add $0x28,%rsp - 6634acff: 5b pop %rbx - 6634ad00: 5e pop %rsi - 6634ad01: 5f pop %rdi - 6634ad02: 5d pop %rbp - 6634ad03: 41 5c pop %r12 - 6634ad05: 41 5d pop %r13 - 6634ad07: c3 retq - 6634ad08: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634ad0f: 00 +000000006634aba0 : + 6634aba0: 41 55 push %r13 + 6634aba2: 41 54 push %r12 + 6634aba4: 55 push %rbp + 6634aba5: 57 push %rdi + 6634aba6: 56 push %rsi + 6634aba7: 53 push %rbx + 6634aba8: 48 83 ec 28 sub $0x28,%rsp + 6634abac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634abb0: 49 8b 81 50 01 00 00 mov 0x150(%r9),%rax + 6634abb7: 48 89 ce mov %rcx,%rsi + 6634abba: 8b 18 mov (%rax),%ebx + 6634abbc: 85 db test %ebx,%ebx + 6634abbe: 0f 84 41 01 00 00 je 6634ad05 + 6634abc4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634abc8: bb 28 00 00 00 mov $0x28,%ebx + 6634abcd: 4c 8d 2d 2c 94 00 00 lea 0x942c(%rip),%r13 # 66354000 <.rdata> + 6634abd4: 4c 8d 25 35 94 00 00 lea 0x9435(%rip),%r12 # 66354010 <.rdata+0x10> + 6634abdb: 8b 10 mov (%rax),%edx + 6634abdd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634abe1: 8b 00 mov (%rax),%eax + 6634abe3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634abe6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634abea: 8b 12 mov (%rdx),%edx + 6634abec: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634abef: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634abf3: 8b 12 mov (%rdx),%edx + 6634abf5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634abf8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634abfc: 8b 3a mov (%rdx),%edi + 6634abfe: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634ac02: c1 e7 04 shl $0x4,%edi + 6634ac05: 01 c7 add %eax,%edi + 6634ac07: 49 8b 41 30 mov 0x30(%r9),%rax + 6634ac0b: 8b 00 mov (%rax),%eax + 6634ac0d: c1 e0 05 shl $0x5,%eax + 6634ac10: 01 c7 add %eax,%edi + 6634ac12: 49 8b 41 38 mov 0x38(%r9),%rax + 6634ac16: 8b 00 mov (%rax),%eax + 6634ac18: c1 e0 06 shl $0x6,%eax + 6634ac1b: 01 f8 add %edi,%eax + 6634ac1d: 8b 3a mov (%rdx),%edi + 6634ac1f: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634ac23: c1 e7 07 shl $0x7,%edi + 6634ac26: 01 f8 add %edi,%eax + 6634ac28: 8b 3a mov (%rdx),%edi + 6634ac2a: c1 e7 08 shl $0x8,%edi + 6634ac2d: 01 c7 add %eax,%edi + 6634ac2f: 48 63 ef movslq %edi,%rbp + 6634ac32: 48 c1 e5 02 shl $0x2,%rbp + 6634ac36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ac3d: 00 00 00 + 6634ac40: 85 ff test %edi,%edi + 6634ac42: 78 05 js 6634ac49 + 6634ac44: 39 7e 38 cmp %edi,0x38(%rsi) + 6634ac47: 7f 11 jg 6634ac5a + 6634ac49: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ac4f: 4c 89 ea mov %r13,%rdx + 6634ac52: 4c 89 e1 mov %r12,%rcx + 6634ac55: e8 b6 75 00 00 callq 66352210 <_assert> + 6634ac5a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634ac5e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634ac62: 48 01 da add %rbx,%rdx + 6634ac65: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634ac68: 8b 0a mov (%rdx),%ecx + 6634ac6a: 39 c8 cmp %ecx,%eax + 6634ac6c: 74 6c je 6634acda + 6634ac6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634ac72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634ac76: 41 89 c3 mov %eax,%r11d + 6634ac79: 41 29 cb sub %ecx,%r11d + 6634ac7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634ac80: 45 01 18 add %r11d,(%r8) + 6634ac83: 89 02 mov %eax,(%rdx) + 6634ac85: 31 d2 xor %edx,%edx + 6634ac87: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634ac8b: 45 8b 18 mov (%r8),%r11d + 6634ac8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634ac92: 45 85 db test %r11d,%r11d + 6634ac95: 0f 9f c2 setg %dl + 6634ac98: 3b 10 cmp (%rax),%edx + 6634ac9a: 74 3e je 6634acda + 6634ac9c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634aca0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634aca4: 44 8b 10 mov (%rax),%r10d + 6634aca7: 45 85 d2 test %r10d,%r10d + 6634acaa: 75 2e jne 6634acda + 6634acac: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634acb0: 48 8b 0d 79 cc 00 00 mov 0xcc79(%rip),%rcx # 66357930 + 6634acb7: 4c 8b 05 62 cc 00 00 mov 0xcc62(%rip),%r8 # 66357920 + 6634acbe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634acc2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634acc6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634accc: 48 63 01 movslq (%rcx),%rax + 6634accf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634acd3: 44 89 09 mov %r9d,(%rcx) + 6634acd6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634acda: 48 83 c3 04 add $0x4,%rbx + 6634acde: 81 c7 00 02 00 00 add $0x200,%edi + 6634ace4: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634aceb: 48 81 fb a8 00 00 00 cmp $0xa8,%rbx + 6634acf2: 0f 85 48 ff ff ff jne 6634ac40 + 6634acf8: 48 83 c4 28 add $0x28,%rsp + 6634acfc: 5b pop %rbx + 6634acfd: 5e pop %rsi + 6634acfe: 5f pop %rdi + 6634acff: 5d pop %rbp + 6634ad00: 41 5c pop %r12 + 6634ad02: 41 5d pop %r13 + 6634ad04: c3 retq + 6634ad05: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634ad09: 4c 8b 1d 10 cc 00 00 mov 0xcc10(%rip),%r11 # 66357920 + 6634ad10: 4c 8b 15 19 cc 00 00 mov 0xcc19(%rip),%r10 # 66357930 + 6634ad17: 48 8d 50 28 lea 0x28(%rax),%rdx + 6634ad1b: b8 50 00 00 00 mov $0x50,%eax + 6634ad20: 8b 0a mov (%rdx),%ecx + 6634ad22: 85 c9 test %ecx,%ecx + 6634ad24: 74 55 je 6634ad7b + 6634ad26: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634ad2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ad2e: 41 29 08 sub %ecx,(%r8) + 6634ad31: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ad37: 45 8b 00 mov (%r8),%r8d + 6634ad3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634ad3e: 45 85 c0 test %r8d,%r8d + 6634ad41: 41 0f 9f c0 setg %r8b + 6634ad45: 45 0f b6 c0 movzbl %r8b,%r8d + 6634ad49: 44 3b 01 cmp (%rcx),%r8d + 6634ad4c: 74 2d je 6634ad7b + 6634ad4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634ad52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634ad56: 8b 09 mov (%rcx),%ecx + 6634ad58: 85 c9 test %ecx,%ecx + 6634ad5a: 75 1f jne 6634ad7b + 6634ad5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634ad60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634ad64: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ad68: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ad6e: 49 63 0a movslq (%r10),%rcx + 6634ad71: 8d 59 01 lea 0x1(%rcx),%ebx + 6634ad74: 41 89 1a mov %ebx,(%r10) + 6634ad77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634ad7b: 48 83 c0 08 add $0x8,%rax + 6634ad7f: 48 83 c2 04 add $0x4,%rdx + 6634ad83: 48 3d 50 01 00 00 cmp $0x150,%rax + 6634ad89: 75 95 jne 6634ad20 + 6634ad8b: 48 83 c4 28 add $0x28,%rsp + 6634ad8f: 5b pop %rbx + 6634ad90: 5e pop %rsi + 6634ad91: 5f pop %rdi + 6634ad92: 5d pop %rbp + 6634ad93: 41 5c pop %r12 + 6634ad95: 41 5d pop %r13 + 6634ad97: c3 retq + 6634ad98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634ad9f: 00 -000000006634ad10 : - 6634ad10: 41 55 push %r13 - 6634ad12: 41 54 push %r12 - 6634ad14: 55 push %rbp - 6634ad15: 57 push %rdi - 6634ad16: 56 push %rsi - 6634ad17: 53 push %rbx - 6634ad18: 48 83 ec 28 sub $0x28,%rsp - 6634ad1c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634ad20: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 6634ad27: 48 89 ce mov %rcx,%rsi - 6634ad2a: 8b 18 mov (%rax),%ebx - 6634ad2c: 85 db test %ebx,%ebx - 6634ad2e: 0f 84 10 01 00 00 je 6634ae44 - 6634ad34: 49 8b 41 10 mov 0x10(%r9),%rax - 6634ad38: bb 1c 00 00 00 mov $0x1c,%ebx - 6634ad3d: 4c 8d 2d bc 92 00 00 lea 0x92bc(%rip),%r13 # 66354000 <.rdata> - 6634ad44: 4c 8d 25 c5 92 00 00 lea 0x92c5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634ad4b: 8b 10 mov (%rax),%edx - 6634ad4d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634ad51: 8b 00 mov (%rax),%eax - 6634ad53: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634ad56: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634ad5a: 8b 12 mov (%rdx),%edx - 6634ad5c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634ad5f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634ad63: 8b 12 mov (%rdx),%edx - 6634ad65: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634ad68: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634ad6c: 8b 3a mov (%rdx),%edi - 6634ad6e: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634ad72: c1 e7 04 shl $0x4,%edi - 6634ad75: 01 f8 add %edi,%eax - 6634ad77: 8b 3a mov (%rdx),%edi - 6634ad79: c1 e7 05 shl $0x5,%edi - 6634ad7c: 01 c7 add %eax,%edi - 6634ad7e: 48 63 ef movslq %edi,%rbp - 6634ad81: 48 c1 e5 02 shl $0x2,%rbp - 6634ad85: 85 ff test %edi,%edi - 6634ad87: 78 05 js 6634ad8e - 6634ad89: 39 7e 38 cmp %edi,0x38(%rsi) - 6634ad8c: 7f 11 jg 6634ad9f - 6634ad8e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ad94: 4c 89 ea mov %r13,%rdx - 6634ad97: 4c 89 e1 mov %r12,%rcx - 6634ad9a: e8 b1 71 00 00 callq 66351f50 <_assert> - 6634ad9f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634ada3: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634ada7: 48 01 da add %rbx,%rdx - 6634adaa: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634adad: 8b 0a mov (%rdx),%ecx - 6634adaf: 39 c8 cmp %ecx,%eax - 6634adb1: 74 6c je 6634ae1f - 6634adb3: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634adb7: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634adbb: 41 89 c3 mov %eax,%r11d - 6634adbe: 41 29 cb sub %ecx,%r11d - 6634adc1: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634adc5: 45 01 18 add %r11d,(%r8) - 6634adc8: 89 02 mov %eax,(%rdx) - 6634adca: 31 d2 xor %edx,%edx - 6634adcc: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634add0: 45 8b 18 mov (%r8),%r11d - 6634add3: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634add7: 45 85 db test %r11d,%r11d - 6634adda: 0f 9f c2 setg %dl - 6634addd: 3b 10 cmp (%rax),%edx - 6634addf: 74 3e je 6634ae1f - 6634ade1: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634ade5: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634ade9: 44 8b 10 mov (%rax),%r10d - 6634adec: 45 85 d2 test %r10d,%r10d - 6634adef: 75 2e jne 6634ae1f - 6634adf1: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634adf5: 48 8b 0d 34 cb 00 00 mov 0xcb34(%rip),%rcx # 66357930 - 6634adfc: 4c 8b 05 1d cb 00 00 mov 0xcb1d(%rip),%r8 # 66357920 - 6634ae03: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634ae07: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ae0b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ae11: 48 63 01 movslq (%rcx),%rax - 6634ae14: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ae18: 44 89 09 mov %r9d,(%rcx) - 6634ae1b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ae1f: 48 83 c3 04 add $0x4,%rbx - 6634ae23: 83 c7 40 add $0x40,%edi - 6634ae26: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634ae2d: 48 83 fb 5c cmp $0x5c,%rbx - 6634ae31: 0f 85 4e ff ff ff jne 6634ad85 - 6634ae37: 48 83 c4 28 add $0x28,%rsp - 6634ae3b: 5b pop %rbx - 6634ae3c: 5e pop %rsi - 6634ae3d: 5f pop %rdi - 6634ae3e: 5d pop %rbp - 6634ae3f: 41 5c pop %r12 - 6634ae41: 41 5d pop %r13 - 6634ae43: c3 retq - 6634ae44: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634ae48: 4c 8b 1d d1 ca 00 00 mov 0xcad1(%rip),%r11 # 66357920 - 6634ae4f: 4c 8b 15 da ca 00 00 mov 0xcada(%rip),%r10 # 66357930 - 6634ae56: 48 8d 50 1c lea 0x1c(%rax),%rdx - 6634ae5a: b8 38 00 00 00 mov $0x38,%eax - 6634ae5f: 90 nop - 6634ae60: 8b 0a mov (%rdx),%ecx - 6634ae62: 85 c9 test %ecx,%ecx - 6634ae64: 74 55 je 6634aebb - 6634ae66: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ae6a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634ae6e: 41 29 08 sub %ecx,(%r8) - 6634ae71: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634ae77: 45 8b 00 mov (%r8),%r8d - 6634ae7a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634ae7e: 45 85 c0 test %r8d,%r8d - 6634ae81: 41 0f 9f c0 setg %r8b - 6634ae85: 45 0f b6 c0 movzbl %r8b,%r8d - 6634ae89: 44 3b 01 cmp (%rcx),%r8d - 6634ae8c: 74 2d je 6634aebb - 6634ae8e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634ae92: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634ae96: 8b 09 mov (%rcx),%ecx - 6634ae98: 85 c9 test %ecx,%ecx - 6634ae9a: 75 1f jne 6634aebb - 6634ae9c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634aea0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634aea4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634aea8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634aeae: 49 63 0a movslq (%r10),%rcx - 6634aeb1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634aeb4: 41 89 1a mov %ebx,(%r10) - 6634aeb7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634aebb: 48 83 c0 08 add $0x8,%rax - 6634aebf: 48 83 c2 04 add $0x4,%rdx - 6634aec3: 48 3d b8 00 00 00 cmp $0xb8,%rax - 6634aec9: 75 95 jne 6634ae60 - 6634aecb: 48 83 c4 28 add $0x28,%rsp - 6634aecf: 5b pop %rbx - 6634aed0: 5e pop %rsi - 6634aed1: 5f pop %rdi - 6634aed2: 5d pop %rbp - 6634aed3: 41 5c pop %r12 - 6634aed5: 41 5d pop %r13 - 6634aed7: c3 retq - 6634aed8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634aedf: 00 +000000006634ada0 : + 6634ada0: 41 55 push %r13 + 6634ada2: 41 54 push %r12 + 6634ada4: 55 push %rbp + 6634ada5: 57 push %rdi + 6634ada6: 56 push %rsi + 6634ada7: 53 push %rbx + 6634ada8: 48 83 ec 28 sub $0x28,%rsp + 6634adac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634adb0: 49 8b 81 60 01 00 00 mov 0x160(%r9),%rax + 6634adb7: 48 89 ce mov %rcx,%rsi + 6634adba: 8b 18 mov (%rax),%ebx + 6634adbc: 85 db test %ebx,%ebx + 6634adbe: 0f 84 51 01 00 00 je 6634af15 + 6634adc4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634adc8: bb 30 00 00 00 mov $0x30,%ebx + 6634adcd: 4c 8d 2d 2c 92 00 00 lea 0x922c(%rip),%r13 # 66354000 <.rdata> + 6634add4: 4c 8d 25 35 92 00 00 lea 0x9235(%rip),%r12 # 66354010 <.rdata+0x10> + 6634addb: 8b 10 mov (%rax),%edx + 6634addd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634ade1: 8b 00 mov (%rax),%eax + 6634ade3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634ade6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634adea: 8b 12 mov (%rdx),%edx + 6634adec: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634adef: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634adf3: 8b 12 mov (%rdx),%edx + 6634adf5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634adf8: 49 8b 41 28 mov 0x28(%r9),%rax + 6634adfc: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634ae00: 8b 00 mov (%rax),%eax + 6634ae02: c1 e0 04 shl $0x4,%eax + 6634ae05: 01 f8 add %edi,%eax + 6634ae07: 8b 3a mov (%rdx),%edi + 6634ae09: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634ae0d: c1 e7 05 shl $0x5,%edi + 6634ae10: 01 f8 add %edi,%eax + 6634ae12: 8b 3a mov (%rdx),%edi + 6634ae14: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634ae18: c1 e7 06 shl $0x6,%edi + 6634ae1b: 01 c7 add %eax,%edi + 6634ae1d: 49 8b 41 40 mov 0x40(%r9),%rax + 6634ae21: 8b 00 mov (%rax),%eax + 6634ae23: c1 e0 07 shl $0x7,%eax + 6634ae26: 01 c7 add %eax,%edi + 6634ae28: 49 8b 41 48 mov 0x48(%r9),%rax + 6634ae2c: 8b 00 mov (%rax),%eax + 6634ae2e: c1 e0 08 shl $0x8,%eax + 6634ae31: 01 f8 add %edi,%eax + 6634ae33: 8b 3a mov (%rdx),%edi + 6634ae35: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634ae39: c1 e7 09 shl $0x9,%edi + 6634ae3c: 01 f8 add %edi,%eax + 6634ae3e: 8b 3a mov (%rdx),%edi + 6634ae40: c1 e7 0a shl $0xa,%edi + 6634ae43: 01 c7 add %eax,%edi + 6634ae45: 48 63 ef movslq %edi,%rbp + 6634ae48: 48 c1 e5 02 shl $0x2,%rbp + 6634ae4c: 0f 1f 40 00 nopl 0x0(%rax) + 6634ae50: 85 ff test %edi,%edi + 6634ae52: 78 05 js 6634ae59 + 6634ae54: 39 7e 38 cmp %edi,0x38(%rsi) + 6634ae57: 7f 11 jg 6634ae6a + 6634ae59: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ae5f: 4c 89 ea mov %r13,%rdx + 6634ae62: 4c 89 e1 mov %r12,%rcx + 6634ae65: e8 a6 73 00 00 callq 66352210 <_assert> + 6634ae6a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634ae6e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634ae72: 48 01 da add %rbx,%rdx + 6634ae75: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634ae78: 8b 0a mov (%rdx),%ecx + 6634ae7a: 39 c8 cmp %ecx,%eax + 6634ae7c: 74 6c je 6634aeea + 6634ae7e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634ae82: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634ae86: 41 89 c3 mov %eax,%r11d + 6634ae89: 41 29 cb sub %ecx,%r11d + 6634ae8c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634ae90: 45 01 18 add %r11d,(%r8) + 6634ae93: 89 02 mov %eax,(%rdx) + 6634ae95: 31 d2 xor %edx,%edx + 6634ae97: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634ae9b: 45 8b 18 mov (%r8),%r11d + 6634ae9e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634aea2: 45 85 db test %r11d,%r11d + 6634aea5: 0f 9f c2 setg %dl + 6634aea8: 3b 10 cmp (%rax),%edx + 6634aeaa: 74 3e je 6634aeea + 6634aeac: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634aeb0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634aeb4: 44 8b 10 mov (%rax),%r10d + 6634aeb7: 45 85 d2 test %r10d,%r10d + 6634aeba: 75 2e jne 6634aeea + 6634aebc: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634aec0: 48 8b 0d 69 ca 00 00 mov 0xca69(%rip),%rcx # 66357930 + 6634aec7: 4c 8b 05 52 ca 00 00 mov 0xca52(%rip),%r8 # 66357920 + 6634aece: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634aed2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634aed6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634aedc: 48 63 01 movslq (%rcx),%rax + 6634aedf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634aee3: 44 89 09 mov %r9d,(%rcx) + 6634aee6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634aeea: 48 83 c3 04 add $0x4,%rbx + 6634aeee: 81 c7 00 08 00 00 add $0x800,%edi + 6634aef4: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634aefb: 48 81 fb b0 00 00 00 cmp $0xb0,%rbx + 6634af02: 0f 85 48 ff ff ff jne 6634ae50 + 6634af08: 48 83 c4 28 add $0x28,%rsp + 6634af0c: 5b pop %rbx + 6634af0d: 5e pop %rsi + 6634af0e: 5f pop %rdi + 6634af0f: 5d pop %rbp + 6634af10: 41 5c pop %r12 + 6634af12: 41 5d pop %r13 + 6634af14: c3 retq + 6634af15: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634af19: 4c 8b 1d 00 ca 00 00 mov 0xca00(%rip),%r11 # 66357920 + 6634af20: 4c 8b 15 09 ca 00 00 mov 0xca09(%rip),%r10 # 66357930 + 6634af27: 48 8d 50 30 lea 0x30(%rax),%rdx + 6634af2b: b8 60 00 00 00 mov $0x60,%eax + 6634af30: 8b 0a mov (%rdx),%ecx + 6634af32: 85 c9 test %ecx,%ecx + 6634af34: 74 55 je 6634af8b + 6634af36: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634af3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634af3e: 41 29 08 sub %ecx,(%r8) + 6634af41: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634af47: 45 8b 00 mov (%r8),%r8d + 6634af4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634af4e: 45 85 c0 test %r8d,%r8d + 6634af51: 41 0f 9f c0 setg %r8b + 6634af55: 45 0f b6 c0 movzbl %r8b,%r8d + 6634af59: 44 3b 01 cmp (%rcx),%r8d + 6634af5c: 74 2d je 6634af8b + 6634af5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634af62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634af66: 8b 09 mov (%rcx),%ecx + 6634af68: 85 c9 test %ecx,%ecx + 6634af6a: 75 1f jne 6634af8b + 6634af6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634af70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634af74: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634af78: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634af7e: 49 63 0a movslq (%r10),%rcx + 6634af81: 8d 59 01 lea 0x1(%rcx),%ebx + 6634af84: 41 89 1a mov %ebx,(%r10) + 6634af87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634af8b: 48 83 c0 08 add $0x8,%rax + 6634af8f: 48 83 c2 04 add $0x4,%rdx + 6634af93: 48 3d 60 01 00 00 cmp $0x160,%rax + 6634af99: 75 95 jne 6634af30 + 6634af9b: 48 83 c4 28 add $0x28,%rsp + 6634af9f: 5b pop %rbx + 6634afa0: 5e pop %rsi + 6634afa1: 5f pop %rdi + 6634afa2: 5d pop %rbp + 6634afa3: 41 5c pop %r12 + 6634afa5: 41 5d pop %r13 + 6634afa7: c3 retq + 6634afa8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634afaf: 00 -000000006634aee0 : - 6634aee0: 41 55 push %r13 - 6634aee2: 41 54 push %r12 - 6634aee4: 55 push %rbp - 6634aee5: 57 push %rdi - 6634aee6: 56 push %rsi - 6634aee7: 53 push %rbx - 6634aee8: 48 83 ec 28 sub $0x28,%rsp - 6634aeec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634aef0: 49 8b 81 d8 00 00 00 mov 0xd8(%r9),%rax - 6634aef7: 48 89 ce mov %rcx,%rsi - 6634aefa: 8b 18 mov (%rax),%ebx - 6634aefc: 85 db test %ebx,%ebx - 6634aefe: 0f 84 3f 01 00 00 je 6634b043 - 6634af04: 49 8b 41 10 mov 0x10(%r9),%rax - 6634af08: bb 2c 00 00 00 mov $0x2c,%ebx - 6634af0d: 4c 8d 2d ec 90 00 00 lea 0x90ec(%rip),%r13 # 66354000 <.rdata> - 6634af14: 4c 8d 25 f5 90 00 00 lea 0x90f5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634af1b: 8b 10 mov (%rax),%edx - 6634af1d: 49 8b 41 08 mov 0x8(%r9),%rax - 6634af21: 8b 00 mov (%rax),%eax - 6634af23: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634af26: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634af2a: 8b 12 mov (%rdx),%edx - 6634af2c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634af2f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634af33: 8b 12 mov (%rdx),%edx - 6634af35: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634af38: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634af3c: 8b 3a mov (%rdx),%edi - 6634af3e: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634af42: c1 e7 04 shl $0x4,%edi - 6634af45: 01 f8 add %edi,%eax - 6634af47: 8b 3a mov (%rdx),%edi - 6634af49: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634af4d: c1 e7 05 shl $0x5,%edi - 6634af50: 01 c7 add %eax,%edi - 6634af52: 49 8b 41 38 mov 0x38(%r9),%rax - 6634af56: 8b 00 mov (%rax),%eax - 6634af58: c1 e0 06 shl $0x6,%eax - 6634af5b: 01 c7 add %eax,%edi - 6634af5d: 49 8b 41 40 mov 0x40(%r9),%rax - 6634af61: 8b 00 mov (%rax),%eax - 6634af63: c1 e0 07 shl $0x7,%eax - 6634af66: 01 f8 add %edi,%eax - 6634af68: 8b 3a mov (%rdx),%edi - 6634af6a: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634af6e: c1 e7 08 shl $0x8,%edi - 6634af71: 01 f8 add %edi,%eax - 6634af73: 8b 3a mov (%rdx),%edi - 6634af75: c1 e7 09 shl $0x9,%edi - 6634af78: 01 c7 add %eax,%edi - 6634af7a: 48 63 ef movslq %edi,%rbp - 6634af7d: 48 c1 e5 02 shl $0x2,%rbp - 6634af81: 85 ff test %edi,%edi - 6634af83: 78 05 js 6634af8a - 6634af85: 39 7e 38 cmp %edi,0x38(%rsi) - 6634af88: 7f 11 jg 6634af9b - 6634af8a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634af90: 4c 89 ea mov %r13,%rdx - 6634af93: 4c 89 e1 mov %r12,%rcx - 6634af96: e8 b5 6f 00 00 callq 66351f50 <_assert> - 6634af9b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634af9f: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634afa3: 48 01 da add %rbx,%rdx - 6634afa6: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634afa9: 8b 0a mov (%rdx),%ecx - 6634afab: 39 c8 cmp %ecx,%eax - 6634afad: 74 6c je 6634b01b - 6634afaf: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634afb3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634afb7: 41 89 c3 mov %eax,%r11d - 6634afba: 41 29 cb sub %ecx,%r11d - 6634afbd: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634afc1: 45 01 18 add %r11d,(%r8) - 6634afc4: 89 02 mov %eax,(%rdx) - 6634afc6: 31 d2 xor %edx,%edx - 6634afc8: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634afcc: 45 8b 18 mov (%r8),%r11d - 6634afcf: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634afd3: 45 85 db test %r11d,%r11d - 6634afd6: 0f 9f c2 setg %dl - 6634afd9: 3b 10 cmp (%rax),%edx - 6634afdb: 74 3e je 6634b01b - 6634afdd: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634afe1: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634afe5: 44 8b 10 mov (%rax),%r10d - 6634afe8: 45 85 d2 test %r10d,%r10d - 6634afeb: 75 2e jne 6634b01b - 6634afed: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634aff1: 48 8b 0d 38 c9 00 00 mov 0xc938(%rip),%rcx # 66357930 - 6634aff8: 4c 8b 05 21 c9 00 00 mov 0xc921(%rip),%r8 # 66357920 - 6634afff: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b003: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b007: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b00d: 48 63 01 movslq (%rcx),%rax - 6634b010: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b014: 44 89 09 mov %r9d,(%rcx) - 6634b017: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b01b: 48 83 c3 04 add $0x4,%rbx - 6634b01f: 81 c7 00 04 00 00 add $0x400,%edi - 6634b025: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634b02c: 48 83 fb 6c cmp $0x6c,%rbx - 6634b030: 0f 85 4b ff ff ff jne 6634af81 - 6634b036: 48 83 c4 28 add $0x28,%rsp - 6634b03a: 5b pop %rbx - 6634b03b: 5e pop %rsi - 6634b03c: 5f pop %rdi - 6634b03d: 5d pop %rbp - 6634b03e: 41 5c pop %r12 - 6634b040: 41 5d pop %r13 - 6634b042: c3 retq - 6634b043: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b047: 4c 8b 1d d2 c8 00 00 mov 0xc8d2(%rip),%r11 # 66357920 - 6634b04e: 4c 8b 15 db c8 00 00 mov 0xc8db(%rip),%r10 # 66357930 - 6634b055: 48 8d 50 2c lea 0x2c(%rax),%rdx - 6634b059: b8 58 00 00 00 mov $0x58,%eax - 6634b05e: 66 90 xchg %ax,%ax - 6634b060: 8b 0a mov (%rdx),%ecx - 6634b062: 85 c9 test %ecx,%ecx - 6634b064: 74 55 je 6634b0bb - 6634b066: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b06a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b06e: 41 29 08 sub %ecx,(%r8) - 6634b071: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b077: 45 8b 00 mov (%r8),%r8d - 6634b07a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b07e: 45 85 c0 test %r8d,%r8d - 6634b081: 41 0f 9f c0 setg %r8b - 6634b085: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b089: 44 3b 01 cmp (%rcx),%r8d - 6634b08c: 74 2d je 6634b0bb - 6634b08e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b092: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b096: 8b 09 mov (%rcx),%ecx - 6634b098: 85 c9 test %ecx,%ecx - 6634b09a: 75 1f jne 6634b0bb - 6634b09c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b0a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b0a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b0a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b0ae: 49 63 0a movslq (%r10),%rcx - 6634b0b1: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b0b4: 41 89 1a mov %ebx,(%r10) - 6634b0b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b0bb: 48 83 c0 08 add $0x8,%rax - 6634b0bf: 48 83 c2 04 add $0x4,%rdx - 6634b0c3: 48 3d d8 00 00 00 cmp $0xd8,%rax - 6634b0c9: 75 95 jne 6634b060 - 6634b0cb: 48 83 c4 28 add $0x28,%rsp - 6634b0cf: 5b pop %rbx - 6634b0d0: 5e pop %rsi - 6634b0d1: 5f pop %rdi - 6634b0d2: 5d pop %rbp - 6634b0d3: 41 5c pop %r12 - 6634b0d5: 41 5d pop %r13 - 6634b0d7: c3 retq - 6634b0d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b0df: 00 +000000006634afb0 : + 6634afb0: 41 55 push %r13 + 6634afb2: 41 54 push %r12 + 6634afb4: 55 push %rbp + 6634afb5: 57 push %rdi + 6634afb6: 56 push %rsi + 6634afb7: 53 push %rbx + 6634afb8: 48 83 ec 28 sub $0x28,%rsp + 6634afbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634afc0: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 6634afc7: 48 89 ce mov %rcx,%rsi + 6634afca: 8b 18 mov (%rax),%ebx + 6634afcc: 85 db test %ebx,%ebx + 6634afce: 0f 84 10 01 00 00 je 6634b0e4 + 6634afd4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634afd8: bb 1c 00 00 00 mov $0x1c,%ebx + 6634afdd: 4c 8d 2d 1c 90 00 00 lea 0x901c(%rip),%r13 # 66354000 <.rdata> + 6634afe4: 4c 8d 25 25 90 00 00 lea 0x9025(%rip),%r12 # 66354010 <.rdata+0x10> + 6634afeb: 8b 10 mov (%rax),%edx + 6634afed: 49 8b 41 08 mov 0x8(%r9),%rax + 6634aff1: 8b 00 mov (%rax),%eax + 6634aff3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634aff6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634affa: 8b 12 mov (%rdx),%edx + 6634affc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634afff: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b003: 8b 12 mov (%rdx),%edx + 6634b005: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634b008: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634b00c: 8b 3a mov (%rdx),%edi + 6634b00e: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634b012: c1 e7 04 shl $0x4,%edi + 6634b015: 01 f8 add %edi,%eax + 6634b017: 8b 3a mov (%rdx),%edi + 6634b019: c1 e7 05 shl $0x5,%edi + 6634b01c: 01 c7 add %eax,%edi + 6634b01e: 48 63 ef movslq %edi,%rbp + 6634b021: 48 c1 e5 02 shl $0x2,%rbp + 6634b025: 85 ff test %edi,%edi + 6634b027: 78 05 js 6634b02e + 6634b029: 39 7e 38 cmp %edi,0x38(%rsi) + 6634b02c: 7f 11 jg 6634b03f + 6634b02e: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b034: 4c 89 ea mov %r13,%rdx + 6634b037: 4c 89 e1 mov %r12,%rcx + 6634b03a: e8 d1 71 00 00 callq 66352210 <_assert> + 6634b03f: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634b043: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634b047: 48 01 da add %rbx,%rdx + 6634b04a: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634b04d: 8b 0a mov (%rdx),%ecx + 6634b04f: 39 c8 cmp %ecx,%eax + 6634b051: 74 6c je 6634b0bf + 6634b053: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b057: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634b05b: 41 89 c3 mov %eax,%r11d + 6634b05e: 41 29 cb sub %ecx,%r11d + 6634b061: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634b065: 45 01 18 add %r11d,(%r8) + 6634b068: 89 02 mov %eax,(%rdx) + 6634b06a: 31 d2 xor %edx,%edx + 6634b06c: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634b070: 45 8b 18 mov (%r8),%r11d + 6634b073: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b077: 45 85 db test %r11d,%r11d + 6634b07a: 0f 9f c2 setg %dl + 6634b07d: 3b 10 cmp (%rax),%edx + 6634b07f: 74 3e je 6634b0bf + 6634b081: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634b085: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b089: 44 8b 10 mov (%rax),%r10d + 6634b08c: 45 85 d2 test %r10d,%r10d + 6634b08f: 75 2e jne 6634b0bf + 6634b091: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634b095: 48 8b 0d 94 c8 00 00 mov 0xc894(%rip),%rcx # 66357930 + 6634b09c: 4c 8b 05 7d c8 00 00 mov 0xc87d(%rip),%r8 # 66357920 + 6634b0a3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634b0a7: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b0ab: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b0b1: 48 63 01 movslq (%rcx),%rax + 6634b0b4: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b0b8: 44 89 09 mov %r9d,(%rcx) + 6634b0bb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b0bf: 48 83 c3 04 add $0x4,%rbx + 6634b0c3: 83 c7 40 add $0x40,%edi + 6634b0c6: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634b0cd: 48 83 fb 5c cmp $0x5c,%rbx + 6634b0d1: 0f 85 4e ff ff ff jne 6634b025 + 6634b0d7: 48 83 c4 28 add $0x28,%rsp + 6634b0db: 5b pop %rbx + 6634b0dc: 5e pop %rsi + 6634b0dd: 5f pop %rdi + 6634b0de: 5d pop %rbp + 6634b0df: 41 5c pop %r12 + 6634b0e1: 41 5d pop %r13 + 6634b0e3: c3 retq + 6634b0e4: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634b0e8: 4c 8b 1d 31 c8 00 00 mov 0xc831(%rip),%r11 # 66357920 + 6634b0ef: 4c 8b 15 3a c8 00 00 mov 0xc83a(%rip),%r10 # 66357930 + 6634b0f6: 48 8d 50 1c lea 0x1c(%rax),%rdx + 6634b0fa: b8 38 00 00 00 mov $0x38,%eax + 6634b0ff: 90 nop + 6634b100: 8b 0a mov (%rdx),%ecx + 6634b102: 85 c9 test %ecx,%ecx + 6634b104: 74 55 je 6634b15b + 6634b106: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b10a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634b10e: 41 29 08 sub %ecx,(%r8) + 6634b111: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634b117: 45 8b 00 mov (%r8),%r8d + 6634b11a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634b11e: 45 85 c0 test %r8d,%r8d + 6634b121: 41 0f 9f c0 setg %r8b + 6634b125: 45 0f b6 c0 movzbl %r8b,%r8d + 6634b129: 44 3b 01 cmp (%rcx),%r8d + 6634b12c: 74 2d je 6634b15b + 6634b12e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634b132: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634b136: 8b 09 mov (%rcx),%ecx + 6634b138: 85 c9 test %ecx,%ecx + 6634b13a: 75 1f jne 6634b15b + 6634b13c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634b140: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634b144: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b148: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b14e: 49 63 0a movslq (%r10),%rcx + 6634b151: 8d 59 01 lea 0x1(%rcx),%ebx + 6634b154: 41 89 1a mov %ebx,(%r10) + 6634b157: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634b15b: 48 83 c0 08 add $0x8,%rax + 6634b15f: 48 83 c2 04 add $0x4,%rdx + 6634b163: 48 3d b8 00 00 00 cmp $0xb8,%rax + 6634b169: 75 95 jne 6634b100 + 6634b16b: 48 83 c4 28 add $0x28,%rsp + 6634b16f: 5b pop %rbx + 6634b170: 5e pop %rsi + 6634b171: 5f pop %rdi + 6634b172: 5d pop %rbp + 6634b173: 41 5c pop %r12 + 6634b175: 41 5d pop %r13 + 6634b177: c3 retq + 6634b178: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634b17f: 00 -000000006634b0e0 : - 6634b0e0: 56 push %rsi - 6634b0e1: 53 push %rbx - 6634b0e2: 4c 8b 15 37 c8 00 00 mov 0xc837(%rip),%r10 # 66357920 - 6634b0e9: 4c 8b 0d 40 c8 00 00 mov 0xc840(%rip),%r9 # 66357930 - 6634b0f0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634b0f4: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634b0f8: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634b0fc: 45 8b 18 mov (%r8),%r11d - 6634b0ff: 45 85 db test %r11d,%r11d - 6634b102: 0f 84 d8 00 00 00 je 6634b1e0 - 6634b108: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634b10c: 44 8b 5a 0c mov 0xc(%rdx),%r11d - 6634b110: 45 8b 00 mov (%r8),%r8d - 6634b113: 45 39 c3 cmp %r8d,%r11d - 6634b116: 74 5a je 6634b172 - 6634b118: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634b11c: 44 89 c6 mov %r8d,%esi - 6634b11f: 44 29 de sub %r11d,%esi - 6634b122: 45 31 db xor %r11d,%r11d - 6634b125: 48 8b 5b 18 mov 0x18(%rbx),%rbx - 6634b129: 01 33 add %esi,(%rbx) - 6634b12b: 44 89 42 0c mov %r8d,0xc(%rdx) - 6634b12f: 44 8b 03 mov (%rbx),%r8d - 6634b132: 45 85 c0 test %r8d,%r8d - 6634b135: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634b139: 41 0f 9f c3 setg %r11b - 6634b13d: 45 3b 18 cmp (%r8),%r11d - 6634b140: 74 30 je 6634b172 - 6634b142: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634b146: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634b14a: 41 8b 30 mov (%r8),%esi - 6634b14d: 85 f6 test %esi,%esi - 6634b14f: 75 21 jne 6634b172 - 6634b151: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634b155: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634b159: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634b15d: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634b164: 4d 63 01 movslq (%r9),%r8 - 6634b167: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634b16b: 41 89 19 mov %ebx,(%r9) - 6634b16e: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634b172: 4c 8b 40 10 mov 0x10(%rax),%r8 - 6634b176: 44 8b 5a 10 mov 0x10(%rdx),%r11d - 6634b17a: 45 8b 00 mov (%r8),%r8d - 6634b17d: 45 39 d8 cmp %r11d,%r8d - 6634b180: 74 53 je 6634b1d5 - 6634b182: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634b186: 44 89 c6 mov %r8d,%esi - 6634b189: 44 29 de sub %r11d,%esi - 6634b18c: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 6634b190: 01 33 add %esi,(%rbx) - 6634b192: 44 89 42 10 mov %r8d,0x10(%rdx) - 6634b196: 8b 1b mov (%rbx),%ebx - 6634b198: 85 db test %ebx,%ebx - 6634b19a: 48 8b 40 20 mov 0x20(%rax),%rax - 6634b19e: 0f 9f c2 setg %dl - 6634b1a1: 0f b6 d2 movzbl %dl,%edx - 6634b1a4: 3b 10 cmp (%rax),%edx - 6634b1a6: 74 2d je 6634b1d5 - 6634b1a8: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634b1ac: 48 8b 40 20 mov 0x20(%rax),%rax - 6634b1b0: 8b 00 mov (%rax),%eax - 6634b1b2: 85 c0 test %eax,%eax - 6634b1b4: 75 1f jne 6634b1d5 - 6634b1b6: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634b1ba: 48 8b 50 20 mov 0x20(%rax),%rdx - 6634b1be: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b1c2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b1c8: 49 63 01 movslq (%r9),%rax - 6634b1cb: 8d 48 01 lea 0x1(%rax),%ecx - 6634b1ce: 41 89 09 mov %ecx,(%r9) - 6634b1d1: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634b1d5: 5b pop %rbx - 6634b1d6: 5e pop %rsi - 6634b1d7: c3 retq - 6634b1d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b1df: 00 - 6634b1e0: 44 8b 42 0c mov 0xc(%rdx),%r8d - 6634b1e4: 45 85 c0 test %r8d,%r8d - 6634b1e7: 74 39 je 6634b222 - 6634b1e9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634b1ed: 4d 8b 5b 18 mov 0x18(%r11),%r11 - 6634b1f1: 45 29 03 sub %r8d,(%r11) - 6634b1f4: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) - 6634b1fb: 45 8b 1b mov (%r11),%r11d - 6634b1fe: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634b202: 45 85 db test %r11d,%r11d - 6634b205: 41 0f 9f c3 setg %r11b - 6634b209: 45 0f b6 db movzbl %r11b,%r11d - 6634b20d: 45 3b 18 cmp (%r8),%r11d - 6634b210: 74 10 je 6634b222 - 6634b212: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634b216: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634b21a: 45 8b 00 mov (%r8),%r8d - 6634b21d: 45 85 c0 test %r8d,%r8d - 6634b220: 74 2e je 6634b250 - 6634b222: 44 8b 42 10 mov 0x10(%rdx),%r8d - 6634b226: 45 85 c0 test %r8d,%r8d - 6634b229: 74 aa je 6634b1d5 - 6634b22b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634b22f: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 6634b233: 45 29 03 sub %r8d,(%r11) - 6634b236: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) - 6634b23d: 41 8b 13 mov (%r11),%edx - 6634b240: 85 d2 test %edx,%edx - 6634b242: e9 53 ff ff ff jmpq 6634b19a - 6634b247: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634b24e: 00 00 - 6634b250: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634b254: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634b258: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634b25c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634b263: 4d 63 01 movslq (%r9),%r8 - 6634b266: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634b26a: 41 89 19 mov %ebx,(%r9) - 6634b26d: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634b271: eb af jmp 6634b222 - 6634b273: 0f 1f 00 nopl (%rax) - 6634b276: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634b27d: 00 00 00 +000000006634b180 : + 6634b180: 41 55 push %r13 + 6634b182: 41 54 push %r12 + 6634b184: 55 push %rbp + 6634b185: 57 push %rdi + 6634b186: 56 push %rsi + 6634b187: 53 push %rbx + 6634b188: 48 83 ec 28 sub $0x28,%rsp + 6634b18c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634b190: 49 8b 81 e0 00 00 00 mov 0xe0(%r9),%rax + 6634b197: 48 89 ce mov %rcx,%rsi + 6634b19a: 8b 18 mov (%rax),%ebx + 6634b19c: 85 db test %ebx,%ebx + 6634b19e: 0f 84 4e 01 00 00 je 6634b2f2 + 6634b1a4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634b1a8: bb 30 00 00 00 mov $0x30,%ebx + 6634b1ad: 4c 8d 2d 4c 8e 00 00 lea 0x8e4c(%rip),%r13 # 66354000 <.rdata> + 6634b1b4: 4c 8d 25 55 8e 00 00 lea 0x8e55(%rip),%r12 # 66354010 <.rdata+0x10> + 6634b1bb: 8b 10 mov (%rax),%edx + 6634b1bd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634b1c1: 8b 00 mov (%rax),%eax + 6634b1c3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634b1c6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634b1ca: 8b 12 mov (%rdx),%edx + 6634b1cc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634b1cf: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b1d3: 8b 12 mov (%rdx),%edx + 6634b1d5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634b1d8: 49 8b 41 28 mov 0x28(%r9),%rax + 6634b1dc: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634b1e0: 8b 00 mov (%rax),%eax + 6634b1e2: c1 e0 04 shl $0x4,%eax + 6634b1e5: 01 f8 add %edi,%eax + 6634b1e7: 8b 3a mov (%rdx),%edi + 6634b1e9: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634b1ed: c1 e7 05 shl $0x5,%edi + 6634b1f0: 01 f8 add %edi,%eax + 6634b1f2: 8b 3a mov (%rdx),%edi + 6634b1f4: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634b1f8: c1 e7 06 shl $0x6,%edi + 6634b1fb: 01 c7 add %eax,%edi + 6634b1fd: 49 8b 41 40 mov 0x40(%r9),%rax + 6634b201: 8b 00 mov (%rax),%eax + 6634b203: c1 e0 07 shl $0x7,%eax + 6634b206: 01 c7 add %eax,%edi + 6634b208: 49 8b 41 48 mov 0x48(%r9),%rax + 6634b20c: 8b 00 mov (%rax),%eax + 6634b20e: c1 e0 08 shl $0x8,%eax + 6634b211: 01 f8 add %edi,%eax + 6634b213: 8b 3a mov (%rdx),%edi + 6634b215: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634b219: c1 e7 09 shl $0x9,%edi + 6634b21c: 01 f8 add %edi,%eax + 6634b21e: 8b 3a mov (%rdx),%edi + 6634b220: c1 e7 0a shl $0xa,%edi + 6634b223: 01 c7 add %eax,%edi + 6634b225: 48 63 ef movslq %edi,%rbp + 6634b228: 48 c1 e5 02 shl $0x2,%rbp + 6634b22c: 0f 1f 40 00 nopl 0x0(%rax) + 6634b230: 85 ff test %edi,%edi + 6634b232: 78 05 js 6634b239 + 6634b234: 39 7e 38 cmp %edi,0x38(%rsi) + 6634b237: 7f 11 jg 6634b24a + 6634b239: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b23f: 4c 89 ea mov %r13,%rdx + 6634b242: 4c 89 e1 mov %r12,%rcx + 6634b245: e8 c6 6f 00 00 callq 66352210 <_assert> + 6634b24a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634b24e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634b252: 48 01 da add %rbx,%rdx + 6634b255: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634b258: 8b 0a mov (%rdx),%ecx + 6634b25a: 39 c8 cmp %ecx,%eax + 6634b25c: 74 6c je 6634b2ca + 6634b25e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b262: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634b266: 41 89 c3 mov %eax,%r11d + 6634b269: 41 29 cb sub %ecx,%r11d + 6634b26c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634b270: 45 01 18 add %r11d,(%r8) + 6634b273: 89 02 mov %eax,(%rdx) + 6634b275: 31 d2 xor %edx,%edx + 6634b277: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634b27b: 45 8b 18 mov (%r8),%r11d + 6634b27e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b282: 45 85 db test %r11d,%r11d + 6634b285: 0f 9f c2 setg %dl + 6634b288: 3b 10 cmp (%rax),%edx + 6634b28a: 74 3e je 6634b2ca + 6634b28c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634b290: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b294: 44 8b 10 mov (%rax),%r10d + 6634b297: 45 85 d2 test %r10d,%r10d + 6634b29a: 75 2e jne 6634b2ca + 6634b29c: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634b2a0: 48 8b 0d 89 c6 00 00 mov 0xc689(%rip),%rcx # 66357930 + 6634b2a7: 4c 8b 05 72 c6 00 00 mov 0xc672(%rip),%r8 # 66357920 + 6634b2ae: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634b2b2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b2b6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b2bc: 48 63 01 movslq (%rcx),%rax + 6634b2bf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b2c3: 44 89 09 mov %r9d,(%rcx) + 6634b2c6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b2ca: 48 83 c3 04 add $0x4,%rbx + 6634b2ce: 81 c7 00 08 00 00 add $0x800,%edi + 6634b2d4: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634b2db: 48 83 fb 70 cmp $0x70,%rbx + 6634b2df: 0f 85 4b ff ff ff jne 6634b230 + 6634b2e5: 48 83 c4 28 add $0x28,%rsp + 6634b2e9: 5b pop %rbx + 6634b2ea: 5e pop %rsi + 6634b2eb: 5f pop %rdi + 6634b2ec: 5d pop %rbp + 6634b2ed: 41 5c pop %r12 + 6634b2ef: 41 5d pop %r13 + 6634b2f1: c3 retq + 6634b2f2: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634b2f6: 4c 8b 1d 23 c6 00 00 mov 0xc623(%rip),%r11 # 66357920 + 6634b2fd: 4c 8b 15 2c c6 00 00 mov 0xc62c(%rip),%r10 # 66357930 + 6634b304: 48 8d 50 30 lea 0x30(%rax),%rdx + 6634b308: b8 60 00 00 00 mov $0x60,%eax + 6634b30d: 0f 1f 00 nopl (%rax) + 6634b310: 8b 0a mov (%rdx),%ecx + 6634b312: 85 c9 test %ecx,%ecx + 6634b314: 74 55 je 6634b36b + 6634b316: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b31a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634b31e: 41 29 08 sub %ecx,(%r8) + 6634b321: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634b327: 45 8b 00 mov (%r8),%r8d + 6634b32a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634b32e: 45 85 c0 test %r8d,%r8d + 6634b331: 41 0f 9f c0 setg %r8b + 6634b335: 45 0f b6 c0 movzbl %r8b,%r8d + 6634b339: 44 3b 01 cmp (%rcx),%r8d + 6634b33c: 74 2d je 6634b36b + 6634b33e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634b342: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634b346: 8b 09 mov (%rcx),%ecx + 6634b348: 85 c9 test %ecx,%ecx + 6634b34a: 75 1f jne 6634b36b + 6634b34c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634b350: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634b354: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b358: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b35e: 49 63 0a movslq (%r10),%rcx + 6634b361: 8d 59 01 lea 0x1(%rcx),%ebx + 6634b364: 41 89 1a mov %ebx,(%r10) + 6634b367: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634b36b: 48 83 c0 08 add $0x8,%rax + 6634b36f: 48 83 c2 04 add $0x4,%rdx + 6634b373: 48 3d e0 00 00 00 cmp $0xe0,%rax + 6634b379: 75 95 jne 6634b310 + 6634b37b: 48 83 c4 28 add $0x28,%rsp + 6634b37f: 5b pop %rbx + 6634b380: 5e pop %rsi + 6634b381: 5f pop %rdi + 6634b382: 5d pop %rbp + 6634b383: 41 5c pop %r12 + 6634b385: 41 5d pop %r13 + 6634b387: c3 retq + 6634b388: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634b38f: 00 -000000006634b280 : - 6634b280: 56 push %rsi - 6634b281: 53 push %rbx - 6634b282: 4c 8b 15 97 c6 00 00 mov 0xc697(%rip),%r10 # 66357920 - 6634b289: 4c 8b 0d a0 c6 00 00 mov 0xc6a0(%rip),%r9 # 66357930 - 6634b290: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634b294: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634b298: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634b29c: 45 8b 18 mov (%r8),%r11d - 6634b29f: 45 85 db test %r11d,%r11d - 6634b2a2: 0f 84 d8 00 00 00 je 6634b380 - 6634b2a8: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634b2ac: 44 8b 5a 0c mov 0xc(%rdx),%r11d - 6634b2b0: 45 8b 00 mov (%r8),%r8d - 6634b2b3: 45 39 c3 cmp %r8d,%r11d - 6634b2b6: 74 5a je 6634b312 - 6634b2b8: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634b2bc: 44 89 c6 mov %r8d,%esi - 6634b2bf: 44 29 de sub %r11d,%esi - 6634b2c2: 45 31 db xor %r11d,%r11d - 6634b2c5: 48 8b 5b 18 mov 0x18(%rbx),%rbx - 6634b2c9: 01 33 add %esi,(%rbx) - 6634b2cb: 44 89 42 0c mov %r8d,0xc(%rdx) - 6634b2cf: 44 8b 03 mov (%rbx),%r8d - 6634b2d2: 45 85 c0 test %r8d,%r8d - 6634b2d5: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634b2d9: 41 0f 9f c3 setg %r11b - 6634b2dd: 45 3b 18 cmp (%r8),%r11d - 6634b2e0: 74 30 je 6634b312 - 6634b2e2: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634b2e6: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634b2ea: 41 8b 30 mov (%r8),%esi - 6634b2ed: 85 f6 test %esi,%esi - 6634b2ef: 75 21 jne 6634b312 - 6634b2f1: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634b2f5: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634b2f9: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634b2fd: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634b304: 4d 63 01 movslq (%r9),%r8 - 6634b307: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634b30b: 41 89 19 mov %ebx,(%r9) - 6634b30e: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634b312: 4c 8b 40 10 mov 0x10(%rax),%r8 - 6634b316: 44 8b 5a 10 mov 0x10(%rdx),%r11d - 6634b31a: 45 8b 00 mov (%r8),%r8d - 6634b31d: 45 39 d8 cmp %r11d,%r8d - 6634b320: 74 53 je 6634b375 - 6634b322: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634b326: 44 89 c6 mov %r8d,%esi - 6634b329: 44 29 de sub %r11d,%esi - 6634b32c: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 6634b330: 01 33 add %esi,(%rbx) - 6634b332: 44 89 42 10 mov %r8d,0x10(%rdx) - 6634b336: 8b 1b mov (%rbx),%ebx - 6634b338: 85 db test %ebx,%ebx - 6634b33a: 48 8b 40 20 mov 0x20(%rax),%rax - 6634b33e: 0f 9f c2 setg %dl - 6634b341: 0f b6 d2 movzbl %dl,%edx - 6634b344: 3b 10 cmp (%rax),%edx - 6634b346: 74 2d je 6634b375 - 6634b348: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634b34c: 48 8b 40 20 mov 0x20(%rax),%rax - 6634b350: 8b 00 mov (%rax),%eax - 6634b352: 85 c0 test %eax,%eax - 6634b354: 75 1f jne 6634b375 - 6634b356: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634b35a: 48 8b 50 20 mov 0x20(%rax),%rdx - 6634b35e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b362: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b368: 49 63 01 movslq (%r9),%rax - 6634b36b: 8d 48 01 lea 0x1(%rax),%ecx - 6634b36e: 41 89 09 mov %ecx,(%r9) - 6634b371: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634b375: 5b pop %rbx - 6634b376: 5e pop %rsi - 6634b377: c3 retq - 6634b378: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b37f: 00 - 6634b380: 44 8b 42 0c mov 0xc(%rdx),%r8d - 6634b384: 45 85 c0 test %r8d,%r8d - 6634b387: 74 39 je 6634b3c2 - 6634b389: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634b38d: 4d 8b 5b 18 mov 0x18(%r11),%r11 - 6634b391: 45 29 03 sub %r8d,(%r11) - 6634b394: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) - 6634b39b: 45 8b 1b mov (%r11),%r11d - 6634b39e: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634b3a2: 45 85 db test %r11d,%r11d - 6634b3a5: 41 0f 9f c3 setg %r11b - 6634b3a9: 45 0f b6 db movzbl %r11b,%r11d - 6634b3ad: 45 3b 18 cmp (%r8),%r11d - 6634b3b0: 74 10 je 6634b3c2 - 6634b3b2: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634b3b6: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634b3ba: 45 8b 00 mov (%r8),%r8d - 6634b3bd: 45 85 c0 test %r8d,%r8d - 6634b3c0: 74 2e je 6634b3f0 - 6634b3c2: 44 8b 42 10 mov 0x10(%rdx),%r8d - 6634b3c6: 45 85 c0 test %r8d,%r8d - 6634b3c9: 74 aa je 6634b375 - 6634b3cb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634b3cf: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 6634b3d3: 45 29 03 sub %r8d,(%r11) - 6634b3d6: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) - 6634b3dd: 41 8b 13 mov (%r11),%edx - 6634b3e0: 85 d2 test %edx,%edx - 6634b3e2: e9 53 ff ff ff jmpq 6634b33a - 6634b3e7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634b3ee: 00 00 - 6634b3f0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634b3f4: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634b3f8: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634b3fc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634b403: 4d 63 01 movslq (%r9),%r8 - 6634b406: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634b40a: 41 89 19 mov %ebx,(%r9) - 6634b40d: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634b411: eb af jmp 6634b3c2 - 6634b413: 0f 1f 00 nopl (%rax) - 6634b416: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634b41d: 00 00 00 +000000006634b390 : + 6634b390: 41 55 push %r13 + 6634b392: 41 54 push %r12 + 6634b394: 55 push %rbp + 6634b395: 57 push %rdi + 6634b396: 56 push %rsi + 6634b397: 53 push %rbx + 6634b398: 48 83 ec 28 sub $0x28,%rsp + 6634b39c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634b3a0: 49 8b 81 c8 00 00 00 mov 0xc8(%r9),%rax + 6634b3a7: 48 89 ce mov %rcx,%rsi + 6634b3aa: 8b 18 mov (%rax),%ebx + 6634b3ac: 85 db test %ebx,%ebx + 6634b3ae: 0f 84 2e 01 00 00 je 6634b4e2 + 6634b3b4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634b3b8: bb 24 00 00 00 mov $0x24,%ebx + 6634b3bd: 4c 8d 2d 3c 8c 00 00 lea 0x8c3c(%rip),%r13 # 66354000 <.rdata> + 6634b3c4: 4c 8d 25 45 8c 00 00 lea 0x8c45(%rip),%r12 # 66354010 <.rdata+0x10> + 6634b3cb: 8b 10 mov (%rax),%edx + 6634b3cd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634b3d1: 8b 00 mov (%rax),%eax + 6634b3d3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634b3d6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634b3da: 8b 12 mov (%rdx),%edx + 6634b3dc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634b3df: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b3e3: 8b 12 mov (%rdx),%edx + 6634b3e5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634b3e8: 49 8b 41 28 mov 0x28(%r9),%rax + 6634b3ec: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634b3f0: 8b 00 mov (%rax),%eax + 6634b3f2: c1 e0 04 shl $0x4,%eax + 6634b3f5: 01 c7 add %eax,%edi + 6634b3f7: 49 8b 41 30 mov 0x30(%r9),%rax + 6634b3fb: 8b 00 mov (%rax),%eax + 6634b3fd: c1 e0 05 shl $0x5,%eax + 6634b400: 01 f8 add %edi,%eax + 6634b402: 8b 3a mov (%rdx),%edi + 6634b404: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634b408: c1 e7 06 shl $0x6,%edi + 6634b40b: 01 f8 add %edi,%eax + 6634b40d: 8b 3a mov (%rdx),%edi + 6634b40f: c1 e7 07 shl $0x7,%edi + 6634b412: 01 c7 add %eax,%edi + 6634b414: 48 63 ef movslq %edi,%rbp + 6634b417: 48 c1 e5 02 shl $0x2,%rbp + 6634b41b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634b420: 85 ff test %edi,%edi + 6634b422: 78 05 js 6634b429 + 6634b424: 39 7e 38 cmp %edi,0x38(%rsi) + 6634b427: 7f 11 jg 6634b43a + 6634b429: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b42f: 4c 89 ea mov %r13,%rdx + 6634b432: 4c 89 e1 mov %r12,%rcx + 6634b435: e8 d6 6d 00 00 callq 66352210 <_assert> + 6634b43a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634b43e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634b442: 48 01 da add %rbx,%rdx + 6634b445: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634b448: 8b 0a mov (%rdx),%ecx + 6634b44a: 39 c8 cmp %ecx,%eax + 6634b44c: 74 6c je 6634b4ba + 6634b44e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b452: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634b456: 41 89 c3 mov %eax,%r11d + 6634b459: 41 29 cb sub %ecx,%r11d + 6634b45c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634b460: 45 01 18 add %r11d,(%r8) + 6634b463: 89 02 mov %eax,(%rdx) + 6634b465: 31 d2 xor %edx,%edx + 6634b467: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634b46b: 45 8b 18 mov (%r8),%r11d + 6634b46e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b472: 45 85 db test %r11d,%r11d + 6634b475: 0f 9f c2 setg %dl + 6634b478: 3b 10 cmp (%rax),%edx + 6634b47a: 74 3e je 6634b4ba + 6634b47c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634b480: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b484: 44 8b 10 mov (%rax),%r10d + 6634b487: 45 85 d2 test %r10d,%r10d + 6634b48a: 75 2e jne 6634b4ba + 6634b48c: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634b490: 48 8b 0d 99 c4 00 00 mov 0xc499(%rip),%rcx # 66357930 + 6634b497: 4c 8b 05 82 c4 00 00 mov 0xc482(%rip),%r8 # 66357920 + 6634b49e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634b4a2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b4a6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b4ac: 48 63 01 movslq (%rcx),%rax + 6634b4af: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b4b3: 44 89 09 mov %r9d,(%rcx) + 6634b4b6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b4ba: 48 83 c3 04 add $0x4,%rbx + 6634b4be: 81 c7 00 01 00 00 add $0x100,%edi + 6634b4c4: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634b4cb: 48 83 fb 64 cmp $0x64,%rbx + 6634b4cf: 0f 85 4b ff ff ff jne 6634b420 + 6634b4d5: 48 83 c4 28 add $0x28,%rsp + 6634b4d9: 5b pop %rbx + 6634b4da: 5e pop %rsi + 6634b4db: 5f pop %rdi + 6634b4dc: 5d pop %rbp + 6634b4dd: 41 5c pop %r12 + 6634b4df: 41 5d pop %r13 + 6634b4e1: c3 retq + 6634b4e2: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634b4e6: 4c 8b 1d 33 c4 00 00 mov 0xc433(%rip),%r11 # 66357920 + 6634b4ed: 4c 8b 15 3c c4 00 00 mov 0xc43c(%rip),%r10 # 66357930 + 6634b4f4: 48 8d 50 24 lea 0x24(%rax),%rdx + 6634b4f8: b8 48 00 00 00 mov $0x48,%eax + 6634b4fd: 0f 1f 00 nopl (%rax) + 6634b500: 8b 0a mov (%rdx),%ecx + 6634b502: 85 c9 test %ecx,%ecx + 6634b504: 74 55 je 6634b55b + 6634b506: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b50a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634b50e: 41 29 08 sub %ecx,(%r8) + 6634b511: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634b517: 45 8b 00 mov (%r8),%r8d + 6634b51a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634b51e: 45 85 c0 test %r8d,%r8d + 6634b521: 41 0f 9f c0 setg %r8b + 6634b525: 45 0f b6 c0 movzbl %r8b,%r8d + 6634b529: 44 3b 01 cmp (%rcx),%r8d + 6634b52c: 74 2d je 6634b55b + 6634b52e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634b532: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634b536: 8b 09 mov (%rcx),%ecx + 6634b538: 85 c9 test %ecx,%ecx + 6634b53a: 75 1f jne 6634b55b + 6634b53c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634b540: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634b544: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b548: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b54e: 49 63 0a movslq (%r10),%rcx + 6634b551: 8d 59 01 lea 0x1(%rcx),%ebx + 6634b554: 41 89 1a mov %ebx,(%r10) + 6634b557: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634b55b: 48 83 c0 08 add $0x8,%rax + 6634b55f: 48 83 c2 04 add $0x4,%rdx + 6634b563: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634b569: 75 95 jne 6634b500 + 6634b56b: 48 83 c4 28 add $0x28,%rsp + 6634b56f: 5b pop %rbx + 6634b570: 5e pop %rsi + 6634b571: 5f pop %rdi + 6634b572: 5d pop %rbp + 6634b573: 41 5c pop %r12 + 6634b575: 41 5d pop %r13 + 6634b577: c3 retq + 6634b578: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634b57f: 00 -000000006634b420 : - 6634b420: 41 55 push %r13 - 6634b422: 41 54 push %r12 - 6634b424: 55 push %rbp - 6634b425: 57 push %rdi - 6634b426: 56 push %rsi - 6634b427: 53 push %rbx - 6634b428: 48 83 ec 28 sub $0x28,%rsp - 6634b42c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634b430: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx - 6634b437: 48 89 cb mov %rcx,%rbx - 6634b43a: 8b 12 mov (%rdx),%edx - 6634b43c: 85 d2 test %edx,%edx - 6634b43e: 0f 84 5c 01 00 00 je 6634b5a0 - 6634b444: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634b448: be 34 00 00 00 mov $0x34,%esi - 6634b44d: 4c 8d 2d ac 8b 00 00 lea 0x8bac(%rip),%r13 # 66354000 <.rdata> - 6634b454: 4c 8d 25 b5 8b 00 00 lea 0x8bb5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b45b: 8b 0a mov (%rdx),%ecx - 6634b45d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634b461: 8b 12 mov (%rdx),%edx - 6634b463: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634b466: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634b46a: 8b 09 mov (%rcx),%ecx - 6634b46c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634b46f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634b473: 8b 09 mov (%rcx),%ecx - 6634b475: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634b478: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634b47c: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634b480: 8b 12 mov (%rdx),%edx - 6634b482: c1 e2 04 shl $0x4,%edx - 6634b485: 01 d7 add %edx,%edi - 6634b487: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634b48b: 8b 12 mov (%rdx),%edx - 6634b48d: c1 e2 05 shl $0x5,%edx - 6634b490: 01 fa add %edi,%edx - 6634b492: 8b 39 mov (%rcx),%edi - 6634b494: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634b498: c1 e7 06 shl $0x6,%edi - 6634b49b: 01 fa add %edi,%edx - 6634b49d: 8b 39 mov (%rcx),%edi - 6634b49f: 48 8b 48 58 mov 0x58(%rax),%rcx - 6634b4a3: c1 e7 07 shl $0x7,%edi - 6634b4a6: 01 d7 add %edx,%edi - 6634b4a8: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634b4ac: 8b 12 mov (%rdx),%edx - 6634b4ae: c1 e2 08 shl $0x8,%edx - 6634b4b1: 01 d7 add %edx,%edi - 6634b4b3: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634b4b7: 48 8b 40 60 mov 0x60(%rax),%rax - 6634b4bb: 8b 12 mov (%rdx),%edx - 6634b4bd: c1 e2 09 shl $0x9,%edx - 6634b4c0: 01 fa add %edi,%edx - 6634b4c2: 8b 39 mov (%rcx),%edi - 6634b4c4: c1 e7 0a shl $0xa,%edi - 6634b4c7: 01 fa add %edi,%edx - 6634b4c9: 8b 38 mov (%rax),%edi - 6634b4cb: c1 e7 0b shl $0xb,%edi - 6634b4ce: 01 d7 add %edx,%edi - 6634b4d0: 48 63 ef movslq %edi,%rbp - 6634b4d3: 48 c1 e5 02 shl $0x2,%rbp - 6634b4d7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634b4de: 00 00 - 6634b4e0: 85 ff test %edi,%edi - 6634b4e2: 78 05 js 6634b4e9 - 6634b4e4: 39 7b 38 cmp %edi,0x38(%rbx) - 6634b4e7: 7f 11 jg 6634b4fa - 6634b4e9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b4ef: 4c 89 ea mov %r13,%rdx - 6634b4f2: 4c 89 e1 mov %r12,%rcx - 6634b4f5: e8 56 6a 00 00 callq 66351f50 <_assert> - 6634b4fa: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634b4fe: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634b502: 48 01 f2 add %rsi,%rdx - 6634b505: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b508: 8b 0a mov (%rdx),%ecx - 6634b50a: 39 c8 cmp %ecx,%eax - 6634b50c: 74 69 je 6634b577 - 6634b50e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634b512: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634b516: 41 89 c3 mov %eax,%r11d - 6634b519: 41 29 cb sub %ecx,%r11d - 6634b51c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634b520: 45 01 18 add %r11d,(%r8) - 6634b523: 89 02 mov %eax,(%rdx) - 6634b525: 31 d2 xor %edx,%edx - 6634b527: 41 8b 00 mov (%r8),%eax - 6634b52a: 85 c0 test %eax,%eax - 6634b52c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634b530: 0f 9f c2 setg %dl - 6634b533: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634b537: 3b 10 cmp (%rax),%edx - 6634b539: 74 3c je 6634b577 - 6634b53b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634b53f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634b543: 8b 00 mov (%rax),%eax - 6634b545: 85 c0 test %eax,%eax - 6634b547: 75 2e jne 6634b577 - 6634b549: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634b54d: 48 8b 0d dc c3 00 00 mov 0xc3dc(%rip),%rcx # 66357930 - 6634b554: 4c 8b 05 c5 c3 00 00 mov 0xc3c5(%rip),%r8 # 66357920 - 6634b55b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b55f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b563: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b569: 48 63 01 movslq (%rcx),%rax - 6634b56c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b570: 44 89 09 mov %r9d,(%rcx) - 6634b573: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b577: 48 83 c6 04 add $0x4,%rsi - 6634b57b: 81 c7 00 10 00 00 add $0x1000,%edi - 6634b581: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634b588: 48 83 fe 54 cmp $0x54,%rsi - 6634b58c: 0f 85 4e ff ff ff jne 6634b4e0 - 6634b592: 48 83 c4 28 add $0x28,%rsp - 6634b596: 5b pop %rbx - 6634b597: 5e pop %rsi - 6634b598: 5f pop %rdi - 6634b599: 5d pop %rbp - 6634b59a: 41 5c pop %r12 - 6634b59c: 41 5d pop %r13 - 6634b59e: c3 retq - 6634b59f: 90 nop - 6634b5a0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634b5a4: 4c 8b 05 75 c3 00 00 mov 0xc375(%rip),%r8 # 66357920 - 6634b5ab: 48 8b 0d 7e c3 00 00 mov 0xc37e(%rip),%rcx # 66357930 - 6634b5b2: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634b5b6: 45 85 c9 test %r9d,%r9d - 6634b5b9: 74 58 je 6634b613 - 6634b5bb: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b5bf: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634b5c3: 45 29 0a sub %r9d,(%r10) - 6634b5c6: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634b5cd: 45 8b 22 mov (%r10),%r12d - 6634b5d0: 45 31 d2 xor %r10d,%r10d - 6634b5d3: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634b5d7: 45 85 e4 test %r12d,%r12d - 6634b5da: 41 0f 9f c2 setg %r10b - 6634b5de: 45 3b 11 cmp (%r9),%r10d - 6634b5e1: 74 30 je 6634b613 - 6634b5e3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b5e7: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634b5eb: 41 8b 29 mov (%r9),%ebp - 6634b5ee: 85 ed test %ebp,%ebp - 6634b5f0: 75 21 jne 6634b613 - 6634b5f2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b5f6: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634b5fa: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b5fe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b605: 4c 63 09 movslq (%rcx),%r9 - 6634b608: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b60c: 44 89 19 mov %r11d,(%rcx) - 6634b60f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b613: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634b617: 45 85 c9 test %r9d,%r9d - 6634b61a: 74 57 je 6634b673 - 6634b61c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b620: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634b624: 45 29 0a sub %r9d,(%r10) - 6634b627: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634b62e: 41 8b 3a mov (%r10),%edi - 6634b631: 45 31 d2 xor %r10d,%r10d - 6634b634: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634b638: 85 ff test %edi,%edi - 6634b63a: 41 0f 9f c2 setg %r10b - 6634b63e: 45 3b 11 cmp (%r9),%r10d - 6634b641: 74 30 je 6634b673 - 6634b643: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b647: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634b64b: 41 8b 31 mov (%r9),%esi - 6634b64e: 85 f6 test %esi,%esi - 6634b650: 75 21 jne 6634b673 - 6634b652: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b656: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634b65a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b65e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b665: 4c 63 09 movslq (%rcx),%r9 - 6634b668: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b66c: 44 89 19 mov %r11d,(%rcx) - 6634b66f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b673: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634b677: 45 85 c9 test %r9d,%r9d - 6634b67a: 74 59 je 6634b6d5 - 6634b67c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b680: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634b684: 45 29 0a sub %r9d,(%r10) - 6634b687: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634b68e: 45 8b 1a mov (%r10),%r11d - 6634b691: 45 31 d2 xor %r10d,%r10d - 6634b694: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634b698: 45 85 db test %r11d,%r11d - 6634b69b: 41 0f 9f c2 setg %r10b - 6634b69f: 45 3b 11 cmp (%r9),%r10d - 6634b6a2: 74 31 je 6634b6d5 - 6634b6a4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b6a8: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634b6ac: 45 8b 11 mov (%r9),%r10d - 6634b6af: 45 85 d2 test %r10d,%r10d - 6634b6b2: 75 21 jne 6634b6d5 - 6634b6b4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b6b8: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634b6bc: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b6c0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b6c7: 4c 63 09 movslq (%rcx),%r9 - 6634b6ca: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b6ce: 44 89 19 mov %r11d,(%rcx) - 6634b6d1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b6d5: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634b6d9: 45 85 c9 test %r9d,%r9d - 6634b6dc: 74 65 je 6634b743 - 6634b6de: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b6e2: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634b6e9: 45 29 0a sub %r9d,(%r10) - 6634b6ec: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634b6f3: 45 8b 0a mov (%r10),%r9d - 6634b6f6: 45 31 d2 xor %r10d,%r10d - 6634b6f9: 45 85 c9 test %r9d,%r9d - 6634b6fc: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634b703: 41 0f 9f c2 setg %r10b - 6634b707: 45 3b 11 cmp (%r9),%r10d - 6634b70a: 74 37 je 6634b743 - 6634b70c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b710: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634b717: 45 8b 29 mov (%r9),%r13d - 6634b71a: 45 85 ed test %r13d,%r13d - 6634b71d: 75 24 jne 6634b743 - 6634b71f: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b723: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634b72a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b72e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b735: 4c 63 09 movslq (%rcx),%r9 - 6634b738: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b73c: 44 89 19 mov %r11d,(%rcx) - 6634b73f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b743: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634b747: 45 85 c9 test %r9d,%r9d - 6634b74a: 74 64 je 6634b7b0 - 6634b74c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b750: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634b757: 45 29 0a sub %r9d,(%r10) - 6634b75a: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634b761: 45 8b 22 mov (%r10),%r12d - 6634b764: 45 31 d2 xor %r10d,%r10d - 6634b767: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634b76e: 45 85 e4 test %r12d,%r12d - 6634b771: 41 0f 9f c2 setg %r10b - 6634b775: 45 3b 11 cmp (%r9),%r10d - 6634b778: 74 36 je 6634b7b0 - 6634b77a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b77e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634b785: 41 8b 29 mov (%r9),%ebp - 6634b788: 85 ed test %ebp,%ebp - 6634b78a: 75 24 jne 6634b7b0 - 6634b78c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b790: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634b797: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b79b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b7a2: 4c 63 09 movslq (%rcx),%r9 - 6634b7a5: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b7a9: 44 89 19 mov %r11d,(%rcx) - 6634b7ac: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b7b0: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634b7b4: 45 85 c9 test %r9d,%r9d - 6634b7b7: 74 63 je 6634b81c - 6634b7b9: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b7bd: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634b7c4: 45 29 0a sub %r9d,(%r10) - 6634b7c7: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634b7ce: 41 8b 3a mov (%r10),%edi - 6634b7d1: 45 31 d2 xor %r10d,%r10d - 6634b7d4: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 - 6634b7db: 85 ff test %edi,%edi - 6634b7dd: 41 0f 9f c2 setg %r10b - 6634b7e1: 45 3b 11 cmp (%r9),%r10d - 6634b7e4: 74 36 je 6634b81c - 6634b7e6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b7ea: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 - 6634b7f1: 41 8b 31 mov (%r9),%esi - 6634b7f4: 85 f6 test %esi,%esi - 6634b7f6: 75 24 jne 6634b81c - 6634b7f8: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b7fc: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 - 6634b803: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b807: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b80e: 4c 63 09 movslq (%rcx),%r9 - 6634b811: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b815: 44 89 19 mov %r11d,(%rcx) - 6634b818: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b81c: 44 8b 4a 4c mov 0x4c(%rdx),%r9d - 6634b820: 45 85 c9 test %r9d,%r9d - 6634b823: 74 65 je 6634b88a - 6634b825: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b829: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 - 6634b830: 45 29 0a sub %r9d,(%r10) - 6634b833: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) - 6634b83a: 45 8b 1a mov (%r10),%r11d - 6634b83d: 45 31 d2 xor %r10d,%r10d - 6634b840: 4c 8b 88 98 00 00 00 mov 0x98(%rax),%r9 - 6634b847: 45 85 db test %r11d,%r11d - 6634b84a: 41 0f 9f c2 setg %r10b - 6634b84e: 45 3b 11 cmp (%r9),%r10d - 6634b851: 74 37 je 6634b88a - 6634b853: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634b857: 4d 8b 89 98 00 00 00 mov 0x98(%r9),%r9 - 6634b85e: 45 8b 11 mov (%r9),%r10d - 6634b861: 45 85 d2 test %r10d,%r10d - 6634b864: 75 24 jne 6634b88a - 6634b866: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634b86a: 4d 8b 91 98 00 00 00 mov 0x98(%r9),%r10 - 6634b871: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634b875: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634b87c: 4c 63 09 movslq (%rcx),%r9 - 6634b87f: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634b883: 44 89 19 mov %r11d,(%rcx) - 6634b886: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634b88a: 44 8b 4a 50 mov 0x50(%rdx),%r9d - 6634b88e: 45 85 c9 test %r9d,%r9d - 6634b891: 0f 84 fb fc ff ff je 6634b592 - 6634b897: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634b89b: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax - 6634b8a2: 4d 8b 92 a0 00 00 00 mov 0xa0(%r10),%r10 - 6634b8a9: 45 29 0a sub %r9d,(%r10) - 6634b8ac: c7 42 50 00 00 00 00 movl $0x0,0x50(%rdx) - 6634b8b3: 31 d2 xor %edx,%edx - 6634b8b5: 45 8b 0a mov (%r10),%r9d - 6634b8b8: 45 85 c9 test %r9d,%r9d - 6634b8bb: 0f 9f c2 setg %dl - 6634b8be: 3b 10 cmp (%rax),%edx - 6634b8c0: 0f 84 cc fc ff ff je 6634b592 - 6634b8c6: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634b8ca: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax - 6634b8d1: 8b 00 mov (%rax),%eax - 6634b8d3: 85 c0 test %eax,%eax - 6634b8d5: 0f 85 b7 fc ff ff jne 6634b592 - 6634b8db: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634b8df: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx - 6634b8e6: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b8ea: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b8f0: 48 63 01 movslq (%rcx),%rax - 6634b8f3: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b8f7: 44 89 09 mov %r9d,(%rcx) - 6634b8fa: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b8fe: 48 83 c4 28 add $0x28,%rsp - 6634b902: 5b pop %rbx - 6634b903: 5e pop %rsi - 6634b904: 5f pop %rdi - 6634b905: 5d pop %rbp - 6634b906: 41 5c pop %r12 - 6634b908: 41 5d pop %r13 - 6634b90a: c3 retq - 6634b90b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) +000000006634b580 : + 6634b580: 41 55 push %r13 + 6634b582: 41 54 push %r12 + 6634b584: 55 push %rbp + 6634b585: 57 push %rdi + 6634b586: 56 push %rsi + 6634b587: 53 push %rbx + 6634b588: 48 83 ec 28 sub $0x28,%rsp + 6634b58c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634b590: 49 8b 81 d0 00 00 00 mov 0xd0(%r9),%rax + 6634b597: 48 89 ce mov %rcx,%rsi + 6634b59a: 8b 18 mov (%rax),%ebx + 6634b59c: 85 db test %ebx,%ebx + 6634b59e: 0f 84 3e 01 00 00 je 6634b6e2 + 6634b5a4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634b5a8: bb 28 00 00 00 mov $0x28,%ebx + 6634b5ad: 4c 8d 2d 4c 8a 00 00 lea 0x8a4c(%rip),%r13 # 66354000 <.rdata> + 6634b5b4: 4c 8d 25 55 8a 00 00 lea 0x8a55(%rip),%r12 # 66354010 <.rdata+0x10> + 6634b5bb: 8b 10 mov (%rax),%edx + 6634b5bd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634b5c1: 8b 00 mov (%rax),%eax + 6634b5c3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634b5c6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634b5ca: 8b 12 mov (%rdx),%edx + 6634b5cc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634b5cf: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b5d3: 8b 12 mov (%rdx),%edx + 6634b5d5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634b5d8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634b5dc: 8b 3a mov (%rdx),%edi + 6634b5de: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634b5e2: c1 e7 04 shl $0x4,%edi + 6634b5e5: 01 c7 add %eax,%edi + 6634b5e7: 49 8b 41 30 mov 0x30(%r9),%rax + 6634b5eb: 8b 00 mov (%rax),%eax + 6634b5ed: c1 e0 05 shl $0x5,%eax + 6634b5f0: 01 c7 add %eax,%edi + 6634b5f2: 49 8b 41 38 mov 0x38(%r9),%rax + 6634b5f6: 8b 00 mov (%rax),%eax + 6634b5f8: c1 e0 06 shl $0x6,%eax + 6634b5fb: 01 f8 add %edi,%eax + 6634b5fd: 8b 3a mov (%rdx),%edi + 6634b5ff: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634b603: c1 e7 07 shl $0x7,%edi + 6634b606: 01 f8 add %edi,%eax + 6634b608: 8b 3a mov (%rdx),%edi + 6634b60a: c1 e7 08 shl $0x8,%edi + 6634b60d: 01 c7 add %eax,%edi + 6634b60f: 48 63 ef movslq %edi,%rbp + 6634b612: 48 c1 e5 02 shl $0x2,%rbp + 6634b616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634b61d: 00 00 00 + 6634b620: 85 ff test %edi,%edi + 6634b622: 78 05 js 6634b629 + 6634b624: 39 7e 38 cmp %edi,0x38(%rsi) + 6634b627: 7f 11 jg 6634b63a + 6634b629: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b62f: 4c 89 ea mov %r13,%rdx + 6634b632: 4c 89 e1 mov %r12,%rcx + 6634b635: e8 d6 6b 00 00 callq 66352210 <_assert> + 6634b63a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634b63e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634b642: 48 01 da add %rbx,%rdx + 6634b645: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634b648: 8b 0a mov (%rdx),%ecx + 6634b64a: 39 c8 cmp %ecx,%eax + 6634b64c: 74 6c je 6634b6ba + 6634b64e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b652: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634b656: 41 89 c3 mov %eax,%r11d + 6634b659: 41 29 cb sub %ecx,%r11d + 6634b65c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634b660: 45 01 18 add %r11d,(%r8) + 6634b663: 89 02 mov %eax,(%rdx) + 6634b665: 31 d2 xor %edx,%edx + 6634b667: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634b66b: 45 8b 18 mov (%r8),%r11d + 6634b66e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b672: 45 85 db test %r11d,%r11d + 6634b675: 0f 9f c2 setg %dl + 6634b678: 3b 10 cmp (%rax),%edx + 6634b67a: 74 3e je 6634b6ba + 6634b67c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634b680: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b684: 44 8b 10 mov (%rax),%r10d + 6634b687: 45 85 d2 test %r10d,%r10d + 6634b68a: 75 2e jne 6634b6ba + 6634b68c: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634b690: 48 8b 0d 99 c2 00 00 mov 0xc299(%rip),%rcx # 66357930 + 6634b697: 4c 8b 05 82 c2 00 00 mov 0xc282(%rip),%r8 # 66357920 + 6634b69e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634b6a2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b6a6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b6ac: 48 63 01 movslq (%rcx),%rax + 6634b6af: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b6b3: 44 89 09 mov %r9d,(%rcx) + 6634b6b6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b6ba: 48 83 c3 04 add $0x4,%rbx + 6634b6be: 81 c7 00 02 00 00 add $0x200,%edi + 6634b6c4: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634b6cb: 48 83 fb 68 cmp $0x68,%rbx + 6634b6cf: 0f 85 4b ff ff ff jne 6634b620 + 6634b6d5: 48 83 c4 28 add $0x28,%rsp + 6634b6d9: 5b pop %rbx + 6634b6da: 5e pop %rsi + 6634b6db: 5f pop %rdi + 6634b6dc: 5d pop %rbp + 6634b6dd: 41 5c pop %r12 + 6634b6df: 41 5d pop %r13 + 6634b6e1: c3 retq + 6634b6e2: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634b6e6: 4c 8b 1d 33 c2 00 00 mov 0xc233(%rip),%r11 # 66357920 + 6634b6ed: 4c 8b 15 3c c2 00 00 mov 0xc23c(%rip),%r10 # 66357930 + 6634b6f4: 48 8d 50 28 lea 0x28(%rax),%rdx + 6634b6f8: b8 50 00 00 00 mov $0x50,%eax + 6634b6fd: 0f 1f 00 nopl (%rax) + 6634b700: 8b 0a mov (%rdx),%ecx + 6634b702: 85 c9 test %ecx,%ecx + 6634b704: 74 55 je 6634b75b + 6634b706: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b70a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634b70e: 41 29 08 sub %ecx,(%r8) + 6634b711: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634b717: 45 8b 00 mov (%r8),%r8d + 6634b71a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634b71e: 45 85 c0 test %r8d,%r8d + 6634b721: 41 0f 9f c0 setg %r8b + 6634b725: 45 0f b6 c0 movzbl %r8b,%r8d + 6634b729: 44 3b 01 cmp (%rcx),%r8d + 6634b72c: 74 2d je 6634b75b + 6634b72e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634b732: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634b736: 8b 09 mov (%rcx),%ecx + 6634b738: 85 c9 test %ecx,%ecx + 6634b73a: 75 1f jne 6634b75b + 6634b73c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634b740: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634b744: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b748: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b74e: 49 63 0a movslq (%r10),%rcx + 6634b751: 8d 59 01 lea 0x1(%rcx),%ebx + 6634b754: 41 89 1a mov %ebx,(%r10) + 6634b757: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634b75b: 48 83 c0 08 add $0x8,%rax + 6634b75f: 48 83 c2 04 add $0x4,%rdx + 6634b763: 48 3d d0 00 00 00 cmp $0xd0,%rax + 6634b769: 75 95 jne 6634b700 + 6634b76b: 48 83 c4 28 add $0x28,%rsp + 6634b76f: 5b pop %rbx + 6634b770: 5e pop %rsi + 6634b771: 5f pop %rdi + 6634b772: 5d pop %rbp + 6634b773: 41 5c pop %r12 + 6634b775: 41 5d pop %r13 + 6634b777: c3 retq + 6634b778: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634b77f: 00 -000000006634b910 : - 6634b910: 41 55 push %r13 - 6634b912: 41 54 push %r12 - 6634b914: 55 push %rbp - 6634b915: 57 push %rdi - 6634b916: 56 push %rsi - 6634b917: 53 push %rbx - 6634b918: 48 83 ec 28 sub $0x28,%rsp - 6634b91c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634b920: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx - 6634b927: 48 89 cb mov %rcx,%rbx - 6634b92a: 8b 12 mov (%rdx),%edx - 6634b92c: 85 d2 test %edx,%edx - 6634b92e: 0f 84 3c 01 00 00 je 6634ba70 - 6634b934: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634b938: be 2c 00 00 00 mov $0x2c,%esi - 6634b93d: 4c 8d 2d bc 86 00 00 lea 0x86bc(%rip),%r13 # 66354000 <.rdata> - 6634b944: 4c 8d 25 c5 86 00 00 lea 0x86c5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b94b: 8b 0a mov (%rdx),%ecx - 6634b94d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634b951: 8b 12 mov (%rdx),%edx - 6634b953: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634b956: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634b95a: 8b 09 mov (%rcx),%ecx - 6634b95c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634b95f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634b963: 8b 09 mov (%rcx),%ecx - 6634b965: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634b968: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634b96c: 8b 39 mov (%rcx),%edi - 6634b96e: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634b972: c1 e7 04 shl $0x4,%edi - 6634b975: 01 fa add %edi,%edx - 6634b977: 8b 39 mov (%rcx),%edi - 6634b979: 48 8b 48 48 mov 0x48(%rax),%rcx - 6634b97d: c1 e7 05 shl $0x5,%edi - 6634b980: 01 d7 add %edx,%edi - 6634b982: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634b986: 8b 12 mov (%rdx),%edx - 6634b988: c1 e2 06 shl $0x6,%edx - 6634b98b: 01 d7 add %edx,%edi - 6634b98d: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634b991: 48 8b 40 50 mov 0x50(%rax),%rax - 6634b995: 8b 12 mov (%rdx),%edx - 6634b997: c1 e2 07 shl $0x7,%edx - 6634b99a: 01 fa add %edi,%edx - 6634b99c: 8b 39 mov (%rcx),%edi - 6634b99e: c1 e7 08 shl $0x8,%edi - 6634b9a1: 01 fa add %edi,%edx - 6634b9a3: 8b 38 mov (%rax),%edi - 6634b9a5: c1 e7 09 shl $0x9,%edi - 6634b9a8: 01 d7 add %edx,%edi - 6634b9aa: 48 63 ef movslq %edi,%rbp - 6634b9ad: 48 c1 e5 02 shl $0x2,%rbp - 6634b9b1: 85 ff test %edi,%edi - 6634b9b3: 78 05 js 6634b9ba - 6634b9b5: 39 7b 38 cmp %edi,0x38(%rbx) - 6634b9b8: 7f 11 jg 6634b9cb - 6634b9ba: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b9c0: 4c 89 ea mov %r13,%rdx - 6634b9c3: 4c 89 e1 mov %r12,%rcx - 6634b9c6: e8 85 65 00 00 callq 66351f50 <_assert> - 6634b9cb: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634b9cf: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634b9d3: 48 01 f2 add %rsi,%rdx - 6634b9d6: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b9d9: 8b 0a mov (%rdx),%ecx - 6634b9db: 39 c8 cmp %ecx,%eax - 6634b9dd: 74 69 je 6634ba48 - 6634b9df: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634b9e3: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634b9e7: 41 89 c3 mov %eax,%r11d - 6634b9ea: 41 29 cb sub %ecx,%r11d - 6634b9ed: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634b9f1: 45 01 18 add %r11d,(%r8) - 6634b9f4: 89 02 mov %eax,(%rdx) - 6634b9f6: 31 d2 xor %edx,%edx - 6634b9f8: 41 8b 00 mov (%r8),%eax - 6634b9fb: 85 c0 test %eax,%eax - 6634b9fd: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634ba01: 0f 9f c2 setg %dl - 6634ba04: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634ba08: 3b 10 cmp (%rax),%edx - 6634ba0a: 74 3c je 6634ba48 - 6634ba0c: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634ba10: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634ba14: 8b 00 mov (%rax),%eax - 6634ba16: 85 c0 test %eax,%eax - 6634ba18: 75 2e jne 6634ba48 - 6634ba1a: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ba1e: 48 8b 0d 0b bf 00 00 mov 0xbf0b(%rip),%rcx # 66357930 - 6634ba25: 4c 8b 05 f4 be 00 00 mov 0xbef4(%rip),%r8 # 66357920 - 6634ba2c: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634ba30: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ba34: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ba3a: 48 63 01 movslq (%rcx),%rax - 6634ba3d: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ba41: 44 89 09 mov %r9d,(%rcx) - 6634ba44: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ba48: 48 83 c6 04 add $0x4,%rsi - 6634ba4c: 81 c7 00 04 00 00 add $0x400,%edi - 6634ba52: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634ba59: 48 83 fe 4c cmp $0x4c,%rsi - 6634ba5d: 0f 85 4e ff ff ff jne 6634b9b1 - 6634ba63: 48 83 c4 28 add $0x28,%rsp - 6634ba67: 5b pop %rbx - 6634ba68: 5e pop %rsi - 6634ba69: 5f pop %rdi - 6634ba6a: 5d pop %rbp - 6634ba6b: 41 5c pop %r12 - 6634ba6d: 41 5d pop %r13 - 6634ba6f: c3 retq - 6634ba70: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634ba74: 4c 8b 05 a5 be 00 00 mov 0xbea5(%rip),%r8 # 66357920 - 6634ba7b: 48 8b 0d ae be 00 00 mov 0xbeae(%rip),%rcx # 66357930 - 6634ba82: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634ba86: 45 85 c9 test %r9d,%r9d - 6634ba89: 74 58 je 6634bae3 - 6634ba8b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ba8f: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634ba93: 45 29 0a sub %r9d,(%r10) - 6634ba96: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634ba9d: 45 8b 22 mov (%r10),%r12d - 6634baa0: 45 31 d2 xor %r10d,%r10d - 6634baa3: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634baa7: 45 85 e4 test %r12d,%r12d - 6634baaa: 41 0f 9f c2 setg %r10b - 6634baae: 45 3b 11 cmp (%r9),%r10d - 6634bab1: 74 30 je 6634bae3 - 6634bab3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bab7: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634babb: 41 8b 29 mov (%r9),%ebp - 6634babe: 85 ed test %ebp,%ebp - 6634bac0: 75 21 jne 6634bae3 - 6634bac2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bac6: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634baca: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bace: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bad5: 4c 63 09 movslq (%rcx),%r9 - 6634bad8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634badc: 44 89 19 mov %r11d,(%rcx) - 6634badf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bae3: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634bae7: 45 85 c9 test %r9d,%r9d - 6634baea: 74 57 je 6634bb43 - 6634baec: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634baf0: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634baf4: 45 29 0a sub %r9d,(%r10) - 6634baf7: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634bafe: 41 8b 3a mov (%r10),%edi - 6634bb01: 45 31 d2 xor %r10d,%r10d - 6634bb04: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634bb08: 85 ff test %edi,%edi - 6634bb0a: 41 0f 9f c2 setg %r10b - 6634bb0e: 45 3b 11 cmp (%r9),%r10d - 6634bb11: 74 30 je 6634bb43 - 6634bb13: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bb17: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634bb1b: 41 8b 31 mov (%r9),%esi - 6634bb1e: 85 f6 test %esi,%esi - 6634bb20: 75 21 jne 6634bb43 - 6634bb22: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bb26: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634bb2a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bb2e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bb35: 4c 63 09 movslq (%rcx),%r9 - 6634bb38: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bb3c: 44 89 19 mov %r11d,(%rcx) - 6634bb3f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bb43: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634bb47: 45 85 c9 test %r9d,%r9d - 6634bb4a: 74 59 je 6634bba5 - 6634bb4c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bb50: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634bb54: 45 29 0a sub %r9d,(%r10) - 6634bb57: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634bb5e: 45 8b 1a mov (%r10),%r11d - 6634bb61: 45 31 d2 xor %r10d,%r10d - 6634bb64: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634bb68: 45 85 db test %r11d,%r11d - 6634bb6b: 41 0f 9f c2 setg %r10b - 6634bb6f: 45 3b 11 cmp (%r9),%r10d - 6634bb72: 74 31 je 6634bba5 - 6634bb74: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bb78: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634bb7c: 45 8b 11 mov (%r9),%r10d - 6634bb7f: 45 85 d2 test %r10d,%r10d - 6634bb82: 75 21 jne 6634bba5 - 6634bb84: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bb88: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634bb8c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bb90: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bb97: 4c 63 09 movslq (%rcx),%r9 - 6634bb9a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bb9e: 44 89 19 mov %r11d,(%rcx) - 6634bba1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bba5: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634bba9: 45 85 c9 test %r9d,%r9d - 6634bbac: 74 59 je 6634bc07 - 6634bbae: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bbb2: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634bbb6: 45 29 0a sub %r9d,(%r10) - 6634bbb9: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634bbc0: 45 8b 0a mov (%r10),%r9d - 6634bbc3: 45 31 d2 xor %r10d,%r10d - 6634bbc6: 45 85 c9 test %r9d,%r9d - 6634bbc9: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634bbcd: 41 0f 9f c2 setg %r10b - 6634bbd1: 45 3b 11 cmp (%r9),%r10d - 6634bbd4: 74 31 je 6634bc07 - 6634bbd6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bbda: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634bbde: 45 8b 29 mov (%r9),%r13d - 6634bbe1: 45 85 ed test %r13d,%r13d - 6634bbe4: 75 21 jne 6634bc07 - 6634bbe6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bbea: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634bbee: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bbf2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bbf9: 4c 63 09 movslq (%rcx),%r9 - 6634bbfc: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bc00: 44 89 19 mov %r11d,(%rcx) - 6634bc03: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bc07: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634bc0b: 45 85 c9 test %r9d,%r9d - 6634bc0e: 74 58 je 6634bc68 - 6634bc10: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bc14: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634bc18: 45 29 0a sub %r9d,(%r10) - 6634bc1b: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634bc22: 45 8b 22 mov (%r10),%r12d - 6634bc25: 45 31 d2 xor %r10d,%r10d - 6634bc28: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634bc2c: 45 85 e4 test %r12d,%r12d - 6634bc2f: 41 0f 9f c2 setg %r10b - 6634bc33: 45 3b 11 cmp (%r9),%r10d - 6634bc36: 74 30 je 6634bc68 - 6634bc38: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bc3c: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634bc40: 41 8b 29 mov (%r9),%ebp - 6634bc43: 85 ed test %ebp,%ebp - 6634bc45: 75 21 jne 6634bc68 - 6634bc47: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bc4b: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634bc4f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bc53: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bc5a: 4c 63 09 movslq (%rcx),%r9 - 6634bc5d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bc61: 44 89 19 mov %r11d,(%rcx) - 6634bc64: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bc68: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634bc6c: 45 85 c9 test %r9d,%r9d - 6634bc6f: 74 63 je 6634bcd4 - 6634bc71: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bc75: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634bc7c: 45 29 0a sub %r9d,(%r10) - 6634bc7f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634bc86: 41 8b 3a mov (%r10),%edi - 6634bc89: 45 31 d2 xor %r10d,%r10d - 6634bc8c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634bc93: 85 ff test %edi,%edi - 6634bc95: 41 0f 9f c2 setg %r10b - 6634bc99: 45 3b 11 cmp (%r9),%r10d - 6634bc9c: 74 36 je 6634bcd4 - 6634bc9e: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bca2: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634bca9: 41 8b 31 mov (%r9),%esi - 6634bcac: 85 f6 test %esi,%esi - 6634bcae: 75 24 jne 6634bcd4 - 6634bcb0: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bcb4: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634bcbb: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bcbf: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bcc6: 4c 63 09 movslq (%rcx),%r9 - 6634bcc9: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bccd: 44 89 19 mov %r11d,(%rcx) - 6634bcd0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bcd4: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634bcd8: 45 85 c9 test %r9d,%r9d - 6634bcdb: 74 65 je 6634bd42 - 6634bcdd: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bce1: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634bce8: 45 29 0a sub %r9d,(%r10) - 6634bceb: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634bcf2: 45 8b 1a mov (%r10),%r11d - 6634bcf5: 45 31 d2 xor %r10d,%r10d - 6634bcf8: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634bcff: 45 85 db test %r11d,%r11d - 6634bd02: 41 0f 9f c2 setg %r10b - 6634bd06: 45 3b 11 cmp (%r9),%r10d - 6634bd09: 74 37 je 6634bd42 - 6634bd0b: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bd0f: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634bd16: 45 8b 11 mov (%r9),%r10d - 6634bd19: 45 85 d2 test %r10d,%r10d - 6634bd1c: 75 24 jne 6634bd42 - 6634bd1e: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bd22: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634bd29: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bd2d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bd34: 4c 63 09 movslq (%rcx),%r9 - 6634bd37: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bd3b: 44 89 19 mov %r11d,(%rcx) - 6634bd3e: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bd42: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634bd46: 45 85 c9 test %r9d,%r9d - 6634bd49: 0f 84 14 fd ff ff je 6634ba63 - 6634bd4f: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bd53: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax - 6634bd5a: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634bd61: 45 29 0a sub %r9d,(%r10) - 6634bd64: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634bd6b: 31 d2 xor %edx,%edx - 6634bd6d: 45 8b 0a mov (%r10),%r9d - 6634bd70: 45 85 c9 test %r9d,%r9d - 6634bd73: 0f 9f c2 setg %dl - 6634bd76: 3b 10 cmp (%rax),%edx - 6634bd78: 0f 84 e5 fc ff ff je 6634ba63 - 6634bd7e: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634bd82: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax - 6634bd89: 8b 00 mov (%rax),%eax - 6634bd8b: 85 c0 test %eax,%eax - 6634bd8d: 0f 85 d0 fc ff ff jne 6634ba63 - 6634bd93: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634bd97: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx - 6634bd9e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634bda2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634bda8: 48 63 01 movslq (%rcx),%rax - 6634bdab: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634bdaf: 44 89 09 mov %r9d,(%rcx) - 6634bdb2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634bdb6: 48 83 c4 28 add $0x28,%rsp - 6634bdba: 5b pop %rbx - 6634bdbb: 5e pop %rsi - 6634bdbc: 5f pop %rdi - 6634bdbd: 5d pop %rbp - 6634bdbe: 41 5c pop %r12 - 6634bdc0: 41 5d pop %r13 - 6634bdc2: c3 retq - 6634bdc3: 0f 1f 00 nopl (%rax) - 6634bdc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634bdcd: 00 00 00 +000000006634b780 : + 6634b780: 41 55 push %r13 + 6634b782: 41 54 push %r12 + 6634b784: 55 push %rbp + 6634b785: 57 push %rdi + 6634b786: 56 push %rsi + 6634b787: 53 push %rbx + 6634b788: 48 83 ec 28 sub $0x28,%rsp + 6634b78c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634b790: 49 8b 81 d8 00 00 00 mov 0xd8(%r9),%rax + 6634b797: 48 89 ce mov %rcx,%rsi + 6634b79a: 8b 18 mov (%rax),%ebx + 6634b79c: 85 db test %ebx,%ebx + 6634b79e: 0f 84 3f 01 00 00 je 6634b8e3 + 6634b7a4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634b7a8: bb 2c 00 00 00 mov $0x2c,%ebx + 6634b7ad: 4c 8d 2d 4c 88 00 00 lea 0x884c(%rip),%r13 # 66354000 <.rdata> + 6634b7b4: 4c 8d 25 55 88 00 00 lea 0x8855(%rip),%r12 # 66354010 <.rdata+0x10> + 6634b7bb: 8b 10 mov (%rax),%edx + 6634b7bd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634b7c1: 8b 00 mov (%rax),%eax + 6634b7c3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634b7c6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634b7ca: 8b 12 mov (%rdx),%edx + 6634b7cc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634b7cf: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b7d3: 8b 12 mov (%rdx),%edx + 6634b7d5: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634b7d8: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634b7dc: 8b 3a mov (%rdx),%edi + 6634b7de: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634b7e2: c1 e7 04 shl $0x4,%edi + 6634b7e5: 01 f8 add %edi,%eax + 6634b7e7: 8b 3a mov (%rdx),%edi + 6634b7e9: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634b7ed: c1 e7 05 shl $0x5,%edi + 6634b7f0: 01 c7 add %eax,%edi + 6634b7f2: 49 8b 41 38 mov 0x38(%r9),%rax + 6634b7f6: 8b 00 mov (%rax),%eax + 6634b7f8: c1 e0 06 shl $0x6,%eax + 6634b7fb: 01 c7 add %eax,%edi + 6634b7fd: 49 8b 41 40 mov 0x40(%r9),%rax + 6634b801: 8b 00 mov (%rax),%eax + 6634b803: c1 e0 07 shl $0x7,%eax + 6634b806: 01 f8 add %edi,%eax + 6634b808: 8b 3a mov (%rdx),%edi + 6634b80a: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634b80e: c1 e7 08 shl $0x8,%edi + 6634b811: 01 f8 add %edi,%eax + 6634b813: 8b 3a mov (%rdx),%edi + 6634b815: c1 e7 09 shl $0x9,%edi + 6634b818: 01 c7 add %eax,%edi + 6634b81a: 48 63 ef movslq %edi,%rbp + 6634b81d: 48 c1 e5 02 shl $0x2,%rbp + 6634b821: 85 ff test %edi,%edi + 6634b823: 78 05 js 6634b82a + 6634b825: 39 7e 38 cmp %edi,0x38(%rsi) + 6634b828: 7f 11 jg 6634b83b + 6634b82a: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b830: 4c 89 ea mov %r13,%rdx + 6634b833: 4c 89 e1 mov %r12,%rcx + 6634b836: e8 d5 69 00 00 callq 66352210 <_assert> + 6634b83b: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634b83f: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634b843: 48 01 da add %rbx,%rdx + 6634b846: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634b849: 8b 0a mov (%rdx),%ecx + 6634b84b: 39 c8 cmp %ecx,%eax + 6634b84d: 74 6c je 6634b8bb + 6634b84f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b853: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634b857: 41 89 c3 mov %eax,%r11d + 6634b85a: 41 29 cb sub %ecx,%r11d + 6634b85d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634b861: 45 01 18 add %r11d,(%r8) + 6634b864: 89 02 mov %eax,(%rdx) + 6634b866: 31 d2 xor %edx,%edx + 6634b868: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634b86c: 45 8b 18 mov (%r8),%r11d + 6634b86f: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b873: 45 85 db test %r11d,%r11d + 6634b876: 0f 9f c2 setg %dl + 6634b879: 3b 10 cmp (%rax),%edx + 6634b87b: 74 3e je 6634b8bb + 6634b87d: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634b881: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634b885: 44 8b 10 mov (%rax),%r10d + 6634b888: 45 85 d2 test %r10d,%r10d + 6634b88b: 75 2e jne 6634b8bb + 6634b88d: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634b891: 48 8b 0d 98 c0 00 00 mov 0xc098(%rip),%rcx # 66357930 + 6634b898: 4c 8b 05 81 c0 00 00 mov 0xc081(%rip),%r8 # 66357920 + 6634b89f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634b8a3: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b8a7: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b8ad: 48 63 01 movslq (%rcx),%rax + 6634b8b0: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b8b4: 44 89 09 mov %r9d,(%rcx) + 6634b8b7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b8bb: 48 83 c3 04 add $0x4,%rbx + 6634b8bf: 81 c7 00 04 00 00 add $0x400,%edi + 6634b8c5: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634b8cc: 48 83 fb 6c cmp $0x6c,%rbx + 6634b8d0: 0f 85 4b ff ff ff jne 6634b821 + 6634b8d6: 48 83 c4 28 add $0x28,%rsp + 6634b8da: 5b pop %rbx + 6634b8db: 5e pop %rsi + 6634b8dc: 5f pop %rdi + 6634b8dd: 5d pop %rbp + 6634b8de: 41 5c pop %r12 + 6634b8e0: 41 5d pop %r13 + 6634b8e2: c3 retq + 6634b8e3: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634b8e7: 4c 8b 1d 32 c0 00 00 mov 0xc032(%rip),%r11 # 66357920 + 6634b8ee: 4c 8b 15 3b c0 00 00 mov 0xc03b(%rip),%r10 # 66357930 + 6634b8f5: 48 8d 50 2c lea 0x2c(%rax),%rdx + 6634b8f9: b8 58 00 00 00 mov $0x58,%eax + 6634b8fe: 66 90 xchg %ax,%ax + 6634b900: 8b 0a mov (%rdx),%ecx + 6634b902: 85 c9 test %ecx,%ecx + 6634b904: 74 55 je 6634b95b + 6634b906: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634b90a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634b90e: 41 29 08 sub %ecx,(%r8) + 6634b911: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634b917: 45 8b 00 mov (%r8),%r8d + 6634b91a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634b91e: 45 85 c0 test %r8d,%r8d + 6634b921: 41 0f 9f c0 setg %r8b + 6634b925: 45 0f b6 c0 movzbl %r8b,%r8d + 6634b929: 44 3b 01 cmp (%rcx),%r8d + 6634b92c: 74 2d je 6634b95b + 6634b92e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634b932: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634b936: 8b 09 mov (%rcx),%ecx + 6634b938: 85 c9 test %ecx,%ecx + 6634b93a: 75 1f jne 6634b95b + 6634b93c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634b940: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634b944: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b948: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b94e: 49 63 0a movslq (%r10),%rcx + 6634b951: 8d 59 01 lea 0x1(%rcx),%ebx + 6634b954: 41 89 1a mov %ebx,(%r10) + 6634b957: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634b95b: 48 83 c0 08 add $0x8,%rax + 6634b95f: 48 83 c2 04 add $0x4,%rdx + 6634b963: 48 3d d8 00 00 00 cmp $0xd8,%rax + 6634b969: 75 95 jne 6634b900 + 6634b96b: 48 83 c4 28 add $0x28,%rsp + 6634b96f: 5b pop %rbx + 6634b970: 5e pop %rsi + 6634b971: 5f pop %rdi + 6634b972: 5d pop %rbp + 6634b973: 41 5c pop %r12 + 6634b975: 41 5d pop %r13 + 6634b977: c3 retq + 6634b978: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634b97f: 00 -000000006634bdd0 : - 6634bdd0: 41 55 push %r13 - 6634bdd2: 41 54 push %r12 - 6634bdd4: 55 push %rbp - 6634bdd5: 57 push %rdi - 6634bdd6: 56 push %rsi - 6634bdd7: 53 push %rbx - 6634bdd8: 48 83 ec 28 sub $0x28,%rsp - 6634bddc: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634bde0: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx - 6634bde7: 48 89 cb mov %rcx,%rbx - 6634bdea: 8b 12 mov (%rdx),%edx - 6634bdec: 85 d2 test %edx,%edx - 6634bdee: 0f 84 2c 01 00 00 je 6634bf20 - 6634bdf4: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634bdf8: be 24 00 00 00 mov $0x24,%esi - 6634bdfd: 4c 8d 2d fc 81 00 00 lea 0x81fc(%rip),%r13 # 66354000 <.rdata> - 6634be04: 4c 8d 25 05 82 00 00 lea 0x8205(%rip),%r12 # 66354010 <.rdata+0x10> - 6634be0b: 8b 0a mov (%rdx),%ecx - 6634be0d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634be11: 8b 12 mov (%rdx),%edx - 6634be13: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634be16: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634be1a: 8b 09 mov (%rcx),%ecx - 6634be1c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634be1f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634be23: 8b 09 mov (%rcx),%ecx - 6634be25: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634be28: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634be2c: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634be30: 8b 12 mov (%rdx),%edx - 6634be32: c1 e2 04 shl $0x4,%edx - 6634be35: 01 d7 add %edx,%edi - 6634be37: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634be3b: 48 8b 40 40 mov 0x40(%rax),%rax - 6634be3f: 8b 12 mov (%rdx),%edx - 6634be41: c1 e2 05 shl $0x5,%edx - 6634be44: 01 fa add %edi,%edx - 6634be46: 8b 39 mov (%rcx),%edi - 6634be48: c1 e7 06 shl $0x6,%edi - 6634be4b: 01 fa add %edi,%edx - 6634be4d: 8b 38 mov (%rax),%edi - 6634be4f: c1 e7 07 shl $0x7,%edi - 6634be52: 01 d7 add %edx,%edi - 6634be54: 48 63 ef movslq %edi,%rbp - 6634be57: 48 c1 e5 02 shl $0x2,%rbp - 6634be5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634be60: 85 ff test %edi,%edi - 6634be62: 78 05 js 6634be69 - 6634be64: 39 7b 38 cmp %edi,0x38(%rbx) - 6634be67: 7f 11 jg 6634be7a - 6634be69: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634be6f: 4c 89 ea mov %r13,%rdx - 6634be72: 4c 89 e1 mov %r12,%rcx - 6634be75: e8 d6 60 00 00 callq 66351f50 <_assert> - 6634be7a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634be7e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634be82: 48 01 f2 add %rsi,%rdx - 6634be85: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634be88: 8b 0a mov (%rdx),%ecx - 6634be8a: 39 c8 cmp %ecx,%eax - 6634be8c: 74 69 je 6634bef7 - 6634be8e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634be92: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634be96: 41 89 c3 mov %eax,%r11d - 6634be99: 41 29 cb sub %ecx,%r11d - 6634be9c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634bea0: 45 01 18 add %r11d,(%r8) - 6634bea3: 89 02 mov %eax,(%rdx) - 6634bea5: 31 d2 xor %edx,%edx - 6634bea7: 41 8b 00 mov (%r8),%eax - 6634beaa: 85 c0 test %eax,%eax - 6634beac: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634beb0: 0f 9f c2 setg %dl - 6634beb3: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634beb7: 3b 10 cmp (%rax),%edx - 6634beb9: 74 3c je 6634bef7 - 6634bebb: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634bebf: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634bec3: 8b 00 mov (%rax),%eax - 6634bec5: 85 c0 test %eax,%eax - 6634bec7: 75 2e jne 6634bef7 - 6634bec9: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634becd: 48 8b 0d 5c ba 00 00 mov 0xba5c(%rip),%rcx # 66357930 - 6634bed4: 4c 8b 05 45 ba 00 00 mov 0xba45(%rip),%r8 # 66357920 - 6634bedb: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634bedf: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634bee3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634bee9: 48 63 01 movslq (%rcx),%rax - 6634beec: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634bef0: 44 89 09 mov %r9d,(%rcx) - 6634bef3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634bef7: 48 83 c6 04 add $0x4,%rsi - 6634befb: 81 c7 00 01 00 00 add $0x100,%edi - 6634bf01: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634bf08: 48 83 fe 44 cmp $0x44,%rsi - 6634bf0c: 0f 85 4e ff ff ff jne 6634be60 - 6634bf12: 48 83 c4 28 add $0x28,%rsp - 6634bf16: 5b pop %rbx - 6634bf17: 5e pop %rsi - 6634bf18: 5f pop %rdi - 6634bf19: 5d pop %rbp - 6634bf1a: 41 5c pop %r12 - 6634bf1c: 41 5d pop %r13 - 6634bf1e: c3 retq - 6634bf1f: 90 nop - 6634bf20: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634bf24: 4c 8b 05 f5 b9 00 00 mov 0xb9f5(%rip),%r8 # 66357920 - 6634bf2b: 48 8b 0d fe b9 00 00 mov 0xb9fe(%rip),%rcx # 66357930 - 6634bf32: 44 8b 4a 24 mov 0x24(%rdx),%r9d - 6634bf36: 45 85 c9 test %r9d,%r9d - 6634bf39: 74 58 je 6634bf93 - 6634bf3b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bf3f: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634bf43: 45 29 0a sub %r9d,(%r10) - 6634bf46: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634bf4d: 45 8b 22 mov (%r10),%r12d - 6634bf50: 45 31 d2 xor %r10d,%r10d - 6634bf53: 4c 8b 48 48 mov 0x48(%rax),%r9 - 6634bf57: 45 85 e4 test %r12d,%r12d - 6634bf5a: 41 0f 9f c2 setg %r10b - 6634bf5e: 45 3b 11 cmp (%r9),%r10d - 6634bf61: 74 30 je 6634bf93 - 6634bf63: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bf67: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634bf6b: 41 8b 29 mov (%r9),%ebp - 6634bf6e: 85 ed test %ebp,%ebp - 6634bf70: 75 21 jne 6634bf93 - 6634bf72: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bf76: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634bf7a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bf7e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bf85: 4c 63 09 movslq (%rcx),%r9 - 6634bf88: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bf8c: 44 89 19 mov %r11d,(%rcx) - 6634bf8f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bf93: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634bf97: 45 85 c9 test %r9d,%r9d - 6634bf9a: 74 57 je 6634bff3 - 6634bf9c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634bfa0: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634bfa4: 45 29 0a sub %r9d,(%r10) - 6634bfa7: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634bfae: 41 8b 3a mov (%r10),%edi - 6634bfb1: 45 31 d2 xor %r10d,%r10d - 6634bfb4: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634bfb8: 85 ff test %edi,%edi - 6634bfba: 41 0f 9f c2 setg %r10b - 6634bfbe: 45 3b 11 cmp (%r9),%r10d - 6634bfc1: 74 30 je 6634bff3 - 6634bfc3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634bfc7: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634bfcb: 41 8b 31 mov (%r9),%esi - 6634bfce: 85 f6 test %esi,%esi - 6634bfd0: 75 21 jne 6634bff3 - 6634bfd2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634bfd6: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634bfda: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634bfde: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634bfe5: 4c 63 09 movslq (%rcx),%r9 - 6634bfe8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634bfec: 44 89 19 mov %r11d,(%rcx) - 6634bfef: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634bff3: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634bff7: 45 85 c9 test %r9d,%r9d - 6634bffa: 74 59 je 6634c055 - 6634bffc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c000: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634c004: 45 29 0a sub %r9d,(%r10) - 6634c007: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634c00e: 45 8b 1a mov (%r10),%r11d - 6634c011: 45 31 d2 xor %r10d,%r10d - 6634c014: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634c018: 45 85 db test %r11d,%r11d - 6634c01b: 41 0f 9f c2 setg %r10b - 6634c01f: 45 3b 11 cmp (%r9),%r10d - 6634c022: 74 31 je 6634c055 - 6634c024: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c028: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634c02c: 45 8b 11 mov (%r9),%r10d - 6634c02f: 45 85 d2 test %r10d,%r10d - 6634c032: 75 21 jne 6634c055 - 6634c034: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c038: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634c03c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c040: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c047: 4c 63 09 movslq (%rcx),%r9 - 6634c04a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c04e: 44 89 19 mov %r11d,(%rcx) - 6634c051: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c055: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634c059: 45 85 c9 test %r9d,%r9d - 6634c05c: 74 59 je 6634c0b7 - 6634c05e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c062: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634c066: 45 29 0a sub %r9d,(%r10) - 6634c069: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634c070: 45 8b 0a mov (%r10),%r9d - 6634c073: 45 31 d2 xor %r10d,%r10d - 6634c076: 45 85 c9 test %r9d,%r9d - 6634c079: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634c07d: 41 0f 9f c2 setg %r10b - 6634c081: 45 3b 11 cmp (%r9),%r10d - 6634c084: 74 31 je 6634c0b7 - 6634c086: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c08a: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634c08e: 45 8b 29 mov (%r9),%r13d - 6634c091: 45 85 ed test %r13d,%r13d - 6634c094: 75 21 jne 6634c0b7 - 6634c096: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c09a: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634c09e: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c0a2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c0a9: 4c 63 09 movslq (%rcx),%r9 - 6634c0ac: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c0b0: 44 89 19 mov %r11d,(%rcx) - 6634c0b3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c0b7: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634c0bb: 45 85 c9 test %r9d,%r9d - 6634c0be: 74 58 je 6634c118 - 6634c0c0: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c0c4: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634c0c8: 45 29 0a sub %r9d,(%r10) - 6634c0cb: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634c0d2: 45 8b 22 mov (%r10),%r12d - 6634c0d5: 45 31 d2 xor %r10d,%r10d - 6634c0d8: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634c0dc: 45 85 e4 test %r12d,%r12d - 6634c0df: 41 0f 9f c2 setg %r10b - 6634c0e3: 45 3b 11 cmp (%r9),%r10d - 6634c0e6: 74 30 je 6634c118 - 6634c0e8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c0ec: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634c0f0: 41 8b 29 mov (%r9),%ebp - 6634c0f3: 85 ed test %ebp,%ebp - 6634c0f5: 75 21 jne 6634c118 - 6634c0f7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c0fb: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634c0ff: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c103: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c10a: 4c 63 09 movslq (%rcx),%r9 - 6634c10d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c111: 44 89 19 mov %r11d,(%rcx) - 6634c114: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c118: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634c11c: 45 85 c9 test %r9d,%r9d - 6634c11f: 74 57 je 6634c178 - 6634c121: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c125: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634c129: 45 29 0a sub %r9d,(%r10) - 6634c12c: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634c133: 41 8b 3a mov (%r10),%edi - 6634c136: 45 31 d2 xor %r10d,%r10d - 6634c139: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634c13d: 85 ff test %edi,%edi - 6634c13f: 41 0f 9f c2 setg %r10b - 6634c143: 45 3b 11 cmp (%r9),%r10d - 6634c146: 74 30 je 6634c178 - 6634c148: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c14c: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634c150: 41 8b 31 mov (%r9),%esi - 6634c153: 85 f6 test %esi,%esi - 6634c155: 75 21 jne 6634c178 - 6634c157: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c15b: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634c15f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c163: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c16a: 4c 63 09 movslq (%rcx),%r9 - 6634c16d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c171: 44 89 19 mov %r11d,(%rcx) - 6634c174: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c178: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634c17c: 45 85 c9 test %r9d,%r9d - 6634c17f: 74 59 je 6634c1da - 6634c181: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c185: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634c189: 45 29 0a sub %r9d,(%r10) - 6634c18c: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634c193: 45 8b 1a mov (%r10),%r11d - 6634c196: 45 31 d2 xor %r10d,%r10d - 6634c199: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634c19d: 45 85 db test %r11d,%r11d - 6634c1a0: 41 0f 9f c2 setg %r10b - 6634c1a4: 45 3b 11 cmp (%r9),%r10d - 6634c1a7: 74 31 je 6634c1da - 6634c1a9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c1ad: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634c1b1: 45 8b 11 mov (%r9),%r10d - 6634c1b4: 45 85 d2 test %r10d,%r10d - 6634c1b7: 75 21 jne 6634c1da - 6634c1b9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c1bd: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634c1c1: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c1c5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c1cc: 4c 63 09 movslq (%rcx),%r9 - 6634c1cf: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c1d3: 44 89 19 mov %r11d,(%rcx) - 6634c1d6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c1da: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634c1de: 45 85 c9 test %r9d,%r9d - 6634c1e1: 0f 84 2b fd ff ff je 6634bf12 - 6634c1e7: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c1eb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 6634c1f2: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634c1f9: 45 29 0a sub %r9d,(%r10) - 6634c1fc: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634c203: 31 d2 xor %edx,%edx - 6634c205: 45 8b 0a mov (%r10),%r9d - 6634c208: 45 85 c9 test %r9d,%r9d - 6634c20b: 0f 9f c2 setg %dl - 6634c20e: 3b 10 cmp (%rax),%edx - 6634c210: 0f 84 fc fc ff ff je 6634bf12 - 6634c216: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c21a: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 6634c221: 8b 00 mov (%rax),%eax - 6634c223: 85 c0 test %eax,%eax - 6634c225: 0f 85 e7 fc ff ff jne 6634bf12 - 6634c22b: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c22f: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 6634c236: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c23a: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c240: 48 63 01 movslq (%rcx),%rax - 6634c243: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c247: 44 89 09 mov %r9d,(%rcx) - 6634c24a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c24e: 48 83 c4 28 add $0x28,%rsp - 6634c252: 5b pop %rbx - 6634c253: 5e pop %rsi - 6634c254: 5f pop %rdi - 6634c255: 5d pop %rbp - 6634c256: 41 5c pop %r12 - 6634c258: 41 5d pop %r13 - 6634c25a: c3 retq - 6634c25b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) +000000006634b980 : + 6634b980: 41 55 push %r13 + 6634b982: 41 54 push %r12 + 6634b984: 55 push %rbp + 6634b985: 57 push %rdi + 6634b986: 56 push %rsi + 6634b987: 53 push %rbx + 6634b988: 48 83 ec 28 sub $0x28,%rsp + 6634b98c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634b990: 49 8b 81 e8 00 00 00 mov 0xe8(%r9),%rax + 6634b997: 48 89 ce mov %rcx,%rsi + 6634b99a: 8b 18 mov (%rax),%ebx + 6634b99c: 85 db test %ebx,%ebx + 6634b99e: 0f 84 5e 01 00 00 je 6634bb02 + 6634b9a4: 49 8b 41 10 mov 0x10(%r9),%rax + 6634b9a8: bb 34 00 00 00 mov $0x34,%ebx + 6634b9ad: 4c 8d 2d 4c 86 00 00 lea 0x864c(%rip),%r13 # 66354000 <.rdata> + 6634b9b4: 4c 8d 25 55 86 00 00 lea 0x8655(%rip),%r12 # 66354010 <.rdata+0x10> + 6634b9bb: 8b 10 mov (%rax),%edx + 6634b9bd: 49 8b 41 08 mov 0x8(%r9),%rax + 6634b9c1: 8b 00 mov (%rax),%eax + 6634b9c3: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634b9c6: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634b9ca: 8b 12 mov (%rdx),%edx + 6634b9cc: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634b9cf: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634b9d3: 8b 12 mov (%rdx),%edx + 6634b9d5: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634b9d8: 49 8b 41 28 mov 0x28(%r9),%rax + 6634b9dc: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634b9e0: 8b 00 mov (%rax),%eax + 6634b9e2: c1 e0 04 shl $0x4,%eax + 6634b9e5: 01 c7 add %eax,%edi + 6634b9e7: 49 8b 41 30 mov 0x30(%r9),%rax + 6634b9eb: 8b 00 mov (%rax),%eax + 6634b9ed: c1 e0 05 shl $0x5,%eax + 6634b9f0: 01 f8 add %edi,%eax + 6634b9f2: 8b 3a mov (%rdx),%edi + 6634b9f4: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634b9f8: c1 e7 06 shl $0x6,%edi + 6634b9fb: 01 f8 add %edi,%eax + 6634b9fd: 8b 3a mov (%rdx),%edi + 6634b9ff: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634ba03: c1 e7 07 shl $0x7,%edi + 6634ba06: 01 c7 add %eax,%edi + 6634ba08: 49 8b 41 48 mov 0x48(%r9),%rax + 6634ba0c: 8b 00 mov (%rax),%eax + 6634ba0e: c1 e0 08 shl $0x8,%eax + 6634ba11: 01 c7 add %eax,%edi + 6634ba13: 49 8b 41 50 mov 0x50(%r9),%rax + 6634ba17: 8b 00 mov (%rax),%eax + 6634ba19: c1 e0 09 shl $0x9,%eax + 6634ba1c: 01 f8 add %edi,%eax + 6634ba1e: 8b 3a mov (%rdx),%edi + 6634ba20: 49 8b 51 60 mov 0x60(%r9),%rdx + 6634ba24: c1 e7 0a shl $0xa,%edi + 6634ba27: 01 f8 add %edi,%eax + 6634ba29: 8b 3a mov (%rdx),%edi + 6634ba2b: c1 e7 0b shl $0xb,%edi + 6634ba2e: 01 c7 add %eax,%edi + 6634ba30: 48 63 ef movslq %edi,%rbp + 6634ba33: 48 c1 e5 02 shl $0x2,%rbp + 6634ba37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ba3e: 00 00 + 6634ba40: 85 ff test %edi,%edi + 6634ba42: 78 05 js 6634ba49 + 6634ba44: 39 7e 38 cmp %edi,0x38(%rsi) + 6634ba47: 7f 11 jg 6634ba5a + 6634ba49: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ba4f: 4c 89 ea mov %r13,%rdx + 6634ba52: 4c 89 e1 mov %r12,%rcx + 6634ba55: e8 b6 67 00 00 callq 66352210 <_assert> + 6634ba5a: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634ba5e: 48 8b 46 40 mov 0x40(%rsi),%rax + 6634ba62: 48 01 da add %rbx,%rdx + 6634ba65: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634ba68: 8b 0a mov (%rdx),%ecx + 6634ba6a: 39 c8 cmp %ecx,%eax + 6634ba6c: 74 6c je 6634bada + 6634ba6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634ba72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 + 6634ba76: 41 89 c3 mov %eax,%r11d + 6634ba79: 41 29 cb sub %ecx,%r11d + 6634ba7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 + 6634ba80: 45 01 18 add %r11d,(%r8) + 6634ba83: 89 02 mov %eax,(%rdx) + 6634ba85: 31 d2 xor %edx,%edx + 6634ba87: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634ba8b: 45 8b 18 mov (%r8),%r11d + 6634ba8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634ba92: 45 85 db test %r11d,%r11d + 6634ba95: 0f 9f c2 setg %dl + 6634ba98: 3b 10 cmp (%rax),%edx + 6634ba9a: 74 3e je 6634bada + 6634ba9c: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634baa0: 48 8b 04 58 mov (%rax,%rbx,2),%rax + 6634baa4: 44 8b 10 mov (%rax),%r10d + 6634baa7: 45 85 d2 test %r10d,%r10d + 6634baaa: 75 2e jne 6634bada + 6634baac: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634bab0: 48 8b 0d 79 be 00 00 mov 0xbe79(%rip),%rcx # 66357930 + 6634bab7: 4c 8b 05 62 be 00 00 mov 0xbe62(%rip),%r8 # 66357920 + 6634babe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634bac2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634bac6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634bacc: 48 63 01 movslq (%rcx),%rax + 6634bacf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634bad3: 44 89 09 mov %r9d,(%rcx) + 6634bad6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634bada: 48 83 c3 04 add $0x4,%rbx + 6634bade: 81 c7 00 10 00 00 add $0x1000,%edi + 6634bae4: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 6634baeb: 48 83 fb 74 cmp $0x74,%rbx + 6634baef: 0f 85 4b ff ff ff jne 6634ba40 + 6634baf5: 48 83 c4 28 add $0x28,%rsp + 6634baf9: 5b pop %rbx + 6634bafa: 5e pop %rsi + 6634bafb: 5f pop %rdi + 6634bafc: 5d pop %rbp + 6634bafd: 41 5c pop %r12 + 6634baff: 41 5d pop %r13 + 6634bb01: c3 retq + 6634bb02: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634bb06: 4c 8b 1d 13 be 00 00 mov 0xbe13(%rip),%r11 # 66357920 + 6634bb0d: 4c 8b 15 1c be 00 00 mov 0xbe1c(%rip),%r10 # 66357930 + 6634bb14: 48 8d 50 34 lea 0x34(%rax),%rdx + 6634bb18: b8 68 00 00 00 mov $0x68,%eax + 6634bb1d: 0f 1f 00 nopl (%rax) + 6634bb20: 8b 0a mov (%rdx),%ecx + 6634bb22: 85 c9 test %ecx,%ecx + 6634bb24: 74 55 je 6634bb7b + 6634bb26: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634bb2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634bb2e: 41 29 08 sub %ecx,(%r8) + 6634bb31: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634bb37: 45 8b 00 mov (%r8),%r8d + 6634bb3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634bb3e: 45 85 c0 test %r8d,%r8d + 6634bb41: 41 0f 9f c0 setg %r8b + 6634bb45: 45 0f b6 c0 movzbl %r8b,%r8d + 6634bb49: 44 3b 01 cmp (%rcx),%r8d + 6634bb4c: 74 2d je 6634bb7b + 6634bb4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx + 6634bb52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634bb56: 8b 09 mov (%rcx),%ecx + 6634bb58: 85 c9 test %ecx,%ecx + 6634bb5a: 75 1f jne 6634bb7b + 6634bb5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx + 6634bb60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634bb64: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634bb68: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634bb6e: 49 63 0a movslq (%r10),%rcx + 6634bb71: 8d 59 01 lea 0x1(%rcx),%ebx + 6634bb74: 41 89 1a mov %ebx,(%r10) + 6634bb77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634bb7b: 48 83 c0 08 add $0x8,%rax + 6634bb7f: 48 83 c2 04 add $0x4,%rdx + 6634bb83: 48 3d e8 00 00 00 cmp $0xe8,%rax + 6634bb89: 75 95 jne 6634bb20 + 6634bb8b: 48 83 c4 28 add $0x28,%rsp + 6634bb8f: 5b pop %rbx + 6634bb90: 5e pop %rsi + 6634bb91: 5f pop %rdi + 6634bb92: 5d pop %rbp + 6634bb93: 41 5c pop %r12 + 6634bb95: 41 5d pop %r13 + 6634bb97: c3 retq + 6634bb98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634bb9f: 00 -000000006634c260 : - 6634c260: 41 55 push %r13 - 6634c262: 41 54 push %r12 - 6634c264: 55 push %rbp - 6634c265: 57 push %rdi - 6634c266: 56 push %rsi - 6634c267: 53 push %rbx - 6634c268: 48 83 ec 28 sub $0x28,%rsp - 6634c26c: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634c270: 48 8b 42 68 mov 0x68(%rdx),%rax - 6634c274: 48 89 cb mov %rcx,%rbx - 6634c277: 8b 00 mov (%rax),%eax - 6634c279: 85 c0 test %eax,%eax - 6634c27b: 0f 84 ff 00 00 00 je 6634c380 - 6634c281: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c285: be 14 00 00 00 mov $0x14,%esi - 6634c28a: 4c 8d 2d 6f 7d 00 00 lea 0x7d6f(%rip),%r13 # 66354000 <.rdata> - 6634c291: 4c 8d 25 78 7d 00 00 lea 0x7d78(%rip),%r12 # 66354010 <.rdata+0x10> - 6634c298: 8b 08 mov (%rax),%ecx - 6634c29a: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634c29e: 8b 00 mov (%rax),%eax - 6634c2a0: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634c2a3: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634c2a7: 48 8b 52 20 mov 0x20(%rdx),%rdx - 6634c2ab: 8b 09 mov (%rcx),%ecx - 6634c2ad: 8b 12 mov (%rdx),%edx - 6634c2af: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634c2b2: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634c2b5: 48 63 ef movslq %edi,%rbp - 6634c2b8: 48 c1 e5 02 shl $0x2,%rbp - 6634c2bc: 0f 1f 40 00 nopl 0x0(%rax) - 6634c2c0: 85 ff test %edi,%edi - 6634c2c2: 78 05 js 6634c2c9 - 6634c2c4: 39 7b 38 cmp %edi,0x38(%rbx) - 6634c2c7: 7f 11 jg 6634c2da - 6634c2c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634c2cf: 4c 89 ea mov %r13,%rdx - 6634c2d2: 4c 89 e1 mov %r12,%rcx - 6634c2d5: e8 76 5c 00 00 callq 66351f50 <_assert> - 6634c2da: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634c2de: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634c2e2: 48 01 f2 add %rsi,%rdx - 6634c2e5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634c2e8: 8b 0a mov (%rdx),%ecx - 6634c2ea: 39 c8 cmp %ecx,%eax - 6634c2ec: 74 69 je 6634c357 - 6634c2ee: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634c2f2: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634c2f6: 41 89 c3 mov %eax,%r11d - 6634c2f9: 41 29 cb sub %ecx,%r11d - 6634c2fc: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634c300: 45 01 18 add %r11d,(%r8) - 6634c303: 89 02 mov %eax,(%rdx) - 6634c305: 31 d2 xor %edx,%edx - 6634c307: 41 8b 00 mov (%r8),%eax - 6634c30a: 85 c0 test %eax,%eax - 6634c30c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634c310: 0f 9f c2 setg %dl - 6634c313: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c317: 3b 10 cmp (%rax),%edx - 6634c319: 74 3c je 6634c357 - 6634c31b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c31f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c323: 8b 00 mov (%rax),%eax - 6634c325: 85 c0 test %eax,%eax - 6634c327: 75 2e jne 6634c357 - 6634c329: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c32d: 48 8b 0d fc b5 00 00 mov 0xb5fc(%rip),%rcx # 66357930 - 6634c334: 4c 8b 05 e5 b5 00 00 mov 0xb5e5(%rip),%r8 # 66357920 - 6634c33b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634c33f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c343: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c349: 48 63 01 movslq (%rcx),%rax - 6634c34c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c350: 44 89 09 mov %r9d,(%rcx) - 6634c353: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c357: 48 83 c6 04 add $0x4,%rsi - 6634c35b: 83 c7 10 add $0x10,%edi - 6634c35e: 48 83 c5 40 add $0x40,%rbp - 6634c362: 48 83 fe 34 cmp $0x34,%rsi - 6634c366: 0f 85 54 ff ff ff jne 6634c2c0 - 6634c36c: 48 83 c4 28 add $0x28,%rsp - 6634c370: 5b pop %rbx - 6634c371: 5e pop %rsi - 6634c372: 5f pop %rdi - 6634c373: 5d pop %rbp - 6634c374: 41 5c pop %r12 - 6634c376: 41 5d pop %r13 - 6634c378: c3 retq - 6634c379: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 6634c380: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634c384: 4c 8b 05 95 b5 00 00 mov 0xb595(%rip),%r8 # 66357920 - 6634c38b: 48 8b 0d 9e b5 00 00 mov 0xb59e(%rip),%rcx # 66357930 - 6634c392: 44 8b 48 14 mov 0x14(%rax),%r9d - 6634c396: 45 85 c9 test %r9d,%r9d - 6634c399: 74 59 je 6634c3f4 - 6634c39b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c39f: 4c 8b 5a 28 mov 0x28(%rdx),%r11 - 6634c3a3: 4d 8b 52 28 mov 0x28(%r10),%r10 - 6634c3a7: 45 29 0a sub %r9d,(%r10) - 6634c3aa: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634c3b1: 45 31 c9 xor %r9d,%r9d - 6634c3b4: 45 8b 2a mov (%r10),%r13d - 6634c3b7: 45 85 ed test %r13d,%r13d - 6634c3ba: 41 0f 9f c1 setg %r9b - 6634c3be: 45 39 0b cmp %r9d,(%r11) - 6634c3c1: 74 31 je 6634c3f4 - 6634c3c3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c3c7: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634c3cb: 45 8b 21 mov (%r9),%r12d - 6634c3ce: 45 85 e4 test %r12d,%r12d - 6634c3d1: 75 21 jne 6634c3f4 - 6634c3d3: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c3d7: 4d 8b 51 28 mov 0x28(%r9),%r10 - 6634c3db: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c3df: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c3e6: 4c 63 09 movslq (%rcx),%r9 - 6634c3e9: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c3ed: 44 89 19 mov %r11d,(%rcx) - 6634c3f0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c3f4: 44 8b 48 18 mov 0x18(%rax),%r9d - 6634c3f8: 45 85 c9 test %r9d,%r9d - 6634c3fb: 74 57 je 6634c454 - 6634c3fd: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c401: 4d 8b 52 30 mov 0x30(%r10),%r10 - 6634c405: 45 29 0a sub %r9d,(%r10) - 6634c408: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 6634c40f: 41 8b 2a mov (%r10),%ebp - 6634c412: 45 31 d2 xor %r10d,%r10d - 6634c415: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 6634c419: 85 ed test %ebp,%ebp - 6634c41b: 41 0f 9f c2 setg %r10b - 6634c41f: 45 3b 11 cmp (%r9),%r10d - 6634c422: 74 30 je 6634c454 - 6634c424: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c428: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634c42c: 41 8b 39 mov (%r9),%edi - 6634c42f: 85 ff test %edi,%edi - 6634c431: 75 21 jne 6634c454 - 6634c433: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c437: 4d 8b 51 30 mov 0x30(%r9),%r10 - 6634c43b: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c43f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c446: 4c 63 09 movslq (%rcx),%r9 - 6634c449: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c44d: 44 89 19 mov %r11d,(%rcx) - 6634c450: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c454: 44 8b 48 1c mov 0x1c(%rax),%r9d - 6634c458: 45 85 c9 test %r9d,%r9d - 6634c45b: 74 58 je 6634c4b5 - 6634c45d: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c461: 4d 8b 52 38 mov 0x38(%r10),%r10 - 6634c465: 45 29 0a sub %r9d,(%r10) - 6634c468: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634c46f: 41 8b 32 mov (%r10),%esi - 6634c472: 45 31 d2 xor %r10d,%r10d - 6634c475: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634c479: 85 f6 test %esi,%esi - 6634c47b: 41 0f 9f c2 setg %r10b - 6634c47f: 45 3b 11 cmp (%r9),%r10d - 6634c482: 74 31 je 6634c4b5 - 6634c484: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c488: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634c48c: 45 8b 19 mov (%r9),%r11d - 6634c48f: 45 85 db test %r11d,%r11d - 6634c492: 75 21 jne 6634c4b5 - 6634c494: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c498: 4d 8b 51 38 mov 0x38(%r9),%r10 - 6634c49c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c4a0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c4a7: 4c 63 09 movslq (%rcx),%r9 - 6634c4aa: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c4ae: 44 89 19 mov %r11d,(%rcx) - 6634c4b1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c4b5: 44 8b 48 20 mov 0x20(%rax),%r9d - 6634c4b9: 45 85 c9 test %r9d,%r9d - 6634c4bc: 74 5a je 6634c518 - 6634c4be: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c4c2: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634c4c6: 45 29 0a sub %r9d,(%r10) - 6634c4c9: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 6634c4d0: 45 8b 12 mov (%r10),%r10d - 6634c4d3: 4c 8b 4a 40 mov 0x40(%rdx),%r9 - 6634c4d7: 45 85 d2 test %r10d,%r10d - 6634c4da: 41 0f 9f c2 setg %r10b - 6634c4de: 45 0f b6 d2 movzbl %r10b,%r10d - 6634c4e2: 45 3b 11 cmp (%r9),%r10d - 6634c4e5: 74 31 je 6634c518 - 6634c4e7: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c4eb: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634c4ef: 45 8b 09 mov (%r9),%r9d - 6634c4f2: 45 85 c9 test %r9d,%r9d - 6634c4f5: 75 21 jne 6634c518 - 6634c4f7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c4fb: 4d 8b 51 40 mov 0x40(%r9),%r10 - 6634c4ff: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c503: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c50a: 4c 63 09 movslq (%rcx),%r9 - 6634c50d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c511: 44 89 19 mov %r11d,(%rcx) - 6634c514: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c518: 44 8b 48 24 mov 0x24(%rax),%r9d - 6634c51c: 45 85 c9 test %r9d,%r9d - 6634c51f: 74 59 je 6634c57a - 6634c521: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c525: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634c529: 45 29 0a sub %r9d,(%r10) - 6634c52c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 6634c533: 45 8b 2a mov (%r10),%r13d - 6634c536: 45 31 d2 xor %r10d,%r10d - 6634c539: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 6634c53d: 45 85 ed test %r13d,%r13d - 6634c540: 41 0f 9f c2 setg %r10b - 6634c544: 45 3b 11 cmp (%r9),%r10d - 6634c547: 74 31 je 6634c57a - 6634c549: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c54d: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634c551: 45 8b 21 mov (%r9),%r12d - 6634c554: 45 85 e4 test %r12d,%r12d - 6634c557: 75 21 jne 6634c57a - 6634c559: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c55d: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634c561: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c565: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c56c: 4c 63 09 movslq (%rcx),%r9 - 6634c56f: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c573: 44 89 19 mov %r11d,(%rcx) - 6634c576: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c57a: 44 8b 48 28 mov 0x28(%rax),%r9d - 6634c57e: 45 85 c9 test %r9d,%r9d - 6634c581: 74 57 je 6634c5da - 6634c583: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c587: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634c58b: 45 29 0a sub %r9d,(%r10) - 6634c58e: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 6634c595: 41 8b 2a mov (%r10),%ebp - 6634c598: 45 31 d2 xor %r10d,%r10d - 6634c59b: 4c 8b 4a 50 mov 0x50(%rdx),%r9 - 6634c59f: 85 ed test %ebp,%ebp - 6634c5a1: 41 0f 9f c2 setg %r10b - 6634c5a5: 45 3b 11 cmp (%r9),%r10d - 6634c5a8: 74 30 je 6634c5da - 6634c5aa: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c5ae: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634c5b2: 41 8b 39 mov (%r9),%edi - 6634c5b5: 85 ff test %edi,%edi - 6634c5b7: 75 21 jne 6634c5da - 6634c5b9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c5bd: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634c5c1: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c5c5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c5cc: 4c 63 09 movslq (%rcx),%r9 - 6634c5cf: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c5d3: 44 89 19 mov %r11d,(%rcx) - 6634c5d6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c5da: 44 8b 48 2c mov 0x2c(%rax),%r9d - 6634c5de: 45 85 c9 test %r9d,%r9d - 6634c5e1: 74 58 je 6634c63b - 6634c5e3: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c5e7: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634c5eb: 45 29 0a sub %r9d,(%r10) - 6634c5ee: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634c5f5: 41 8b 32 mov (%r10),%esi - 6634c5f8: 45 31 d2 xor %r10d,%r10d - 6634c5fb: 4c 8b 4a 58 mov 0x58(%rdx),%r9 - 6634c5ff: 85 f6 test %esi,%esi - 6634c601: 41 0f 9f c2 setg %r10b - 6634c605: 45 3b 11 cmp (%r9),%r10d - 6634c608: 74 31 je 6634c63b - 6634c60a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c60e: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634c612: 45 8b 19 mov (%r9),%r11d - 6634c615: 45 85 db test %r11d,%r11d - 6634c618: 75 21 jne 6634c63b - 6634c61a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c61e: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634c622: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c626: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c62d: 4c 63 09 movslq (%rcx),%r9 - 6634c630: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c634: 44 89 19 mov %r11d,(%rcx) - 6634c637: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c63b: 44 8b 48 30 mov 0x30(%rax),%r9d - 6634c63f: 45 85 c9 test %r9d,%r9d - 6634c642: 0f 84 24 fd ff ff je 6634c36c - 6634c648: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c64c: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634c650: 45 29 0a sub %r9d,(%r10) - 6634c653: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634c65a: 45 31 c9 xor %r9d,%r9d - 6634c65d: 45 8b 12 mov (%r10),%r10d - 6634c660: 48 8b 42 60 mov 0x60(%rdx),%rax - 6634c664: 45 85 d2 test %r10d,%r10d - 6634c667: 41 0f 9f c1 setg %r9b - 6634c66b: 44 3b 08 cmp (%rax),%r9d - 6634c66e: 0f 84 f8 fc ff ff je 6634c36c - 6634c674: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c678: 48 8b 40 60 mov 0x60(%rax),%rax - 6634c67c: 8b 00 mov (%rax),%eax - 6634c67e: 85 c0 test %eax,%eax - 6634c680: 0f 85 e6 fc ff ff jne 6634c36c - 6634c686: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c68a: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634c68e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c692: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c698: 48 63 01 movslq (%rcx),%rax - 6634c69b: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c69f: 44 89 09 mov %r9d,(%rcx) - 6634c6a2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c6a6: 48 83 c4 28 add $0x28,%rsp - 6634c6aa: 5b pop %rbx - 6634c6ab: 5e pop %rsi - 6634c6ac: 5f pop %rdi - 6634c6ad: 5d pop %rbp - 6634c6ae: 41 5c pop %r12 - 6634c6b0: 41 5d pop %r13 - 6634c6b2: c3 retq - 6634c6b3: 0f 1f 00 nopl (%rax) - 6634c6b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634c6bd: 00 00 00 +000000006634bba0 : + 6634bba0: 56 push %rsi + 6634bba1: 53 push %rbx + 6634bba2: 4c 8b 15 77 bd 00 00 mov 0xbd77(%rip),%r10 # 66357920 + 6634bba9: 4c 8b 0d 80 bd 00 00 mov 0xbd80(%rip),%r9 # 66357930 + 6634bbb0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634bbb4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634bbb8: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634bbbc: 45 8b 18 mov (%r8),%r11d + 6634bbbf: 45 85 db test %r11d,%r11d + 6634bbc2: 0f 84 d8 00 00 00 je 6634bca0 + 6634bbc8: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634bbcc: 44 8b 5a 0c mov 0xc(%rdx),%r11d + 6634bbd0: 45 8b 00 mov (%r8),%r8d + 6634bbd3: 45 39 c3 cmp %r8d,%r11d + 6634bbd6: 74 5a je 6634bc32 + 6634bbd8: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634bbdc: 44 89 c6 mov %r8d,%esi + 6634bbdf: 44 29 de sub %r11d,%esi + 6634bbe2: 45 31 db xor %r11d,%r11d + 6634bbe5: 48 8b 5b 18 mov 0x18(%rbx),%rbx + 6634bbe9: 01 33 add %esi,(%rbx) + 6634bbeb: 44 89 42 0c mov %r8d,0xc(%rdx) + 6634bbef: 44 8b 03 mov (%rbx),%r8d + 6634bbf2: 45 85 c0 test %r8d,%r8d + 6634bbf5: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634bbf9: 41 0f 9f c3 setg %r11b + 6634bbfd: 45 3b 18 cmp (%r8),%r11d + 6634bc00: 74 30 je 6634bc32 + 6634bc02: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634bc06: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634bc0a: 41 8b 30 mov (%r8),%esi + 6634bc0d: 85 f6 test %esi,%esi + 6634bc0f: 75 21 jne 6634bc32 + 6634bc11: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634bc15: 4d 8b 58 18 mov 0x18(%r8),%r11 + 6634bc19: 4d 8b 43 10 mov 0x10(%r11),%r8 + 6634bc1d: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634bc24: 4d 63 01 movslq (%r9),%r8 + 6634bc27: 41 8d 58 01 lea 0x1(%r8),%ebx + 6634bc2b: 41 89 19 mov %ebx,(%r9) + 6634bc2e: 4f 89 1c c2 mov %r11,(%r10,%r8,8) + 6634bc32: 4c 8b 40 10 mov 0x10(%rax),%r8 + 6634bc36: 44 8b 5a 10 mov 0x10(%rdx),%r11d + 6634bc3a: 45 8b 00 mov (%r8),%r8d + 6634bc3d: 45 39 d8 cmp %r11d,%r8d + 6634bc40: 74 53 je 6634bc95 + 6634bc42: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634bc46: 44 89 c6 mov %r8d,%esi + 6634bc49: 44 29 de sub %r11d,%esi + 6634bc4c: 48 8b 5b 20 mov 0x20(%rbx),%rbx + 6634bc50: 01 33 add %esi,(%rbx) + 6634bc52: 44 89 42 10 mov %r8d,0x10(%rdx) + 6634bc56: 8b 1b mov (%rbx),%ebx + 6634bc58: 85 db test %ebx,%ebx + 6634bc5a: 48 8b 40 20 mov 0x20(%rax),%rax + 6634bc5e: 0f 9f c2 setg %dl + 6634bc61: 0f b6 d2 movzbl %dl,%edx + 6634bc64: 3b 10 cmp (%rax),%edx + 6634bc66: 74 2d je 6634bc95 + 6634bc68: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634bc6c: 48 8b 40 20 mov 0x20(%rax),%rax + 6634bc70: 8b 00 mov (%rax),%eax + 6634bc72: 85 c0 test %eax,%eax + 6634bc74: 75 1f jne 6634bc95 + 6634bc76: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634bc7a: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634bc7e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634bc82: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634bc88: 49 63 01 movslq (%r9),%rax + 6634bc8b: 8d 48 01 lea 0x1(%rax),%ecx + 6634bc8e: 41 89 09 mov %ecx,(%r9) + 6634bc91: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634bc95: 5b pop %rbx + 6634bc96: 5e pop %rsi + 6634bc97: c3 retq + 6634bc98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634bc9f: 00 + 6634bca0: 44 8b 42 0c mov 0xc(%rdx),%r8d + 6634bca4: 45 85 c0 test %r8d,%r8d + 6634bca7: 74 39 je 6634bce2 + 6634bca9: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634bcad: 4d 8b 5b 18 mov 0x18(%r11),%r11 + 6634bcb1: 45 29 03 sub %r8d,(%r11) + 6634bcb4: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) + 6634bcbb: 45 8b 1b mov (%r11),%r11d + 6634bcbe: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634bcc2: 45 85 db test %r11d,%r11d + 6634bcc5: 41 0f 9f c3 setg %r11b + 6634bcc9: 45 0f b6 db movzbl %r11b,%r11d + 6634bccd: 45 3b 18 cmp (%r8),%r11d + 6634bcd0: 74 10 je 6634bce2 + 6634bcd2: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634bcd6: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634bcda: 45 8b 00 mov (%r8),%r8d + 6634bcdd: 45 85 c0 test %r8d,%r8d + 6634bce0: 74 2e je 6634bd10 + 6634bce2: 44 8b 42 10 mov 0x10(%rdx),%r8d + 6634bce6: 45 85 c0 test %r8d,%r8d + 6634bce9: 74 aa je 6634bc95 + 6634bceb: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634bcef: 4d 8b 5b 20 mov 0x20(%r11),%r11 + 6634bcf3: 45 29 03 sub %r8d,(%r11) + 6634bcf6: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 6634bcfd: 41 8b 13 mov (%r11),%edx + 6634bd00: 85 d2 test %edx,%edx + 6634bd02: e9 53 ff ff ff jmpq 6634bc5a + 6634bd07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634bd0e: 00 00 + 6634bd10: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634bd14: 4d 8b 58 18 mov 0x18(%r8),%r11 + 6634bd18: 4d 8b 43 10 mov 0x10(%r11),%r8 + 6634bd1c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634bd23: 4d 63 01 movslq (%r9),%r8 + 6634bd26: 41 8d 58 01 lea 0x1(%r8),%ebx + 6634bd2a: 41 89 19 mov %ebx,(%r9) + 6634bd2d: 4f 89 1c c2 mov %r11,(%r10,%r8,8) + 6634bd31: eb af jmp 6634bce2 + 6634bd33: 0f 1f 00 nopl (%rax) + 6634bd36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634bd3d: 00 00 00 -000000006634c6c0 : - 6634c6c0: 41 55 push %r13 - 6634c6c2: 41 54 push %r12 - 6634c6c4: 55 push %rbp - 6634c6c5: 57 push %rdi - 6634c6c6: 56 push %rsi - 6634c6c7: 53 push %rbx - 6634c6c8: 48 83 ec 28 sub $0x28,%rsp - 6634c6cc: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634c6d0: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx - 6634c6d7: 48 89 cb mov %rcx,%rbx - 6634c6da: 8b 12 mov (%rdx),%edx - 6634c6dc: 85 d2 test %edx,%edx - 6634c6de: 0f 84 3c 01 00 00 je 6634c820 - 6634c6e4: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634c6e8: be 28 00 00 00 mov $0x28,%esi - 6634c6ed: 4c 8d 2d 0c 79 00 00 lea 0x790c(%rip),%r13 # 66354000 <.rdata> - 6634c6f4: 4c 8d 25 15 79 00 00 lea 0x7915(%rip),%r12 # 66354010 <.rdata+0x10> - 6634c6fb: 8b 0a mov (%rdx),%ecx - 6634c6fd: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634c701: 8b 12 mov (%rdx),%edx - 6634c703: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634c706: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634c70a: 8b 09 mov (%rcx),%ecx - 6634c70c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634c70f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634c713: 8b 09 mov (%rcx),%ecx - 6634c715: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634c718: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634c71c: 8b 39 mov (%rcx),%edi - 6634c71e: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634c722: c1 e7 04 shl $0x4,%edi - 6634c725: 01 d7 add %edx,%edi - 6634c727: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634c72b: 8b 12 mov (%rdx),%edx - 6634c72d: c1 e2 05 shl $0x5,%edx - 6634c730: 01 d7 add %edx,%edi - 6634c732: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634c736: 48 8b 40 48 mov 0x48(%rax),%rax - 6634c73a: 8b 12 mov (%rdx),%edx - 6634c73c: c1 e2 06 shl $0x6,%edx - 6634c73f: 01 fa add %edi,%edx - 6634c741: 8b 39 mov (%rcx),%edi - 6634c743: c1 e7 07 shl $0x7,%edi - 6634c746: 01 fa add %edi,%edx - 6634c748: 8b 38 mov (%rax),%edi - 6634c74a: c1 e7 08 shl $0x8,%edi - 6634c74d: 01 d7 add %edx,%edi - 6634c74f: 48 63 ef movslq %edi,%rbp - 6634c752: 48 c1 e5 02 shl $0x2,%rbp - 6634c756: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634c75d: 00 00 00 - 6634c760: 85 ff test %edi,%edi - 6634c762: 78 05 js 6634c769 - 6634c764: 39 7b 38 cmp %edi,0x38(%rbx) - 6634c767: 7f 11 jg 6634c77a - 6634c769: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634c76f: 4c 89 ea mov %r13,%rdx - 6634c772: 4c 89 e1 mov %r12,%rcx - 6634c775: e8 d6 57 00 00 callq 66351f50 <_assert> - 6634c77a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634c77e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634c782: 48 01 f2 add %rsi,%rdx - 6634c785: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634c788: 8b 0a mov (%rdx),%ecx - 6634c78a: 39 c8 cmp %ecx,%eax - 6634c78c: 74 69 je 6634c7f7 - 6634c78e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634c792: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634c796: 41 89 c3 mov %eax,%r11d - 6634c799: 41 29 cb sub %ecx,%r11d - 6634c79c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634c7a0: 45 01 18 add %r11d,(%r8) - 6634c7a3: 89 02 mov %eax,(%rdx) - 6634c7a5: 31 d2 xor %edx,%edx - 6634c7a7: 41 8b 00 mov (%r8),%eax - 6634c7aa: 85 c0 test %eax,%eax - 6634c7ac: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634c7b0: 0f 9f c2 setg %dl - 6634c7b3: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c7b7: 3b 10 cmp (%rax),%edx - 6634c7b9: 74 3c je 6634c7f7 - 6634c7bb: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c7bf: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c7c3: 8b 00 mov (%rax),%eax - 6634c7c5: 85 c0 test %eax,%eax - 6634c7c7: 75 2e jne 6634c7f7 - 6634c7c9: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c7cd: 48 8b 0d 5c b1 00 00 mov 0xb15c(%rip),%rcx # 66357930 - 6634c7d4: 4c 8b 05 45 b1 00 00 mov 0xb145(%rip),%r8 # 66357920 - 6634c7db: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634c7df: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c7e3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c7e9: 48 63 01 movslq (%rcx),%rax - 6634c7ec: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c7f0: 44 89 09 mov %r9d,(%rcx) - 6634c7f3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c7f7: 48 83 c6 04 add $0x4,%rsi - 6634c7fb: 81 c7 00 02 00 00 add $0x200,%edi - 6634c801: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634c808: 48 83 fe 48 cmp $0x48,%rsi - 6634c80c: 0f 85 4e ff ff ff jne 6634c760 - 6634c812: 48 83 c4 28 add $0x28,%rsp - 6634c816: 5b pop %rbx - 6634c817: 5e pop %rsi - 6634c818: 5f pop %rdi - 6634c819: 5d pop %rbp - 6634c81a: 41 5c pop %r12 - 6634c81c: 41 5d pop %r13 - 6634c81e: c3 retq - 6634c81f: 90 nop - 6634c820: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634c824: 4c 8b 05 f5 b0 00 00 mov 0xb0f5(%rip),%r8 # 66357920 - 6634c82b: 48 8b 0d fe b0 00 00 mov 0xb0fe(%rip),%rcx # 66357930 - 6634c832: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634c836: 45 85 c9 test %r9d,%r9d - 6634c839: 74 58 je 6634c893 - 6634c83b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c83f: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634c843: 45 29 0a sub %r9d,(%r10) - 6634c846: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634c84d: 45 8b 22 mov (%r10),%r12d - 6634c850: 45 31 d2 xor %r10d,%r10d - 6634c853: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634c857: 45 85 e4 test %r12d,%r12d - 6634c85a: 41 0f 9f c2 setg %r10b - 6634c85e: 45 3b 11 cmp (%r9),%r10d - 6634c861: 74 30 je 6634c893 - 6634c863: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c867: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634c86b: 41 8b 29 mov (%r9),%ebp - 6634c86e: 85 ed test %ebp,%ebp - 6634c870: 75 21 jne 6634c893 - 6634c872: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c876: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634c87a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c87e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c885: 4c 63 09 movslq (%rcx),%r9 - 6634c888: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c88c: 44 89 19 mov %r11d,(%rcx) - 6634c88f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c893: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634c897: 45 85 c9 test %r9d,%r9d - 6634c89a: 74 57 je 6634c8f3 - 6634c89c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c8a0: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634c8a4: 45 29 0a sub %r9d,(%r10) - 6634c8a7: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634c8ae: 41 8b 3a mov (%r10),%edi - 6634c8b1: 45 31 d2 xor %r10d,%r10d - 6634c8b4: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634c8b8: 85 ff test %edi,%edi - 6634c8ba: 41 0f 9f c2 setg %r10b - 6634c8be: 45 3b 11 cmp (%r9),%r10d - 6634c8c1: 74 30 je 6634c8f3 - 6634c8c3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c8c7: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634c8cb: 41 8b 31 mov (%r9),%esi - 6634c8ce: 85 f6 test %esi,%esi - 6634c8d0: 75 21 jne 6634c8f3 - 6634c8d2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c8d6: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634c8da: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c8de: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c8e5: 4c 63 09 movslq (%rcx),%r9 - 6634c8e8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c8ec: 44 89 19 mov %r11d,(%rcx) - 6634c8ef: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c8f3: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634c8f7: 45 85 c9 test %r9d,%r9d - 6634c8fa: 74 59 je 6634c955 - 6634c8fc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c900: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634c904: 45 29 0a sub %r9d,(%r10) - 6634c907: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634c90e: 45 8b 1a mov (%r10),%r11d - 6634c911: 45 31 d2 xor %r10d,%r10d - 6634c914: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634c918: 45 85 db test %r11d,%r11d - 6634c91b: 41 0f 9f c2 setg %r10b - 6634c91f: 45 3b 11 cmp (%r9),%r10d - 6634c922: 74 31 je 6634c955 - 6634c924: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c928: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634c92c: 45 8b 11 mov (%r9),%r10d - 6634c92f: 45 85 d2 test %r10d,%r10d - 6634c932: 75 21 jne 6634c955 - 6634c934: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c938: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634c93c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c940: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c947: 4c 63 09 movslq (%rcx),%r9 - 6634c94a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c94e: 44 89 19 mov %r11d,(%rcx) - 6634c951: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c955: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634c959: 45 85 c9 test %r9d,%r9d - 6634c95c: 74 59 je 6634c9b7 - 6634c95e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c962: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634c966: 45 29 0a sub %r9d,(%r10) - 6634c969: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634c970: 45 8b 0a mov (%r10),%r9d - 6634c973: 45 31 d2 xor %r10d,%r10d - 6634c976: 45 85 c9 test %r9d,%r9d - 6634c979: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634c97d: 41 0f 9f c2 setg %r10b - 6634c981: 45 3b 11 cmp (%r9),%r10d - 6634c984: 74 31 je 6634c9b7 - 6634c986: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c98a: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634c98e: 45 8b 29 mov (%r9),%r13d - 6634c991: 45 85 ed test %r13d,%r13d - 6634c994: 75 21 jne 6634c9b7 - 6634c996: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c99a: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634c99e: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c9a2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c9a9: 4c 63 09 movslq (%rcx),%r9 - 6634c9ac: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c9b0: 44 89 19 mov %r11d,(%rcx) - 6634c9b3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c9b7: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634c9bb: 45 85 c9 test %r9d,%r9d - 6634c9be: 74 58 je 6634ca18 - 6634c9c0: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c9c4: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634c9c8: 45 29 0a sub %r9d,(%r10) - 6634c9cb: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634c9d2: 45 8b 22 mov (%r10),%r12d - 6634c9d5: 45 31 d2 xor %r10d,%r10d - 6634c9d8: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634c9dc: 45 85 e4 test %r12d,%r12d - 6634c9df: 41 0f 9f c2 setg %r10b - 6634c9e3: 45 3b 11 cmp (%r9),%r10d - 6634c9e6: 74 30 je 6634ca18 - 6634c9e8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c9ec: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634c9f0: 41 8b 29 mov (%r9),%ebp - 6634c9f3: 85 ed test %ebp,%ebp - 6634c9f5: 75 21 jne 6634ca18 - 6634c9f7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c9fb: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634c9ff: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ca03: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ca0a: 4c 63 09 movslq (%rcx),%r9 - 6634ca0d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ca11: 44 89 19 mov %r11d,(%rcx) - 6634ca14: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ca18: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634ca1c: 45 85 c9 test %r9d,%r9d - 6634ca1f: 74 57 je 6634ca78 - 6634ca21: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ca25: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634ca29: 45 29 0a sub %r9d,(%r10) - 6634ca2c: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634ca33: 41 8b 3a mov (%r10),%edi - 6634ca36: 45 31 d2 xor %r10d,%r10d - 6634ca39: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634ca3d: 85 ff test %edi,%edi - 6634ca3f: 41 0f 9f c2 setg %r10b - 6634ca43: 45 3b 11 cmp (%r9),%r10d - 6634ca46: 74 30 je 6634ca78 - 6634ca48: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ca4c: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634ca50: 41 8b 31 mov (%r9),%esi - 6634ca53: 85 f6 test %esi,%esi - 6634ca55: 75 21 jne 6634ca78 - 6634ca57: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ca5b: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634ca5f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ca63: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ca6a: 4c 63 09 movslq (%rcx),%r9 - 6634ca6d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ca71: 44 89 19 mov %r11d,(%rcx) - 6634ca74: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ca78: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634ca7c: 45 85 c9 test %r9d,%r9d - 6634ca7f: 74 65 je 6634cae6 - 6634ca81: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ca85: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634ca8c: 45 29 0a sub %r9d,(%r10) - 6634ca8f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634ca96: 45 8b 1a mov (%r10),%r11d - 6634ca99: 45 31 d2 xor %r10d,%r10d - 6634ca9c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634caa3: 45 85 db test %r11d,%r11d - 6634caa6: 41 0f 9f c2 setg %r10b - 6634caaa: 45 3b 11 cmp (%r9),%r10d - 6634caad: 74 37 je 6634cae6 - 6634caaf: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cab3: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634caba: 45 8b 11 mov (%r9),%r10d - 6634cabd: 45 85 d2 test %r10d,%r10d - 6634cac0: 75 24 jne 6634cae6 - 6634cac2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cac6: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634cacd: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cad1: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cad8: 4c 63 09 movslq (%rcx),%r9 - 6634cadb: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cadf: 44 89 19 mov %r11d,(%rcx) - 6634cae2: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cae6: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634caea: 45 85 c9 test %r9d,%r9d - 6634caed: 0f 84 1f fd ff ff je 6634c812 - 6634caf3: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634caf7: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax - 6634cafe: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634cb05: 45 29 0a sub %r9d,(%r10) - 6634cb08: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634cb0f: 31 d2 xor %edx,%edx - 6634cb11: 45 8b 0a mov (%r10),%r9d - 6634cb14: 45 85 c9 test %r9d,%r9d - 6634cb17: 0f 9f c2 setg %dl - 6634cb1a: 3b 10 cmp (%rax),%edx - 6634cb1c: 0f 84 f0 fc ff ff je 6634c812 - 6634cb22: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634cb26: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax - 6634cb2d: 8b 00 mov (%rax),%eax - 6634cb2f: 85 c0 test %eax,%eax - 6634cb31: 0f 85 db fc ff ff jne 6634c812 - 6634cb37: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634cb3b: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx - 6634cb42: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634cb46: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634cb4c: 48 63 01 movslq (%rcx),%rax - 6634cb4f: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634cb53: 44 89 09 mov %r9d,(%rcx) - 6634cb56: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634cb5a: 48 83 c4 28 add $0x28,%rsp - 6634cb5e: 5b pop %rbx - 6634cb5f: 5e pop %rsi - 6634cb60: 5f pop %rdi - 6634cb61: 5d pop %rbp - 6634cb62: 41 5c pop %r12 - 6634cb64: 41 5d pop %r13 - 6634cb66: c3 retq - 6634cb67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634cb6e: 00 00 +000000006634bd40 : + 6634bd40: 56 push %rsi + 6634bd41: 53 push %rbx + 6634bd42: 4c 8b 15 d7 bb 00 00 mov 0xbbd7(%rip),%r10 # 66357920 + 6634bd49: 4c 8b 0d e0 bb 00 00 mov 0xbbe0(%rip),%r9 # 66357930 + 6634bd50: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634bd54: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634bd58: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634bd5c: 45 8b 18 mov (%r8),%r11d + 6634bd5f: 45 85 db test %r11d,%r11d + 6634bd62: 0f 84 d8 00 00 00 je 6634be40 + 6634bd68: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634bd6c: 44 8b 5a 0c mov 0xc(%rdx),%r11d + 6634bd70: 45 8b 00 mov (%r8),%r8d + 6634bd73: 45 39 c3 cmp %r8d,%r11d + 6634bd76: 74 5a je 6634bdd2 + 6634bd78: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634bd7c: 44 89 c6 mov %r8d,%esi + 6634bd7f: 44 29 de sub %r11d,%esi + 6634bd82: 45 31 db xor %r11d,%r11d + 6634bd85: 48 8b 5b 18 mov 0x18(%rbx),%rbx + 6634bd89: 01 33 add %esi,(%rbx) + 6634bd8b: 44 89 42 0c mov %r8d,0xc(%rdx) + 6634bd8f: 44 8b 03 mov (%rbx),%r8d + 6634bd92: 45 85 c0 test %r8d,%r8d + 6634bd95: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634bd99: 41 0f 9f c3 setg %r11b + 6634bd9d: 45 3b 18 cmp (%r8),%r11d + 6634bda0: 74 30 je 6634bdd2 + 6634bda2: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634bda6: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634bdaa: 41 8b 30 mov (%r8),%esi + 6634bdad: 85 f6 test %esi,%esi + 6634bdaf: 75 21 jne 6634bdd2 + 6634bdb1: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634bdb5: 4d 8b 58 18 mov 0x18(%r8),%r11 + 6634bdb9: 4d 8b 43 10 mov 0x10(%r11),%r8 + 6634bdbd: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634bdc4: 4d 63 01 movslq (%r9),%r8 + 6634bdc7: 41 8d 58 01 lea 0x1(%r8),%ebx + 6634bdcb: 41 89 19 mov %ebx,(%r9) + 6634bdce: 4f 89 1c c2 mov %r11,(%r10,%r8,8) + 6634bdd2: 4c 8b 40 10 mov 0x10(%rax),%r8 + 6634bdd6: 44 8b 5a 10 mov 0x10(%rdx),%r11d + 6634bdda: 45 8b 00 mov (%r8),%r8d + 6634bddd: 45 39 d8 cmp %r11d,%r8d + 6634bde0: 74 53 je 6634be35 + 6634bde2: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634bde6: 44 89 c6 mov %r8d,%esi + 6634bde9: 44 29 de sub %r11d,%esi + 6634bdec: 48 8b 5b 20 mov 0x20(%rbx),%rbx + 6634bdf0: 01 33 add %esi,(%rbx) + 6634bdf2: 44 89 42 10 mov %r8d,0x10(%rdx) + 6634bdf6: 8b 1b mov (%rbx),%ebx + 6634bdf8: 85 db test %ebx,%ebx + 6634bdfa: 48 8b 40 20 mov 0x20(%rax),%rax + 6634bdfe: 0f 9f c2 setg %dl + 6634be01: 0f b6 d2 movzbl %dl,%edx + 6634be04: 3b 10 cmp (%rax),%edx + 6634be06: 74 2d je 6634be35 + 6634be08: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634be0c: 48 8b 40 20 mov 0x20(%rax),%rax + 6634be10: 8b 00 mov (%rax),%eax + 6634be12: 85 c0 test %eax,%eax + 6634be14: 75 1f jne 6634be35 + 6634be16: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634be1a: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634be1e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634be22: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634be28: 49 63 01 movslq (%r9),%rax + 6634be2b: 8d 48 01 lea 0x1(%rax),%ecx + 6634be2e: 41 89 09 mov %ecx,(%r9) + 6634be31: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634be35: 5b pop %rbx + 6634be36: 5e pop %rsi + 6634be37: c3 retq + 6634be38: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634be3f: 00 + 6634be40: 44 8b 42 0c mov 0xc(%rdx),%r8d + 6634be44: 45 85 c0 test %r8d,%r8d + 6634be47: 74 39 je 6634be82 + 6634be49: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634be4d: 4d 8b 5b 18 mov 0x18(%r11),%r11 + 6634be51: 45 29 03 sub %r8d,(%r11) + 6634be54: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) + 6634be5b: 45 8b 1b mov (%r11),%r11d + 6634be5e: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634be62: 45 85 db test %r11d,%r11d + 6634be65: 41 0f 9f c3 setg %r11b + 6634be69: 45 0f b6 db movzbl %r11b,%r11d + 6634be6d: 45 3b 18 cmp (%r8),%r11d + 6634be70: 74 10 je 6634be82 + 6634be72: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634be76: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634be7a: 45 8b 00 mov (%r8),%r8d + 6634be7d: 45 85 c0 test %r8d,%r8d + 6634be80: 74 2e je 6634beb0 + 6634be82: 44 8b 42 10 mov 0x10(%rdx),%r8d + 6634be86: 45 85 c0 test %r8d,%r8d + 6634be89: 74 aa je 6634be35 + 6634be8b: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634be8f: 4d 8b 5b 20 mov 0x20(%r11),%r11 + 6634be93: 45 29 03 sub %r8d,(%r11) + 6634be96: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 6634be9d: 41 8b 13 mov (%r11),%edx + 6634bea0: 85 d2 test %edx,%edx + 6634bea2: e9 53 ff ff ff jmpq 6634bdfa + 6634bea7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634beae: 00 00 + 6634beb0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634beb4: 4d 8b 58 18 mov 0x18(%r8),%r11 + 6634beb8: 4d 8b 43 10 mov 0x10(%r11),%r8 + 6634bebc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634bec3: 4d 63 01 movslq (%r9),%r8 + 6634bec6: 41 8d 58 01 lea 0x1(%r8),%ebx + 6634beca: 41 89 19 mov %ebx,(%r9) + 6634becd: 4f 89 1c c2 mov %r11,(%r10,%r8,8) + 6634bed1: eb af jmp 6634be82 + 6634bed3: 0f 1f 00 nopl (%rax) + 6634bed6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634bedd: 00 00 00 -000000006634cb70 : - 6634cb70: 41 55 push %r13 - 6634cb72: 41 54 push %r12 - 6634cb74: 55 push %rbp - 6634cb75: 57 push %rdi - 6634cb76: 56 push %rsi - 6634cb77: 53 push %rbx - 6634cb78: 48 83 ec 28 sub $0x28,%rsp - 6634cb7c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634cb80: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx - 6634cb87: 48 89 cb mov %rcx,%rbx - 6634cb8a: 8b 12 mov (%rdx),%edx - 6634cb8c: 85 d2 test %edx,%edx - 6634cb8e: 0f 84 4c 01 00 00 je 6634cce0 - 6634cb94: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634cb98: be 30 00 00 00 mov $0x30,%esi - 6634cb9d: 4c 8d 2d 5c 74 00 00 lea 0x745c(%rip),%r13 # 66354000 <.rdata> - 6634cba4: 4c 8d 25 65 74 00 00 lea 0x7465(%rip),%r12 # 66354010 <.rdata+0x10> - 6634cbab: 8b 0a mov (%rdx),%ecx - 6634cbad: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634cbb1: 8b 12 mov (%rdx),%edx - 6634cbb3: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634cbb6: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634cbba: 8b 09 mov (%rcx),%ecx - 6634cbbc: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634cbbf: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634cbc3: 8b 09 mov (%rcx),%ecx - 6634cbc5: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634cbc8: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634cbcc: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634cbd0: 8b 12 mov (%rdx),%edx - 6634cbd2: c1 e2 04 shl $0x4,%edx - 6634cbd5: 01 fa add %edi,%edx - 6634cbd7: 8b 39 mov (%rcx),%edi - 6634cbd9: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634cbdd: c1 e7 05 shl $0x5,%edi - 6634cbe0: 01 fa add %edi,%edx - 6634cbe2: 8b 39 mov (%rcx),%edi - 6634cbe4: 48 8b 48 50 mov 0x50(%rax),%rcx - 6634cbe8: c1 e7 06 shl $0x6,%edi - 6634cbeb: 01 d7 add %edx,%edi - 6634cbed: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634cbf1: 8b 12 mov (%rdx),%edx - 6634cbf3: c1 e2 07 shl $0x7,%edx - 6634cbf6: 01 d7 add %edx,%edi - 6634cbf8: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634cbfc: 48 8b 40 58 mov 0x58(%rax),%rax - 6634cc00: 8b 12 mov (%rdx),%edx - 6634cc02: c1 e2 08 shl $0x8,%edx - 6634cc05: 01 fa add %edi,%edx - 6634cc07: 8b 39 mov (%rcx),%edi - 6634cc09: c1 e7 09 shl $0x9,%edi - 6634cc0c: 01 fa add %edi,%edx - 6634cc0e: 8b 38 mov (%rax),%edi - 6634cc10: c1 e7 0a shl $0xa,%edi - 6634cc13: 01 d7 add %edx,%edi - 6634cc15: 48 63 ef movslq %edi,%rbp - 6634cc18: 48 c1 e5 02 shl $0x2,%rbp - 6634cc1c: 0f 1f 40 00 nopl 0x0(%rax) - 6634cc20: 85 ff test %edi,%edi - 6634cc22: 78 05 js 6634cc29 - 6634cc24: 39 7b 38 cmp %edi,0x38(%rbx) - 6634cc27: 7f 11 jg 6634cc3a - 6634cc29: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634cc2f: 4c 89 ea mov %r13,%rdx - 6634cc32: 4c 89 e1 mov %r12,%rcx - 6634cc35: e8 16 53 00 00 callq 66351f50 <_assert> - 6634cc3a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634cc3e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634cc42: 48 01 f2 add %rsi,%rdx - 6634cc45: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634cc48: 8b 0a mov (%rdx),%ecx - 6634cc4a: 39 c8 cmp %ecx,%eax - 6634cc4c: 74 69 je 6634ccb7 - 6634cc4e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634cc52: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634cc56: 41 89 c3 mov %eax,%r11d - 6634cc59: 41 29 cb sub %ecx,%r11d - 6634cc5c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634cc60: 45 01 18 add %r11d,(%r8) - 6634cc63: 89 02 mov %eax,(%rdx) - 6634cc65: 31 d2 xor %edx,%edx - 6634cc67: 41 8b 00 mov (%r8),%eax - 6634cc6a: 85 c0 test %eax,%eax - 6634cc6c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634cc70: 0f 9f c2 setg %dl - 6634cc73: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634cc77: 3b 10 cmp (%rax),%edx - 6634cc79: 74 3c je 6634ccb7 - 6634cc7b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634cc7f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634cc83: 8b 00 mov (%rax),%eax - 6634cc85: 85 c0 test %eax,%eax - 6634cc87: 75 2e jne 6634ccb7 - 6634cc89: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634cc8d: 48 8b 0d 9c ac 00 00 mov 0xac9c(%rip),%rcx # 66357930 - 6634cc94: 4c 8b 05 85 ac 00 00 mov 0xac85(%rip),%r8 # 66357920 - 6634cc9b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634cc9f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634cca3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634cca9: 48 63 01 movslq (%rcx),%rax - 6634ccac: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ccb0: 44 89 09 mov %r9d,(%rcx) - 6634ccb3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ccb7: 48 83 c6 04 add $0x4,%rsi - 6634ccbb: 81 c7 00 08 00 00 add $0x800,%edi - 6634ccc1: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634ccc8: 48 83 fe 50 cmp $0x50,%rsi - 6634cccc: 0f 85 4e ff ff ff jne 6634cc20 - 6634ccd2: 48 83 c4 28 add $0x28,%rsp - 6634ccd6: 5b pop %rbx - 6634ccd7: 5e pop %rsi - 6634ccd8: 5f pop %rdi - 6634ccd9: 5d pop %rbp - 6634ccda: 41 5c pop %r12 - 6634ccdc: 41 5d pop %r13 - 6634ccde: c3 retq - 6634ccdf: 90 nop - 6634cce0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634cce4: 4c 8b 05 35 ac 00 00 mov 0xac35(%rip),%r8 # 66357920 - 6634cceb: 48 8b 0d 3e ac 00 00 mov 0xac3e(%rip),%rcx # 66357930 - 6634ccf2: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634ccf6: 45 85 c9 test %r9d,%r9d - 6634ccf9: 74 58 je 6634cd53 - 6634ccfb: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ccff: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634cd03: 45 29 0a sub %r9d,(%r10) - 6634cd06: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634cd0d: 45 8b 22 mov (%r10),%r12d - 6634cd10: 45 31 d2 xor %r10d,%r10d - 6634cd13: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634cd17: 45 85 e4 test %r12d,%r12d - 6634cd1a: 41 0f 9f c2 setg %r10b - 6634cd1e: 45 3b 11 cmp (%r9),%r10d - 6634cd21: 74 30 je 6634cd53 - 6634cd23: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cd27: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634cd2b: 41 8b 29 mov (%r9),%ebp - 6634cd2e: 85 ed test %ebp,%ebp - 6634cd30: 75 21 jne 6634cd53 - 6634cd32: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cd36: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634cd3a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cd3e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cd45: 4c 63 09 movslq (%rcx),%r9 - 6634cd48: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cd4c: 44 89 19 mov %r11d,(%rcx) - 6634cd4f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cd53: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634cd57: 45 85 c9 test %r9d,%r9d - 6634cd5a: 74 57 je 6634cdb3 - 6634cd5c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cd60: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634cd64: 45 29 0a sub %r9d,(%r10) - 6634cd67: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634cd6e: 41 8b 3a mov (%r10),%edi - 6634cd71: 45 31 d2 xor %r10d,%r10d - 6634cd74: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634cd78: 85 ff test %edi,%edi - 6634cd7a: 41 0f 9f c2 setg %r10b - 6634cd7e: 45 3b 11 cmp (%r9),%r10d - 6634cd81: 74 30 je 6634cdb3 - 6634cd83: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cd87: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634cd8b: 41 8b 31 mov (%r9),%esi - 6634cd8e: 85 f6 test %esi,%esi - 6634cd90: 75 21 jne 6634cdb3 - 6634cd92: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cd96: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634cd9a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cd9e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cda5: 4c 63 09 movslq (%rcx),%r9 - 6634cda8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cdac: 44 89 19 mov %r11d,(%rcx) - 6634cdaf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cdb3: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634cdb7: 45 85 c9 test %r9d,%r9d - 6634cdba: 74 59 je 6634ce15 - 6634cdbc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cdc0: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634cdc4: 45 29 0a sub %r9d,(%r10) - 6634cdc7: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634cdce: 45 8b 1a mov (%r10),%r11d - 6634cdd1: 45 31 d2 xor %r10d,%r10d - 6634cdd4: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634cdd8: 45 85 db test %r11d,%r11d - 6634cddb: 41 0f 9f c2 setg %r10b - 6634cddf: 45 3b 11 cmp (%r9),%r10d - 6634cde2: 74 31 je 6634ce15 - 6634cde4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cde8: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634cdec: 45 8b 11 mov (%r9),%r10d - 6634cdef: 45 85 d2 test %r10d,%r10d - 6634cdf2: 75 21 jne 6634ce15 - 6634cdf4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cdf8: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634cdfc: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ce00: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ce07: 4c 63 09 movslq (%rcx),%r9 - 6634ce0a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ce0e: 44 89 19 mov %r11d,(%rcx) - 6634ce11: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ce15: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634ce19: 45 85 c9 test %r9d,%r9d - 6634ce1c: 74 59 je 6634ce77 - 6634ce1e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ce22: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634ce26: 45 29 0a sub %r9d,(%r10) - 6634ce29: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634ce30: 45 8b 0a mov (%r10),%r9d - 6634ce33: 45 31 d2 xor %r10d,%r10d - 6634ce36: 45 85 c9 test %r9d,%r9d - 6634ce39: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634ce3d: 41 0f 9f c2 setg %r10b - 6634ce41: 45 3b 11 cmp (%r9),%r10d - 6634ce44: 74 31 je 6634ce77 - 6634ce46: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ce4a: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634ce4e: 45 8b 29 mov (%r9),%r13d - 6634ce51: 45 85 ed test %r13d,%r13d - 6634ce54: 75 21 jne 6634ce77 - 6634ce56: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ce5a: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634ce5e: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ce62: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ce69: 4c 63 09 movslq (%rcx),%r9 - 6634ce6c: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ce70: 44 89 19 mov %r11d,(%rcx) - 6634ce73: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ce77: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634ce7b: 45 85 c9 test %r9d,%r9d - 6634ce7e: 74 64 je 6634cee4 - 6634ce80: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ce84: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634ce8b: 45 29 0a sub %r9d,(%r10) - 6634ce8e: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634ce95: 45 8b 22 mov (%r10),%r12d - 6634ce98: 45 31 d2 xor %r10d,%r10d - 6634ce9b: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634cea2: 45 85 e4 test %r12d,%r12d - 6634cea5: 41 0f 9f c2 setg %r10b - 6634cea9: 45 3b 11 cmp (%r9),%r10d - 6634ceac: 74 36 je 6634cee4 - 6634ceae: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ceb2: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634ceb9: 41 8b 29 mov (%r9),%ebp - 6634cebc: 85 ed test %ebp,%ebp - 6634cebe: 75 24 jne 6634cee4 - 6634cec0: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cec4: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634cecb: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cecf: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ced6: 4c 63 09 movslq (%rcx),%r9 - 6634ced9: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cedd: 44 89 19 mov %r11d,(%rcx) - 6634cee0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cee4: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634cee8: 45 85 c9 test %r9d,%r9d - 6634ceeb: 74 63 je 6634cf50 - 6634ceed: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cef1: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634cef8: 45 29 0a sub %r9d,(%r10) - 6634cefb: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634cf02: 41 8b 3a mov (%r10),%edi - 6634cf05: 45 31 d2 xor %r10d,%r10d - 6634cf08: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634cf0f: 85 ff test %edi,%edi - 6634cf11: 41 0f 9f c2 setg %r10b - 6634cf15: 45 3b 11 cmp (%r9),%r10d - 6634cf18: 74 36 je 6634cf50 - 6634cf1a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cf1e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634cf25: 41 8b 31 mov (%r9),%esi - 6634cf28: 85 f6 test %esi,%esi - 6634cf2a: 75 24 jne 6634cf50 - 6634cf2c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cf30: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634cf37: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cf3b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cf42: 4c 63 09 movslq (%rcx),%r9 - 6634cf45: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cf49: 44 89 19 mov %r11d,(%rcx) - 6634cf4c: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cf50: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634cf54: 45 85 c9 test %r9d,%r9d - 6634cf57: 74 65 je 6634cfbe - 6634cf59: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cf5d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634cf64: 45 29 0a sub %r9d,(%r10) - 6634cf67: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634cf6e: 45 8b 1a mov (%r10),%r11d - 6634cf71: 45 31 d2 xor %r10d,%r10d - 6634cf74: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 - 6634cf7b: 45 85 db test %r11d,%r11d - 6634cf7e: 41 0f 9f c2 setg %r10b - 6634cf82: 45 3b 11 cmp (%r9),%r10d - 6634cf85: 74 37 je 6634cfbe - 6634cf87: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cf8b: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 - 6634cf92: 45 8b 11 mov (%r9),%r10d - 6634cf95: 45 85 d2 test %r10d,%r10d - 6634cf98: 75 24 jne 6634cfbe - 6634cf9a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cf9e: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 - 6634cfa5: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cfa9: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cfb0: 4c 63 09 movslq (%rcx),%r9 - 6634cfb3: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cfb7: 44 89 19 mov %r11d,(%rcx) - 6634cfba: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cfbe: 44 8b 4a 4c mov 0x4c(%rdx),%r9d - 6634cfc2: 45 85 c9 test %r9d,%r9d - 6634cfc5: 0f 84 07 fd ff ff je 6634ccd2 - 6634cfcb: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cfcf: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax - 6634cfd6: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 - 6634cfdd: 45 29 0a sub %r9d,(%r10) - 6634cfe0: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) - 6634cfe7: 31 d2 xor %edx,%edx - 6634cfe9: 45 8b 0a mov (%r10),%r9d - 6634cfec: 45 85 c9 test %r9d,%r9d - 6634cfef: 0f 9f c2 setg %dl - 6634cff2: 3b 10 cmp (%rax),%edx - 6634cff4: 0f 84 d8 fc ff ff je 6634ccd2 - 6634cffa: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634cffe: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax - 6634d005: 8b 00 mov (%rax),%eax - 6634d007: 85 c0 test %eax,%eax - 6634d009: 0f 85 c3 fc ff ff jne 6634ccd2 - 6634d00f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d013: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx - 6634d01a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d01e: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d024: 48 63 01 movslq (%rcx),%rax - 6634d027: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d02b: 44 89 09 mov %r9d,(%rcx) - 6634d02e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d032: 48 83 c4 28 add $0x28,%rsp - 6634d036: 5b pop %rbx - 6634d037: 5e pop %rsi - 6634d038: 5f pop %rdi - 6634d039: 5d pop %rbp - 6634d03a: 41 5c pop %r12 - 6634d03c: 41 5d pop %r13 - 6634d03e: c3 retq - 6634d03f: 90 nop +000000006634bee0 : + 6634bee0: 41 55 push %r13 + 6634bee2: 41 54 push %r12 + 6634bee4: 55 push %rbp + 6634bee5: 57 push %rdi + 6634bee6: 56 push %rsi + 6634bee7: 53 push %rbx + 6634bee8: 48 83 ec 28 sub $0x28,%rsp + 6634beec: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634bef0: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx + 6634bef7: 48 89 cb mov %rcx,%rbx + 6634befa: 8b 12 mov (%rdx),%edx + 6634befc: 85 d2 test %edx,%edx + 6634befe: 0f 84 3c 01 00 00 je 6634c040 + 6634bf04: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634bf08: be 2c 00 00 00 mov $0x2c,%esi + 6634bf0d: 4c 8d 2d ec 80 00 00 lea 0x80ec(%rip),%r13 # 66354000 <.rdata> + 6634bf14: 4c 8d 25 f5 80 00 00 lea 0x80f5(%rip),%r12 # 66354010 <.rdata+0x10> + 6634bf1b: 8b 0a mov (%rdx),%ecx + 6634bf1d: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634bf21: 8b 12 mov (%rdx),%edx + 6634bf23: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634bf26: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634bf2a: 8b 09 mov (%rcx),%ecx + 6634bf2c: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634bf2f: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634bf33: 8b 09 mov (%rcx),%ecx + 6634bf35: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634bf38: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634bf3c: 8b 39 mov (%rcx),%edi + 6634bf3e: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634bf42: c1 e7 04 shl $0x4,%edi + 6634bf45: 01 fa add %edi,%edx + 6634bf47: 8b 39 mov (%rcx),%edi + 6634bf49: 48 8b 48 48 mov 0x48(%rax),%rcx + 6634bf4d: c1 e7 05 shl $0x5,%edi + 6634bf50: 01 d7 add %edx,%edi + 6634bf52: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634bf56: 8b 12 mov (%rdx),%edx + 6634bf58: c1 e2 06 shl $0x6,%edx + 6634bf5b: 01 d7 add %edx,%edi + 6634bf5d: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634bf61: 48 8b 40 50 mov 0x50(%rax),%rax + 6634bf65: 8b 12 mov (%rdx),%edx + 6634bf67: c1 e2 07 shl $0x7,%edx + 6634bf6a: 01 fa add %edi,%edx + 6634bf6c: 8b 39 mov (%rcx),%edi + 6634bf6e: c1 e7 08 shl $0x8,%edi + 6634bf71: 01 fa add %edi,%edx + 6634bf73: 8b 38 mov (%rax),%edi + 6634bf75: c1 e7 09 shl $0x9,%edi + 6634bf78: 01 d7 add %edx,%edi + 6634bf7a: 48 63 ef movslq %edi,%rbp + 6634bf7d: 48 c1 e5 02 shl $0x2,%rbp + 6634bf81: 85 ff test %edi,%edi + 6634bf83: 78 05 js 6634bf8a + 6634bf85: 39 7b 38 cmp %edi,0x38(%rbx) + 6634bf88: 7f 11 jg 6634bf9b + 6634bf8a: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634bf90: 4c 89 ea mov %r13,%rdx + 6634bf93: 4c 89 e1 mov %r12,%rcx + 6634bf96: e8 75 62 00 00 callq 66352210 <_assert> + 6634bf9b: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634bf9f: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634bfa3: 48 01 f2 add %rsi,%rdx + 6634bfa6: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634bfa9: 8b 0a mov (%rdx),%ecx + 6634bfab: 39 c8 cmp %ecx,%eax + 6634bfad: 74 69 je 6634c018 + 6634bfaf: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634bfb3: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634bfb7: 41 89 c3 mov %eax,%r11d + 6634bfba: 41 29 cb sub %ecx,%r11d + 6634bfbd: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634bfc1: 45 01 18 add %r11d,(%r8) + 6634bfc4: 89 02 mov %eax,(%rdx) + 6634bfc6: 31 d2 xor %edx,%edx + 6634bfc8: 41 8b 00 mov (%r8),%eax + 6634bfcb: 85 c0 test %eax,%eax + 6634bfcd: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634bfd1: 0f 9f c2 setg %dl + 6634bfd4: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634bfd8: 3b 10 cmp (%rax),%edx + 6634bfda: 74 3c je 6634c018 + 6634bfdc: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634bfe0: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634bfe4: 8b 00 mov (%rax),%eax + 6634bfe6: 85 c0 test %eax,%eax + 6634bfe8: 75 2e jne 6634c018 + 6634bfea: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634bfee: 48 8b 0d 3b b9 00 00 mov 0xb93b(%rip),%rcx # 66357930 + 6634bff5: 4c 8b 05 24 b9 00 00 mov 0xb924(%rip),%r8 # 66357920 + 6634bffc: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634c000: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c004: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c00a: 48 63 01 movslq (%rcx),%rax + 6634c00d: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c011: 44 89 09 mov %r9d,(%rcx) + 6634c014: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c018: 48 83 c6 04 add $0x4,%rsi + 6634c01c: 81 c7 00 04 00 00 add $0x400,%edi + 6634c022: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634c029: 48 83 fe 4c cmp $0x4c,%rsi + 6634c02d: 0f 85 4e ff ff ff jne 6634bf81 + 6634c033: 48 83 c4 28 add $0x28,%rsp + 6634c037: 5b pop %rbx + 6634c038: 5e pop %rsi + 6634c039: 5f pop %rdi + 6634c03a: 5d pop %rbp + 6634c03b: 41 5c pop %r12 + 6634c03d: 41 5d pop %r13 + 6634c03f: c3 retq + 6634c040: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634c044: 4c 8b 05 d5 b8 00 00 mov 0xb8d5(%rip),%r8 # 66357920 + 6634c04b: 48 8b 0d de b8 00 00 mov 0xb8de(%rip),%rcx # 66357930 + 6634c052: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634c056: 45 85 c9 test %r9d,%r9d + 6634c059: 74 58 je 6634c0b3 + 6634c05b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c05f: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634c063: 45 29 0a sub %r9d,(%r10) + 6634c066: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634c06d: 45 8b 22 mov (%r10),%r12d + 6634c070: 45 31 d2 xor %r10d,%r10d + 6634c073: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634c077: 45 85 e4 test %r12d,%r12d + 6634c07a: 41 0f 9f c2 setg %r10b + 6634c07e: 45 3b 11 cmp (%r9),%r10d + 6634c081: 74 30 je 6634c0b3 + 6634c083: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c087: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634c08b: 41 8b 29 mov (%r9),%ebp + 6634c08e: 85 ed test %ebp,%ebp + 6634c090: 75 21 jne 6634c0b3 + 6634c092: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c096: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634c09a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c09e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c0a5: 4c 63 09 movslq (%rcx),%r9 + 6634c0a8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c0ac: 44 89 19 mov %r11d,(%rcx) + 6634c0af: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c0b3: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634c0b7: 45 85 c9 test %r9d,%r9d + 6634c0ba: 74 57 je 6634c113 + 6634c0bc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c0c0: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634c0c4: 45 29 0a sub %r9d,(%r10) + 6634c0c7: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634c0ce: 41 8b 3a mov (%r10),%edi + 6634c0d1: 45 31 d2 xor %r10d,%r10d + 6634c0d4: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634c0d8: 85 ff test %edi,%edi + 6634c0da: 41 0f 9f c2 setg %r10b + 6634c0de: 45 3b 11 cmp (%r9),%r10d + 6634c0e1: 74 30 je 6634c113 + 6634c0e3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c0e7: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634c0eb: 41 8b 31 mov (%r9),%esi + 6634c0ee: 85 f6 test %esi,%esi + 6634c0f0: 75 21 jne 6634c113 + 6634c0f2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c0f6: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634c0fa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c0fe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c105: 4c 63 09 movslq (%rcx),%r9 + 6634c108: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c10c: 44 89 19 mov %r11d,(%rcx) + 6634c10f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c113: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634c117: 45 85 c9 test %r9d,%r9d + 6634c11a: 74 59 je 6634c175 + 6634c11c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c120: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634c124: 45 29 0a sub %r9d,(%r10) + 6634c127: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634c12e: 45 8b 1a mov (%r10),%r11d + 6634c131: 45 31 d2 xor %r10d,%r10d + 6634c134: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634c138: 45 85 db test %r11d,%r11d + 6634c13b: 41 0f 9f c2 setg %r10b + 6634c13f: 45 3b 11 cmp (%r9),%r10d + 6634c142: 74 31 je 6634c175 + 6634c144: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c148: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634c14c: 45 8b 11 mov (%r9),%r10d + 6634c14f: 45 85 d2 test %r10d,%r10d + 6634c152: 75 21 jne 6634c175 + 6634c154: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c158: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634c15c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c160: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c167: 4c 63 09 movslq (%rcx),%r9 + 6634c16a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c16e: 44 89 19 mov %r11d,(%rcx) + 6634c171: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c175: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634c179: 45 85 c9 test %r9d,%r9d + 6634c17c: 74 59 je 6634c1d7 + 6634c17e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c182: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634c186: 45 29 0a sub %r9d,(%r10) + 6634c189: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634c190: 45 8b 0a mov (%r10),%r9d + 6634c193: 45 31 d2 xor %r10d,%r10d + 6634c196: 45 85 c9 test %r9d,%r9d + 6634c199: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634c19d: 41 0f 9f c2 setg %r10b + 6634c1a1: 45 3b 11 cmp (%r9),%r10d + 6634c1a4: 74 31 je 6634c1d7 + 6634c1a6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c1aa: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634c1ae: 45 8b 29 mov (%r9),%r13d + 6634c1b1: 45 85 ed test %r13d,%r13d + 6634c1b4: 75 21 jne 6634c1d7 + 6634c1b6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c1ba: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634c1be: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c1c2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c1c9: 4c 63 09 movslq (%rcx),%r9 + 6634c1cc: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c1d0: 44 89 19 mov %r11d,(%rcx) + 6634c1d3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c1d7: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634c1db: 45 85 c9 test %r9d,%r9d + 6634c1de: 74 58 je 6634c238 + 6634c1e0: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c1e4: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634c1e8: 45 29 0a sub %r9d,(%r10) + 6634c1eb: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634c1f2: 45 8b 22 mov (%r10),%r12d + 6634c1f5: 45 31 d2 xor %r10d,%r10d + 6634c1f8: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634c1fc: 45 85 e4 test %r12d,%r12d + 6634c1ff: 41 0f 9f c2 setg %r10b + 6634c203: 45 3b 11 cmp (%r9),%r10d + 6634c206: 74 30 je 6634c238 + 6634c208: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c20c: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634c210: 41 8b 29 mov (%r9),%ebp + 6634c213: 85 ed test %ebp,%ebp + 6634c215: 75 21 jne 6634c238 + 6634c217: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c21b: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634c21f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c223: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c22a: 4c 63 09 movslq (%rcx),%r9 + 6634c22d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c231: 44 89 19 mov %r11d,(%rcx) + 6634c234: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c238: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634c23c: 45 85 c9 test %r9d,%r9d + 6634c23f: 74 63 je 6634c2a4 + 6634c241: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c245: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634c24c: 45 29 0a sub %r9d,(%r10) + 6634c24f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634c256: 41 8b 3a mov (%r10),%edi + 6634c259: 45 31 d2 xor %r10d,%r10d + 6634c25c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634c263: 85 ff test %edi,%edi + 6634c265: 41 0f 9f c2 setg %r10b + 6634c269: 45 3b 11 cmp (%r9),%r10d + 6634c26c: 74 36 je 6634c2a4 + 6634c26e: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c272: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634c279: 41 8b 31 mov (%r9),%esi + 6634c27c: 85 f6 test %esi,%esi + 6634c27e: 75 24 jne 6634c2a4 + 6634c280: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c284: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634c28b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c28f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c296: 4c 63 09 movslq (%rcx),%r9 + 6634c299: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c29d: 44 89 19 mov %r11d,(%rcx) + 6634c2a0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c2a4: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634c2a8: 45 85 c9 test %r9d,%r9d + 6634c2ab: 74 65 je 6634c312 + 6634c2ad: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c2b1: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634c2b8: 45 29 0a sub %r9d,(%r10) + 6634c2bb: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634c2c2: 45 8b 1a mov (%r10),%r11d + 6634c2c5: 45 31 d2 xor %r10d,%r10d + 6634c2c8: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634c2cf: 45 85 db test %r11d,%r11d + 6634c2d2: 41 0f 9f c2 setg %r10b + 6634c2d6: 45 3b 11 cmp (%r9),%r10d + 6634c2d9: 74 37 je 6634c312 + 6634c2db: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c2df: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634c2e6: 45 8b 11 mov (%r9),%r10d + 6634c2e9: 45 85 d2 test %r10d,%r10d + 6634c2ec: 75 24 jne 6634c312 + 6634c2ee: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c2f2: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634c2f9: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c2fd: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c304: 4c 63 09 movslq (%rcx),%r9 + 6634c307: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c30b: 44 89 19 mov %r11d,(%rcx) + 6634c30e: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c312: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634c316: 45 85 c9 test %r9d,%r9d + 6634c319: 0f 84 14 fd ff ff je 6634c033 + 6634c31f: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c323: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax + 6634c32a: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634c331: 45 29 0a sub %r9d,(%r10) + 6634c334: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634c33b: 31 d2 xor %edx,%edx + 6634c33d: 45 8b 0a mov (%r10),%r9d + 6634c340: 45 85 c9 test %r9d,%r9d + 6634c343: 0f 9f c2 setg %dl + 6634c346: 3b 10 cmp (%rax),%edx + 6634c348: 0f 84 e5 fc ff ff je 6634c033 + 6634c34e: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c352: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax + 6634c359: 8b 00 mov (%rax),%eax + 6634c35b: 85 c0 test %eax,%eax + 6634c35d: 0f 85 d0 fc ff ff jne 6634c033 + 6634c363: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c367: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx + 6634c36e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c372: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c378: 48 63 01 movslq (%rcx),%rax + 6634c37b: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c37f: 44 89 09 mov %r9d,(%rcx) + 6634c382: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c386: 48 83 c4 28 add $0x28,%rsp + 6634c38a: 5b pop %rbx + 6634c38b: 5e pop %rsi + 6634c38c: 5f pop %rdi + 6634c38d: 5d pop %rbp + 6634c38e: 41 5c pop %r12 + 6634c390: 41 5d pop %r13 + 6634c392: c3 retq + 6634c393: 0f 1f 00 nopl (%rax) + 6634c396: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634c39d: 00 00 00 -000000006634d040 : - 6634d040: 41 55 push %r13 - 6634d042: 41 54 push %r12 - 6634d044: 55 push %rbp - 6634d045: 57 push %rdi - 6634d046: 56 push %rsi - 6634d047: 53 push %rbx - 6634d048: 48 83 ec 28 sub $0x28,%rsp - 6634d04c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634d050: 48 8b 50 78 mov 0x78(%rax),%rdx - 6634d054: 48 89 cb mov %rcx,%rbx - 6634d057: 8b 12 mov (%rdx),%edx - 6634d059: 85 d2 test %edx,%edx - 6634d05b: 0f 84 0f 01 00 00 je 6634d170 - 6634d061: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634d065: be 1c 00 00 00 mov $0x1c,%esi - 6634d06a: 4c 8d 2d 8f 6f 00 00 lea 0x6f8f(%rip),%r13 # 66354000 <.rdata> - 6634d071: 4c 8d 25 98 6f 00 00 lea 0x6f98(%rip),%r12 # 66354010 <.rdata+0x10> - 6634d078: 8b 0a mov (%rdx),%ecx - 6634d07a: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634d07e: 8b 12 mov (%rdx),%edx - 6634d080: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634d083: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634d087: 8b 09 mov (%rcx),%ecx - 6634d089: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634d08c: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634d090: 8b 09 mov (%rcx),%ecx - 6634d092: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634d095: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634d099: 48 8b 40 30 mov 0x30(%rax),%rax - 6634d09d: 8b 39 mov (%rcx),%edi - 6634d09f: c1 e7 04 shl $0x4,%edi - 6634d0a2: 01 fa add %edi,%edx - 6634d0a4: 8b 38 mov (%rax),%edi - 6634d0a6: c1 e7 05 shl $0x5,%edi - 6634d0a9: 01 d7 add %edx,%edi - 6634d0ab: 48 63 ef movslq %edi,%rbp - 6634d0ae: 48 c1 e5 02 shl $0x2,%rbp - 6634d0b2: 85 ff test %edi,%edi - 6634d0b4: 78 05 js 6634d0bb - 6634d0b6: 39 7b 38 cmp %edi,0x38(%rbx) - 6634d0b9: 7f 11 jg 6634d0cc - 6634d0bb: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d0c1: 4c 89 ea mov %r13,%rdx - 6634d0c4: 4c 89 e1 mov %r12,%rcx - 6634d0c7: e8 84 4e 00 00 callq 66351f50 <_assert> - 6634d0cc: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634d0d0: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634d0d4: 48 01 f2 add %rsi,%rdx - 6634d0d7: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634d0da: 8b 0a mov (%rdx),%ecx - 6634d0dc: 39 c8 cmp %ecx,%eax - 6634d0de: 74 69 je 6634d149 - 6634d0e0: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634d0e4: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634d0e8: 41 89 c3 mov %eax,%r11d - 6634d0eb: 41 29 cb sub %ecx,%r11d - 6634d0ee: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634d0f2: 45 01 18 add %r11d,(%r8) - 6634d0f5: 89 02 mov %eax,(%rdx) - 6634d0f7: 31 d2 xor %edx,%edx - 6634d0f9: 41 8b 00 mov (%r8),%eax - 6634d0fc: 85 c0 test %eax,%eax - 6634d0fe: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634d102: 0f 9f c2 setg %dl - 6634d105: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d109: 3b 10 cmp (%rax),%edx - 6634d10b: 74 3c je 6634d149 - 6634d10d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d111: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d115: 8b 00 mov (%rax),%eax - 6634d117: 85 c0 test %eax,%eax - 6634d119: 75 2e jne 6634d149 - 6634d11b: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d11f: 48 8b 0d 0a a8 00 00 mov 0xa80a(%rip),%rcx # 66357930 - 6634d126: 4c 8b 05 f3 a7 00 00 mov 0xa7f3(%rip),%r8 # 66357920 - 6634d12d: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634d131: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d135: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d13b: 48 63 01 movslq (%rcx),%rax - 6634d13e: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d142: 44 89 09 mov %r9d,(%rcx) - 6634d145: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d149: 48 83 c6 04 add $0x4,%rsi - 6634d14d: 83 c7 40 add $0x40,%edi - 6634d150: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634d157: 48 83 fe 3c cmp $0x3c,%rsi - 6634d15b: 0f 85 51 ff ff ff jne 6634d0b2 - 6634d161: 48 83 c4 28 add $0x28,%rsp - 6634d165: 5b pop %rbx - 6634d166: 5e pop %rsi - 6634d167: 5f pop %rdi - 6634d168: 5d pop %rbp - 6634d169: 41 5c pop %r12 - 6634d16b: 41 5d pop %r13 - 6634d16d: c3 retq - 6634d16e: 66 90 xchg %ax,%ax - 6634d170: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634d174: 4c 8b 05 a5 a7 00 00 mov 0xa7a5(%rip),%r8 # 66357920 - 6634d17b: 48 8b 0d ae a7 00 00 mov 0xa7ae(%rip),%rcx # 66357930 - 6634d182: 44 8b 4a 1c mov 0x1c(%rdx),%r9d - 6634d186: 45 85 c9 test %r9d,%r9d - 6634d189: 74 58 je 6634d1e3 - 6634d18b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d18f: 4d 8b 52 38 mov 0x38(%r10),%r10 - 6634d193: 45 29 0a sub %r9d,(%r10) - 6634d196: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634d19d: 45 8b 22 mov (%r10),%r12d - 6634d1a0: 45 31 d2 xor %r10d,%r10d - 6634d1a3: 4c 8b 48 38 mov 0x38(%rax),%r9 - 6634d1a7: 45 85 e4 test %r12d,%r12d - 6634d1aa: 41 0f 9f c2 setg %r10b - 6634d1ae: 45 3b 11 cmp (%r9),%r10d - 6634d1b1: 74 30 je 6634d1e3 - 6634d1b3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d1b7: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634d1bb: 41 8b 29 mov (%r9),%ebp - 6634d1be: 85 ed test %ebp,%ebp - 6634d1c0: 75 21 jne 6634d1e3 - 6634d1c2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d1c6: 4d 8b 51 38 mov 0x38(%r9),%r10 - 6634d1ca: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d1ce: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d1d5: 4c 63 09 movslq (%rcx),%r9 - 6634d1d8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d1dc: 44 89 19 mov %r11d,(%rcx) - 6634d1df: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d1e3: 44 8b 4a 20 mov 0x20(%rdx),%r9d - 6634d1e7: 45 85 c9 test %r9d,%r9d - 6634d1ea: 74 57 je 6634d243 - 6634d1ec: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d1f0: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634d1f4: 45 29 0a sub %r9d,(%r10) - 6634d1f7: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634d1fe: 41 8b 3a mov (%r10),%edi - 6634d201: 45 31 d2 xor %r10d,%r10d - 6634d204: 4c 8b 48 40 mov 0x40(%rax),%r9 - 6634d208: 85 ff test %edi,%edi - 6634d20a: 41 0f 9f c2 setg %r10b - 6634d20e: 45 3b 11 cmp (%r9),%r10d - 6634d211: 74 30 je 6634d243 - 6634d213: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d217: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634d21b: 41 8b 31 mov (%r9),%esi - 6634d21e: 85 f6 test %esi,%esi - 6634d220: 75 21 jne 6634d243 - 6634d222: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d226: 4d 8b 51 40 mov 0x40(%r9),%r10 - 6634d22a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d22e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d235: 4c 63 09 movslq (%rcx),%r9 - 6634d238: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d23c: 44 89 19 mov %r11d,(%rcx) - 6634d23f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d243: 44 8b 4a 24 mov 0x24(%rdx),%r9d - 6634d247: 45 85 c9 test %r9d,%r9d - 6634d24a: 74 59 je 6634d2a5 - 6634d24c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d250: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634d254: 45 29 0a sub %r9d,(%r10) - 6634d257: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634d25e: 45 8b 1a mov (%r10),%r11d - 6634d261: 45 31 d2 xor %r10d,%r10d - 6634d264: 4c 8b 48 48 mov 0x48(%rax),%r9 - 6634d268: 45 85 db test %r11d,%r11d - 6634d26b: 41 0f 9f c2 setg %r10b - 6634d26f: 45 3b 11 cmp (%r9),%r10d - 6634d272: 74 31 je 6634d2a5 - 6634d274: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d278: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634d27c: 45 8b 11 mov (%r9),%r10d - 6634d27f: 45 85 d2 test %r10d,%r10d - 6634d282: 75 21 jne 6634d2a5 - 6634d284: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d288: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634d28c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d290: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d297: 4c 63 09 movslq (%rcx),%r9 - 6634d29a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d29e: 44 89 19 mov %r11d,(%rcx) - 6634d2a1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d2a5: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634d2a9: 45 85 c9 test %r9d,%r9d - 6634d2ac: 74 59 je 6634d307 - 6634d2ae: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d2b2: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634d2b6: 45 29 0a sub %r9d,(%r10) - 6634d2b9: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634d2c0: 45 8b 0a mov (%r10),%r9d - 6634d2c3: 45 31 d2 xor %r10d,%r10d - 6634d2c6: 45 85 c9 test %r9d,%r9d - 6634d2c9: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634d2cd: 41 0f 9f c2 setg %r10b - 6634d2d1: 45 3b 11 cmp (%r9),%r10d - 6634d2d4: 74 31 je 6634d307 - 6634d2d6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d2da: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634d2de: 45 8b 29 mov (%r9),%r13d - 6634d2e1: 45 85 ed test %r13d,%r13d - 6634d2e4: 75 21 jne 6634d307 - 6634d2e6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d2ea: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634d2ee: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d2f2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d2f9: 4c 63 09 movslq (%rcx),%r9 - 6634d2fc: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d300: 44 89 19 mov %r11d,(%rcx) - 6634d303: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d307: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634d30b: 45 85 c9 test %r9d,%r9d - 6634d30e: 74 58 je 6634d368 - 6634d310: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d314: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634d318: 45 29 0a sub %r9d,(%r10) - 6634d31b: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634d322: 45 8b 22 mov (%r10),%r12d - 6634d325: 45 31 d2 xor %r10d,%r10d - 6634d328: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634d32c: 45 85 e4 test %r12d,%r12d - 6634d32f: 41 0f 9f c2 setg %r10b - 6634d333: 45 3b 11 cmp (%r9),%r10d - 6634d336: 74 30 je 6634d368 - 6634d338: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d33c: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634d340: 41 8b 29 mov (%r9),%ebp - 6634d343: 85 ed test %ebp,%ebp - 6634d345: 75 21 jne 6634d368 - 6634d347: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d34b: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634d34f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d353: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d35a: 4c 63 09 movslq (%rcx),%r9 - 6634d35d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d361: 44 89 19 mov %r11d,(%rcx) - 6634d364: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d368: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634d36c: 45 85 c9 test %r9d,%r9d - 6634d36f: 74 57 je 6634d3c8 - 6634d371: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d375: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634d379: 45 29 0a sub %r9d,(%r10) - 6634d37c: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634d383: 41 8b 3a mov (%r10),%edi - 6634d386: 45 31 d2 xor %r10d,%r10d - 6634d389: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634d38d: 85 ff test %edi,%edi - 6634d38f: 41 0f 9f c2 setg %r10b - 6634d393: 45 3b 11 cmp (%r9),%r10d - 6634d396: 74 30 je 6634d3c8 - 6634d398: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d39c: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634d3a0: 41 8b 31 mov (%r9),%esi - 6634d3a3: 85 f6 test %esi,%esi - 6634d3a5: 75 21 jne 6634d3c8 - 6634d3a7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d3ab: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634d3af: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d3b3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d3ba: 4c 63 09 movslq (%rcx),%r9 - 6634d3bd: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d3c1: 44 89 19 mov %r11d,(%rcx) - 6634d3c4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d3c8: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634d3cc: 45 85 c9 test %r9d,%r9d - 6634d3cf: 74 59 je 6634d42a - 6634d3d1: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d3d5: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634d3d9: 45 29 0a sub %r9d,(%r10) - 6634d3dc: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634d3e3: 45 8b 1a mov (%r10),%r11d - 6634d3e6: 45 31 d2 xor %r10d,%r10d - 6634d3e9: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634d3ed: 45 85 db test %r11d,%r11d - 6634d3f0: 41 0f 9f c2 setg %r10b - 6634d3f4: 45 3b 11 cmp (%r9),%r10d - 6634d3f7: 74 31 je 6634d42a - 6634d3f9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d3fd: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634d401: 45 8b 11 mov (%r9),%r10d - 6634d404: 45 85 d2 test %r10d,%r10d - 6634d407: 75 21 jne 6634d42a - 6634d409: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d40d: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634d411: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d415: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d41c: 4c 63 09 movslq (%rcx),%r9 - 6634d41f: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d423: 44 89 19 mov %r11d,(%rcx) - 6634d426: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d42a: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634d42e: 45 85 c9 test %r9d,%r9d - 6634d431: 0f 84 2a fd ff ff je 6634d161 - 6634d437: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d43b: 48 8b 40 70 mov 0x70(%rax),%rax - 6634d43f: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634d443: 45 29 0a sub %r9d,(%r10) - 6634d446: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634d44d: 31 d2 xor %edx,%edx - 6634d44f: 45 8b 0a mov (%r10),%r9d - 6634d452: 45 85 c9 test %r9d,%r9d - 6634d455: 0f 9f c2 setg %dl - 6634d458: 3b 10 cmp (%rax),%edx - 6634d45a: 0f 84 01 fd ff ff je 6634d161 - 6634d460: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d464: 48 8b 40 70 mov 0x70(%rax),%rax - 6634d468: 8b 00 mov (%rax),%eax - 6634d46a: 85 c0 test %eax,%eax - 6634d46c: 0f 85 ef fc ff ff jne 6634d161 - 6634d472: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d476: 48 8b 50 70 mov 0x70(%rax),%rdx - 6634d47a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d47e: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d484: 48 63 01 movslq (%rcx),%rax - 6634d487: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d48b: 44 89 09 mov %r9d,(%rcx) - 6634d48e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d492: 48 83 c4 28 add $0x28,%rsp - 6634d496: 5b pop %rbx - 6634d497: 5e pop %rsi - 6634d498: 5f pop %rdi - 6634d499: 5d pop %rbp - 6634d49a: 41 5c pop %r12 - 6634d49c: 41 5d pop %r13 - 6634d49e: c3 retq - 6634d49f: 90 nop +000000006634c3a0 : + 6634c3a0: 41 55 push %r13 + 6634c3a2: 41 54 push %r12 + 6634c3a4: 55 push %rbp + 6634c3a5: 57 push %rdi + 6634c3a6: 56 push %rsi + 6634c3a7: 53 push %rbx + 6634c3a8: 48 83 ec 28 sub $0x28,%rsp + 6634c3ac: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634c3b0: 48 8b 42 68 mov 0x68(%rdx),%rax + 6634c3b4: 48 89 cb mov %rcx,%rbx + 6634c3b7: 8b 00 mov (%rax),%eax + 6634c3b9: 85 c0 test %eax,%eax + 6634c3bb: 0f 84 ff 00 00 00 je 6634c4c0 + 6634c3c1: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c3c5: be 14 00 00 00 mov $0x14,%esi + 6634c3ca: 4c 8d 2d 2f 7c 00 00 lea 0x7c2f(%rip),%r13 # 66354000 <.rdata> + 6634c3d1: 4c 8d 25 38 7c 00 00 lea 0x7c38(%rip),%r12 # 66354010 <.rdata+0x10> + 6634c3d8: 8b 08 mov (%rax),%ecx + 6634c3da: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634c3de: 8b 00 mov (%rax),%eax + 6634c3e0: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634c3e3: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 6634c3e7: 48 8b 52 20 mov 0x20(%rdx),%rdx + 6634c3eb: 8b 09 mov (%rcx),%ecx + 6634c3ed: 8b 12 mov (%rdx),%edx + 6634c3ef: 8d 04 88 lea (%rax,%rcx,4),%eax + 6634c3f2: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634c3f5: 48 63 ef movslq %edi,%rbp + 6634c3f8: 48 c1 e5 02 shl $0x2,%rbp + 6634c3fc: 0f 1f 40 00 nopl 0x0(%rax) + 6634c400: 85 ff test %edi,%edi + 6634c402: 78 05 js 6634c409 + 6634c404: 39 7b 38 cmp %edi,0x38(%rbx) + 6634c407: 7f 11 jg 6634c41a + 6634c409: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634c40f: 4c 89 ea mov %r13,%rdx + 6634c412: 4c 89 e1 mov %r12,%rcx + 6634c415: e8 f6 5d 00 00 callq 66352210 <_assert> + 6634c41a: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634c41e: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634c422: 48 01 f2 add %rsi,%rdx + 6634c425: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634c428: 8b 0a mov (%rdx),%ecx + 6634c42a: 39 c8 cmp %ecx,%eax + 6634c42c: 74 69 je 6634c497 + 6634c42e: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634c432: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634c436: 41 89 c3 mov %eax,%r11d + 6634c439: 41 29 cb sub %ecx,%r11d + 6634c43c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634c440: 45 01 18 add %r11d,(%r8) + 6634c443: 89 02 mov %eax,(%rdx) + 6634c445: 31 d2 xor %edx,%edx + 6634c447: 41 8b 00 mov (%r8),%eax + 6634c44a: 85 c0 test %eax,%eax + 6634c44c: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634c450: 0f 9f c2 setg %dl + 6634c453: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634c457: 3b 10 cmp (%rax),%edx + 6634c459: 74 3c je 6634c497 + 6634c45b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c45f: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634c463: 8b 00 mov (%rax),%eax + 6634c465: 85 c0 test %eax,%eax + 6634c467: 75 2e jne 6634c497 + 6634c469: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c46d: 48 8b 0d bc b4 00 00 mov 0xb4bc(%rip),%rcx # 66357930 + 6634c474: 4c 8b 05 a5 b4 00 00 mov 0xb4a5(%rip),%r8 # 66357920 + 6634c47b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634c47f: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c483: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c489: 48 63 01 movslq (%rcx),%rax + 6634c48c: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c490: 44 89 09 mov %r9d,(%rcx) + 6634c493: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c497: 48 83 c6 04 add $0x4,%rsi + 6634c49b: 83 c7 10 add $0x10,%edi + 6634c49e: 48 83 c5 40 add $0x40,%rbp + 6634c4a2: 48 83 fe 34 cmp $0x34,%rsi + 6634c4a6: 0f 85 54 ff ff ff jne 6634c400 + 6634c4ac: 48 83 c4 28 add $0x28,%rsp + 6634c4b0: 5b pop %rbx + 6634c4b1: 5e pop %rsi + 6634c4b2: 5f pop %rdi + 6634c4b3: 5d pop %rbp + 6634c4b4: 41 5c pop %r12 + 6634c4b6: 41 5d pop %r13 + 6634c4b8: c3 retq + 6634c4b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634c4c0: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634c4c4: 4c 8b 05 55 b4 00 00 mov 0xb455(%rip),%r8 # 66357920 + 6634c4cb: 48 8b 0d 5e b4 00 00 mov 0xb45e(%rip),%rcx # 66357930 + 6634c4d2: 44 8b 48 14 mov 0x14(%rax),%r9d + 6634c4d6: 45 85 c9 test %r9d,%r9d + 6634c4d9: 74 59 je 6634c534 + 6634c4db: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c4df: 4c 8b 5a 28 mov 0x28(%rdx),%r11 + 6634c4e3: 4d 8b 52 28 mov 0x28(%r10),%r10 + 6634c4e7: 45 29 0a sub %r9d,(%r10) + 6634c4ea: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 6634c4f1: 45 31 c9 xor %r9d,%r9d + 6634c4f4: 45 8b 2a mov (%r10),%r13d + 6634c4f7: 45 85 ed test %r13d,%r13d + 6634c4fa: 41 0f 9f c1 setg %r9b + 6634c4fe: 45 39 0b cmp %r9d,(%r11) + 6634c501: 74 31 je 6634c534 + 6634c503: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c507: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634c50b: 45 8b 21 mov (%r9),%r12d + 6634c50e: 45 85 e4 test %r12d,%r12d + 6634c511: 75 21 jne 6634c534 + 6634c513: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c517: 4d 8b 51 28 mov 0x28(%r9),%r10 + 6634c51b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c51f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c526: 4c 63 09 movslq (%rcx),%r9 + 6634c529: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c52d: 44 89 19 mov %r11d,(%rcx) + 6634c530: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c534: 44 8b 48 18 mov 0x18(%rax),%r9d + 6634c538: 45 85 c9 test %r9d,%r9d + 6634c53b: 74 57 je 6634c594 + 6634c53d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c541: 4d 8b 52 30 mov 0x30(%r10),%r10 + 6634c545: 45 29 0a sub %r9d,(%r10) + 6634c548: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 6634c54f: 41 8b 2a mov (%r10),%ebp + 6634c552: 45 31 d2 xor %r10d,%r10d + 6634c555: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 6634c559: 85 ed test %ebp,%ebp + 6634c55b: 41 0f 9f c2 setg %r10b + 6634c55f: 45 3b 11 cmp (%r9),%r10d + 6634c562: 74 30 je 6634c594 + 6634c564: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c568: 4d 8b 49 30 mov 0x30(%r9),%r9 + 6634c56c: 41 8b 39 mov (%r9),%edi + 6634c56f: 85 ff test %edi,%edi + 6634c571: 75 21 jne 6634c594 + 6634c573: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c577: 4d 8b 51 30 mov 0x30(%r9),%r10 + 6634c57b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c57f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c586: 4c 63 09 movslq (%rcx),%r9 + 6634c589: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c58d: 44 89 19 mov %r11d,(%rcx) + 6634c590: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c594: 44 8b 48 1c mov 0x1c(%rax),%r9d + 6634c598: 45 85 c9 test %r9d,%r9d + 6634c59b: 74 58 je 6634c5f5 + 6634c59d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c5a1: 4d 8b 52 38 mov 0x38(%r10),%r10 + 6634c5a5: 45 29 0a sub %r9d,(%r10) + 6634c5a8: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 6634c5af: 41 8b 32 mov (%r10),%esi + 6634c5b2: 45 31 d2 xor %r10d,%r10d + 6634c5b5: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 6634c5b9: 85 f6 test %esi,%esi + 6634c5bb: 41 0f 9f c2 setg %r10b + 6634c5bf: 45 3b 11 cmp (%r9),%r10d + 6634c5c2: 74 31 je 6634c5f5 + 6634c5c4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c5c8: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634c5cc: 45 8b 19 mov (%r9),%r11d + 6634c5cf: 45 85 db test %r11d,%r11d + 6634c5d2: 75 21 jne 6634c5f5 + 6634c5d4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c5d8: 4d 8b 51 38 mov 0x38(%r9),%r10 + 6634c5dc: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c5e0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c5e7: 4c 63 09 movslq (%rcx),%r9 + 6634c5ea: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c5ee: 44 89 19 mov %r11d,(%rcx) + 6634c5f1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c5f5: 44 8b 48 20 mov 0x20(%rax),%r9d + 6634c5f9: 45 85 c9 test %r9d,%r9d + 6634c5fc: 74 5a je 6634c658 + 6634c5fe: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c602: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634c606: 45 29 0a sub %r9d,(%r10) + 6634c609: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 6634c610: 45 8b 12 mov (%r10),%r10d + 6634c613: 4c 8b 4a 40 mov 0x40(%rdx),%r9 + 6634c617: 45 85 d2 test %r10d,%r10d + 6634c61a: 41 0f 9f c2 setg %r10b + 6634c61e: 45 0f b6 d2 movzbl %r10b,%r10d + 6634c622: 45 3b 11 cmp (%r9),%r10d + 6634c625: 74 31 je 6634c658 + 6634c627: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c62b: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634c62f: 45 8b 09 mov (%r9),%r9d + 6634c632: 45 85 c9 test %r9d,%r9d + 6634c635: 75 21 jne 6634c658 + 6634c637: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c63b: 4d 8b 51 40 mov 0x40(%r9),%r10 + 6634c63f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c643: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c64a: 4c 63 09 movslq (%rcx),%r9 + 6634c64d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c651: 44 89 19 mov %r11d,(%rcx) + 6634c654: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c658: 44 8b 48 24 mov 0x24(%rax),%r9d + 6634c65c: 45 85 c9 test %r9d,%r9d + 6634c65f: 74 59 je 6634c6ba + 6634c661: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c665: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634c669: 45 29 0a sub %r9d,(%r10) + 6634c66c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 6634c673: 45 8b 2a mov (%r10),%r13d + 6634c676: 45 31 d2 xor %r10d,%r10d + 6634c679: 4c 8b 4a 48 mov 0x48(%rdx),%r9 + 6634c67d: 45 85 ed test %r13d,%r13d + 6634c680: 41 0f 9f c2 setg %r10b + 6634c684: 45 3b 11 cmp (%r9),%r10d + 6634c687: 74 31 je 6634c6ba + 6634c689: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c68d: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634c691: 45 8b 21 mov (%r9),%r12d + 6634c694: 45 85 e4 test %r12d,%r12d + 6634c697: 75 21 jne 6634c6ba + 6634c699: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c69d: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634c6a1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c6a5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c6ac: 4c 63 09 movslq (%rcx),%r9 + 6634c6af: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c6b3: 44 89 19 mov %r11d,(%rcx) + 6634c6b6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c6ba: 44 8b 48 28 mov 0x28(%rax),%r9d + 6634c6be: 45 85 c9 test %r9d,%r9d + 6634c6c1: 74 57 je 6634c71a + 6634c6c3: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c6c7: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634c6cb: 45 29 0a sub %r9d,(%r10) + 6634c6ce: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 6634c6d5: 41 8b 2a mov (%r10),%ebp + 6634c6d8: 45 31 d2 xor %r10d,%r10d + 6634c6db: 4c 8b 4a 50 mov 0x50(%rdx),%r9 + 6634c6df: 85 ed test %ebp,%ebp + 6634c6e1: 41 0f 9f c2 setg %r10b + 6634c6e5: 45 3b 11 cmp (%r9),%r10d + 6634c6e8: 74 30 je 6634c71a + 6634c6ea: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c6ee: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634c6f2: 41 8b 39 mov (%r9),%edi + 6634c6f5: 85 ff test %edi,%edi + 6634c6f7: 75 21 jne 6634c71a + 6634c6f9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c6fd: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634c701: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c705: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c70c: 4c 63 09 movslq (%rcx),%r9 + 6634c70f: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c713: 44 89 19 mov %r11d,(%rcx) + 6634c716: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c71a: 44 8b 48 2c mov 0x2c(%rax),%r9d + 6634c71e: 45 85 c9 test %r9d,%r9d + 6634c721: 74 58 je 6634c77b + 6634c723: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c727: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634c72b: 45 29 0a sub %r9d,(%r10) + 6634c72e: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 6634c735: 41 8b 32 mov (%r10),%esi + 6634c738: 45 31 d2 xor %r10d,%r10d + 6634c73b: 4c 8b 4a 58 mov 0x58(%rdx),%r9 + 6634c73f: 85 f6 test %esi,%esi + 6634c741: 41 0f 9f c2 setg %r10b + 6634c745: 45 3b 11 cmp (%r9),%r10d + 6634c748: 74 31 je 6634c77b + 6634c74a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c74e: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634c752: 45 8b 19 mov (%r9),%r11d + 6634c755: 45 85 db test %r11d,%r11d + 6634c758: 75 21 jne 6634c77b + 6634c75a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c75e: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634c762: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c766: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c76d: 4c 63 09 movslq (%rcx),%r9 + 6634c770: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c774: 44 89 19 mov %r11d,(%rcx) + 6634c777: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c77b: 44 8b 48 30 mov 0x30(%rax),%r9d + 6634c77f: 45 85 c9 test %r9d,%r9d + 6634c782: 0f 84 24 fd ff ff je 6634c4ac + 6634c788: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c78c: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634c790: 45 29 0a sub %r9d,(%r10) + 6634c793: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 6634c79a: 45 31 c9 xor %r9d,%r9d + 6634c79d: 45 8b 12 mov (%r10),%r10d + 6634c7a0: 48 8b 42 60 mov 0x60(%rdx),%rax + 6634c7a4: 45 85 d2 test %r10d,%r10d + 6634c7a7: 41 0f 9f c1 setg %r9b + 6634c7ab: 44 3b 08 cmp (%rax),%r9d + 6634c7ae: 0f 84 f8 fc ff ff je 6634c4ac + 6634c7b4: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c7b8: 48 8b 40 60 mov 0x60(%rax),%rax + 6634c7bc: 8b 00 mov (%rax),%eax + 6634c7be: 85 c0 test %eax,%eax + 6634c7c0: 0f 85 e6 fc ff ff jne 6634c4ac + 6634c7c6: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c7ca: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634c7ce: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c7d2: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c7d8: 48 63 01 movslq (%rcx),%rax + 6634c7db: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c7df: 44 89 09 mov %r9d,(%rcx) + 6634c7e2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c7e6: 48 83 c4 28 add $0x28,%rsp + 6634c7ea: 5b pop %rbx + 6634c7eb: 5e pop %rsi + 6634c7ec: 5f pop %rdi + 6634c7ed: 5d pop %rbp + 6634c7ee: 41 5c pop %r12 + 6634c7f0: 41 5d pop %r13 + 6634c7f2: c3 retq + 6634c7f3: 0f 1f 00 nopl (%rax) + 6634c7f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634c7fd: 00 00 00 -000000006634d4a0 : - 6634d4a0: 57 push %rdi - 6634d4a1: 56 push %rsi - 6634d4a2: 53 push %rbx - 6634d4a3: 48 83 ec 20 sub $0x20,%rsp - 6634d4a7: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634d4ab: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634d4af: 48 89 cb mov %rcx,%rbx - 6634d4b2: 8b 32 mov (%rdx),%esi - 6634d4b4: 85 f6 test %esi,%esi - 6634d4b6: 0f 84 14 02 00 00 je 6634d6d0 - 6634d4bc: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634d4c0: 8b 0a mov (%rdx),%ecx - 6634d4c2: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634d4c6: 8b 12 mov (%rdx),%edx - 6634d4c8: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634d4cb: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634d4cf: 8b 09 mov (%rcx),%ecx - 6634d4d1: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634d4d4: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634d4d8: 8b 09 mov (%rcx),%ecx - 6634d4da: 8d 34 ca lea (%rdx,%rcx,8),%esi - 6634d4dd: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634d4e1: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634d4e5: 8b 12 mov (%rdx),%edx - 6634d4e7: c1 e2 04 shl $0x4,%edx - 6634d4ea: 01 d6 add %edx,%esi - 6634d4ec: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634d4f0: 48 8b 40 40 mov 0x40(%rax),%rax - 6634d4f4: 8b 12 mov (%rdx),%edx - 6634d4f6: c1 e2 05 shl $0x5,%edx - 6634d4f9: 01 f2 add %esi,%edx - 6634d4fb: 8b 31 mov (%rcx),%esi - 6634d4fd: c1 e6 06 shl $0x6,%esi - 6634d500: 01 f2 add %esi,%edx - 6634d502: 8b 30 mov (%rax),%esi - 6634d504: c1 e6 07 shl $0x7,%esi - 6634d507: 01 d6 add %edx,%esi - 6634d509: 0f 88 71 03 00 00 js 6634d880 - 6634d50f: 3b 73 38 cmp 0x38(%rbx),%esi - 6634d512: 0f 8d 68 03 00 00 jge 6634d880 - 6634d518: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634d51c: 48 63 c6 movslq %esi,%rax - 6634d51f: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634d522: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634d526: 44 8b 40 24 mov 0x24(%rax),%r8d - 6634d52a: 41 39 c8 cmp %ecx,%r8d - 6634d52d: 74 3f je 6634d56e - 6634d52f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d533: 89 cf mov %ecx,%edi - 6634d535: 44 29 c7 sub %r8d,%edi - 6634d538: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634d53c: 41 01 39 add %edi,(%r9) - 6634d53f: 89 48 24 mov %ecx,0x24(%rax) - 6634d542: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634d546: 45 8b 19 mov (%r9),%r11d - 6634d549: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634d54d: 31 c9 xor %ecx,%ecx - 6634d54f: 45 85 db test %r11d,%r11d - 6634d552: 0f 9f c1 setg %cl - 6634d555: 41 39 08 cmp %ecx,(%r8) - 6634d558: 74 14 je 6634d56e - 6634d55a: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634d55e: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634d562: 44 8b 11 mov (%rcx),%r10d - 6634d565: 45 85 d2 test %r10d,%r10d - 6634d568: 0f 84 32 04 00 00 je 6634d9a0 - 6634d56e: 89 f7 mov %esi,%edi - 6634d570: 81 c7 00 01 00 00 add $0x100,%edi - 6634d576: 0f 88 24 03 00 00 js 6634d8a0 - 6634d57c: 39 7b 38 cmp %edi,0x38(%rbx) - 6634d57f: 0f 8e 1b 03 00 00 jle 6634d8a0 - 6634d585: 48 63 ff movslq %edi,%rdi - 6634d588: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634d58c: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634d58f: 44 39 c1 cmp %r8d,%ecx - 6634d592: 74 41 je 6634d5d5 - 6634d594: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d598: 89 cf mov %ecx,%edi - 6634d59a: 44 29 c7 sub %r8d,%edi - 6634d59d: 45 31 c0 xor %r8d,%r8d - 6634d5a0: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634d5a4: 41 01 39 add %edi,(%r9) - 6634d5a7: 89 48 28 mov %ecx,0x28(%rax) - 6634d5aa: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634d5ae: 45 8b 09 mov (%r9),%r9d - 6634d5b1: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634d5b5: 45 85 c9 test %r9d,%r9d - 6634d5b8: 41 0f 9f c0 setg %r8b - 6634d5bc: 44 3b 01 cmp (%rcx),%r8d - 6634d5bf: 74 14 je 6634d5d5 - 6634d5c1: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634d5c5: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634d5c9: 44 8b 01 mov (%rcx),%r8d - 6634d5cc: 45 85 c0 test %r8d,%r8d - 6634d5cf: 0f 84 8e 03 00 00 je 6634d963 - 6634d5d5: 89 f7 mov %esi,%edi - 6634d5d7: 81 c7 00 02 00 00 add $0x200,%edi - 6634d5dd: 0f 88 ed 02 00 00 js 6634d8d0 - 6634d5e3: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634d5e6: 0f 8d e4 02 00 00 jge 6634d8d0 - 6634d5ec: 48 63 ff movslq %edi,%rdi - 6634d5ef: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634d5f3: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634d5f6: 44 39 c1 cmp %r8d,%ecx - 6634d5f9: 74 3e je 6634d639 - 6634d5fb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d5ff: 89 cf mov %ecx,%edi - 6634d601: 44 29 c7 sub %r8d,%edi - 6634d604: 45 31 c0 xor %r8d,%r8d - 6634d607: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634d60b: 41 01 39 add %edi,(%r9) - 6634d60e: 89 48 2c mov %ecx,0x2c(%rax) - 6634d611: 41 8b 09 mov (%r9),%ecx - 6634d614: 85 c9 test %ecx,%ecx - 6634d616: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634d61a: 41 0f 9f c0 setg %r8b - 6634d61e: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634d622: 44 3b 01 cmp (%rcx),%r8d - 6634d625: 74 12 je 6634d639 - 6634d627: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634d62b: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634d62f: 8b 39 mov (%rcx),%edi - 6634d631: 85 ff test %edi,%edi - 6634d633: 0f 84 f7 02 00 00 je 6634d930 - 6634d639: 81 c6 00 03 00 00 add $0x300,%esi - 6634d63f: 0f 88 bb 02 00 00 js 6634d900 - 6634d645: 3b 73 38 cmp 0x38(%rbx),%esi - 6634d648: 0f 8d b2 02 00 00 jge 6634d900 - 6634d64e: 48 63 f6 movslq %esi,%rsi - 6634d651: 8b 48 30 mov 0x30(%rax),%ecx - 6634d654: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634d657: 39 ca cmp %ecx,%edx - 6634d659: 74 67 je 6634d6c2 - 6634d65b: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634d65f: 89 d7 mov %edx,%edi - 6634d661: 29 cf sub %ecx,%edi - 6634d663: 4d 8b 40 60 mov 0x60(%r8),%r8 - 6634d667: 41 01 38 add %edi,(%r8) - 6634d66a: 89 50 30 mov %edx,0x30(%rax) - 6634d66d: 31 d2 xor %edx,%edx - 6634d66f: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634d673: 45 8b 18 mov (%r8),%r11d - 6634d676: 48 8b 40 60 mov 0x60(%rax),%rax - 6634d67a: 45 85 db test %r11d,%r11d - 6634d67d: 0f 9f c2 setg %dl - 6634d680: 3b 10 cmp (%rax),%edx - 6634d682: 74 3e je 6634d6c2 - 6634d684: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d688: 48 8b 40 60 mov 0x60(%rax),%rax - 6634d68c: 44 8b 10 mov (%rax),%r10d - 6634d68f: 45 85 d2 test %r10d,%r10d - 6634d692: 75 2e jne 6634d6c2 - 6634d694: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d698: 48 8b 0d 91 a2 00 00 mov 0xa291(%rip),%rcx # 66357930 - 6634d69f: 4c 8b 05 7a a2 00 00 mov 0xa27a(%rip),%r8 # 66357920 - 6634d6a6: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634d6aa: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d6ae: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d6b4: 48 63 01 movslq (%rcx),%rax - 6634d6b7: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d6bb: 44 89 09 mov %r9d,(%rcx) - 6634d6be: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d6c2: 48 83 c4 20 add $0x20,%rsp - 6634d6c6: 5b pop %rbx - 6634d6c7: 5e pop %rsi - 6634d6c8: 5f pop %rdi - 6634d6c9: c3 retq - 6634d6ca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634d6d0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634d6d4: 4c 8b 15 45 a2 00 00 mov 0xa245(%rip),%r10 # 66357920 - 6634d6db: 48 8b 0d 4e a2 00 00 mov 0xa24e(%rip),%rcx # 66357930 - 6634d6e2: 44 8b 42 24 mov 0x24(%rdx),%r8d - 6634d6e6: 45 85 c0 test %r8d,%r8d - 6634d6e9: 74 5a je 6634d745 - 6634d6eb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d6ef: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634d6f3: 45 29 01 sub %r8d,(%r9) - 6634d6f6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634d6fd: 45 8b 09 mov (%r9),%r9d - 6634d700: 4c 8b 40 48 mov 0x48(%rax),%r8 - 6634d704: 45 85 c9 test %r9d,%r9d - 6634d707: 41 0f 9f c1 setg %r9b - 6634d70b: 45 0f b6 c9 movzbl %r9b,%r9d - 6634d70f: 45 3b 08 cmp (%r8),%r9d - 6634d712: 74 31 je 6634d745 - 6634d714: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634d718: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634d71c: 45 8b 00 mov (%r8),%r8d - 6634d71f: 45 85 c0 test %r8d,%r8d - 6634d722: 75 21 jne 6634d745 - 6634d724: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634d728: 4d 8b 48 48 mov 0x48(%r8),%r9 - 6634d72c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634d730: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634d737: 4c 63 01 movslq (%rcx),%r8 - 6634d73a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634d73e: 44 89 19 mov %r11d,(%rcx) - 6634d741: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634d745: 44 8b 42 28 mov 0x28(%rdx),%r8d - 6634d749: 45 85 c0 test %r8d,%r8d - 6634d74c: 74 57 je 6634d7a5 - 6634d74e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d752: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634d756: 45 29 01 sub %r8d,(%r9) - 6634d759: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634d760: 41 8b 39 mov (%r9),%edi - 6634d763: 45 31 c9 xor %r9d,%r9d - 6634d766: 4c 8b 40 50 mov 0x50(%rax),%r8 - 6634d76a: 85 ff test %edi,%edi - 6634d76c: 41 0f 9f c1 setg %r9b - 6634d770: 45 3b 08 cmp (%r8),%r9d - 6634d773: 74 30 je 6634d7a5 - 6634d775: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634d779: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634d77d: 41 8b 30 mov (%r8),%esi - 6634d780: 85 f6 test %esi,%esi - 6634d782: 75 21 jne 6634d7a5 - 6634d784: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634d788: 4d 8b 48 50 mov 0x50(%r8),%r9 - 6634d78c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634d790: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634d797: 4c 63 01 movslq (%rcx),%r8 - 6634d79a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634d79e: 44 89 19 mov %r11d,(%rcx) - 6634d7a1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634d7a5: 44 8b 42 2c mov 0x2c(%rdx),%r8d - 6634d7a9: 45 85 c0 test %r8d,%r8d - 6634d7ac: 74 59 je 6634d807 - 6634d7ae: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d7b2: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634d7b6: 45 29 01 sub %r8d,(%r9) - 6634d7b9: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634d7c0: 45 8b 19 mov (%r9),%r11d - 6634d7c3: 45 31 c9 xor %r9d,%r9d - 6634d7c6: 4c 8b 40 58 mov 0x58(%rax),%r8 - 6634d7ca: 45 85 db test %r11d,%r11d - 6634d7cd: 41 0f 9f c1 setg %r9b - 6634d7d1: 45 3b 08 cmp (%r8),%r9d - 6634d7d4: 74 31 je 6634d807 - 6634d7d6: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634d7da: 4d 8b 40 58 mov 0x58(%r8),%r8 - 6634d7de: 45 8b 08 mov (%r8),%r9d - 6634d7e1: 45 85 c9 test %r9d,%r9d - 6634d7e4: 75 21 jne 6634d807 - 6634d7e6: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634d7ea: 4d 8b 48 58 mov 0x58(%r8),%r9 - 6634d7ee: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634d7f2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634d7f9: 4c 63 01 movslq (%rcx),%r8 - 6634d7fc: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634d800: 44 89 19 mov %r11d,(%rcx) - 6634d803: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634d807: 44 8b 42 30 mov 0x30(%rdx),%r8d - 6634d80b: 45 85 c0 test %r8d,%r8d - 6634d80e: 0f 84 ae fe ff ff je 6634d6c2 - 6634d814: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634d818: 48 8b 40 60 mov 0x60(%rax),%rax - 6634d81c: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634d820: 45 29 01 sub %r8d,(%r9) - 6634d823: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634d82a: 31 d2 xor %edx,%edx - 6634d82c: 45 8b 01 mov (%r9),%r8d - 6634d82f: 45 85 c0 test %r8d,%r8d - 6634d832: 0f 9f c2 setg %dl - 6634d835: 3b 10 cmp (%rax),%edx - 6634d837: 0f 84 85 fe ff ff je 6634d6c2 - 6634d83d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d841: 48 8b 40 60 mov 0x60(%rax),%rax - 6634d845: 8b 00 mov (%rax),%eax - 6634d847: 85 c0 test %eax,%eax - 6634d849: 0f 85 73 fe ff ff jne 6634d6c2 - 6634d84f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d853: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634d857: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d85b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d861: 48 63 01 movslq (%rcx),%rax - 6634d864: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634d868: 44 89 01 mov %r8d,(%rcx) - 6634d86b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634d86f: 48 83 c4 20 add $0x20,%rsp - 6634d873: 5b pop %rbx - 6634d874: 5e pop %rsi - 6634d875: 5f pop %rdi - 6634d876: c3 retq - 6634d877: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634d87e: 00 00 - 6634d880: 48 8d 15 79 67 00 00 lea 0x6779(%rip),%rdx # 66354000 <.rdata> - 6634d887: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d88d: 48 8d 0d 7c 67 00 00 lea 0x677c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634d894: e8 b7 46 00 00 callq 66351f50 <_assert> - 6634d899: e9 7a fc ff ff jmpq 6634d518 - 6634d89e: 66 90 xchg %ax,%ax - 6634d8a0: 48 8d 15 59 67 00 00 lea 0x6759(%rip),%rdx # 66354000 <.rdata> - 6634d8a7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d8ad: 48 8d 0d 5c 67 00 00 lea 0x675c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634d8b4: e8 97 46 00 00 callq 66351f50 <_assert> - 6634d8b9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634d8bd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634d8c1: e9 bf fc ff ff jmpq 6634d585 - 6634d8c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d8cd: 00 00 00 - 6634d8d0: 48 8d 15 29 67 00 00 lea 0x6729(%rip),%rdx # 66354000 <.rdata> - 6634d8d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d8dd: 48 8d 0d 2c 67 00 00 lea 0x672c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634d8e4: e8 67 46 00 00 callq 66351f50 <_assert> - 6634d8e9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634d8ed: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634d8f1: e9 f6 fc ff ff jmpq 6634d5ec - 6634d8f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d8fd: 00 00 00 - 6634d900: 48 8d 15 f9 66 00 00 lea 0x66f9(%rip),%rdx # 66354000 <.rdata> - 6634d907: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d90d: 48 8d 0d fc 66 00 00 lea 0x66fc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634d914: e8 37 46 00 00 callq 66351f50 <_assert> - 6634d919: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634d91d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634d921: e9 28 fd ff ff jmpq 6634d64e - 6634d926: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d92d: 00 00 00 - 6634d930: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634d934: 4c 8b 0d f5 9f 00 00 mov 0x9ff5(%rip),%r9 # 66357930 - 6634d93b: 4c 8b 15 de 9f 00 00 mov 0x9fde(%rip),%r10 # 66357920 - 6634d942: 4c 8b 41 58 mov 0x58(%rcx),%r8 - 6634d946: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634d94a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634d950: 49 63 09 movslq (%r9),%rcx - 6634d953: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634d957: 45 89 19 mov %r11d,(%r9) - 6634d95a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634d95e: e9 d6 fc ff ff jmpq 6634d639 - 6634d963: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634d967: 4c 8b 0d c2 9f 00 00 mov 0x9fc2(%rip),%r9 # 66357930 - 6634d96e: 4c 8b 15 ab 9f 00 00 mov 0x9fab(%rip),%r10 # 66357920 - 6634d975: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634d979: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634d97d: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634d983: 49 63 09 movslq (%r9),%rcx - 6634d986: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634d98a: 45 89 19 mov %r11d,(%r9) - 6634d98d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634d991: e9 3f fc ff ff jmpq 6634d5d5 - 6634d996: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d99d: 00 00 00 - 6634d9a0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634d9a4: 4c 8b 0d 85 9f 00 00 mov 0x9f85(%rip),%r9 # 66357930 - 6634d9ab: 4c 8b 15 6e 9f 00 00 mov 0x9f6e(%rip),%r10 # 66357920 - 6634d9b2: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634d9b6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634d9ba: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634d9c0: 49 63 09 movslq (%r9),%rcx - 6634d9c3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634d9c7: 45 89 19 mov %r11d,(%r9) - 6634d9ca: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634d9ce: e9 9b fb ff ff jmpq 6634d56e - 6634d9d3: 0f 1f 00 nopl (%rax) - 6634d9d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d9dd: 00 00 00 +000000006634c800 : + 6634c800: 41 55 push %r13 + 6634c802: 41 54 push %r12 + 6634c804: 55 push %rbp + 6634c805: 57 push %rdi + 6634c806: 56 push %rsi + 6634c807: 53 push %rbx + 6634c808: 48 83 ec 28 sub $0x28,%rsp + 6634c80c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634c810: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx + 6634c817: 48 89 cb mov %rcx,%rbx + 6634c81a: 8b 12 mov (%rdx),%edx + 6634c81c: 85 d2 test %edx,%edx + 6634c81e: 0f 84 5c 01 00 00 je 6634c980 + 6634c824: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634c828: be 34 00 00 00 mov $0x34,%esi + 6634c82d: 4c 8d 2d cc 77 00 00 lea 0x77cc(%rip),%r13 # 66354000 <.rdata> + 6634c834: 4c 8d 25 d5 77 00 00 lea 0x77d5(%rip),%r12 # 66354010 <.rdata+0x10> + 6634c83b: 8b 0a mov (%rdx),%ecx + 6634c83d: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634c841: 8b 12 mov (%rdx),%edx + 6634c843: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634c846: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634c84a: 8b 09 mov (%rcx),%ecx + 6634c84c: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634c84f: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634c853: 8b 09 mov (%rcx),%ecx + 6634c855: 8d 3c ca lea (%rdx,%rcx,8),%edi + 6634c858: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634c85c: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634c860: 8b 12 mov (%rdx),%edx + 6634c862: c1 e2 04 shl $0x4,%edx + 6634c865: 01 d7 add %edx,%edi + 6634c867: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634c86b: 8b 12 mov (%rdx),%edx + 6634c86d: c1 e2 05 shl $0x5,%edx + 6634c870: 01 fa add %edi,%edx + 6634c872: 8b 39 mov (%rcx),%edi + 6634c874: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634c878: c1 e7 06 shl $0x6,%edi + 6634c87b: 01 fa add %edi,%edx + 6634c87d: 8b 39 mov (%rcx),%edi + 6634c87f: 48 8b 48 58 mov 0x58(%rax),%rcx + 6634c883: c1 e7 07 shl $0x7,%edi + 6634c886: 01 d7 add %edx,%edi + 6634c888: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634c88c: 8b 12 mov (%rdx),%edx + 6634c88e: c1 e2 08 shl $0x8,%edx + 6634c891: 01 d7 add %edx,%edi + 6634c893: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634c897: 48 8b 40 60 mov 0x60(%rax),%rax + 6634c89b: 8b 12 mov (%rdx),%edx + 6634c89d: c1 e2 09 shl $0x9,%edx + 6634c8a0: 01 fa add %edi,%edx + 6634c8a2: 8b 39 mov (%rcx),%edi + 6634c8a4: c1 e7 0a shl $0xa,%edi + 6634c8a7: 01 fa add %edi,%edx + 6634c8a9: 8b 38 mov (%rax),%edi + 6634c8ab: c1 e7 0b shl $0xb,%edi + 6634c8ae: 01 d7 add %edx,%edi + 6634c8b0: 48 63 ef movslq %edi,%rbp + 6634c8b3: 48 c1 e5 02 shl $0x2,%rbp + 6634c8b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634c8be: 00 00 + 6634c8c0: 85 ff test %edi,%edi + 6634c8c2: 78 05 js 6634c8c9 + 6634c8c4: 39 7b 38 cmp %edi,0x38(%rbx) + 6634c8c7: 7f 11 jg 6634c8da + 6634c8c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634c8cf: 4c 89 ea mov %r13,%rdx + 6634c8d2: 4c 89 e1 mov %r12,%rcx + 6634c8d5: e8 36 59 00 00 callq 66352210 <_assert> + 6634c8da: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634c8de: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634c8e2: 48 01 f2 add %rsi,%rdx + 6634c8e5: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634c8e8: 8b 0a mov (%rdx),%ecx + 6634c8ea: 39 c8 cmp %ecx,%eax + 6634c8ec: 74 69 je 6634c957 + 6634c8ee: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634c8f2: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634c8f6: 41 89 c3 mov %eax,%r11d + 6634c8f9: 41 29 cb sub %ecx,%r11d + 6634c8fc: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634c900: 45 01 18 add %r11d,(%r8) + 6634c903: 89 02 mov %eax,(%rdx) + 6634c905: 31 d2 xor %edx,%edx + 6634c907: 41 8b 00 mov (%r8),%eax + 6634c90a: 85 c0 test %eax,%eax + 6634c90c: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634c910: 0f 9f c2 setg %dl + 6634c913: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634c917: 3b 10 cmp (%rax),%edx + 6634c919: 74 3c je 6634c957 + 6634c91b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c91f: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634c923: 8b 00 mov (%rax),%eax + 6634c925: 85 c0 test %eax,%eax + 6634c927: 75 2e jne 6634c957 + 6634c929: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c92d: 48 8b 0d fc af 00 00 mov 0xaffc(%rip),%rcx # 66357930 + 6634c934: 4c 8b 05 e5 af 00 00 mov 0xafe5(%rip),%r8 # 66357920 + 6634c93b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634c93f: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c943: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c949: 48 63 01 movslq (%rcx),%rax + 6634c94c: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c950: 44 89 09 mov %r9d,(%rcx) + 6634c953: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c957: 48 83 c6 04 add $0x4,%rsi + 6634c95b: 81 c7 00 10 00 00 add $0x1000,%edi + 6634c961: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 6634c968: 48 83 fe 54 cmp $0x54,%rsi + 6634c96c: 0f 85 4e ff ff ff jne 6634c8c0 + 6634c972: 48 83 c4 28 add $0x28,%rsp + 6634c976: 5b pop %rbx + 6634c977: 5e pop %rsi + 6634c978: 5f pop %rdi + 6634c979: 5d pop %rbp + 6634c97a: 41 5c pop %r12 + 6634c97c: 41 5d pop %r13 + 6634c97e: c3 retq + 6634c97f: 90 nop + 6634c980: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634c984: 4c 8b 05 95 af 00 00 mov 0xaf95(%rip),%r8 # 66357920 + 6634c98b: 48 8b 0d 9e af 00 00 mov 0xaf9e(%rip),%rcx # 66357930 + 6634c992: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634c996: 45 85 c9 test %r9d,%r9d + 6634c999: 74 58 je 6634c9f3 + 6634c99b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c99f: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634c9a3: 45 29 0a sub %r9d,(%r10) + 6634c9a6: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634c9ad: 45 8b 22 mov (%r10),%r12d + 6634c9b0: 45 31 d2 xor %r10d,%r10d + 6634c9b3: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634c9b7: 45 85 e4 test %r12d,%r12d + 6634c9ba: 41 0f 9f c2 setg %r10b + 6634c9be: 45 3b 11 cmp (%r9),%r10d + 6634c9c1: 74 30 je 6634c9f3 + 6634c9c3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c9c7: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634c9cb: 41 8b 29 mov (%r9),%ebp + 6634c9ce: 85 ed test %ebp,%ebp + 6634c9d0: 75 21 jne 6634c9f3 + 6634c9d2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c9d6: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634c9da: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c9de: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c9e5: 4c 63 09 movslq (%rcx),%r9 + 6634c9e8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c9ec: 44 89 19 mov %r11d,(%rcx) + 6634c9ef: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c9f3: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634c9f7: 45 85 c9 test %r9d,%r9d + 6634c9fa: 74 57 je 6634ca53 + 6634c9fc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634ca00: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634ca04: 45 29 0a sub %r9d,(%r10) + 6634ca07: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634ca0e: 41 8b 3a mov (%r10),%edi + 6634ca11: 45 31 d2 xor %r10d,%r10d + 6634ca14: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634ca18: 85 ff test %edi,%edi + 6634ca1a: 41 0f 9f c2 setg %r10b + 6634ca1e: 45 3b 11 cmp (%r9),%r10d + 6634ca21: 74 30 je 6634ca53 + 6634ca23: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634ca27: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634ca2b: 41 8b 31 mov (%r9),%esi + 6634ca2e: 85 f6 test %esi,%esi + 6634ca30: 75 21 jne 6634ca53 + 6634ca32: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634ca36: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634ca3a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634ca3e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634ca45: 4c 63 09 movslq (%rcx),%r9 + 6634ca48: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634ca4c: 44 89 19 mov %r11d,(%rcx) + 6634ca4f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634ca53: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634ca57: 45 85 c9 test %r9d,%r9d + 6634ca5a: 74 59 je 6634cab5 + 6634ca5c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634ca60: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634ca64: 45 29 0a sub %r9d,(%r10) + 6634ca67: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634ca6e: 45 8b 1a mov (%r10),%r11d + 6634ca71: 45 31 d2 xor %r10d,%r10d + 6634ca74: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634ca78: 45 85 db test %r11d,%r11d + 6634ca7b: 41 0f 9f c2 setg %r10b + 6634ca7f: 45 3b 11 cmp (%r9),%r10d + 6634ca82: 74 31 je 6634cab5 + 6634ca84: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634ca88: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634ca8c: 45 8b 11 mov (%r9),%r10d + 6634ca8f: 45 85 d2 test %r10d,%r10d + 6634ca92: 75 21 jne 6634cab5 + 6634ca94: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634ca98: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634ca9c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634caa0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634caa7: 4c 63 09 movslq (%rcx),%r9 + 6634caaa: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634caae: 44 89 19 mov %r11d,(%rcx) + 6634cab1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cab5: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634cab9: 45 85 c9 test %r9d,%r9d + 6634cabc: 74 65 je 6634cb23 + 6634cabe: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cac2: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634cac9: 45 29 0a sub %r9d,(%r10) + 6634cacc: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634cad3: 45 8b 0a mov (%r10),%r9d + 6634cad6: 45 31 d2 xor %r10d,%r10d + 6634cad9: 45 85 c9 test %r9d,%r9d + 6634cadc: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634cae3: 41 0f 9f c2 setg %r10b + 6634cae7: 45 3b 11 cmp (%r9),%r10d + 6634caea: 74 37 je 6634cb23 + 6634caec: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634caf0: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634caf7: 45 8b 29 mov (%r9),%r13d + 6634cafa: 45 85 ed test %r13d,%r13d + 6634cafd: 75 24 jne 6634cb23 + 6634caff: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cb03: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634cb0a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cb0e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cb15: 4c 63 09 movslq (%rcx),%r9 + 6634cb18: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cb1c: 44 89 19 mov %r11d,(%rcx) + 6634cb1f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cb23: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634cb27: 45 85 c9 test %r9d,%r9d + 6634cb2a: 74 64 je 6634cb90 + 6634cb2c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cb30: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634cb37: 45 29 0a sub %r9d,(%r10) + 6634cb3a: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634cb41: 45 8b 22 mov (%r10),%r12d + 6634cb44: 45 31 d2 xor %r10d,%r10d + 6634cb47: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634cb4e: 45 85 e4 test %r12d,%r12d + 6634cb51: 41 0f 9f c2 setg %r10b + 6634cb55: 45 3b 11 cmp (%r9),%r10d + 6634cb58: 74 36 je 6634cb90 + 6634cb5a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cb5e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634cb65: 41 8b 29 mov (%r9),%ebp + 6634cb68: 85 ed test %ebp,%ebp + 6634cb6a: 75 24 jne 6634cb90 + 6634cb6c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cb70: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634cb77: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cb7b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cb82: 4c 63 09 movslq (%rcx),%r9 + 6634cb85: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cb89: 44 89 19 mov %r11d,(%rcx) + 6634cb8c: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cb90: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634cb94: 45 85 c9 test %r9d,%r9d + 6634cb97: 74 63 je 6634cbfc + 6634cb99: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cb9d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634cba4: 45 29 0a sub %r9d,(%r10) + 6634cba7: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634cbae: 41 8b 3a mov (%r10),%edi + 6634cbb1: 45 31 d2 xor %r10d,%r10d + 6634cbb4: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 + 6634cbbb: 85 ff test %edi,%edi + 6634cbbd: 41 0f 9f c2 setg %r10b + 6634cbc1: 45 3b 11 cmp (%r9),%r10d + 6634cbc4: 74 36 je 6634cbfc + 6634cbc6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cbca: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 + 6634cbd1: 41 8b 31 mov (%r9),%esi + 6634cbd4: 85 f6 test %esi,%esi + 6634cbd6: 75 24 jne 6634cbfc + 6634cbd8: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cbdc: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 + 6634cbe3: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cbe7: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cbee: 4c 63 09 movslq (%rcx),%r9 + 6634cbf1: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cbf5: 44 89 19 mov %r11d,(%rcx) + 6634cbf8: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cbfc: 44 8b 4a 4c mov 0x4c(%rdx),%r9d + 6634cc00: 45 85 c9 test %r9d,%r9d + 6634cc03: 74 65 je 6634cc6a + 6634cc05: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cc09: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 + 6634cc10: 45 29 0a sub %r9d,(%r10) + 6634cc13: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) + 6634cc1a: 45 8b 1a mov (%r10),%r11d + 6634cc1d: 45 31 d2 xor %r10d,%r10d + 6634cc20: 4c 8b 88 98 00 00 00 mov 0x98(%rax),%r9 + 6634cc27: 45 85 db test %r11d,%r11d + 6634cc2a: 41 0f 9f c2 setg %r10b + 6634cc2e: 45 3b 11 cmp (%r9),%r10d + 6634cc31: 74 37 je 6634cc6a + 6634cc33: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cc37: 4d 8b 89 98 00 00 00 mov 0x98(%r9),%r9 + 6634cc3e: 45 8b 11 mov (%r9),%r10d + 6634cc41: 45 85 d2 test %r10d,%r10d + 6634cc44: 75 24 jne 6634cc6a + 6634cc46: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cc4a: 4d 8b 91 98 00 00 00 mov 0x98(%r9),%r10 + 6634cc51: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cc55: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cc5c: 4c 63 09 movslq (%rcx),%r9 + 6634cc5f: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cc63: 44 89 19 mov %r11d,(%rcx) + 6634cc66: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cc6a: 44 8b 4a 50 mov 0x50(%rdx),%r9d + 6634cc6e: 45 85 c9 test %r9d,%r9d + 6634cc71: 0f 84 fb fc ff ff je 6634c972 + 6634cc77: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cc7b: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax + 6634cc82: 4d 8b 92 a0 00 00 00 mov 0xa0(%r10),%r10 + 6634cc89: 45 29 0a sub %r9d,(%r10) + 6634cc8c: c7 42 50 00 00 00 00 movl $0x0,0x50(%rdx) + 6634cc93: 31 d2 xor %edx,%edx + 6634cc95: 45 8b 0a mov (%r10),%r9d + 6634cc98: 45 85 c9 test %r9d,%r9d + 6634cc9b: 0f 9f c2 setg %dl + 6634cc9e: 3b 10 cmp (%rax),%edx + 6634cca0: 0f 84 cc fc ff ff je 6634c972 + 6634cca6: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634ccaa: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax + 6634ccb1: 8b 00 mov (%rax),%eax + 6634ccb3: 85 c0 test %eax,%eax + 6634ccb5: 0f 85 b7 fc ff ff jne 6634c972 + 6634ccbb: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ccbf: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx + 6634ccc6: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ccca: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ccd0: 48 63 01 movslq (%rcx),%rax + 6634ccd3: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ccd7: 44 89 09 mov %r9d,(%rcx) + 6634ccda: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ccde: 48 83 c4 28 add $0x28,%rsp + 6634cce2: 5b pop %rbx + 6634cce3: 5e pop %rsi + 6634cce4: 5f pop %rdi + 6634cce5: 5d pop %rbp + 6634cce6: 41 5c pop %r12 + 6634cce8: 41 5d pop %r13 + 6634ccea: c3 retq + 6634cceb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -000000006634d9e0 : - 6634d9e0: 57 push %rdi - 6634d9e1: 56 push %rsi - 6634d9e2: 53 push %rbx - 6634d9e3: 48 83 ec 20 sub $0x20,%rsp - 6634d9e7: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634d9eb: 48 8b 50 58 mov 0x58(%rax),%rdx - 6634d9ef: 48 89 cb mov %rcx,%rbx - 6634d9f2: 8b 32 mov (%rdx),%esi - 6634d9f4: 85 f6 test %esi,%esi - 6634d9f6: 0f 84 f4 01 00 00 je 6634dbf0 - 6634d9fc: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634da00: 8b 0a mov (%rdx),%ecx - 6634da02: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634da06: 8b 12 mov (%rdx),%edx - 6634da08: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634da0b: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634da0f: 8b 09 mov (%rcx),%ecx - 6634da11: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634da14: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634da18: 8b 09 mov (%rcx),%ecx - 6634da1a: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634da1d: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634da21: 48 8b 40 30 mov 0x30(%rax),%rax - 6634da25: 8b 31 mov (%rcx),%esi - 6634da27: c1 e6 04 shl $0x4,%esi - 6634da2a: 01 f2 add %esi,%edx - 6634da2c: 8b 30 mov (%rax),%esi - 6634da2e: c1 e6 05 shl $0x5,%esi - 6634da31: 01 d6 add %edx,%esi - 6634da33: 0f 88 67 03 00 00 js 6634dda0 - 6634da39: 3b 73 38 cmp 0x38(%rbx),%esi - 6634da3c: 0f 8d 5e 03 00 00 jge 6634dda0 - 6634da42: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634da46: 48 63 c6 movslq %esi,%rax - 6634da49: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634da4c: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634da50: 44 8b 40 1c mov 0x1c(%rax),%r8d - 6634da54: 41 39 c8 cmp %ecx,%r8d - 6634da57: 74 3f je 6634da98 - 6634da59: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634da5d: 89 cf mov %ecx,%edi - 6634da5f: 44 29 c7 sub %r8d,%edi - 6634da62: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634da66: 41 01 39 add %edi,(%r9) - 6634da69: 89 48 1c mov %ecx,0x1c(%rax) - 6634da6c: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634da70: 45 8b 19 mov (%r9),%r11d - 6634da73: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634da77: 31 c9 xor %ecx,%ecx - 6634da79: 45 85 db test %r11d,%r11d - 6634da7c: 0f 9f c1 setg %cl - 6634da7f: 41 39 08 cmp %ecx,(%r8) - 6634da82: 74 14 je 6634da98 - 6634da84: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634da88: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634da8c: 44 8b 11 mov (%rcx),%r10d - 6634da8f: 45 85 d2 test %r10d,%r10d - 6634da92: 0f 84 28 04 00 00 je 6634dec0 - 6634da98: 89 f7 mov %esi,%edi - 6634da9a: 83 c7 40 add $0x40,%edi - 6634da9d: 0f 88 1d 03 00 00 js 6634ddc0 - 6634daa3: 39 7b 38 cmp %edi,0x38(%rbx) - 6634daa6: 0f 8e 14 03 00 00 jle 6634ddc0 - 6634daac: 48 63 ff movslq %edi,%rdi - 6634daaf: 44 8b 40 20 mov 0x20(%rax),%r8d - 6634dab3: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634dab6: 44 39 c1 cmp %r8d,%ecx - 6634dab9: 74 41 je 6634dafc - 6634dabb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dabf: 89 cf mov %ecx,%edi - 6634dac1: 44 29 c7 sub %r8d,%edi - 6634dac4: 45 31 c0 xor %r8d,%r8d - 6634dac7: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634dacb: 41 01 39 add %edi,(%r9) - 6634dace: 89 48 20 mov %ecx,0x20(%rax) - 6634dad1: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634dad5: 45 8b 09 mov (%r9),%r9d - 6634dad8: 48 8b 49 40 mov 0x40(%rcx),%rcx - 6634dadc: 45 85 c9 test %r9d,%r9d - 6634dadf: 41 0f 9f c0 setg %r8b - 6634dae3: 44 3b 01 cmp (%rcx),%r8d - 6634dae6: 74 14 je 6634dafc - 6634dae8: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634daec: 48 8b 49 40 mov 0x40(%rcx),%rcx - 6634daf0: 44 8b 01 mov (%rcx),%r8d - 6634daf3: 45 85 c0 test %r8d,%r8d - 6634daf6: 0f 84 87 03 00 00 je 6634de83 - 6634dafc: 89 f7 mov %esi,%edi - 6634dafe: 83 ef 80 sub $0xffffff80,%edi - 6634db01: 0f 88 e9 02 00 00 js 6634ddf0 - 6634db07: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634db0a: 0f 8d e0 02 00 00 jge 6634ddf0 - 6634db10: 48 63 ff movslq %edi,%rdi - 6634db13: 44 8b 40 24 mov 0x24(%rax),%r8d - 6634db17: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634db1a: 44 39 c1 cmp %r8d,%ecx - 6634db1d: 74 3e je 6634db5d - 6634db1f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634db23: 89 cf mov %ecx,%edi - 6634db25: 44 29 c7 sub %r8d,%edi - 6634db28: 45 31 c0 xor %r8d,%r8d - 6634db2b: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634db2f: 41 01 39 add %edi,(%r9) - 6634db32: 89 48 24 mov %ecx,0x24(%rax) - 6634db35: 41 8b 09 mov (%r9),%ecx - 6634db38: 85 c9 test %ecx,%ecx - 6634db3a: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634db3e: 41 0f 9f c0 setg %r8b - 6634db42: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634db46: 44 3b 01 cmp (%rcx),%r8d - 6634db49: 74 12 je 6634db5d - 6634db4b: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634db4f: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634db53: 8b 39 mov (%rcx),%edi - 6634db55: 85 ff test %edi,%edi - 6634db57: 0f 84 f3 02 00 00 je 6634de50 - 6634db5d: 81 c6 c0 00 00 00 add $0xc0,%esi - 6634db63: 0f 88 b7 02 00 00 js 6634de20 - 6634db69: 3b 73 38 cmp 0x38(%rbx),%esi - 6634db6c: 0f 8d ae 02 00 00 jge 6634de20 - 6634db72: 48 63 f6 movslq %esi,%rsi - 6634db75: 8b 48 28 mov 0x28(%rax),%ecx - 6634db78: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634db7b: 39 ca cmp %ecx,%edx - 6634db7d: 74 67 je 6634dbe6 - 6634db7f: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634db83: 89 d6 mov %edx,%esi - 6634db85: 29 ce sub %ecx,%esi - 6634db87: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634db8b: 41 01 30 add %esi,(%r8) - 6634db8e: 89 50 28 mov %edx,0x28(%rax) - 6634db91: 31 d2 xor %edx,%edx - 6634db93: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634db97: 45 8b 18 mov (%r8),%r11d - 6634db9a: 48 8b 40 50 mov 0x50(%rax),%rax - 6634db9e: 45 85 db test %r11d,%r11d - 6634dba1: 0f 9f c2 setg %dl - 6634dba4: 3b 10 cmp (%rax),%edx - 6634dba6: 74 3e je 6634dbe6 - 6634dba8: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634dbac: 48 8b 40 50 mov 0x50(%rax),%rax - 6634dbb0: 44 8b 10 mov (%rax),%r10d - 6634dbb3: 45 85 d2 test %r10d,%r10d - 6634dbb6: 75 2e jne 6634dbe6 - 6634dbb8: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634dbbc: 48 8b 0d 6d 9d 00 00 mov 0x9d6d(%rip),%rcx # 66357930 - 6634dbc3: 4c 8b 05 56 9d 00 00 mov 0x9d56(%rip),%r8 # 66357920 - 6634dbca: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634dbce: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634dbd2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634dbd8: 48 63 01 movslq (%rcx),%rax - 6634dbdb: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634dbdf: 44 89 09 mov %r9d,(%rcx) - 6634dbe2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634dbe6: 48 83 c4 20 add $0x20,%rsp - 6634dbea: 5b pop %rbx - 6634dbeb: 5e pop %rsi - 6634dbec: 5f pop %rdi - 6634dbed: c3 retq - 6634dbee: 66 90 xchg %ax,%ax - 6634dbf0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634dbf4: 4c 8b 15 25 9d 00 00 mov 0x9d25(%rip),%r10 # 66357920 - 6634dbfb: 48 8b 0d 2e 9d 00 00 mov 0x9d2e(%rip),%rcx # 66357930 - 6634dc02: 44 8b 42 1c mov 0x1c(%rdx),%r8d - 6634dc06: 45 85 c0 test %r8d,%r8d - 6634dc09: 74 5a je 6634dc65 - 6634dc0b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dc0f: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634dc13: 45 29 01 sub %r8d,(%r9) - 6634dc16: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634dc1d: 45 8b 09 mov (%r9),%r9d - 6634dc20: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634dc24: 45 85 c9 test %r9d,%r9d - 6634dc27: 41 0f 9f c1 setg %r9b - 6634dc2b: 45 0f b6 c9 movzbl %r9b,%r9d - 6634dc2f: 45 3b 08 cmp (%r8),%r9d - 6634dc32: 74 31 je 6634dc65 - 6634dc34: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634dc38: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634dc3c: 45 8b 00 mov (%r8),%r8d - 6634dc3f: 45 85 c0 test %r8d,%r8d - 6634dc42: 75 21 jne 6634dc65 - 6634dc44: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634dc48: 4d 8b 48 38 mov 0x38(%r8),%r9 - 6634dc4c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634dc50: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634dc57: 4c 63 01 movslq (%rcx),%r8 - 6634dc5a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634dc5e: 44 89 19 mov %r11d,(%rcx) - 6634dc61: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634dc65: 44 8b 42 20 mov 0x20(%rdx),%r8d - 6634dc69: 45 85 c0 test %r8d,%r8d - 6634dc6c: 74 57 je 6634dcc5 - 6634dc6e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dc72: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634dc76: 45 29 01 sub %r8d,(%r9) - 6634dc79: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634dc80: 41 8b 39 mov (%r9),%edi - 6634dc83: 45 31 c9 xor %r9d,%r9d - 6634dc86: 4c 8b 40 40 mov 0x40(%rax),%r8 - 6634dc8a: 85 ff test %edi,%edi - 6634dc8c: 41 0f 9f c1 setg %r9b - 6634dc90: 45 3b 08 cmp (%r8),%r9d - 6634dc93: 74 30 je 6634dcc5 - 6634dc95: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634dc99: 4d 8b 40 40 mov 0x40(%r8),%r8 - 6634dc9d: 41 8b 30 mov (%r8),%esi - 6634dca0: 85 f6 test %esi,%esi - 6634dca2: 75 21 jne 6634dcc5 - 6634dca4: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634dca8: 4d 8b 48 40 mov 0x40(%r8),%r9 - 6634dcac: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634dcb0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634dcb7: 4c 63 01 movslq (%rcx),%r8 - 6634dcba: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634dcbe: 44 89 19 mov %r11d,(%rcx) - 6634dcc1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634dcc5: 44 8b 42 24 mov 0x24(%rdx),%r8d - 6634dcc9: 45 85 c0 test %r8d,%r8d - 6634dccc: 74 59 je 6634dd27 - 6634dcce: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dcd2: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634dcd6: 45 29 01 sub %r8d,(%r9) - 6634dcd9: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634dce0: 45 8b 19 mov (%r9),%r11d - 6634dce3: 45 31 c9 xor %r9d,%r9d - 6634dce6: 4c 8b 40 48 mov 0x48(%rax),%r8 - 6634dcea: 45 85 db test %r11d,%r11d - 6634dced: 41 0f 9f c1 setg %r9b - 6634dcf1: 45 3b 08 cmp (%r8),%r9d - 6634dcf4: 74 31 je 6634dd27 - 6634dcf6: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634dcfa: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634dcfe: 45 8b 08 mov (%r8),%r9d - 6634dd01: 45 85 c9 test %r9d,%r9d - 6634dd04: 75 21 jne 6634dd27 - 6634dd06: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634dd0a: 4d 8b 48 48 mov 0x48(%r8),%r9 - 6634dd0e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634dd12: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634dd19: 4c 63 01 movslq (%rcx),%r8 - 6634dd1c: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634dd20: 44 89 19 mov %r11d,(%rcx) - 6634dd23: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634dd27: 44 8b 42 28 mov 0x28(%rdx),%r8d - 6634dd2b: 45 85 c0 test %r8d,%r8d - 6634dd2e: 0f 84 b2 fe ff ff je 6634dbe6 - 6634dd34: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dd38: 48 8b 40 50 mov 0x50(%rax),%rax - 6634dd3c: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634dd40: 45 29 01 sub %r8d,(%r9) - 6634dd43: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634dd4a: 31 d2 xor %edx,%edx - 6634dd4c: 45 8b 01 mov (%r9),%r8d - 6634dd4f: 45 85 c0 test %r8d,%r8d - 6634dd52: 0f 9f c2 setg %dl - 6634dd55: 3b 10 cmp (%rax),%edx - 6634dd57: 0f 84 89 fe ff ff je 6634dbe6 - 6634dd5d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634dd61: 48 8b 40 50 mov 0x50(%rax),%rax - 6634dd65: 8b 00 mov (%rax),%eax - 6634dd67: 85 c0 test %eax,%eax - 6634dd69: 0f 85 77 fe ff ff jne 6634dbe6 - 6634dd6f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634dd73: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634dd77: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634dd7b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634dd81: 48 63 01 movslq (%rcx),%rax - 6634dd84: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634dd88: 44 89 01 mov %r8d,(%rcx) - 6634dd8b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634dd8f: 48 83 c4 20 add $0x20,%rsp - 6634dd93: 5b pop %rbx - 6634dd94: 5e pop %rsi - 6634dd95: 5f pop %rdi - 6634dd96: c3 retq - 6634dd97: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634dd9e: 00 00 - 6634dda0: 48 8d 15 59 62 00 00 lea 0x6259(%rip),%rdx # 66354000 <.rdata> - 6634dda7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ddad: 48 8d 0d 5c 62 00 00 lea 0x625c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634ddb4: e8 97 41 00 00 callq 66351f50 <_assert> - 6634ddb9: e9 84 fc ff ff jmpq 6634da42 - 6634ddbe: 66 90 xchg %ax,%ax - 6634ddc0: 48 8d 15 39 62 00 00 lea 0x6239(%rip),%rdx # 66354000 <.rdata> - 6634ddc7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ddcd: 48 8d 0d 3c 62 00 00 lea 0x623c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634ddd4: e8 77 41 00 00 callq 66351f50 <_assert> - 6634ddd9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634dddd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634dde1: e9 c6 fc ff ff jmpq 6634daac - 6634dde6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634dded: 00 00 00 - 6634ddf0: 48 8d 15 09 62 00 00 lea 0x6209(%rip),%rdx # 66354000 <.rdata> - 6634ddf7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ddfd: 48 8d 0d 0c 62 00 00 lea 0x620c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634de04: e8 47 41 00 00 callq 66351f50 <_assert> - 6634de09: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634de0d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634de11: e9 fa fc ff ff jmpq 6634db10 - 6634de16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634de1d: 00 00 00 - 6634de20: 48 8d 15 d9 61 00 00 lea 0x61d9(%rip),%rdx # 66354000 <.rdata> - 6634de27: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634de2d: 48 8d 0d dc 61 00 00 lea 0x61dc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634de34: e8 17 41 00 00 callq 66351f50 <_assert> - 6634de39: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634de3d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634de41: e9 2c fd ff ff jmpq 6634db72 - 6634de46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634de4d: 00 00 00 - 6634de50: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634de54: 4c 8b 0d d5 9a 00 00 mov 0x9ad5(%rip),%r9 # 66357930 - 6634de5b: 4c 8b 15 be 9a 00 00 mov 0x9abe(%rip),%r10 # 66357920 - 6634de62: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634de66: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634de6a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634de70: 49 63 09 movslq (%r9),%rcx - 6634de73: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634de77: 45 89 19 mov %r11d,(%r9) - 6634de7a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634de7e: e9 da fc ff ff jmpq 6634db5d - 6634de83: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634de87: 4c 8b 0d a2 9a 00 00 mov 0x9aa2(%rip),%r9 # 66357930 - 6634de8e: 4c 8b 15 8b 9a 00 00 mov 0x9a8b(%rip),%r10 # 66357920 - 6634de95: 4c 8b 41 40 mov 0x40(%rcx),%r8 - 6634de99: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634de9d: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634dea3: 49 63 09 movslq (%r9),%rcx - 6634dea6: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634deaa: 45 89 19 mov %r11d,(%r9) - 6634dead: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634deb1: e9 46 fc ff ff jmpq 6634dafc - 6634deb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634debd: 00 00 00 - 6634dec0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634dec4: 4c 8b 0d 65 9a 00 00 mov 0x9a65(%rip),%r9 # 66357930 - 6634decb: 4c 8b 15 4e 9a 00 00 mov 0x9a4e(%rip),%r10 # 66357920 - 6634ded2: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634ded6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634deda: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634dee0: 49 63 09 movslq (%r9),%rcx - 6634dee3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634dee7: 45 89 19 mov %r11d,(%r9) - 6634deea: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634deee: e9 a5 fb ff ff jmpq 6634da98 - 6634def3: 0f 1f 00 nopl (%rax) - 6634def6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634defd: 00 00 00 +000000006634ccf0 : + 6634ccf0: 41 55 push %r13 + 6634ccf2: 41 54 push %r12 + 6634ccf4: 55 push %rbp + 6634ccf5: 57 push %rdi + 6634ccf6: 56 push %rsi + 6634ccf7: 53 push %rbx + 6634ccf8: 48 83 ec 28 sub $0x28,%rsp + 6634ccfc: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634cd00: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 6634cd07: 48 89 cb mov %rcx,%rbx + 6634cd0a: 8b 12 mov (%rdx),%edx + 6634cd0c: 85 d2 test %edx,%edx + 6634cd0e: 0f 84 2c 01 00 00 je 6634ce40 + 6634cd14: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634cd18: be 24 00 00 00 mov $0x24,%esi + 6634cd1d: 4c 8d 2d dc 72 00 00 lea 0x72dc(%rip),%r13 # 66354000 <.rdata> + 6634cd24: 4c 8d 25 e5 72 00 00 lea 0x72e5(%rip),%r12 # 66354010 <.rdata+0x10> + 6634cd2b: 8b 0a mov (%rdx),%ecx + 6634cd2d: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634cd31: 8b 12 mov (%rdx),%edx + 6634cd33: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634cd36: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634cd3a: 8b 09 mov (%rcx),%ecx + 6634cd3c: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634cd3f: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634cd43: 8b 09 mov (%rcx),%ecx + 6634cd45: 8d 3c ca lea (%rdx,%rcx,8),%edi + 6634cd48: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634cd4c: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634cd50: 8b 12 mov (%rdx),%edx + 6634cd52: c1 e2 04 shl $0x4,%edx + 6634cd55: 01 d7 add %edx,%edi + 6634cd57: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634cd5b: 48 8b 40 40 mov 0x40(%rax),%rax + 6634cd5f: 8b 12 mov (%rdx),%edx + 6634cd61: c1 e2 05 shl $0x5,%edx + 6634cd64: 01 fa add %edi,%edx + 6634cd66: 8b 39 mov (%rcx),%edi + 6634cd68: c1 e7 06 shl $0x6,%edi + 6634cd6b: 01 fa add %edi,%edx + 6634cd6d: 8b 38 mov (%rax),%edi + 6634cd6f: c1 e7 07 shl $0x7,%edi + 6634cd72: 01 d7 add %edx,%edi + 6634cd74: 48 63 ef movslq %edi,%rbp + 6634cd77: 48 c1 e5 02 shl $0x2,%rbp + 6634cd7b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634cd80: 85 ff test %edi,%edi + 6634cd82: 78 05 js 6634cd89 + 6634cd84: 39 7b 38 cmp %edi,0x38(%rbx) + 6634cd87: 7f 11 jg 6634cd9a + 6634cd89: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634cd8f: 4c 89 ea mov %r13,%rdx + 6634cd92: 4c 89 e1 mov %r12,%rcx + 6634cd95: e8 76 54 00 00 callq 66352210 <_assert> + 6634cd9a: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634cd9e: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634cda2: 48 01 f2 add %rsi,%rdx + 6634cda5: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634cda8: 8b 0a mov (%rdx),%ecx + 6634cdaa: 39 c8 cmp %ecx,%eax + 6634cdac: 74 69 je 6634ce17 + 6634cdae: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634cdb2: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634cdb6: 41 89 c3 mov %eax,%r11d + 6634cdb9: 41 29 cb sub %ecx,%r11d + 6634cdbc: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634cdc0: 45 01 18 add %r11d,(%r8) + 6634cdc3: 89 02 mov %eax,(%rdx) + 6634cdc5: 31 d2 xor %edx,%edx + 6634cdc7: 41 8b 00 mov (%r8),%eax + 6634cdca: 85 c0 test %eax,%eax + 6634cdcc: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634cdd0: 0f 9f c2 setg %dl + 6634cdd3: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634cdd7: 3b 10 cmp (%rax),%edx + 6634cdd9: 74 3c je 6634ce17 + 6634cddb: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634cddf: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634cde3: 8b 00 mov (%rax),%eax + 6634cde5: 85 c0 test %eax,%eax + 6634cde7: 75 2e jne 6634ce17 + 6634cde9: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634cded: 48 8b 0d 3c ab 00 00 mov 0xab3c(%rip),%rcx # 66357930 + 6634cdf4: 4c 8b 05 25 ab 00 00 mov 0xab25(%rip),%r8 # 66357920 + 6634cdfb: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634cdff: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ce03: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ce09: 48 63 01 movslq (%rcx),%rax + 6634ce0c: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ce10: 44 89 09 mov %r9d,(%rcx) + 6634ce13: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ce17: 48 83 c6 04 add $0x4,%rsi + 6634ce1b: 81 c7 00 01 00 00 add $0x100,%edi + 6634ce21: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634ce28: 48 83 fe 44 cmp $0x44,%rsi + 6634ce2c: 0f 85 4e ff ff ff jne 6634cd80 + 6634ce32: 48 83 c4 28 add $0x28,%rsp + 6634ce36: 5b pop %rbx + 6634ce37: 5e pop %rsi + 6634ce38: 5f pop %rdi + 6634ce39: 5d pop %rbp + 6634ce3a: 41 5c pop %r12 + 6634ce3c: 41 5d pop %r13 + 6634ce3e: c3 retq + 6634ce3f: 90 nop + 6634ce40: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ce44: 4c 8b 05 d5 aa 00 00 mov 0xaad5(%rip),%r8 # 66357920 + 6634ce4b: 48 8b 0d de aa 00 00 mov 0xaade(%rip),%rcx # 66357930 + 6634ce52: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 6634ce56: 45 85 c9 test %r9d,%r9d + 6634ce59: 74 58 je 6634ceb3 + 6634ce5b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634ce5f: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634ce63: 45 29 0a sub %r9d,(%r10) + 6634ce66: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634ce6d: 45 8b 22 mov (%r10),%r12d + 6634ce70: 45 31 d2 xor %r10d,%r10d + 6634ce73: 4c 8b 48 48 mov 0x48(%rax),%r9 + 6634ce77: 45 85 e4 test %r12d,%r12d + 6634ce7a: 41 0f 9f c2 setg %r10b + 6634ce7e: 45 3b 11 cmp (%r9),%r10d + 6634ce81: 74 30 je 6634ceb3 + 6634ce83: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634ce87: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634ce8b: 41 8b 29 mov (%r9),%ebp + 6634ce8e: 85 ed test %ebp,%ebp + 6634ce90: 75 21 jne 6634ceb3 + 6634ce92: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634ce96: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634ce9a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634ce9e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cea5: 4c 63 09 movslq (%rcx),%r9 + 6634cea8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634ceac: 44 89 19 mov %r11d,(%rcx) + 6634ceaf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634ceb3: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634ceb7: 45 85 c9 test %r9d,%r9d + 6634ceba: 74 57 je 6634cf13 + 6634cebc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cec0: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634cec4: 45 29 0a sub %r9d,(%r10) + 6634cec7: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634cece: 41 8b 3a mov (%r10),%edi + 6634ced1: 45 31 d2 xor %r10d,%r10d + 6634ced4: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634ced8: 85 ff test %edi,%edi + 6634ceda: 41 0f 9f c2 setg %r10b + 6634cede: 45 3b 11 cmp (%r9),%r10d + 6634cee1: 74 30 je 6634cf13 + 6634cee3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cee7: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634ceeb: 41 8b 31 mov (%r9),%esi + 6634ceee: 85 f6 test %esi,%esi + 6634cef0: 75 21 jne 6634cf13 + 6634cef2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cef6: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634cefa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cefe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cf05: 4c 63 09 movslq (%rcx),%r9 + 6634cf08: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cf0c: 44 89 19 mov %r11d,(%rcx) + 6634cf0f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cf13: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634cf17: 45 85 c9 test %r9d,%r9d + 6634cf1a: 74 59 je 6634cf75 + 6634cf1c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cf20: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634cf24: 45 29 0a sub %r9d,(%r10) + 6634cf27: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634cf2e: 45 8b 1a mov (%r10),%r11d + 6634cf31: 45 31 d2 xor %r10d,%r10d + 6634cf34: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634cf38: 45 85 db test %r11d,%r11d + 6634cf3b: 41 0f 9f c2 setg %r10b + 6634cf3f: 45 3b 11 cmp (%r9),%r10d + 6634cf42: 74 31 je 6634cf75 + 6634cf44: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cf48: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634cf4c: 45 8b 11 mov (%r9),%r10d + 6634cf4f: 45 85 d2 test %r10d,%r10d + 6634cf52: 75 21 jne 6634cf75 + 6634cf54: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cf58: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634cf5c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cf60: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cf67: 4c 63 09 movslq (%rcx),%r9 + 6634cf6a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cf6e: 44 89 19 mov %r11d,(%rcx) + 6634cf71: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cf75: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634cf79: 45 85 c9 test %r9d,%r9d + 6634cf7c: 74 59 je 6634cfd7 + 6634cf7e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cf82: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634cf86: 45 29 0a sub %r9d,(%r10) + 6634cf89: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634cf90: 45 8b 0a mov (%r10),%r9d + 6634cf93: 45 31 d2 xor %r10d,%r10d + 6634cf96: 45 85 c9 test %r9d,%r9d + 6634cf99: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634cf9d: 41 0f 9f c2 setg %r10b + 6634cfa1: 45 3b 11 cmp (%r9),%r10d + 6634cfa4: 74 31 je 6634cfd7 + 6634cfa6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cfaa: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634cfae: 45 8b 29 mov (%r9),%r13d + 6634cfb1: 45 85 ed test %r13d,%r13d + 6634cfb4: 75 21 jne 6634cfd7 + 6634cfb6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cfba: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634cfbe: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cfc2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cfc9: 4c 63 09 movslq (%rcx),%r9 + 6634cfcc: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cfd0: 44 89 19 mov %r11d,(%rcx) + 6634cfd3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cfd7: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634cfdb: 45 85 c9 test %r9d,%r9d + 6634cfde: 74 58 je 6634d038 + 6634cfe0: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cfe4: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634cfe8: 45 29 0a sub %r9d,(%r10) + 6634cfeb: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634cff2: 45 8b 22 mov (%r10),%r12d + 6634cff5: 45 31 d2 xor %r10d,%r10d + 6634cff8: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634cffc: 45 85 e4 test %r12d,%r12d + 6634cfff: 41 0f 9f c2 setg %r10b + 6634d003: 45 3b 11 cmp (%r9),%r10d + 6634d006: 74 30 je 6634d038 + 6634d008: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d00c: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634d010: 41 8b 29 mov (%r9),%ebp + 6634d013: 85 ed test %ebp,%ebp + 6634d015: 75 21 jne 6634d038 + 6634d017: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d01b: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634d01f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d023: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d02a: 4c 63 09 movslq (%rcx),%r9 + 6634d02d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d031: 44 89 19 mov %r11d,(%rcx) + 6634d034: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d038: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634d03c: 45 85 c9 test %r9d,%r9d + 6634d03f: 74 57 je 6634d098 + 6634d041: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d045: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634d049: 45 29 0a sub %r9d,(%r10) + 6634d04c: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634d053: 41 8b 3a mov (%r10),%edi + 6634d056: 45 31 d2 xor %r10d,%r10d + 6634d059: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634d05d: 85 ff test %edi,%edi + 6634d05f: 41 0f 9f c2 setg %r10b + 6634d063: 45 3b 11 cmp (%r9),%r10d + 6634d066: 74 30 je 6634d098 + 6634d068: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d06c: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634d070: 41 8b 31 mov (%r9),%esi + 6634d073: 85 f6 test %esi,%esi + 6634d075: 75 21 jne 6634d098 + 6634d077: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d07b: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634d07f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d083: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d08a: 4c 63 09 movslq (%rcx),%r9 + 6634d08d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d091: 44 89 19 mov %r11d,(%rcx) + 6634d094: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d098: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634d09c: 45 85 c9 test %r9d,%r9d + 6634d09f: 74 59 je 6634d0fa + 6634d0a1: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d0a5: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634d0a9: 45 29 0a sub %r9d,(%r10) + 6634d0ac: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634d0b3: 45 8b 1a mov (%r10),%r11d + 6634d0b6: 45 31 d2 xor %r10d,%r10d + 6634d0b9: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634d0bd: 45 85 db test %r11d,%r11d + 6634d0c0: 41 0f 9f c2 setg %r10b + 6634d0c4: 45 3b 11 cmp (%r9),%r10d + 6634d0c7: 74 31 je 6634d0fa + 6634d0c9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d0cd: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634d0d1: 45 8b 11 mov (%r9),%r10d + 6634d0d4: 45 85 d2 test %r10d,%r10d + 6634d0d7: 75 21 jne 6634d0fa + 6634d0d9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d0dd: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634d0e1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d0e5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d0ec: 4c 63 09 movslq (%rcx),%r9 + 6634d0ef: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d0f3: 44 89 19 mov %r11d,(%rcx) + 6634d0f6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d0fa: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634d0fe: 45 85 c9 test %r9d,%r9d + 6634d101: 0f 84 2b fd ff ff je 6634ce32 + 6634d107: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d10b: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 6634d112: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634d119: 45 29 0a sub %r9d,(%r10) + 6634d11c: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634d123: 31 d2 xor %edx,%edx + 6634d125: 45 8b 0a mov (%r10),%r9d + 6634d128: 45 85 c9 test %r9d,%r9d + 6634d12b: 0f 9f c2 setg %dl + 6634d12e: 3b 10 cmp (%rax),%edx + 6634d130: 0f 84 fc fc ff ff je 6634ce32 + 6634d136: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d13a: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 6634d141: 8b 00 mov (%rax),%eax + 6634d143: 85 c0 test %eax,%eax + 6634d145: 0f 85 e7 fc ff ff jne 6634ce32 + 6634d14b: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d14f: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 6634d156: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d15a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d160: 48 63 01 movslq (%rcx),%rax + 6634d163: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d167: 44 89 09 mov %r9d,(%rcx) + 6634d16a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d16e: 48 83 c4 28 add $0x28,%rsp + 6634d172: 5b pop %rbx + 6634d173: 5e pop %rsi + 6634d174: 5f pop %rdi + 6634d175: 5d pop %rbp + 6634d176: 41 5c pop %r12 + 6634d178: 41 5d pop %r13 + 6634d17a: c3 retq + 6634d17b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -000000006634df00 : - 6634df00: 57 push %rdi - 6634df01: 56 push %rsi - 6634df02: 53 push %rbx - 6634df03: 48 83 ec 20 sub $0x20,%rsp - 6634df07: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634df0b: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634df0f: 48 89 cb mov %rcx,%rbx - 6634df12: 8b 32 mov (%rdx),%esi - 6634df14: 85 f6 test %esi,%esi - 6634df16: 0f 84 e4 01 00 00 je 6634e100 - 6634df1c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634df20: 8b 0a mov (%rdx),%ecx - 6634df22: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634df26: 8b 12 mov (%rdx),%edx - 6634df28: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634df2b: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634df2f: 48 8b 40 20 mov 0x20(%rax),%rax - 6634df33: 8b 09 mov (%rcx),%ecx - 6634df35: 8b 00 mov (%rax),%eax - 6634df37: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634df3a: 8d 34 c2 lea (%rdx,%rax,8),%esi - 6634df3d: 85 f6 test %esi,%esi - 6634df3f: 0f 88 6b 03 00 00 js 6634e2b0 - 6634df45: 3b 73 38 cmp 0x38(%rbx),%esi - 6634df48: 0f 8d 62 03 00 00 jge 6634e2b0 - 6634df4e: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634df52: 48 63 c6 movslq %esi,%rax - 6634df55: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634df58: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634df5c: 44 8b 40 14 mov 0x14(%rax),%r8d - 6634df60: 41 39 c8 cmp %ecx,%r8d - 6634df63: 74 3f je 6634dfa4 - 6634df65: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634df69: 89 cf mov %ecx,%edi - 6634df6b: 44 29 c7 sub %r8d,%edi - 6634df6e: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634df72: 41 01 39 add %edi,(%r9) - 6634df75: 89 48 14 mov %ecx,0x14(%rax) - 6634df78: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634df7c: 45 8b 19 mov (%r9),%r11d - 6634df7f: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634df83: 31 c9 xor %ecx,%ecx - 6634df85: 45 85 db test %r11d,%r11d - 6634df88: 0f 9f c1 setg %cl - 6634df8b: 41 39 08 cmp %ecx,(%r8) - 6634df8e: 74 14 je 6634dfa4 - 6634df90: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634df94: 48 8b 49 28 mov 0x28(%rcx),%rcx - 6634df98: 44 8b 11 mov (%rcx),%r10d - 6634df9b: 45 85 d2 test %r10d,%r10d - 6634df9e: 0f 84 2c 04 00 00 je 6634e3d0 - 6634dfa4: 89 f7 mov %esi,%edi - 6634dfa6: 83 c7 10 add $0x10,%edi - 6634dfa9: 0f 88 21 03 00 00 js 6634e2d0 - 6634dfaf: 39 7b 38 cmp %edi,0x38(%rbx) - 6634dfb2: 0f 8e 18 03 00 00 jle 6634e2d0 - 6634dfb8: 48 63 ff movslq %edi,%rdi - 6634dfbb: 44 8b 40 18 mov 0x18(%rax),%r8d - 6634dfbf: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634dfc2: 44 39 c1 cmp %r8d,%ecx - 6634dfc5: 74 41 je 6634e008 - 6634dfc7: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dfcb: 89 cf mov %ecx,%edi - 6634dfcd: 44 29 c7 sub %r8d,%edi - 6634dfd0: 45 31 c0 xor %r8d,%r8d - 6634dfd3: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634dfd7: 41 01 39 add %edi,(%r9) - 6634dfda: 89 48 18 mov %ecx,0x18(%rax) - 6634dfdd: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634dfe1: 45 8b 09 mov (%r9),%r9d - 6634dfe4: 48 8b 49 30 mov 0x30(%rcx),%rcx - 6634dfe8: 45 85 c9 test %r9d,%r9d - 6634dfeb: 41 0f 9f c0 setg %r8b - 6634dfef: 44 3b 01 cmp (%rcx),%r8d - 6634dff2: 74 14 je 6634e008 - 6634dff4: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634dff8: 48 8b 49 30 mov 0x30(%rcx),%rcx - 6634dffc: 44 8b 01 mov (%rcx),%r8d - 6634dfff: 45 85 c0 test %r8d,%r8d - 6634e002: 0f 84 8b 03 00 00 je 6634e393 - 6634e008: 89 f7 mov %esi,%edi - 6634e00a: 83 c7 20 add $0x20,%edi - 6634e00d: 0f 88 ed 02 00 00 js 6634e300 - 6634e013: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634e016: 0f 8d e4 02 00 00 jge 6634e300 - 6634e01c: 48 63 ff movslq %edi,%rdi - 6634e01f: 44 8b 40 1c mov 0x1c(%rax),%r8d - 6634e023: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e026: 44 39 c1 cmp %r8d,%ecx - 6634e029: 74 3e je 6634e069 - 6634e02b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e02f: 89 cf mov %ecx,%edi - 6634e031: 44 29 c7 sub %r8d,%edi - 6634e034: 45 31 c0 xor %r8d,%r8d - 6634e037: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634e03b: 41 01 39 add %edi,(%r9) - 6634e03e: 89 48 1c mov %ecx,0x1c(%rax) - 6634e041: 41 8b 09 mov (%r9),%ecx - 6634e044: 85 c9 test %ecx,%ecx - 6634e046: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e04a: 41 0f 9f c0 setg %r8b - 6634e04e: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634e052: 44 3b 01 cmp (%rcx),%r8d - 6634e055: 74 12 je 6634e069 - 6634e057: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e05b: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634e05f: 8b 39 mov (%rcx),%edi - 6634e061: 85 ff test %edi,%edi - 6634e063: 0f 84 f7 02 00 00 je 6634e360 - 6634e069: 83 c6 30 add $0x30,%esi - 6634e06c: 0f 88 be 02 00 00 js 6634e330 - 6634e072: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e075: 0f 8d b5 02 00 00 jge 6634e330 - 6634e07b: 48 63 f6 movslq %esi,%rsi - 6634e07e: 8b 48 20 mov 0x20(%rax),%ecx - 6634e081: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634e084: 39 ca cmp %ecx,%edx - 6634e086: 74 67 je 6634e0ef - 6634e088: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634e08c: 89 d6 mov %edx,%esi - 6634e08e: 29 ce sub %ecx,%esi - 6634e090: 4d 8b 40 40 mov 0x40(%r8),%r8 - 6634e094: 41 01 30 add %esi,(%r8) - 6634e097: 89 50 20 mov %edx,0x20(%rax) - 6634e09a: 31 d2 xor %edx,%edx - 6634e09c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634e0a0: 45 8b 18 mov (%r8),%r11d - 6634e0a3: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e0a7: 45 85 db test %r11d,%r11d - 6634e0aa: 0f 9f c2 setg %dl - 6634e0ad: 3b 10 cmp (%rax),%edx - 6634e0af: 74 3e je 6634e0ef - 6634e0b1: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e0b5: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e0b9: 44 8b 10 mov (%rax),%r10d - 6634e0bc: 45 85 d2 test %r10d,%r10d - 6634e0bf: 75 2e jne 6634e0ef - 6634e0c1: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e0c5: 48 8b 0d 64 98 00 00 mov 0x9864(%rip),%rcx # 66357930 - 6634e0cc: 4c 8b 05 4d 98 00 00 mov 0x984d(%rip),%r8 # 66357920 - 6634e0d3: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634e0d7: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e0db: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e0e1: 48 63 01 movslq (%rcx),%rax - 6634e0e4: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634e0e8: 44 89 09 mov %r9d,(%rcx) - 6634e0eb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634e0ef: 48 83 c4 20 add $0x20,%rsp - 6634e0f3: 5b pop %rbx - 6634e0f4: 5e pop %rsi - 6634e0f5: 5f pop %rdi - 6634e0f6: c3 retq - 6634e0f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634e0fe: 00 00 - 6634e100: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634e104: 4c 8b 15 15 98 00 00 mov 0x9815(%rip),%r10 # 66357920 - 6634e10b: 48 8b 0d 1e 98 00 00 mov 0x981e(%rip),%rcx # 66357930 - 6634e112: 44 8b 42 14 mov 0x14(%rdx),%r8d - 6634e116: 45 85 c0 test %r8d,%r8d - 6634e119: 74 5a je 6634e175 - 6634e11b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e11f: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634e123: 45 29 01 sub %r8d,(%r9) - 6634e126: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634e12d: 45 8b 09 mov (%r9),%r9d - 6634e130: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634e134: 45 85 c9 test %r9d,%r9d - 6634e137: 41 0f 9f c1 setg %r9b - 6634e13b: 45 0f b6 c9 movzbl %r9b,%r9d - 6634e13f: 45 3b 08 cmp (%r8),%r9d - 6634e142: 74 31 je 6634e175 - 6634e144: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e148: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634e14c: 45 8b 00 mov (%r8),%r8d - 6634e14f: 45 85 c0 test %r8d,%r8d - 6634e152: 75 21 jne 6634e175 - 6634e154: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e158: 4d 8b 48 28 mov 0x28(%r8),%r9 - 6634e15c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e160: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e167: 4c 63 01 movslq (%rcx),%r8 - 6634e16a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e16e: 44 89 19 mov %r11d,(%rcx) - 6634e171: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e175: 44 8b 42 18 mov 0x18(%rdx),%r8d - 6634e179: 45 85 c0 test %r8d,%r8d - 6634e17c: 74 57 je 6634e1d5 - 6634e17e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e182: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634e186: 45 29 01 sub %r8d,(%r9) - 6634e189: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) - 6634e190: 41 8b 39 mov (%r9),%edi - 6634e193: 45 31 c9 xor %r9d,%r9d - 6634e196: 4c 8b 40 30 mov 0x30(%rax),%r8 - 6634e19a: 85 ff test %edi,%edi - 6634e19c: 41 0f 9f c1 setg %r9b - 6634e1a0: 45 3b 08 cmp (%r8),%r9d - 6634e1a3: 74 30 je 6634e1d5 - 6634e1a5: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e1a9: 4d 8b 40 30 mov 0x30(%r8),%r8 - 6634e1ad: 41 8b 30 mov (%r8),%esi - 6634e1b0: 85 f6 test %esi,%esi - 6634e1b2: 75 21 jne 6634e1d5 - 6634e1b4: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e1b8: 4d 8b 48 30 mov 0x30(%r8),%r9 - 6634e1bc: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e1c0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e1c7: 4c 63 01 movslq (%rcx),%r8 - 6634e1ca: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e1ce: 44 89 19 mov %r11d,(%rcx) - 6634e1d1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e1d5: 44 8b 42 1c mov 0x1c(%rdx),%r8d - 6634e1d9: 45 85 c0 test %r8d,%r8d - 6634e1dc: 74 59 je 6634e237 - 6634e1de: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e1e2: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634e1e6: 45 29 01 sub %r8d,(%r9) - 6634e1e9: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634e1f0: 45 8b 19 mov (%r9),%r11d - 6634e1f3: 45 31 c9 xor %r9d,%r9d - 6634e1f6: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634e1fa: 45 85 db test %r11d,%r11d - 6634e1fd: 41 0f 9f c1 setg %r9b - 6634e201: 45 3b 08 cmp (%r8),%r9d - 6634e204: 74 31 je 6634e237 - 6634e206: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e20a: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634e20e: 45 8b 08 mov (%r8),%r9d - 6634e211: 45 85 c9 test %r9d,%r9d - 6634e214: 75 21 jne 6634e237 - 6634e216: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e21a: 4d 8b 48 38 mov 0x38(%r8),%r9 - 6634e21e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e222: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e229: 4c 63 01 movslq (%rcx),%r8 - 6634e22c: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e230: 44 89 19 mov %r11d,(%rcx) - 6634e233: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e237: 44 8b 42 20 mov 0x20(%rdx),%r8d - 6634e23b: 45 85 c0 test %r8d,%r8d - 6634e23e: 0f 84 ab fe ff ff je 6634e0ef - 6634e244: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e248: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e24c: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634e250: 45 29 01 sub %r8d,(%r9) - 6634e253: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634e25a: 31 d2 xor %edx,%edx - 6634e25c: 45 8b 01 mov (%r9),%r8d - 6634e25f: 45 85 c0 test %r8d,%r8d - 6634e262: 0f 9f c2 setg %dl - 6634e265: 3b 10 cmp (%rax),%edx - 6634e267: 0f 84 82 fe ff ff je 6634e0ef - 6634e26d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e271: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e275: 8b 00 mov (%rax),%eax - 6634e277: 85 c0 test %eax,%eax - 6634e279: 0f 85 70 fe ff ff jne 6634e0ef - 6634e27f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e283: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634e287: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e28b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e291: 48 63 01 movslq (%rcx),%rax - 6634e294: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634e298: 44 89 01 mov %r8d,(%rcx) - 6634e29b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634e29f: 48 83 c4 20 add $0x20,%rsp - 6634e2a3: 5b pop %rbx - 6634e2a4: 5e pop %rsi - 6634e2a5: 5f pop %rdi - 6634e2a6: c3 retq - 6634e2a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634e2ae: 00 00 - 6634e2b0: 48 8d 15 49 5d 00 00 lea 0x5d49(%rip),%rdx # 66354000 <.rdata> - 6634e2b7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e2bd: 48 8d 0d 4c 5d 00 00 lea 0x5d4c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e2c4: e8 87 3c 00 00 callq 66351f50 <_assert> - 6634e2c9: e9 80 fc ff ff jmpq 6634df4e - 6634e2ce: 66 90 xchg %ax,%ax - 6634e2d0: 48 8d 15 29 5d 00 00 lea 0x5d29(%rip),%rdx # 66354000 <.rdata> - 6634e2d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e2dd: 48 8d 0d 2c 5d 00 00 lea 0x5d2c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e2e4: e8 67 3c 00 00 callq 66351f50 <_assert> - 6634e2e9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e2ed: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e2f1: e9 c2 fc ff ff jmpq 6634dfb8 - 6634e2f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e2fd: 00 00 00 - 6634e300: 48 8d 15 f9 5c 00 00 lea 0x5cf9(%rip),%rdx # 66354000 <.rdata> - 6634e307: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e30d: 48 8d 0d fc 5c 00 00 lea 0x5cfc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e314: e8 37 3c 00 00 callq 66351f50 <_assert> - 6634e319: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e31d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e321: e9 f6 fc ff ff jmpq 6634e01c - 6634e326: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e32d: 00 00 00 - 6634e330: 48 8d 15 c9 5c 00 00 lea 0x5cc9(%rip),%rdx # 66354000 <.rdata> - 6634e337: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e33d: 48 8d 0d cc 5c 00 00 lea 0x5ccc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e344: e8 07 3c 00 00 callq 66351f50 <_assert> - 6634e349: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e34d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e351: e9 25 fd ff ff jmpq 6634e07b - 6634e356: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e35d: 00 00 00 - 6634e360: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e364: 4c 8b 0d c5 95 00 00 mov 0x95c5(%rip),%r9 # 66357930 - 6634e36b: 4c 8b 15 ae 95 00 00 mov 0x95ae(%rip),%r10 # 66357920 - 6634e372: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634e376: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e37a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e380: 49 63 09 movslq (%r9),%rcx - 6634e383: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e387: 45 89 19 mov %r11d,(%r9) - 6634e38a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e38e: e9 d6 fc ff ff jmpq 6634e069 - 6634e393: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e397: 4c 8b 0d 92 95 00 00 mov 0x9592(%rip),%r9 # 66357930 - 6634e39e: 4c 8b 15 7b 95 00 00 mov 0x957b(%rip),%r10 # 66357920 - 6634e3a5: 4c 8b 41 30 mov 0x30(%rcx),%r8 - 6634e3a9: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e3ad: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e3b3: 49 63 09 movslq (%r9),%rcx - 6634e3b6: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e3ba: 45 89 19 mov %r11d,(%r9) - 6634e3bd: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e3c1: e9 42 fc ff ff jmpq 6634e008 - 6634e3c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e3cd: 00 00 00 - 6634e3d0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e3d4: 4c 8b 0d 55 95 00 00 mov 0x9555(%rip),%r9 # 66357930 - 6634e3db: 4c 8b 15 3e 95 00 00 mov 0x953e(%rip),%r10 # 66357920 - 6634e3e2: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634e3e6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e3ea: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e3f0: 49 63 09 movslq (%r9),%rcx - 6634e3f3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e3f7: 45 89 19 mov %r11d,(%r9) - 6634e3fa: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e3fe: e9 a1 fb ff ff jmpq 6634dfa4 - 6634e403: 0f 1f 00 nopl (%rax) - 6634e406: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e40d: 00 00 00 +000000006634d180 : + 6634d180: 41 55 push %r13 + 6634d182: 41 54 push %r12 + 6634d184: 55 push %rbp + 6634d185: 57 push %rdi + 6634d186: 56 push %rsi + 6634d187: 53 push %rbx + 6634d188: 48 83 ec 28 sub $0x28,%rsp + 6634d18c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d190: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx + 6634d197: 48 89 cb mov %rcx,%rbx + 6634d19a: 8b 12 mov (%rdx),%edx + 6634d19c: 85 d2 test %edx,%edx + 6634d19e: 0f 84 4c 01 00 00 je 6634d2f0 + 6634d1a4: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d1a8: be 30 00 00 00 mov $0x30,%esi + 6634d1ad: 4c 8d 2d 4c 6e 00 00 lea 0x6e4c(%rip),%r13 # 66354000 <.rdata> + 6634d1b4: 4c 8d 25 55 6e 00 00 lea 0x6e55(%rip),%r12 # 66354010 <.rdata+0x10> + 6634d1bb: 8b 0a mov (%rdx),%ecx + 6634d1bd: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d1c1: 8b 12 mov (%rdx),%edx + 6634d1c3: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d1c6: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d1ca: 8b 09 mov (%rcx),%ecx + 6634d1cc: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d1cf: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634d1d3: 8b 09 mov (%rcx),%ecx + 6634d1d5: 8d 3c ca lea (%rdx,%rcx,8),%edi + 6634d1d8: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634d1dc: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634d1e0: 8b 12 mov (%rdx),%edx + 6634d1e2: c1 e2 04 shl $0x4,%edx + 6634d1e5: 01 fa add %edi,%edx + 6634d1e7: 8b 39 mov (%rcx),%edi + 6634d1e9: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634d1ed: c1 e7 05 shl $0x5,%edi + 6634d1f0: 01 fa add %edi,%edx + 6634d1f2: 8b 39 mov (%rcx),%edi + 6634d1f4: 48 8b 48 50 mov 0x50(%rax),%rcx + 6634d1f8: c1 e7 06 shl $0x6,%edi + 6634d1fb: 01 d7 add %edx,%edi + 6634d1fd: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634d201: 8b 12 mov (%rdx),%edx + 6634d203: c1 e2 07 shl $0x7,%edx + 6634d206: 01 d7 add %edx,%edi + 6634d208: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634d20c: 48 8b 40 58 mov 0x58(%rax),%rax + 6634d210: 8b 12 mov (%rdx),%edx + 6634d212: c1 e2 08 shl $0x8,%edx + 6634d215: 01 fa add %edi,%edx + 6634d217: 8b 39 mov (%rcx),%edi + 6634d219: c1 e7 09 shl $0x9,%edi + 6634d21c: 01 fa add %edi,%edx + 6634d21e: 8b 38 mov (%rax),%edi + 6634d220: c1 e7 0a shl $0xa,%edi + 6634d223: 01 d7 add %edx,%edi + 6634d225: 48 63 ef movslq %edi,%rbp + 6634d228: 48 c1 e5 02 shl $0x2,%rbp + 6634d22c: 0f 1f 40 00 nopl 0x0(%rax) + 6634d230: 85 ff test %edi,%edi + 6634d232: 78 05 js 6634d239 + 6634d234: 39 7b 38 cmp %edi,0x38(%rbx) + 6634d237: 7f 11 jg 6634d24a + 6634d239: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d23f: 4c 89 ea mov %r13,%rdx + 6634d242: 4c 89 e1 mov %r12,%rcx + 6634d245: e8 c6 4f 00 00 callq 66352210 <_assert> + 6634d24a: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634d24e: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d252: 48 01 f2 add %rsi,%rdx + 6634d255: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634d258: 8b 0a mov (%rdx),%ecx + 6634d25a: 39 c8 cmp %ecx,%eax + 6634d25c: 74 69 je 6634d2c7 + 6634d25e: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634d262: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634d266: 41 89 c3 mov %eax,%r11d + 6634d269: 41 29 cb sub %ecx,%r11d + 6634d26c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634d270: 45 01 18 add %r11d,(%r8) + 6634d273: 89 02 mov %eax,(%rdx) + 6634d275: 31 d2 xor %edx,%edx + 6634d277: 41 8b 00 mov (%r8),%eax + 6634d27a: 85 c0 test %eax,%eax + 6634d27c: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634d280: 0f 9f c2 setg %dl + 6634d283: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634d287: 3b 10 cmp (%rax),%edx + 6634d289: 74 3c je 6634d2c7 + 6634d28b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d28f: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634d293: 8b 00 mov (%rax),%eax + 6634d295: 85 c0 test %eax,%eax + 6634d297: 75 2e jne 6634d2c7 + 6634d299: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d29d: 48 8b 0d 8c a6 00 00 mov 0xa68c(%rip),%rcx # 66357930 + 6634d2a4: 4c 8b 05 75 a6 00 00 mov 0xa675(%rip),%r8 # 66357920 + 6634d2ab: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634d2af: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d2b3: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d2b9: 48 63 01 movslq (%rcx),%rax + 6634d2bc: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d2c0: 44 89 09 mov %r9d,(%rcx) + 6634d2c3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d2c7: 48 83 c6 04 add $0x4,%rsi + 6634d2cb: 81 c7 00 08 00 00 add $0x800,%edi + 6634d2d1: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634d2d8: 48 83 fe 50 cmp $0x50,%rsi + 6634d2dc: 0f 85 4e ff ff ff jne 6634d230 + 6634d2e2: 48 83 c4 28 add $0x28,%rsp + 6634d2e6: 5b pop %rbx + 6634d2e7: 5e pop %rsi + 6634d2e8: 5f pop %rdi + 6634d2e9: 5d pop %rbp + 6634d2ea: 41 5c pop %r12 + 6634d2ec: 41 5d pop %r13 + 6634d2ee: c3 retq + 6634d2ef: 90 nop + 6634d2f0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634d2f4: 4c 8b 05 25 a6 00 00 mov 0xa625(%rip),%r8 # 66357920 + 6634d2fb: 48 8b 0d 2e a6 00 00 mov 0xa62e(%rip),%rcx # 66357930 + 6634d302: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634d306: 45 85 c9 test %r9d,%r9d + 6634d309: 74 58 je 6634d363 + 6634d30b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d30f: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634d313: 45 29 0a sub %r9d,(%r10) + 6634d316: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634d31d: 45 8b 22 mov (%r10),%r12d + 6634d320: 45 31 d2 xor %r10d,%r10d + 6634d323: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634d327: 45 85 e4 test %r12d,%r12d + 6634d32a: 41 0f 9f c2 setg %r10b + 6634d32e: 45 3b 11 cmp (%r9),%r10d + 6634d331: 74 30 je 6634d363 + 6634d333: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d337: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634d33b: 41 8b 29 mov (%r9),%ebp + 6634d33e: 85 ed test %ebp,%ebp + 6634d340: 75 21 jne 6634d363 + 6634d342: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d346: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634d34a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d34e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d355: 4c 63 09 movslq (%rcx),%r9 + 6634d358: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d35c: 44 89 19 mov %r11d,(%rcx) + 6634d35f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d363: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634d367: 45 85 c9 test %r9d,%r9d + 6634d36a: 74 57 je 6634d3c3 + 6634d36c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d370: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634d374: 45 29 0a sub %r9d,(%r10) + 6634d377: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634d37e: 41 8b 3a mov (%r10),%edi + 6634d381: 45 31 d2 xor %r10d,%r10d + 6634d384: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634d388: 85 ff test %edi,%edi + 6634d38a: 41 0f 9f c2 setg %r10b + 6634d38e: 45 3b 11 cmp (%r9),%r10d + 6634d391: 74 30 je 6634d3c3 + 6634d393: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d397: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634d39b: 41 8b 31 mov (%r9),%esi + 6634d39e: 85 f6 test %esi,%esi + 6634d3a0: 75 21 jne 6634d3c3 + 6634d3a2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d3a6: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634d3aa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d3ae: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d3b5: 4c 63 09 movslq (%rcx),%r9 + 6634d3b8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d3bc: 44 89 19 mov %r11d,(%rcx) + 6634d3bf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d3c3: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634d3c7: 45 85 c9 test %r9d,%r9d + 6634d3ca: 74 59 je 6634d425 + 6634d3cc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d3d0: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634d3d4: 45 29 0a sub %r9d,(%r10) + 6634d3d7: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634d3de: 45 8b 1a mov (%r10),%r11d + 6634d3e1: 45 31 d2 xor %r10d,%r10d + 6634d3e4: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634d3e8: 45 85 db test %r11d,%r11d + 6634d3eb: 41 0f 9f c2 setg %r10b + 6634d3ef: 45 3b 11 cmp (%r9),%r10d + 6634d3f2: 74 31 je 6634d425 + 6634d3f4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d3f8: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634d3fc: 45 8b 11 mov (%r9),%r10d + 6634d3ff: 45 85 d2 test %r10d,%r10d + 6634d402: 75 21 jne 6634d425 + 6634d404: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d408: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634d40c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d410: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d417: 4c 63 09 movslq (%rcx),%r9 + 6634d41a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d41e: 44 89 19 mov %r11d,(%rcx) + 6634d421: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d425: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634d429: 45 85 c9 test %r9d,%r9d + 6634d42c: 74 59 je 6634d487 + 6634d42e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d432: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634d436: 45 29 0a sub %r9d,(%r10) + 6634d439: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634d440: 45 8b 0a mov (%r10),%r9d + 6634d443: 45 31 d2 xor %r10d,%r10d + 6634d446: 45 85 c9 test %r9d,%r9d + 6634d449: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634d44d: 41 0f 9f c2 setg %r10b + 6634d451: 45 3b 11 cmp (%r9),%r10d + 6634d454: 74 31 je 6634d487 + 6634d456: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d45a: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634d45e: 45 8b 29 mov (%r9),%r13d + 6634d461: 45 85 ed test %r13d,%r13d + 6634d464: 75 21 jne 6634d487 + 6634d466: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d46a: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634d46e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d472: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d479: 4c 63 09 movslq (%rcx),%r9 + 6634d47c: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d480: 44 89 19 mov %r11d,(%rcx) + 6634d483: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d487: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634d48b: 45 85 c9 test %r9d,%r9d + 6634d48e: 74 64 je 6634d4f4 + 6634d490: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d494: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634d49b: 45 29 0a sub %r9d,(%r10) + 6634d49e: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634d4a5: 45 8b 22 mov (%r10),%r12d + 6634d4a8: 45 31 d2 xor %r10d,%r10d + 6634d4ab: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634d4b2: 45 85 e4 test %r12d,%r12d + 6634d4b5: 41 0f 9f c2 setg %r10b + 6634d4b9: 45 3b 11 cmp (%r9),%r10d + 6634d4bc: 74 36 je 6634d4f4 + 6634d4be: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d4c2: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634d4c9: 41 8b 29 mov (%r9),%ebp + 6634d4cc: 85 ed test %ebp,%ebp + 6634d4ce: 75 24 jne 6634d4f4 + 6634d4d0: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d4d4: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634d4db: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d4df: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d4e6: 4c 63 09 movslq (%rcx),%r9 + 6634d4e9: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d4ed: 44 89 19 mov %r11d,(%rcx) + 6634d4f0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d4f4: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634d4f8: 45 85 c9 test %r9d,%r9d + 6634d4fb: 74 63 je 6634d560 + 6634d4fd: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d501: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634d508: 45 29 0a sub %r9d,(%r10) + 6634d50b: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634d512: 41 8b 3a mov (%r10),%edi + 6634d515: 45 31 d2 xor %r10d,%r10d + 6634d518: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634d51f: 85 ff test %edi,%edi + 6634d521: 41 0f 9f c2 setg %r10b + 6634d525: 45 3b 11 cmp (%r9),%r10d + 6634d528: 74 36 je 6634d560 + 6634d52a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d52e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634d535: 41 8b 31 mov (%r9),%esi + 6634d538: 85 f6 test %esi,%esi + 6634d53a: 75 24 jne 6634d560 + 6634d53c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d540: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634d547: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d54b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d552: 4c 63 09 movslq (%rcx),%r9 + 6634d555: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d559: 44 89 19 mov %r11d,(%rcx) + 6634d55c: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d560: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634d564: 45 85 c9 test %r9d,%r9d + 6634d567: 74 65 je 6634d5ce + 6634d569: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d56d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634d574: 45 29 0a sub %r9d,(%r10) + 6634d577: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634d57e: 45 8b 1a mov (%r10),%r11d + 6634d581: 45 31 d2 xor %r10d,%r10d + 6634d584: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 + 6634d58b: 45 85 db test %r11d,%r11d + 6634d58e: 41 0f 9f c2 setg %r10b + 6634d592: 45 3b 11 cmp (%r9),%r10d + 6634d595: 74 37 je 6634d5ce + 6634d597: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d59b: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 + 6634d5a2: 45 8b 11 mov (%r9),%r10d + 6634d5a5: 45 85 d2 test %r10d,%r10d + 6634d5a8: 75 24 jne 6634d5ce + 6634d5aa: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d5ae: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 + 6634d5b5: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d5b9: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d5c0: 4c 63 09 movslq (%rcx),%r9 + 6634d5c3: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d5c7: 44 89 19 mov %r11d,(%rcx) + 6634d5ca: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d5ce: 44 8b 4a 4c mov 0x4c(%rdx),%r9d + 6634d5d2: 45 85 c9 test %r9d,%r9d + 6634d5d5: 0f 84 07 fd ff ff je 6634d2e2 + 6634d5db: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d5df: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax + 6634d5e6: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 + 6634d5ed: 45 29 0a sub %r9d,(%r10) + 6634d5f0: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) + 6634d5f7: 31 d2 xor %edx,%edx + 6634d5f9: 45 8b 0a mov (%r10),%r9d + 6634d5fc: 45 85 c9 test %r9d,%r9d + 6634d5ff: 0f 9f c2 setg %dl + 6634d602: 3b 10 cmp (%rax),%edx + 6634d604: 0f 84 d8 fc ff ff je 6634d2e2 + 6634d60a: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d60e: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax + 6634d615: 8b 00 mov (%rax),%eax + 6634d617: 85 c0 test %eax,%eax + 6634d619: 0f 85 c3 fc ff ff jne 6634d2e2 + 6634d61f: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d623: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx + 6634d62a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d62e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d634: 48 63 01 movslq (%rcx),%rax + 6634d637: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d63b: 44 89 09 mov %r9d,(%rcx) + 6634d63e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d642: 48 83 c4 28 add $0x28,%rsp + 6634d646: 5b pop %rbx + 6634d647: 5e pop %rsi + 6634d648: 5f pop %rdi + 6634d649: 5d pop %rbp + 6634d64a: 41 5c pop %r12 + 6634d64c: 41 5d pop %r13 + 6634d64e: c3 retq + 6634d64f: 90 nop -000000006634e410 : - 6634e410: 57 push %rdi - 6634e411: 56 push %rsi - 6634e412: 53 push %rbx - 6634e413: 48 83 ec 20 sub $0x20,%rsp - 6634e417: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634e41b: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634e41f: 48 89 cb mov %rcx,%rbx - 6634e422: 44 8b 10 mov (%rax),%r10d - 6634e425: 45 85 d2 test %r10d,%r10d - 6634e428: 0f 84 15 02 00 00 je 6634e643 - 6634e42e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e432: 8b 08 mov (%rax),%ecx - 6634e434: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634e438: 8b 00 mov (%rax),%eax - 6634e43a: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634e43d: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634e441: 8b 09 mov (%rcx),%ecx - 6634e443: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634e446: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 6634e44a: 8b 09 mov (%rcx),%ecx - 6634e44c: 8d 04 c8 lea (%rax,%rcx,8),%eax - 6634e44f: 48 8b 4a 28 mov 0x28(%rdx),%rcx - 6634e453: 8b 31 mov (%rcx),%esi - 6634e455: 48 8b 4a 40 mov 0x40(%rdx),%rcx - 6634e459: c1 e6 04 shl $0x4,%esi - 6634e45c: 01 c6 add %eax,%esi - 6634e45e: 48 8b 42 30 mov 0x30(%rdx),%rax - 6634e462: 8b 00 mov (%rax),%eax - 6634e464: c1 e0 05 shl $0x5,%eax - 6634e467: 01 c6 add %eax,%esi - 6634e469: 48 8b 42 38 mov 0x38(%rdx),%rax - 6634e46d: 48 8b 52 48 mov 0x48(%rdx),%rdx - 6634e471: 8b 00 mov (%rax),%eax - 6634e473: c1 e0 06 shl $0x6,%eax - 6634e476: 01 f0 add %esi,%eax - 6634e478: 8b 31 mov (%rcx),%esi - 6634e47a: c1 e6 07 shl $0x7,%esi - 6634e47d: 01 f0 add %esi,%eax - 6634e47f: 8b 32 mov (%rdx),%esi - 6634e481: c1 e6 08 shl $0x8,%esi - 6634e484: 01 c6 add %eax,%esi - 6634e486: 0f 88 64 03 00 00 js 6634e7f0 - 6634e48c: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e48f: 0f 8d 5b 03 00 00 jge 6634e7f0 - 6634e495: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e499: 48 63 c6 movslq %esi,%rax - 6634e49c: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634e49f: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e4a3: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634e4a7: 41 39 c8 cmp %ecx,%r8d - 6634e4aa: 74 3d je 6634e4e9 - 6634e4ac: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e4b0: 89 cf mov %ecx,%edi - 6634e4b2: 44 29 c7 sub %r8d,%edi - 6634e4b5: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634e4b9: 41 01 39 add %edi,(%r9) - 6634e4bc: 89 48 28 mov %ecx,0x28(%rax) - 6634e4bf: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e4c3: 45 8b 09 mov (%r9),%r9d - 6634e4c6: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634e4ca: 31 c9 xor %ecx,%ecx - 6634e4cc: 45 85 c9 test %r9d,%r9d - 6634e4cf: 0f 9f c1 setg %cl - 6634e4d2: 41 39 08 cmp %ecx,(%r8) - 6634e4d5: 74 12 je 6634e4e9 - 6634e4d7: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e4db: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634e4df: 8b 39 mov (%rcx),%edi - 6634e4e1: 85 ff test %edi,%edi - 6634e4e3: 0f 84 27 04 00 00 je 6634e910 - 6634e4e9: 89 f7 mov %esi,%edi - 6634e4eb: 81 c7 00 02 00 00 add $0x200,%edi - 6634e4f1: 0f 88 19 03 00 00 js 6634e810 - 6634e4f7: 39 7b 38 cmp %edi,0x38(%rbx) - 6634e4fa: 0f 8e 10 03 00 00 jle 6634e810 - 6634e500: 48 63 ff movslq %edi,%rdi - 6634e503: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634e507: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e50a: 44 39 c1 cmp %r8d,%ecx - 6634e50d: 74 41 je 6634e550 - 6634e50f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e513: 89 cf mov %ecx,%edi - 6634e515: 44 29 c7 sub %r8d,%edi - 6634e518: 45 31 c0 xor %r8d,%r8d - 6634e51b: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634e51f: 41 01 39 add %edi,(%r9) - 6634e522: 89 48 2c mov %ecx,0x2c(%rax) - 6634e525: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e529: 45 8b 19 mov (%r9),%r11d - 6634e52c: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634e530: 45 85 db test %r11d,%r11d - 6634e533: 41 0f 9f c0 setg %r8b - 6634e537: 44 3b 01 cmp (%rcx),%r8d - 6634e53a: 74 14 je 6634e550 - 6634e53c: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e540: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634e544: 44 8b 11 mov (%rcx),%r10d - 6634e547: 45 85 d2 test %r10d,%r10d - 6634e54a: 0f 84 83 03 00 00 je 6634e8d3 - 6634e550: 89 f7 mov %esi,%edi - 6634e552: 81 c7 00 04 00 00 add $0x400,%edi - 6634e558: 0f 88 e2 02 00 00 js 6634e840 - 6634e55e: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634e561: 0f 8d d9 02 00 00 jge 6634e840 - 6634e567: 48 63 ff movslq %edi,%rdi - 6634e56a: 44 8b 40 30 mov 0x30(%rax),%r8d - 6634e56e: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e571: 44 39 c1 cmp %r8d,%ecx - 6634e574: 74 3f je 6634e5b5 - 6634e576: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e57a: 89 cf mov %ecx,%edi - 6634e57c: 44 29 c7 sub %r8d,%edi - 6634e57f: 45 31 c0 xor %r8d,%r8d - 6634e582: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634e586: 41 01 39 add %edi,(%r9) - 6634e589: 89 48 30 mov %ecx,0x30(%rax) - 6634e58c: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e590: 45 8b 09 mov (%r9),%r9d - 6634e593: 48 8b 49 60 mov 0x60(%rcx),%rcx - 6634e597: 45 85 c9 test %r9d,%r9d - 6634e59a: 41 0f 9f c0 setg %r8b - 6634e59e: 44 3b 01 cmp (%rcx),%r8d - 6634e5a1: 74 12 je 6634e5b5 - 6634e5a3: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e5a7: 48 8b 49 60 mov 0x60(%rcx),%rcx - 6634e5ab: 8b 09 mov (%rcx),%ecx - 6634e5ad: 85 c9 test %ecx,%ecx - 6634e5af: 0f 84 eb 02 00 00 je 6634e8a0 - 6634e5b5: 81 c6 00 06 00 00 add $0x600,%esi - 6634e5bb: 0f 88 af 02 00 00 js 6634e870 - 6634e5c1: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e5c4: 0f 8d a6 02 00 00 jge 6634e870 - 6634e5ca: 48 63 f6 movslq %esi,%rsi - 6634e5cd: 8b 48 34 mov 0x34(%rax),%ecx - 6634e5d0: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634e5d3: 39 ca cmp %ecx,%edx - 6634e5d5: 74 64 je 6634e63b - 6634e5d7: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634e5db: 89 d7 mov %edx,%edi - 6634e5dd: 29 cf sub %ecx,%edi - 6634e5df: 4d 8b 40 68 mov 0x68(%r8),%r8 - 6634e5e3: 41 01 38 add %edi,(%r8) - 6634e5e6: 89 50 34 mov %edx,0x34(%rax) - 6634e5e9: 31 d2 xor %edx,%edx - 6634e5eb: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634e5ef: 41 8b 38 mov (%r8),%edi - 6634e5f2: 48 8b 40 68 mov 0x68(%rax),%rax - 6634e5f6: 85 ff test %edi,%edi - 6634e5f8: 0f 9f c2 setg %dl - 6634e5fb: 3b 10 cmp (%rax),%edx - 6634e5fd: 74 3c je 6634e63b - 6634e5ff: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e603: 48 8b 40 68 mov 0x68(%rax),%rax - 6634e607: 8b 30 mov (%rax),%esi - 6634e609: 85 f6 test %esi,%esi - 6634e60b: 75 2e jne 6634e63b - 6634e60d: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e611: 48 8b 0d 18 93 00 00 mov 0x9318(%rip),%rcx # 66357930 - 6634e618: 4c 8b 05 01 93 00 00 mov 0x9301(%rip),%r8 # 66357920 - 6634e61f: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634e623: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e627: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e62d: 48 63 01 movslq (%rcx),%rax - 6634e630: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634e634: 44 89 09 mov %r9d,(%rcx) - 6634e637: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634e63b: 48 83 c4 20 add $0x20,%rsp - 6634e63f: 5b pop %rbx - 6634e640: 5e pop %rsi - 6634e641: 5f pop %rdi - 6634e642: c3 retq - 6634e643: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634e647: 4c 8b 15 d2 92 00 00 mov 0x92d2(%rip),%r10 # 66357920 - 6634e64e: 48 8b 0d db 92 00 00 mov 0x92db(%rip),%rcx # 66357930 - 6634e655: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634e659: 45 85 c0 test %r8d,%r8d - 6634e65c: 74 59 je 6634e6b7 - 6634e65e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e662: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634e666: 45 29 01 sub %r8d,(%r9) - 6634e669: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 6634e670: 45 8b 19 mov (%r9),%r11d - 6634e673: 45 31 c9 xor %r9d,%r9d - 6634e676: 4c 8b 42 50 mov 0x50(%rdx),%r8 - 6634e67a: 45 85 db test %r11d,%r11d - 6634e67d: 41 0f 9f c1 setg %r9b - 6634e681: 45 3b 08 cmp (%r8),%r9d - 6634e684: 74 31 je 6634e6b7 - 6634e686: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e68a: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634e68e: 45 8b 08 mov (%r8),%r9d - 6634e691: 45 85 c9 test %r9d,%r9d - 6634e694: 75 21 jne 6634e6b7 - 6634e696: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e69a: 4d 8b 48 50 mov 0x50(%r8),%r9 - 6634e69e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e6a2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e6a9: 4c 63 01 movslq (%rcx),%r8 - 6634e6ac: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e6b0: 44 89 19 mov %r11d,(%rcx) - 6634e6b3: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e6b7: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634e6bb: 45 85 c0 test %r8d,%r8d - 6634e6be: 74 58 je 6634e718 - 6634e6c0: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e6c4: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634e6c8: 45 29 01 sub %r8d,(%r9) - 6634e6cb: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634e6d2: 45 8b 01 mov (%r9),%r8d - 6634e6d5: 45 31 c9 xor %r9d,%r9d - 6634e6d8: 45 85 c0 test %r8d,%r8d - 6634e6db: 4c 8b 42 58 mov 0x58(%rdx),%r8 - 6634e6df: 41 0f 9f c1 setg %r9b - 6634e6e3: 45 3b 08 cmp (%r8),%r9d - 6634e6e6: 74 30 je 6634e718 - 6634e6e8: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e6ec: 4d 8b 40 58 mov 0x58(%r8),%r8 - 6634e6f0: 41 8b 38 mov (%r8),%edi - 6634e6f3: 85 ff test %edi,%edi - 6634e6f5: 75 21 jne 6634e718 - 6634e6f7: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e6fb: 4d 8b 48 58 mov 0x58(%r8),%r9 - 6634e6ff: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e703: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e70a: 4c 63 01 movslq (%rcx),%r8 - 6634e70d: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e711: 44 89 19 mov %r11d,(%rcx) - 6634e714: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e718: 44 8b 40 30 mov 0x30(%rax),%r8d - 6634e71c: 45 85 c0 test %r8d,%r8d - 6634e71f: 74 58 je 6634e779 - 6634e721: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e725: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634e729: 45 29 01 sub %r8d,(%r9) - 6634e72c: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634e733: 41 8b 31 mov (%r9),%esi - 6634e736: 45 31 c9 xor %r9d,%r9d - 6634e739: 4c 8b 42 60 mov 0x60(%rdx),%r8 - 6634e73d: 85 f6 test %esi,%esi - 6634e73f: 41 0f 9f c1 setg %r9b - 6634e743: 45 3b 08 cmp (%r8),%r9d - 6634e746: 74 31 je 6634e779 - 6634e748: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e74c: 4d 8b 40 60 mov 0x60(%r8),%r8 - 6634e750: 45 8b 18 mov (%r8),%r11d - 6634e753: 45 85 db test %r11d,%r11d - 6634e756: 75 21 jne 6634e779 - 6634e758: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e75c: 4d 8b 48 60 mov 0x60(%r8),%r9 - 6634e760: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e764: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e76b: 4c 63 01 movslq (%rcx),%r8 - 6634e76e: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e772: 44 89 19 mov %r11d,(%rcx) - 6634e775: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e779: 44 8b 40 34 mov 0x34(%rax),%r8d - 6634e77d: 45 85 c0 test %r8d,%r8d - 6634e780: 0f 84 b5 fe ff ff je 6634e63b - 6634e786: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e78a: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634e78e: 45 29 01 sub %r8d,(%r9) - 6634e791: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 6634e798: 45 31 c0 xor %r8d,%r8d - 6634e79b: 45 8b 09 mov (%r9),%r9d - 6634e79e: 48 8b 42 68 mov 0x68(%rdx),%rax - 6634e7a2: 45 85 c9 test %r9d,%r9d - 6634e7a5: 41 0f 9f c0 setg %r8b - 6634e7a9: 44 3b 00 cmp (%rax),%r8d - 6634e7ac: 0f 84 89 fe ff ff je 6634e63b - 6634e7b2: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e7b6: 48 8b 40 68 mov 0x68(%rax),%rax - 6634e7ba: 8b 00 mov (%rax),%eax - 6634e7bc: 85 c0 test %eax,%eax - 6634e7be: 0f 85 77 fe ff ff jne 6634e63b - 6634e7c4: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e7c8: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634e7cc: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e7d0: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e7d6: 48 63 01 movslq (%rcx),%rax - 6634e7d9: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634e7dd: 44 89 01 mov %r8d,(%rcx) - 6634e7e0: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634e7e4: 48 83 c4 20 add $0x20,%rsp - 6634e7e8: 5b pop %rbx - 6634e7e9: 5e pop %rsi - 6634e7ea: 5f pop %rdi - 6634e7eb: c3 retq - 6634e7ec: 0f 1f 40 00 nopl 0x0(%rax) - 6634e7f0: 48 8d 15 09 58 00 00 lea 0x5809(%rip),%rdx # 66354000 <.rdata> - 6634e7f7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e7fd: 48 8d 0d 0c 58 00 00 lea 0x580c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e804: e8 47 37 00 00 callq 66351f50 <_assert> - 6634e809: e9 87 fc ff ff jmpq 6634e495 - 6634e80e: 66 90 xchg %ax,%ax - 6634e810: 48 8d 15 e9 57 00 00 lea 0x57e9(%rip),%rdx # 66354000 <.rdata> - 6634e817: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e81d: 48 8d 0d ec 57 00 00 lea 0x57ec(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e824: e8 27 37 00 00 callq 66351f50 <_assert> - 6634e829: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e82d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e831: e9 ca fc ff ff jmpq 6634e500 - 6634e836: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e83d: 00 00 00 - 6634e840: 48 8d 15 b9 57 00 00 lea 0x57b9(%rip),%rdx # 66354000 <.rdata> - 6634e847: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e84d: 48 8d 0d bc 57 00 00 lea 0x57bc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e854: e8 f7 36 00 00 callq 66351f50 <_assert> - 6634e859: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e85d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e861: e9 01 fd ff ff jmpq 6634e567 - 6634e866: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e86d: 00 00 00 +000000006634d650 : + 6634d650: 41 55 push %r13 + 6634d652: 41 54 push %r12 + 6634d654: 55 push %rbp + 6634d655: 57 push %rdi + 6634d656: 56 push %rsi + 6634d657: 53 push %rbx + 6634d658: 48 83 ec 28 sub $0x28,%rsp + 6634d65c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d660: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx + 6634d667: 48 89 cb mov %rcx,%rbx + 6634d66a: 8b 12 mov (%rdx),%edx + 6634d66c: 85 d2 test %edx,%edx + 6634d66e: 0f 84 3c 01 00 00 je 6634d7b0 + 6634d674: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d678: be 28 00 00 00 mov $0x28,%esi + 6634d67d: 4c 8d 2d 7c 69 00 00 lea 0x697c(%rip),%r13 # 66354000 <.rdata> + 6634d684: 4c 8d 25 85 69 00 00 lea 0x6985(%rip),%r12 # 66354010 <.rdata+0x10> + 6634d68b: 8b 0a mov (%rdx),%ecx + 6634d68d: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d691: 8b 12 mov (%rdx),%edx + 6634d693: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d696: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d69a: 8b 09 mov (%rcx),%ecx + 6634d69c: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d69f: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634d6a3: 8b 09 mov (%rcx),%ecx + 6634d6a5: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634d6a8: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634d6ac: 8b 39 mov (%rcx),%edi + 6634d6ae: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634d6b2: c1 e7 04 shl $0x4,%edi + 6634d6b5: 01 d7 add %edx,%edi + 6634d6b7: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634d6bb: 8b 12 mov (%rdx),%edx + 6634d6bd: c1 e2 05 shl $0x5,%edx + 6634d6c0: 01 d7 add %edx,%edi + 6634d6c2: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634d6c6: 48 8b 40 48 mov 0x48(%rax),%rax + 6634d6ca: 8b 12 mov (%rdx),%edx + 6634d6cc: c1 e2 06 shl $0x6,%edx + 6634d6cf: 01 fa add %edi,%edx + 6634d6d1: 8b 39 mov (%rcx),%edi + 6634d6d3: c1 e7 07 shl $0x7,%edi + 6634d6d6: 01 fa add %edi,%edx + 6634d6d8: 8b 38 mov (%rax),%edi + 6634d6da: c1 e7 08 shl $0x8,%edi + 6634d6dd: 01 d7 add %edx,%edi + 6634d6df: 48 63 ef movslq %edi,%rbp + 6634d6e2: 48 c1 e5 02 shl $0x2,%rbp + 6634d6e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634d6ed: 00 00 00 + 6634d6f0: 85 ff test %edi,%edi + 6634d6f2: 78 05 js 6634d6f9 + 6634d6f4: 39 7b 38 cmp %edi,0x38(%rbx) + 6634d6f7: 7f 11 jg 6634d70a + 6634d6f9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d6ff: 4c 89 ea mov %r13,%rdx + 6634d702: 4c 89 e1 mov %r12,%rcx + 6634d705: e8 06 4b 00 00 callq 66352210 <_assert> + 6634d70a: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634d70e: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d712: 48 01 f2 add %rsi,%rdx + 6634d715: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634d718: 8b 0a mov (%rdx),%ecx + 6634d71a: 39 c8 cmp %ecx,%eax + 6634d71c: 74 69 je 6634d787 + 6634d71e: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634d722: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634d726: 41 89 c3 mov %eax,%r11d + 6634d729: 41 29 cb sub %ecx,%r11d + 6634d72c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634d730: 45 01 18 add %r11d,(%r8) + 6634d733: 89 02 mov %eax,(%rdx) + 6634d735: 31 d2 xor %edx,%edx + 6634d737: 41 8b 00 mov (%r8),%eax + 6634d73a: 85 c0 test %eax,%eax + 6634d73c: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634d740: 0f 9f c2 setg %dl + 6634d743: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634d747: 3b 10 cmp (%rax),%edx + 6634d749: 74 3c je 6634d787 + 6634d74b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d74f: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634d753: 8b 00 mov (%rax),%eax + 6634d755: 85 c0 test %eax,%eax + 6634d757: 75 2e jne 6634d787 + 6634d759: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d75d: 48 8b 0d cc a1 00 00 mov 0xa1cc(%rip),%rcx # 66357930 + 6634d764: 4c 8b 05 b5 a1 00 00 mov 0xa1b5(%rip),%r8 # 66357920 + 6634d76b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634d76f: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d773: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d779: 48 63 01 movslq (%rcx),%rax + 6634d77c: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d780: 44 89 09 mov %r9d,(%rcx) + 6634d783: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d787: 48 83 c6 04 add $0x4,%rsi + 6634d78b: 81 c7 00 02 00 00 add $0x200,%edi + 6634d791: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634d798: 48 83 fe 48 cmp $0x48,%rsi + 6634d79c: 0f 85 4e ff ff ff jne 6634d6f0 + 6634d7a2: 48 83 c4 28 add $0x28,%rsp + 6634d7a6: 5b pop %rbx + 6634d7a7: 5e pop %rsi + 6634d7a8: 5f pop %rdi + 6634d7a9: 5d pop %rbp + 6634d7aa: 41 5c pop %r12 + 6634d7ac: 41 5d pop %r13 + 6634d7ae: c3 retq + 6634d7af: 90 nop + 6634d7b0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634d7b4: 4c 8b 05 65 a1 00 00 mov 0xa165(%rip),%r8 # 66357920 + 6634d7bb: 48 8b 0d 6e a1 00 00 mov 0xa16e(%rip),%rcx # 66357930 + 6634d7c2: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634d7c6: 45 85 c9 test %r9d,%r9d + 6634d7c9: 74 58 je 6634d823 + 6634d7cb: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d7cf: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634d7d3: 45 29 0a sub %r9d,(%r10) + 6634d7d6: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634d7dd: 45 8b 22 mov (%r10),%r12d + 6634d7e0: 45 31 d2 xor %r10d,%r10d + 6634d7e3: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634d7e7: 45 85 e4 test %r12d,%r12d + 6634d7ea: 41 0f 9f c2 setg %r10b + 6634d7ee: 45 3b 11 cmp (%r9),%r10d + 6634d7f1: 74 30 je 6634d823 + 6634d7f3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d7f7: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634d7fb: 41 8b 29 mov (%r9),%ebp + 6634d7fe: 85 ed test %ebp,%ebp + 6634d800: 75 21 jne 6634d823 + 6634d802: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d806: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634d80a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d80e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d815: 4c 63 09 movslq (%rcx),%r9 + 6634d818: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d81c: 44 89 19 mov %r11d,(%rcx) + 6634d81f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d823: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634d827: 45 85 c9 test %r9d,%r9d + 6634d82a: 74 57 je 6634d883 + 6634d82c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d830: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634d834: 45 29 0a sub %r9d,(%r10) + 6634d837: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634d83e: 41 8b 3a mov (%r10),%edi + 6634d841: 45 31 d2 xor %r10d,%r10d + 6634d844: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634d848: 85 ff test %edi,%edi + 6634d84a: 41 0f 9f c2 setg %r10b + 6634d84e: 45 3b 11 cmp (%r9),%r10d + 6634d851: 74 30 je 6634d883 + 6634d853: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d857: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634d85b: 41 8b 31 mov (%r9),%esi + 6634d85e: 85 f6 test %esi,%esi + 6634d860: 75 21 jne 6634d883 + 6634d862: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d866: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634d86a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d86e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d875: 4c 63 09 movslq (%rcx),%r9 + 6634d878: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d87c: 44 89 19 mov %r11d,(%rcx) + 6634d87f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d883: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634d887: 45 85 c9 test %r9d,%r9d + 6634d88a: 74 59 je 6634d8e5 + 6634d88c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d890: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634d894: 45 29 0a sub %r9d,(%r10) + 6634d897: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634d89e: 45 8b 1a mov (%r10),%r11d + 6634d8a1: 45 31 d2 xor %r10d,%r10d + 6634d8a4: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634d8a8: 45 85 db test %r11d,%r11d + 6634d8ab: 41 0f 9f c2 setg %r10b + 6634d8af: 45 3b 11 cmp (%r9),%r10d + 6634d8b2: 74 31 je 6634d8e5 + 6634d8b4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d8b8: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634d8bc: 45 8b 11 mov (%r9),%r10d + 6634d8bf: 45 85 d2 test %r10d,%r10d + 6634d8c2: 75 21 jne 6634d8e5 + 6634d8c4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d8c8: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634d8cc: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d8d0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d8d7: 4c 63 09 movslq (%rcx),%r9 + 6634d8da: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d8de: 44 89 19 mov %r11d,(%rcx) + 6634d8e1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d8e5: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634d8e9: 45 85 c9 test %r9d,%r9d + 6634d8ec: 74 59 je 6634d947 + 6634d8ee: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d8f2: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634d8f6: 45 29 0a sub %r9d,(%r10) + 6634d8f9: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634d900: 45 8b 0a mov (%r10),%r9d + 6634d903: 45 31 d2 xor %r10d,%r10d + 6634d906: 45 85 c9 test %r9d,%r9d + 6634d909: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634d90d: 41 0f 9f c2 setg %r10b + 6634d911: 45 3b 11 cmp (%r9),%r10d + 6634d914: 74 31 je 6634d947 + 6634d916: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d91a: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634d91e: 45 8b 29 mov (%r9),%r13d + 6634d921: 45 85 ed test %r13d,%r13d + 6634d924: 75 21 jne 6634d947 + 6634d926: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d92a: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634d92e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d932: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d939: 4c 63 09 movslq (%rcx),%r9 + 6634d93c: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d940: 44 89 19 mov %r11d,(%rcx) + 6634d943: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d947: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634d94b: 45 85 c9 test %r9d,%r9d + 6634d94e: 74 58 je 6634d9a8 + 6634d950: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d954: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634d958: 45 29 0a sub %r9d,(%r10) + 6634d95b: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634d962: 45 8b 22 mov (%r10),%r12d + 6634d965: 45 31 d2 xor %r10d,%r10d + 6634d968: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634d96c: 45 85 e4 test %r12d,%r12d + 6634d96f: 41 0f 9f c2 setg %r10b + 6634d973: 45 3b 11 cmp (%r9),%r10d + 6634d976: 74 30 je 6634d9a8 + 6634d978: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d97c: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634d980: 41 8b 29 mov (%r9),%ebp + 6634d983: 85 ed test %ebp,%ebp + 6634d985: 75 21 jne 6634d9a8 + 6634d987: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d98b: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634d98f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d993: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d99a: 4c 63 09 movslq (%rcx),%r9 + 6634d99d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634d9a1: 44 89 19 mov %r11d,(%rcx) + 6634d9a4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634d9a8: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634d9ac: 45 85 c9 test %r9d,%r9d + 6634d9af: 74 57 je 6634da08 + 6634d9b1: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634d9b5: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634d9b9: 45 29 0a sub %r9d,(%r10) + 6634d9bc: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634d9c3: 41 8b 3a mov (%r10),%edi + 6634d9c6: 45 31 d2 xor %r10d,%r10d + 6634d9c9: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634d9cd: 85 ff test %edi,%edi + 6634d9cf: 41 0f 9f c2 setg %r10b + 6634d9d3: 45 3b 11 cmp (%r9),%r10d + 6634d9d6: 74 30 je 6634da08 + 6634d9d8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634d9dc: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634d9e0: 41 8b 31 mov (%r9),%esi + 6634d9e3: 85 f6 test %esi,%esi + 6634d9e5: 75 21 jne 6634da08 + 6634d9e7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634d9eb: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634d9ef: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634d9f3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634d9fa: 4c 63 09 movslq (%rcx),%r9 + 6634d9fd: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634da01: 44 89 19 mov %r11d,(%rcx) + 6634da04: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634da08: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634da0c: 45 85 c9 test %r9d,%r9d + 6634da0f: 74 65 je 6634da76 + 6634da11: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634da15: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634da1c: 45 29 0a sub %r9d,(%r10) + 6634da1f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634da26: 45 8b 1a mov (%r10),%r11d + 6634da29: 45 31 d2 xor %r10d,%r10d + 6634da2c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634da33: 45 85 db test %r11d,%r11d + 6634da36: 41 0f 9f c2 setg %r10b + 6634da3a: 45 3b 11 cmp (%r9),%r10d + 6634da3d: 74 37 je 6634da76 + 6634da3f: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634da43: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634da4a: 45 8b 11 mov (%r9),%r10d + 6634da4d: 45 85 d2 test %r10d,%r10d + 6634da50: 75 24 jne 6634da76 + 6634da52: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634da56: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634da5d: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634da61: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634da68: 4c 63 09 movslq (%rcx),%r9 + 6634da6b: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634da6f: 44 89 19 mov %r11d,(%rcx) + 6634da72: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634da76: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634da7a: 45 85 c9 test %r9d,%r9d + 6634da7d: 0f 84 1f fd ff ff je 6634d7a2 + 6634da83: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634da87: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax + 6634da8e: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634da95: 45 29 0a sub %r9d,(%r10) + 6634da98: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634da9f: 31 d2 xor %edx,%edx + 6634daa1: 45 8b 0a mov (%r10),%r9d + 6634daa4: 45 85 c9 test %r9d,%r9d + 6634daa7: 0f 9f c2 setg %dl + 6634daaa: 3b 10 cmp (%rax),%edx + 6634daac: 0f 84 f0 fc ff ff je 6634d7a2 + 6634dab2: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634dab6: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax + 6634dabd: 8b 00 mov (%rax),%eax + 6634dabf: 85 c0 test %eax,%eax + 6634dac1: 0f 85 db fc ff ff jne 6634d7a2 + 6634dac7: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634dacb: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 6634dad2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634dad6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634dadc: 48 63 01 movslq (%rcx),%rax + 6634dadf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634dae3: 44 89 09 mov %r9d,(%rcx) + 6634dae6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634daea: 48 83 c4 28 add $0x28,%rsp + 6634daee: 5b pop %rbx + 6634daef: 5e pop %rsi + 6634daf0: 5f pop %rdi + 6634daf1: 5d pop %rbp + 6634daf2: 41 5c pop %r12 + 6634daf4: 41 5d pop %r13 + 6634daf6: c3 retq + 6634daf7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634dafe: 00 00 + +000000006634db00 : + 6634db00: 41 55 push %r13 + 6634db02: 41 54 push %r12 + 6634db04: 55 push %rbp + 6634db05: 57 push %rdi + 6634db06: 56 push %rsi + 6634db07: 53 push %rbx + 6634db08: 48 83 ec 28 sub $0x28,%rsp + 6634db0c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634db10: 48 8b 50 78 mov 0x78(%rax),%rdx + 6634db14: 48 89 cb mov %rcx,%rbx + 6634db17: 8b 12 mov (%rdx),%edx + 6634db19: 85 d2 test %edx,%edx + 6634db1b: 0f 84 0f 01 00 00 je 6634dc30 + 6634db21: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634db25: be 1c 00 00 00 mov $0x1c,%esi + 6634db2a: 4c 8d 2d cf 64 00 00 lea 0x64cf(%rip),%r13 # 66354000 <.rdata> + 6634db31: 4c 8d 25 d8 64 00 00 lea 0x64d8(%rip),%r12 # 66354010 <.rdata+0x10> + 6634db38: 8b 0a mov (%rdx),%ecx + 6634db3a: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634db3e: 8b 12 mov (%rdx),%edx + 6634db40: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634db43: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634db47: 8b 09 mov (%rcx),%ecx + 6634db49: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634db4c: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634db50: 8b 09 mov (%rcx),%ecx + 6634db52: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634db55: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634db59: 48 8b 40 30 mov 0x30(%rax),%rax + 6634db5d: 8b 39 mov (%rcx),%edi + 6634db5f: c1 e7 04 shl $0x4,%edi + 6634db62: 01 fa add %edi,%edx + 6634db64: 8b 38 mov (%rax),%edi + 6634db66: c1 e7 05 shl $0x5,%edi + 6634db69: 01 d7 add %edx,%edi + 6634db6b: 48 63 ef movslq %edi,%rbp + 6634db6e: 48 c1 e5 02 shl $0x2,%rbp + 6634db72: 85 ff test %edi,%edi + 6634db74: 78 05 js 6634db7b + 6634db76: 39 7b 38 cmp %edi,0x38(%rbx) + 6634db79: 7f 11 jg 6634db8c + 6634db7b: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634db81: 4c 89 ea mov %r13,%rdx + 6634db84: 4c 89 e1 mov %r12,%rcx + 6634db87: e8 84 46 00 00 callq 66352210 <_assert> + 6634db8c: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634db90: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634db94: 48 01 f2 add %rsi,%rdx + 6634db97: 8b 04 28 mov (%rax,%rbp,1),%eax + 6634db9a: 8b 0a mov (%rdx),%ecx + 6634db9c: 39 c8 cmp %ecx,%eax + 6634db9e: 74 69 je 6634dc09 + 6634dba0: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634dba4: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 + 6634dba8: 41 89 c3 mov %eax,%r11d + 6634dbab: 41 29 cb sub %ecx,%r11d + 6634dbae: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 + 6634dbb2: 45 01 18 add %r11d,(%r8) + 6634dbb5: 89 02 mov %eax,(%rdx) + 6634dbb7: 31 d2 xor %edx,%edx + 6634dbb9: 41 8b 00 mov (%r8),%eax + 6634dbbc: 85 c0 test %eax,%eax + 6634dbbe: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634dbc2: 0f 9f c2 setg %dl + 6634dbc5: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634dbc9: 3b 10 cmp (%rax),%edx + 6634dbcb: 74 3c je 6634dc09 + 6634dbcd: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634dbd1: 48 8b 04 70 mov (%rax,%rsi,2),%rax + 6634dbd5: 8b 00 mov (%rax),%eax + 6634dbd7: 85 c0 test %eax,%eax + 6634dbd9: 75 2e jne 6634dc09 + 6634dbdb: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634dbdf: 48 8b 0d 4a 9d 00 00 mov 0x9d4a(%rip),%rcx # 66357930 + 6634dbe6: 4c 8b 05 33 9d 00 00 mov 0x9d33(%rip),%r8 # 66357920 + 6634dbed: 4a 8b 14 08 mov (%rax,%r9,1),%rdx + 6634dbf1: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634dbf5: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634dbfb: 48 63 01 movslq (%rcx),%rax + 6634dbfe: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634dc02: 44 89 09 mov %r9d,(%rcx) + 6634dc05: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634dc09: 48 83 c6 04 add $0x4,%rsi + 6634dc0d: 83 c7 40 add $0x40,%edi + 6634dc10: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634dc17: 48 83 fe 3c cmp $0x3c,%rsi + 6634dc1b: 0f 85 51 ff ff ff jne 6634db72 + 6634dc21: 48 83 c4 28 add $0x28,%rsp + 6634dc25: 5b pop %rbx + 6634dc26: 5e pop %rsi + 6634dc27: 5f pop %rdi + 6634dc28: 5d pop %rbp + 6634dc29: 41 5c pop %r12 + 6634dc2b: 41 5d pop %r13 + 6634dc2d: c3 retq + 6634dc2e: 66 90 xchg %ax,%ax + 6634dc30: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634dc34: 4c 8b 05 e5 9c 00 00 mov 0x9ce5(%rip),%r8 # 66357920 + 6634dc3b: 48 8b 0d ee 9c 00 00 mov 0x9cee(%rip),%rcx # 66357930 + 6634dc42: 44 8b 4a 1c mov 0x1c(%rdx),%r9d + 6634dc46: 45 85 c9 test %r9d,%r9d + 6634dc49: 74 58 je 6634dca3 + 6634dc4b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634dc4f: 4d 8b 52 38 mov 0x38(%r10),%r10 + 6634dc53: 45 29 0a sub %r9d,(%r10) + 6634dc56: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634dc5d: 45 8b 22 mov (%r10),%r12d + 6634dc60: 45 31 d2 xor %r10d,%r10d + 6634dc63: 4c 8b 48 38 mov 0x38(%rax),%r9 + 6634dc67: 45 85 e4 test %r12d,%r12d + 6634dc6a: 41 0f 9f c2 setg %r10b + 6634dc6e: 45 3b 11 cmp (%r9),%r10d + 6634dc71: 74 30 je 6634dca3 + 6634dc73: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634dc77: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634dc7b: 41 8b 29 mov (%r9),%ebp + 6634dc7e: 85 ed test %ebp,%ebp + 6634dc80: 75 21 jne 6634dca3 + 6634dc82: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634dc86: 4d 8b 51 38 mov 0x38(%r9),%r10 + 6634dc8a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634dc8e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634dc95: 4c 63 09 movslq (%rcx),%r9 + 6634dc98: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634dc9c: 44 89 19 mov %r11d,(%rcx) + 6634dc9f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634dca3: 44 8b 4a 20 mov 0x20(%rdx),%r9d + 6634dca7: 45 85 c9 test %r9d,%r9d + 6634dcaa: 74 57 je 6634dd03 + 6634dcac: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634dcb0: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634dcb4: 45 29 0a sub %r9d,(%r10) + 6634dcb7: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634dcbe: 41 8b 3a mov (%r10),%edi + 6634dcc1: 45 31 d2 xor %r10d,%r10d + 6634dcc4: 4c 8b 48 40 mov 0x40(%rax),%r9 + 6634dcc8: 85 ff test %edi,%edi + 6634dcca: 41 0f 9f c2 setg %r10b + 6634dcce: 45 3b 11 cmp (%r9),%r10d + 6634dcd1: 74 30 je 6634dd03 + 6634dcd3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634dcd7: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634dcdb: 41 8b 31 mov (%r9),%esi + 6634dcde: 85 f6 test %esi,%esi + 6634dce0: 75 21 jne 6634dd03 + 6634dce2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634dce6: 4d 8b 51 40 mov 0x40(%r9),%r10 + 6634dcea: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634dcee: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634dcf5: 4c 63 09 movslq (%rcx),%r9 + 6634dcf8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634dcfc: 44 89 19 mov %r11d,(%rcx) + 6634dcff: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634dd03: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 6634dd07: 45 85 c9 test %r9d,%r9d + 6634dd0a: 74 59 je 6634dd65 + 6634dd0c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634dd10: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634dd14: 45 29 0a sub %r9d,(%r10) + 6634dd17: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634dd1e: 45 8b 1a mov (%r10),%r11d + 6634dd21: 45 31 d2 xor %r10d,%r10d + 6634dd24: 4c 8b 48 48 mov 0x48(%rax),%r9 + 6634dd28: 45 85 db test %r11d,%r11d + 6634dd2b: 41 0f 9f c2 setg %r10b + 6634dd2f: 45 3b 11 cmp (%r9),%r10d + 6634dd32: 74 31 je 6634dd65 + 6634dd34: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634dd38: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634dd3c: 45 8b 11 mov (%r9),%r10d + 6634dd3f: 45 85 d2 test %r10d,%r10d + 6634dd42: 75 21 jne 6634dd65 + 6634dd44: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634dd48: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634dd4c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634dd50: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634dd57: 4c 63 09 movslq (%rcx),%r9 + 6634dd5a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634dd5e: 44 89 19 mov %r11d,(%rcx) + 6634dd61: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634dd65: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634dd69: 45 85 c9 test %r9d,%r9d + 6634dd6c: 74 59 je 6634ddc7 + 6634dd6e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634dd72: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634dd76: 45 29 0a sub %r9d,(%r10) + 6634dd79: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634dd80: 45 8b 0a mov (%r10),%r9d + 6634dd83: 45 31 d2 xor %r10d,%r10d + 6634dd86: 45 85 c9 test %r9d,%r9d + 6634dd89: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634dd8d: 41 0f 9f c2 setg %r10b + 6634dd91: 45 3b 11 cmp (%r9),%r10d + 6634dd94: 74 31 je 6634ddc7 + 6634dd96: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634dd9a: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634dd9e: 45 8b 29 mov (%r9),%r13d + 6634dda1: 45 85 ed test %r13d,%r13d + 6634dda4: 75 21 jne 6634ddc7 + 6634dda6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634ddaa: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634ddae: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634ddb2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634ddb9: 4c 63 09 movslq (%rcx),%r9 + 6634ddbc: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634ddc0: 44 89 19 mov %r11d,(%rcx) + 6634ddc3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634ddc7: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634ddcb: 45 85 c9 test %r9d,%r9d + 6634ddce: 74 58 je 6634de28 + 6634ddd0: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634ddd4: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634ddd8: 45 29 0a sub %r9d,(%r10) + 6634dddb: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634dde2: 45 8b 22 mov (%r10),%r12d + 6634dde5: 45 31 d2 xor %r10d,%r10d + 6634dde8: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634ddec: 45 85 e4 test %r12d,%r12d + 6634ddef: 41 0f 9f c2 setg %r10b + 6634ddf3: 45 3b 11 cmp (%r9),%r10d + 6634ddf6: 74 30 je 6634de28 + 6634ddf8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634ddfc: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634de00: 41 8b 29 mov (%r9),%ebp + 6634de03: 85 ed test %ebp,%ebp + 6634de05: 75 21 jne 6634de28 + 6634de07: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634de0b: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634de0f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634de13: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634de1a: 4c 63 09 movslq (%rcx),%r9 + 6634de1d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634de21: 44 89 19 mov %r11d,(%rcx) + 6634de24: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634de28: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634de2c: 45 85 c9 test %r9d,%r9d + 6634de2f: 74 57 je 6634de88 + 6634de31: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634de35: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634de39: 45 29 0a sub %r9d,(%r10) + 6634de3c: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634de43: 41 8b 3a mov (%r10),%edi + 6634de46: 45 31 d2 xor %r10d,%r10d + 6634de49: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634de4d: 85 ff test %edi,%edi + 6634de4f: 41 0f 9f c2 setg %r10b + 6634de53: 45 3b 11 cmp (%r9),%r10d + 6634de56: 74 30 je 6634de88 + 6634de58: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634de5c: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634de60: 41 8b 31 mov (%r9),%esi + 6634de63: 85 f6 test %esi,%esi + 6634de65: 75 21 jne 6634de88 + 6634de67: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634de6b: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634de6f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634de73: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634de7a: 4c 63 09 movslq (%rcx),%r9 + 6634de7d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634de81: 44 89 19 mov %r11d,(%rcx) + 6634de84: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634de88: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634de8c: 45 85 c9 test %r9d,%r9d + 6634de8f: 74 59 je 6634deea + 6634de91: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634de95: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634de99: 45 29 0a sub %r9d,(%r10) + 6634de9c: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634dea3: 45 8b 1a mov (%r10),%r11d + 6634dea6: 45 31 d2 xor %r10d,%r10d + 6634dea9: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634dead: 45 85 db test %r11d,%r11d + 6634deb0: 41 0f 9f c2 setg %r10b + 6634deb4: 45 3b 11 cmp (%r9),%r10d + 6634deb7: 74 31 je 6634deea + 6634deb9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634debd: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634dec1: 45 8b 11 mov (%r9),%r10d + 6634dec4: 45 85 d2 test %r10d,%r10d + 6634dec7: 75 21 jne 6634deea + 6634dec9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634decd: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634ded1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634ded5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634dedc: 4c 63 09 movslq (%rcx),%r9 + 6634dedf: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634dee3: 44 89 19 mov %r11d,(%rcx) + 6634dee6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634deea: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634deee: 45 85 c9 test %r9d,%r9d + 6634def1: 0f 84 2a fd ff ff je 6634dc21 + 6634def7: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634defb: 48 8b 40 70 mov 0x70(%rax),%rax + 6634deff: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634df03: 45 29 0a sub %r9d,(%r10) + 6634df06: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634df0d: 31 d2 xor %edx,%edx + 6634df0f: 45 8b 0a mov (%r10),%r9d + 6634df12: 45 85 c9 test %r9d,%r9d + 6634df15: 0f 9f c2 setg %dl + 6634df18: 3b 10 cmp (%rax),%edx + 6634df1a: 0f 84 01 fd ff ff je 6634dc21 + 6634df20: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634df24: 48 8b 40 70 mov 0x70(%rax),%rax + 6634df28: 8b 00 mov (%rax),%eax + 6634df2a: 85 c0 test %eax,%eax + 6634df2c: 0f 85 ef fc ff ff jne 6634dc21 + 6634df32: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634df36: 48 8b 50 70 mov 0x70(%rax),%rdx + 6634df3a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634df3e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634df44: 48 63 01 movslq (%rcx),%rax + 6634df47: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634df4b: 44 89 09 mov %r9d,(%rcx) + 6634df4e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634df52: 48 83 c4 28 add $0x28,%rsp + 6634df56: 5b pop %rbx + 6634df57: 5e pop %rsi + 6634df58: 5f pop %rdi + 6634df59: 5d pop %rbp + 6634df5a: 41 5c pop %r12 + 6634df5c: 41 5d pop %r13 + 6634df5e: c3 retq + 6634df5f: 90 nop + +000000006634df60 : + 6634df60: 57 push %rdi + 6634df61: 56 push %rsi + 6634df62: 53 push %rbx + 6634df63: 48 83 ec 20 sub $0x20,%rsp + 6634df67: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634df6b: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634df6f: 48 89 cb mov %rcx,%rbx + 6634df72: 8b 32 mov (%rdx),%esi + 6634df74: 85 f6 test %esi,%esi + 6634df76: 0f 84 14 02 00 00 je 6634e190 + 6634df7c: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634df80: 8b 0a mov (%rdx),%ecx + 6634df82: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634df86: 8b 12 mov (%rdx),%edx + 6634df88: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634df8b: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634df8f: 8b 09 mov (%rcx),%ecx + 6634df91: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634df94: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634df98: 8b 09 mov (%rcx),%ecx + 6634df9a: 8d 34 ca lea (%rdx,%rcx,8),%esi + 6634df9d: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634dfa1: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634dfa5: 8b 12 mov (%rdx),%edx + 6634dfa7: c1 e2 04 shl $0x4,%edx + 6634dfaa: 01 d6 add %edx,%esi + 6634dfac: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634dfb0: 48 8b 40 40 mov 0x40(%rax),%rax + 6634dfb4: 8b 12 mov (%rdx),%edx + 6634dfb6: c1 e2 05 shl $0x5,%edx + 6634dfb9: 01 f2 add %esi,%edx + 6634dfbb: 8b 31 mov (%rcx),%esi + 6634dfbd: c1 e6 06 shl $0x6,%esi + 6634dfc0: 01 f2 add %esi,%edx + 6634dfc2: 8b 30 mov (%rax),%esi + 6634dfc4: c1 e6 07 shl $0x7,%esi + 6634dfc7: 01 d6 add %edx,%esi + 6634dfc9: 0f 88 71 03 00 00 js 6634e340 + 6634dfcf: 3b 73 38 cmp 0x38(%rbx),%esi + 6634dfd2: 0f 8d 68 03 00 00 jge 6634e340 + 6634dfd8: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634dfdc: 48 63 c6 movslq %esi,%rax + 6634dfdf: 8b 0c 82 mov (%rdx,%rax,4),%ecx + 6634dfe2: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634dfe6: 44 8b 40 24 mov 0x24(%rax),%r8d + 6634dfea: 41 39 c8 cmp %ecx,%r8d + 6634dfed: 74 3f je 6634e02e + 6634dfef: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634dff3: 89 cf mov %ecx,%edi + 6634dff5: 44 29 c7 sub %r8d,%edi + 6634dff8: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634dffc: 41 01 39 add %edi,(%r9) + 6634dfff: 89 48 24 mov %ecx,0x24(%rax) + 6634e002: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e006: 45 8b 19 mov (%r9),%r11d + 6634e009: 4c 8b 41 48 mov 0x48(%rcx),%r8 + 6634e00d: 31 c9 xor %ecx,%ecx + 6634e00f: 45 85 db test %r11d,%r11d + 6634e012: 0f 9f c1 setg %cl + 6634e015: 41 39 08 cmp %ecx,(%r8) + 6634e018: 74 14 je 6634e02e + 6634e01a: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e01e: 48 8b 49 48 mov 0x48(%rcx),%rcx + 6634e022: 44 8b 11 mov (%rcx),%r10d + 6634e025: 45 85 d2 test %r10d,%r10d + 6634e028: 0f 84 32 04 00 00 je 6634e460 + 6634e02e: 89 f7 mov %esi,%edi + 6634e030: 81 c7 00 01 00 00 add $0x100,%edi + 6634e036: 0f 88 24 03 00 00 js 6634e360 + 6634e03c: 39 7b 38 cmp %edi,0x38(%rbx) + 6634e03f: 0f 8e 1b 03 00 00 jle 6634e360 + 6634e045: 48 63 ff movslq %edi,%rdi + 6634e048: 44 8b 40 28 mov 0x28(%rax),%r8d + 6634e04c: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634e04f: 44 39 c1 cmp %r8d,%ecx + 6634e052: 74 41 je 6634e095 + 6634e054: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e058: 89 cf mov %ecx,%edi + 6634e05a: 44 29 c7 sub %r8d,%edi + 6634e05d: 45 31 c0 xor %r8d,%r8d + 6634e060: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634e064: 41 01 39 add %edi,(%r9) + 6634e067: 89 48 28 mov %ecx,0x28(%rax) + 6634e06a: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e06e: 45 8b 09 mov (%r9),%r9d + 6634e071: 48 8b 49 50 mov 0x50(%rcx),%rcx + 6634e075: 45 85 c9 test %r9d,%r9d + 6634e078: 41 0f 9f c0 setg %r8b + 6634e07c: 44 3b 01 cmp (%rcx),%r8d + 6634e07f: 74 14 je 6634e095 + 6634e081: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e085: 48 8b 49 50 mov 0x50(%rcx),%rcx + 6634e089: 44 8b 01 mov (%rcx),%r8d + 6634e08c: 45 85 c0 test %r8d,%r8d + 6634e08f: 0f 84 8e 03 00 00 je 6634e423 + 6634e095: 89 f7 mov %esi,%edi + 6634e097: 81 c7 00 02 00 00 add $0x200,%edi + 6634e09d: 0f 88 ed 02 00 00 js 6634e390 + 6634e0a3: 3b 7b 38 cmp 0x38(%rbx),%edi + 6634e0a6: 0f 8d e4 02 00 00 jge 6634e390 + 6634e0ac: 48 63 ff movslq %edi,%rdi + 6634e0af: 44 8b 40 2c mov 0x2c(%rax),%r8d + 6634e0b3: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634e0b6: 44 39 c1 cmp %r8d,%ecx + 6634e0b9: 74 3e je 6634e0f9 + 6634e0bb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e0bf: 89 cf mov %ecx,%edi + 6634e0c1: 44 29 c7 sub %r8d,%edi + 6634e0c4: 45 31 c0 xor %r8d,%r8d + 6634e0c7: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634e0cb: 41 01 39 add %edi,(%r9) + 6634e0ce: 89 48 2c mov %ecx,0x2c(%rax) + 6634e0d1: 41 8b 09 mov (%r9),%ecx + 6634e0d4: 85 c9 test %ecx,%ecx + 6634e0d6: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e0da: 41 0f 9f c0 setg %r8b + 6634e0de: 48 8b 49 58 mov 0x58(%rcx),%rcx + 6634e0e2: 44 3b 01 cmp (%rcx),%r8d + 6634e0e5: 74 12 je 6634e0f9 + 6634e0e7: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e0eb: 48 8b 49 58 mov 0x58(%rcx),%rcx + 6634e0ef: 8b 39 mov (%rcx),%edi + 6634e0f1: 85 ff test %edi,%edi + 6634e0f3: 0f 84 f7 02 00 00 je 6634e3f0 + 6634e0f9: 81 c6 00 03 00 00 add $0x300,%esi + 6634e0ff: 0f 88 bb 02 00 00 js 6634e3c0 + 6634e105: 3b 73 38 cmp 0x38(%rbx),%esi + 6634e108: 0f 8d b2 02 00 00 jge 6634e3c0 + 6634e10e: 48 63 f6 movslq %esi,%rsi + 6634e111: 8b 48 30 mov 0x30(%rax),%ecx + 6634e114: 8b 14 b2 mov (%rdx,%rsi,4),%edx + 6634e117: 39 ca cmp %ecx,%edx + 6634e119: 74 67 je 6634e182 + 6634e11b: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634e11f: 89 d7 mov %edx,%edi + 6634e121: 29 cf sub %ecx,%edi + 6634e123: 4d 8b 40 60 mov 0x60(%r8),%r8 + 6634e127: 41 01 38 add %edi,(%r8) + 6634e12a: 89 50 30 mov %edx,0x30(%rax) + 6634e12d: 31 d2 xor %edx,%edx + 6634e12f: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634e133: 45 8b 18 mov (%r8),%r11d + 6634e136: 48 8b 40 60 mov 0x60(%rax),%rax + 6634e13a: 45 85 db test %r11d,%r11d + 6634e13d: 0f 9f c2 setg %dl + 6634e140: 3b 10 cmp (%rax),%edx + 6634e142: 74 3e je 6634e182 + 6634e144: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634e148: 48 8b 40 60 mov 0x60(%rax),%rax + 6634e14c: 44 8b 10 mov (%rax),%r10d + 6634e14f: 45 85 d2 test %r10d,%r10d + 6634e152: 75 2e jne 6634e182 + 6634e154: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634e158: 48 8b 0d d1 97 00 00 mov 0x97d1(%rip),%rcx # 66357930 + 6634e15f: 4c 8b 05 ba 97 00 00 mov 0x97ba(%rip),%r8 # 66357920 + 6634e166: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634e16a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634e16e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634e174: 48 63 01 movslq (%rcx),%rax + 6634e177: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634e17b: 44 89 09 mov %r9d,(%rcx) + 6634e17e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634e182: 48 83 c4 20 add $0x20,%rsp + 6634e186: 5b pop %rbx + 6634e187: 5e pop %rsi + 6634e188: 5f pop %rdi + 6634e189: c3 retq + 6634e18a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 6634e190: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e194: 4c 8b 15 85 97 00 00 mov 0x9785(%rip),%r10 # 66357920 + 6634e19b: 48 8b 0d 8e 97 00 00 mov 0x978e(%rip),%rcx # 66357930 + 6634e1a2: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634e1a6: 45 85 c0 test %r8d,%r8d + 6634e1a9: 74 5a je 6634e205 + 6634e1ab: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e1af: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634e1b3: 45 29 01 sub %r8d,(%r9) + 6634e1b6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634e1bd: 45 8b 09 mov (%r9),%r9d + 6634e1c0: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634e1c4: 45 85 c9 test %r9d,%r9d + 6634e1c7: 41 0f 9f c1 setg %r9b + 6634e1cb: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e1cf: 45 3b 08 cmp (%r8),%r9d + 6634e1d2: 74 31 je 6634e205 + 6634e1d4: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e1d8: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634e1dc: 45 8b 00 mov (%r8),%r8d + 6634e1df: 45 85 c0 test %r8d,%r8d + 6634e1e2: 75 21 jne 6634e205 + 6634e1e4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e1e8: 4d 8b 48 48 mov 0x48(%r8),%r9 + 6634e1ec: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e1f0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e1f7: 4c 63 01 movslq (%rcx),%r8 + 6634e1fa: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e1fe: 44 89 19 mov %r11d,(%rcx) + 6634e201: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e205: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634e209: 45 85 c0 test %r8d,%r8d + 6634e20c: 74 57 je 6634e265 + 6634e20e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e212: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634e216: 45 29 01 sub %r8d,(%r9) + 6634e219: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634e220: 41 8b 39 mov (%r9),%edi + 6634e223: 45 31 c9 xor %r9d,%r9d + 6634e226: 4c 8b 40 50 mov 0x50(%rax),%r8 + 6634e22a: 85 ff test %edi,%edi + 6634e22c: 41 0f 9f c1 setg %r9b + 6634e230: 45 3b 08 cmp (%r8),%r9d + 6634e233: 74 30 je 6634e265 + 6634e235: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e239: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634e23d: 41 8b 30 mov (%r8),%esi + 6634e240: 85 f6 test %esi,%esi + 6634e242: 75 21 jne 6634e265 + 6634e244: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e248: 4d 8b 48 50 mov 0x50(%r8),%r9 + 6634e24c: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e250: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e257: 4c 63 01 movslq (%rcx),%r8 + 6634e25a: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e25e: 44 89 19 mov %r11d,(%rcx) + 6634e261: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e265: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 6634e269: 45 85 c0 test %r8d,%r8d + 6634e26c: 74 59 je 6634e2c7 + 6634e26e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e272: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634e276: 45 29 01 sub %r8d,(%r9) + 6634e279: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634e280: 45 8b 19 mov (%r9),%r11d + 6634e283: 45 31 c9 xor %r9d,%r9d + 6634e286: 4c 8b 40 58 mov 0x58(%rax),%r8 + 6634e28a: 45 85 db test %r11d,%r11d + 6634e28d: 41 0f 9f c1 setg %r9b + 6634e291: 45 3b 08 cmp (%r8),%r9d + 6634e294: 74 31 je 6634e2c7 + 6634e296: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e29a: 4d 8b 40 58 mov 0x58(%r8),%r8 + 6634e29e: 45 8b 08 mov (%r8),%r9d + 6634e2a1: 45 85 c9 test %r9d,%r9d + 6634e2a4: 75 21 jne 6634e2c7 + 6634e2a6: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e2aa: 4d 8b 48 58 mov 0x58(%r8),%r9 + 6634e2ae: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e2b2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e2b9: 4c 63 01 movslq (%rcx),%r8 + 6634e2bc: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e2c0: 44 89 19 mov %r11d,(%rcx) + 6634e2c3: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e2c7: 44 8b 42 30 mov 0x30(%rdx),%r8d + 6634e2cb: 45 85 c0 test %r8d,%r8d + 6634e2ce: 0f 84 ae fe ff ff je 6634e182 + 6634e2d4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e2d8: 48 8b 40 60 mov 0x60(%rax),%rax + 6634e2dc: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634e2e0: 45 29 01 sub %r8d,(%r9) + 6634e2e3: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634e2ea: 31 d2 xor %edx,%edx + 6634e2ec: 45 8b 01 mov (%r9),%r8d + 6634e2ef: 45 85 c0 test %r8d,%r8d + 6634e2f2: 0f 9f c2 setg %dl + 6634e2f5: 3b 10 cmp (%rax),%edx + 6634e2f7: 0f 84 85 fe ff ff je 6634e182 + 6634e2fd: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634e301: 48 8b 40 60 mov 0x60(%rax),%rax + 6634e305: 8b 00 mov (%rax),%eax + 6634e307: 85 c0 test %eax,%eax + 6634e309: 0f 85 73 fe ff ff jne 6634e182 + 6634e30f: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634e313: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634e317: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634e31b: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634e321: 48 63 01 movslq (%rcx),%rax + 6634e324: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634e328: 44 89 01 mov %r8d,(%rcx) + 6634e32b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634e32f: 48 83 c4 20 add $0x20,%rsp + 6634e333: 5b pop %rbx + 6634e334: 5e pop %rsi + 6634e335: 5f pop %rdi + 6634e336: c3 retq + 6634e337: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e33e: 00 00 + 6634e340: 48 8d 15 b9 5c 00 00 lea 0x5cb9(%rip),%rdx # 66354000 <.rdata> + 6634e347: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e34d: 48 8d 0d bc 5c 00 00 lea 0x5cbc(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e354: e8 b7 3e 00 00 callq 66352210 <_assert> + 6634e359: e9 7a fc ff ff jmpq 6634dfd8 + 6634e35e: 66 90 xchg %ax,%ax + 6634e360: 48 8d 15 99 5c 00 00 lea 0x5c99(%rip),%rdx # 66354000 <.rdata> + 6634e367: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e36d: 48 8d 0d 9c 5c 00 00 lea 0x5c9c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e374: e8 97 3e 00 00 callq 66352210 <_assert> + 6634e379: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e37d: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e381: e9 bf fc ff ff jmpq 6634e045 + 6634e386: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e38d: 00 00 00 + 6634e390: 48 8d 15 69 5c 00 00 lea 0x5c69(%rip),%rdx # 66354000 <.rdata> + 6634e397: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e39d: 48 8d 0d 6c 5c 00 00 lea 0x5c6c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e3a4: e8 67 3e 00 00 callq 66352210 <_assert> + 6634e3a9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e3ad: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e3b1: e9 f6 fc ff ff jmpq 6634e0ac + 6634e3b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e3bd: 00 00 00 + 6634e3c0: 48 8d 15 39 5c 00 00 lea 0x5c39(%rip),%rdx # 66354000 <.rdata> + 6634e3c7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e3cd: 48 8d 0d 3c 5c 00 00 lea 0x5c3c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e3d4: e8 37 3e 00 00 callq 66352210 <_assert> + 6634e3d9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e3dd: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e3e1: e9 28 fd ff ff jmpq 6634e10e + 6634e3e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e3ed: 00 00 00 + 6634e3f0: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e3f4: 4c 8b 0d 35 95 00 00 mov 0x9535(%rip),%r9 # 66357930 + 6634e3fb: 4c 8b 15 1e 95 00 00 mov 0x951e(%rip),%r10 # 66357920 + 6634e402: 4c 8b 41 58 mov 0x58(%rcx),%r8 + 6634e406: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e40a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e410: 49 63 09 movslq (%r9),%rcx + 6634e413: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e417: 45 89 19 mov %r11d,(%r9) + 6634e41a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e41e: e9 d6 fc ff ff jmpq 6634e0f9 + 6634e423: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e427: 4c 8b 0d 02 95 00 00 mov 0x9502(%rip),%r9 # 66357930 + 6634e42e: 4c 8b 15 eb 94 00 00 mov 0x94eb(%rip),%r10 # 66357920 + 6634e435: 4c 8b 41 50 mov 0x50(%rcx),%r8 + 6634e439: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e43d: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e443: 49 63 09 movslq (%r9),%rcx + 6634e446: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e44a: 45 89 19 mov %r11d,(%r9) + 6634e44d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e451: e9 3f fc ff ff jmpq 6634e095 + 6634e456: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e45d: 00 00 00 + 6634e460: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e464: 4c 8b 0d c5 94 00 00 mov 0x94c5(%rip),%r9 # 66357930 + 6634e46b: 4c 8b 15 ae 94 00 00 mov 0x94ae(%rip),%r10 # 66357920 + 6634e472: 4c 8b 41 48 mov 0x48(%rcx),%r8 + 6634e476: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e47a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e480: 49 63 09 movslq (%r9),%rcx + 6634e483: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e487: 45 89 19 mov %r11d,(%r9) + 6634e48a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e48e: e9 9b fb ff ff jmpq 6634e02e + 6634e493: 0f 1f 00 nopl (%rax) + 6634e496: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e49d: 00 00 00 + +000000006634e4a0 : + 6634e4a0: 57 push %rdi + 6634e4a1: 56 push %rsi + 6634e4a2: 53 push %rbx + 6634e4a3: 48 83 ec 20 sub $0x20,%rsp + 6634e4a7: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634e4ab: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634e4af: 48 89 cb mov %rcx,%rbx + 6634e4b2: 8b 32 mov (%rdx),%esi + 6634e4b4: 85 f6 test %esi,%esi + 6634e4b6: 0f 84 e4 01 00 00 je 6634e6a0 + 6634e4bc: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634e4c0: 8b 0a mov (%rdx),%ecx + 6634e4c2: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634e4c6: 8b 12 mov (%rdx),%edx + 6634e4c8: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634e4cb: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634e4cf: 48 8b 40 20 mov 0x20(%rax),%rax + 6634e4d3: 8b 09 mov (%rcx),%ecx + 6634e4d5: 8b 00 mov (%rax),%eax + 6634e4d7: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634e4da: 8d 34 c2 lea (%rdx,%rax,8),%esi + 6634e4dd: 85 f6 test %esi,%esi + 6634e4df: 0f 88 6b 03 00 00 js 6634e850 + 6634e4e5: 3b 73 38 cmp 0x38(%rbx),%esi + 6634e4e8: 0f 8d 62 03 00 00 jge 6634e850 + 6634e4ee: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e4f2: 48 63 c6 movslq %esi,%rax + 6634e4f5: 8b 0c 82 mov (%rdx,%rax,4),%ecx + 6634e4f8: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e4fc: 44 8b 40 14 mov 0x14(%rax),%r8d + 6634e500: 41 39 c8 cmp %ecx,%r8d + 6634e503: 74 3f je 6634e544 + 6634e505: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e509: 89 cf mov %ecx,%edi + 6634e50b: 44 29 c7 sub %r8d,%edi + 6634e50e: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634e512: 41 01 39 add %edi,(%r9) + 6634e515: 89 48 14 mov %ecx,0x14(%rax) + 6634e518: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e51c: 45 8b 19 mov (%r9),%r11d + 6634e51f: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e523: 31 c9 xor %ecx,%ecx + 6634e525: 45 85 db test %r11d,%r11d + 6634e528: 0f 9f c1 setg %cl + 6634e52b: 41 39 08 cmp %ecx,(%r8) + 6634e52e: 74 14 je 6634e544 + 6634e530: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e534: 48 8b 49 28 mov 0x28(%rcx),%rcx + 6634e538: 44 8b 11 mov (%rcx),%r10d + 6634e53b: 45 85 d2 test %r10d,%r10d + 6634e53e: 0f 84 2c 04 00 00 je 6634e970 + 6634e544: 89 f7 mov %esi,%edi + 6634e546: 83 c7 10 add $0x10,%edi + 6634e549: 0f 88 21 03 00 00 js 6634e870 + 6634e54f: 39 7b 38 cmp %edi,0x38(%rbx) + 6634e552: 0f 8e 18 03 00 00 jle 6634e870 + 6634e558: 48 63 ff movslq %edi,%rdi + 6634e55b: 44 8b 40 18 mov 0x18(%rax),%r8d + 6634e55f: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634e562: 44 39 c1 cmp %r8d,%ecx + 6634e565: 74 41 je 6634e5a8 + 6634e567: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e56b: 89 cf mov %ecx,%edi + 6634e56d: 44 29 c7 sub %r8d,%edi + 6634e570: 45 31 c0 xor %r8d,%r8d + 6634e573: 4d 8b 49 30 mov 0x30(%r9),%r9 + 6634e577: 41 01 39 add %edi,(%r9) + 6634e57a: 89 48 18 mov %ecx,0x18(%rax) + 6634e57d: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e581: 45 8b 09 mov (%r9),%r9d + 6634e584: 48 8b 49 30 mov 0x30(%rcx),%rcx + 6634e588: 45 85 c9 test %r9d,%r9d + 6634e58b: 41 0f 9f c0 setg %r8b + 6634e58f: 44 3b 01 cmp (%rcx),%r8d + 6634e592: 74 14 je 6634e5a8 + 6634e594: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e598: 48 8b 49 30 mov 0x30(%rcx),%rcx + 6634e59c: 44 8b 01 mov (%rcx),%r8d + 6634e59f: 45 85 c0 test %r8d,%r8d + 6634e5a2: 0f 84 8b 03 00 00 je 6634e933 + 6634e5a8: 89 f7 mov %esi,%edi + 6634e5aa: 83 c7 20 add $0x20,%edi + 6634e5ad: 0f 88 ed 02 00 00 js 6634e8a0 + 6634e5b3: 3b 7b 38 cmp 0x38(%rbx),%edi + 6634e5b6: 0f 8d e4 02 00 00 jge 6634e8a0 + 6634e5bc: 48 63 ff movslq %edi,%rdi + 6634e5bf: 44 8b 40 1c mov 0x1c(%rax),%r8d + 6634e5c3: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634e5c6: 44 39 c1 cmp %r8d,%ecx + 6634e5c9: 74 3e je 6634e609 + 6634e5cb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e5cf: 89 cf mov %ecx,%edi + 6634e5d1: 44 29 c7 sub %r8d,%edi + 6634e5d4: 45 31 c0 xor %r8d,%r8d + 6634e5d7: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634e5db: 41 01 39 add %edi,(%r9) + 6634e5de: 89 48 1c mov %ecx,0x1c(%rax) + 6634e5e1: 41 8b 09 mov (%r9),%ecx + 6634e5e4: 85 c9 test %ecx,%ecx + 6634e5e6: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634e5ea: 41 0f 9f c0 setg %r8b + 6634e5ee: 48 8b 49 38 mov 0x38(%rcx),%rcx + 6634e5f2: 44 3b 01 cmp (%rcx),%r8d + 6634e5f5: 74 12 je 6634e609 + 6634e5f7: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634e5fb: 48 8b 49 38 mov 0x38(%rcx),%rcx + 6634e5ff: 8b 39 mov (%rcx),%edi + 6634e601: 85 ff test %edi,%edi + 6634e603: 0f 84 f7 02 00 00 je 6634e900 + 6634e609: 83 c6 30 add $0x30,%esi + 6634e60c: 0f 88 be 02 00 00 js 6634e8d0 + 6634e612: 3b 73 38 cmp 0x38(%rbx),%esi + 6634e615: 0f 8d b5 02 00 00 jge 6634e8d0 + 6634e61b: 48 63 f6 movslq %esi,%rsi + 6634e61e: 8b 48 20 mov 0x20(%rax),%ecx + 6634e621: 8b 14 b2 mov (%rdx,%rsi,4),%edx + 6634e624: 39 ca cmp %ecx,%edx + 6634e626: 74 67 je 6634e68f + 6634e628: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634e62c: 89 d6 mov %edx,%esi + 6634e62e: 29 ce sub %ecx,%esi + 6634e630: 4d 8b 40 40 mov 0x40(%r8),%r8 + 6634e634: 41 01 30 add %esi,(%r8) + 6634e637: 89 50 20 mov %edx,0x20(%rax) + 6634e63a: 31 d2 xor %edx,%edx + 6634e63c: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634e640: 45 8b 18 mov (%r8),%r11d + 6634e643: 48 8b 40 40 mov 0x40(%rax),%rax + 6634e647: 45 85 db test %r11d,%r11d + 6634e64a: 0f 9f c2 setg %dl + 6634e64d: 3b 10 cmp (%rax),%edx + 6634e64f: 74 3e je 6634e68f + 6634e651: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634e655: 48 8b 40 40 mov 0x40(%rax),%rax + 6634e659: 44 8b 10 mov (%rax),%r10d + 6634e65c: 45 85 d2 test %r10d,%r10d + 6634e65f: 75 2e jne 6634e68f + 6634e661: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634e665: 48 8b 0d c4 92 00 00 mov 0x92c4(%rip),%rcx # 66357930 + 6634e66c: 4c 8b 05 ad 92 00 00 mov 0x92ad(%rip),%r8 # 66357920 + 6634e673: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634e677: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634e67b: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634e681: 48 63 01 movslq (%rcx),%rax + 6634e684: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634e688: 44 89 09 mov %r9d,(%rcx) + 6634e68b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634e68f: 48 83 c4 20 add $0x20,%rsp + 6634e693: 5b pop %rbx + 6634e694: 5e pop %rsi + 6634e695: 5f pop %rdi + 6634e696: c3 retq + 6634e697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e69e: 00 00 + 6634e6a0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e6a4: 4c 8b 15 75 92 00 00 mov 0x9275(%rip),%r10 # 66357920 + 6634e6ab: 48 8b 0d 7e 92 00 00 mov 0x927e(%rip),%rcx # 66357930 + 6634e6b2: 44 8b 42 14 mov 0x14(%rdx),%r8d + 6634e6b6: 45 85 c0 test %r8d,%r8d + 6634e6b9: 74 5a je 6634e715 + 6634e6bb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e6bf: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634e6c3: 45 29 01 sub %r8d,(%r9) + 6634e6c6: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634e6cd: 45 8b 09 mov (%r9),%r9d + 6634e6d0: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634e6d4: 45 85 c9 test %r9d,%r9d + 6634e6d7: 41 0f 9f c1 setg %r9b + 6634e6db: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e6df: 45 3b 08 cmp (%r8),%r9d + 6634e6e2: 74 31 je 6634e715 + 6634e6e4: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e6e8: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634e6ec: 45 8b 00 mov (%r8),%r8d + 6634e6ef: 45 85 c0 test %r8d,%r8d + 6634e6f2: 75 21 jne 6634e715 + 6634e6f4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e6f8: 4d 8b 48 28 mov 0x28(%r8),%r9 + 6634e6fc: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e700: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e707: 4c 63 01 movslq (%rcx),%r8 + 6634e70a: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e70e: 44 89 19 mov %r11d,(%rcx) + 6634e711: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e715: 44 8b 42 18 mov 0x18(%rdx),%r8d + 6634e719: 45 85 c0 test %r8d,%r8d + 6634e71c: 74 57 je 6634e775 + 6634e71e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e722: 4d 8b 49 30 mov 0x30(%r9),%r9 + 6634e726: 45 29 01 sub %r8d,(%r9) + 6634e729: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 6634e730: 41 8b 39 mov (%r9),%edi + 6634e733: 45 31 c9 xor %r9d,%r9d + 6634e736: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634e73a: 85 ff test %edi,%edi + 6634e73c: 41 0f 9f c1 setg %r9b + 6634e740: 45 3b 08 cmp (%r8),%r9d + 6634e743: 74 30 je 6634e775 + 6634e745: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e749: 4d 8b 40 30 mov 0x30(%r8),%r8 + 6634e74d: 41 8b 30 mov (%r8),%esi + 6634e750: 85 f6 test %esi,%esi + 6634e752: 75 21 jne 6634e775 + 6634e754: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e758: 4d 8b 48 30 mov 0x30(%r8),%r9 + 6634e75c: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e760: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e767: 4c 63 01 movslq (%rcx),%r8 + 6634e76a: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e76e: 44 89 19 mov %r11d,(%rcx) + 6634e771: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e775: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634e779: 45 85 c0 test %r8d,%r8d + 6634e77c: 74 59 je 6634e7d7 + 6634e77e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e782: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634e786: 45 29 01 sub %r8d,(%r9) + 6634e789: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634e790: 45 8b 19 mov (%r9),%r11d + 6634e793: 45 31 c9 xor %r9d,%r9d + 6634e796: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634e79a: 45 85 db test %r11d,%r11d + 6634e79d: 41 0f 9f c1 setg %r9b + 6634e7a1: 45 3b 08 cmp (%r8),%r9d + 6634e7a4: 74 31 je 6634e7d7 + 6634e7a6: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634e7aa: 4d 8b 40 38 mov 0x38(%r8),%r8 + 6634e7ae: 45 8b 08 mov (%r8),%r9d + 6634e7b1: 45 85 c9 test %r9d,%r9d + 6634e7b4: 75 21 jne 6634e7d7 + 6634e7b6: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634e7ba: 4d 8b 48 38 mov 0x38(%r8),%r9 + 6634e7be: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e7c2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e7c9: 4c 63 01 movslq (%rcx),%r8 + 6634e7cc: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634e7d0: 44 89 19 mov %r11d,(%rcx) + 6634e7d3: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634e7d7: 44 8b 42 20 mov 0x20(%rdx),%r8d + 6634e7db: 45 85 c0 test %r8d,%r8d + 6634e7de: 0f 84 ab fe ff ff je 6634e68f + 6634e7e4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634e7e8: 48 8b 40 40 mov 0x40(%rax),%rax + 6634e7ec: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634e7f0: 45 29 01 sub %r8d,(%r9) + 6634e7f3: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634e7fa: 31 d2 xor %edx,%edx + 6634e7fc: 45 8b 01 mov (%r9),%r8d + 6634e7ff: 45 85 c0 test %r8d,%r8d + 6634e802: 0f 9f c2 setg %dl + 6634e805: 3b 10 cmp (%rax),%edx + 6634e807: 0f 84 82 fe ff ff je 6634e68f + 6634e80d: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634e811: 48 8b 40 40 mov 0x40(%rax),%rax + 6634e815: 8b 00 mov (%rax),%eax + 6634e817: 85 c0 test %eax,%eax + 6634e819: 0f 85 70 fe ff ff jne 6634e68f + 6634e81f: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634e823: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634e827: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634e82b: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634e831: 48 63 01 movslq (%rcx),%rax + 6634e834: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634e838: 44 89 01 mov %r8d,(%rcx) + 6634e83b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634e83f: 48 83 c4 20 add $0x20,%rsp + 6634e843: 5b pop %rbx + 6634e844: 5e pop %rsi + 6634e845: 5f pop %rdi + 6634e846: c3 retq + 6634e847: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e84e: 00 00 + 6634e850: 48 8d 15 a9 57 00 00 lea 0x57a9(%rip),%rdx # 66354000 <.rdata> + 6634e857: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e85d: 48 8d 0d ac 57 00 00 lea 0x57ac(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e864: e8 a7 39 00 00 callq 66352210 <_assert> + 6634e869: e9 80 fc ff ff jmpq 6634e4ee + 6634e86e: 66 90 xchg %ax,%ax 6634e870: 48 8d 15 89 57 00 00 lea 0x5789(%rip),%rdx # 66354000 <.rdata> 6634e877: 41 b8 8f 00 00 00 mov $0x8f,%r8d 6634e87d: 48 8d 0d 8c 57 00 00 lea 0x578c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e884: e8 c7 36 00 00 callq 66351f50 <_assert> + 6634e884: e8 87 39 00 00 callq 66352210 <_assert> 6634e889: 48 8b 53 40 mov 0x40(%rbx),%rdx 6634e88d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e891: e9 34 fd ff ff jmpq 6634e5ca + 6634e891: e9 c2 fc ff ff jmpq 6634e558 6634e896: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) 6634e89d: 00 00 00 - 6634e8a0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e8a4: 4c 8b 0d 85 90 00 00 mov 0x9085(%rip),%r9 # 66357930 - 6634e8ab: 4c 8b 15 6e 90 00 00 mov 0x906e(%rip),%r10 # 66357920 - 6634e8b2: 4c 8b 41 60 mov 0x60(%rcx),%r8 - 6634e8b6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e8ba: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e8c0: 49 63 09 movslq (%r9),%rcx - 6634e8c3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e8c7: 45 89 19 mov %r11d,(%r9) - 6634e8ca: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e8ce: e9 e2 fc ff ff jmpq 6634e5b5 - 6634e8d3: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e8d7: 4c 8b 0d 52 90 00 00 mov 0x9052(%rip),%r9 # 66357930 - 6634e8de: 4c 8b 15 3b 90 00 00 mov 0x903b(%rip),%r10 # 66357920 - 6634e8e5: 4c 8b 41 58 mov 0x58(%rcx),%r8 - 6634e8e9: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e8ed: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e8f3: 49 63 09 movslq (%r9),%rcx - 6634e8f6: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e8fa: 45 89 19 mov %r11d,(%r9) - 6634e8fd: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e901: e9 4a fc ff ff jmpq 6634e550 - 6634e906: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e90d: 00 00 00 - 6634e910: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e914: 4c 8b 0d 15 90 00 00 mov 0x9015(%rip),%r9 # 66357930 - 6634e91b: 4c 8b 15 fe 8f 00 00 mov 0x8ffe(%rip),%r10 # 66357920 - 6634e922: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634e926: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e92a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e930: 49 63 09 movslq (%r9),%rcx - 6634e933: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e937: 45 89 19 mov %r11d,(%r9) - 6634e93a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e93e: e9 a6 fb ff ff jmpq 6634e4e9 - 6634e943: 0f 1f 00 nopl (%rax) - 6634e946: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e94d: 00 00 00 + 6634e8a0: 48 8d 15 59 57 00 00 lea 0x5759(%rip),%rdx # 66354000 <.rdata> + 6634e8a7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e8ad: 48 8d 0d 5c 57 00 00 lea 0x575c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e8b4: e8 57 39 00 00 callq 66352210 <_assert> + 6634e8b9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e8bd: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e8c1: e9 f6 fc ff ff jmpq 6634e5bc + 6634e8c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e8cd: 00 00 00 + 6634e8d0: 48 8d 15 29 57 00 00 lea 0x5729(%rip),%rdx # 66354000 <.rdata> + 6634e8d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634e8dd: 48 8d 0d 2c 57 00 00 lea 0x572c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634e8e4: e8 27 39 00 00 callq 66352210 <_assert> + 6634e8e9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634e8ed: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634e8f1: e9 25 fd ff ff jmpq 6634e61b + 6634e8f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e8fd: 00 00 00 + 6634e900: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e904: 4c 8b 0d 25 90 00 00 mov 0x9025(%rip),%r9 # 66357930 + 6634e90b: 4c 8b 15 0e 90 00 00 mov 0x900e(%rip),%r10 # 66357920 + 6634e912: 4c 8b 41 38 mov 0x38(%rcx),%r8 + 6634e916: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e91a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e920: 49 63 09 movslq (%r9),%rcx + 6634e923: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e927: 45 89 19 mov %r11d,(%r9) + 6634e92a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e92e: e9 d6 fc ff ff jmpq 6634e609 + 6634e933: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e937: 4c 8b 0d f2 8f 00 00 mov 0x8ff2(%rip),%r9 # 66357930 + 6634e93e: 4c 8b 15 db 8f 00 00 mov 0x8fdb(%rip),%r10 # 66357920 + 6634e945: 4c 8b 41 30 mov 0x30(%rcx),%r8 + 6634e949: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e94d: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e953: 49 63 09 movslq (%r9),%rcx + 6634e956: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e95a: 45 89 19 mov %r11d,(%r9) + 6634e95d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e961: e9 42 fc ff ff jmpq 6634e5a8 + 6634e966: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e96d: 00 00 00 + 6634e970: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634e974: 4c 8b 0d b5 8f 00 00 mov 0x8fb5(%rip),%r9 # 66357930 + 6634e97b: 4c 8b 15 9e 8f 00 00 mov 0x8f9e(%rip),%r10 # 66357920 + 6634e982: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e986: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634e98a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634e990: 49 63 09 movslq (%r9),%rcx + 6634e993: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634e997: 45 89 19 mov %r11d,(%r9) + 6634e99a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634e99e: e9 a1 fb ff ff jmpq 6634e544 + 6634e9a3: 0f 1f 00 nopl (%rax) + 6634e9a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634e9ad: 00 00 00 -000000006634e950 : - 6634e950: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634e954: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634e958: 4c 8b 48 20 mov 0x20(%rax),%r9 - 6634e95c: 44 8b 42 14 mov 0x14(%rdx),%r8d - 6634e960: 45 8b 09 mov (%r9),%r9d - 6634e963: 45 85 c9 test %r9d,%r9d - 6634e966: 75 68 jne 6634e9d0 - 6634e968: 45 85 c0 test %r8d,%r8d - 6634e96b: 74 61 je 6634e9ce - 6634e96d: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634e971: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634e975: 45 29 01 sub %r8d,(%r9) - 6634e978: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634e97f: 41 8b 11 mov (%r9),%edx - 6634e982: 85 d2 test %edx,%edx - 6634e984: 48 8b 40 28 mov 0x28(%rax),%rax - 6634e988: 0f 9f c2 setg %dl - 6634e98b: 0f b6 d2 movzbl %dl,%edx - 6634e98e: 3b 10 cmp (%rax),%edx - 6634e990: 74 3c je 6634e9ce - 6634e992: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634e996: 48 8b 40 28 mov 0x28(%rax),%rax - 6634e99a: 8b 00 mov (%rax),%eax - 6634e99c: 85 c0 test %eax,%eax - 6634e99e: 75 2e jne 6634e9ce - 6634e9a0: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634e9a4: 48 8b 0d 85 8f 00 00 mov 0x8f85(%rip),%rcx # 66357930 - 6634e9ab: 4c 8b 05 6e 8f 00 00 mov 0x8f6e(%rip),%r8 # 66357920 - 6634e9b2: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634e9b6: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e9ba: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e9c0: 48 63 01 movslq (%rcx),%rax - 6634e9c3: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634e9c7: 44 89 09 mov %r9d,(%rcx) - 6634e9ca: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634e9ce: c3 retq - 6634e9cf: 90 nop - 6634e9d0: 4c 8b 48 08 mov 0x8(%rax),%r9 - 6634e9d4: 45 8b 09 mov (%r9),%r9d - 6634e9d7: 41 83 c1 02 add $0x2,%r9d - 6634e9db: 4d 63 c9 movslq %r9d,%r9 - 6634e9de: 4e 8b 0c c8 mov (%rax,%r9,8),%r9 - 6634e9e2: 45 8b 09 mov (%r9),%r9d - 6634e9e5: 45 39 c1 cmp %r8d,%r9d - 6634e9e8: 74 e4 je 6634e9ce - 6634e9ea: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634e9ee: 45 89 cb mov %r9d,%r11d - 6634e9f1: 45 29 c3 sub %r8d,%r11d - 6634e9f4: 4d 8b 52 28 mov 0x28(%r10),%r10 - 6634e9f8: 45 01 1a add %r11d,(%r10) - 6634e9fb: 44 89 4a 14 mov %r9d,0x14(%rdx) - 6634e9ff: 45 8b 02 mov (%r10),%r8d - 6634ea02: 45 85 c0 test %r8d,%r8d - 6634ea05: e9 7a ff ff ff jmpq 6634e984 - 6634ea0a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +000000006634e9b0 : + 6634e9b0: 57 push %rdi + 6634e9b1: 56 push %rsi + 6634e9b2: 53 push %rbx + 6634e9b3: 48 83 ec 20 sub $0x20,%rsp + 6634e9b7: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634e9bb: 48 8b 42 70 mov 0x70(%rdx),%rax + 6634e9bf: 48 89 cb mov %rcx,%rbx + 6634e9c2: 44 8b 10 mov (%rax),%r10d + 6634e9c5: 45 85 d2 test %r10d,%r10d + 6634e9c8: 0f 84 15 02 00 00 je 6634ebe3 + 6634e9ce: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634e9d2: 8b 08 mov (%rax),%ecx + 6634e9d4: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634e9d8: 8b 00 mov (%rax),%eax + 6634e9da: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634e9dd: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 6634e9e1: 8b 09 mov (%rcx),%ecx + 6634e9e3: 8d 04 88 lea (%rax,%rcx,4),%eax + 6634e9e6: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 6634e9ea: 8b 09 mov (%rcx),%ecx + 6634e9ec: 8d 04 c8 lea (%rax,%rcx,8),%eax + 6634e9ef: 48 8b 4a 28 mov 0x28(%rdx),%rcx + 6634e9f3: 8b 31 mov (%rcx),%esi + 6634e9f5: 48 8b 4a 40 mov 0x40(%rdx),%rcx + 6634e9f9: c1 e6 04 shl $0x4,%esi + 6634e9fc: 01 c6 add %eax,%esi + 6634e9fe: 48 8b 42 30 mov 0x30(%rdx),%rax + 6634ea02: 8b 00 mov (%rax),%eax + 6634ea04: c1 e0 05 shl $0x5,%eax + 6634ea07: 01 c6 add %eax,%esi + 6634ea09: 48 8b 42 38 mov 0x38(%rdx),%rax + 6634ea0d: 48 8b 52 48 mov 0x48(%rdx),%rdx + 6634ea11: 8b 00 mov (%rax),%eax + 6634ea13: c1 e0 06 shl $0x6,%eax + 6634ea16: 01 f0 add %esi,%eax + 6634ea18: 8b 31 mov (%rcx),%esi + 6634ea1a: c1 e6 07 shl $0x7,%esi + 6634ea1d: 01 f0 add %esi,%eax + 6634ea1f: 8b 32 mov (%rdx),%esi + 6634ea21: c1 e6 08 shl $0x8,%esi + 6634ea24: 01 c6 add %eax,%esi + 6634ea26: 0f 88 64 03 00 00 js 6634ed90 + 6634ea2c: 3b 73 38 cmp 0x38(%rbx),%esi + 6634ea2f: 0f 8d 5b 03 00 00 jge 6634ed90 + 6634ea35: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634ea39: 48 63 c6 movslq %esi,%rax + 6634ea3c: 8b 0c 82 mov (%rdx,%rax,4),%ecx + 6634ea3f: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634ea43: 44 8b 40 28 mov 0x28(%rax),%r8d + 6634ea47: 41 39 c8 cmp %ecx,%r8d + 6634ea4a: 74 3d je 6634ea89 + 6634ea4c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ea50: 89 cf mov %ecx,%edi + 6634ea52: 44 29 c7 sub %r8d,%edi + 6634ea55: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634ea59: 41 01 39 add %edi,(%r9) + 6634ea5c: 89 48 28 mov %ecx,0x28(%rax) + 6634ea5f: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634ea63: 45 8b 09 mov (%r9),%r9d + 6634ea66: 4c 8b 41 50 mov 0x50(%rcx),%r8 + 6634ea6a: 31 c9 xor %ecx,%ecx + 6634ea6c: 45 85 c9 test %r9d,%r9d + 6634ea6f: 0f 9f c1 setg %cl + 6634ea72: 41 39 08 cmp %ecx,(%r8) + 6634ea75: 74 12 je 6634ea89 + 6634ea77: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634ea7b: 48 8b 49 50 mov 0x50(%rcx),%rcx + 6634ea7f: 8b 39 mov (%rcx),%edi + 6634ea81: 85 ff test %edi,%edi + 6634ea83: 0f 84 27 04 00 00 je 6634eeb0 + 6634ea89: 89 f7 mov %esi,%edi + 6634ea8b: 81 c7 00 02 00 00 add $0x200,%edi + 6634ea91: 0f 88 19 03 00 00 js 6634edb0 + 6634ea97: 39 7b 38 cmp %edi,0x38(%rbx) + 6634ea9a: 0f 8e 10 03 00 00 jle 6634edb0 + 6634eaa0: 48 63 ff movslq %edi,%rdi + 6634eaa3: 44 8b 40 2c mov 0x2c(%rax),%r8d + 6634eaa7: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634eaaa: 44 39 c1 cmp %r8d,%ecx + 6634eaad: 74 41 je 6634eaf0 + 6634eaaf: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634eab3: 89 cf mov %ecx,%edi + 6634eab5: 44 29 c7 sub %r8d,%edi + 6634eab8: 45 31 c0 xor %r8d,%r8d + 6634eabb: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634eabf: 41 01 39 add %edi,(%r9) + 6634eac2: 89 48 2c mov %ecx,0x2c(%rax) + 6634eac5: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634eac9: 45 8b 19 mov (%r9),%r11d + 6634eacc: 48 8b 49 58 mov 0x58(%rcx),%rcx + 6634ead0: 45 85 db test %r11d,%r11d + 6634ead3: 41 0f 9f c0 setg %r8b + 6634ead7: 44 3b 01 cmp (%rcx),%r8d + 6634eada: 74 14 je 6634eaf0 + 6634eadc: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634eae0: 48 8b 49 58 mov 0x58(%rcx),%rcx + 6634eae4: 44 8b 11 mov (%rcx),%r10d + 6634eae7: 45 85 d2 test %r10d,%r10d + 6634eaea: 0f 84 83 03 00 00 je 6634ee73 + 6634eaf0: 89 f7 mov %esi,%edi + 6634eaf2: 81 c7 00 04 00 00 add $0x400,%edi + 6634eaf8: 0f 88 e2 02 00 00 js 6634ede0 + 6634eafe: 3b 7b 38 cmp 0x38(%rbx),%edi + 6634eb01: 0f 8d d9 02 00 00 jge 6634ede0 + 6634eb07: 48 63 ff movslq %edi,%rdi + 6634eb0a: 44 8b 40 30 mov 0x30(%rax),%r8d + 6634eb0e: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634eb11: 44 39 c1 cmp %r8d,%ecx + 6634eb14: 74 3f je 6634eb55 + 6634eb16: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634eb1a: 89 cf mov %ecx,%edi + 6634eb1c: 44 29 c7 sub %r8d,%edi + 6634eb1f: 45 31 c0 xor %r8d,%r8d + 6634eb22: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634eb26: 41 01 39 add %edi,(%r9) + 6634eb29: 89 48 30 mov %ecx,0x30(%rax) + 6634eb2c: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634eb30: 45 8b 09 mov (%r9),%r9d + 6634eb33: 48 8b 49 60 mov 0x60(%rcx),%rcx + 6634eb37: 45 85 c9 test %r9d,%r9d + 6634eb3a: 41 0f 9f c0 setg %r8b + 6634eb3e: 44 3b 01 cmp (%rcx),%r8d + 6634eb41: 74 12 je 6634eb55 + 6634eb43: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634eb47: 48 8b 49 60 mov 0x60(%rcx),%rcx + 6634eb4b: 8b 09 mov (%rcx),%ecx + 6634eb4d: 85 c9 test %ecx,%ecx + 6634eb4f: 0f 84 eb 02 00 00 je 6634ee40 + 6634eb55: 81 c6 00 06 00 00 add $0x600,%esi + 6634eb5b: 0f 88 af 02 00 00 js 6634ee10 + 6634eb61: 3b 73 38 cmp 0x38(%rbx),%esi + 6634eb64: 0f 8d a6 02 00 00 jge 6634ee10 + 6634eb6a: 48 63 f6 movslq %esi,%rsi + 6634eb6d: 8b 48 34 mov 0x34(%rax),%ecx + 6634eb70: 8b 14 b2 mov (%rdx,%rsi,4),%edx + 6634eb73: 39 ca cmp %ecx,%edx + 6634eb75: 74 64 je 6634ebdb + 6634eb77: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634eb7b: 89 d7 mov %edx,%edi + 6634eb7d: 29 cf sub %ecx,%edi + 6634eb7f: 4d 8b 40 68 mov 0x68(%r8),%r8 + 6634eb83: 41 01 38 add %edi,(%r8) + 6634eb86: 89 50 34 mov %edx,0x34(%rax) + 6634eb89: 31 d2 xor %edx,%edx + 6634eb8b: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634eb8f: 41 8b 38 mov (%r8),%edi + 6634eb92: 48 8b 40 68 mov 0x68(%rax),%rax + 6634eb96: 85 ff test %edi,%edi + 6634eb98: 0f 9f c2 setg %dl + 6634eb9b: 3b 10 cmp (%rax),%edx + 6634eb9d: 74 3c je 6634ebdb + 6634eb9f: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634eba3: 48 8b 40 68 mov 0x68(%rax),%rax + 6634eba7: 8b 30 mov (%rax),%esi + 6634eba9: 85 f6 test %esi,%esi + 6634ebab: 75 2e jne 6634ebdb + 6634ebad: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ebb1: 48 8b 0d 78 8d 00 00 mov 0x8d78(%rip),%rcx # 66357930 + 6634ebb8: 4c 8b 05 61 8d 00 00 mov 0x8d61(%rip),%r8 # 66357920 + 6634ebbf: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634ebc3: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ebc7: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ebcd: 48 63 01 movslq (%rcx),%rax + 6634ebd0: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ebd4: 44 89 09 mov %r9d,(%rcx) + 6634ebd7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ebdb: 48 83 c4 20 add $0x20,%rsp + 6634ebdf: 5b pop %rbx + 6634ebe0: 5e pop %rsi + 6634ebe1: 5f pop %rdi + 6634ebe2: c3 retq + 6634ebe3: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634ebe7: 4c 8b 15 32 8d 00 00 mov 0x8d32(%rip),%r10 # 66357920 + 6634ebee: 48 8b 0d 3b 8d 00 00 mov 0x8d3b(%rip),%rcx # 66357930 + 6634ebf5: 44 8b 40 28 mov 0x28(%rax),%r8d + 6634ebf9: 45 85 c0 test %r8d,%r8d + 6634ebfc: 74 59 je 6634ec57 + 6634ebfe: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ec02: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634ec06: 45 29 01 sub %r8d,(%r9) + 6634ec09: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 6634ec10: 45 8b 19 mov (%r9),%r11d + 6634ec13: 45 31 c9 xor %r9d,%r9d + 6634ec16: 4c 8b 42 50 mov 0x50(%rdx),%r8 + 6634ec1a: 45 85 db test %r11d,%r11d + 6634ec1d: 41 0f 9f c1 setg %r9b + 6634ec21: 45 3b 08 cmp (%r8),%r9d + 6634ec24: 74 31 je 6634ec57 + 6634ec26: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634ec2a: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634ec2e: 45 8b 08 mov (%r8),%r9d + 6634ec31: 45 85 c9 test %r9d,%r9d + 6634ec34: 75 21 jne 6634ec57 + 6634ec36: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634ec3a: 4d 8b 48 50 mov 0x50(%r8),%r9 + 6634ec3e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ec42: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ec49: 4c 63 01 movslq (%rcx),%r8 + 6634ec4c: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634ec50: 44 89 19 mov %r11d,(%rcx) + 6634ec53: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634ec57: 44 8b 40 2c mov 0x2c(%rax),%r8d + 6634ec5b: 45 85 c0 test %r8d,%r8d + 6634ec5e: 74 58 je 6634ecb8 + 6634ec60: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ec64: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634ec68: 45 29 01 sub %r8d,(%r9) + 6634ec6b: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 6634ec72: 45 8b 01 mov (%r9),%r8d + 6634ec75: 45 31 c9 xor %r9d,%r9d + 6634ec78: 45 85 c0 test %r8d,%r8d + 6634ec7b: 4c 8b 42 58 mov 0x58(%rdx),%r8 + 6634ec7f: 41 0f 9f c1 setg %r9b + 6634ec83: 45 3b 08 cmp (%r8),%r9d + 6634ec86: 74 30 je 6634ecb8 + 6634ec88: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634ec8c: 4d 8b 40 58 mov 0x58(%r8),%r8 + 6634ec90: 41 8b 38 mov (%r8),%edi + 6634ec93: 85 ff test %edi,%edi + 6634ec95: 75 21 jne 6634ecb8 + 6634ec97: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634ec9b: 4d 8b 48 58 mov 0x58(%r8),%r9 + 6634ec9f: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634eca3: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ecaa: 4c 63 01 movslq (%rcx),%r8 + 6634ecad: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634ecb1: 44 89 19 mov %r11d,(%rcx) + 6634ecb4: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634ecb8: 44 8b 40 30 mov 0x30(%rax),%r8d + 6634ecbc: 45 85 c0 test %r8d,%r8d + 6634ecbf: 74 58 je 6634ed19 + 6634ecc1: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ecc5: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634ecc9: 45 29 01 sub %r8d,(%r9) + 6634eccc: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 6634ecd3: 41 8b 31 mov (%r9),%esi + 6634ecd6: 45 31 c9 xor %r9d,%r9d + 6634ecd9: 4c 8b 42 60 mov 0x60(%rdx),%r8 + 6634ecdd: 85 f6 test %esi,%esi + 6634ecdf: 41 0f 9f c1 setg %r9b + 6634ece3: 45 3b 08 cmp (%r8),%r9d + 6634ece6: 74 31 je 6634ed19 + 6634ece8: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634ecec: 4d 8b 40 60 mov 0x60(%r8),%r8 + 6634ecf0: 45 8b 18 mov (%r8),%r11d + 6634ecf3: 45 85 db test %r11d,%r11d + 6634ecf6: 75 21 jne 6634ed19 + 6634ecf8: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634ecfc: 4d 8b 48 60 mov 0x60(%r8),%r9 + 6634ed00: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ed04: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ed0b: 4c 63 01 movslq (%rcx),%r8 + 6634ed0e: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634ed12: 44 89 19 mov %r11d,(%rcx) + 6634ed15: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634ed19: 44 8b 40 34 mov 0x34(%rax),%r8d + 6634ed1d: 45 85 c0 test %r8d,%r8d + 6634ed20: 0f 84 b5 fe ff ff je 6634ebdb + 6634ed26: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ed2a: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634ed2e: 45 29 01 sub %r8d,(%r9) + 6634ed31: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) + 6634ed38: 45 31 c0 xor %r8d,%r8d + 6634ed3b: 45 8b 09 mov (%r9),%r9d + 6634ed3e: 48 8b 42 68 mov 0x68(%rdx),%rax + 6634ed42: 45 85 c9 test %r9d,%r9d + 6634ed45: 41 0f 9f c0 setg %r8b + 6634ed49: 44 3b 00 cmp (%rax),%r8d + 6634ed4c: 0f 84 89 fe ff ff je 6634ebdb + 6634ed52: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634ed56: 48 8b 40 68 mov 0x68(%rax),%rax + 6634ed5a: 8b 00 mov (%rax),%eax + 6634ed5c: 85 c0 test %eax,%eax + 6634ed5e: 0f 85 77 fe ff ff jne 6634ebdb + 6634ed64: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ed68: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634ed6c: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ed70: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ed76: 48 63 01 movslq (%rcx),%rax + 6634ed79: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634ed7d: 44 89 01 mov %r8d,(%rcx) + 6634ed80: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634ed84: 48 83 c4 20 add $0x20,%rsp + 6634ed88: 5b pop %rbx + 6634ed89: 5e pop %rsi + 6634ed8a: 5f pop %rdi + 6634ed8b: c3 retq + 6634ed8c: 0f 1f 40 00 nopl 0x0(%rax) + 6634ed90: 48 8d 15 69 52 00 00 lea 0x5269(%rip),%rdx # 66354000 <.rdata> + 6634ed97: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ed9d: 48 8d 0d 6c 52 00 00 lea 0x526c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634eda4: e8 67 34 00 00 callq 66352210 <_assert> + 6634eda9: e9 87 fc ff ff jmpq 6634ea35 + 6634edae: 66 90 xchg %ax,%ax + 6634edb0: 48 8d 15 49 52 00 00 lea 0x5249(%rip),%rdx # 66354000 <.rdata> + 6634edb7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634edbd: 48 8d 0d 4c 52 00 00 lea 0x524c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634edc4: e8 47 34 00 00 callq 66352210 <_assert> + 6634edc9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634edcd: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634edd1: e9 ca fc ff ff jmpq 6634eaa0 + 6634edd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634eddd: 00 00 00 + 6634ede0: 48 8d 15 19 52 00 00 lea 0x5219(%rip),%rdx # 66354000 <.rdata> + 6634ede7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634eded: 48 8d 0d 1c 52 00 00 lea 0x521c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634edf4: e8 17 34 00 00 callq 66352210 <_assert> + 6634edf9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634edfd: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634ee01: e9 01 fd ff ff jmpq 6634eb07 + 6634ee06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ee0d: 00 00 00 + 6634ee10: 48 8d 15 e9 51 00 00 lea 0x51e9(%rip),%rdx # 66354000 <.rdata> + 6634ee17: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ee1d: 48 8d 0d ec 51 00 00 lea 0x51ec(%rip),%rcx # 66354010 <.rdata+0x10> + 6634ee24: e8 e7 33 00 00 callq 66352210 <_assert> + 6634ee29: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634ee2d: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634ee31: e9 34 fd ff ff jmpq 6634eb6a + 6634ee36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ee3d: 00 00 00 + 6634ee40: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634ee44: 4c 8b 0d e5 8a 00 00 mov 0x8ae5(%rip),%r9 # 66357930 + 6634ee4b: 4c 8b 15 ce 8a 00 00 mov 0x8ace(%rip),%r10 # 66357920 + 6634ee52: 4c 8b 41 60 mov 0x60(%rcx),%r8 + 6634ee56: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ee5a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ee60: 49 63 09 movslq (%r9),%rcx + 6634ee63: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634ee67: 45 89 19 mov %r11d,(%r9) + 6634ee6a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634ee6e: e9 e2 fc ff ff jmpq 6634eb55 + 6634ee73: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634ee77: 4c 8b 0d b2 8a 00 00 mov 0x8ab2(%rip),%r9 # 66357930 + 6634ee7e: 4c 8b 15 9b 8a 00 00 mov 0x8a9b(%rip),%r10 # 66357920 + 6634ee85: 4c 8b 41 58 mov 0x58(%rcx),%r8 + 6634ee89: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ee8d: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ee93: 49 63 09 movslq (%r9),%rcx + 6634ee96: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634ee9a: 45 89 19 mov %r11d,(%r9) + 6634ee9d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634eea1: e9 4a fc ff ff jmpq 6634eaf0 + 6634eea6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634eead: 00 00 00 + 6634eeb0: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634eeb4: 4c 8b 0d 75 8a 00 00 mov 0x8a75(%rip),%r9 # 66357930 + 6634eebb: 4c 8b 15 5e 8a 00 00 mov 0x8a5e(%rip),%r10 # 66357920 + 6634eec2: 4c 8b 41 50 mov 0x50(%rcx),%r8 + 6634eec6: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634eeca: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634eed0: 49 63 09 movslq (%r9),%rcx + 6634eed3: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634eed7: 45 89 19 mov %r11d,(%r9) + 6634eeda: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634eede: e9 a6 fb ff ff jmpq 6634ea89 + 6634eee3: 0f 1f 00 nopl (%rax) + 6634eee6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634eeed: 00 00 00 -000000006634ea10 : - 6634ea10: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634ea14: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634ea18: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx - 6634ea1f: 45 8b 48 58 mov 0x58(%r8),%r9d - 6634ea23: 44 8b 12 mov (%rdx),%r10d - 6634ea26: 45 85 d2 test %r10d,%r10d - 6634ea29: 0f 84 b1 00 00 00 je 6634eae0 - 6634ea2f: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ea33: 44 8b 12 mov (%rdx),%r10d - 6634ea36: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ea3a: 8b 12 mov (%rdx),%edx - 6634ea3c: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634ea40: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634ea44: 45 8b 12 mov (%r10),%r10d - 6634ea47: 42 8d 14 92 lea (%rdx,%r10,4),%edx - 6634ea4b: 4c 8b 50 20 mov 0x20(%rax),%r10 - 6634ea4f: 45 8b 12 mov (%r10),%r10d - 6634ea52: 42 8d 54 d2 05 lea 0x5(%rdx,%r10,8),%edx - 6634ea57: 48 63 d2 movslq %edx,%rdx - 6634ea5a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634ea5e: 8b 12 mov (%rdx),%edx - 6634ea60: 44 39 ca cmp %r9d,%edx - 6634ea63: 74 71 je 6634ead6 - 6634ea65: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634ea69: 41 89 d3 mov %edx,%r11d - 6634ea6c: 45 29 cb sub %r9d,%r11d - 6634ea6f: 4d 8b 92 b0 00 00 00 mov 0xb0(%r10),%r10 - 6634ea76: 45 01 1a add %r11d,(%r10) - 6634ea79: 41 89 50 58 mov %edx,0x58(%r8) - 6634ea7d: 45 8b 02 mov (%r10),%r8d - 6634ea80: 45 85 c0 test %r8d,%r8d - 6634ea83: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax - 6634ea8a: 0f 9f c2 setg %dl - 6634ea8d: 0f b6 d2 movzbl %dl,%edx - 6634ea90: 3b 10 cmp (%rax),%edx - 6634ea92: 74 42 je 6634ead6 - 6634ea94: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634ea98: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax - 6634ea9f: 8b 00 mov (%rax),%eax - 6634eaa1: 85 c0 test %eax,%eax - 6634eaa3: 75 31 jne 6634ead6 - 6634eaa5: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634eaa9: 48 8b 0d 80 8e 00 00 mov 0x8e80(%rip),%rcx # 66357930 - 6634eab0: 4c 8b 05 69 8e 00 00 mov 0x8e69(%rip),%r8 # 66357920 - 6634eab7: 48 8b 90 b0 00 00 00 mov 0xb0(%rax),%rdx - 6634eabe: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634eac2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634eac8: 48 63 01 movslq (%rcx),%rax - 6634eacb: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634eacf: 44 89 09 mov %r9d,(%rcx) - 6634ead2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ead6: c3 retq - 6634ead7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634eade: 00 00 - 6634eae0: 45 85 c9 test %r9d,%r9d - 6634eae3: 74 f1 je 6634ead6 - 6634eae5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634eae9: 48 8b 92 b0 00 00 00 mov 0xb0(%rdx),%rdx - 6634eaf0: 44 29 0a sub %r9d,(%rdx) - 6634eaf3: 41 c7 40 58 00 00 00 movl $0x0,0x58(%r8) - 6634eafa: 00 - 6634eafb: 8b 12 mov (%rdx),%edx - 6634eafd: 85 d2 test %edx,%edx - 6634eaff: eb 82 jmp 6634ea83 - 6634eb01: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634eb06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634eb0d: 00 00 00 - -000000006634eb10 : - 6634eb10: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634eb14: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634eb18: 48 8b 90 40 04 00 00 mov 0x440(%rax),%rdx - 6634eb1f: 45 8b 91 24 02 00 00 mov 0x224(%r9),%r10d - 6634eb26: 44 8b 1a mov (%rdx),%r11d - 6634eb29: 45 85 db test %r11d,%r11d - 6634eb2c: 0f 84 d2 00 00 00 je 6634ec04 - 6634eb32: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634eb36: 44 8b 02 mov (%rdx),%r8d - 6634eb39: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634eb3d: 8b 12 mov (%rdx),%edx - 6634eb3f: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634eb43: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634eb47: 45 8b 00 mov (%r8),%r8d - 6634eb4a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634eb4e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634eb52: 45 8b 00 mov (%r8),%r8d - 6634eb55: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d - 6634eb59: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634eb5d: 8b 12 mov (%rdx),%edx - 6634eb5f: c1 e2 04 shl $0x4,%edx - 6634eb62: 41 01 d0 add %edx,%r8d - 6634eb65: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634eb69: 8b 12 mov (%rdx),%edx - 6634eb6b: c1 e2 05 shl $0x5,%edx - 6634eb6e: 44 01 c2 add %r8d,%edx - 6634eb71: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634eb75: 45 8b 00 mov (%r8),%r8d - 6634eb78: 41 c1 e0 06 shl $0x6,%r8d - 6634eb7c: 42 8d 54 02 08 lea 0x8(%rdx,%r8,1),%edx - 6634eb81: 48 63 d2 movslq %edx,%rdx - 6634eb84: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634eb88: 8b 12 mov (%rdx),%edx - 6634eb8a: 44 39 d2 cmp %r10d,%edx - 6634eb8d: 74 74 je 6634ec03 - 6634eb8f: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634eb93: 41 89 d3 mov %edx,%r11d - 6634eb96: 45 29 d3 sub %r10d,%r11d - 6634eb99: 4d 8b 80 48 04 00 00 mov 0x448(%r8),%r8 - 6634eba0: 45 01 18 add %r11d,(%r8) - 6634eba3: 41 89 91 24 02 00 00 mov %edx,0x224(%r9) - 6634ebaa: 45 8b 00 mov (%r8),%r8d - 6634ebad: 45 85 c0 test %r8d,%r8d - 6634ebb0: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax - 6634ebb7: 0f 9f c2 setg %dl - 6634ebba: 0f b6 d2 movzbl %dl,%edx - 6634ebbd: 3b 10 cmp (%rax),%edx - 6634ebbf: 74 42 je 6634ec03 - 6634ebc1: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634ebc5: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax - 6634ebcc: 8b 00 mov (%rax),%eax - 6634ebce: 85 c0 test %eax,%eax - 6634ebd0: 75 31 jne 6634ec03 - 6634ebd2: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634ebd6: 48 8b 0d 53 8d 00 00 mov 0x8d53(%rip),%rcx # 66357930 - 6634ebdd: 4c 8b 05 3c 8d 00 00 mov 0x8d3c(%rip),%r8 # 66357920 - 6634ebe4: 48 8b 90 48 04 00 00 mov 0x448(%rax),%rdx - 6634ebeb: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ebef: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ebf5: 48 63 01 movslq (%rcx),%rax - 6634ebf8: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ebfc: 44 89 09 mov %r9d,(%rcx) - 6634ebff: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ec03: c3 retq - 6634ec04: 45 85 d2 test %r10d,%r10d - 6634ec07: 74 fa je 6634ec03 - 6634ec09: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634ec0d: 48 8b 92 48 04 00 00 mov 0x448(%rdx),%rdx - 6634ec14: 44 29 12 sub %r10d,(%rdx) - 6634ec17: 41 c7 81 24 02 00 00 movl $0x0,0x224(%r9) - 6634ec1e: 00 00 00 00 - 6634ec22: 8b 12 mov (%rdx),%edx - 6634ec24: 85 d2 test %edx,%edx - 6634ec26: eb 88 jmp 6634ebb0 - 6634ec28: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634ec2f: 00 - -000000006634ec30 : - 6634ec30: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634ec34: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634ec38: 48 8b 90 30 01 00 00 mov 0x130(%rax),%rdx - 6634ec3f: 45 8b 88 9c 00 00 00 mov 0x9c(%r8),%r9d - 6634ec46: 44 8b 12 mov (%rdx),%r10d - 6634ec49: 45 85 d2 test %r10d,%r10d - 6634ec4c: 0f 84 be 00 00 00 je 6634ed10 - 6634ec52: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ec56: 44 8b 12 mov (%rdx),%r10d - 6634ec59: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ec5d: 8b 12 mov (%rdx),%edx - 6634ec5f: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634ec63: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634ec67: 45 8b 12 mov (%r10),%r10d - 6634ec6a: 42 8d 14 92 lea (%rdx,%r10,4),%edx - 6634ec6e: 4c 8b 50 20 mov 0x20(%rax),%r10 - 6634ec72: 45 8b 12 mov (%r10),%r10d - 6634ec75: 46 8d 14 d2 lea (%rdx,%r10,8),%r10d - 6634ec79: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634ec7d: 8b 12 mov (%rdx),%edx - 6634ec7f: c1 e2 04 shl $0x4,%edx - 6634ec82: 41 8d 54 12 06 lea 0x6(%r10,%rdx,1),%edx - 6634ec87: 48 63 d2 movslq %edx,%rdx - 6634ec8a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634ec8e: 8b 12 mov (%rdx),%edx - 6634ec90: 44 39 ca cmp %r9d,%edx - 6634ec93: 74 74 je 6634ed09 - 6634ec95: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634ec99: 41 89 d3 mov %edx,%r11d - 6634ec9c: 45 29 cb sub %r9d,%r11d - 6634ec9f: 4d 8b 92 38 01 00 00 mov 0x138(%r10),%r10 - 6634eca6: 45 01 1a add %r11d,(%r10) - 6634eca9: 41 89 90 9c 00 00 00 mov %edx,0x9c(%r8) - 6634ecb0: 45 8b 02 mov (%r10),%r8d - 6634ecb3: 45 85 c0 test %r8d,%r8d - 6634ecb6: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax - 6634ecbd: 0f 9f c2 setg %dl - 6634ecc0: 0f b6 d2 movzbl %dl,%edx - 6634ecc3: 3b 10 cmp (%rax),%edx - 6634ecc5: 74 42 je 6634ed09 - 6634ecc7: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634eccb: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax - 6634ecd2: 8b 00 mov (%rax),%eax - 6634ecd4: 85 c0 test %eax,%eax - 6634ecd6: 75 31 jne 6634ed09 - 6634ecd8: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634ecdc: 48 8b 0d 4d 8c 00 00 mov 0x8c4d(%rip),%rcx # 66357930 - 6634ece3: 4c 8b 05 36 8c 00 00 mov 0x8c36(%rip),%r8 # 66357920 - 6634ecea: 48 8b 90 38 01 00 00 mov 0x138(%rax),%rdx - 6634ecf1: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ecf5: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ecfb: 48 63 01 movslq (%rcx),%rax - 6634ecfe: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ed02: 44 89 09 mov %r9d,(%rcx) - 6634ed05: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ed09: c3 retq - 6634ed0a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634ed10: 45 85 c9 test %r9d,%r9d - 6634ed13: 74 f4 je 6634ed09 - 6634ed15: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634ed19: 48 8b 92 38 01 00 00 mov 0x138(%rdx),%rdx - 6634ed20: 44 29 0a sub %r9d,(%rdx) - 6634ed23: 41 c7 80 9c 00 00 00 movl $0x0,0x9c(%r8) - 6634ed2a: 00 00 00 00 - 6634ed2e: 8b 12 mov (%rdx),%edx - 6634ed30: 85 d2 test %edx,%edx - 6634ed32: e9 7f ff ff ff jmpq 6634ecb6 - 6634ed37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634ed3e: 00 00 - -000000006634ed40 : - 6634ed40: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634ed44: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634ed48: 48 8b 90 48 08 00 00 mov 0x848(%rax),%rdx - 6634ed4f: 45 8b 91 28 04 00 00 mov 0x428(%r9),%r10d - 6634ed56: 44 8b 1a mov (%rdx),%r11d - 6634ed59: 45 85 db test %r11d,%r11d - 6634ed5c: 0f 84 e0 00 00 00 je 6634ee42 - 6634ed62: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ed66: 44 8b 02 mov (%rdx),%r8d - 6634ed69: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ed6d: 8b 12 mov (%rdx),%edx - 6634ed6f: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634ed73: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634ed77: 45 8b 00 mov (%r8),%r8d - 6634ed7a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634ed7e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634ed82: 45 8b 00 mov (%r8),%r8d - 6634ed85: 42 8d 14 c2 lea (%rdx,%r8,8),%edx - 6634ed89: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634ed8d: 45 8b 00 mov (%r8),%r8d - 6634ed90: 41 c1 e0 04 shl $0x4,%r8d - 6634ed94: 41 01 d0 add %edx,%r8d - 6634ed97: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634ed9b: 8b 12 mov (%rdx),%edx - 6634ed9d: c1 e2 05 shl $0x5,%edx - 6634eda0: 41 01 d0 add %edx,%r8d - 6634eda3: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634eda7: 8b 12 mov (%rdx),%edx - 6634eda9: c1 e2 06 shl $0x6,%edx - 6634edac: 44 01 c2 add %r8d,%edx - 6634edaf: 4c 8b 40 40 mov 0x40(%rax),%r8 - 6634edb3: 45 8b 00 mov (%r8),%r8d - 6634edb6: 41 c1 e0 07 shl $0x7,%r8d - 6634edba: 42 8d 54 02 09 lea 0x9(%rdx,%r8,1),%edx - 6634edbf: 48 63 d2 movslq %edx,%rdx - 6634edc2: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634edc6: 8b 12 mov (%rdx),%edx - 6634edc8: 44 39 d2 cmp %r10d,%edx - 6634edcb: 74 74 je 6634ee41 - 6634edcd: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634edd1: 41 89 d3 mov %edx,%r11d - 6634edd4: 45 29 d3 sub %r10d,%r11d - 6634edd7: 4d 8b 80 50 08 00 00 mov 0x850(%r8),%r8 - 6634edde: 45 01 18 add %r11d,(%r8) - 6634ede1: 41 89 91 28 04 00 00 mov %edx,0x428(%r9) - 6634ede8: 45 8b 00 mov (%r8),%r8d - 6634edeb: 45 85 c0 test %r8d,%r8d - 6634edee: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax - 6634edf5: 0f 9f c2 setg %dl - 6634edf8: 0f b6 d2 movzbl %dl,%edx - 6634edfb: 3b 10 cmp (%rax),%edx - 6634edfd: 74 42 je 6634ee41 - 6634edff: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634ee03: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax - 6634ee0a: 8b 00 mov (%rax),%eax - 6634ee0c: 85 c0 test %eax,%eax - 6634ee0e: 75 31 jne 6634ee41 - 6634ee10: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634ee14: 48 8b 0d 15 8b 00 00 mov 0x8b15(%rip),%rcx # 66357930 - 6634ee1b: 4c 8b 05 fe 8a 00 00 mov 0x8afe(%rip),%r8 # 66357920 - 6634ee22: 48 8b 90 50 08 00 00 mov 0x850(%rax),%rdx - 6634ee29: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ee2d: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ee33: 48 63 01 movslq (%rcx),%rax - 6634ee36: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ee3a: 44 89 09 mov %r9d,(%rcx) - 6634ee3d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ee41: c3 retq - 6634ee42: 45 85 d2 test %r10d,%r10d - 6634ee45: 74 fa je 6634ee41 - 6634ee47: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634ee4b: 48 8b 92 50 08 00 00 mov 0x850(%rdx),%rdx - 6634ee52: 44 29 12 sub %r10d,(%rdx) - 6634ee55: 41 c7 81 28 04 00 00 movl $0x0,0x428(%r9) - 6634ee5c: 00 00 00 00 - 6634ee60: 8b 12 mov (%rdx),%edx - 6634ee62: 85 d2 test %edx,%edx - 6634ee64: eb 88 jmp 6634edee - 6634ee66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634ee6d: 00 00 00 - -000000006634ee70 : - 6634ee70: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634ee74: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634ee78: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634ee7c: 45 8b 48 20 mov 0x20(%r8),%r9d - 6634ee80: 44 8b 12 mov (%rdx),%r10d - 6634ee83: 45 85 d2 test %r10d,%r10d - 6634ee86: 0f 84 86 00 00 00 je 6634ef12 - 6634ee8c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ee90: 44 8b 12 mov (%rdx),%r10d - 6634ee93: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ee97: 8b 12 mov (%rdx),%edx - 6634ee99: 42 8d 54 52 03 lea 0x3(%rdx,%r10,2),%edx - 6634ee9e: 48 63 d2 movslq %edx,%rdx - 6634eea1: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634eea5: 8b 12 mov (%rdx),%edx - 6634eea7: 44 39 ca cmp %r9d,%edx - 6634eeaa: 74 65 je 6634ef11 - 6634eeac: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634eeb0: 41 89 d3 mov %edx,%r11d - 6634eeb3: 45 29 cb sub %r9d,%r11d - 6634eeb6: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634eeba: 45 01 1a add %r11d,(%r10) - 6634eebd: 41 89 50 20 mov %edx,0x20(%r8) - 6634eec1: 45 8b 02 mov (%r10),%r8d - 6634eec4: 45 85 c0 test %r8d,%r8d - 6634eec7: 48 8b 40 40 mov 0x40(%rax),%rax - 6634eecb: 0f 9f c2 setg %dl - 6634eece: 0f b6 d2 movzbl %dl,%edx - 6634eed1: 3b 10 cmp (%rax),%edx - 6634eed3: 74 3c je 6634ef11 - 6634eed5: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634eed9: 48 8b 40 40 mov 0x40(%rax),%rax - 6634eedd: 8b 00 mov (%rax),%eax - 6634eedf: 85 c0 test %eax,%eax - 6634eee1: 75 2e jne 6634ef11 - 6634eee3: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634eee7: 48 8b 0d 42 8a 00 00 mov 0x8a42(%rip),%rcx # 66357930 - 6634eeee: 4c 8b 05 2b 8a 00 00 mov 0x8a2b(%rip),%r8 # 66357920 - 6634eef5: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634eef9: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634eefd: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ef03: 48 63 01 movslq (%rcx),%rax - 6634ef06: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ef0a: 44 89 09 mov %r9d,(%rcx) - 6634ef0d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ef11: c3 retq - 6634ef12: 45 85 c9 test %r9d,%r9d - 6634ef15: 74 fa je 6634ef11 - 6634ef17: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634ef1b: 48 8b 52 40 mov 0x40(%rdx),%rdx - 6634ef1f: 44 29 0a sub %r9d,(%rdx) - 6634ef22: 41 c7 40 20 00 00 00 movl $0x0,0x20(%r8) - 6634ef29: 00 - 6634ef2a: 8b 12 mov (%rdx),%edx - 6634ef2c: 85 d2 test %edx,%edx - 6634ef2e: eb 97 jmp 6634eec7 - -000000006634ef30 : - 6634ef30: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634ef34: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634ef38: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634ef3c: 45 8b 48 34 mov 0x34(%r8),%r9d - 6634ef40: 44 8b 12 mov (%rdx),%r10d - 6634ef43: 45 85 d2 test %r10d,%r10d - 6634ef46: 0f 84 94 00 00 00 je 6634efe0 - 6634ef4c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ef50: 44 8b 12 mov (%rdx),%r10d - 6634ef53: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ef57: 8b 12 mov (%rdx),%edx - 6634ef59: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634ef5d: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634ef61: 45 8b 12 mov (%r10),%r10d - 6634ef64: 42 8d 54 92 04 lea 0x4(%rdx,%r10,4),%edx - 6634ef69: 48 63 d2 movslq %edx,%rdx - 6634ef6c: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634ef70: 8b 12 mov (%rdx),%edx - 6634ef72: 44 39 ca cmp %r9d,%edx - 6634ef75: 74 65 je 6634efdc - 6634ef77: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634ef7b: 41 89 d3 mov %edx,%r11d - 6634ef7e: 45 29 cb sub %r9d,%r11d - 6634ef81: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634ef85: 45 01 1a add %r11d,(%r10) - 6634ef88: 41 89 50 34 mov %edx,0x34(%r8) - 6634ef8c: 45 8b 02 mov (%r10),%r8d - 6634ef8f: 45 85 c0 test %r8d,%r8d - 6634ef92: 48 8b 40 68 mov 0x68(%rax),%rax - 6634ef96: 0f 9f c2 setg %dl - 6634ef99: 0f b6 d2 movzbl %dl,%edx - 6634ef9c: 3b 10 cmp (%rax),%edx - 6634ef9e: 74 3c je 6634efdc - 6634efa0: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634efa4: 48 8b 40 68 mov 0x68(%rax),%rax - 6634efa8: 8b 00 mov (%rax),%eax - 6634efaa: 85 c0 test %eax,%eax - 6634efac: 75 2e jne 6634efdc - 6634efae: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634efb2: 48 8b 0d 77 89 00 00 mov 0x8977(%rip),%rcx # 66357930 - 6634efb9: 4c 8b 05 60 89 00 00 mov 0x8960(%rip),%r8 # 66357920 - 6634efc0: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634efc4: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634efc8: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634efce: 48 63 01 movslq (%rcx),%rax - 6634efd1: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634efd5: 44 89 09 mov %r9d,(%rcx) - 6634efd8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634efdc: c3 retq - 6634efdd: 0f 1f 00 nopl (%rax) - 6634efe0: 45 85 c9 test %r9d,%r9d - 6634efe3: 74 f7 je 6634efdc - 6634efe5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634efe9: 48 8b 52 68 mov 0x68(%rdx),%rdx - 6634efed: 44 29 0a sub %r9d,(%rdx) - 6634eff0: 41 c7 40 34 00 00 00 movl $0x0,0x34(%r8) - 6634eff7: 00 - 6634eff8: 8b 12 mov (%rdx),%edx - 6634effa: 85 d2 test %edx,%edx - 6634effc: eb 94 jmp 6634ef92 - 6634effe: 66 90 xchg %ax,%ax - -000000006634f000 : - 6634f000: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f004: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634f008: 48 8b 90 38 02 00 00 mov 0x238(%rax),%rdx - 6634f00f: 45 8b 91 20 01 00 00 mov 0x120(%r9),%r10d - 6634f016: 44 8b 1a mov (%rdx),%r11d - 6634f019: 45 85 db test %r11d,%r11d - 6634f01c: 0f 84 ce 00 00 00 je 6634f0f0 - 6634f022: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f026: 44 8b 02 mov (%rdx),%r8d - 6634f029: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f02d: 8b 12 mov (%rdx),%edx - 6634f02f: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634f033: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634f037: 45 8b 00 mov (%r8),%r8d - 6634f03a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634f03e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634f042: 45 8b 00 mov (%r8),%r8d - 6634f045: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d - 6634f049: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f04d: 8b 12 mov (%rdx),%edx - 6634f04f: c1 e2 04 shl $0x4,%edx - 6634f052: 44 01 c2 add %r8d,%edx - 6634f055: 4c 8b 40 30 mov 0x30(%rax),%r8 - 6634f059: 45 8b 00 mov (%r8),%r8d - 6634f05c: 41 c1 e0 05 shl $0x5,%r8d - 6634f060: 42 8d 54 02 07 lea 0x7(%rdx,%r8,1),%edx - 6634f065: 48 63 d2 movslq %edx,%rdx - 6634f068: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f06c: 8b 12 mov (%rdx),%edx - 6634f06e: 44 39 d2 cmp %r10d,%edx - 6634f071: 74 74 je 6634f0e7 - 6634f073: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634f077: 41 89 d3 mov %edx,%r11d - 6634f07a: 45 29 d3 sub %r10d,%r11d - 6634f07d: 4d 8b 80 40 02 00 00 mov 0x240(%r8),%r8 - 6634f084: 45 01 18 add %r11d,(%r8) - 6634f087: 41 89 91 20 01 00 00 mov %edx,0x120(%r9) - 6634f08e: 45 8b 00 mov (%r8),%r8d - 6634f091: 45 85 c0 test %r8d,%r8d - 6634f094: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax - 6634f09b: 0f 9f c2 setg %dl - 6634f09e: 0f b6 d2 movzbl %dl,%edx - 6634f0a1: 3b 10 cmp (%rax),%edx - 6634f0a3: 74 42 je 6634f0e7 - 6634f0a5: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f0a9: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax - 6634f0b0: 8b 00 mov (%rax),%eax - 6634f0b2: 85 c0 test %eax,%eax - 6634f0b4: 75 31 jne 6634f0e7 - 6634f0b6: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f0ba: 48 8b 0d 6f 88 00 00 mov 0x886f(%rip),%rcx # 66357930 - 6634f0c1: 4c 8b 05 58 88 00 00 mov 0x8858(%rip),%r8 # 66357920 - 6634f0c8: 48 8b 90 40 02 00 00 mov 0x240(%rax),%rdx - 6634f0cf: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f0d3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f0d9: 48 63 01 movslq (%rcx),%rax - 6634f0dc: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f0e0: 44 89 09 mov %r9d,(%rcx) - 6634f0e3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f0e7: c3 retq - 6634f0e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634f0ef: 00 - 6634f0f0: 45 85 d2 test %r10d,%r10d - 6634f0f3: 74 f2 je 6634f0e7 - 6634f0f5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f0f9: 48 8b 92 40 02 00 00 mov 0x240(%rdx),%rdx - 6634f100: 44 29 12 sub %r10d,(%rdx) - 6634f103: 41 c7 81 20 01 00 00 movl $0x0,0x120(%r9) - 6634f10a: 00 00 00 00 - 6634f10e: 8b 12 mov (%rdx),%edx - 6634f110: 85 d2 test %edx,%edx - 6634f112: eb 80 jmp 6634f094 - 6634f114: 66 90 xchg %ax,%ax - 6634f116: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f11d: 00 00 00 - -000000006634f120 : - 6634f120: 56 push %rsi - 6634f121: 53 push %rbx - 6634f122: 48 83 ec 28 sub $0x28,%rsp - 6634f126: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f12a: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634f12e: 48 89 cb mov %rcx,%rbx - 6634f131: 44 8b 0a mov (%rdx),%r9d +000000006634eef0 : + 6634eef0: 57 push %rdi + 6634eef1: 56 push %rsi + 6634eef2: 53 push %rbx + 6634eef3: 48 83 ec 20 sub $0x20,%rsp + 6634eef7: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634eefb: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634eeff: 48 89 cb mov %rcx,%rbx + 6634ef02: 8b 32 mov (%rdx),%esi + 6634ef04: 85 f6 test %esi,%esi + 6634ef06: 0f 84 f4 01 00 00 je 6634f100 + 6634ef0c: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634ef10: 8b 0a mov (%rdx),%ecx + 6634ef12: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634ef16: 8b 12 mov (%rdx),%edx + 6634ef18: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634ef1b: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634ef1f: 8b 09 mov (%rcx),%ecx + 6634ef21: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634ef24: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634ef28: 8b 09 mov (%rcx),%ecx + 6634ef2a: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634ef2d: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634ef31: 48 8b 40 30 mov 0x30(%rax),%rax + 6634ef35: 8b 31 mov (%rcx),%esi + 6634ef37: c1 e6 04 shl $0x4,%esi + 6634ef3a: 01 f2 add %esi,%edx + 6634ef3c: 8b 30 mov (%rax),%esi + 6634ef3e: c1 e6 05 shl $0x5,%esi + 6634ef41: 01 d6 add %edx,%esi + 6634ef43: 0f 88 67 03 00 00 js 6634f2b0 + 6634ef49: 3b 73 38 cmp 0x38(%rbx),%esi + 6634ef4c: 0f 8d 5e 03 00 00 jge 6634f2b0 + 6634ef52: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634ef56: 48 63 c6 movslq %esi,%rax + 6634ef59: 8b 0c 82 mov (%rdx,%rax,4),%ecx + 6634ef5c: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634ef60: 44 8b 40 1c mov 0x1c(%rax),%r8d + 6634ef64: 41 39 c8 cmp %ecx,%r8d + 6634ef67: 74 3f je 6634efa8 + 6634ef69: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634ef6d: 89 cf mov %ecx,%edi + 6634ef6f: 44 29 c7 sub %r8d,%edi + 6634ef72: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634ef76: 41 01 39 add %edi,(%r9) + 6634ef79: 89 48 1c mov %ecx,0x1c(%rax) + 6634ef7c: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634ef80: 45 8b 19 mov (%r9),%r11d + 6634ef83: 4c 8b 41 38 mov 0x38(%rcx),%r8 + 6634ef87: 31 c9 xor %ecx,%ecx + 6634ef89: 45 85 db test %r11d,%r11d + 6634ef8c: 0f 9f c1 setg %cl + 6634ef8f: 41 39 08 cmp %ecx,(%r8) + 6634ef92: 74 14 je 6634efa8 + 6634ef94: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634ef98: 48 8b 49 38 mov 0x38(%rcx),%rcx + 6634ef9c: 44 8b 11 mov (%rcx),%r10d + 6634ef9f: 45 85 d2 test %r10d,%r10d + 6634efa2: 0f 84 28 04 00 00 je 6634f3d0 + 6634efa8: 89 f7 mov %esi,%edi + 6634efaa: 83 c7 40 add $0x40,%edi + 6634efad: 0f 88 1d 03 00 00 js 6634f2d0 + 6634efb3: 39 7b 38 cmp %edi,0x38(%rbx) + 6634efb6: 0f 8e 14 03 00 00 jle 6634f2d0 + 6634efbc: 48 63 ff movslq %edi,%rdi + 6634efbf: 44 8b 40 20 mov 0x20(%rax),%r8d + 6634efc3: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634efc6: 44 39 c1 cmp %r8d,%ecx + 6634efc9: 74 41 je 6634f00c + 6634efcb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634efcf: 89 cf mov %ecx,%edi + 6634efd1: 44 29 c7 sub %r8d,%edi + 6634efd4: 45 31 c0 xor %r8d,%r8d + 6634efd7: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634efdb: 41 01 39 add %edi,(%r9) + 6634efde: 89 48 20 mov %ecx,0x20(%rax) + 6634efe1: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634efe5: 45 8b 09 mov (%r9),%r9d + 6634efe8: 48 8b 49 40 mov 0x40(%rcx),%rcx + 6634efec: 45 85 c9 test %r9d,%r9d + 6634efef: 41 0f 9f c0 setg %r8b + 6634eff3: 44 3b 01 cmp (%rcx),%r8d + 6634eff6: 74 14 je 6634f00c + 6634eff8: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634effc: 48 8b 49 40 mov 0x40(%rcx),%rcx + 6634f000: 44 8b 01 mov (%rcx),%r8d + 6634f003: 45 85 c0 test %r8d,%r8d + 6634f006: 0f 84 87 03 00 00 je 6634f393 + 6634f00c: 89 f7 mov %esi,%edi + 6634f00e: 83 ef 80 sub $0xffffff80,%edi + 6634f011: 0f 88 e9 02 00 00 js 6634f300 + 6634f017: 3b 7b 38 cmp 0x38(%rbx),%edi + 6634f01a: 0f 8d e0 02 00 00 jge 6634f300 + 6634f020: 48 63 ff movslq %edi,%rdi + 6634f023: 44 8b 40 24 mov 0x24(%rax),%r8d + 6634f027: 8b 0c ba mov (%rdx,%rdi,4),%ecx + 6634f02a: 44 39 c1 cmp %r8d,%ecx + 6634f02d: 74 3e je 6634f06d + 6634f02f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634f033: 89 cf mov %ecx,%edi + 6634f035: 44 29 c7 sub %r8d,%edi + 6634f038: 45 31 c0 xor %r8d,%r8d + 6634f03b: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634f03f: 41 01 39 add %edi,(%r9) + 6634f042: 89 48 24 mov %ecx,0x24(%rax) + 6634f045: 41 8b 09 mov (%r9),%ecx + 6634f048: 85 c9 test %ecx,%ecx + 6634f04a: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 6634f04e: 41 0f 9f c0 setg %r8b + 6634f052: 48 8b 49 48 mov 0x48(%rcx),%rcx + 6634f056: 44 3b 01 cmp (%rcx),%r8d + 6634f059: 74 12 je 6634f06d + 6634f05b: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634f05f: 48 8b 49 48 mov 0x48(%rcx),%rcx + 6634f063: 8b 39 mov (%rcx),%edi + 6634f065: 85 ff test %edi,%edi + 6634f067: 0f 84 f3 02 00 00 je 6634f360 + 6634f06d: 81 c6 c0 00 00 00 add $0xc0,%esi + 6634f073: 0f 88 b7 02 00 00 js 6634f330 + 6634f079: 3b 73 38 cmp 0x38(%rbx),%esi + 6634f07c: 0f 8d ae 02 00 00 jge 6634f330 + 6634f082: 48 63 f6 movslq %esi,%rsi + 6634f085: 8b 48 28 mov 0x28(%rax),%ecx + 6634f088: 8b 14 b2 mov (%rdx,%rsi,4),%edx + 6634f08b: 39 ca cmp %ecx,%edx + 6634f08d: 74 67 je 6634f0f6 + 6634f08f: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634f093: 89 d6 mov %edx,%esi + 6634f095: 29 ce sub %ecx,%esi + 6634f097: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634f09b: 41 01 30 add %esi,(%r8) + 6634f09e: 89 50 28 mov %edx,0x28(%rax) + 6634f0a1: 31 d2 xor %edx,%edx + 6634f0a3: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634f0a7: 45 8b 18 mov (%r8),%r11d + 6634f0aa: 48 8b 40 50 mov 0x50(%rax),%rax + 6634f0ae: 45 85 db test %r11d,%r11d + 6634f0b1: 0f 9f c2 setg %dl + 6634f0b4: 3b 10 cmp (%rax),%edx + 6634f0b6: 74 3e je 6634f0f6 + 6634f0b8: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634f0bc: 48 8b 40 50 mov 0x50(%rax),%rax + 6634f0c0: 44 8b 10 mov (%rax),%r10d + 6634f0c3: 45 85 d2 test %r10d,%r10d + 6634f0c6: 75 2e jne 6634f0f6 + 6634f0c8: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634f0cc: 48 8b 0d 5d 88 00 00 mov 0x885d(%rip),%rcx # 66357930 + 6634f0d3: 4c 8b 05 46 88 00 00 mov 0x8846(%rip),%r8 # 66357920 + 6634f0da: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634f0de: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f0e2: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f0e8: 48 63 01 movslq (%rcx),%rax + 6634f0eb: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f0ef: 44 89 09 mov %r9d,(%rcx) + 6634f0f2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f0f6: 48 83 c4 20 add $0x20,%rsp + 6634f0fa: 5b pop %rbx + 6634f0fb: 5e pop %rsi + 6634f0fc: 5f pop %rdi + 6634f0fd: c3 retq + 6634f0fe: 66 90 xchg %ax,%ax + 6634f100: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f104: 4c 8b 15 15 88 00 00 mov 0x8815(%rip),%r10 # 66357920 + 6634f10b: 48 8b 0d 1e 88 00 00 mov 0x881e(%rip),%rcx # 66357930 + 6634f112: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634f116: 45 85 c0 test %r8d,%r8d + 6634f119: 74 5a je 6634f175 + 6634f11b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634f11f: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634f123: 45 29 01 sub %r8d,(%r9) + 6634f126: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634f12d: 45 8b 09 mov (%r9),%r9d + 6634f130: 4c 8b 40 38 mov 0x38(%rax),%r8 6634f134: 45 85 c9 test %r9d,%r9d - 6634f137: 0f 84 c3 00 00 00 je 6634f200 - 6634f13d: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f141: 8b 0a mov (%rdx),%ecx - 6634f143: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f147: 8b 12 mov (%rdx),%edx - 6634f149: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634f14c: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634f150: 48 8b 40 20 mov 0x20(%rax),%rax - 6634f154: 8b 09 mov (%rcx),%ecx - 6634f156: 8b 00 mov (%rax),%eax - 6634f158: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634f15b: 8d 34 c2 lea (%rdx,%rax,8),%esi - 6634f15e: 85 f6 test %esi,%esi - 6634f160: 78 05 js 6634f167 - 6634f162: 3b 73 38 cmp 0x38(%rbx),%esi - 6634f165: 7c 19 jl 6634f180 - 6634f167: 48 8d 15 92 4e 00 00 lea 0x4e92(%rip),%rdx # 66354000 <.rdata> - 6634f16e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f174: 48 8d 0d 95 4e 00 00 lea 0x4e95(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f17b: e8 d0 2d 00 00 callq 66351f50 <_assert> - 6634f180: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634f184: 48 63 f6 movslq %esi,%rsi - 6634f187: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634f18b: 8b 04 b0 mov (%rax,%rsi,4),%eax - 6634f18e: 8b 4a 14 mov 0x14(%rdx),%ecx - 6634f191: 39 c8 cmp %ecx,%eax - 6634f193: 74 64 je 6634f1f9 - 6634f195: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f199: 89 c6 mov %eax,%esi - 6634f19b: 29 ce sub %ecx,%esi - 6634f19d: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634f1a1: 41 01 30 add %esi,(%r8) - 6634f1a4: 89 42 14 mov %eax,0x14(%rdx) - 6634f1a7: 31 d2 xor %edx,%edx - 6634f1a9: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634f1ad: 41 8b 08 mov (%r8),%ecx - 6634f1b0: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f1b4: 85 c9 test %ecx,%ecx - 6634f1b6: 0f 9f c2 setg %dl - 6634f1b9: 3b 10 cmp (%rax),%edx - 6634f1bb: 74 3c je 6634f1f9 - 6634f1bd: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634f1c1: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f1c5: 8b 00 mov (%rax),%eax - 6634f1c7: 85 c0 test %eax,%eax - 6634f1c9: 75 2e jne 6634f1f9 - 6634f1cb: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634f1cf: 48 8b 0d 5a 87 00 00 mov 0x875a(%rip),%rcx # 66357930 - 6634f1d6: 4c 8b 05 43 87 00 00 mov 0x8743(%rip),%r8 # 66357920 - 6634f1dd: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f1e1: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f1e5: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f1eb: 48 63 01 movslq (%rcx),%rax - 6634f1ee: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f1f2: 44 89 09 mov %r9d,(%rcx) - 6634f1f5: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f1f9: 48 83 c4 28 add $0x28,%rsp - 6634f1fd: 5b pop %rbx - 6634f1fe: 5e pop %rsi - 6634f1ff: c3 retq - 6634f200: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634f204: 8b 4a 14 mov 0x14(%rdx),%ecx - 6634f207: 85 c9 test %ecx,%ecx - 6634f209: 74 ee je 6634f1f9 - 6634f20b: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f20f: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f213: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634f217: 41 29 08 sub %ecx,(%r8) - 6634f21a: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634f221: 31 d2 xor %edx,%edx - 6634f223: 45 8b 00 mov (%r8),%r8d - 6634f226: 45 85 c0 test %r8d,%r8d - 6634f229: 0f 9f c2 setg %dl - 6634f22c: 3b 10 cmp (%rax),%edx - 6634f22e: 75 8d jne 6634f1bd - 6634f230: eb c7 jmp 6634f1f9 - 6634f232: 0f 1f 40 00 nopl 0x0(%rax) - 6634f236: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f23d: 00 00 00 + 6634f137: 41 0f 9f c1 setg %r9b + 6634f13b: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f13f: 45 3b 08 cmp (%r8),%r9d + 6634f142: 74 31 je 6634f175 + 6634f144: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634f148: 4d 8b 40 38 mov 0x38(%r8),%r8 + 6634f14c: 45 8b 00 mov (%r8),%r8d + 6634f14f: 45 85 c0 test %r8d,%r8d + 6634f152: 75 21 jne 6634f175 + 6634f154: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634f158: 4d 8b 48 38 mov 0x38(%r8),%r9 + 6634f15c: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f160: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f167: 4c 63 01 movslq (%rcx),%r8 + 6634f16a: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f16e: 44 89 19 mov %r11d,(%rcx) + 6634f171: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634f175: 44 8b 42 20 mov 0x20(%rdx),%r8d + 6634f179: 45 85 c0 test %r8d,%r8d + 6634f17c: 74 57 je 6634f1d5 + 6634f17e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634f182: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634f186: 45 29 01 sub %r8d,(%r9) + 6634f189: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634f190: 41 8b 39 mov (%r9),%edi + 6634f193: 45 31 c9 xor %r9d,%r9d + 6634f196: 4c 8b 40 40 mov 0x40(%rax),%r8 + 6634f19a: 85 ff test %edi,%edi + 6634f19c: 41 0f 9f c1 setg %r9b + 6634f1a0: 45 3b 08 cmp (%r8),%r9d + 6634f1a3: 74 30 je 6634f1d5 + 6634f1a5: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634f1a9: 4d 8b 40 40 mov 0x40(%r8),%r8 + 6634f1ad: 41 8b 30 mov (%r8),%esi + 6634f1b0: 85 f6 test %esi,%esi + 6634f1b2: 75 21 jne 6634f1d5 + 6634f1b4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634f1b8: 4d 8b 48 40 mov 0x40(%r8),%r9 + 6634f1bc: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f1c0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f1c7: 4c 63 01 movslq (%rcx),%r8 + 6634f1ca: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f1ce: 44 89 19 mov %r11d,(%rcx) + 6634f1d1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634f1d5: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634f1d9: 45 85 c0 test %r8d,%r8d + 6634f1dc: 74 59 je 6634f237 + 6634f1de: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634f1e2: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634f1e6: 45 29 01 sub %r8d,(%r9) + 6634f1e9: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634f1f0: 45 8b 19 mov (%r9),%r11d + 6634f1f3: 45 31 c9 xor %r9d,%r9d + 6634f1f6: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634f1fa: 45 85 db test %r11d,%r11d + 6634f1fd: 41 0f 9f c1 setg %r9b + 6634f201: 45 3b 08 cmp (%r8),%r9d + 6634f204: 74 31 je 6634f237 + 6634f206: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634f20a: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634f20e: 45 8b 08 mov (%r8),%r9d + 6634f211: 45 85 c9 test %r9d,%r9d + 6634f214: 75 21 jne 6634f237 + 6634f216: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634f21a: 4d 8b 48 48 mov 0x48(%r8),%r9 + 6634f21e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f222: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f229: 4c 63 01 movslq (%rcx),%r8 + 6634f22c: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f230: 44 89 19 mov %r11d,(%rcx) + 6634f233: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634f237: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634f23b: 45 85 c0 test %r8d,%r8d + 6634f23e: 0f 84 b2 fe ff ff je 6634f0f6 + 6634f244: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634f248: 48 8b 40 50 mov 0x50(%rax),%rax + 6634f24c: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634f250: 45 29 01 sub %r8d,(%r9) + 6634f253: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634f25a: 31 d2 xor %edx,%edx + 6634f25c: 45 8b 01 mov (%r9),%r8d + 6634f25f: 45 85 c0 test %r8d,%r8d + 6634f262: 0f 9f c2 setg %dl + 6634f265: 3b 10 cmp (%rax),%edx + 6634f267: 0f 84 89 fe ff ff je 6634f0f6 + 6634f26d: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634f271: 48 8b 40 50 mov 0x50(%rax),%rax + 6634f275: 8b 00 mov (%rax),%eax + 6634f277: 85 c0 test %eax,%eax + 6634f279: 0f 85 77 fe ff ff jne 6634f0f6 + 6634f27f: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634f283: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634f287: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f28b: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f291: 48 63 01 movslq (%rcx),%rax + 6634f294: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634f298: 44 89 01 mov %r8d,(%rcx) + 6634f29b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634f29f: 48 83 c4 20 add $0x20,%rsp + 6634f2a3: 5b pop %rbx + 6634f2a4: 5e pop %rsi + 6634f2a5: 5f pop %rdi + 6634f2a6: c3 retq + 6634f2a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f2ae: 00 00 + 6634f2b0: 48 8d 15 49 4d 00 00 lea 0x4d49(%rip),%rdx # 66354000 <.rdata> + 6634f2b7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634f2bd: 48 8d 0d 4c 4d 00 00 lea 0x4d4c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634f2c4: e8 47 2f 00 00 callq 66352210 <_assert> + 6634f2c9: e9 84 fc ff ff jmpq 6634ef52 + 6634f2ce: 66 90 xchg %ax,%ax + 6634f2d0: 48 8d 15 29 4d 00 00 lea 0x4d29(%rip),%rdx # 66354000 <.rdata> + 6634f2d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634f2dd: 48 8d 0d 2c 4d 00 00 lea 0x4d2c(%rip),%rcx # 66354010 <.rdata+0x10> + 6634f2e4: e8 27 2f 00 00 callq 66352210 <_assert> + 6634f2e9: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634f2ed: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634f2f1: e9 c6 fc ff ff jmpq 6634efbc + 6634f2f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f2fd: 00 00 00 + 6634f300: 48 8d 15 f9 4c 00 00 lea 0x4cf9(%rip),%rdx # 66354000 <.rdata> + 6634f307: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634f30d: 48 8d 0d fc 4c 00 00 lea 0x4cfc(%rip),%rcx # 66354010 <.rdata+0x10> + 6634f314: e8 f7 2e 00 00 callq 66352210 <_assert> + 6634f319: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634f31d: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634f321: e9 fa fc ff ff jmpq 6634f020 + 6634f326: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f32d: 00 00 00 + 6634f330: 48 8d 15 c9 4c 00 00 lea 0x4cc9(%rip),%rdx # 66354000 <.rdata> + 6634f337: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634f33d: 48 8d 0d cc 4c 00 00 lea 0x4ccc(%rip),%rcx # 66354010 <.rdata+0x10> + 6634f344: e8 c7 2e 00 00 callq 66352210 <_assert> + 6634f349: 48 8b 53 40 mov 0x40(%rbx),%rdx + 6634f34d: 48 8b 43 08 mov 0x8(%rbx),%rax + 6634f351: e9 2c fd ff ff jmpq 6634f082 + 6634f356: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f35d: 00 00 00 + 6634f360: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634f364: 4c 8b 0d c5 85 00 00 mov 0x85c5(%rip),%r9 # 66357930 + 6634f36b: 4c 8b 15 ae 85 00 00 mov 0x85ae(%rip),%r10 # 66357920 + 6634f372: 4c 8b 41 48 mov 0x48(%rcx),%r8 + 6634f376: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634f37a: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634f380: 49 63 09 movslq (%r9),%rcx + 6634f383: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634f387: 45 89 19 mov %r11d,(%r9) + 6634f38a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634f38e: e9 da fc ff ff jmpq 6634f06d + 6634f393: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634f397: 4c 8b 0d 92 85 00 00 mov 0x8592(%rip),%r9 # 66357930 + 6634f39e: 4c 8b 15 7b 85 00 00 mov 0x857b(%rip),%r10 # 66357920 + 6634f3a5: 4c 8b 41 40 mov 0x40(%rcx),%r8 + 6634f3a9: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634f3ad: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634f3b3: 49 63 09 movslq (%r9),%rcx + 6634f3b6: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634f3ba: 45 89 19 mov %r11d,(%r9) + 6634f3bd: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634f3c1: e9 46 fc ff ff jmpq 6634f00c + 6634f3c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f3cd: 00 00 00 + 6634f3d0: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634f3d4: 4c 8b 0d 55 85 00 00 mov 0x8555(%rip),%r9 # 66357930 + 6634f3db: 4c 8b 15 3e 85 00 00 mov 0x853e(%rip),%r10 # 66357920 + 6634f3e2: 4c 8b 41 38 mov 0x38(%rcx),%r8 + 6634f3e6: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634f3ea: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634f3f0: 49 63 09 movslq (%r9),%rcx + 6634f3f3: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634f3f7: 45 89 19 mov %r11d,(%r9) + 6634f3fa: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634f3fe: e9 a5 fb ff ff jmpq 6634efa8 + 6634f403: 0f 1f 00 nopl (%rax) + 6634f406: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f40d: 00 00 00 -000000006634f240 : - 6634f240: 56 push %rsi - 6634f241: 53 push %rbx - 6634f242: 48 83 ec 28 sub $0x28,%rsp - 6634f246: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f24a: 48 8b 50 58 mov 0x58(%rax),%rdx - 6634f24e: 48 89 ce mov %rcx,%rsi - 6634f251: 44 8b 0a mov (%rdx),%r9d - 6634f254: 45 85 c9 test %r9d,%r9d - 6634f257: 0f 84 f8 00 00 00 je 6634f355 - 6634f25d: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f261: 8b 0a mov (%rdx),%ecx - 6634f263: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f267: 8b 12 mov (%rdx),%edx - 6634f269: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634f26c: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634f270: 8b 09 mov (%rcx),%ecx - 6634f272: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634f275: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634f279: 8b 09 mov (%rcx),%ecx - 6634f27b: 8d 1c ca lea (%rdx,%rcx,8),%ebx - 6634f27e: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f282: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634f286: 8b 12 mov (%rdx),%edx - 6634f288: c1 e2 04 shl $0x4,%edx - 6634f28b: 01 d3 add %edx,%ebx - 6634f28d: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634f291: 8b 12 mov (%rdx),%edx - 6634f293: c1 e2 05 shl $0x5,%edx - 6634f296: 01 da add %ebx,%edx - 6634f298: 8b 19 mov (%rcx),%ebx - 6634f29a: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634f29e: 48 8b 40 48 mov 0x48(%rax),%rax - 6634f2a2: c1 e3 06 shl $0x6,%ebx - 6634f2a5: 01 da add %ebx,%edx - 6634f2a7: 8b 19 mov (%rcx),%ebx - 6634f2a9: 8b 00 mov (%rax),%eax - 6634f2ab: c1 e3 07 shl $0x7,%ebx - 6634f2ae: 01 d3 add %edx,%ebx - 6634f2b0: c1 e0 08 shl $0x8,%eax - 6634f2b3: 01 c3 add %eax,%ebx - 6634f2b5: 78 05 js 6634f2bc - 6634f2b7: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634f2ba: 7c 19 jl 6634f2d5 - 6634f2bc: 48 8d 15 3d 4d 00 00 lea 0x4d3d(%rip),%rdx # 66354000 <.rdata> - 6634f2c3: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f2c9: 48 8d 0d 40 4d 00 00 lea 0x4d40(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f2d0: e8 7b 2c 00 00 callq 66351f50 <_assert> - 6634f2d5: 48 8b 56 40 mov 0x40(%rsi),%rdx - 6634f2d9: 48 63 c3 movslq %ebx,%rax - 6634f2dc: 8b 04 82 mov (%rdx,%rax,4),%eax - 6634f2df: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634f2e3: 8b 4a 28 mov 0x28(%rdx),%ecx - 6634f2e6: 39 c8 cmp %ecx,%eax - 6634f2e8: 74 64 je 6634f34e - 6634f2ea: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f2ee: 89 c3 mov %eax,%ebx - 6634f2f0: 29 cb sub %ecx,%ebx - 6634f2f2: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634f2f6: 41 01 18 add %ebx,(%r8) - 6634f2f9: 89 42 28 mov %eax,0x28(%rdx) - 6634f2fc: 31 d2 xor %edx,%edx - 6634f2fe: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634f302: 41 8b 08 mov (%r8),%ecx - 6634f305: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f309: 85 c9 test %ecx,%ecx - 6634f30b: 0f 9f c2 setg %dl - 6634f30e: 3b 10 cmp (%rax),%edx - 6634f310: 74 3c je 6634f34e - 6634f312: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634f316: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f31a: 8b 00 mov (%rax),%eax - 6634f31c: 85 c0 test %eax,%eax - 6634f31e: 75 2e jne 6634f34e - 6634f320: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634f324: 48 8b 0d 05 86 00 00 mov 0x8605(%rip),%rcx # 66357930 - 6634f32b: 4c 8b 05 ee 85 00 00 mov 0x85ee(%rip),%r8 # 66357920 - 6634f332: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634f336: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f33a: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f340: 48 63 01 movslq (%rcx),%rax - 6634f343: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f347: 44 89 09 mov %r9d,(%rcx) - 6634f34a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f34e: 48 83 c4 28 add $0x28,%rsp - 6634f352: 5b pop %rbx - 6634f353: 5e pop %rsi - 6634f354: c3 retq - 6634f355: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634f359: 8b 4a 28 mov 0x28(%rdx),%ecx - 6634f35c: 85 c9 test %ecx,%ecx - 6634f35e: 74 ee je 6634f34e - 6634f360: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f364: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f368: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634f36c: 41 29 08 sub %ecx,(%r8) - 6634f36f: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634f376: 31 d2 xor %edx,%edx - 6634f378: 45 8b 00 mov (%r8),%r8d - 6634f37b: 45 85 c0 test %r8d,%r8d - 6634f37e: 0f 9f c2 setg %dl - 6634f381: 3b 10 cmp (%rax),%edx - 6634f383: 75 8d jne 6634f312 - 6634f385: eb c7 jmp 6634f34e - 6634f387: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634f38e: 00 00 +000000006634f410 : + 6634f410: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f414: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f418: 4c 8b 48 20 mov 0x20(%rax),%r9 + 6634f41c: 44 8b 42 14 mov 0x14(%rdx),%r8d + 6634f420: 45 8b 09 mov (%r9),%r9d + 6634f423: 45 85 c9 test %r9d,%r9d + 6634f426: 75 68 jne 6634f490 + 6634f428: 45 85 c0 test %r8d,%r8d + 6634f42b: 74 61 je 6634f48e + 6634f42d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f431: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634f435: 45 29 01 sub %r8d,(%r9) + 6634f438: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634f43f: 41 8b 11 mov (%r9),%edx + 6634f442: 85 d2 test %edx,%edx + 6634f444: 48 8b 40 28 mov 0x28(%rax),%rax + 6634f448: 0f 9f c2 setg %dl + 6634f44b: 0f b6 d2 movzbl %dl,%edx + 6634f44e: 3b 10 cmp (%rax),%edx + 6634f450: 74 3c je 6634f48e + 6634f452: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f456: 48 8b 40 28 mov 0x28(%rax),%rax + 6634f45a: 8b 00 mov (%rax),%eax + 6634f45c: 85 c0 test %eax,%eax + 6634f45e: 75 2e jne 6634f48e + 6634f460: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f464: 48 8b 0d c5 84 00 00 mov 0x84c5(%rip),%rcx # 66357930 + 6634f46b: 4c 8b 05 ae 84 00 00 mov 0x84ae(%rip),%r8 # 66357920 + 6634f472: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634f476: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f47a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f480: 48 63 01 movslq (%rcx),%rax + 6634f483: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f487: 44 89 09 mov %r9d,(%rcx) + 6634f48a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f48e: c3 retq + 6634f48f: 90 nop + 6634f490: 4c 8b 48 08 mov 0x8(%rax),%r9 + 6634f494: 45 8b 09 mov (%r9),%r9d + 6634f497: 41 83 c1 02 add $0x2,%r9d + 6634f49b: 4d 63 c9 movslq %r9d,%r9 + 6634f49e: 4e 8b 0c c8 mov (%rax,%r9,8),%r9 + 6634f4a2: 45 8b 09 mov (%r9),%r9d + 6634f4a5: 45 39 c1 cmp %r8d,%r9d + 6634f4a8: 74 e4 je 6634f48e + 6634f4aa: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f4ae: 45 89 cb mov %r9d,%r11d + 6634f4b1: 45 29 c3 sub %r8d,%r11d + 6634f4b4: 4d 8b 52 28 mov 0x28(%r10),%r10 + 6634f4b8: 45 01 1a add %r11d,(%r10) + 6634f4bb: 44 89 4a 14 mov %r9d,0x14(%rdx) + 6634f4bf: 45 8b 02 mov (%r10),%r8d + 6634f4c2: 45 85 c0 test %r8d,%r8d + 6634f4c5: e9 7a ff ff ff jmpq 6634f444 + 6634f4ca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -000000006634f390 : - 6634f390: 56 push %rsi - 6634f391: 53 push %rbx - 6634f392: 48 83 ec 28 sub $0x28,%rsp - 6634f396: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f39a: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634f39e: 48 89 ce mov %rcx,%rsi - 6634f3a1: 44 8b 0a mov (%rdx),%r9d - 6634f3a4: 45 85 c9 test %r9d,%r9d - 6634f3a7: 0f 84 f3 00 00 00 je 6634f4a0 - 6634f3ad: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f3b1: 8b 0a mov (%rdx),%ecx - 6634f3b3: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f3b7: 8b 12 mov (%rdx),%edx - 6634f3b9: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634f3bc: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634f3c0: 8b 09 mov (%rcx),%ecx - 6634f3c2: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634f3c5: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634f3c9: 8b 09 mov (%rcx),%ecx - 6634f3cb: 8d 1c ca lea (%rdx,%rcx,8),%ebx - 6634f3ce: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f3d2: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634f3d6: 8b 12 mov (%rdx),%edx - 6634f3d8: c1 e2 04 shl $0x4,%edx - 6634f3db: 01 da add %ebx,%edx - 6634f3dd: 8b 19 mov (%rcx),%ebx - 6634f3df: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634f3e3: 48 8b 40 40 mov 0x40(%rax),%rax - 6634f3e7: c1 e3 05 shl $0x5,%ebx - 6634f3ea: 01 da add %ebx,%edx - 6634f3ec: 8b 19 mov (%rcx),%ebx - 6634f3ee: 8b 00 mov (%rax),%eax - 6634f3f0: c1 e3 06 shl $0x6,%ebx - 6634f3f3: 01 d3 add %edx,%ebx - 6634f3f5: c1 e0 07 shl $0x7,%eax - 6634f3f8: 01 c3 add %eax,%ebx - 6634f3fa: 78 05 js 6634f401 - 6634f3fc: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634f3ff: 7c 19 jl 6634f41a - 6634f401: 48 8d 15 f8 4b 00 00 lea 0x4bf8(%rip),%rdx # 66354000 <.rdata> - 6634f408: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f40e: 48 8d 0d fb 4b 00 00 lea 0x4bfb(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f415: e8 36 2b 00 00 callq 66351f50 <_assert> - 6634f41a: 48 8b 56 40 mov 0x40(%rsi),%rdx - 6634f41e: 48 63 c3 movslq %ebx,%rax - 6634f421: 8b 04 82 mov (%rdx,%rax,4),%eax - 6634f424: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634f428: 8b 4a 24 mov 0x24(%rdx),%ecx - 6634f42b: 39 c8 cmp %ecx,%eax - 6634f42d: 74 64 je 6634f493 - 6634f42f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f433: 89 c3 mov %eax,%ebx - 6634f435: 29 cb sub %ecx,%ebx - 6634f437: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634f43b: 41 01 18 add %ebx,(%r8) - 6634f43e: 89 42 24 mov %eax,0x24(%rdx) - 6634f441: 31 d2 xor %edx,%edx - 6634f443: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634f447: 41 8b 08 mov (%r8),%ecx - 6634f44a: 48 8b 40 48 mov 0x48(%rax),%rax - 6634f44e: 85 c9 test %ecx,%ecx - 6634f450: 0f 9f c2 setg %dl - 6634f453: 3b 10 cmp (%rax),%edx - 6634f455: 74 3c je 6634f493 - 6634f457: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634f45b: 48 8b 40 48 mov 0x48(%rax),%rax - 6634f45f: 8b 00 mov (%rax),%eax - 6634f461: 85 c0 test %eax,%eax - 6634f463: 75 2e jne 6634f493 - 6634f465: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634f469: 48 8b 0d c0 84 00 00 mov 0x84c0(%rip),%rcx # 66357930 - 6634f470: 4c 8b 05 a9 84 00 00 mov 0x84a9(%rip),%r8 # 66357920 - 6634f477: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634f47b: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f47f: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f485: 48 63 01 movslq (%rcx),%rax - 6634f488: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f48c: 44 89 09 mov %r9d,(%rcx) - 6634f48f: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f493: 48 83 c4 28 add $0x28,%rsp - 6634f497: 5b pop %rbx - 6634f498: 5e pop %rsi - 6634f499: c3 retq - 6634f49a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634f4a0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634f4a4: 8b 4a 24 mov 0x24(%rdx),%ecx - 6634f4a7: 85 c9 test %ecx,%ecx - 6634f4a9: 74 e8 je 6634f493 - 6634f4ab: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f4af: 48 8b 40 48 mov 0x48(%rax),%rax - 6634f4b3: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634f4b7: 41 29 08 sub %ecx,(%r8) - 6634f4ba: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634f4c1: 31 d2 xor %edx,%edx - 6634f4c3: 45 8b 00 mov (%r8),%r8d - 6634f4c6: 45 85 c0 test %r8d,%r8d - 6634f4c9: 0f 9f c2 setg %dl - 6634f4cc: 3b 10 cmp (%rax),%edx - 6634f4ce: 75 87 jne 6634f457 - 6634f4d0: eb c1 jmp 6634f493 - 6634f4d2: 0f 1f 40 00 nopl 0x0(%rax) - 6634f4d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f4dd: 00 00 00 +000000006634f4d0 : + 6634f4d0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f4d4: 4c 8b 49 08 mov 0x8(%rcx),%r9 + 6634f4d8: 48 8b 90 38 02 00 00 mov 0x238(%rax),%rdx + 6634f4df: 45 8b 91 20 01 00 00 mov 0x120(%r9),%r10d + 6634f4e6: 44 8b 1a mov (%rdx),%r11d + 6634f4e9: 45 85 db test %r11d,%r11d + 6634f4ec: 0f 84 ce 00 00 00 je 6634f5c0 + 6634f4f2: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634f4f6: 44 8b 02 mov (%rdx),%r8d + 6634f4f9: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634f4fd: 8b 12 mov (%rdx),%edx + 6634f4ff: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634f503: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634f507: 45 8b 00 mov (%r8),%r8d + 6634f50a: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634f50e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634f512: 45 8b 00 mov (%r8),%r8d + 6634f515: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d + 6634f519: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634f51d: 8b 12 mov (%rdx),%edx + 6634f51f: c1 e2 04 shl $0x4,%edx + 6634f522: 44 01 c2 add %r8d,%edx + 6634f525: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634f529: 45 8b 00 mov (%r8),%r8d + 6634f52c: 41 c1 e0 05 shl $0x5,%r8d + 6634f530: 42 8d 54 02 07 lea 0x7(%rdx,%r8,1),%edx + 6634f535: 48 63 d2 movslq %edx,%rdx + 6634f538: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634f53c: 8b 12 mov (%rdx),%edx + 6634f53e: 44 39 d2 cmp %r10d,%edx + 6634f541: 74 74 je 6634f5b7 + 6634f543: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634f547: 41 89 d3 mov %edx,%r11d + 6634f54a: 45 29 d3 sub %r10d,%r11d + 6634f54d: 4d 8b 80 40 02 00 00 mov 0x240(%r8),%r8 + 6634f554: 45 01 18 add %r11d,(%r8) + 6634f557: 41 89 91 20 01 00 00 mov %edx,0x120(%r9) + 6634f55e: 45 8b 00 mov (%r8),%r8d + 6634f561: 45 85 c0 test %r8d,%r8d + 6634f564: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax + 6634f56b: 0f 9f c2 setg %dl + 6634f56e: 0f b6 d2 movzbl %dl,%edx + 6634f571: 3b 10 cmp (%rax),%edx + 6634f573: 74 42 je 6634f5b7 + 6634f575: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f579: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax + 6634f580: 8b 00 mov (%rax),%eax + 6634f582: 85 c0 test %eax,%eax + 6634f584: 75 31 jne 6634f5b7 + 6634f586: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f58a: 48 8b 0d 9f 83 00 00 mov 0x839f(%rip),%rcx # 66357930 + 6634f591: 4c 8b 05 88 83 00 00 mov 0x8388(%rip),%r8 # 66357920 + 6634f598: 48 8b 90 40 02 00 00 mov 0x240(%rax),%rdx + 6634f59f: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f5a3: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f5a9: 48 63 01 movslq (%rcx),%rax + 6634f5ac: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f5b0: 44 89 09 mov %r9d,(%rcx) + 6634f5b3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f5b7: c3 retq + 6634f5b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634f5bf: 00 + 6634f5c0: 45 85 d2 test %r10d,%r10d + 6634f5c3: 74 f2 je 6634f5b7 + 6634f5c5: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634f5c9: 48 8b 92 40 02 00 00 mov 0x240(%rdx),%rdx + 6634f5d0: 44 29 12 sub %r10d,(%rdx) + 6634f5d3: 41 c7 81 20 01 00 00 movl $0x0,0x120(%r9) + 6634f5da: 00 00 00 00 + 6634f5de: 8b 12 mov (%rdx),%edx + 6634f5e0: 85 d2 test %edx,%edx + 6634f5e2: eb 80 jmp 6634f564 + 6634f5e4: 66 90 xchg %ax,%ax + 6634f5e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f5ed: 00 00 00 -000000006634f4e0 : - 6634f4e0: 56 push %rsi - 6634f4e1: 53 push %rbx - 6634f4e2: 48 83 ec 28 sub $0x28,%rsp - 6634f4e6: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634f4ea: 48 8b 42 40 mov 0x40(%rdx),%rax - 6634f4ee: 48 89 ce mov %rcx,%rsi - 6634f4f1: 44 8b 08 mov (%rax),%r9d - 6634f4f4: 45 85 c9 test %r9d,%r9d - 6634f4f7: 0f 84 d7 00 00 00 je 6634f5d4 - 6634f4fd: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f501: 8b 08 mov (%rax),%ecx - 6634f503: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634f507: 8b 00 mov (%rax),%eax - 6634f509: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634f50c: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634f510: 8b 09 mov (%rcx),%ecx - 6634f512: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634f515: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 6634f519: 8b 09 mov (%rcx),%ecx - 6634f51b: 8d 04 c8 lea (%rax,%rcx,8),%eax - 6634f51e: 48 8b 4a 28 mov 0x28(%rdx),%rcx - 6634f522: 8b 19 mov (%rcx),%ebx - 6634f524: c1 e3 04 shl $0x4,%ebx - 6634f527: 01 c3 add %eax,%ebx - 6634f529: 48 8b 42 30 mov 0x30(%rdx),%rax - 6634f52d: 8b 00 mov (%rax),%eax - 6634f52f: c1 e0 05 shl $0x5,%eax - 6634f532: 01 c3 add %eax,%ebx - 6634f534: 78 05 js 6634f53b - 6634f536: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634f539: 7c 19 jl 6634f554 - 6634f53b: 48 8d 15 be 4a 00 00 lea 0x4abe(%rip),%rdx # 66354000 <.rdata> - 6634f542: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f548: 48 8d 0d c1 4a 00 00 lea 0x4ac1(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f54f: e8 fc 29 00 00 callq 66351f50 <_assert> - 6634f554: 48 8b 56 40 mov 0x40(%rsi),%rdx - 6634f558: 48 63 c3 movslq %ebx,%rax - 6634f55b: 8b 04 82 mov (%rdx,%rax,4),%eax - 6634f55e: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634f562: 8b 4a 1c mov 0x1c(%rdx),%ecx - 6634f565: 39 c8 cmp %ecx,%eax - 6634f567: 74 64 je 6634f5cd - 6634f569: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f56d: 89 c3 mov %eax,%ebx - 6634f56f: 29 cb sub %ecx,%ebx - 6634f571: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634f575: 41 01 18 add %ebx,(%r8) - 6634f578: 89 42 1c mov %eax,0x1c(%rdx) - 6634f57b: 31 d2 xor %edx,%edx - 6634f57d: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634f581: 41 8b 08 mov (%r8),%ecx - 6634f584: 48 8b 40 38 mov 0x38(%rax),%rax - 6634f588: 85 c9 test %ecx,%ecx - 6634f58a: 0f 9f c2 setg %dl - 6634f58d: 3b 10 cmp (%rax),%edx - 6634f58f: 74 3c je 6634f5cd - 6634f591: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634f595: 48 8b 40 38 mov 0x38(%rax),%rax - 6634f599: 8b 00 mov (%rax),%eax - 6634f59b: 85 c0 test %eax,%eax - 6634f59d: 75 2e jne 6634f5cd - 6634f59f: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634f5a3: 48 8b 0d 86 83 00 00 mov 0x8386(%rip),%rcx # 66357930 - 6634f5aa: 4c 8b 05 6f 83 00 00 mov 0x836f(%rip),%r8 # 66357920 - 6634f5b1: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634f5b5: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f5b9: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f5bf: 48 63 01 movslq (%rcx),%rax - 6634f5c2: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f5c6: 44 89 09 mov %r9d,(%rcx) - 6634f5c9: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f5cd: 48 83 c4 28 add $0x28,%rsp - 6634f5d1: 5b pop %rbx - 6634f5d2: 5e pop %rsi - 6634f5d3: c3 retq - 6634f5d4: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634f5d8: 8b 48 1c mov 0x1c(%rax),%ecx - 6634f5db: 85 c9 test %ecx,%ecx - 6634f5dd: 74 ee je 6634f5cd - 6634f5df: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634f5e3: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634f5e7: 41 29 08 sub %ecx,(%r8) - 6634f5ea: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634f5f1: 31 c9 xor %ecx,%ecx - 6634f5f3: 45 8b 00 mov (%r8),%r8d - 6634f5f6: 48 8b 42 38 mov 0x38(%rdx),%rax - 6634f5fa: 45 85 c0 test %r8d,%r8d - 6634f5fd: 0f 9f c1 setg %cl - 6634f600: 3b 08 cmp (%rax),%ecx - 6634f602: 75 8d jne 6634f591 - 6634f604: eb c7 jmp 6634f5cd - 6634f606: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f60d: 00 00 00 +000000006634f5f0 : + 6634f5f0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f5f4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634f5f8: 48 8b 90 30 01 00 00 mov 0x130(%rax),%rdx + 6634f5ff: 45 8b 88 9c 00 00 00 mov 0x9c(%r8),%r9d + 6634f606: 44 8b 12 mov (%rdx),%r10d + 6634f609: 45 85 d2 test %r10d,%r10d + 6634f60c: 0f 84 be 00 00 00 je 6634f6d0 + 6634f612: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634f616: 44 8b 12 mov (%rdx),%r10d + 6634f619: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634f61d: 8b 12 mov (%rdx),%edx + 6634f61f: 42 8d 14 52 lea (%rdx,%r10,2),%edx + 6634f623: 4c 8b 50 18 mov 0x18(%rax),%r10 + 6634f627: 45 8b 12 mov (%r10),%r10d + 6634f62a: 42 8d 14 92 lea (%rdx,%r10,4),%edx + 6634f62e: 4c 8b 50 20 mov 0x20(%rax),%r10 + 6634f632: 45 8b 12 mov (%r10),%r10d + 6634f635: 46 8d 14 d2 lea (%rdx,%r10,8),%r10d + 6634f639: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634f63d: 8b 12 mov (%rdx),%edx + 6634f63f: c1 e2 04 shl $0x4,%edx + 6634f642: 41 8d 54 12 06 lea 0x6(%r10,%rdx,1),%edx + 6634f647: 48 63 d2 movslq %edx,%rdx + 6634f64a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634f64e: 8b 12 mov (%rdx),%edx + 6634f650: 44 39 ca cmp %r9d,%edx + 6634f653: 74 74 je 6634f6c9 + 6634f655: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f659: 41 89 d3 mov %edx,%r11d + 6634f65c: 45 29 cb sub %r9d,%r11d + 6634f65f: 4d 8b 92 38 01 00 00 mov 0x138(%r10),%r10 + 6634f666: 45 01 1a add %r11d,(%r10) + 6634f669: 41 89 90 9c 00 00 00 mov %edx,0x9c(%r8) + 6634f670: 45 8b 02 mov (%r10),%r8d + 6634f673: 45 85 c0 test %r8d,%r8d + 6634f676: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax + 6634f67d: 0f 9f c2 setg %dl + 6634f680: 0f b6 d2 movzbl %dl,%edx + 6634f683: 3b 10 cmp (%rax),%edx + 6634f685: 74 42 je 6634f6c9 + 6634f687: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f68b: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax + 6634f692: 8b 00 mov (%rax),%eax + 6634f694: 85 c0 test %eax,%eax + 6634f696: 75 31 jne 6634f6c9 + 6634f698: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f69c: 48 8b 0d 8d 82 00 00 mov 0x828d(%rip),%rcx # 66357930 + 6634f6a3: 4c 8b 05 76 82 00 00 mov 0x8276(%rip),%r8 # 66357920 + 6634f6aa: 48 8b 90 38 01 00 00 mov 0x138(%rax),%rdx + 6634f6b1: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f6b5: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f6bb: 48 63 01 movslq (%rcx),%rax + 6634f6be: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f6c2: 44 89 09 mov %r9d,(%rcx) + 6634f6c5: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f6c9: c3 retq + 6634f6ca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 6634f6d0: 45 85 c9 test %r9d,%r9d + 6634f6d3: 74 f4 je 6634f6c9 + 6634f6d5: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634f6d9: 48 8b 92 38 01 00 00 mov 0x138(%rdx),%rdx + 6634f6e0: 44 29 0a sub %r9d,(%rdx) + 6634f6e3: 41 c7 80 9c 00 00 00 movl $0x0,0x9c(%r8) + 6634f6ea: 00 00 00 00 + 6634f6ee: 8b 12 mov (%rdx),%edx + 6634f6f0: 85 d2 test %edx,%edx + 6634f6f2: e9 7f ff ff ff jmpq 6634f676 + 6634f6f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f6fe: 00 00 -000000006634f610 : - 6634f610: 56 push %rsi - 6634f611: 53 push %rbx - 6634f612: 48 83 ec 28 sub $0x28,%rsp - 6634f616: 44 8b 49 38 mov 0x38(%rcx),%r9d - 6634f61a: 45 85 c9 test %r9d,%r9d - 6634f61d: 48 89 cb mov %rcx,%rbx - 6634f620: 7f 19 jg 6634f63b - 6634f622: 48 8d 15 d7 49 00 00 lea 0x49d7(%rip),%rdx # 66354000 <.rdata> - 6634f629: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f62f: 48 8d 0d da 49 00 00 lea 0x49da(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f636: e8 15 29 00 00 callq 66351f50 <_assert> - 6634f63b: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634f63f: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634f643: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634f647: 48 63 11 movslq (%rcx),%rdx - 6634f64a: 45 8b 00 mov (%r8),%r8d - 6634f64d: 45 85 c0 test %r8d,%r8d - 6634f650: 0f 85 9a 00 00 00 jne 6634f6f0 - 6634f656: 85 d2 test %edx,%edx - 6634f658: 75 07 jne 6634f661 - 6634f65a: 48 83 c4 28 add $0x28,%rsp - 6634f65e: 5b pop %rbx - 6634f65f: 5e pop %rsi - 6634f660: c3 retq - 6634f661: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 6634f665: 4d 8d 04 90 lea (%r8,%rdx,4),%r8 - 6634f669: 45 8b 08 mov (%r8),%r9d - 6634f66c: 45 85 c9 test %r9d,%r9d - 6634f66f: 74 66 je 6634f6d7 - 6634f671: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634f675: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634f679: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 - 6634f67d: 45 29 0a sub %r9d,(%r10) - 6634f680: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 6634f687: 45 31 c0 xor %r8d,%r8d - 6634f68a: 45 8b 0a mov (%r10),%r9d - 6634f68d: 45 85 c9 test %r9d,%r9d - 6634f690: 41 0f 9f c0 setg %r8b - 6634f694: 44 3b 00 cmp (%rax),%r8d - 6634f697: 74 3e je 6634f6d7 - 6634f699: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634f69d: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634f6a1: 44 8b 00 mov (%rax),%r8d - 6634f6a4: 45 85 c0 test %r8d,%r8d - 6634f6a7: 75 2e jne 6634f6d7 - 6634f6a9: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634f6ad: 4c 8b 05 7c 82 00 00 mov 0x827c(%rip),%r8 # 66357930 - 6634f6b4: 4c 8b 0d 65 82 00 00 mov 0x8265(%rip),%r9 # 66357920 - 6634f6bb: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f6bf: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f6c3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f6c9: 49 63 00 movslq (%r8),%rax - 6634f6cc: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634f6d0: 45 89 10 mov %r10d,(%r8) - 6634f6d3: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634f6d7: 8b 43 38 mov 0x38(%rbx),%eax - 6634f6da: 85 c0 test %eax,%eax - 6634f6dc: 0f 8e be 00 00 00 jle 6634f7a0 - 6634f6e2: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6634f6e8: 48 83 c4 28 add $0x28,%rsp - 6634f6ec: 5b pop %rbx - 6634f6ed: 5e pop %rsi - 6634f6ee: c3 retq - 6634f6ef: 90 nop - 6634f6f0: 48 8b 40 08 mov 0x8(%rax),%rax - 6634f6f4: 8b 30 mov (%rax),%esi - 6634f6f6: 83 c6 02 add $0x2,%esi - 6634f6f9: 39 d6 cmp %edx,%esi - 6634f6fb: 0f 84 59 ff ff ff je 6634f65a - 6634f701: 85 d2 test %edx,%edx - 6634f703: 0f 85 e8 00 00 00 jne 6634f7f1 - 6634f709: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634f70d: 48 63 c6 movslq %esi,%rax - 6634f710: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6634f714: 8b 0a mov (%rdx),%ecx - 6634f716: 83 f9 01 cmp $0x1,%ecx - 6634f719: 74 6e je 6634f789 - 6634f71b: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f71f: 41 b9 01 00 00 00 mov $0x1,%r9d - 6634f725: 41 29 c9 sub %ecx,%r9d - 6634f728: 31 c9 xor %ecx,%ecx - 6634f72a: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 6634f72e: 45 01 08 add %r9d,(%r8) - 6634f731: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6634f737: 41 8b 10 mov (%r8),%edx - 6634f73a: 85 d2 test %edx,%edx - 6634f73c: 48 8b 53 10 mov 0x10(%rbx),%rdx - 6634f740: 0f 9f c1 setg %cl - 6634f743: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f747: 3b 0a cmp (%rdx),%ecx - 6634f749: 74 3e je 6634f789 - 6634f74b: 48 8b 53 20 mov 0x20(%rbx),%rdx - 6634f74f: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f753: 44 8b 1a mov (%rdx),%r11d - 6634f756: 45 85 db test %r11d,%r11d - 6634f759: 75 2e jne 6634f789 - 6634f75b: 48 8b 53 28 mov 0x28(%rbx),%rdx - 6634f75f: 48 8b 0d ca 81 00 00 mov 0x81ca(%rip),%rcx # 66357930 - 6634f766: 4c 8b 05 b3 81 00 00 mov 0x81b3(%rip),%r8 # 66357920 - 6634f76d: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f771: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f775: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f77b: 48 63 01 movslq (%rcx),%rax - 6634f77e: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f782: 44 89 09 mov %r9d,(%rcx) - 6634f785: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f789: 44 8b 53 38 mov 0x38(%rbx),%r10d - 6634f78d: 45 85 d2 test %r10d,%r10d - 6634f790: 7e 3e jle 6634f7d0 - 6634f792: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634f796: 89 30 mov %esi,(%rax) - 6634f798: 48 83 c4 28 add $0x28,%rsp - 6634f79c: 5b pop %rbx - 6634f79d: 5e pop %rsi - 6634f79e: c3 retq - 6634f79f: 90 nop - 6634f7a0: 48 8d 0d 69 48 00 00 lea 0x4869(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f7a7: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634f7ad: 48 8d 15 4c 48 00 00 lea 0x484c(%rip),%rdx # 66354000 <.rdata> - 6634f7b4: e8 97 27 00 00 callq 66351f50 <_assert> - 6634f7b9: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634f7bd: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6634f7c3: e9 20 ff ff ff jmpq 6634f6e8 - 6634f7c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634f7cf: 00 - 6634f7d0: 48 8d 15 29 48 00 00 lea 0x4829(%rip),%rdx # 66354000 <.rdata> - 6634f7d7: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634f7dd: 48 8d 0d 2c 48 00 00 lea 0x482c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f7e4: e8 67 27 00 00 callq 66351f50 <_assert> - 6634f7e9: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634f7ed: 89 30 mov %esi,(%rax) - 6634f7ef: eb a7 jmp 6634f798 - 6634f7f1: 48 89 d9 mov %rbx,%rcx - 6634f7f4: e8 b7 1b ff ff callq 663413b0 - 6634f7f9: e9 0b ff ff ff jmpq 6634f709 - 6634f7fe: 66 90 xchg %ax,%ax +000000006634f700 : + 6634f700: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f704: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634f708: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634f70c: 45 8b 48 34 mov 0x34(%r8),%r9d + 6634f710: 44 8b 12 mov (%rdx),%r10d + 6634f713: 45 85 d2 test %r10d,%r10d + 6634f716: 0f 84 94 00 00 00 je 6634f7b0 + 6634f71c: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634f720: 44 8b 12 mov (%rdx),%r10d + 6634f723: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634f727: 8b 12 mov (%rdx),%edx + 6634f729: 42 8d 14 52 lea (%rdx,%r10,2),%edx + 6634f72d: 4c 8b 50 18 mov 0x18(%rax),%r10 + 6634f731: 45 8b 12 mov (%r10),%r10d + 6634f734: 42 8d 54 92 04 lea 0x4(%rdx,%r10,4),%edx + 6634f739: 48 63 d2 movslq %edx,%rdx + 6634f73c: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634f740: 8b 12 mov (%rdx),%edx + 6634f742: 44 39 ca cmp %r9d,%edx + 6634f745: 74 65 je 6634f7ac + 6634f747: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f74b: 41 89 d3 mov %edx,%r11d + 6634f74e: 45 29 cb sub %r9d,%r11d + 6634f751: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634f755: 45 01 1a add %r11d,(%r10) + 6634f758: 41 89 50 34 mov %edx,0x34(%r8) + 6634f75c: 45 8b 02 mov (%r10),%r8d + 6634f75f: 45 85 c0 test %r8d,%r8d + 6634f762: 48 8b 40 68 mov 0x68(%rax),%rax + 6634f766: 0f 9f c2 setg %dl + 6634f769: 0f b6 d2 movzbl %dl,%edx + 6634f76c: 3b 10 cmp (%rax),%edx + 6634f76e: 74 3c je 6634f7ac + 6634f770: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f774: 48 8b 40 68 mov 0x68(%rax),%rax + 6634f778: 8b 00 mov (%rax),%eax + 6634f77a: 85 c0 test %eax,%eax + 6634f77c: 75 2e jne 6634f7ac + 6634f77e: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f782: 48 8b 0d a7 81 00 00 mov 0x81a7(%rip),%rcx # 66357930 + 6634f789: 4c 8b 05 90 81 00 00 mov 0x8190(%rip),%r8 # 66357920 + 6634f790: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634f794: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f798: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f79e: 48 63 01 movslq (%rcx),%rax + 6634f7a1: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f7a5: 44 89 09 mov %r9d,(%rcx) + 6634f7a8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f7ac: c3 retq + 6634f7ad: 0f 1f 00 nopl (%rax) + 6634f7b0: 45 85 c9 test %r9d,%r9d + 6634f7b3: 74 f7 je 6634f7ac + 6634f7b5: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634f7b9: 48 8b 52 68 mov 0x68(%rdx),%rdx + 6634f7bd: 44 29 0a sub %r9d,(%rdx) + 6634f7c0: 41 c7 40 34 00 00 00 movl $0x0,0x34(%r8) + 6634f7c7: 00 + 6634f7c8: 8b 12 mov (%rdx),%edx + 6634f7ca: 85 d2 test %edx,%edx + 6634f7cc: eb 94 jmp 6634f762 + 6634f7ce: 66 90 xchg %ax,%ax -000000006634f800 : - 6634f800: 56 push %rsi - 6634f801: 53 push %rbx - 6634f802: 48 83 ec 28 sub $0x28,%rsp - 6634f806: 44 8b 49 38 mov 0x38(%rcx),%r9d - 6634f80a: 45 85 c9 test %r9d,%r9d - 6634f80d: 48 89 cb mov %rcx,%rbx - 6634f810: 7f 19 jg 6634f82b - 6634f812: 48 8d 15 e7 47 00 00 lea 0x47e7(%rip),%rdx # 66354000 <.rdata> - 6634f819: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f81f: 48 8d 0d ea 47 00 00 lea 0x47ea(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f826: e8 25 27 00 00 callq 66351f50 <_assert> - 6634f82b: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634f82f: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634f833: 4c 8b 80 30 01 00 00 mov 0x130(%rax),%r8 - 6634f83a: 48 63 11 movslq (%rcx),%rdx - 6634f83d: 45 8b 00 mov (%r8),%r8d - 6634f840: 45 85 c0 test %r8d,%r8d - 6634f843: 0f 84 e7 00 00 00 je 6634f930 - 6634f849: 48 8b 48 10 mov 0x10(%rax),%rcx - 6634f84d: 44 8b 01 mov (%rcx),%r8d - 6634f850: 48 8b 48 08 mov 0x8(%rax),%rcx - 6634f854: 8b 09 mov (%rcx),%ecx - 6634f856: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 6634f85a: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634f85e: 45 8b 00 mov (%r8),%r8d - 6634f861: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 6634f865: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634f869: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f86d: 45 8b 00 mov (%r8),%r8d - 6634f870: 8b 00 mov (%rax),%eax - 6634f872: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx - 6634f876: c1 e0 04 shl $0x4,%eax - 6634f879: 8d 74 01 06 lea 0x6(%rcx,%rax,1),%esi - 6634f87d: 39 d6 cmp %edx,%esi - 6634f87f: 0f 84 9b 00 00 00 je 6634f920 - 6634f885: 85 d2 test %edx,%edx - 6634f887: 0f 85 47 01 00 00 jne 6634f9d4 - 6634f88d: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634f891: 48 63 c6 movslq %esi,%rax - 6634f894: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6634f898: 8b 0a mov (%rdx),%ecx - 6634f89a: 83 f9 01 cmp $0x1,%ecx - 6634f89d: 74 6e je 6634f90d - 6634f89f: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f8a3: 41 b9 01 00 00 00 mov $0x1,%r9d - 6634f8a9: 41 29 c9 sub %ecx,%r9d - 6634f8ac: 31 c9 xor %ecx,%ecx - 6634f8ae: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 6634f8b2: 45 01 08 add %r9d,(%r8) - 6634f8b5: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6634f8bb: 41 8b 10 mov (%r8),%edx - 6634f8be: 85 d2 test %edx,%edx - 6634f8c0: 48 8b 53 10 mov 0x10(%rbx),%rdx - 6634f8c4: 0f 9f c1 setg %cl - 6634f8c7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f8cb: 3b 0a cmp (%rdx),%ecx - 6634f8cd: 74 3e je 6634f90d - 6634f8cf: 48 8b 53 20 mov 0x20(%rbx),%rdx - 6634f8d3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f8d7: 44 8b 1a mov (%rdx),%r11d - 6634f8da: 45 85 db test %r11d,%r11d - 6634f8dd: 75 2e jne 6634f90d - 6634f8df: 48 8b 53 28 mov 0x28(%rbx),%rdx - 6634f8e3: 48 8b 0d 46 80 00 00 mov 0x8046(%rip),%rcx # 66357930 - 6634f8ea: 4c 8b 05 2f 80 00 00 mov 0x802f(%rip),%r8 # 66357920 - 6634f8f1: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634f8f5: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f8f9: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f8ff: 48 63 01 movslq (%rcx),%rax - 6634f902: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f906: 44 89 09 mov %r9d,(%rcx) - 6634f909: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f90d: 44 8b 53 38 mov 0x38(%rbx),%r10d - 6634f911: 45 85 d2 test %r10d,%r10d - 6634f914: 0f 8e 96 00 00 00 jle 6634f9b0 - 6634f91a: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634f91e: 89 30 mov %esi,(%rax) - 6634f920: 48 83 c4 28 add $0x28,%rsp - 6634f924: 5b pop %rbx - 6634f925: 5e pop %rsi - 6634f926: c3 retq - 6634f927: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634f92e: 00 00 - 6634f930: 85 d2 test %edx,%edx - 6634f932: 74 ec je 6634f920 - 6634f934: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 6634f938: 4d 8d 0c 90 lea (%r8,%rdx,4),%r9 - 6634f93c: 45 8b 11 mov (%r9),%r10d - 6634f93f: 45 85 d2 test %r10d,%r10d - 6634f942: 74 38 je 6634f97c - 6634f944: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f948: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634f94c: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 6634f950: 45 29 10 sub %r10d,(%r8) - 6634f953: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 6634f95a: 45 8b 08 mov (%r8),%r9d - 6634f95d: 45 31 c0 xor %r8d,%r8d - 6634f960: 45 85 c9 test %r9d,%r9d - 6634f963: 41 0f 9f c0 setg %r8b - 6634f967: 44 3b 00 cmp (%rax),%r8d - 6634f96a: 74 10 je 6634f97c - 6634f96c: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634f970: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634f974: 44 8b 00 mov (%rax),%r8d - 6634f977: 45 85 c0 test %r8d,%r8d - 6634f97a: 74 65 je 6634f9e1 - 6634f97c: 8b 43 38 mov 0x38(%rbx),%eax - 6634f97f: 85 c0 test %eax,%eax - 6634f981: 7f 1d jg 6634f9a0 - 6634f983: 48 8d 0d 86 46 00 00 lea 0x4686(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f98a: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634f990: 48 8d 15 69 46 00 00 lea 0x4669(%rip),%rdx # 66354000 <.rdata> - 6634f997: e8 b4 25 00 00 callq 66351f50 <_assert> - 6634f99c: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634f9a0: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6634f9a6: 48 83 c4 28 add $0x28,%rsp - 6634f9aa: 5b pop %rbx - 6634f9ab: 5e pop %rsi - 6634f9ac: c3 retq - 6634f9ad: 0f 1f 00 nopl (%rax) - 6634f9b0: 48 8d 15 49 46 00 00 lea 0x4649(%rip),%rdx # 66354000 <.rdata> - 6634f9b7: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634f9bd: 48 8d 0d 4c 46 00 00 lea 0x464c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f9c4: e8 87 25 00 00 callq 66351f50 <_assert> - 6634f9c9: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634f9cd: 89 30 mov %esi,(%rax) - 6634f9cf: e9 4c ff ff ff jmpq 6634f920 - 6634f9d4: 48 89 d9 mov %rbx,%rcx - 6634f9d7: e8 d4 19 ff ff callq 663413b0 - 6634f9dc: e9 ac fe ff ff jmpq 6634f88d - 6634f9e1: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634f9e5: 4c 8b 05 44 7f 00 00 mov 0x7f44(%rip),%r8 # 66357930 - 6634f9ec: 4c 8b 0d 2d 7f 00 00 mov 0x7f2d(%rip),%r9 # 66357920 - 6634f9f3: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f9f7: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f9fb: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fa01: 49 63 00 movslq (%r8),%rax - 6634fa04: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634fa08: 45 89 10 mov %r10d,(%r8) - 6634fa0b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634fa0f: e9 68 ff ff ff jmpq 6634f97c - 6634fa14: 66 90 xchg %ax,%ax - 6634fa16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634fa1d: 00 00 00 +000000006634f7d0 : + 6634f7d0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f7d4: 4c 8b 49 08 mov 0x8(%rcx),%r9 + 6634f7d8: 48 8b 90 40 04 00 00 mov 0x440(%rax),%rdx + 6634f7df: 45 8b 91 24 02 00 00 mov 0x224(%r9),%r10d + 6634f7e6: 44 8b 1a mov (%rdx),%r11d + 6634f7e9: 45 85 db test %r11d,%r11d + 6634f7ec: 0f 84 d2 00 00 00 je 6634f8c4 + 6634f7f2: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634f7f6: 44 8b 02 mov (%rdx),%r8d + 6634f7f9: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634f7fd: 8b 12 mov (%rdx),%edx + 6634f7ff: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634f803: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634f807: 45 8b 00 mov (%r8),%r8d + 6634f80a: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634f80e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634f812: 45 8b 00 mov (%r8),%r8d + 6634f815: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d + 6634f819: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634f81d: 8b 12 mov (%rdx),%edx + 6634f81f: c1 e2 04 shl $0x4,%edx + 6634f822: 41 01 d0 add %edx,%r8d + 6634f825: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634f829: 8b 12 mov (%rdx),%edx + 6634f82b: c1 e2 05 shl $0x5,%edx + 6634f82e: 44 01 c2 add %r8d,%edx + 6634f831: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634f835: 45 8b 00 mov (%r8),%r8d + 6634f838: 41 c1 e0 06 shl $0x6,%r8d + 6634f83c: 42 8d 54 02 08 lea 0x8(%rdx,%r8,1),%edx + 6634f841: 48 63 d2 movslq %edx,%rdx + 6634f844: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634f848: 8b 12 mov (%rdx),%edx + 6634f84a: 44 39 d2 cmp %r10d,%edx + 6634f84d: 74 74 je 6634f8c3 + 6634f84f: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634f853: 41 89 d3 mov %edx,%r11d + 6634f856: 45 29 d3 sub %r10d,%r11d + 6634f859: 4d 8b 80 48 04 00 00 mov 0x448(%r8),%r8 + 6634f860: 45 01 18 add %r11d,(%r8) + 6634f863: 41 89 91 24 02 00 00 mov %edx,0x224(%r9) + 6634f86a: 45 8b 00 mov (%r8),%r8d + 6634f86d: 45 85 c0 test %r8d,%r8d + 6634f870: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax + 6634f877: 0f 9f c2 setg %dl + 6634f87a: 0f b6 d2 movzbl %dl,%edx + 6634f87d: 3b 10 cmp (%rax),%edx + 6634f87f: 74 42 je 6634f8c3 + 6634f881: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f885: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax + 6634f88c: 8b 00 mov (%rax),%eax + 6634f88e: 85 c0 test %eax,%eax + 6634f890: 75 31 jne 6634f8c3 + 6634f892: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f896: 48 8b 0d 93 80 00 00 mov 0x8093(%rip),%rcx # 66357930 + 6634f89d: 4c 8b 05 7c 80 00 00 mov 0x807c(%rip),%r8 # 66357920 + 6634f8a4: 48 8b 90 48 04 00 00 mov 0x448(%rax),%rdx + 6634f8ab: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f8af: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f8b5: 48 63 01 movslq (%rcx),%rax + 6634f8b8: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f8bc: 44 89 09 mov %r9d,(%rcx) + 6634f8bf: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f8c3: c3 retq + 6634f8c4: 45 85 d2 test %r10d,%r10d + 6634f8c7: 74 fa je 6634f8c3 + 6634f8c9: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634f8cd: 48 8b 92 48 04 00 00 mov 0x448(%rdx),%rdx + 6634f8d4: 44 29 12 sub %r10d,(%rdx) + 6634f8d7: 41 c7 81 24 02 00 00 movl $0x0,0x224(%r9) + 6634f8de: 00 00 00 00 + 6634f8e2: 8b 12 mov (%rdx),%edx + 6634f8e4: 85 d2 test %edx,%edx + 6634f8e6: eb 88 jmp 6634f870 + 6634f8e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634f8ef: 00 -000000006634fa20 : - 6634fa20: 56 push %rsi - 6634fa21: 53 push %rbx - 6634fa22: 48 83 ec 28 sub $0x28,%rsp - 6634fa26: 44 8b 49 38 mov 0x38(%rcx),%r9d - 6634fa2a: 45 85 c9 test %r9d,%r9d - 6634fa2d: 48 89 cb mov %rcx,%rbx - 6634fa30: 7f 19 jg 6634fa4b - 6634fa32: 48 8d 15 c7 45 00 00 lea 0x45c7(%rip),%rdx # 66354000 <.rdata> - 6634fa39: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fa3f: 48 8d 0d ca 45 00 00 lea 0x45ca(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fa46: e8 05 25 00 00 callq 66351f50 <_assert> - 6634fa4b: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634fa4f: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634fa53: 4c 8b 40 60 mov 0x60(%rax),%r8 - 6634fa57: 48 63 11 movslq (%rcx),%rdx - 6634fa5a: 45 8b 00 mov (%r8),%r8d - 6634fa5d: 45 85 c0 test %r8d,%r8d - 6634fa60: 0f 84 ca 00 00 00 je 6634fb30 - 6634fa66: 48 8b 48 10 mov 0x10(%rax),%rcx - 6634fa6a: 44 8b 01 mov (%rcx),%r8d - 6634fa6d: 48 8b 48 08 mov 0x8(%rax),%rcx - 6634fa71: 48 8b 40 18 mov 0x18(%rax),%rax - 6634fa75: 8b 09 mov (%rcx),%ecx - 6634fa77: 8b 00 mov (%rax),%eax - 6634fa79: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 6634fa7d: 8d 74 81 04 lea 0x4(%rcx,%rax,4),%esi - 6634fa81: 39 d6 cmp %edx,%esi - 6634fa83: 0f 84 9b 00 00 00 je 6634fb24 - 6634fa89: 85 d2 test %edx,%edx - 6634fa8b: 0f 85 43 01 00 00 jne 6634fbd4 - 6634fa91: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634fa95: 48 63 c6 movslq %esi,%rax - 6634fa98: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6634fa9c: 8b 0a mov (%rdx),%ecx - 6634fa9e: 83 f9 01 cmp $0x1,%ecx - 6634faa1: 74 6e je 6634fb11 - 6634faa3: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634faa7: 41 b9 01 00 00 00 mov $0x1,%r9d - 6634faad: 41 29 c9 sub %ecx,%r9d - 6634fab0: 31 c9 xor %ecx,%ecx - 6634fab2: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 6634fab6: 45 01 08 add %r9d,(%r8) - 6634fab9: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6634fabf: 41 8b 10 mov (%r8),%edx - 6634fac2: 85 d2 test %edx,%edx - 6634fac4: 48 8b 53 10 mov 0x10(%rbx),%rdx - 6634fac8: 0f 9f c1 setg %cl - 6634facb: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634facf: 3b 0a cmp (%rdx),%ecx - 6634fad1: 74 3e je 6634fb11 - 6634fad3: 48 8b 53 20 mov 0x20(%rbx),%rdx - 6634fad7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634fadb: 44 8b 1a mov (%rdx),%r11d - 6634fade: 45 85 db test %r11d,%r11d - 6634fae1: 75 2e jne 6634fb11 - 6634fae3: 48 8b 53 28 mov 0x28(%rbx),%rdx - 6634fae7: 48 8b 0d 42 7e 00 00 mov 0x7e42(%rip),%rcx # 66357930 - 6634faee: 4c 8b 05 2b 7e 00 00 mov 0x7e2b(%rip),%r8 # 66357920 - 6634faf5: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6634faf9: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fafd: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fb03: 48 63 01 movslq (%rcx),%rax - 6634fb06: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634fb0a: 44 89 09 mov %r9d,(%rcx) - 6634fb0d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634fb11: 44 8b 53 38 mov 0x38(%rbx),%r10d - 6634fb15: 45 85 d2 test %r10d,%r10d - 6634fb18: 0f 8e 92 00 00 00 jle 6634fbb0 - 6634fb1e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634fb22: 89 30 mov %esi,(%rax) - 6634fb24: 48 83 c4 28 add $0x28,%rsp - 6634fb28: 5b pop %rbx - 6634fb29: 5e pop %rsi - 6634fb2a: c3 retq - 6634fb2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634fb30: 85 d2 test %edx,%edx - 6634fb32: 74 f0 je 6634fb24 - 6634fb34: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 6634fb38: 4d 8d 0c 90 lea (%r8,%rdx,4),%r9 - 6634fb3c: 45 8b 11 mov (%r9),%r10d - 6634fb3f: 45 85 d2 test %r10d,%r10d - 6634fb42: 74 38 je 6634fb7c - 6634fb44: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634fb48: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fb4c: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 6634fb50: 45 29 10 sub %r10d,(%r8) - 6634fb53: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 6634fb5a: 45 8b 08 mov (%r8),%r9d - 6634fb5d: 45 31 c0 xor %r8d,%r8d - 6634fb60: 45 85 c9 test %r9d,%r9d - 6634fb63: 41 0f 9f c0 setg %r8b - 6634fb67: 44 3b 00 cmp (%rax),%r8d - 6634fb6a: 74 10 je 6634fb7c - 6634fb6c: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634fb70: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fb74: 44 8b 00 mov (%rax),%r8d - 6634fb77: 45 85 c0 test %r8d,%r8d - 6634fb7a: 74 65 je 6634fbe1 - 6634fb7c: 8b 43 38 mov 0x38(%rbx),%eax - 6634fb7f: 85 c0 test %eax,%eax - 6634fb81: 7f 1d jg 6634fba0 - 6634fb83: 48 8d 0d 86 44 00 00 lea 0x4486(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fb8a: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634fb90: 48 8d 15 69 44 00 00 lea 0x4469(%rip),%rdx # 66354000 <.rdata> - 6634fb97: e8 b4 23 00 00 callq 66351f50 <_assert> - 6634fb9c: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 6634fba0: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6634fba6: 48 83 c4 28 add $0x28,%rsp - 6634fbaa: 5b pop %rbx - 6634fbab: 5e pop %rsi - 6634fbac: c3 retq - 6634fbad: 0f 1f 00 nopl (%rax) - 6634fbb0: 48 8d 15 49 44 00 00 lea 0x4449(%rip),%rdx # 66354000 <.rdata> - 6634fbb7: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634fbbd: 48 8d 0d 4c 44 00 00 lea 0x444c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fbc4: e8 87 23 00 00 callq 66351f50 <_assert> - 6634fbc9: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634fbcd: 89 30 mov %esi,(%rax) - 6634fbcf: e9 50 ff ff ff jmpq 6634fb24 - 6634fbd4: 48 89 d9 mov %rbx,%rcx - 6634fbd7: e8 d4 17 ff ff callq 663413b0 - 6634fbdc: e9 b0 fe ff ff jmpq 6634fa91 - 6634fbe1: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634fbe5: 4c 8b 05 44 7d 00 00 mov 0x7d44(%rip),%r8 # 66357930 - 6634fbec: 4c 8b 0d 2d 7d 00 00 mov 0x7d2d(%rip),%r9 # 66357920 - 6634fbf3: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634fbf7: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fbfb: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fc01: 49 63 00 movslq (%r8),%rax - 6634fc04: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634fc08: 45 89 10 mov %r10d,(%r8) - 6634fc0b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634fc0f: e9 68 ff ff ff jmpq 6634fb7c - 6634fc14: 66 90 xchg %ax,%ax - 6634fc16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634fc1d: 00 00 00 +000000006634f8f0 : + 6634f8f0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f8f4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634f8f8: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx + 6634f8ff: 45 8b 48 58 mov 0x58(%r8),%r9d + 6634f903: 44 8b 12 mov (%rdx),%r10d + 6634f906: 45 85 d2 test %r10d,%r10d + 6634f909: 0f 84 b1 00 00 00 je 6634f9c0 + 6634f90f: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634f913: 44 8b 12 mov (%rdx),%r10d + 6634f916: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634f91a: 8b 12 mov (%rdx),%edx + 6634f91c: 42 8d 14 52 lea (%rdx,%r10,2),%edx + 6634f920: 4c 8b 50 18 mov 0x18(%rax),%r10 + 6634f924: 45 8b 12 mov (%r10),%r10d + 6634f927: 42 8d 14 92 lea (%rdx,%r10,4),%edx + 6634f92b: 4c 8b 50 20 mov 0x20(%rax),%r10 + 6634f92f: 45 8b 12 mov (%r10),%r10d + 6634f932: 42 8d 54 d2 05 lea 0x5(%rdx,%r10,8),%edx + 6634f937: 48 63 d2 movslq %edx,%rdx + 6634f93a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634f93e: 8b 12 mov (%rdx),%edx + 6634f940: 44 39 ca cmp %r9d,%edx + 6634f943: 74 71 je 6634f9b6 + 6634f945: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f949: 41 89 d3 mov %edx,%r11d + 6634f94c: 45 29 cb sub %r9d,%r11d + 6634f94f: 4d 8b 92 b0 00 00 00 mov 0xb0(%r10),%r10 + 6634f956: 45 01 1a add %r11d,(%r10) + 6634f959: 41 89 50 58 mov %edx,0x58(%r8) + 6634f95d: 45 8b 02 mov (%r10),%r8d + 6634f960: 45 85 c0 test %r8d,%r8d + 6634f963: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax + 6634f96a: 0f 9f c2 setg %dl + 6634f96d: 0f b6 d2 movzbl %dl,%edx + 6634f970: 3b 10 cmp (%rax),%edx + 6634f972: 74 42 je 6634f9b6 + 6634f974: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f978: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax + 6634f97f: 8b 00 mov (%rax),%eax + 6634f981: 85 c0 test %eax,%eax + 6634f983: 75 31 jne 6634f9b6 + 6634f985: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f989: 48 8b 0d a0 7f 00 00 mov 0x7fa0(%rip),%rcx # 66357930 + 6634f990: 4c 8b 05 89 7f 00 00 mov 0x7f89(%rip),%r8 # 66357920 + 6634f997: 48 8b 90 b0 00 00 00 mov 0xb0(%rax),%rdx + 6634f99e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f9a2: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f9a8: 48 63 01 movslq (%rcx),%rax + 6634f9ab: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f9af: 44 89 09 mov %r9d,(%rcx) + 6634f9b2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f9b6: c3 retq + 6634f9b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f9be: 00 00 + 6634f9c0: 45 85 c9 test %r9d,%r9d + 6634f9c3: 74 f1 je 6634f9b6 + 6634f9c5: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634f9c9: 48 8b 92 b0 00 00 00 mov 0xb0(%rdx),%rdx + 6634f9d0: 44 29 0a sub %r9d,(%rdx) + 6634f9d3: 41 c7 40 58 00 00 00 movl $0x0,0x58(%r8) + 6634f9da: 00 + 6634f9db: 8b 12 mov (%rdx),%edx + 6634f9dd: 85 d2 test %edx,%edx + 6634f9df: eb 82 jmp 6634f963 + 6634f9e1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f9e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634f9ed: 00 00 00 -000000006634fc20 : - 6634fc20: 57 push %rdi - 6634fc21: 56 push %rsi - 6634fc22: 53 push %rbx - 6634fc23: 48 83 ec 20 sub $0x20,%rsp - 6634fc27: 8b 79 38 mov 0x38(%rcx),%edi - 6634fc2a: 85 ff test %edi,%edi - 6634fc2c: 48 89 cb mov %rcx,%rbx - 6634fc2f: 7f 19 jg 6634fc4a - 6634fc31: 48 8d 15 c8 43 00 00 lea 0x43c8(%rip),%rdx # 66354000 <.rdata> - 6634fc38: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fc3e: 48 8d 0d cb 43 00 00 lea 0x43cb(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fc45: e8 06 23 00 00 callq 66351f50 <_assert> - 6634fc4a: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634fc4e: 4c 8b 43 40 mov 0x40(%rbx),%r8 - 6634fc52: 48 8b 88 38 02 00 00 mov 0x238(%rax),%rcx - 6634fc59: 49 63 10 movslq (%r8),%rdx - 6634fc5c: 8b 31 mov (%rcx),%esi - 6634fc5e: 85 f6 test %esi,%esi - 6634fc60: 0f 84 ea 00 00 00 je 6634fd50 - 6634fc66: 48 8b 48 10 mov 0x10(%rax),%rcx - 6634fc6a: 44 8b 09 mov (%rcx),%r9d - 6634fc6d: 48 8b 48 08 mov 0x8(%rax),%rcx - 6634fc71: 8b 09 mov (%rcx),%ecx - 6634fc73: 42 8d 0c 49 lea (%rcx,%r9,2),%ecx - 6634fc77: 4c 8b 48 18 mov 0x18(%rax),%r9 - 6634fc7b: 45 8b 09 mov (%r9),%r9d - 6634fc7e: 42 8d 0c 89 lea (%rcx,%r9,4),%ecx - 6634fc82: 4c 8b 48 20 mov 0x20(%rax),%r9 - 6634fc86: 45 8b 09 mov (%r9),%r9d - 6634fc89: 46 8d 0c c9 lea (%rcx,%r9,8),%r9d - 6634fc8d: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634fc91: 8b 09 mov (%rcx),%ecx - 6634fc93: c1 e1 04 shl $0x4,%ecx - 6634fc96: 44 01 c9 add %r9d,%ecx - 6634fc99: 4c 8b 48 30 mov 0x30(%rax),%r9 - 6634fc9d: 45 8b 09 mov (%r9),%r9d - 6634fca0: 41 c1 e1 05 shl $0x5,%r9d - 6634fca4: 42 8d 74 09 07 lea 0x7(%rcx,%r9,1),%esi - 6634fca9: 39 d6 cmp %edx,%esi - 6634fcab: 0f 84 96 00 00 00 je 6634fd47 - 6634fcb1: 85 d2 test %edx,%edx - 6634fcb3: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 6634fcb7: 0f 85 38 01 00 00 jne 6634fdf5 - 6634fcbd: 48 63 d6 movslq %esi,%rdx - 6634fcc0: 48 8d 0c 91 lea (%rcx,%rdx,4),%rcx - 6634fcc4: 44 8b 09 mov (%rcx),%r9d - 6634fcc7: 41 83 f9 01 cmp $0x1,%r9d - 6634fccb: 74 6a je 6634fd37 - 6634fccd: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634fcd1: 41 bb 01 00 00 00 mov $0x1,%r11d - 6634fcd7: 45 29 cb sub %r9d,%r11d - 6634fcda: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fcde: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 - 6634fce2: 45 01 1a add %r11d,(%r10) - 6634fce5: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634fceb: 31 c9 xor %ecx,%ecx - 6634fced: 41 8b 3a mov (%r10),%edi - 6634fcf0: 85 ff test %edi,%edi - 6634fcf2: 0f 9f c1 setg %cl - 6634fcf5: 3b 08 cmp (%rax),%ecx - 6634fcf7: 74 3e je 6634fd37 - 6634fcf9: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634fcfd: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fd01: 44 8b 18 mov (%rax),%r11d - 6634fd04: 45 85 db test %r11d,%r11d - 6634fd07: 75 2e jne 6634fd37 - 6634fd09: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634fd0d: 48 8b 0d 1c 7c 00 00 mov 0x7c1c(%rip),%rcx # 66357930 - 6634fd14: 4c 8b 0d 05 7c 00 00 mov 0x7c05(%rip),%r9 # 66357920 - 6634fd1b: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634fd1f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fd23: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fd29: 48 63 01 movslq (%rcx),%rax - 6634fd2c: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634fd30: 44 89 11 mov %r10d,(%rcx) - 6634fd33: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634fd37: 44 8b 53 38 mov 0x38(%rbx),%r10d - 6634fd3b: 45 85 d2 test %r10d,%r10d - 6634fd3e: 0f 8e 8c 00 00 00 jle 6634fdd0 - 6634fd44: 41 89 30 mov %esi,(%r8) - 6634fd47: 48 83 c4 20 add $0x20,%rsp - 6634fd4b: 5b pop %rbx - 6634fd4c: 5e pop %rsi - 6634fd4d: 5f pop %rdi - 6634fd4e: c3 retq - 6634fd4f: 90 nop - 6634fd50: 85 d2 test %edx,%edx - 6634fd52: 74 f3 je 6634fd47 - 6634fd54: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 6634fd58: 4c 8d 0c 91 lea (%rcx,%rdx,4),%r9 - 6634fd5c: 45 8b 11 mov (%r9),%r10d - 6634fd5f: 45 85 d2 test %r10d,%r10d - 6634fd62: 74 37 je 6634fd9b - 6634fd64: 48 8b 4b 18 mov 0x18(%rbx),%rcx - 6634fd68: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fd6c: 48 8b 0c d1 mov (%rcx,%rdx,8),%rcx - 6634fd70: 44 29 11 sub %r10d,(%rcx) - 6634fd73: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 6634fd7a: 44 8b 09 mov (%rcx),%r9d - 6634fd7d: 31 c9 xor %ecx,%ecx - 6634fd7f: 45 85 c9 test %r9d,%r9d - 6634fd82: 0f 9f c1 setg %cl - 6634fd85: 3b 08 cmp (%rax),%ecx - 6634fd87: 74 12 je 6634fd9b - 6634fd89: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634fd8d: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634fd91: 8b 08 mov (%rax),%ecx - 6634fd93: 85 c9 test %ecx,%ecx - 6634fd95: 0f 84 dc 00 00 00 je 6634fe77 - 6634fd9b: 8b 43 38 mov 0x38(%rbx),%eax - 6634fd9e: 85 c0 test %eax,%eax - 6634fda0: 7f 1d jg 6634fdbf - 6634fda2: 48 8d 15 57 42 00 00 lea 0x4257(%rip),%rdx # 66354000 <.rdata> - 6634fda9: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634fdaf: 48 8d 0d 5a 42 00 00 lea 0x425a(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fdb6: e8 95 21 00 00 callq 66351f50 <_assert> - 6634fdbb: 4c 8b 43 40 mov 0x40(%rbx),%r8 - 6634fdbf: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 6634fdc6: 48 83 c4 20 add $0x20,%rsp - 6634fdca: 5b pop %rbx - 6634fdcb: 5e pop %rsi - 6634fdcc: 5f pop %rdi - 6634fdcd: c3 retq - 6634fdce: 66 90 xchg %ax,%ax - 6634fdd0: 48 8d 15 29 42 00 00 lea 0x4229(%rip),%rdx # 66354000 <.rdata> - 6634fdd7: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634fddd: 48 8d 0d 2c 42 00 00 lea 0x422c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fde4: e8 67 21 00 00 callq 66351f50 <_assert> - 6634fde9: 4c 8b 43 40 mov 0x40(%rbx),%r8 - 6634fded: 41 89 30 mov %esi,(%r8) - 6634fdf0: e9 52 ff ff ff jmpq 6634fd47 - 6634fdf5: 4c 8d 0c 91 lea (%rcx,%rdx,4),%r9 - 6634fdf9: 45 8b 11 mov (%r9),%r10d - 6634fdfc: 45 85 d2 test %r10d,%r10d - 6634fdff: 0f 84 b8 fe ff ff je 6634fcbd - 6634fe05: 4c 8b 5b 18 mov 0x18(%rbx),%r11 - 6634fe09: 4d 8b 1c d3 mov (%r11,%rdx,8),%r11 - 6634fe0d: 45 29 13 sub %r10d,(%r11) - 6634fe10: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 6634fe17: 45 31 d2 xor %r10d,%r10d - 6634fe1a: 45 8b 1b mov (%r11),%r11d - 6634fe1d: 4c 8b 0c d0 mov (%rax,%rdx,8),%r9 - 6634fe21: 45 85 db test %r11d,%r11d - 6634fe24: 41 0f 9f c2 setg %r10b - 6634fe28: 45 3b 11 cmp (%r9),%r10d - 6634fe2b: 0f 84 8c fe ff ff je 6634fcbd - 6634fe31: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634fe35: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 - 6634fe39: 45 8b 09 mov (%r9),%r9d - 6634fe3c: 45 85 c9 test %r9d,%r9d - 6634fe3f: 0f 85 78 fe ff ff jne 6634fcbd - 6634fe45: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634fe49: 4c 8b 15 e0 7a 00 00 mov 0x7ae0(%rip),%r10 # 66357930 - 6634fe50: 4c 8b 1d c9 7a 00 00 mov 0x7ac9(%rip),%r11 # 66357920 - 6634fe57: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 - 6634fe5b: 49 8b 51 10 mov 0x10(%r9),%rdx - 6634fe5f: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6634fe65: 49 63 12 movslq (%r10),%rdx - 6634fe68: 8d 7a 01 lea 0x1(%rdx),%edi - 6634fe6b: 41 89 3a mov %edi,(%r10) - 6634fe6e: 4d 89 0c d3 mov %r9,(%r11,%rdx,8) - 6634fe72: e9 46 fe ff ff jmpq 6634fcbd - 6634fe77: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634fe7b: 48 8b 0d ae 7a 00 00 mov 0x7aae(%rip),%rcx # 66357930 - 6634fe82: 4c 8b 0d 97 7a 00 00 mov 0x7a97(%rip),%r9 # 66357920 - 6634fe89: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634fe8d: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fe91: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fe97: 48 63 01 movslq (%rcx),%rax - 6634fe9a: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634fe9e: 44 89 11 mov %r10d,(%rcx) - 6634fea1: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634fea5: e9 f1 fe ff ff jmpq 6634fd9b - 6634feaa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +000000006634f9f0 : + 6634f9f0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634f9f4: 4c 8b 49 08 mov 0x8(%rcx),%r9 + 6634f9f8: 48 8b 90 48 08 00 00 mov 0x848(%rax),%rdx + 6634f9ff: 45 8b 91 28 04 00 00 mov 0x428(%r9),%r10d + 6634fa06: 44 8b 1a mov (%rdx),%r11d + 6634fa09: 45 85 db test %r11d,%r11d + 6634fa0c: 0f 84 e0 00 00 00 je 6634faf2 + 6634fa12: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634fa16: 44 8b 02 mov (%rdx),%r8d + 6634fa19: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634fa1d: 8b 12 mov (%rdx),%edx + 6634fa1f: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634fa23: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634fa27: 45 8b 00 mov (%r8),%r8d + 6634fa2a: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634fa2e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634fa32: 45 8b 00 mov (%r8),%r8d + 6634fa35: 42 8d 14 c2 lea (%rdx,%r8,8),%edx + 6634fa39: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634fa3d: 45 8b 00 mov (%r8),%r8d + 6634fa40: 41 c1 e0 04 shl $0x4,%r8d + 6634fa44: 41 01 d0 add %edx,%r8d + 6634fa47: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634fa4b: 8b 12 mov (%rdx),%edx + 6634fa4d: c1 e2 05 shl $0x5,%edx + 6634fa50: 41 01 d0 add %edx,%r8d + 6634fa53: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634fa57: 8b 12 mov (%rdx),%edx + 6634fa59: c1 e2 06 shl $0x6,%edx + 6634fa5c: 44 01 c2 add %r8d,%edx + 6634fa5f: 4c 8b 40 40 mov 0x40(%rax),%r8 + 6634fa63: 45 8b 00 mov (%r8),%r8d + 6634fa66: 41 c1 e0 07 shl $0x7,%r8d + 6634fa6a: 42 8d 54 02 09 lea 0x9(%rdx,%r8,1),%edx + 6634fa6f: 48 63 d2 movslq %edx,%rdx + 6634fa72: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634fa76: 8b 12 mov (%rdx),%edx + 6634fa78: 44 39 d2 cmp %r10d,%edx + 6634fa7b: 74 74 je 6634faf1 + 6634fa7d: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634fa81: 41 89 d3 mov %edx,%r11d + 6634fa84: 45 29 d3 sub %r10d,%r11d + 6634fa87: 4d 8b 80 50 08 00 00 mov 0x850(%r8),%r8 + 6634fa8e: 45 01 18 add %r11d,(%r8) + 6634fa91: 41 89 91 28 04 00 00 mov %edx,0x428(%r9) + 6634fa98: 45 8b 00 mov (%r8),%r8d + 6634fa9b: 45 85 c0 test %r8d,%r8d + 6634fa9e: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax + 6634faa5: 0f 9f c2 setg %dl + 6634faa8: 0f b6 d2 movzbl %dl,%edx + 6634faab: 3b 10 cmp (%rax),%edx + 6634faad: 74 42 je 6634faf1 + 6634faaf: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634fab3: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax + 6634faba: 8b 00 mov (%rax),%eax + 6634fabc: 85 c0 test %eax,%eax + 6634fabe: 75 31 jne 6634faf1 + 6634fac0: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634fac4: 48 8b 0d 65 7e 00 00 mov 0x7e65(%rip),%rcx # 66357930 + 6634facb: 4c 8b 05 4e 7e 00 00 mov 0x7e4e(%rip),%r8 # 66357920 + 6634fad2: 48 8b 90 50 08 00 00 mov 0x850(%rax),%rdx + 6634fad9: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634fadd: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634fae3: 48 63 01 movslq (%rcx),%rax + 6634fae6: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634faea: 44 89 09 mov %r9d,(%rcx) + 6634faed: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634faf1: c3 retq + 6634faf2: 45 85 d2 test %r10d,%r10d + 6634faf5: 74 fa je 6634faf1 + 6634faf7: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634fafb: 48 8b 92 50 08 00 00 mov 0x850(%rdx),%rdx + 6634fb02: 44 29 12 sub %r10d,(%rdx) + 6634fb05: 41 c7 81 28 04 00 00 movl $0x0,0x428(%r9) + 6634fb0c: 00 00 00 00 + 6634fb10: 8b 12 mov (%rdx),%edx + 6634fb12: 85 d2 test %edx,%edx + 6634fb14: eb 88 jmp 6634fa9e + 6634fb16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fb1d: 00 00 00 -000000006634feb0 : - 6634feb0: 57 push %rdi - 6634feb1: 56 push %rsi - 6634feb2: 53 push %rbx - 6634feb3: 48 83 ec 20 sub $0x20,%rsp - 6634feb7: 8b 79 38 mov 0x38(%rcx),%edi - 6634feba: 85 ff test %edi,%edi - 6634febc: 48 89 cb mov %rcx,%rbx - 6634febf: 7f 19 jg 6634feda - 6634fec1: 48 8d 15 38 41 00 00 lea 0x4138(%rip),%rdx # 66354000 <.rdata> - 6634fec8: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fece: 48 8d 0d 3b 41 00 00 lea 0x413b(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fed5: e8 76 20 00 00 callq 66351f50 <_assert> - 6634feda: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634fede: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 6634fee2: 48 8b 88 40 04 00 00 mov 0x440(%rax),%rcx - 6634fee9: 49 63 11 movslq (%r9),%rdx - 6634feec: 8b 31 mov (%rcx),%esi - 6634feee: 85 f6 test %esi,%esi - 6634fef0: 0f 84 fa 00 00 00 je 6634fff0 - 6634fef6: 48 8b 48 10 mov 0x10(%rax),%rcx - 6634fefa: 44 8b 01 mov (%rcx),%r8d - 6634fefd: 48 8b 48 08 mov 0x8(%rax),%rcx - 6634ff01: 8b 09 mov (%rcx),%ecx - 6634ff03: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 6634ff07: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634ff0b: 45 8b 00 mov (%r8),%r8d - 6634ff0e: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 6634ff12: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634ff16: 45 8b 00 mov (%r8),%r8d - 6634ff19: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d - 6634ff1d: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634ff21: 8b 09 mov (%rcx),%ecx - 6634ff23: c1 e1 04 shl $0x4,%ecx - 6634ff26: 41 01 c8 add %ecx,%r8d - 6634ff29: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634ff2d: 8b 09 mov (%rcx),%ecx - 6634ff2f: c1 e1 05 shl $0x5,%ecx - 6634ff32: 44 01 c1 add %r8d,%ecx - 6634ff35: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634ff39: 45 8b 00 mov (%r8),%r8d - 6634ff3c: 41 c1 e0 06 shl $0x6,%r8d - 6634ff40: 42 8d 74 01 08 lea 0x8(%rcx,%r8,1),%esi - 6634ff45: 39 d6 cmp %edx,%esi - 6634ff47: 0f 84 96 00 00 00 je 6634ffe3 - 6634ff4d: 85 d2 test %edx,%edx - 6634ff4f: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 6634ff53: 0f 85 3c 01 00 00 jne 66350095 - 6634ff59: 48 63 d6 movslq %esi,%rdx - 6634ff5c: 48 8d 0c 91 lea (%rcx,%rdx,4),%rcx - 6634ff60: 44 8b 01 mov (%rcx),%r8d - 6634ff63: 41 83 f8 01 cmp $0x1,%r8d - 6634ff67: 74 6a je 6634ffd3 - 6634ff69: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ff6d: 41 bb 01 00 00 00 mov $0x1,%r11d - 6634ff73: 45 29 c3 sub %r8d,%r11d - 6634ff76: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634ff7a: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 - 6634ff7e: 45 01 1a add %r11d,(%r10) - 6634ff81: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634ff87: 31 c9 xor %ecx,%ecx - 6634ff89: 41 8b 3a mov (%r10),%edi - 6634ff8c: 85 ff test %edi,%edi - 6634ff8e: 0f 9f c1 setg %cl - 6634ff91: 3b 08 cmp (%rax),%ecx - 6634ff93: 74 3e je 6634ffd3 - 6634ff95: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634ff99: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6634ff9d: 44 8b 18 mov (%rax),%r11d - 6634ffa0: 45 85 db test %r11d,%r11d - 6634ffa3: 75 2e jne 6634ffd3 - 6634ffa5: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ffa9: 48 8b 0d 80 79 00 00 mov 0x7980(%rip),%rcx # 66357930 - 6634ffb0: 4c 8b 05 69 79 00 00 mov 0x7969(%rip),%r8 # 66357920 - 6634ffb7: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634ffbb: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ffbf: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ffc5: 48 63 01 movslq (%rcx),%rax - 6634ffc8: 44 8d 50 01 lea 0x1(%rax),%r10d - 6634ffcc: 44 89 11 mov %r10d,(%rcx) - 6634ffcf: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ffd3: 44 8b 53 38 mov 0x38(%rbx),%r10d - 6634ffd7: 45 85 d2 test %r10d,%r10d - 6634ffda: 0f 8e 90 00 00 00 jle 66350070 - 6634ffe0: 41 89 31 mov %esi,(%r9) - 6634ffe3: 48 83 c4 20 add $0x20,%rsp - 6634ffe7: 5b pop %rbx - 6634ffe8: 5e pop %rsi - 6634ffe9: 5f pop %rdi - 6634ffea: c3 retq - 6634ffeb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634fff0: 85 d2 test %edx,%edx - 6634fff2: 74 ef je 6634ffe3 - 6634fff4: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 6634fff8: 4c 8d 04 91 lea (%rcx,%rdx,4),%r8 - 6634fffc: 45 8b 10 mov (%r8),%r10d - 6634ffff: 45 85 d2 test %r10d,%r10d - 66350002: 74 37 je 6635003b - 66350004: 48 8b 4b 18 mov 0x18(%rbx),%rcx - 66350008: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6635000c: 48 8b 0c d1 mov (%rcx,%rdx,8),%rcx - 66350010: 44 29 11 sub %r10d,(%rcx) - 66350013: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 6635001a: 44 8b 01 mov (%rcx),%r8d - 6635001d: 31 c9 xor %ecx,%ecx - 6635001f: 45 85 c0 test %r8d,%r8d - 66350022: 0f 9f c1 setg %cl - 66350025: 3b 08 cmp (%rax),%ecx - 66350027: 74 12 je 6635003b - 66350029: 48 8b 43 20 mov 0x20(%rbx),%rax - 6635002d: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 66350031: 8b 08 mov (%rax),%ecx - 66350033: 85 c9 test %ecx,%ecx - 66350035: 0f 84 dc 00 00 00 je 66350117 - 6635003b: 8b 43 38 mov 0x38(%rbx),%eax - 6635003e: 85 c0 test %eax,%eax - 66350040: 7f 1d jg 6635005f - 66350042: 48 8d 15 b7 3f 00 00 lea 0x3fb7(%rip),%rdx # 66354000 <.rdata> - 66350049: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635004f: 48 8d 0d ba 3f 00 00 lea 0x3fba(%rip),%rcx # 66354010 <.rdata+0x10> - 66350056: e8 f5 1e 00 00 callq 66351f50 <_assert> - 6635005b: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 6635005f: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 66350066: 48 83 c4 20 add $0x20,%rsp - 6635006a: 5b pop %rbx - 6635006b: 5e pop %rsi - 6635006c: 5f pop %rdi - 6635006d: c3 retq - 6635006e: 66 90 xchg %ax,%ax - 66350070: 48 8d 15 89 3f 00 00 lea 0x3f89(%rip),%rdx # 66354000 <.rdata> - 66350077: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635007d: 48 8d 0d 8c 3f 00 00 lea 0x3f8c(%rip),%rcx # 66354010 <.rdata+0x10> - 66350084: e8 c7 1e 00 00 callq 66351f50 <_assert> - 66350089: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 6635008d: 41 89 31 mov %esi,(%r9) - 66350090: e9 4e ff ff ff jmpq 6634ffe3 - 66350095: 4c 8d 04 91 lea (%rcx,%rdx,4),%r8 - 66350099: 45 8b 10 mov (%r8),%r10d - 6635009c: 45 85 d2 test %r10d,%r10d - 6635009f: 0f 84 b4 fe ff ff je 6634ff59 - 663500a5: 4c 8b 5b 18 mov 0x18(%rbx),%r11 - 663500a9: 4d 8b 1c d3 mov (%r11,%rdx,8),%r11 - 663500ad: 45 29 13 sub %r10d,(%r11) - 663500b0: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 663500b7: 45 31 d2 xor %r10d,%r10d - 663500ba: 45 8b 1b mov (%r11),%r11d - 663500bd: 4c 8b 04 d0 mov (%rax,%rdx,8),%r8 - 663500c1: 45 85 db test %r11d,%r11d - 663500c4: 41 0f 9f c2 setg %r10b - 663500c8: 45 3b 10 cmp (%r8),%r10d - 663500cb: 0f 84 88 fe ff ff je 6634ff59 - 663500d1: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 663500d5: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 663500d9: 45 8b 00 mov (%r8),%r8d - 663500dc: 45 85 c0 test %r8d,%r8d - 663500df: 0f 85 74 fe ff ff jne 6634ff59 - 663500e5: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 663500e9: 4c 8b 15 40 78 00 00 mov 0x7840(%rip),%r10 # 66357930 - 663500f0: 4c 8b 1d 29 78 00 00 mov 0x7829(%rip),%r11 # 66357920 - 663500f7: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 663500fb: 49 8b 50 10 mov 0x10(%r8),%rdx - 663500ff: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66350105: 49 63 12 movslq (%r10),%rdx - 66350108: 8d 7a 01 lea 0x1(%rdx),%edi - 6635010b: 41 89 3a mov %edi,(%r10) - 6635010e: 4d 89 04 d3 mov %r8,(%r11,%rdx,8) - 66350112: e9 42 fe ff ff jmpq 6634ff59 - 66350117: 48 8b 43 28 mov 0x28(%rbx),%rax - 6635011b: 48 8b 0d 0e 78 00 00 mov 0x780e(%rip),%rcx # 66357930 - 66350122: 4c 8b 05 f7 77 00 00 mov 0x77f7(%rip),%r8 # 66357920 - 66350129: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6635012d: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350131: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350137: 48 63 01 movslq (%rcx),%rax - 6635013a: 44 8d 50 01 lea 0x1(%rax),%r10d - 6635013e: 44 89 11 mov %r10d,(%rcx) - 66350141: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350145: e9 f1 fe ff ff jmpq 6635003b - 6635014a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +000000006634fb20 : + 6634fb20: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634fb24: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634fb28: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634fb2c: 45 8b 48 20 mov 0x20(%r8),%r9d + 6634fb30: 44 8b 12 mov (%rdx),%r10d + 6634fb33: 45 85 d2 test %r10d,%r10d + 6634fb36: 0f 84 86 00 00 00 je 6634fbc2 + 6634fb3c: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634fb40: 44 8b 12 mov (%rdx),%r10d + 6634fb43: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634fb47: 8b 12 mov (%rdx),%edx + 6634fb49: 42 8d 54 52 03 lea 0x3(%rdx,%r10,2),%edx + 6634fb4e: 48 63 d2 movslq %edx,%rdx + 6634fb51: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634fb55: 8b 12 mov (%rdx),%edx + 6634fb57: 44 39 ca cmp %r9d,%edx + 6634fb5a: 74 65 je 6634fbc1 + 6634fb5c: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634fb60: 41 89 d3 mov %edx,%r11d + 6634fb63: 45 29 cb sub %r9d,%r11d + 6634fb66: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634fb6a: 45 01 1a add %r11d,(%r10) + 6634fb6d: 41 89 50 20 mov %edx,0x20(%r8) + 6634fb71: 45 8b 02 mov (%r10),%r8d + 6634fb74: 45 85 c0 test %r8d,%r8d + 6634fb77: 48 8b 40 40 mov 0x40(%rax),%rax + 6634fb7b: 0f 9f c2 setg %dl + 6634fb7e: 0f b6 d2 movzbl %dl,%edx + 6634fb81: 3b 10 cmp (%rax),%edx + 6634fb83: 74 3c je 6634fbc1 + 6634fb85: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634fb89: 48 8b 40 40 mov 0x40(%rax),%rax + 6634fb8d: 8b 00 mov (%rax),%eax + 6634fb8f: 85 c0 test %eax,%eax + 6634fb91: 75 2e jne 6634fbc1 + 6634fb93: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634fb97: 48 8b 0d 92 7d 00 00 mov 0x7d92(%rip),%rcx # 66357930 + 6634fb9e: 4c 8b 05 7b 7d 00 00 mov 0x7d7b(%rip),%r8 # 66357920 + 6634fba5: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634fba9: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634fbad: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634fbb3: 48 63 01 movslq (%rcx),%rax + 6634fbb6: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634fbba: 44 89 09 mov %r9d,(%rcx) + 6634fbbd: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634fbc1: c3 retq + 6634fbc2: 45 85 c9 test %r9d,%r9d + 6634fbc5: 74 fa je 6634fbc1 + 6634fbc7: 48 8b 51 18 mov 0x18(%rcx),%rdx + 6634fbcb: 48 8b 52 40 mov 0x40(%rdx),%rdx + 6634fbcf: 44 29 0a sub %r9d,(%rdx) + 6634fbd2: 41 c7 40 20 00 00 00 movl $0x0,0x20(%r8) + 6634fbd9: 00 + 6634fbda: 8b 12 mov (%rdx),%edx + 6634fbdc: 85 d2 test %edx,%edx + 6634fbde: eb 97 jmp 6634fb77 -0000000066350150 : - 66350150: 57 push %rdi - 66350151: 56 push %rsi - 66350152: 53 push %rbx - 66350153: 48 83 ec 20 sub $0x20,%rsp - 66350157: 8b 79 38 mov 0x38(%rcx),%edi - 6635015a: 85 ff test %edi,%edi - 6635015c: 48 89 cb mov %rcx,%rbx - 6635015f: 7f 19 jg 6635017a - 66350161: 48 8d 15 98 3e 00 00 lea 0x3e98(%rip),%rdx # 66354000 <.rdata> - 66350168: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635016e: 48 8d 0d 9b 3e 00 00 lea 0x3e9b(%rip),%rcx # 66354010 <.rdata+0x10> - 66350175: e8 d6 1d 00 00 callq 66351f50 <_assert> - 6635017a: 48 8b 43 10 mov 0x10(%rbx),%rax - 6635017e: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 66350182: 48 8b 88 48 08 00 00 mov 0x848(%rax),%rcx - 66350189: 49 63 11 movslq (%r9),%rdx - 6635018c: 8b 31 mov (%rcx),%esi - 6635018e: 85 f6 test %esi,%esi - 66350190: 0f 84 0a 01 00 00 je 663502a0 - 66350196: 48 8b 48 10 mov 0x10(%rax),%rcx - 6635019a: 44 8b 01 mov (%rcx),%r8d - 6635019d: 48 8b 48 08 mov 0x8(%rax),%rcx - 663501a1: 8b 09 mov (%rcx),%ecx - 663501a3: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 663501a7: 4c 8b 40 18 mov 0x18(%rax),%r8 - 663501ab: 45 8b 00 mov (%r8),%r8d - 663501ae: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 663501b2: 4c 8b 40 20 mov 0x20(%rax),%r8 - 663501b6: 45 8b 00 mov (%r8),%r8d - 663501b9: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx - 663501bd: 4c 8b 40 28 mov 0x28(%rax),%r8 - 663501c1: 45 8b 00 mov (%r8),%r8d - 663501c4: 41 c1 e0 04 shl $0x4,%r8d - 663501c8: 41 01 c8 add %ecx,%r8d - 663501cb: 48 8b 48 30 mov 0x30(%rax),%rcx - 663501cf: 8b 09 mov (%rcx),%ecx - 663501d1: c1 e1 05 shl $0x5,%ecx - 663501d4: 41 01 c8 add %ecx,%r8d - 663501d7: 48 8b 48 38 mov 0x38(%rax),%rcx - 663501db: 8b 09 mov (%rcx),%ecx - 663501dd: c1 e1 06 shl $0x6,%ecx - 663501e0: 44 01 c1 add %r8d,%ecx - 663501e3: 4c 8b 40 40 mov 0x40(%rax),%r8 - 663501e7: 45 8b 00 mov (%r8),%r8d - 663501ea: 41 c1 e0 07 shl $0x7,%r8d - 663501ee: 42 8d 74 01 09 lea 0x9(%rcx,%r8,1),%esi - 663501f3: 39 d6 cmp %edx,%esi - 663501f5: 0f 84 96 00 00 00 je 66350291 - 663501fb: 85 d2 test %edx,%edx - 663501fd: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 66350201: 0f 85 3e 01 00 00 jne 66350345 - 66350207: 48 63 d6 movslq %esi,%rdx - 6635020a: 48 8d 0c 91 lea (%rcx,%rdx,4),%rcx - 6635020e: 44 8b 01 mov (%rcx),%r8d - 66350211: 41 83 f8 01 cmp $0x1,%r8d - 66350215: 74 6a je 66350281 - 66350217: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6635021b: 41 bb 01 00 00 00 mov $0x1,%r11d - 66350221: 45 29 c3 sub %r8d,%r11d - 66350224: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 66350228: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 - 6635022c: 45 01 1a add %r11d,(%r10) - 6635022f: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66350235: 31 c9 xor %ecx,%ecx - 66350237: 41 8b 3a mov (%r10),%edi - 6635023a: 85 ff test %edi,%edi - 6635023c: 0f 9f c1 setg %cl - 6635023f: 3b 08 cmp (%rax),%ecx - 66350241: 74 3e je 66350281 - 66350243: 48 8b 43 20 mov 0x20(%rbx),%rax - 66350247: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6635024b: 44 8b 18 mov (%rax),%r11d - 6635024e: 45 85 db test %r11d,%r11d - 66350251: 75 2e jne 66350281 - 66350253: 48 8b 43 28 mov 0x28(%rbx),%rax - 66350257: 48 8b 0d d2 76 00 00 mov 0x76d2(%rip),%rcx # 66357930 - 6635025e: 4c 8b 05 bb 76 00 00 mov 0x76bb(%rip),%r8 # 66357920 - 66350265: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 66350269: 48 8b 42 10 mov 0x10(%rdx),%rax - 6635026d: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350273: 48 63 01 movslq (%rcx),%rax - 66350276: 44 8d 50 01 lea 0x1(%rax),%r10d - 6635027a: 44 89 11 mov %r10d,(%rcx) - 6635027d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350281: 44 8b 53 38 mov 0x38(%rbx),%r10d - 66350285: 45 85 d2 test %r10d,%r10d - 66350288: 0f 8e 92 00 00 00 jle 66350320 - 6635028e: 41 89 31 mov %esi,(%r9) - 66350291: 48 83 c4 20 add $0x20,%rsp - 66350295: 5b pop %rbx - 66350296: 5e pop %rsi - 66350297: 5f pop %rdi - 66350298: c3 retq - 66350299: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663502a0: 85 d2 test %edx,%edx - 663502a2: 74 ed je 66350291 - 663502a4: 48 8b 4b 08 mov 0x8(%rbx),%rcx - 663502a8: 4c 8d 04 91 lea (%rcx,%rdx,4),%r8 - 663502ac: 45 8b 10 mov (%r8),%r10d - 663502af: 45 85 d2 test %r10d,%r10d - 663502b2: 74 37 je 663502eb - 663502b4: 48 8b 4b 18 mov 0x18(%rbx),%rcx - 663502b8: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663502bc: 48 8b 0c d1 mov (%rcx,%rdx,8),%rcx - 663502c0: 44 29 11 sub %r10d,(%rcx) - 663502c3: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 663502ca: 44 8b 01 mov (%rcx),%r8d - 663502cd: 31 c9 xor %ecx,%ecx - 663502cf: 45 85 c0 test %r8d,%r8d - 663502d2: 0f 9f c1 setg %cl - 663502d5: 3b 08 cmp (%rax),%ecx - 663502d7: 74 12 je 663502eb - 663502d9: 48 8b 43 20 mov 0x20(%rbx),%rax - 663502dd: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663502e1: 8b 08 mov (%rax),%ecx - 663502e3: 85 c9 test %ecx,%ecx - 663502e5: 0f 84 dc 00 00 00 je 663503c7 - 663502eb: 8b 43 38 mov 0x38(%rbx),%eax - 663502ee: 85 c0 test %eax,%eax - 663502f0: 7f 1d jg 6635030f - 663502f2: 48 8d 15 07 3d 00 00 lea 0x3d07(%rip),%rdx # 66354000 <.rdata> - 663502f9: 41 b8 93 00 00 00 mov $0x93,%r8d - 663502ff: 48 8d 0d 0a 3d 00 00 lea 0x3d0a(%rip),%rcx # 66354010 <.rdata+0x10> - 66350306: e8 45 1c 00 00 callq 66351f50 <_assert> - 6635030b: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 6635030f: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 66350316: 48 83 c4 20 add $0x20,%rsp - 6635031a: 5b pop %rbx - 6635031b: 5e pop %rsi - 6635031c: 5f pop %rdi - 6635031d: c3 retq - 6635031e: 66 90 xchg %ax,%ax - 66350320: 48 8d 15 d9 3c 00 00 lea 0x3cd9(%rip),%rdx # 66354000 <.rdata> - 66350327: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635032d: 48 8d 0d dc 3c 00 00 lea 0x3cdc(%rip),%rcx # 66354010 <.rdata+0x10> - 66350334: e8 17 1c 00 00 callq 66351f50 <_assert> - 66350339: 4c 8b 4b 40 mov 0x40(%rbx),%r9 - 6635033d: 41 89 31 mov %esi,(%r9) - 66350340: e9 4c ff ff ff jmpq 66350291 - 66350345: 4c 8d 04 91 lea (%rcx,%rdx,4),%r8 - 66350349: 45 8b 10 mov (%r8),%r10d - 6635034c: 45 85 d2 test %r10d,%r10d - 6635034f: 0f 84 b2 fe ff ff je 66350207 - 66350355: 4c 8b 5b 18 mov 0x18(%rbx),%r11 - 66350359: 4d 8b 1c d3 mov (%r11,%rdx,8),%r11 - 6635035d: 45 29 13 sub %r10d,(%r11) - 66350360: 41 c7 00 00 00 00 00 movl $0x0,(%r8) - 66350367: 45 31 d2 xor %r10d,%r10d - 6635036a: 45 8b 1b mov (%r11),%r11d - 6635036d: 4c 8b 04 d0 mov (%rax,%rdx,8),%r8 - 66350371: 45 85 db test %r11d,%r11d - 66350374: 41 0f 9f c2 setg %r10b - 66350378: 45 3b 10 cmp (%r8),%r10d - 6635037b: 0f 84 86 fe ff ff je 66350207 - 66350381: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 66350385: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 66350389: 45 8b 00 mov (%r8),%r8d - 6635038c: 45 85 c0 test %r8d,%r8d - 6635038f: 0f 85 72 fe ff ff jne 66350207 - 66350395: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 66350399: 4c 8b 15 90 75 00 00 mov 0x7590(%rip),%r10 # 66357930 - 663503a0: 4c 8b 1d 79 75 00 00 mov 0x7579(%rip),%r11 # 66357920 - 663503a7: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 663503ab: 49 8b 50 10 mov 0x10(%r8),%rdx - 663503af: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663503b5: 49 63 12 movslq (%r10),%rdx - 663503b8: 8d 7a 01 lea 0x1(%rdx),%edi - 663503bb: 41 89 3a mov %edi,(%r10) - 663503be: 4d 89 04 d3 mov %r8,(%r11,%rdx,8) - 663503c2: e9 40 fe ff ff jmpq 66350207 - 663503c7: 48 8b 43 28 mov 0x28(%rbx),%rax - 663503cb: 48 8b 0d 5e 75 00 00 mov 0x755e(%rip),%rcx # 66357930 - 663503d2: 4c 8b 05 47 75 00 00 mov 0x7547(%rip),%r8 # 66357920 - 663503d9: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 663503dd: 48 8b 42 10 mov 0x10(%rdx),%rax - 663503e1: c7 00 01 00 00 00 movl $0x1,(%rax) - 663503e7: 48 63 01 movslq (%rcx),%rax - 663503ea: 44 8d 50 01 lea 0x1(%rax),%r10d - 663503ee: 44 89 11 mov %r10d,(%rcx) - 663503f1: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663503f5: e9 f1 fe ff ff jmpq 663502eb - 663503fa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +000000006634fbe0 : + 6634fbe0: 56 push %rsi + 6634fbe1: 53 push %rbx + 6634fbe2: 48 83 ec 28 sub $0x28,%rsp + 6634fbe6: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634fbea: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634fbee: 48 89 ce mov %rcx,%rsi + 6634fbf1: 44 8b 0a mov (%rdx),%r9d + 6634fbf4: 45 85 c9 test %r9d,%r9d + 6634fbf7: 0f 84 f3 00 00 00 je 6634fcf0 + 6634fbfd: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634fc01: 8b 0a mov (%rdx),%ecx + 6634fc03: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634fc07: 8b 12 mov (%rdx),%edx + 6634fc09: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634fc0c: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634fc10: 8b 09 mov (%rcx),%ecx + 6634fc12: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634fc15: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634fc19: 8b 09 mov (%rcx),%ecx + 6634fc1b: 8d 1c ca lea (%rdx,%rcx,8),%ebx + 6634fc1e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634fc22: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634fc26: 8b 12 mov (%rdx),%edx + 6634fc28: c1 e2 04 shl $0x4,%edx + 6634fc2b: 01 da add %ebx,%edx + 6634fc2d: 8b 19 mov (%rcx),%ebx + 6634fc2f: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634fc33: 48 8b 40 40 mov 0x40(%rax),%rax + 6634fc37: c1 e3 05 shl $0x5,%ebx + 6634fc3a: 01 da add %ebx,%edx + 6634fc3c: 8b 19 mov (%rcx),%ebx + 6634fc3e: 8b 00 mov (%rax),%eax + 6634fc40: c1 e3 06 shl $0x6,%ebx + 6634fc43: 01 d3 add %edx,%ebx + 6634fc45: c1 e0 07 shl $0x7,%eax + 6634fc48: 01 c3 add %eax,%ebx + 6634fc4a: 78 05 js 6634fc51 + 6634fc4c: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634fc4f: 7c 19 jl 6634fc6a + 6634fc51: 48 8d 15 a8 43 00 00 lea 0x43a8(%rip),%rdx # 66354000 <.rdata> + 6634fc58: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634fc5e: 48 8d 0d ab 43 00 00 lea 0x43ab(%rip),%rcx # 66354010 <.rdata+0x10> + 6634fc65: e8 a6 25 00 00 callq 66352210 <_assert> + 6634fc6a: 48 8b 56 40 mov 0x40(%rsi),%rdx + 6634fc6e: 48 63 c3 movslq %ebx,%rax + 6634fc71: 8b 04 82 mov (%rdx,%rax,4),%eax + 6634fc74: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634fc78: 8b 4a 24 mov 0x24(%rdx),%ecx + 6634fc7b: 39 c8 cmp %ecx,%eax + 6634fc7d: 74 64 je 6634fce3 + 6634fc7f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634fc83: 89 c3 mov %eax,%ebx + 6634fc85: 29 cb sub %ecx,%ebx + 6634fc87: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634fc8b: 41 01 18 add %ebx,(%r8) + 6634fc8e: 89 42 24 mov %eax,0x24(%rdx) + 6634fc91: 31 d2 xor %edx,%edx + 6634fc93: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634fc97: 41 8b 08 mov (%r8),%ecx + 6634fc9a: 48 8b 40 48 mov 0x48(%rax),%rax + 6634fc9e: 85 c9 test %ecx,%ecx + 6634fca0: 0f 9f c2 setg %dl + 6634fca3: 3b 10 cmp (%rax),%edx + 6634fca5: 74 3c je 6634fce3 + 6634fca7: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634fcab: 48 8b 40 48 mov 0x48(%rax),%rax + 6634fcaf: 8b 00 mov (%rax),%eax + 6634fcb1: 85 c0 test %eax,%eax + 6634fcb3: 75 2e jne 6634fce3 + 6634fcb5: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634fcb9: 48 8b 0d 70 7c 00 00 mov 0x7c70(%rip),%rcx # 66357930 + 6634fcc0: 4c 8b 05 59 7c 00 00 mov 0x7c59(%rip),%r8 # 66357920 + 6634fcc7: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634fccb: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634fccf: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634fcd5: 48 63 01 movslq (%rcx),%rax + 6634fcd8: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634fcdc: 44 89 09 mov %r9d,(%rcx) + 6634fcdf: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634fce3: 48 83 c4 28 add $0x28,%rsp + 6634fce7: 5b pop %rbx + 6634fce8: 5e pop %rsi + 6634fce9: c3 retq + 6634fcea: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 6634fcf0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634fcf4: 8b 4a 24 mov 0x24(%rdx),%ecx + 6634fcf7: 85 c9 test %ecx,%ecx + 6634fcf9: 74 e8 je 6634fce3 + 6634fcfb: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634fcff: 48 8b 40 48 mov 0x48(%rax),%rax + 6634fd03: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634fd07: 41 29 08 sub %ecx,(%r8) + 6634fd0a: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634fd11: 31 d2 xor %edx,%edx + 6634fd13: 45 8b 00 mov (%r8),%r8d + 6634fd16: 45 85 c0 test %r8d,%r8d + 6634fd19: 0f 9f c2 setg %dl + 6634fd1c: 3b 10 cmp (%rax),%edx + 6634fd1e: 75 87 jne 6634fca7 + 6634fd20: eb c1 jmp 6634fce3 + 6634fd22: 0f 1f 40 00 nopl 0x0(%rax) + 6634fd26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fd2d: 00 00 00 -0000000066350400 : - 66350400: 57 push %rdi - 66350401: 56 push %rsi - 66350402: 53 push %rbx - 66350403: 48 83 ec 20 sub $0x20,%rsp - 66350407: 8b 79 38 mov 0x38(%rcx),%edi - 6635040a: 85 ff test %edi,%edi - 6635040c: 48 89 cb mov %rcx,%rbx - 6635040f: 7f 19 jg 6635042a - 66350411: 48 8d 15 e8 3b 00 00 lea 0x3be8(%rip),%rdx # 66354000 <.rdata> - 66350418: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635041e: 48 8d 0d eb 3b 00 00 lea 0x3beb(%rip),%rcx # 66354010 <.rdata+0x10> - 66350425: e8 26 1b 00 00 callq 66351f50 <_assert> - 6635042a: 48 8b 43 10 mov 0x10(%rbx),%rax - 6635042e: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 66350432: 4c 8b 80 a8 00 00 00 mov 0xa8(%rax),%r8 - 66350439: 48 63 11 movslq (%rcx),%rdx - 6635043c: 41 8b 30 mov (%r8),%esi - 6635043f: 85 f6 test %esi,%esi - 66350441: 0f 84 d9 00 00 00 je 66350520 - 66350447: 4c 8b 40 10 mov 0x10(%rax),%r8 - 6635044b: 45 8b 08 mov (%r8),%r9d - 6635044e: 4c 8b 40 08 mov 0x8(%rax),%r8 - 66350452: 45 8b 00 mov (%r8),%r8d - 66350455: 47 8d 04 48 lea (%r8,%r9,2),%r8d - 66350459: 4c 8b 48 18 mov 0x18(%rax),%r9 - 6635045d: 45 8b 09 mov (%r9),%r9d - 66350460: 47 8d 04 88 lea (%r8,%r9,4),%r8d - 66350464: 4c 8b 48 20 mov 0x20(%rax),%r9 - 66350468: 45 8b 09 mov (%r9),%r9d - 6635046b: 43 8d 74 c8 05 lea 0x5(%r8,%r9,8),%esi - 66350470: 39 d6 cmp %edx,%esi - 66350472: 0f 84 99 00 00 00 je 66350511 - 66350478: 85 d2 test %edx,%edx - 6635047a: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 6635047e: 0f 85 4c 01 00 00 jne 663505d0 - 66350484: 48 63 d6 movslq %esi,%rdx - 66350487: 4d 8d 04 90 lea (%r8,%rdx,4),%r8 - 6635048b: 45 8b 08 mov (%r8),%r9d - 6635048e: 41 83 f9 01 cmp $0x1,%r9d - 66350492: 74 6e je 66350502 - 66350494: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 66350498: 41 bb 01 00 00 00 mov $0x1,%r11d - 6635049e: 45 29 cb sub %r9d,%r11d - 663504a1: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663504a5: 4d 8b 14 d2 mov (%r10,%rdx,8),%r10 - 663504a9: 45 01 1a add %r11d,(%r10) - 663504ac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663504b3: 45 31 c0 xor %r8d,%r8d - 663504b6: 41 8b 3a mov (%r10),%edi - 663504b9: 85 ff test %edi,%edi - 663504bb: 41 0f 9f c0 setg %r8b - 663504bf: 44 3b 00 cmp (%rax),%r8d - 663504c2: 74 3e je 66350502 - 663504c4: 48 8b 43 20 mov 0x20(%rbx),%rax - 663504c8: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 663504cc: 44 8b 18 mov (%rax),%r11d - 663504cf: 45 85 db test %r11d,%r11d - 663504d2: 75 2e jne 66350502 - 663504d4: 48 8b 43 28 mov 0x28(%rbx),%rax - 663504d8: 4c 8b 05 51 74 00 00 mov 0x7451(%rip),%r8 # 66357930 - 663504df: 4c 8b 0d 3a 74 00 00 mov 0x743a(%rip),%r9 # 66357920 - 663504e6: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 663504ea: 48 8b 42 10 mov 0x10(%rdx),%rax - 663504ee: c7 00 01 00 00 00 movl $0x1,(%rax) - 663504f4: 49 63 00 movslq (%r8),%rax - 663504f7: 44 8d 50 01 lea 0x1(%rax),%r10d - 663504fb: 45 89 10 mov %r10d,(%r8) - 663504fe: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66350502: 44 8b 53 38 mov 0x38(%rbx),%r10d - 66350506: 45 85 d2 test %r10d,%r10d - 66350509: 0f 8e 93 00 00 00 jle 663505a2 - 6635050f: 89 31 mov %esi,(%rcx) - 66350511: 48 83 c4 20 add $0x20,%rsp - 66350515: 5b pop %rbx - 66350516: 5e pop %rsi - 66350517: 5f pop %rdi - 66350518: c3 retq - 66350519: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66350520: 85 d2 test %edx,%edx - 66350522: 74 ed je 66350511 - 66350524: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 66350528: 4d 8d 0c 90 lea (%r8,%rdx,4),%r9 - 6635052c: 45 8b 11 mov (%r9),%r10d - 6635052f: 45 85 d2 test %r10d,%r10d - 66350532: 74 3c je 66350570 - 66350534: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 66350538: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 6635053c: 4d 8b 04 d0 mov (%r8,%rdx,8),%r8 - 66350540: 45 29 10 sub %r10d,(%r8) - 66350543: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 6635054a: 45 8b 08 mov (%r8),%r9d - 6635054d: 45 31 c0 xor %r8d,%r8d - 66350550: 45 85 c9 test %r9d,%r9d - 66350553: 41 0f 9f c0 setg %r8b - 66350557: 44 3b 00 cmp (%rax),%r8d - 6635055a: 74 14 je 66350570 - 6635055c: 48 8b 43 20 mov 0x20(%rbx),%rax - 66350560: 48 8b 04 d0 mov (%rax,%rdx,8),%rax - 66350564: 44 8b 00 mov (%rax),%r8d - 66350567: 45 85 c0 test %r8d,%r8d - 6635056a: 0f 84 e2 00 00 00 je 66350652 - 66350570: 8b 43 38 mov 0x38(%rbx),%eax - 66350573: 85 c0 test %eax,%eax - 66350575: 7f 1d jg 66350594 - 66350577: 48 8d 0d 92 3a 00 00 lea 0x3a92(%rip),%rcx # 66354010 <.rdata+0x10> - 6635057e: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350584: 48 8d 15 75 3a 00 00 lea 0x3a75(%rip),%rdx # 66354000 <.rdata> - 6635058b: e8 c0 19 00 00 callq 66351f50 <_assert> - 66350590: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 66350594: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6635059a: 48 83 c4 20 add $0x20,%rsp - 6635059e: 5b pop %rbx - 6635059f: 5e pop %rsi - 663505a0: 5f pop %rdi - 663505a1: c3 retq - 663505a2: 48 8d 0d 67 3a 00 00 lea 0x3a67(%rip),%rcx # 66354010 <.rdata+0x10> - 663505a9: 41 b8 93 00 00 00 mov $0x93,%r8d - 663505af: 48 8d 15 4a 3a 00 00 lea 0x3a4a(%rip),%rdx # 66354000 <.rdata> - 663505b6: e8 95 19 00 00 callq 66351f50 <_assert> - 663505bb: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 663505bf: 89 31 mov %esi,(%rcx) - 663505c1: e9 4b ff ff ff jmpq 66350511 - 663505c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663505cd: 00 00 00 - 663505d0: 4d 8d 0c 90 lea (%r8,%rdx,4),%r9 - 663505d4: 45 8b 11 mov (%r9),%r10d - 663505d7: 45 85 d2 test %r10d,%r10d - 663505da: 0f 84 a4 fe ff ff je 66350484 - 663505e0: 4c 8b 5b 18 mov 0x18(%rbx),%r11 - 663505e4: 4d 8b 1c d3 mov (%r11,%rdx,8),%r11 - 663505e8: 45 29 13 sub %r10d,(%r11) - 663505eb: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 663505f2: 45 31 d2 xor %r10d,%r10d - 663505f5: 45 8b 1b mov (%r11),%r11d - 663505f8: 4c 8b 0c d0 mov (%rax,%rdx,8),%r9 - 663505fc: 45 85 db test %r11d,%r11d - 663505ff: 41 0f 9f c2 setg %r10b - 66350603: 45 3b 11 cmp (%r9),%r10d - 66350606: 0f 84 78 fe ff ff je 66350484 - 6635060c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 66350610: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 - 66350614: 45 8b 09 mov (%r9),%r9d - 66350617: 45 85 c9 test %r9d,%r9d - 6635061a: 0f 85 64 fe ff ff jne 66350484 - 66350620: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 66350624: 4c 8b 15 05 73 00 00 mov 0x7305(%rip),%r10 # 66357930 - 6635062b: 4c 8b 1d ee 72 00 00 mov 0x72ee(%rip),%r11 # 66357920 - 66350632: 4d 8b 0c d1 mov (%r9,%rdx,8),%r9 - 66350636: 49 8b 51 10 mov 0x10(%r9),%rdx - 6635063a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66350640: 49 63 12 movslq (%r10),%rdx - 66350643: 8d 7a 01 lea 0x1(%rdx),%edi - 66350646: 41 89 3a mov %edi,(%r10) - 66350649: 4d 89 0c d3 mov %r9,(%r11,%rdx,8) - 6635064d: e9 32 fe ff ff jmpq 66350484 - 66350652: 48 8b 43 28 mov 0x28(%rbx),%rax - 66350656: 4c 8b 05 d3 72 00 00 mov 0x72d3(%rip),%r8 # 66357930 - 6635065d: 4c 8b 0d bc 72 00 00 mov 0x72bc(%rip),%r9 # 66357920 - 66350664: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 66350668: 48 8b 42 10 mov 0x10(%rdx),%rax - 6635066c: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350672: 49 63 00 movslq (%r8),%rax - 66350675: 44 8d 50 01 lea 0x1(%rax),%r10d - 66350679: 45 89 10 mov %r10d,(%r8) - 6635067c: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66350680: e9 eb fe ff ff jmpq 66350570 - 66350685: 90 nop - 66350686: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6635068d: 00 00 00 +000000006634fd30 : + 6634fd30: 56 push %rsi + 6634fd31: 53 push %rbx + 6634fd32: 48 83 ec 28 sub $0x28,%rsp + 6634fd36: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634fd3a: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634fd3e: 48 89 ce mov %rcx,%rsi + 6634fd41: 44 8b 0a mov (%rdx),%r9d + 6634fd44: 45 85 c9 test %r9d,%r9d + 6634fd47: 0f 84 f8 00 00 00 je 6634fe45 + 6634fd4d: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634fd51: 8b 0a mov (%rdx),%ecx + 6634fd53: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634fd57: 8b 12 mov (%rdx),%edx + 6634fd59: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634fd5c: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634fd60: 8b 09 mov (%rcx),%ecx + 6634fd62: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634fd65: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634fd69: 8b 09 mov (%rcx),%ecx + 6634fd6b: 8d 1c ca lea (%rdx,%rcx,8),%ebx + 6634fd6e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634fd72: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634fd76: 8b 12 mov (%rdx),%edx + 6634fd78: c1 e2 04 shl $0x4,%edx + 6634fd7b: 01 d3 add %edx,%ebx + 6634fd7d: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634fd81: 8b 12 mov (%rdx),%edx + 6634fd83: c1 e2 05 shl $0x5,%edx + 6634fd86: 01 da add %ebx,%edx + 6634fd88: 8b 19 mov (%rcx),%ebx + 6634fd8a: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634fd8e: 48 8b 40 48 mov 0x48(%rax),%rax + 6634fd92: c1 e3 06 shl $0x6,%ebx + 6634fd95: 01 da add %ebx,%edx + 6634fd97: 8b 19 mov (%rcx),%ebx + 6634fd99: 8b 00 mov (%rax),%eax + 6634fd9b: c1 e3 07 shl $0x7,%ebx + 6634fd9e: 01 d3 add %edx,%ebx + 6634fda0: c1 e0 08 shl $0x8,%eax + 6634fda3: 01 c3 add %eax,%ebx + 6634fda5: 78 05 js 6634fdac + 6634fda7: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634fdaa: 7c 19 jl 6634fdc5 + 6634fdac: 48 8d 15 4d 42 00 00 lea 0x424d(%rip),%rdx # 66354000 <.rdata> + 6634fdb3: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634fdb9: 48 8d 0d 50 42 00 00 lea 0x4250(%rip),%rcx # 66354010 <.rdata+0x10> + 6634fdc0: e8 4b 24 00 00 callq 66352210 <_assert> + 6634fdc5: 48 8b 56 40 mov 0x40(%rsi),%rdx + 6634fdc9: 48 63 c3 movslq %ebx,%rax + 6634fdcc: 8b 04 82 mov (%rdx,%rax,4),%eax + 6634fdcf: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634fdd3: 8b 4a 28 mov 0x28(%rdx),%ecx + 6634fdd6: 39 c8 cmp %ecx,%eax + 6634fdd8: 74 64 je 6634fe3e + 6634fdda: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634fdde: 89 c3 mov %eax,%ebx + 6634fde0: 29 cb sub %ecx,%ebx + 6634fde2: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634fde6: 41 01 18 add %ebx,(%r8) + 6634fde9: 89 42 28 mov %eax,0x28(%rdx) + 6634fdec: 31 d2 xor %edx,%edx + 6634fdee: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634fdf2: 41 8b 08 mov (%r8),%ecx + 6634fdf5: 48 8b 40 50 mov 0x50(%rax),%rax + 6634fdf9: 85 c9 test %ecx,%ecx + 6634fdfb: 0f 9f c2 setg %dl + 6634fdfe: 3b 10 cmp (%rax),%edx + 6634fe00: 74 3c je 6634fe3e + 6634fe02: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634fe06: 48 8b 40 50 mov 0x50(%rax),%rax + 6634fe0a: 8b 00 mov (%rax),%eax + 6634fe0c: 85 c0 test %eax,%eax + 6634fe0e: 75 2e jne 6634fe3e + 6634fe10: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634fe14: 48 8b 0d 15 7b 00 00 mov 0x7b15(%rip),%rcx # 66357930 + 6634fe1b: 4c 8b 05 fe 7a 00 00 mov 0x7afe(%rip),%r8 # 66357920 + 6634fe22: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634fe26: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634fe2a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634fe30: 48 63 01 movslq (%rcx),%rax + 6634fe33: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634fe37: 44 89 09 mov %r9d,(%rcx) + 6634fe3a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634fe3e: 48 83 c4 28 add $0x28,%rsp + 6634fe42: 5b pop %rbx + 6634fe43: 5e pop %rsi + 6634fe44: c3 retq + 6634fe45: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634fe49: 8b 4a 28 mov 0x28(%rdx),%ecx + 6634fe4c: 85 c9 test %ecx,%ecx + 6634fe4e: 74 ee je 6634fe3e + 6634fe50: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634fe54: 48 8b 40 50 mov 0x50(%rax),%rax + 6634fe58: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634fe5c: 41 29 08 sub %ecx,(%r8) + 6634fe5f: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634fe66: 31 d2 xor %edx,%edx + 6634fe68: 45 8b 00 mov (%r8),%r8d + 6634fe6b: 45 85 c0 test %r8d,%r8d + 6634fe6e: 0f 9f c2 setg %dl + 6634fe71: 3b 10 cmp (%rax),%edx + 6634fe73: 75 8d jne 6634fe02 + 6634fe75: eb c7 jmp 6634fe3e + 6634fe77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634fe7e: 00 00 -0000000066350690 : - 66350690: 57 push %rdi - 66350691: 56 push %rsi - 66350692: 53 push %rbx - 66350693: 48 83 ec 20 sub $0x20,%rsp - 66350697: 44 8b 59 38 mov 0x38(%rcx),%r11d - 6635069b: 45 85 db test %r11d,%r11d - 6635069e: 48 89 cb mov %rcx,%rbx - 663506a1: 7f 19 jg 663506bc - 663506a3: 48 8d 15 56 39 00 00 lea 0x3956(%rip),%rdx # 66354000 <.rdata> - 663506aa: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663506b0: 48 8d 0d 59 39 00 00 lea 0x3959(%rip),%rcx # 66354010 <.rdata+0x10> - 663506b7: e8 94 18 00 00 callq 66351f50 <_assert> - 663506bc: 48 8b 53 10 mov 0x10(%rbx),%rdx - 663506c0: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 663506c4: 4c 8b 42 38 mov 0x38(%rdx),%r8 - 663506c8: 48 63 01 movslq (%rcx),%rax - 663506cb: 45 8b 10 mov (%r8),%r10d - 663506ce: 45 85 d2 test %r10d,%r10d - 663506d1: 0f 84 bd 00 00 00 je 66350794 - 663506d7: 4c 8b 42 10 mov 0x10(%rdx),%r8 - 663506db: 45 8b 08 mov (%r8),%r9d - 663506de: 4c 8b 42 08 mov 0x8(%rdx),%r8 - 663506e2: 45 8b 00 mov (%r8),%r8d - 663506e5: 43 8d 74 48 03 lea 0x3(%r8,%r9,2),%esi - 663506ea: 39 c6 cmp %eax,%esi - 663506ec: 0f 84 9a 00 00 00 je 6635078c - 663506f2: 85 c0 test %eax,%eax - 663506f4: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 663506f8: 0f 85 42 01 00 00 jne 66350840 - 663506fe: 48 63 c6 movslq %esi,%rax - 66350701: 4d 8d 04 80 lea (%r8,%rax,4),%r8 - 66350705: 45 8b 08 mov (%r8),%r9d - 66350708: 41 83 f9 01 cmp $0x1,%r9d - 6635070c: 74 6f je 6635077d - 6635070e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 66350712: 41 bb 01 00 00 00 mov $0x1,%r11d - 66350718: 45 29 cb sub %r9d,%r11d - 6635071b: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635071f: 4d 8b 14 c2 mov (%r10,%rax,8),%r10 - 66350723: 45 01 1a add %r11d,(%r10) - 66350726: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6635072d: 45 31 c0 xor %r8d,%r8d - 66350730: 45 8b 1a mov (%r10),%r11d - 66350733: 45 85 db test %r11d,%r11d - 66350736: 41 0f 9f c0 setg %r8b - 6635073a: 44 3b 02 cmp (%rdx),%r8d - 6635073d: 74 3e je 6635077d - 6635073f: 48 8b 53 20 mov 0x20(%rbx),%rdx - 66350743: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350747: 44 8b 12 mov (%rdx),%r10d - 6635074a: 45 85 d2 test %r10d,%r10d - 6635074d: 75 2e jne 6635077d - 6635074f: 48 8b 53 28 mov 0x28(%rbx),%rdx - 66350753: 4c 8b 05 d6 71 00 00 mov 0x71d6(%rip),%r8 # 66357930 - 6635075a: 4c 8b 0d bf 71 00 00 mov 0x71bf(%rip),%r9 # 66357920 - 66350761: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350765: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350769: c7 00 01 00 00 00 movl $0x1,(%rax) - 6635076f: 49 63 00 movslq (%r8),%rax - 66350772: 44 8d 50 01 lea 0x1(%rax),%r10d - 66350776: 45 89 10 mov %r10d,(%r8) - 66350779: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6635077d: 44 8b 4b 38 mov 0x38(%rbx),%r9d - 66350781: 45 85 c9 test %r9d,%r9d - 66350784: 0f 8e 8b 00 00 00 jle 66350815 - 6635078a: 89 31 mov %esi,(%rcx) - 6635078c: 48 83 c4 20 add $0x20,%rsp - 66350790: 5b pop %rbx - 66350791: 5e pop %rsi - 66350792: 5f pop %rdi - 66350793: c3 retq - 66350794: 85 c0 test %eax,%eax - 66350796: 74 f4 je 6635078c - 66350798: 4c 8b 43 08 mov 0x8(%rbx),%r8 - 6635079c: 4d 8d 0c 80 lea (%r8,%rax,4),%r9 - 663507a0: 45 8b 11 mov (%r9),%r10d - 663507a3: 45 85 d2 test %r10d,%r10d - 663507a6: 74 3b je 663507e3 - 663507a8: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 663507ac: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663507b0: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 663507b4: 45 29 10 sub %r10d,(%r8) - 663507b7: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 663507be: 45 8b 00 mov (%r8),%r8d - 663507c1: 45 85 c0 test %r8d,%r8d - 663507c4: 41 0f 9f c0 setg %r8b - 663507c8: 45 0f b6 c0 movzbl %r8b,%r8d - 663507cc: 44 3b 02 cmp (%rdx),%r8d - 663507cf: 74 12 je 663507e3 +000000006634fe80 : + 6634fe80: 56 push %rsi + 6634fe81: 53 push %rbx + 6634fe82: 48 83 ec 28 sub $0x28,%rsp + 6634fe86: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634fe8a: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634fe8e: 48 89 cb mov %rcx,%rbx + 6634fe91: 44 8b 0a mov (%rdx),%r9d + 6634fe94: 45 85 c9 test %r9d,%r9d + 6634fe97: 0f 84 c3 00 00 00 je 6634ff60 + 6634fe9d: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634fea1: 8b 0a mov (%rdx),%ecx + 6634fea3: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634fea7: 8b 12 mov (%rdx),%edx + 6634fea9: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634feac: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634feb0: 48 8b 40 20 mov 0x20(%rax),%rax + 6634feb4: 8b 09 mov (%rcx),%ecx + 6634feb6: 8b 00 mov (%rax),%eax + 6634feb8: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634febb: 8d 34 c2 lea (%rdx,%rax,8),%esi + 6634febe: 85 f6 test %esi,%esi + 6634fec0: 78 05 js 6634fec7 + 6634fec2: 3b 73 38 cmp 0x38(%rbx),%esi + 6634fec5: 7c 19 jl 6634fee0 + 6634fec7: 48 8d 15 32 41 00 00 lea 0x4132(%rip),%rdx # 66354000 <.rdata> + 6634fece: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634fed4: 48 8d 0d 35 41 00 00 lea 0x4135(%rip),%rcx # 66354010 <.rdata+0x10> + 6634fedb: e8 30 23 00 00 callq 66352210 <_assert> + 6634fee0: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634fee4: 48 63 f6 movslq %esi,%rsi + 6634fee7: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634feeb: 8b 04 b0 mov (%rax,%rsi,4),%eax + 6634feee: 8b 4a 14 mov 0x14(%rdx),%ecx + 6634fef1: 39 c8 cmp %ecx,%eax + 6634fef3: 74 64 je 6634ff59 + 6634fef5: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634fef9: 89 c6 mov %eax,%esi + 6634fefb: 29 ce sub %ecx,%esi + 6634fefd: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634ff01: 41 01 30 add %esi,(%r8) + 6634ff04: 89 42 14 mov %eax,0x14(%rdx) + 6634ff07: 31 d2 xor %edx,%edx + 6634ff09: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634ff0d: 41 8b 08 mov (%r8),%ecx + 6634ff10: 48 8b 40 28 mov 0x28(%rax),%rax + 6634ff14: 85 c9 test %ecx,%ecx + 6634ff16: 0f 9f c2 setg %dl + 6634ff19: 3b 10 cmp (%rax),%edx + 6634ff1b: 74 3c je 6634ff59 + 6634ff1d: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634ff21: 48 8b 40 28 mov 0x28(%rax),%rax + 6634ff25: 8b 00 mov (%rax),%eax + 6634ff27: 85 c0 test %eax,%eax + 6634ff29: 75 2e jne 6634ff59 + 6634ff2b: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ff2f: 48 8b 0d fa 79 00 00 mov 0x79fa(%rip),%rcx # 66357930 + 6634ff36: 4c 8b 05 e3 79 00 00 mov 0x79e3(%rip),%r8 # 66357920 + 6634ff3d: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634ff41: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ff45: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ff4b: 48 63 01 movslq (%rcx),%rax + 6634ff4e: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ff52: 44 89 09 mov %r9d,(%rcx) + 6634ff55: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ff59: 48 83 c4 28 add $0x28,%rsp + 6634ff5d: 5b pop %rbx + 6634ff5e: 5e pop %rsi + 6634ff5f: c3 retq + 6634ff60: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ff64: 8b 4a 14 mov 0x14(%rdx),%ecx + 6634ff67: 85 c9 test %ecx,%ecx + 6634ff69: 74 ee je 6634ff59 + 6634ff6b: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634ff6f: 48 8b 40 28 mov 0x28(%rax),%rax + 6634ff73: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634ff77: 41 29 08 sub %ecx,(%r8) + 6634ff7a: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634ff81: 31 d2 xor %edx,%edx + 6634ff83: 45 8b 00 mov (%r8),%r8d + 6634ff86: 45 85 c0 test %r8d,%r8d + 6634ff89: 0f 9f c2 setg %dl + 6634ff8c: 3b 10 cmp (%rax),%edx + 6634ff8e: 75 8d jne 6634ff1d + 6634ff90: eb c7 jmp 6634ff59 + 6634ff92: 0f 1f 40 00 nopl 0x0(%rax) + 6634ff96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ff9d: 00 00 00 + +000000006634ffa0 : + 6634ffa0: 56 push %rsi + 6634ffa1: 53 push %rbx + 6634ffa2: 48 83 ec 28 sub $0x28,%rsp + 6634ffa6: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634ffaa: 48 8b 42 40 mov 0x40(%rdx),%rax + 6634ffae: 48 89 ce mov %rcx,%rsi + 6634ffb1: 44 8b 08 mov (%rax),%r9d + 6634ffb4: 45 85 c9 test %r9d,%r9d + 6634ffb7: 0f 84 d7 00 00 00 je 66350094 + 6634ffbd: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ffc1: 8b 08 mov (%rax),%ecx + 6634ffc3: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634ffc7: 8b 00 mov (%rax),%eax + 6634ffc9: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634ffcc: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 6634ffd0: 8b 09 mov (%rcx),%ecx + 6634ffd2: 8d 04 88 lea (%rax,%rcx,4),%eax + 6634ffd5: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 6634ffd9: 8b 09 mov (%rcx),%ecx + 6634ffdb: 8d 04 c8 lea (%rax,%rcx,8),%eax + 6634ffde: 48 8b 4a 28 mov 0x28(%rdx),%rcx + 6634ffe2: 8b 19 mov (%rcx),%ebx + 6634ffe4: c1 e3 04 shl $0x4,%ebx + 6634ffe7: 01 c3 add %eax,%ebx + 6634ffe9: 48 8b 42 30 mov 0x30(%rdx),%rax + 6634ffed: 8b 00 mov (%rax),%eax + 6634ffef: c1 e0 05 shl $0x5,%eax + 6634fff2: 01 c3 add %eax,%ebx + 6634fff4: 78 05 js 6634fffb + 6634fff6: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634fff9: 7c 19 jl 66350014 + 6634fffb: 48 8d 15 fe 3f 00 00 lea 0x3ffe(%rip),%rdx # 66354000 <.rdata> + 66350002: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66350008: 48 8d 0d 01 40 00 00 lea 0x4001(%rip),%rcx # 66354010 <.rdata+0x10> + 6635000f: e8 fc 21 00 00 callq 66352210 <_assert> + 66350014: 48 8b 56 40 mov 0x40(%rsi),%rdx + 66350018: 48 63 c3 movslq %ebx,%rax + 6635001b: 8b 04 82 mov (%rdx,%rax,4),%eax + 6635001e: 48 8b 56 08 mov 0x8(%rsi),%rdx + 66350022: 8b 4a 1c mov 0x1c(%rdx),%ecx + 66350025: 39 c8 cmp %ecx,%eax + 66350027: 74 64 je 6635008d + 66350029: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6635002d: 89 c3 mov %eax,%ebx + 6635002f: 29 cb sub %ecx,%ebx + 66350031: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66350035: 41 01 18 add %ebx,(%r8) + 66350038: 89 42 1c mov %eax,0x1c(%rdx) + 6635003b: 31 d2 xor %edx,%edx + 6635003d: 48 8b 46 10 mov 0x10(%rsi),%rax + 66350041: 41 8b 08 mov (%r8),%ecx + 66350044: 48 8b 40 38 mov 0x38(%rax),%rax + 66350048: 85 c9 test %ecx,%ecx + 6635004a: 0f 9f c2 setg %dl + 6635004d: 3b 10 cmp (%rax),%edx + 6635004f: 74 3c je 6635008d + 66350051: 48 8b 46 20 mov 0x20(%rsi),%rax + 66350055: 48 8b 40 38 mov 0x38(%rax),%rax + 66350059: 8b 00 mov (%rax),%eax + 6635005b: 85 c0 test %eax,%eax + 6635005d: 75 2e jne 6635008d + 6635005f: 48 8b 46 28 mov 0x28(%rsi),%rax + 66350063: 48 8b 0d c6 78 00 00 mov 0x78c6(%rip),%rcx # 66357930 + 6635006a: 4c 8b 05 af 78 00 00 mov 0x78af(%rip),%r8 # 66357920 + 66350071: 48 8b 50 38 mov 0x38(%rax),%rdx + 66350075: 48 8b 42 10 mov 0x10(%rdx),%rax + 66350079: c7 00 01 00 00 00 movl $0x1,(%rax) + 6635007f: 48 63 01 movslq (%rcx),%rax + 66350082: 44 8d 48 01 lea 0x1(%rax),%r9d + 66350086: 44 89 09 mov %r9d,(%rcx) + 66350089: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6635008d: 48 83 c4 28 add $0x28,%rsp + 66350091: 5b pop %rbx + 66350092: 5e pop %rsi + 66350093: c3 retq + 66350094: 48 8b 41 08 mov 0x8(%rcx),%rax + 66350098: 8b 48 1c mov 0x1c(%rax),%ecx + 6635009b: 85 c9 test %ecx,%ecx + 6635009d: 74 ee je 6635008d + 6635009f: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 663500a3: 4d 8b 40 38 mov 0x38(%r8),%r8 + 663500a7: 41 29 08 sub %ecx,(%r8) + 663500aa: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 663500b1: 31 c9 xor %ecx,%ecx + 663500b3: 45 8b 00 mov (%r8),%r8d + 663500b6: 48 8b 42 38 mov 0x38(%rdx),%rax + 663500ba: 45 85 c0 test %r8d,%r8d + 663500bd: 0f 9f c1 setg %cl + 663500c0: 3b 08 cmp (%rax),%ecx + 663500c2: 75 8d jne 66350051 + 663500c4: eb c7 jmp 6635008d + 663500c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663500cd: 00 00 00 + +00000000663500d0 : + 663500d0: 56 push %rsi + 663500d1: 53 push %rbx + 663500d2: 48 83 ec 28 sub $0x28,%rsp + 663500d6: 44 8b 51 38 mov 0x38(%rcx),%r10d + 663500da: 45 85 d2 test %r10d,%r10d + 663500dd: 48 89 cb mov %rcx,%rbx + 663500e0: 7f 19 jg 663500fb + 663500e2: 48 8d 15 17 3f 00 00 lea 0x3f17(%rip),%rdx # 66354000 <.rdata> + 663500e9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663500ef: 48 8d 0d 1a 3f 00 00 lea 0x3f1a(%rip),%rcx # 66354010 <.rdata+0x10> + 663500f6: e8 15 21 00 00 callq 66352210 <_assert> + 663500fb: 48 8b 43 40 mov 0x40(%rbx),%rax + 663500ff: 8b 10 mov (%rax),%edx + 66350101: 48 8b 43 10 mov 0x10(%rbx),%rax + 66350105: 48 8b 88 48 08 00 00 mov 0x848(%rax),%rcx + 6635010c: 44 8b 09 mov (%rcx),%r9d + 6635010f: 45 85 c9 test %r9d,%r9d + 66350112: 0f 84 fd 00 00 00 je 66350215 + 66350118: 48 8b 48 10 mov 0x10(%rax),%rcx + 6635011c: 44 8b 01 mov (%rcx),%r8d + 6635011f: 48 8b 48 08 mov 0x8(%rax),%rcx + 66350123: 8b 09 mov (%rcx),%ecx + 66350125: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66350129: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6635012d: 45 8b 00 mov (%r8),%r8d + 66350130: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66350134: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66350138: 45 8b 00 mov (%r8),%r8d + 6635013b: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx + 6635013f: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66350143: 45 8b 00 mov (%r8),%r8d + 66350146: 41 c1 e0 04 shl $0x4,%r8d + 6635014a: 41 01 c8 add %ecx,%r8d + 6635014d: 48 8b 48 30 mov 0x30(%rax),%rcx + 66350151: 8b 09 mov (%rcx),%ecx + 66350153: c1 e1 05 shl $0x5,%ecx + 66350156: 41 01 c8 add %ecx,%r8d + 66350159: 48 8b 48 38 mov 0x38(%rax),%rcx + 6635015d: 48 8b 40 40 mov 0x40(%rax),%rax + 66350161: 8b 09 mov (%rcx),%ecx + 66350163: 8b 00 mov (%rax),%eax + 66350165: c1 e1 06 shl $0x6,%ecx + 66350168: 44 01 c1 add %r8d,%ecx + 6635016b: c1 e0 07 shl $0x7,%eax + 6635016e: 8d 74 01 09 lea 0x9(%rcx,%rax,1),%esi + 66350172: 39 d6 cmp %edx,%esi + 66350174: 0f 84 94 00 00 00 je 6635020e + 6635017a: 85 d2 test %edx,%edx + 6635017c: 0f 85 f1 00 00 00 jne 66350273 + 66350182: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350186: 48 63 c6 movslq %esi,%rax + 66350189: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 6635018d: 8b 0a mov (%rdx),%ecx + 6635018f: 83 f9 01 cmp $0x1,%ecx + 66350192: 74 6d je 66350201 + 66350194: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66350198: 41 b9 01 00 00 00 mov $0x1,%r9d + 6635019e: 41 29 c9 sub %ecx,%r9d + 663501a1: 31 c9 xor %ecx,%ecx + 663501a3: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 663501a7: 45 01 08 add %r9d,(%r8) + 663501aa: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663501b0: 48 8b 53 10 mov 0x10(%rbx),%rdx + 663501b4: 45 8b 00 mov (%r8),%r8d + 663501b7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663501bb: 45 85 c0 test %r8d,%r8d + 663501be: 0f 9f c1 setg %cl + 663501c1: 3b 0a cmp (%rdx),%ecx + 663501c3: 74 3c je 66350201 + 663501c5: 48 8b 53 20 mov 0x20(%rbx),%rdx + 663501c9: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663501cd: 8b 0a mov (%rdx),%ecx + 663501cf: 85 c9 test %ecx,%ecx + 663501d1: 75 2e jne 66350201 + 663501d3: 48 8b 53 28 mov 0x28(%rbx),%rdx + 663501d7: 48 8b 0d 52 77 00 00 mov 0x7752(%rip),%rcx # 66357930 + 663501de: 4c 8b 05 3b 77 00 00 mov 0x773b(%rip),%r8 # 66357920 + 663501e5: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663501e9: 48 8b 42 10 mov 0x10(%rdx),%rax + 663501ed: c7 00 01 00 00 00 movl $0x1,(%rax) + 663501f3: 48 63 01 movslq (%rcx),%rax + 663501f6: 44 8d 48 01 lea 0x1(%rax),%r9d + 663501fa: 44 89 09 mov %r9d,(%rcx) + 663501fd: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66350201: 8b 53 38 mov 0x38(%rbx),%edx + 66350204: 85 d2 test %edx,%edx + 66350206: 7e 4a jle 66350252 + 66350208: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635020c: 89 30 mov %esi,(%rax) + 6635020e: 48 83 c4 28 add $0x28,%rsp + 66350212: 5b pop %rbx + 66350213: 5e pop %rsi + 66350214: c3 retq + 66350215: 85 d2 test %edx,%edx + 66350217: 74 f5 je 6635020e + 66350219: 48 89 d9 mov %rbx,%rcx + 6635021c: e8 0f 12 ff ff callq 66341430 + 66350221: 8b 43 38 mov 0x38(%rbx),%eax + 66350224: 85 c0 test %eax,%eax + 66350226: 7f 19 jg 66350241 + 66350228: 48 8d 15 d1 3d 00 00 lea 0x3dd1(%rip),%rdx # 66354000 <.rdata> + 6635022f: 41 b8 93 00 00 00 mov $0x93,%r8d + 66350235: 48 8d 0d d4 3d 00 00 lea 0x3dd4(%rip),%rcx # 66354010 <.rdata+0x10> + 6635023c: e8 cf 1f 00 00 callq 66352210 <_assert> + 66350241: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350245: c7 00 00 00 00 00 movl $0x0,(%rax) + 6635024b: 48 83 c4 28 add $0x28,%rsp + 6635024f: 5b pop %rbx + 66350250: 5e pop %rsi + 66350251: c3 retq + 66350252: 48 8d 15 a7 3d 00 00 lea 0x3da7(%rip),%rdx # 66354000 <.rdata> + 66350259: 41 b8 93 00 00 00 mov $0x93,%r8d + 6635025f: 48 8d 0d aa 3d 00 00 lea 0x3daa(%rip),%rcx # 66354010 <.rdata+0x10> + 66350266: e8 a5 1f 00 00 callq 66352210 <_assert> + 6635026b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635026f: 89 30 mov %esi,(%rax) + 66350271: eb 9b jmp 6635020e + 66350273: 48 89 d9 mov %rbx,%rcx + 66350276: e8 b5 11 ff ff callq 66341430 + 6635027b: e9 02 ff ff ff jmpq 66350182 + +0000000066350280 : + 66350280: 56 push %rsi + 66350281: 53 push %rbx + 66350282: 48 83 ec 28 sub $0x28,%rsp + 66350286: 44 8b 51 38 mov 0x38(%rcx),%r10d + 6635028a: 45 85 d2 test %r10d,%r10d + 6635028d: 48 89 cb mov %rcx,%rbx + 66350290: 7f 19 jg 663502ab + 66350292: 48 8d 15 67 3d 00 00 lea 0x3d67(%rip),%rdx # 66354000 <.rdata> + 66350299: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6635029f: 48 8d 0d 6a 3d 00 00 lea 0x3d6a(%rip),%rcx # 66354010 <.rdata+0x10> + 663502a6: e8 65 1f 00 00 callq 66352210 <_assert> + 663502ab: 48 8b 43 40 mov 0x40(%rbx),%rax + 663502af: 8b 10 mov (%rax),%edx + 663502b1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663502b5: 48 8b 48 38 mov 0x38(%rax),%rcx + 663502b9: 44 8b 09 mov (%rcx),%r9d + 663502bc: 45 85 c9 test %r9d,%r9d + 663502bf: 0f 84 bb 00 00 00 je 66350380 + 663502c5: 48 8b 48 10 mov 0x10(%rax),%rcx + 663502c9: 48 8b 40 08 mov 0x8(%rax),%rax + 663502cd: 8b 09 mov (%rcx),%ecx + 663502cf: 8b 00 mov (%rax),%eax + 663502d1: 8d 74 48 03 lea 0x3(%rax,%rcx,2),%esi + 663502d5: 39 d6 cmp %edx,%esi + 663502d7: 0f 84 94 00 00 00 je 66350371 + 663502dd: 85 d2 test %edx,%edx + 663502df: 0f 85 fc 00 00 00 jne 663503e1 + 663502e5: 48 8b 53 08 mov 0x8(%rbx),%rdx + 663502e9: 48 63 c6 movslq %esi,%rax + 663502ec: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 663502f0: 8b 0a mov (%rdx),%ecx + 663502f2: 83 f9 01 cmp $0x1,%ecx + 663502f5: 74 6d je 66350364 + 663502f7: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663502fb: 41 b9 01 00 00 00 mov $0x1,%r9d + 66350301: 41 29 c9 sub %ecx,%r9d + 66350304: 31 c9 xor %ecx,%ecx + 66350306: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 6635030a: 45 01 08 add %r9d,(%r8) + 6635030d: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66350313: 48 8b 53 10 mov 0x10(%rbx),%rdx + 66350317: 45 8b 00 mov (%r8),%r8d + 6635031a: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 6635031e: 45 85 c0 test %r8d,%r8d + 66350321: 0f 9f c1 setg %cl + 66350324: 3b 0a cmp (%rdx),%ecx + 66350326: 74 3c je 66350364 + 66350328: 48 8b 53 20 mov 0x20(%rbx),%rdx + 6635032c: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350330: 8b 0a mov (%rdx),%ecx + 66350332: 85 c9 test %ecx,%ecx + 66350334: 75 2e jne 66350364 + 66350336: 48 8b 53 28 mov 0x28(%rbx),%rdx + 6635033a: 48 8b 0d ef 75 00 00 mov 0x75ef(%rip),%rcx # 66357930 + 66350341: 4c 8b 05 d8 75 00 00 mov 0x75d8(%rip),%r8 # 66357920 + 66350348: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 6635034c: 48 8b 42 10 mov 0x10(%rdx),%rax + 66350350: c7 00 01 00 00 00 movl $0x1,(%rax) + 66350356: 48 63 01 movslq (%rcx),%rax + 66350359: 44 8d 48 01 lea 0x1(%rax),%r9d + 6635035d: 44 89 09 mov %r9d,(%rcx) + 66350360: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66350364: 8b 53 38 mov 0x38(%rbx),%edx + 66350367: 85 d2 test %edx,%edx + 66350369: 7e 55 jle 663503c0 + 6635036b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635036f: 89 30 mov %esi,(%rax) + 66350371: 48 83 c4 28 add $0x28,%rsp + 66350375: 5b pop %rbx + 66350376: 5e pop %rsi + 66350377: c3 retq + 66350378: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635037f: 00 + 66350380: 85 d2 test %edx,%edx + 66350382: 74 ed je 66350371 + 66350384: 48 89 d9 mov %rbx,%rcx + 66350387: e8 a4 10 ff ff callq 66341430 + 6635038c: 8b 43 38 mov 0x38(%rbx),%eax + 6635038f: 85 c0 test %eax,%eax + 66350391: 7f 19 jg 663503ac + 66350393: 48 8d 15 66 3c 00 00 lea 0x3c66(%rip),%rdx # 66354000 <.rdata> + 6635039a: 41 b8 93 00 00 00 mov $0x93,%r8d + 663503a0: 48 8d 0d 69 3c 00 00 lea 0x3c69(%rip),%rcx # 66354010 <.rdata+0x10> + 663503a7: e8 64 1e 00 00 callq 66352210 <_assert> + 663503ac: 48 8b 43 40 mov 0x40(%rbx),%rax + 663503b0: c7 00 00 00 00 00 movl $0x0,(%rax) + 663503b6: 48 83 c4 28 add $0x28,%rsp + 663503ba: 5b pop %rbx + 663503bb: 5e pop %rsi + 663503bc: c3 retq + 663503bd: 0f 1f 00 nopl (%rax) + 663503c0: 48 8d 15 39 3c 00 00 lea 0x3c39(%rip),%rdx # 66354000 <.rdata> + 663503c7: 41 b8 93 00 00 00 mov $0x93,%r8d + 663503cd: 48 8d 0d 3c 3c 00 00 lea 0x3c3c(%rip),%rcx # 66354010 <.rdata+0x10> + 663503d4: e8 37 1e 00 00 callq 66352210 <_assert> + 663503d9: 48 8b 43 40 mov 0x40(%rbx),%rax + 663503dd: 89 30 mov %esi,(%rax) + 663503df: eb 90 jmp 66350371 + 663503e1: 48 89 d9 mov %rbx,%rcx + 663503e4: e8 47 10 ff ff callq 66341430 + 663503e9: e9 f7 fe ff ff jmpq 663502e5 + 663503ee: 66 90 xchg %ax,%ax + +00000000663503f0 : + 663503f0: 56 push %rsi + 663503f1: 53 push %rbx + 663503f2: 48 83 ec 28 sub $0x28,%rsp + 663503f6: 44 8b 51 38 mov 0x38(%rcx),%r10d + 663503fa: 45 85 d2 test %r10d,%r10d + 663503fd: 48 89 cb mov %rcx,%rbx + 66350400: 7f 19 jg 6635041b + 66350402: 48 8d 15 f7 3b 00 00 lea 0x3bf7(%rip),%rdx # 66354000 <.rdata> + 66350409: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6635040f: 48 8d 0d fa 3b 00 00 lea 0x3bfa(%rip),%rcx # 66354010 <.rdata+0x10> + 66350416: e8 f5 1d 00 00 callq 66352210 <_assert> + 6635041b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635041f: 8b 10 mov (%rax),%edx + 66350421: 48 8b 43 10 mov 0x10(%rbx),%rax + 66350425: 48 8b 48 60 mov 0x60(%rax),%rcx + 66350429: 44 8b 09 mov (%rcx),%r9d + 6635042c: 45 85 c9 test %r9d,%r9d + 6635042f: 0f 84 be 00 00 00 je 663504f3 + 66350435: 48 8b 48 10 mov 0x10(%rax),%rcx + 66350439: 44 8b 01 mov (%rcx),%r8d + 6635043c: 48 8b 48 08 mov 0x8(%rax),%rcx + 66350440: 48 8b 40 18 mov 0x18(%rax),%rax + 66350444: 8b 09 mov (%rcx),%ecx + 66350446: 8b 00 mov (%rax),%eax + 66350448: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 6635044c: 8d 74 81 04 lea 0x4(%rcx,%rax,4),%esi + 66350450: 39 d6 cmp %edx,%esi + 66350452: 0f 84 94 00 00 00 je 663504ec + 66350458: 85 d2 test %edx,%edx + 6635045a: 0f 85 f1 00 00 00 jne 66350551 + 66350460: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350464: 48 63 c6 movslq %esi,%rax + 66350467: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 6635046b: 8b 0a mov (%rdx),%ecx + 6635046d: 83 f9 01 cmp $0x1,%ecx + 66350470: 74 6d je 663504df + 66350472: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66350476: 41 b9 01 00 00 00 mov $0x1,%r9d + 6635047c: 41 29 c9 sub %ecx,%r9d + 6635047f: 31 c9 xor %ecx,%ecx + 66350481: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 66350485: 45 01 08 add %r9d,(%r8) + 66350488: c7 02 01 00 00 00 movl $0x1,(%rdx) + 6635048e: 48 8b 53 10 mov 0x10(%rbx),%rdx + 66350492: 45 8b 00 mov (%r8),%r8d + 66350495: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350499: 45 85 c0 test %r8d,%r8d + 6635049c: 0f 9f c1 setg %cl + 6635049f: 3b 0a cmp (%rdx),%ecx + 663504a1: 74 3c je 663504df + 663504a3: 48 8b 53 20 mov 0x20(%rbx),%rdx + 663504a7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663504ab: 8b 0a mov (%rdx),%ecx + 663504ad: 85 c9 test %ecx,%ecx + 663504af: 75 2e jne 663504df + 663504b1: 48 8b 53 28 mov 0x28(%rbx),%rdx + 663504b5: 48 8b 0d 74 74 00 00 mov 0x7474(%rip),%rcx # 66357930 + 663504bc: 4c 8b 05 5d 74 00 00 mov 0x745d(%rip),%r8 # 66357920 + 663504c3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663504c7: 48 8b 42 10 mov 0x10(%rdx),%rax + 663504cb: c7 00 01 00 00 00 movl $0x1,(%rax) + 663504d1: 48 63 01 movslq (%rcx),%rax + 663504d4: 44 8d 48 01 lea 0x1(%rax),%r9d + 663504d8: 44 89 09 mov %r9d,(%rcx) + 663504db: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663504df: 8b 53 38 mov 0x38(%rbx),%edx + 663504e2: 85 d2 test %edx,%edx + 663504e4: 7e 4a jle 66350530 + 663504e6: 48 8b 43 40 mov 0x40(%rbx),%rax + 663504ea: 89 30 mov %esi,(%rax) + 663504ec: 48 83 c4 28 add $0x28,%rsp + 663504f0: 5b pop %rbx + 663504f1: 5e pop %rsi + 663504f2: c3 retq + 663504f3: 85 d2 test %edx,%edx + 663504f5: 74 f5 je 663504ec + 663504f7: 48 89 d9 mov %rbx,%rcx + 663504fa: e8 31 0f ff ff callq 66341430 + 663504ff: 8b 43 38 mov 0x38(%rbx),%eax + 66350502: 85 c0 test %eax,%eax + 66350504: 7f 19 jg 6635051f + 66350506: 48 8d 15 f3 3a 00 00 lea 0x3af3(%rip),%rdx # 66354000 <.rdata> + 6635050d: 41 b8 93 00 00 00 mov $0x93,%r8d + 66350513: 48 8d 0d f6 3a 00 00 lea 0x3af6(%rip),%rcx # 66354010 <.rdata+0x10> + 6635051a: e8 f1 1c 00 00 callq 66352210 <_assert> + 6635051f: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350523: c7 00 00 00 00 00 movl $0x0,(%rax) + 66350529: 48 83 c4 28 add $0x28,%rsp + 6635052d: 5b pop %rbx + 6635052e: 5e pop %rsi + 6635052f: c3 retq + 66350530: 48 8d 15 c9 3a 00 00 lea 0x3ac9(%rip),%rdx # 66354000 <.rdata> + 66350537: 41 b8 93 00 00 00 mov $0x93,%r8d + 6635053d: 48 8d 0d cc 3a 00 00 lea 0x3acc(%rip),%rcx # 66354010 <.rdata+0x10> + 66350544: e8 c7 1c 00 00 callq 66352210 <_assert> + 66350549: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635054d: 89 30 mov %esi,(%rax) + 6635054f: eb 9b jmp 663504ec + 66350551: 48 89 d9 mov %rbx,%rcx + 66350554: e8 d7 0e ff ff callq 66341430 + 66350559: e9 02 ff ff ff jmpq 66350460 + 6635055e: 66 90 xchg %ax,%ax + +0000000066350560 : + 66350560: 56 push %rsi + 66350561: 53 push %rbx + 66350562: 48 83 ec 28 sub $0x28,%rsp + 66350566: 44 8b 51 38 mov 0x38(%rcx),%r10d + 6635056a: 45 85 d2 test %r10d,%r10d + 6635056d: 48 89 cb mov %rcx,%rbx + 66350570: 7f 19 jg 6635058b + 66350572: 48 8d 15 87 3a 00 00 lea 0x3a87(%rip),%rdx # 66354000 <.rdata> + 66350579: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6635057f: 48 8d 0d 8a 3a 00 00 lea 0x3a8a(%rip),%rcx # 66354010 <.rdata+0x10> + 66350586: e8 85 1c 00 00 callq 66352210 <_assert> + 6635058b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635058f: 8b 10 mov (%rax),%edx + 66350591: 48 8b 43 10 mov 0x10(%rbx),%rax + 66350595: 48 8b 88 40 04 00 00 mov 0x440(%rax),%rcx + 6635059c: 44 8b 09 mov (%rcx),%r9d + 6635059f: 45 85 c9 test %r9d,%r9d + 663505a2: 0f 84 f8 00 00 00 je 663506a0 + 663505a8: 48 8b 48 10 mov 0x10(%rax),%rcx + 663505ac: 44 8b 01 mov (%rcx),%r8d + 663505af: 48 8b 48 08 mov 0x8(%rax),%rcx + 663505b3: 8b 09 mov (%rcx),%ecx + 663505b5: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 663505b9: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663505bd: 45 8b 00 mov (%r8),%r8d + 663505c0: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 663505c4: 4c 8b 40 20 mov 0x20(%rax),%r8 + 663505c8: 45 8b 00 mov (%r8),%r8d + 663505cb: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d + 663505cf: 48 8b 48 28 mov 0x28(%rax),%rcx + 663505d3: 8b 09 mov (%rcx),%ecx + 663505d5: c1 e1 04 shl $0x4,%ecx + 663505d8: 41 01 c8 add %ecx,%r8d + 663505db: 48 8b 48 30 mov 0x30(%rax),%rcx + 663505df: 48 8b 40 38 mov 0x38(%rax),%rax + 663505e3: 8b 09 mov (%rcx),%ecx + 663505e5: 8b 00 mov (%rax),%eax + 663505e7: c1 e1 05 shl $0x5,%ecx + 663505ea: 44 01 c1 add %r8d,%ecx + 663505ed: c1 e0 06 shl $0x6,%eax + 663505f0: 8d 74 01 08 lea 0x8(%rcx,%rax,1),%esi + 663505f4: 39 d6 cmp %edx,%esi + 663505f6: 0f 84 94 00 00 00 je 66350690 + 663505fc: 85 d2 test %edx,%edx + 663505fe: 0f 85 fd 00 00 00 jne 66350701 + 66350604: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350608: 48 63 c6 movslq %esi,%rax + 6635060b: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 6635060f: 8b 0a mov (%rdx),%ecx + 66350611: 83 f9 01 cmp $0x1,%ecx + 66350614: 74 6d je 66350683 + 66350616: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6635061a: 41 b9 01 00 00 00 mov $0x1,%r9d + 66350620: 41 29 c9 sub %ecx,%r9d + 66350623: 31 c9 xor %ecx,%ecx + 66350625: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 66350629: 45 01 08 add %r9d,(%r8) + 6635062c: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66350632: 48 8b 53 10 mov 0x10(%rbx),%rdx + 66350636: 45 8b 00 mov (%r8),%r8d + 66350639: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 6635063d: 45 85 c0 test %r8d,%r8d + 66350640: 0f 9f c1 setg %cl + 66350643: 3b 0a cmp (%rdx),%ecx + 66350645: 74 3c je 66350683 + 66350647: 48 8b 53 20 mov 0x20(%rbx),%rdx + 6635064b: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 6635064f: 8b 0a mov (%rdx),%ecx + 66350651: 85 c9 test %ecx,%ecx + 66350653: 75 2e jne 66350683 + 66350655: 48 8b 53 28 mov 0x28(%rbx),%rdx + 66350659: 48 8b 0d d0 72 00 00 mov 0x72d0(%rip),%rcx # 66357930 + 66350660: 4c 8b 05 b9 72 00 00 mov 0x72b9(%rip),%r8 # 66357920 + 66350667: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 6635066b: 48 8b 42 10 mov 0x10(%rdx),%rax + 6635066f: c7 00 01 00 00 00 movl $0x1,(%rax) + 66350675: 48 63 01 movslq (%rcx),%rax + 66350678: 44 8d 48 01 lea 0x1(%rax),%r9d + 6635067c: 44 89 09 mov %r9d,(%rcx) + 6635067f: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66350683: 8b 53 38 mov 0x38(%rbx),%edx + 66350686: 85 d2 test %edx,%edx + 66350688: 7e 56 jle 663506e0 + 6635068a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635068e: 89 30 mov %esi,(%rax) + 66350690: 48 83 c4 28 add $0x28,%rsp + 66350694: 5b pop %rbx + 66350695: 5e pop %rsi + 66350696: c3 retq + 66350697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6635069e: 00 00 + 663506a0: 85 d2 test %edx,%edx + 663506a2: 74 ec je 66350690 + 663506a4: 48 89 d9 mov %rbx,%rcx + 663506a7: e8 84 0d ff ff callq 66341430 + 663506ac: 8b 43 38 mov 0x38(%rbx),%eax + 663506af: 85 c0 test %eax,%eax + 663506b1: 7f 19 jg 663506cc + 663506b3: 48 8d 15 46 39 00 00 lea 0x3946(%rip),%rdx # 66354000 <.rdata> + 663506ba: 41 b8 93 00 00 00 mov $0x93,%r8d + 663506c0: 48 8d 0d 49 39 00 00 lea 0x3949(%rip),%rcx # 66354010 <.rdata+0x10> + 663506c7: e8 44 1b 00 00 callq 66352210 <_assert> + 663506cc: 48 8b 43 40 mov 0x40(%rbx),%rax + 663506d0: c7 00 00 00 00 00 movl $0x0,(%rax) + 663506d6: 48 83 c4 28 add $0x28,%rsp + 663506da: 5b pop %rbx + 663506db: 5e pop %rsi + 663506dc: c3 retq + 663506dd: 0f 1f 00 nopl (%rax) + 663506e0: 48 8d 15 19 39 00 00 lea 0x3919(%rip),%rdx # 66354000 <.rdata> + 663506e7: 41 b8 93 00 00 00 mov $0x93,%r8d + 663506ed: 48 8d 0d 1c 39 00 00 lea 0x391c(%rip),%rcx # 66354010 <.rdata+0x10> + 663506f4: e8 17 1b 00 00 callq 66352210 <_assert> + 663506f9: 48 8b 43 40 mov 0x40(%rbx),%rax + 663506fd: 89 30 mov %esi,(%rax) + 663506ff: eb 8f jmp 66350690 + 66350701: 48 89 d9 mov %rbx,%rcx + 66350704: e8 27 0d ff ff callq 66341430 + 66350709: e9 f6 fe ff ff jmpq 66350604 + 6635070e: 66 90 xchg %ax,%ax + +0000000066350710 : + 66350710: 56 push %rsi + 66350711: 53 push %rbx + 66350712: 48 83 ec 28 sub $0x28,%rsp + 66350716: 44 8b 51 38 mov 0x38(%rcx),%r10d + 6635071a: 45 85 d2 test %r10d,%r10d + 6635071d: 48 89 cb mov %rcx,%rbx + 66350720: 7f 19 jg 6635073b + 66350722: 48 8d 15 d7 38 00 00 lea 0x38d7(%rip),%rdx # 66354000 <.rdata> + 66350729: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6635072f: 48 8d 0d da 38 00 00 lea 0x38da(%rip),%rcx # 66354010 <.rdata+0x10> + 66350736: e8 d5 1a 00 00 callq 66352210 <_assert> + 6635073b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635073f: 8b 10 mov (%rax),%edx + 66350741: 48 8b 43 10 mov 0x10(%rbx),%rax + 66350745: 48 8b 88 a8 00 00 00 mov 0xa8(%rax),%rcx + 6635074c: 44 8b 09 mov (%rcx),%r9d + 6635074f: 45 85 c9 test %r9d,%r9d + 66350752: 0f 84 c9 00 00 00 je 66350821 + 66350758: 48 8b 48 10 mov 0x10(%rax),%rcx + 6635075c: 44 8b 01 mov (%rcx),%r8d + 6635075f: 48 8b 48 08 mov 0x8(%rax),%rcx + 66350763: 8b 09 mov (%rcx),%ecx + 66350765: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66350769: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6635076d: 48 8b 40 20 mov 0x20(%rax),%rax + 66350771: 45 8b 00 mov (%r8),%r8d + 66350774: 8b 00 mov (%rax),%eax + 66350776: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 6635077a: 8d 74 c1 05 lea 0x5(%rcx,%rax,8),%esi + 6635077e: 39 d6 cmp %edx,%esi + 66350780: 0f 84 94 00 00 00 je 6635081a + 66350786: 85 d2 test %edx,%edx + 66350788: 0f 85 f3 00 00 00 jne 66350881 + 6635078e: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350792: 48 63 c6 movslq %esi,%rax + 66350795: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 66350799: 8b 0a mov (%rdx),%ecx + 6635079b: 83 f9 01 cmp $0x1,%ecx + 6635079e: 74 6d je 6635080d + 663507a0: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663507a4: 41 b9 01 00 00 00 mov $0x1,%r9d + 663507aa: 41 29 c9 sub %ecx,%r9d + 663507ad: 31 c9 xor %ecx,%ecx + 663507af: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 663507b3: 45 01 08 add %r9d,(%r8) + 663507b6: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663507bc: 48 8b 53 10 mov 0x10(%rbx),%rdx + 663507c0: 45 8b 00 mov (%r8),%r8d + 663507c3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663507c7: 45 85 c0 test %r8d,%r8d + 663507ca: 0f 9f c1 setg %cl + 663507cd: 3b 0a cmp (%rdx),%ecx + 663507cf: 74 3c je 6635080d 663507d1: 48 8b 53 20 mov 0x20(%rbx),%rdx 663507d5: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663507d9: 8b 12 mov (%rdx),%edx - 663507db: 85 d2 test %edx,%edx - 663507dd: 0f 84 de 00 00 00 je 663508c1 - 663507e3: 8b 43 38 mov 0x38(%rbx),%eax - 663507e6: 85 c0 test %eax,%eax - 663507e8: 7f 1d jg 66350807 - 663507ea: 48 8d 0d 1f 38 00 00 lea 0x381f(%rip),%rcx # 66354010 <.rdata+0x10> - 663507f1: 41 b8 93 00 00 00 mov $0x93,%r8d - 663507f7: 48 8d 15 02 38 00 00 lea 0x3802(%rip),%rdx # 66354000 <.rdata> - 663507fe: e8 4d 17 00 00 callq 66351f50 <_assert> - 66350803: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 66350807: c7 01 00 00 00 00 movl $0x0,(%rcx) - 6635080d: 48 83 c4 20 add $0x20,%rsp - 66350811: 5b pop %rbx - 66350812: 5e pop %rsi - 66350813: 5f pop %rdi - 66350814: c3 retq - 66350815: 48 8d 0d f4 37 00 00 lea 0x37f4(%rip),%rcx # 66354010 <.rdata+0x10> - 6635081c: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350822: 48 8d 15 d7 37 00 00 lea 0x37d7(%rip),%rdx # 66354000 <.rdata> - 66350829: e8 22 17 00 00 callq 66351f50 <_assert> - 6635082e: 48 8b 4b 40 mov 0x40(%rbx),%rcx - 66350832: 89 31 mov %esi,(%rcx) - 66350834: e9 53 ff ff ff jmpq 6635078c - 66350839: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66350840: 4d 8d 0c 80 lea (%r8,%rax,4),%r9 - 66350844: 45 8b 11 mov (%r9),%r10d - 66350847: 45 85 d2 test %r10d,%r10d - 6635084a: 0f 84 ae fe ff ff je 663506fe - 66350850: 4c 8b 5b 18 mov 0x18(%rbx),%r11 - 66350854: 4d 8b 1c c3 mov (%r11,%rax,8),%r11 - 66350858: 45 29 13 sub %r10d,(%r11) - 6635085b: 41 c7 01 00 00 00 00 movl $0x0,(%r9) - 66350862: 45 31 d2 xor %r10d,%r10d - 66350865: 45 8b 0b mov (%r11),%r9d - 66350868: 45 85 c9 test %r9d,%r9d - 6635086b: 4c 8b 0c c2 mov (%rdx,%rax,8),%r9 - 6635086f: 41 0f 9f c2 setg %r10b - 66350873: 45 3b 11 cmp (%r9),%r10d - 66350876: 0f 84 82 fe ff ff je 663506fe - 6635087c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 66350880: 4d 8b 0c c1 mov (%r9,%rax,8),%r9 - 66350884: 41 8b 39 mov (%r9),%edi - 66350887: 85 ff test %edi,%edi - 66350889: 0f 85 6f fe ff ff jne 663506fe - 6635088f: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 66350893: 4c 8b 15 96 70 00 00 mov 0x7096(%rip),%r10 # 66357930 - 6635089a: 4c 8b 1d 7f 70 00 00 mov 0x707f(%rip),%r11 # 66357920 - 663508a1: 4d 8b 0c c1 mov (%r9,%rax,8),%r9 - 663508a5: 49 8b 41 10 mov 0x10(%r9),%rax - 663508a9: c7 00 01 00 00 00 movl $0x1,(%rax) - 663508af: 49 63 02 movslq (%r10),%rax - 663508b2: 8d 78 01 lea 0x1(%rax),%edi - 663508b5: 41 89 3a mov %edi,(%r10) - 663508b8: 4d 89 0c c3 mov %r9,(%r11,%rax,8) - 663508bc: e9 3d fe ff ff jmpq 663506fe - 663508c1: 48 8b 53 28 mov 0x28(%rbx),%rdx - 663508c5: 4c 8b 05 64 70 00 00 mov 0x7064(%rip),%r8 # 66357930 - 663508cc: 4c 8b 0d 4d 70 00 00 mov 0x704d(%rip),%r9 # 66357920 - 663508d3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663508d7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663508db: c7 00 01 00 00 00 movl $0x1,(%rax) - 663508e1: 49 63 00 movslq (%r8),%rax - 663508e4: 44 8d 50 01 lea 0x1(%rax),%r10d - 663508e8: 45 89 10 mov %r10d,(%r8) - 663508eb: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 663508ef: e9 ef fe ff ff jmpq 663507e3 - 663508f4: 66 90 xchg %ax,%ax - 663508f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663508fd: 00 00 00 + 663507d9: 8b 0a mov (%rdx),%ecx + 663507db: 85 c9 test %ecx,%ecx + 663507dd: 75 2e jne 6635080d + 663507df: 48 8b 53 28 mov 0x28(%rbx),%rdx + 663507e3: 48 8b 0d 46 71 00 00 mov 0x7146(%rip),%rcx # 66357930 + 663507ea: 4c 8b 05 2f 71 00 00 mov 0x712f(%rip),%r8 # 66357920 + 663507f1: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 663507f5: 48 8b 42 10 mov 0x10(%rdx),%rax + 663507f9: c7 00 01 00 00 00 movl $0x1,(%rax) + 663507ff: 48 63 01 movslq (%rcx),%rax + 66350802: 44 8d 48 01 lea 0x1(%rax),%r9d + 66350806: 44 89 09 mov %r9d,(%rcx) + 66350809: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6635080d: 8b 53 38 mov 0x38(%rbx),%edx + 66350810: 85 d2 test %edx,%edx + 66350812: 7e 4c jle 66350860 + 66350814: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350818: 89 30 mov %esi,(%rax) + 6635081a: 48 83 c4 28 add $0x28,%rsp + 6635081e: 5b pop %rbx + 6635081f: 5e pop %rsi + 66350820: c3 retq + 66350821: 85 d2 test %edx,%edx + 66350823: 74 f5 je 6635081a + 66350825: 48 89 d9 mov %rbx,%rcx + 66350828: e8 03 0c ff ff callq 66341430 + 6635082d: 8b 43 38 mov 0x38(%rbx),%eax + 66350830: 85 c0 test %eax,%eax + 66350832: 7f 19 jg 6635084d + 66350834: 48 8d 15 c5 37 00 00 lea 0x37c5(%rip),%rdx # 66354000 <.rdata> + 6635083b: 41 b8 93 00 00 00 mov $0x93,%r8d + 66350841: 48 8d 0d c8 37 00 00 lea 0x37c8(%rip),%rcx # 66354010 <.rdata+0x10> + 66350848: e8 c3 19 00 00 callq 66352210 <_assert> + 6635084d: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350851: c7 00 00 00 00 00 movl $0x0,(%rax) + 66350857: 48 83 c4 28 add $0x28,%rsp + 6635085b: 5b pop %rbx + 6635085c: 5e pop %rsi + 6635085d: c3 retq + 6635085e: 66 90 xchg %ax,%ax + 66350860: 48 8d 15 99 37 00 00 lea 0x3799(%rip),%rdx # 66354000 <.rdata> + 66350867: 41 b8 93 00 00 00 mov $0x93,%r8d + 6635086d: 48 8d 0d 9c 37 00 00 lea 0x379c(%rip),%rcx # 66354010 <.rdata+0x10> + 66350874: e8 97 19 00 00 callq 66352210 <_assert> + 66350879: 48 8b 43 40 mov 0x40(%rbx),%rax + 6635087d: 89 30 mov %esi,(%rax) + 6635087f: eb 99 jmp 6635081a + 66350881: 48 89 d9 mov %rbx,%rcx + 66350884: e8 a7 0b ff ff callq 66341430 + 66350889: e9 00 ff ff ff jmpq 6635078e + 6635088e: 66 90 xchg %ax,%ax -0000000066350900 : - 66350900: 48 8b 44 24 28 mov 0x28(%rsp),%rax - 66350905: 48 89 0d 14 70 00 00 mov %rcx,0x7014(%rip) # 66357920 - 6635090c: 48 89 15 1d 70 00 00 mov %rdx,0x701d(%rip) # 66357930 - 66350913: 4c 89 05 f6 6f 00 00 mov %r8,0x6ff6(%rip) # 66357910 - 6635091a: 4c 89 0d 07 70 00 00 mov %r9,0x7007(%rip) # 66357928 - 66350921: 48 89 05 f0 6f 00 00 mov %rax,0x6ff0(%rip) # 66357918 - 66350928: c3 retq - 66350929: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +0000000066350890 : + 66350890: 56 push %rsi + 66350891: 53 push %rbx + 66350892: 48 83 ec 28 sub $0x28,%rsp + 66350896: 44 8b 51 38 mov 0x38(%rcx),%r10d + 6635089a: 45 85 d2 test %r10d,%r10d + 6635089d: 48 89 cb mov %rcx,%rbx + 663508a0: 7f 19 jg 663508bb + 663508a2: 48 8d 15 57 37 00 00 lea 0x3757(%rip),%rdx # 66354000 <.rdata> + 663508a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663508af: 48 8d 0d 5a 37 00 00 lea 0x375a(%rip),%rcx # 66354010 <.rdata+0x10> + 663508b6: e8 55 19 00 00 callq 66352210 <_assert> + 663508bb: 48 8b 43 40 mov 0x40(%rbx),%rax + 663508bf: 8b 10 mov (%rax),%edx + 663508c1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663508c5: 48 8b 88 30 01 00 00 mov 0x130(%rax),%rcx + 663508cc: 44 8b 09 mov (%rcx),%r9d + 663508cf: 45 85 c9 test %r9d,%r9d + 663508d2: 0f 84 d8 00 00 00 je 663509b0 + 663508d8: 48 8b 48 10 mov 0x10(%rax),%rcx + 663508dc: 44 8b 01 mov (%rcx),%r8d + 663508df: 48 8b 48 08 mov 0x8(%rax),%rcx + 663508e3: 8b 09 mov (%rcx),%ecx + 663508e5: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 663508e9: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663508ed: 45 8b 00 mov (%r8),%r8d + 663508f0: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 663508f4: 4c 8b 40 20 mov 0x20(%rax),%r8 + 663508f8: 48 8b 40 28 mov 0x28(%rax),%rax + 663508fc: 45 8b 00 mov (%r8),%r8d + 663508ff: 8b 00 mov (%rax),%eax + 66350901: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx + 66350905: c1 e0 04 shl $0x4,%eax + 66350908: 8d 74 01 06 lea 0x6(%rcx,%rax,1),%esi + 6635090c: 39 d6 cmp %edx,%esi + 6635090e: 0f 84 94 00 00 00 je 663509a8 + 66350914: 85 d2 test %edx,%edx + 66350916: 0f 85 f5 00 00 00 jne 66350a11 + 6635091c: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350920: 48 63 c6 movslq %esi,%rax + 66350923: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 66350927: 8b 0a mov (%rdx),%ecx + 66350929: 83 f9 01 cmp $0x1,%ecx + 6635092c: 74 6d je 6635099b + 6635092e: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66350932: 41 b9 01 00 00 00 mov $0x1,%r9d + 66350938: 41 29 c9 sub %ecx,%r9d + 6635093b: 31 c9 xor %ecx,%ecx + 6635093d: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 66350941: 45 01 08 add %r9d,(%r8) + 66350944: c7 02 01 00 00 00 movl $0x1,(%rdx) + 6635094a: 48 8b 53 10 mov 0x10(%rbx),%rdx + 6635094e: 45 8b 00 mov (%r8),%r8d + 66350951: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350955: 45 85 c0 test %r8d,%r8d + 66350958: 0f 9f c1 setg %cl + 6635095b: 3b 0a cmp (%rdx),%ecx + 6635095d: 74 3c je 6635099b + 6635095f: 48 8b 53 20 mov 0x20(%rbx),%rdx + 66350963: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350967: 8b 0a mov (%rdx),%ecx + 66350969: 85 c9 test %ecx,%ecx + 6635096b: 75 2e jne 6635099b + 6635096d: 48 8b 53 28 mov 0x28(%rbx),%rdx + 66350971: 48 8b 0d b8 6f 00 00 mov 0x6fb8(%rip),%rcx # 66357930 + 66350978: 4c 8b 05 a1 6f 00 00 mov 0x6fa1(%rip),%r8 # 66357920 + 6635097f: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350983: 48 8b 42 10 mov 0x10(%rdx),%rax + 66350987: c7 00 01 00 00 00 movl $0x1,(%rax) + 6635098d: 48 63 01 movslq (%rcx),%rax + 66350990: 44 8d 48 01 lea 0x1(%rax),%r9d + 66350994: 44 89 09 mov %r9d,(%rcx) + 66350997: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6635099b: 8b 53 38 mov 0x38(%rbx),%edx + 6635099e: 85 d2 test %edx,%edx + 663509a0: 7e 4e jle 663509f0 + 663509a2: 48 8b 43 40 mov 0x40(%rbx),%rax + 663509a6: 89 30 mov %esi,(%rax) + 663509a8: 48 83 c4 28 add $0x28,%rsp + 663509ac: 5b pop %rbx + 663509ad: 5e pop %rsi + 663509ae: c3 retq + 663509af: 90 nop + 663509b0: 85 d2 test %edx,%edx + 663509b2: 74 f4 je 663509a8 + 663509b4: 48 89 d9 mov %rbx,%rcx + 663509b7: e8 74 0a ff ff callq 66341430 + 663509bc: 8b 43 38 mov 0x38(%rbx),%eax + 663509bf: 85 c0 test %eax,%eax + 663509c1: 7f 19 jg 663509dc + 663509c3: 48 8d 15 36 36 00 00 lea 0x3636(%rip),%rdx # 66354000 <.rdata> + 663509ca: 41 b8 93 00 00 00 mov $0x93,%r8d + 663509d0: 48 8d 0d 39 36 00 00 lea 0x3639(%rip),%rcx # 66354010 <.rdata+0x10> + 663509d7: e8 34 18 00 00 callq 66352210 <_assert> + 663509dc: 48 8b 43 40 mov 0x40(%rbx),%rax + 663509e0: c7 00 00 00 00 00 movl $0x0,(%rax) + 663509e6: 48 83 c4 28 add $0x28,%rsp + 663509ea: 5b pop %rbx + 663509eb: 5e pop %rsi + 663509ec: c3 retq + 663509ed: 0f 1f 00 nopl (%rax) + 663509f0: 48 8d 15 09 36 00 00 lea 0x3609(%rip),%rdx # 66354000 <.rdata> + 663509f7: 41 b8 93 00 00 00 mov $0x93,%r8d + 663509fd: 48 8d 0d 0c 36 00 00 lea 0x360c(%rip),%rcx # 66354010 <.rdata+0x10> + 66350a04: e8 07 18 00 00 callq 66352210 <_assert> + 66350a09: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350a0d: 89 30 mov %esi,(%rax) + 66350a0f: eb 97 jmp 663509a8 + 66350a11: 48 89 d9 mov %rbx,%rcx + 66350a14: e8 17 0a ff ff callq 66341430 + 66350a19: e9 fe fe ff ff jmpq 6635091c + 66350a1e: 66 90 xchg %ax,%ax -0000000066350930 : - 66350930: 41 55 push %r13 - 66350932: 41 54 push %r12 - 66350934: 55 push %rbp - 66350935: 57 push %rdi - 66350936: 56 push %rsi - 66350937: 53 push %rbx - 66350938: 48 8b 35 f1 6f 00 00 mov 0x6ff1(%rip),%rsi # 66357930 - 6635093f: 8b 16 mov (%rsi),%edx - 66350941: 85 d2 test %edx,%edx - 66350943: 0f 8e aa 00 00 00 jle 663509f3 - 66350949: 48 8b 1d d0 6f 00 00 mov 0x6fd0(%rip),%rbx # 66357920 - 66350950: 45 31 c0 xor %r8d,%r8d - 66350953: 48 8b 2d be 6f 00 00 mov 0x6fbe(%rip),%rbp # 66357918 - 6635095a: 48 8b 3d af 6f 00 00 mov 0x6faf(%rip),%rdi # 66357910 - 66350961: 4c 8b 1d c0 6f 00 00 mov 0x6fc0(%rip),%r11 # 66357928 - 66350968: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635096f: 00 - 66350970: 4a 8b 14 c3 mov (%rbx,%r8,8),%rdx - 66350974: 31 c9 xor %ecx,%ecx - 66350976: 48 8b 42 08 mov 0x8(%rdx),%rax - 6635097a: 8b 00 mov (%rax),%eax - 6635097c: 85 c0 test %eax,%eax - 6635097e: 48 8b 02 mov (%rdx),%rax - 66350981: 0f 9f c1 setg %cl - 66350984: 3b 08 cmp (%rax),%ecx - 66350986: 74 4c je 663509d4 - 66350988: 89 08 mov %ecx,(%rax) - 6635098a: 4c 8b 62 20 mov 0x20(%rdx),%r12 - 6635098e: 8b 4d 00 mov 0x0(%rbp),%ecx - 66350991: 48 8b 42 18 mov 0x18(%rdx),%rax - 66350995: 89 08 mov %ecx,(%rax) - 66350997: 41 8b 0c 24 mov (%r12),%ecx - 6635099b: 85 c9 test %ecx,%ecx - 6635099d: 7e 35 jle 663509d4 - 6635099f: 4c 8b 6a 28 mov 0x28(%rdx),%r13 - 663509a3: 31 c0 xor %eax,%eax - 663509a5: 4d 8b 4c c5 00 mov 0x0(%r13,%rax,8),%r9 - 663509aa: 4d 8b 11 mov (%r9),%r10 - 663509ad: 41 83 3a 00 cmpl $0x0,(%r10) - 663509b1: 75 4f jne 66350a02 - 663509b3: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663509ba: 49 63 0b movslq (%r11),%rcx - 663509bd: 48 83 c0 01 add $0x1,%rax - 663509c1: 44 8d 51 01 lea 0x1(%rcx),%r10d - 663509c5: 45 89 13 mov %r10d,(%r11) - 663509c8: 4c 89 0c cf mov %r9,(%rdi,%rcx,8) - 663509cc: 41 8b 0c 24 mov (%r12),%ecx - 663509d0: 39 c1 cmp %eax,%ecx - 663509d2: 7f d1 jg 663509a5 - 663509d4: 48 8b 42 10 mov 0x10(%rdx),%rax - 663509d8: c7 00 00 00 00 00 movl $0x0,(%rax) - 663509de: 4a c7 04 c3 00 00 00 movq $0x0,(%rbx,%r8,8) - 663509e5: 00 - 663509e6: 49 83 c0 01 add $0x1,%r8 - 663509ea: 44 39 06 cmp %r8d,(%rsi) - 663509ed: 0f 8f 7d ff ff ff jg 66350970 - 663509f3: c7 06 00 00 00 00 movl $0x0,(%rsi) - 663509f9: 5b pop %rbx - 663509fa: 5e pop %rsi - 663509fb: 5f pop %rdi - 663509fc: 5d pop %rbp - 663509fd: 41 5c pop %r12 - 663509ff: 41 5d pop %r13 - 66350a01: c3 retq - 66350a02: 48 83 c0 01 add $0x1,%rax - 66350a06: 39 c1 cmp %eax,%ecx - 66350a08: 7f 9b jg 663509a5 - 66350a0a: eb c8 jmp 663509d4 - 66350a0c: 0f 1f 40 00 nopl 0x0(%rax) - -0000000066350a10 : - 66350a10: 55 push %rbp - 66350a11: 57 push %rdi - 66350a12: 56 push %rsi - 66350a13: 53 push %rbx - 66350a14: 48 83 ec 28 sub $0x28,%rsp - 66350a18: 4c 8b 1d 09 6f 00 00 mov 0x6f09(%rip),%r11 # 66357928 - 66350a1f: 41 8b 03 mov (%r11),%eax - 66350a22: 85 c0 test %eax,%eax - 66350a24: 7e 75 jle 66350a9b - 66350a26: 41 89 c1 mov %eax,%r9d - 66350a29: 4d 89 da mov %r11,%r10 - 66350a2c: 31 db xor %ebx,%ebx - 66350a2e: 48 8d 35 db 6e 00 00 lea 0x6edb(%rip),%rsi # 66357910 - 66350a35: 31 ed xor %ebp,%ebp - 66350a37: 48 8d 3d c2 25 00 00 lea 0x25c2(%rip),%rdi # 66353000 <__data_start__> - 66350a3e: eb 11 jmp 66350a51 - 66350a40: 83 c3 01 add $0x1,%ebx - 66350a43: 41 39 d9 cmp %ebx,%r9d - 66350a46: 7e 53 jle 66350a9b - 66350a48: 48 63 eb movslq %ebx,%rbp - 66350a4b: 44 89 c8 mov %r9d,%eax - 66350a4e: 4d 89 d3 mov %r10,%r11 - 66350a51: 4c 8b 06 mov (%rsi),%r8 - 66350a54: 49 8d 14 e8 lea (%r8,%rbp,8),%rdx - 66350a58: 48 8b 0a mov (%rdx),%rcx - 66350a5b: 83 79 34 00 cmpl $0x0,0x34(%rcx) - 66350a5f: 74 df je 66350a40 - 66350a61: 4c 63 c8 movslq %eax,%r9 - 66350a64: 83 e8 01 sub $0x1,%eax - 66350a67: 4f 8d 44 c8 f8 lea -0x8(%r8,%r9,8),%r8 - 66350a6c: 4d 8b 08 mov (%r8),%r9 - 66350a6f: 4c 89 0a mov %r9,(%rdx) - 66350a72: 49 c7 00 00 00 00 00 movq $0x0,(%r8) - 66350a79: 41 89 03 mov %eax,(%r11) - 66350a7c: 48 8b 01 mov (%rcx),%rax - 66350a7f: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350a85: 48 63 41 34 movslq 0x34(%rcx),%rax - 66350a89: ff 14 c7 callq *(%rdi,%rax,8) - 66350a8c: 4c 8b 15 95 6e 00 00 mov 0x6e95(%rip),%r10 # 66357928 - 66350a93: 45 8b 0a mov (%r10),%r9d - 66350a96: 44 39 cb cmp %r9d,%ebx - 66350a99: 7c b0 jl 66350a4b - 66350a9b: 48 83 c4 28 add $0x28,%rsp - 66350a9f: 5b pop %rbx - 66350aa0: 5e pop %rsi - 66350aa1: 5f pop %rdi - 66350aa2: 5d pop %rbp - 66350aa3: c3 retq - 66350aa4: 90 nop - 66350aa5: 90 nop - 66350aa6: 90 nop - 66350aa7: 90 nop - 66350aa8: 90 nop - 66350aa9: 90 nop - 66350aaa: 90 nop - 66350aab: 90 nop - 66350aac: 90 nop - 66350aad: 90 nop - 66350aae: 90 nop - 66350aaf: 90 nop - -0000000066350ab0 <__do_global_dtors>: - 66350ab0: 48 83 ec 28 sub $0x28,%rsp - 66350ab4: 48 8b 05 05 29 00 00 mov 0x2905(%rip),%rax # 663533c0 - 66350abb: 48 8b 00 mov (%rax),%rax - 66350abe: 48 85 c0 test %rax,%rax - 66350ac1: 74 1d je 66350ae0 <__do_global_dtors+0x30> - 66350ac3: ff d0 callq *%rax - 66350ac5: 48 8b 05 f4 28 00 00 mov 0x28f4(%rip),%rax # 663533c0 - 66350acc: 48 8d 50 08 lea 0x8(%rax),%rdx - 66350ad0: 48 8b 40 08 mov 0x8(%rax),%rax - 66350ad4: 48 89 15 e5 28 00 00 mov %rdx,0x28e5(%rip) # 663533c0 - 66350adb: 48 85 c0 test %rax,%rax - 66350ade: 75 e3 jne 66350ac3 <__do_global_dtors+0x13> - 66350ae0: 48 83 c4 28 add $0x28,%rsp - 66350ae4: c3 retq - 66350ae5: 90 nop - 66350ae6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350aed: 00 00 00 - -0000000066350af0 <__do_global_ctors>: - 66350af0: 56 push %rsi - 66350af1: 53 push %rbx - 66350af2: 48 83 ec 28 sub $0x28,%rsp - 66350af6: 48 8b 0d b3 37 00 00 mov 0x37b3(%rip),%rcx # 663542b0 <.refptr.__CTOR_LIST__> - 66350afd: 48 8b 11 mov (%rcx),%rdx - 66350b00: 83 fa ff cmp $0xffffffff,%edx - 66350b03: 89 d0 mov %edx,%eax - 66350b05: 74 39 je 66350b40 <__do_global_ctors+0x50> - 66350b07: 85 c0 test %eax,%eax - 66350b09: 74 20 je 66350b2b <__do_global_ctors+0x3b> - 66350b0b: 89 c2 mov %eax,%edx - 66350b0d: 83 e8 01 sub $0x1,%eax - 66350b10: 48 8d 1c d1 lea (%rcx,%rdx,8),%rbx - 66350b14: 48 29 c2 sub %rax,%rdx - 66350b17: 48 8d 74 d1 f8 lea -0x8(%rcx,%rdx,8),%rsi - 66350b1c: 0f 1f 40 00 nopl 0x0(%rax) - 66350b20: ff 13 callq *(%rbx) - 66350b22: 48 83 eb 08 sub $0x8,%rbx - 66350b26: 48 39 f3 cmp %rsi,%rbx - 66350b29: 75 f5 jne 66350b20 <__do_global_ctors+0x30> - 66350b2b: 48 8d 0d 7e ff ff ff lea -0x82(%rip),%rcx # 66350ab0 <__do_global_dtors> - 66350b32: 48 83 c4 28 add $0x28,%rsp - 66350b36: 5b pop %rbx - 66350b37: 5e pop %rsi - 66350b38: e9 43 08 ff ff jmpq 66341380 - 66350b3d: 0f 1f 00 nopl (%rax) - 66350b40: 31 c0 xor %eax,%eax - 66350b42: eb 02 jmp 66350b46 <__do_global_ctors+0x56> - 66350b44: 89 d0 mov %edx,%eax - 66350b46: 44 8d 40 01 lea 0x1(%rax),%r8d - 66350b4a: 4a 83 3c c1 00 cmpq $0x0,(%rcx,%r8,8) - 66350b4f: 4c 89 c2 mov %r8,%rdx - 66350b52: 75 f0 jne 66350b44 <__do_global_ctors+0x54> - 66350b54: eb b1 jmp 66350b07 <__do_global_ctors+0x17> - 66350b56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350b5d: 00 00 00 - -0000000066350b60 <__main>: - 66350b60: 8b 05 ba 64 00 00 mov 0x64ba(%rip),%eax # 66357020 - 66350b66: 85 c0 test %eax,%eax - 66350b68: 74 06 je 66350b70 <__main+0x10> - 66350b6a: c3 retq - 66350b6b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66350b70: c7 05 a6 64 00 00 01 movl $0x1,0x64a6(%rip) # 66357020 - 66350b77: 00 00 00 - 66350b7a: e9 71 ff ff ff jmpq 66350af0 <__do_global_ctors> - 66350b7f: 90 nop - -0000000066350b80 <__security_init_cookie>: - 66350b80: 41 54 push %r12 - 66350b82: 55 push %rbp - 66350b83: 57 push %rdi - 66350b84: 56 push %rsi - 66350b85: 53 push %rbx - 66350b86: 48 83 ec 30 sub $0x30,%rsp - 66350b8a: 48 8b 1d 8f 28 00 00 mov 0x288f(%rip),%rbx # 66353420 <__security_cookie> - 66350b91: 48 b8 32 a2 df 2d 99 movabs $0x2b992ddfa232,%rax - 66350b98: 2b 00 00 - 66350b9b: 48 39 c3 cmp %rax,%rbx - 66350b9e: 48 c7 44 24 20 00 00 movq $0x0,0x20(%rsp) - 66350ba5: 00 00 - 66350ba7: 74 17 je 66350bc0 <__security_init_cookie+0x40> - 66350ba9: 48 f7 d3 not %rbx - 66350bac: 48 89 1d 7d 28 00 00 mov %rbx,0x287d(%rip) # 66353430 <__security_cookie_complement> - 66350bb3: 48 83 c4 30 add $0x30,%rsp - 66350bb7: 5b pop %rbx - 66350bb8: 5e pop %rsi - 66350bb9: 5f pop %rdi - 66350bba: 5d pop %rbp - 66350bbb: 41 5c pop %r12 - 66350bbd: c3 retq +0000000066350a20 : + 66350a20: 56 push %rsi + 66350a21: 53 push %rbx + 66350a22: 48 83 ec 28 sub $0x28,%rsp + 66350a26: 44 8b 51 38 mov 0x38(%rcx),%r10d + 66350a2a: 45 85 d2 test %r10d,%r10d + 66350a2d: 48 89 cb mov %rcx,%rbx + 66350a30: 7f 19 jg 66350a4b + 66350a32: 48 8d 15 c7 35 00 00 lea 0x35c7(%rip),%rdx # 66354000 <.rdata> + 66350a39: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66350a3f: 48 8d 0d ca 35 00 00 lea 0x35ca(%rip),%rcx # 66354010 <.rdata+0x10> + 66350a46: e8 c5 17 00 00 callq 66352210 <_assert> + 66350a4b: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350a4f: 8b 10 mov (%rax),%edx + 66350a51: 48 8b 43 10 mov 0x10(%rbx),%rax + 66350a55: 48 8b 88 38 02 00 00 mov 0x238(%rax),%rcx + 66350a5c: 44 8b 09 mov (%rcx),%r9d + 66350a5f: 45 85 c9 test %r9d,%r9d + 66350a62: 0f 84 e8 00 00 00 je 66350b50 + 66350a68: 48 8b 48 10 mov 0x10(%rax),%rcx + 66350a6c: 44 8b 01 mov (%rcx),%r8d + 66350a6f: 48 8b 48 08 mov 0x8(%rax),%rcx + 66350a73: 8b 09 mov (%rcx),%ecx + 66350a75: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66350a79: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66350a7d: 45 8b 00 mov (%r8),%r8d + 66350a80: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66350a84: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66350a88: 45 8b 00 mov (%r8),%r8d + 66350a8b: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d + 66350a8f: 48 8b 48 28 mov 0x28(%rax),%rcx + 66350a93: 48 8b 40 30 mov 0x30(%rax),%rax + 66350a97: 8b 09 mov (%rcx),%ecx + 66350a99: 8b 00 mov (%rax),%eax + 66350a9b: c1 e1 04 shl $0x4,%ecx + 66350a9e: 44 01 c1 add %r8d,%ecx + 66350aa1: c1 e0 05 shl $0x5,%eax + 66350aa4: 8d 74 01 07 lea 0x7(%rcx,%rax,1),%esi + 66350aa8: 39 d6 cmp %edx,%esi + 66350aaa: 0f 84 94 00 00 00 je 66350b44 + 66350ab0: 85 d2 test %edx,%edx + 66350ab2: 0f 85 f9 00 00 00 jne 66350bb1 + 66350ab8: 48 8b 53 08 mov 0x8(%rbx),%rdx + 66350abc: 48 63 c6 movslq %esi,%rax + 66350abf: 48 8d 14 82 lea (%rdx,%rax,4),%rdx + 66350ac3: 8b 0a mov (%rdx),%ecx + 66350ac5: 83 f9 01 cmp $0x1,%ecx + 66350ac8: 74 6d je 66350b37 + 66350aca: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66350ace: 41 b9 01 00 00 00 mov $0x1,%r9d + 66350ad4: 41 29 c9 sub %ecx,%r9d + 66350ad7: 31 c9 xor %ecx,%ecx + 66350ad9: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 + 66350add: 45 01 08 add %r9d,(%r8) + 66350ae0: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66350ae6: 48 8b 53 10 mov 0x10(%rbx),%rdx + 66350aea: 45 8b 00 mov (%r8),%r8d + 66350aed: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350af1: 45 85 c0 test %r8d,%r8d + 66350af4: 0f 9f c1 setg %cl + 66350af7: 3b 0a cmp (%rdx),%ecx + 66350af9: 74 3c je 66350b37 + 66350afb: 48 8b 53 20 mov 0x20(%rbx),%rdx + 66350aff: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350b03: 8b 0a mov (%rdx),%ecx + 66350b05: 85 c9 test %ecx,%ecx + 66350b07: 75 2e jne 66350b37 + 66350b09: 48 8b 53 28 mov 0x28(%rbx),%rdx + 66350b0d: 48 8b 0d 1c 6e 00 00 mov 0x6e1c(%rip),%rcx # 66357930 + 66350b14: 4c 8b 05 05 6e 00 00 mov 0x6e05(%rip),%r8 # 66357920 + 66350b1b: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx + 66350b1f: 48 8b 42 10 mov 0x10(%rdx),%rax + 66350b23: c7 00 01 00 00 00 movl $0x1,(%rax) + 66350b29: 48 63 01 movslq (%rcx),%rax + 66350b2c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66350b30: 44 89 09 mov %r9d,(%rcx) + 66350b33: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66350b37: 8b 53 38 mov 0x38(%rbx),%edx + 66350b3a: 85 d2 test %edx,%edx + 66350b3c: 7e 52 jle 66350b90 + 66350b3e: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350b42: 89 30 mov %esi,(%rax) + 66350b44: 48 83 c4 28 add $0x28,%rsp + 66350b48: 5b pop %rbx + 66350b49: 5e pop %rsi + 66350b4a: c3 retq + 66350b4b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66350b50: 85 d2 test %edx,%edx + 66350b52: 74 f0 je 66350b44 + 66350b54: 48 89 d9 mov %rbx,%rcx + 66350b57: e8 d4 08 ff ff callq 66341430 + 66350b5c: 8b 43 38 mov 0x38(%rbx),%eax + 66350b5f: 85 c0 test %eax,%eax + 66350b61: 7f 19 jg 66350b7c + 66350b63: 48 8d 15 96 34 00 00 lea 0x3496(%rip),%rdx # 66354000 <.rdata> + 66350b6a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66350b70: 48 8d 0d 99 34 00 00 lea 0x3499(%rip),%rcx # 66354010 <.rdata+0x10> + 66350b77: e8 94 16 00 00 callq 66352210 <_assert> + 66350b7c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350b80: c7 00 00 00 00 00 movl $0x0,(%rax) + 66350b86: 48 83 c4 28 add $0x28,%rsp + 66350b8a: 5b pop %rbx + 66350b8b: 5e pop %rsi + 66350b8c: c3 retq + 66350b8d: 0f 1f 00 nopl (%rax) + 66350b90: 48 8d 15 69 34 00 00 lea 0x3469(%rip),%rdx # 66354000 <.rdata> + 66350b97: 41 b8 93 00 00 00 mov $0x93,%r8d + 66350b9d: 48 8d 0d 6c 34 00 00 lea 0x346c(%rip),%rcx # 66354010 <.rdata+0x10> + 66350ba4: e8 67 16 00 00 callq 66352210 <_assert> + 66350ba9: 48 8b 43 40 mov 0x40(%rbx),%rax + 66350bad: 89 30 mov %esi,(%rax) + 66350baf: eb 93 jmp 66350b44 + 66350bb1: 48 89 d9 mov %rbx,%rcx + 66350bb4: e8 77 08 ff ff callq 66341430 + 66350bb9: e9 fa fe ff ff jmpq 66350ab8 66350bbe: 66 90 xchg %ax,%ax - 66350bc0: 48 8d 4c 24 20 lea 0x20(%rsp),%rcx - 66350bc5: ff 15 35 86 00 00 callq *0x8635(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> - 66350bcb: 48 8b 74 24 20 mov 0x20(%rsp),%rsi - 66350bd0: ff 15 0a 86 00 00 callq *0x860a(%rip) # 663591e0 <__imp_GetCurrentProcessId> - 66350bd6: 41 89 c4 mov %eax,%r12d - 66350bd9: ff 15 09 86 00 00 callq *0x8609(%rip) # 663591e8 <__imp_GetCurrentThreadId> - 66350bdf: 89 c5 mov %eax,%ebp - 66350be1: ff 15 21 86 00 00 callq *0x8621(%rip) # 66359208 <__imp_GetTickCount> - 66350be7: 48 8d 4c 24 28 lea 0x28(%rsp),%rcx - 66350bec: 89 c7 mov %eax,%edi - 66350bee: ff 15 2c 86 00 00 callq *0x862c(%rip) # 66359220 <__imp_QueryPerformanceCounter> - 66350bf4: 48 33 74 24 28 xor 0x28(%rsp),%rsi - 66350bf9: 44 89 e0 mov %r12d,%eax - 66350bfc: 48 ba ff ff ff ff ff movabs $0xffffffffffff,%rdx - 66350c03: ff 00 00 - 66350c06: 48 31 f0 xor %rsi,%rax - 66350c09: 89 ee mov %ebp,%esi - 66350c0b: 48 31 c6 xor %rax,%rsi - 66350c0e: 89 f8 mov %edi,%eax - 66350c10: 48 31 f0 xor %rsi,%rax - 66350c13: 48 21 d0 and %rdx,%rax - 66350c16: 48 39 d8 cmp %rbx,%rax - 66350c19: 74 25 je 66350c40 <__security_init_cookie+0xc0> - 66350c1b: 48 89 c2 mov %rax,%rdx - 66350c1e: 48 f7 d2 not %rdx - 66350c21: 48 89 05 f8 27 00 00 mov %rax,0x27f8(%rip) # 66353420 <__security_cookie> - 66350c28: 48 89 15 01 28 00 00 mov %rdx,0x2801(%rip) # 66353430 <__security_cookie_complement> - 66350c2f: 48 83 c4 30 add $0x30,%rsp - 66350c33: 5b pop %rbx - 66350c34: 5e pop %rsi - 66350c35: 5f pop %rdi - 66350c36: 5d pop %rbp - 66350c37: 41 5c pop %r12 - 66350c39: c3 retq - 66350c3a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66350c40: 48 ba cc 5d 20 d2 66 movabs $0xffffd466d2205dcc,%rdx - 66350c47: d4 ff ff - 66350c4a: 48 b8 33 a2 df 2d 99 movabs $0x2b992ddfa233,%rax - 66350c51: 2b 00 00 - 66350c54: eb cb jmp 66350c21 <__security_init_cookie+0xa1> - 66350c56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350c5d: 00 00 00 -0000000066350c60 <__report_gsfailure>: - 66350c60: 55 push %rbp - 66350c61: 56 push %rsi - 66350c62: 53 push %rbx - 66350c63: 48 89 e5 mov %rsp,%rbp - 66350c66: 48 83 ec 70 sub $0x70,%rsp - 66350c6a: 48 89 ce mov %rcx,%rsi - 66350c6d: 48 8d 0d cc 63 00 00 lea 0x63cc(%rip),%rcx # 66357040 - 66350c74: ff 15 b6 85 00 00 callq *0x85b6(%rip) # 66359230 <__imp_RtlCaptureContext> - 66350c7a: 48 8b 1d b7 64 00 00 mov 0x64b7(%rip),%rbx # 66357138 - 66350c81: 48 8d 55 d8 lea -0x28(%rbp),%rdx - 66350c85: 45 31 c0 xor %r8d,%r8d - 66350c88: 48 89 d9 mov %rbx,%rcx - 66350c8b: ff 15 a7 85 00 00 callq *0x85a7(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> - 66350c91: 48 85 c0 test %rax,%rax - 66350c94: 0f 84 a3 00 00 00 je 66350d3d <__report_gsfailure+0xdd> - 66350c9a: 48 8d 55 e0 lea -0x20(%rbp),%rdx - 66350c9e: 49 89 c1 mov %rax,%r9 - 66350ca1: 49 89 d8 mov %rbx,%r8 - 66350ca4: 48 c7 44 24 38 00 00 movq $0x0,0x38(%rsp) - 66350cab: 00 00 - 66350cad: 48 8d 0d 8c 63 00 00 lea 0x638c(%rip),%rcx # 66357040 - 66350cb4: 48 89 54 24 30 mov %rdx,0x30(%rsp) - 66350cb9: 48 8d 55 e8 lea -0x18(%rbp),%rdx - 66350cbd: 48 89 4c 24 20 mov %rcx,0x20(%rsp) - 66350cc2: 31 c9 xor %ecx,%ecx - 66350cc4: 48 89 54 24 28 mov %rdx,0x28(%rsp) - 66350cc9: 48 8b 55 d8 mov -0x28(%rbp),%rdx - 66350ccd: ff 15 6d 85 00 00 callq *0x856d(%rip) # 66359240 <__imp_RtlVirtualUnwind> - 66350cd3: 48 8b 05 5e 64 00 00 mov 0x645e(%rip),%rax # 66357138 - 66350cda: 31 c9 xor %ecx,%ecx - 66350cdc: 48 89 35 dd 63 00 00 mov %rsi,0x63dd(%rip) # 663570c0 - 66350ce3: 48 89 05 46 68 00 00 mov %rax,0x6846(%rip) # 66357530 - 66350cea: 48 b8 09 04 00 c0 01 movabs $0x1c0000409,%rax - 66350cf1: 00 00 00 - 66350cf4: 48 89 05 25 68 00 00 mov %rax,0x6825(%rip) # 66357520 - 66350cfb: 48 8b 05 1e 27 00 00 mov 0x271e(%rip),%rax # 66353420 <__security_cookie> - 66350d02: 48 89 45 f0 mov %rax,-0x10(%rbp) - 66350d06: 48 8b 05 23 27 00 00 mov 0x2723(%rip),%rax # 66353430 <__security_cookie_complement> - 66350d0d: 48 89 45 f8 mov %rax,-0x8(%rbp) - 66350d11: ff 15 31 85 00 00 callq *0x8531(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> - 66350d17: 48 8d 0d 12 33 00 00 lea 0x3312(%rip),%rcx # 66354030 - 66350d1e: ff 15 44 85 00 00 callq *0x8544(%rip) # 66359268 <__imp_UnhandledExceptionFilter> - 66350d24: ff 15 ae 84 00 00 callq *0x84ae(%rip) # 663591d8 <__imp_GetCurrentProcess> - 66350d2a: ba 09 04 00 c0 mov $0xc0000409,%edx - 66350d2f: 48 89 c1 mov %rax,%rcx - 66350d32: ff 15 20 85 00 00 callq *0x8520(%rip) # 66359258 <__imp_TerminateProcess> - 66350d38: e8 4b 13 00 00 callq 66352088 - 66350d3d: 48 8b 45 18 mov 0x18(%rbp),%rax - 66350d41: 48 89 05 f0 63 00 00 mov %rax,0x63f0(%rip) # 66357138 - 66350d48: 48 8d 45 08 lea 0x8(%rbp),%rax - 66350d4c: 48 89 05 85 63 00 00 mov %rax,0x6385(%rip) # 663570d8 - 66350d53: e9 7b ff ff ff jmpq 66350cd3 <__report_gsfailure+0x73> - 66350d58: 90 nop - 66350d59: 90 nop - 66350d5a: 90 nop - 66350d5b: 90 nop - 66350d5c: 90 nop - 66350d5d: 90 nop - 66350d5e: 90 nop - 66350d5f: 90 nop +0000000066350bc0 : + 66350bc0: 48 8b 44 24 28 mov 0x28(%rsp),%rax + 66350bc5: 48 89 0d 54 6d 00 00 mov %rcx,0x6d54(%rip) # 66357920 + 66350bcc: 48 89 15 5d 6d 00 00 mov %rdx,0x6d5d(%rip) # 66357930 + 66350bd3: 4c 89 05 36 6d 00 00 mov %r8,0x6d36(%rip) # 66357910 + 66350bda: 4c 89 0d 47 6d 00 00 mov %r9,0x6d47(%rip) # 66357928 + 66350be1: 48 89 05 30 6d 00 00 mov %rax,0x6d30(%rip) # 66357918 + 66350be8: c3 retq + 66350be9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066350d60 <__dyn_tls_dtor>: - 66350d60: 48 83 ec 28 sub $0x28,%rsp - 66350d64: 83 fa 03 cmp $0x3,%edx - 66350d67: 74 17 je 66350d80 <__dyn_tls_dtor+0x20> - 66350d69: 85 d2 test %edx,%edx - 66350d6b: 74 13 je 66350d80 <__dyn_tls_dtor+0x20> - 66350d6d: b8 01 00 00 00 mov $0x1,%eax - 66350d72: 48 83 c4 28 add $0x28,%rsp - 66350d76: c3 retq - 66350d77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66350d7e: 00 00 - 66350d80: e8 5b 0b 00 00 callq 663518e0 <__mingw_TLScallback> - 66350d85: b8 01 00 00 00 mov $0x1,%eax - 66350d8a: 48 83 c4 28 add $0x28,%rsp - 66350d8e: c3 retq - 66350d8f: 90 nop +0000000066350bf0 : + 66350bf0: 41 55 push %r13 + 66350bf2: 41 54 push %r12 + 66350bf4: 55 push %rbp + 66350bf5: 57 push %rdi + 66350bf6: 56 push %rsi + 66350bf7: 53 push %rbx + 66350bf8: 48 8b 35 31 6d 00 00 mov 0x6d31(%rip),%rsi # 66357930 + 66350bff: 8b 16 mov (%rsi),%edx + 66350c01: 85 d2 test %edx,%edx + 66350c03: 0f 8e aa 00 00 00 jle 66350cb3 + 66350c09: 48 8b 1d 10 6d 00 00 mov 0x6d10(%rip),%rbx # 66357920 + 66350c10: 45 31 c0 xor %r8d,%r8d + 66350c13: 48 8b 2d fe 6c 00 00 mov 0x6cfe(%rip),%rbp # 66357918 + 66350c1a: 48 8b 3d ef 6c 00 00 mov 0x6cef(%rip),%rdi # 66357910 + 66350c21: 4c 8b 1d 00 6d 00 00 mov 0x6d00(%rip),%r11 # 66357928 + 66350c28: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66350c2f: 00 + 66350c30: 4a 8b 14 c3 mov (%rbx,%r8,8),%rdx + 66350c34: 31 c9 xor %ecx,%ecx + 66350c36: 48 8b 42 08 mov 0x8(%rdx),%rax + 66350c3a: 8b 00 mov (%rax),%eax + 66350c3c: 85 c0 test %eax,%eax + 66350c3e: 48 8b 02 mov (%rdx),%rax + 66350c41: 0f 9f c1 setg %cl + 66350c44: 3b 08 cmp (%rax),%ecx + 66350c46: 74 4c je 66350c94 + 66350c48: 89 08 mov %ecx,(%rax) + 66350c4a: 4c 8b 62 20 mov 0x20(%rdx),%r12 + 66350c4e: 8b 4d 00 mov 0x0(%rbp),%ecx + 66350c51: 48 8b 42 18 mov 0x18(%rdx),%rax + 66350c55: 89 08 mov %ecx,(%rax) + 66350c57: 41 8b 0c 24 mov (%r12),%ecx + 66350c5b: 85 c9 test %ecx,%ecx + 66350c5d: 7e 35 jle 66350c94 + 66350c5f: 4c 8b 6a 28 mov 0x28(%rdx),%r13 + 66350c63: 31 c0 xor %eax,%eax + 66350c65: 4d 8b 4c c5 00 mov 0x0(%r13,%rax,8),%r9 + 66350c6a: 4d 8b 11 mov (%r9),%r10 + 66350c6d: 41 83 3a 00 cmpl $0x0,(%r10) + 66350c71: 75 4f jne 66350cc2 + 66350c73: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 66350c7a: 49 63 0b movslq (%r11),%rcx + 66350c7d: 48 83 c0 01 add $0x1,%rax + 66350c81: 44 8d 51 01 lea 0x1(%rcx),%r10d + 66350c85: 45 89 13 mov %r10d,(%r11) + 66350c88: 4c 89 0c cf mov %r9,(%rdi,%rcx,8) + 66350c8c: 41 8b 0c 24 mov (%r12),%ecx + 66350c90: 39 c1 cmp %eax,%ecx + 66350c92: 7f d1 jg 66350c65 + 66350c94: 48 8b 42 10 mov 0x10(%rdx),%rax + 66350c98: c7 00 00 00 00 00 movl $0x0,(%rax) + 66350c9e: 4a c7 04 c3 00 00 00 movq $0x0,(%rbx,%r8,8) + 66350ca5: 00 + 66350ca6: 49 83 c0 01 add $0x1,%r8 + 66350caa: 44 39 06 cmp %r8d,(%rsi) + 66350cad: 0f 8f 7d ff ff ff jg 66350c30 + 66350cb3: c7 06 00 00 00 00 movl $0x0,(%rsi) + 66350cb9: 5b pop %rbx + 66350cba: 5e pop %rsi + 66350cbb: 5f pop %rdi + 66350cbc: 5d pop %rbp + 66350cbd: 41 5c pop %r12 + 66350cbf: 41 5d pop %r13 + 66350cc1: c3 retq + 66350cc2: 48 83 c0 01 add $0x1,%rax + 66350cc6: 39 c1 cmp %eax,%ecx + 66350cc8: 7f 9b jg 66350c65 + 66350cca: eb c8 jmp 66350c94 + 66350ccc: 0f 1f 40 00 nopl 0x0(%rax) -0000000066350d90 <__dyn_tls_init>: - 66350d90: 56 push %rsi - 66350d91: 53 push %rbx - 66350d92: 48 83 ec 28 sub $0x28,%rsp - 66350d96: 48 8b 05 03 35 00 00 mov 0x3503(%rip),%rax # 663542a0 <.refptr._CRT_MT> - 66350d9d: 83 38 02 cmpl $0x2,(%rax) - 66350da0: 74 06 je 66350da8 <__dyn_tls_init+0x18> - 66350da2: c7 00 02 00 00 00 movl $0x2,(%rax) - 66350da8: 83 fa 02 cmp $0x2,%edx - 66350dab: 74 13 je 66350dc0 <__dyn_tls_init+0x30> - 66350dad: 83 fa 01 cmp $0x1,%edx - 66350db0: 74 40 je 66350df2 <__dyn_tls_init+0x62> - 66350db2: b8 01 00 00 00 mov $0x1,%eax - 66350db7: 48 83 c4 28 add $0x28,%rsp - 66350dbb: 5b pop %rbx - 66350dbc: 5e pop %rsi - 66350dbd: c3 retq - 66350dbe: 66 90 xchg %ax,%ax - 66350dc0: 48 8d 1d 89 92 00 00 lea 0x9289(%rip),%rbx # 6635a050 <__xd_z> - 66350dc7: 48 8d 35 82 92 00 00 lea 0x9282(%rip),%rsi # 6635a050 <__xd_z> - 66350dce: 48 39 de cmp %rbx,%rsi - 66350dd1: 74 df je 66350db2 <__dyn_tls_init+0x22> - 66350dd3: 48 8b 03 mov (%rbx),%rax - 66350dd6: 48 85 c0 test %rax,%rax - 66350dd9: 74 02 je 66350ddd <__dyn_tls_init+0x4d> - 66350ddb: ff d0 callq *%rax - 66350ddd: 48 83 c3 08 add $0x8,%rbx - 66350de1: 48 39 de cmp %rbx,%rsi - 66350de4: 75 ed jne 66350dd3 <__dyn_tls_init+0x43> - 66350de6: b8 01 00 00 00 mov $0x1,%eax - 66350deb: 48 83 c4 28 add $0x28,%rsp - 66350def: 5b pop %rbx - 66350df0: 5e pop %rsi - 66350df1: c3 retq - 66350df2: e8 e9 0a 00 00 callq 663518e0 <__mingw_TLScallback> - 66350df7: b8 01 00 00 00 mov $0x1,%eax - 66350dfc: 48 83 c4 28 add $0x28,%rsp - 66350e00: 5b pop %rbx - 66350e01: 5e pop %rsi - 66350e02: c3 retq - 66350e03: 0f 1f 00 nopl (%rax) - 66350e06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350e0d: 00 00 00 +0000000066350cd0 : + 66350cd0: 55 push %rbp + 66350cd1: 57 push %rdi + 66350cd2: 56 push %rsi + 66350cd3: 53 push %rbx + 66350cd4: 48 83 ec 28 sub $0x28,%rsp + 66350cd8: 4c 8b 1d 49 6c 00 00 mov 0x6c49(%rip),%r11 # 66357928 + 66350cdf: 41 8b 03 mov (%r11),%eax + 66350ce2: 85 c0 test %eax,%eax + 66350ce4: 7e 75 jle 66350d5b + 66350ce6: 41 89 c1 mov %eax,%r9d + 66350ce9: 4d 89 da mov %r11,%r10 + 66350cec: 31 db xor %ebx,%ebx + 66350cee: 48 8d 35 1b 6c 00 00 lea 0x6c1b(%rip),%rsi # 66357910 + 66350cf5: 31 ed xor %ebp,%ebp + 66350cf7: 48 8d 3d 02 23 00 00 lea 0x2302(%rip),%rdi # 66353000 <__data_start__> + 66350cfe: eb 11 jmp 66350d11 + 66350d00: 83 c3 01 add $0x1,%ebx + 66350d03: 41 39 d9 cmp %ebx,%r9d + 66350d06: 7e 53 jle 66350d5b + 66350d08: 48 63 eb movslq %ebx,%rbp + 66350d0b: 44 89 c8 mov %r9d,%eax + 66350d0e: 4d 89 d3 mov %r10,%r11 + 66350d11: 4c 8b 06 mov (%rsi),%r8 + 66350d14: 49 8d 14 e8 lea (%r8,%rbp,8),%rdx + 66350d18: 48 8b 0a mov (%rdx),%rcx + 66350d1b: 83 79 34 00 cmpl $0x0,0x34(%rcx) + 66350d1f: 74 df je 66350d00 + 66350d21: 4c 63 c8 movslq %eax,%r9 + 66350d24: 83 e8 01 sub $0x1,%eax + 66350d27: 4f 8d 44 c8 f8 lea -0x8(%r8,%r9,8),%r8 + 66350d2c: 4d 8b 08 mov (%r8),%r9 + 66350d2f: 4c 89 0a mov %r9,(%rdx) + 66350d32: 49 c7 00 00 00 00 00 movq $0x0,(%r8) + 66350d39: 41 89 03 mov %eax,(%r11) + 66350d3c: 48 8b 01 mov (%rcx),%rax + 66350d3f: c7 00 00 00 00 00 movl $0x0,(%rax) + 66350d45: 48 63 41 34 movslq 0x34(%rcx),%rax + 66350d49: ff 14 c7 callq *(%rdi,%rax,8) + 66350d4c: 4c 8b 15 d5 6b 00 00 mov 0x6bd5(%rip),%r10 # 66357928 + 66350d53: 45 8b 0a mov (%r10),%r9d + 66350d56: 44 39 cb cmp %r9d,%ebx + 66350d59: 7c b0 jl 66350d0b + 66350d5b: 48 83 c4 28 add $0x28,%rsp + 66350d5f: 5b pop %rbx + 66350d60: 5e pop %rsi + 66350d61: 5f pop %rdi + 66350d62: 5d pop %rbp + 66350d63: c3 retq + 66350d64: 90 nop + 66350d65: 90 nop + 66350d66: 90 nop + 66350d67: 90 nop + 66350d68: 90 nop + 66350d69: 90 nop + 66350d6a: 90 nop + 66350d6b: 90 nop + 66350d6c: 90 nop + 66350d6d: 90 nop + 66350d6e: 90 nop + 66350d6f: 90 nop -0000000066350e10 <__tlregdtor>: - 66350e10: 31 c0 xor %eax,%eax - 66350e12: c3 retq - 66350e13: 90 nop - 66350e14: 90 nop - 66350e15: 90 nop - 66350e16: 90 nop - 66350e17: 90 nop - 66350e18: 90 nop - 66350e19: 90 nop - 66350e1a: 90 nop - 66350e1b: 90 nop - 66350e1c: 90 nop - 66350e1d: 90 nop - 66350e1e: 90 nop - 66350e1f: 90 nop +0000000066350d70 <__do_global_dtors>: + 66350d70: 48 83 ec 28 sub $0x28,%rsp + 66350d74: 48 8b 05 65 26 00 00 mov 0x2665(%rip),%rax # 663533e0 + 66350d7b: 48 8b 00 mov (%rax),%rax + 66350d7e: 48 85 c0 test %rax,%rax + 66350d81: 74 1d je 66350da0 <__do_global_dtors+0x30> + 66350d83: ff d0 callq *%rax + 66350d85: 48 8b 05 54 26 00 00 mov 0x2654(%rip),%rax # 663533e0 + 66350d8c: 48 8d 50 08 lea 0x8(%rax),%rdx + 66350d90: 48 8b 40 08 mov 0x8(%rax),%rax + 66350d94: 48 89 15 45 26 00 00 mov %rdx,0x2645(%rip) # 663533e0 + 66350d9b: 48 85 c0 test %rax,%rax + 66350d9e: 75 e3 jne 66350d83 <__do_global_dtors+0x13> + 66350da0: 48 83 c4 28 add $0x28,%rsp + 66350da4: c3 retq + 66350da5: 90 nop + 66350da6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350dad: 00 00 00 -0000000066350e20 <_decode_pointer>: - 66350e20: 48 89 c8 mov %rcx,%rax - 66350e23: c3 retq - 66350e24: 66 90 xchg %ax,%ax - 66350e26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350e2d: 00 00 00 +0000000066350db0 <__do_global_ctors>: + 66350db0: 56 push %rsi + 66350db1: 53 push %rbx + 66350db2: 48 83 ec 28 sub $0x28,%rsp + 66350db6: 48 8b 0d f3 34 00 00 mov 0x34f3(%rip),%rcx # 663542b0 <.refptr.__CTOR_LIST__> + 66350dbd: 48 8b 11 mov (%rcx),%rdx + 66350dc0: 83 fa ff cmp $0xffffffff,%edx + 66350dc3: 89 d0 mov %edx,%eax + 66350dc5: 74 39 je 66350e00 <__do_global_ctors+0x50> + 66350dc7: 85 c0 test %eax,%eax + 66350dc9: 74 20 je 66350deb <__do_global_ctors+0x3b> + 66350dcb: 89 c2 mov %eax,%edx + 66350dcd: 83 e8 01 sub $0x1,%eax + 66350dd0: 48 8d 1c d1 lea (%rcx,%rdx,8),%rbx + 66350dd4: 48 29 c2 sub %rax,%rdx + 66350dd7: 48 8d 74 d1 f8 lea -0x8(%rcx,%rdx,8),%rsi + 66350ddc: 0f 1f 40 00 nopl 0x0(%rax) + 66350de0: ff 13 callq *(%rbx) + 66350de2: 48 83 eb 08 sub $0x8,%rbx + 66350de6: 48 39 f3 cmp %rsi,%rbx + 66350de9: 75 f5 jne 66350de0 <__do_global_ctors+0x30> + 66350deb: 48 8d 0d 7e ff ff ff lea -0x82(%rip),%rcx # 66350d70 <__do_global_dtors> + 66350df2: 48 83 c4 28 add $0x28,%rsp + 66350df6: 5b pop %rbx + 66350df7: 5e pop %rsi + 66350df8: e9 83 05 ff ff jmpq 66341380 + 66350dfd: 0f 1f 00 nopl (%rax) + 66350e00: 31 c0 xor %eax,%eax + 66350e02: eb 02 jmp 66350e06 <__do_global_ctors+0x56> + 66350e04: 89 d0 mov %edx,%eax + 66350e06: 44 8d 40 01 lea 0x1(%rax),%r8d + 66350e0a: 4a 83 3c c1 00 cmpq $0x0,(%rcx,%r8,8) + 66350e0f: 4c 89 c2 mov %r8,%rdx + 66350e12: 75 f0 jne 66350e04 <__do_global_ctors+0x54> + 66350e14: eb b1 jmp 66350dc7 <__do_global_ctors+0x17> + 66350e16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350e1d: 00 00 00 -0000000066350e30 <_encode_pointer>: - 66350e30: 48 89 c8 mov %rcx,%rax - 66350e33: c3 retq - 66350e34: 90 nop - 66350e35: 90 nop - 66350e36: 90 nop - 66350e37: 90 nop - 66350e38: 90 nop - 66350e39: 90 nop - 66350e3a: 90 nop - 66350e3b: 90 nop - 66350e3c: 90 nop - 66350e3d: 90 nop - 66350e3e: 90 nop +0000000066350e20 <__main>: + 66350e20: 8b 05 fa 61 00 00 mov 0x61fa(%rip),%eax # 66357020 + 66350e26: 85 c0 test %eax,%eax + 66350e28: 74 06 je 66350e30 <__main+0x10> + 66350e2a: c3 retq + 66350e2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66350e30: c7 05 e6 61 00 00 01 movl $0x1,0x61e6(%rip) # 66357020 + 66350e37: 00 00 00 + 66350e3a: e9 71 ff ff ff jmpq 66350db0 <__do_global_ctors> 66350e3f: 90 nop -0000000066350e40 <__write_memory.part.0>: +0000000066350e40 <__security_init_cookie>: 66350e40: 41 54 push %r12 66350e42: 55 push %rbp 66350e43: 57 push %rdi 66350e44: 56 push %rsi 66350e45: 53 push %rbx - 66350e46: 48 83 ec 50 sub $0x50,%rsp - 66350e4a: 48 63 35 93 67 00 00 movslq 0x6793(%rip),%rsi # 663575e4 - 66350e51: 85 f6 test %esi,%esi - 66350e53: 48 89 cb mov %rcx,%rbx - 66350e56: 48 89 d5 mov %rdx,%rbp - 66350e59: 4c 89 c7 mov %r8,%rdi - 66350e5c: 0f 8e 66 01 00 00 jle 66350fc8 <__write_memory.part.0+0x188> - 66350e62: 48 8b 05 7f 67 00 00 mov 0x677f(%rip),%rax # 663575e8 - 66350e69: 31 c9 xor %ecx,%ecx - 66350e6b: 48 83 c0 18 add $0x18,%rax - 66350e6f: 90 nop - 66350e70: 48 8b 10 mov (%rax),%rdx - 66350e73: 48 39 d3 cmp %rdx,%rbx - 66350e76: 72 14 jb 66350e8c <__write_memory.part.0+0x4c> - 66350e78: 4c 8b 40 08 mov 0x8(%rax),%r8 - 66350e7c: 45 8b 40 08 mov 0x8(%r8),%r8d - 66350e80: 4c 01 c2 add %r8,%rdx - 66350e83: 48 39 d3 cmp %rdx,%rbx - 66350e86: 0f 82 89 00 00 00 jb 66350f15 <__write_memory.part.0+0xd5> - 66350e8c: 83 c1 01 add $0x1,%ecx - 66350e8f: 48 83 c0 28 add $0x28,%rax - 66350e93: 39 f1 cmp %esi,%ecx - 66350e95: 75 d9 jne 66350e70 <__write_memory.part.0+0x30> - 66350e97: 48 89 d9 mov %rbx,%rcx - 66350e9a: e8 41 0c 00 00 callq 66351ae0 <__mingw_GetSectionForAddress> - 66350e9f: 48 85 c0 test %rax,%rax - 66350ea2: 49 89 c4 mov %rax,%r12 - 66350ea5: 0f 84 52 01 00 00 je 66350ffd <__write_memory.part.0+0x1bd> - 66350eab: 48 8b 05 36 67 00 00 mov 0x6736(%rip),%rax # 663575e8 - 66350eb2: 48 8d 34 b6 lea (%rsi,%rsi,4),%rsi - 66350eb6: 48 c1 e6 03 shl $0x3,%rsi - 66350eba: 48 01 f0 add %rsi,%rax - 66350ebd: 4c 89 60 20 mov %r12,0x20(%rax) - 66350ec1: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350ec7: e8 44 0d 00 00 callq 66351c10 <_GetPEImageBase> - 66350ecc: 41 8b 4c 24 0c mov 0xc(%r12),%ecx - 66350ed1: 48 8d 54 24 20 lea 0x20(%rsp),%rdx - 66350ed6: 41 b8 30 00 00 00 mov $0x30,%r8d - 66350edc: 48 01 c1 add %rax,%rcx - 66350edf: 48 8b 05 02 67 00 00 mov 0x6702(%rip),%rax # 663575e8 - 66350ee6: 48 89 4c 30 18 mov %rcx,0x18(%rax,%rsi,1) - 66350eeb: ff 15 87 83 00 00 callq *0x8387(%rip) # 66359278 <__imp_VirtualQuery> - 66350ef1: 48 85 c0 test %rax,%rax - 66350ef4: 0f 84 e6 00 00 00 je 66350fe0 <__write_memory.part.0+0x1a0> - 66350efa: 8b 44 24 44 mov 0x44(%rsp),%eax - 66350efe: 8d 50 fc lea -0x4(%rax),%edx - 66350f01: 83 e2 fb and $0xfffffffb,%edx - 66350f04: 74 08 je 66350f0e <__write_memory.part.0+0xce> - 66350f06: 83 e8 40 sub $0x40,%eax - 66350f09: 83 e0 bf and $0xffffffbf,%eax - 66350f0c: 75 62 jne 66350f70 <__write_memory.part.0+0x130> - 66350f0e: 83 05 cf 66 00 00 01 addl $0x1,0x66cf(%rip) # 663575e4 - 66350f15: 83 ff 08 cmp $0x8,%edi - 66350f18: 73 29 jae 66350f43 <__write_memory.part.0+0x103> - 66350f1a: 40 f6 c7 04 test $0x4,%dil - 66350f1e: 0f 85 90 00 00 00 jne 66350fb4 <__write_memory.part.0+0x174> - 66350f24: 85 ff test %edi,%edi - 66350f26: 74 10 je 66350f38 <__write_memory.part.0+0xf8> - 66350f28: 0f b6 45 00 movzbl 0x0(%rbp),%eax - 66350f2c: 40 f6 c7 02 test $0x2,%dil - 66350f30: 88 03 mov %al,(%rbx) - 66350f32: 0f 85 97 00 00 00 jne 66350fcf <__write_memory.part.0+0x18f> - 66350f38: 48 83 c4 50 add $0x50,%rsp - 66350f3c: 5b pop %rbx - 66350f3d: 5e pop %rsi - 66350f3e: 5f pop %rdi - 66350f3f: 5d pop %rbp - 66350f40: 41 5c pop %r12 - 66350f42: c3 retq - 66350f43: 89 f8 mov %edi,%eax - 66350f45: 83 ef 01 sub $0x1,%edi - 66350f48: 48 8b 54 05 f8 mov -0x8(%rbp,%rax,1),%rdx - 66350f4d: 83 ff 08 cmp $0x8,%edi - 66350f50: 48 89 54 03 f8 mov %rdx,-0x8(%rbx,%rax,1) - 66350f55: 72 e1 jb 66350f38 <__write_memory.part.0+0xf8> - 66350f57: 83 e7 f8 and $0xfffffff8,%edi - 66350f5a: 31 c0 xor %eax,%eax - 66350f5c: 89 c2 mov %eax,%edx - 66350f5e: 83 c0 08 add $0x8,%eax - 66350f61: 48 8b 4c 15 00 mov 0x0(%rbp,%rdx,1),%rcx - 66350f66: 39 f8 cmp %edi,%eax - 66350f68: 48 89 0c 13 mov %rcx,(%rbx,%rdx,1) - 66350f6c: 72 ee jb 66350f5c <__write_memory.part.0+0x11c> - 66350f6e: eb c8 jmp 66350f38 <__write_memory.part.0+0xf8> - 66350f70: 48 03 35 71 66 00 00 add 0x6671(%rip),%rsi # 663575e8 - 66350f77: 41 b8 40 00 00 00 mov $0x40,%r8d - 66350f7d: 48 8b 4c 24 20 mov 0x20(%rsp),%rcx - 66350f82: 48 8b 54 24 38 mov 0x38(%rsp),%rdx - 66350f87: 49 89 f1 mov %rsi,%r9 - 66350f8a: 48 89 4e 08 mov %rcx,0x8(%rsi) - 66350f8e: 48 89 56 10 mov %rdx,0x10(%rsi) - 66350f92: ff 15 d8 82 00 00 callq *0x82d8(%rip) # 66359270 <__imp_VirtualProtect> - 66350f98: 85 c0 test %eax,%eax - 66350f9a: 0f 85 6e ff ff ff jne 66350f0e <__write_memory.part.0+0xce> - 66350fa0: ff 15 4a 82 00 00 callq *0x824a(%rip) # 663591f0 <__imp_GetLastError> - 66350fa6: 48 8d 0d 6b 31 00 00 lea 0x316b(%rip),%rcx # 66354118 <.rdata+0x78> - 66350fad: 89 c2 mov %eax,%edx - 66350faf: e8 7c 13 00 00 callq 66352330 <__report_error> - 66350fb4: 8b 45 00 mov 0x0(%rbp),%eax - 66350fb7: 89 ff mov %edi,%edi - 66350fb9: 89 03 mov %eax,(%rbx) - 66350fbb: 8b 44 3d fc mov -0x4(%rbp,%rdi,1),%eax - 66350fbf: 89 44 3b fc mov %eax,-0x4(%rbx,%rdi,1) - 66350fc3: e9 70 ff ff ff jmpq 66350f38 <__write_memory.part.0+0xf8> - 66350fc8: 31 f6 xor %esi,%esi - 66350fca: e9 c8 fe ff ff jmpq 66350e97 <__write_memory.part.0+0x57> - 66350fcf: 89 ff mov %edi,%edi - 66350fd1: 0f b7 44 3d fe movzwl -0x2(%rbp,%rdi,1),%eax - 66350fd6: 66 89 44 3b fe mov %ax,-0x2(%rbx,%rdi,1) - 66350fdb: e9 58 ff ff ff jmpq 66350f38 <__write_memory.part.0+0xf8> - 66350fe0: 48 8b 05 01 66 00 00 mov 0x6601(%rip),%rax # 663575e8 - 66350fe7: 48 8d 0d f2 30 00 00 lea 0x30f2(%rip),%rcx # 663540e0 <.rdata+0x40> - 66350fee: 41 8b 54 24 08 mov 0x8(%r12),%edx - 66350ff3: 4c 8b 44 30 18 mov 0x18(%rax,%rsi,1),%r8 - 66350ff8: e8 33 13 00 00 callq 66352330 <__report_error> - 66350ffd: 48 8d 0d bc 30 00 00 lea 0x30bc(%rip),%rcx # 663540c0 <.rdata+0x20> - 66351004: 48 89 da mov %rbx,%rdx - 66351007: e8 24 13 00 00 callq 66352330 <__report_error> - 6635100c: 90 nop - 6635100d: 0f 1f 00 nopl (%rax) + 66350e46: 48 83 ec 30 sub $0x30,%rsp + 66350e4a: 48 8b 1d ef 25 00 00 mov 0x25ef(%rip),%rbx # 66353440 <__security_cookie> + 66350e51: 48 b8 32 a2 df 2d 99 movabs $0x2b992ddfa232,%rax + 66350e58: 2b 00 00 + 66350e5b: 48 39 c3 cmp %rax,%rbx + 66350e5e: 48 c7 44 24 20 00 00 movq $0x0,0x20(%rsp) + 66350e65: 00 00 + 66350e67: 74 17 je 66350e80 <__security_init_cookie+0x40> + 66350e69: 48 f7 d3 not %rbx + 66350e6c: 48 89 1d dd 25 00 00 mov %rbx,0x25dd(%rip) # 66353450 <__security_cookie_complement> + 66350e73: 48 83 c4 30 add $0x30,%rsp + 66350e77: 5b pop %rbx + 66350e78: 5e pop %rsi + 66350e79: 5f pop %rdi + 66350e7a: 5d pop %rbp + 66350e7b: 41 5c pop %r12 + 66350e7d: c3 retq + 66350e7e: 66 90 xchg %ax,%ax + 66350e80: 48 8d 4c 24 20 lea 0x20(%rsp),%rcx + 66350e85: ff 15 75 83 00 00 callq *0x8375(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> + 66350e8b: 48 8b 74 24 20 mov 0x20(%rsp),%rsi + 66350e90: ff 15 4a 83 00 00 callq *0x834a(%rip) # 663591e0 <__imp_GetCurrentProcessId> + 66350e96: 41 89 c4 mov %eax,%r12d + 66350e99: ff 15 49 83 00 00 callq *0x8349(%rip) # 663591e8 <__imp_GetCurrentThreadId> + 66350e9f: 89 c5 mov %eax,%ebp + 66350ea1: ff 15 61 83 00 00 callq *0x8361(%rip) # 66359208 <__imp_GetTickCount> + 66350ea7: 48 8d 4c 24 28 lea 0x28(%rsp),%rcx + 66350eac: 89 c7 mov %eax,%edi + 66350eae: ff 15 6c 83 00 00 callq *0x836c(%rip) # 66359220 <__imp_QueryPerformanceCounter> + 66350eb4: 48 33 74 24 28 xor 0x28(%rsp),%rsi + 66350eb9: 44 89 e0 mov %r12d,%eax + 66350ebc: 48 ba ff ff ff ff ff movabs $0xffffffffffff,%rdx + 66350ec3: ff 00 00 + 66350ec6: 48 31 f0 xor %rsi,%rax + 66350ec9: 89 ee mov %ebp,%esi + 66350ecb: 48 31 c6 xor %rax,%rsi + 66350ece: 89 f8 mov %edi,%eax + 66350ed0: 48 31 f0 xor %rsi,%rax + 66350ed3: 48 21 d0 and %rdx,%rax + 66350ed6: 48 39 d8 cmp %rbx,%rax + 66350ed9: 74 25 je 66350f00 <__security_init_cookie+0xc0> + 66350edb: 48 89 c2 mov %rax,%rdx + 66350ede: 48 f7 d2 not %rdx + 66350ee1: 48 89 05 58 25 00 00 mov %rax,0x2558(%rip) # 66353440 <__security_cookie> + 66350ee8: 48 89 15 61 25 00 00 mov %rdx,0x2561(%rip) # 66353450 <__security_cookie_complement> + 66350eef: 48 83 c4 30 add $0x30,%rsp + 66350ef3: 5b pop %rbx + 66350ef4: 5e pop %rsi + 66350ef5: 5f pop %rdi + 66350ef6: 5d pop %rbp + 66350ef7: 41 5c pop %r12 + 66350ef9: c3 retq + 66350efa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66350f00: 48 ba cc 5d 20 d2 66 movabs $0xffffd466d2205dcc,%rdx + 66350f07: d4 ff ff + 66350f0a: 48 b8 33 a2 df 2d 99 movabs $0x2b992ddfa233,%rax + 66350f11: 2b 00 00 + 66350f14: eb cb jmp 66350ee1 <__security_init_cookie+0xa1> + 66350f16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350f1d: 00 00 00 -0000000066351010 <_pei386_runtime_relocator>: - 66351010: 55 push %rbp - 66351011: 41 57 push %r15 - 66351013: 41 56 push %r14 - 66351015: 41 55 push %r13 - 66351017: 41 54 push %r12 - 66351019: 57 push %rdi - 6635101a: 56 push %rsi - 6635101b: 53 push %rbx - 6635101c: 48 83 ec 38 sub $0x38,%rsp - 66351020: 48 8d ac 24 80 00 00 lea 0x80(%rsp),%rbp - 66351027: 00 - 66351028: 8b 1d b2 65 00 00 mov 0x65b2(%rip),%ebx # 663575e0 - 6635102e: 85 db test %ebx,%ebx - 66351030: 74 11 je 66351043 <_pei386_runtime_relocator+0x33> - 66351032: 48 8d 65 b8 lea -0x48(%rbp),%rsp - 66351036: 5b pop %rbx - 66351037: 5e pop %rsi - 66351038: 5f pop %rdi - 66351039: 41 5c pop %r12 - 6635103b: 41 5d pop %r13 - 6635103d: 41 5e pop %r14 - 6635103f: 41 5f pop %r15 - 66351041: 5d pop %rbp - 66351042: c3 retq - 66351043: c7 05 93 65 00 00 01 movl $0x1,0x6593(%rip) # 663575e0 - 6635104a: 00 00 00 - 6635104d: e8 0e 0b 00 00 callq 66351b60 <__mingw_GetSectionCount> - 66351052: 48 98 cltq - 66351054: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351058: 48 8d 04 c5 1e 00 00 lea 0x1e(,%rax,8),%rax - 6635105f: 00 - 66351060: 48 83 e0 f0 and $0xfffffffffffffff0,%rax - 66351064: e8 47 0d 00 00 callq 66351db0 <___chkstk_ms> - 66351069: 4c 8b 25 50 32 00 00 mov 0x3250(%rip),%r12 # 663542c0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST_END__> - 66351070: c7 05 6a 65 00 00 00 movl $0x0,0x656a(%rip) # 663575e4 - 66351077: 00 00 00 - 6635107a: 48 8b 35 4f 32 00 00 mov 0x324f(%rip),%rsi # 663542d0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST__> - 66351081: 48 29 c4 sub %rax,%rsp - 66351084: 48 8d 44 24 20 lea 0x20(%rsp),%rax - 66351089: 48 89 05 58 65 00 00 mov %rax,0x6558(%rip) # 663575e8 - 66351090: 4c 89 e0 mov %r12,%rax - 66351093: 48 29 f0 sub %rsi,%rax - 66351096: 48 83 f8 07 cmp $0x7,%rax - 6635109a: 7e 96 jle 66351032 <_pei386_runtime_relocator+0x22> - 6635109c: 48 83 f8 0b cmp $0xb,%rax - 663510a0: 8b 16 mov (%rsi),%edx - 663510a2: 0f 8e c8 00 00 00 jle 66351170 <_pei386_runtime_relocator+0x160> - 663510a8: 85 d2 test %edx,%edx - 663510aa: 0f 84 a4 00 00 00 je 66351154 <_pei386_runtime_relocator+0x144> - 663510b0: 4c 39 e6 cmp %r12,%rsi - 663510b3: 0f 83 79 ff ff ff jae 66351032 <_pei386_runtime_relocator+0x22> - 663510b9: 4c 8d 76 08 lea 0x8(%rsi),%r14 - 663510bd: 49 83 c4 07 add $0x7,%r12 - 663510c1: 4c 8b 2d 28 32 00 00 mov 0x3228(%rip),%r13 # 663542f0 <.refptr.__image_base__> - 663510c8: 48 8d 7d a8 lea -0x58(%rbp),%rdi - 663510cc: 4d 29 f4 sub %r14,%r12 - 663510cf: 49 c1 ec 03 shr $0x3,%r12 - 663510d3: 4e 8d 64 e6 08 lea 0x8(%rsi,%r12,8),%r12 - 663510d8: eb 0a jmp 663510e4 <_pei386_runtime_relocator+0xd4> - 663510da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663510e0: 49 83 c6 08 add $0x8,%r14 - 663510e4: 8b 4e 04 mov 0x4(%rsi),%ecx - 663510e7: 41 b8 04 00 00 00 mov $0x4,%r8d - 663510ed: 48 89 fa mov %rdi,%rdx - 663510f0: 8b 06 mov (%rsi),%eax - 663510f2: 4c 89 f6 mov %r14,%rsi - 663510f5: 4c 01 e9 add %r13,%rcx - 663510f8: 03 01 add (%rcx),%eax - 663510fa: 89 45 a8 mov %eax,-0x58(%rbp) - 663510fd: e8 3e fd ff ff callq 66350e40 <__write_memory.part.0> - 66351102: 4d 39 e6 cmp %r12,%r14 - 66351105: 75 d9 jne 663510e0 <_pei386_runtime_relocator+0xd0> - 66351107: 8b 05 d7 64 00 00 mov 0x64d7(%rip),%eax # 663575e4 - 6635110d: 31 f6 xor %esi,%esi - 6635110f: 4c 8b 25 5a 81 00 00 mov 0x815a(%rip),%r12 # 66359270 <__imp_VirtualProtect> - 66351116: 85 c0 test %eax,%eax - 66351118: 0f 8e 14 ff ff ff jle 66351032 <_pei386_runtime_relocator+0x22> - 6635111e: 66 90 xchg %ax,%ax - 66351120: 48 8b 05 c1 64 00 00 mov 0x64c1(%rip),%rax # 663575e8 - 66351127: 48 01 f0 add %rsi,%rax - 6635112a: 44 8b 00 mov (%rax),%r8d - 6635112d: 45 85 c0 test %r8d,%r8d - 66351130: 74 0e je 66351140 <_pei386_runtime_relocator+0x130> - 66351132: 48 8b 50 10 mov 0x10(%rax),%rdx - 66351136: 49 89 f9 mov %rdi,%r9 - 66351139: 48 8b 48 08 mov 0x8(%rax),%rcx - 6635113d: 41 ff d4 callq *%r12 - 66351140: 83 c3 01 add $0x1,%ebx - 66351143: 48 83 c6 28 add $0x28,%rsi - 66351147: 3b 1d 97 64 00 00 cmp 0x6497(%rip),%ebx # 663575e4 - 6635114d: 7c d1 jl 66351120 <_pei386_runtime_relocator+0x110> - 6635114f: e9 de fe ff ff jmpq 66351032 <_pei386_runtime_relocator+0x22> - 66351154: 8b 4e 04 mov 0x4(%rsi),%ecx - 66351157: 85 c9 test %ecx,%ecx - 66351159: 0f 85 51 ff ff ff jne 663510b0 <_pei386_runtime_relocator+0xa0> - 6635115f: 8b 56 08 mov 0x8(%rsi),%edx - 66351162: 85 d2 test %edx,%edx - 66351164: 75 1d jne 66351183 <_pei386_runtime_relocator+0x173> - 66351166: 8b 56 0c mov 0xc(%rsi),%edx - 66351169: 48 83 c6 0c add $0xc,%rsi - 6635116d: 0f 1f 00 nopl (%rax) - 66351170: 85 d2 test %edx,%edx - 66351172: 0f 85 38 ff ff ff jne 663510b0 <_pei386_runtime_relocator+0xa0> - 66351178: 8b 46 04 mov 0x4(%rsi),%eax - 6635117b: 85 c0 test %eax,%eax - 6635117d: 0f 85 2d ff ff ff jne 663510b0 <_pei386_runtime_relocator+0xa0> - 66351183: 8b 56 08 mov 0x8(%rsi),%edx - 66351186: 83 fa 01 cmp $0x1,%edx - 66351189: 0f 85 2f 01 00 00 jne 663512be <_pei386_runtime_relocator+0x2ae> - 6635118f: 4c 8b 2d 5a 31 00 00 mov 0x315a(%rip),%r13 # 663542f0 <.refptr.__image_base__> - 66351196: 48 83 c6 0c add $0xc,%rsi - 6635119a: 49 bf 00 00 00 00 ff movabs $0xffffffff00000000,%r15 - 663511a1: ff ff ff - 663511a4: 4c 8d 75 a8 lea -0x58(%rbp),%r14 - 663511a8: 4c 39 e6 cmp %r12,%rsi - 663511ab: 72 48 jb 663511f5 <_pei386_runtime_relocator+0x1e5> - 663511ad: e9 80 fe ff ff jmpq 66351032 <_pei386_runtime_relocator+0x22> - 663511b2: 0f 86 b8 00 00 00 jbe 66351270 <_pei386_runtime_relocator+0x260> - 663511b8: 83 fa 20 cmp $0x20,%edx - 663511bb: 0f 84 7f 00 00 00 je 66351240 <_pei386_runtime_relocator+0x230> - 663511c1: 83 fa 40 cmp $0x40,%edx - 663511c4: 0f 85 e0 00 00 00 jne 663512aa <_pei386_runtime_relocator+0x29a> - 663511ca: 48 8b 11 mov (%rcx),%rdx - 663511cd: 41 b8 08 00 00 00 mov $0x8,%r8d - 663511d3: 4c 89 f7 mov %r14,%rdi - 663511d6: 48 29 c2 sub %rax,%rdx - 663511d9: 4c 01 ca add %r9,%rdx - 663511dc: 48 89 55 a8 mov %rdx,-0x58(%rbp) - 663511e0: 4c 89 f2 mov %r14,%rdx - 663511e3: e8 58 fc ff ff callq 66350e40 <__write_memory.part.0> - 663511e8: 48 83 c6 0c add $0xc,%rsi - 663511ec: 4c 39 e6 cmp %r12,%rsi - 663511ef: 0f 83 12 ff ff ff jae 66351107 <_pei386_runtime_relocator+0xf7> - 663511f5: 8b 4e 04 mov 0x4(%rsi),%ecx - 663511f8: 8b 06 mov (%rsi),%eax - 663511fa: 0f b6 56 08 movzbl 0x8(%rsi),%edx - 663511fe: 4c 01 e9 add %r13,%rcx - 66351201: 4c 01 e8 add %r13,%rax - 66351204: 83 fa 10 cmp $0x10,%edx - 66351207: 4c 8b 08 mov (%rax),%r9 - 6635120a: 75 a6 jne 663511b2 <_pei386_runtime_relocator+0x1a2> - 6635120c: 44 0f b7 01 movzwl (%rcx),%r8d - 66351210: 4c 89 f2 mov %r14,%rdx - 66351213: 4c 89 f7 mov %r14,%rdi - 66351216: 4d 89 c2 mov %r8,%r10 - 66351219: 49 81 ca 00 00 ff ff or $0xffffffffffff0000,%r10 - 66351220: 66 45 85 c0 test %r8w,%r8w - 66351224: 4d 0f 48 c2 cmovs %r10,%r8 - 66351228: 49 29 c0 sub %rax,%r8 - 6635122b: 4d 01 c8 add %r9,%r8 - 6635122e: 4c 89 45 a8 mov %r8,-0x58(%rbp) - 66351232: 41 b8 02 00 00 00 mov $0x2,%r8d - 66351238: e8 03 fc ff ff callq 66350e40 <__write_memory.part.0> - 6635123d: eb a9 jmp 663511e8 <_pei386_runtime_relocator+0x1d8> - 6635123f: 90 nop - 66351240: 8b 11 mov (%rcx),%edx - 66351242: 4c 89 f7 mov %r14,%rdi - 66351245: 49 89 d0 mov %rdx,%r8 - 66351248: 4c 09 fa or %r15,%rdx - 6635124b: 45 85 c0 test %r8d,%r8d - 6635124e: 49 0f 49 d0 cmovns %r8,%rdx - 66351252: 41 b8 04 00 00 00 mov $0x4,%r8d - 66351258: 48 29 c2 sub %rax,%rdx - 6635125b: 4c 01 ca add %r9,%rdx - 6635125e: 48 89 55 a8 mov %rdx,-0x58(%rbp) - 66351262: 4c 89 f2 mov %r14,%rdx - 66351265: e8 d6 fb ff ff callq 66350e40 <__write_memory.part.0> - 6635126a: e9 79 ff ff ff jmpq 663511e8 <_pei386_runtime_relocator+0x1d8> - 6635126f: 90 nop - 66351270: 83 fa 08 cmp $0x8,%edx - 66351273: 75 35 jne 663512aa <_pei386_runtime_relocator+0x29a> - 66351275: 44 0f b6 01 movzbl (%rcx),%r8d - 66351279: 4c 89 f2 mov %r14,%rdx - 6635127c: 4c 89 f7 mov %r14,%rdi - 6635127f: 4d 89 c2 mov %r8,%r10 - 66351282: 49 81 ca 00 ff ff ff or $0xffffffffffffff00,%r10 - 66351289: 45 84 c0 test %r8b,%r8b - 6635128c: 4d 0f 48 c2 cmovs %r10,%r8 - 66351290: 49 29 c0 sub %rax,%r8 - 66351293: 4d 01 c8 add %r9,%r8 - 66351296: 4c 89 45 a8 mov %r8,-0x58(%rbp) - 6635129a: 41 b8 01 00 00 00 mov $0x1,%r8d - 663512a0: e8 9b fb ff ff callq 66350e40 <__write_memory.part.0> - 663512a5: e9 3e ff ff ff jmpq 663511e8 <_pei386_runtime_relocator+0x1d8> - 663512aa: 48 8d 0d c7 2e 00 00 lea 0x2ec7(%rip),%rcx # 66354178 <.rdata+0xd8> - 663512b1: 48 c7 45 a8 00 00 00 movq $0x0,-0x58(%rbp) - 663512b8: 00 - 663512b9: e8 72 10 00 00 callq 66352330 <__report_error> - 663512be: 48 8d 0d 7b 2e 00 00 lea 0x2e7b(%rip),%rcx # 66354140 <.rdata+0xa0> - 663512c5: e8 66 10 00 00 callq 66352330 <__report_error> - 663512ca: 90 nop - 663512cb: 90 nop +0000000066350f20 <__report_gsfailure>: + 66350f20: 55 push %rbp + 66350f21: 56 push %rsi + 66350f22: 53 push %rbx + 66350f23: 48 89 e5 mov %rsp,%rbp + 66350f26: 48 83 ec 70 sub $0x70,%rsp + 66350f2a: 48 89 ce mov %rcx,%rsi + 66350f2d: 48 8d 0d 0c 61 00 00 lea 0x610c(%rip),%rcx # 66357040 + 66350f34: ff 15 f6 82 00 00 callq *0x82f6(%rip) # 66359230 <__imp_RtlCaptureContext> + 66350f3a: 48 8b 1d f7 61 00 00 mov 0x61f7(%rip),%rbx # 66357138 + 66350f41: 48 8d 55 d8 lea -0x28(%rbp),%rdx + 66350f45: 45 31 c0 xor %r8d,%r8d + 66350f48: 48 89 d9 mov %rbx,%rcx + 66350f4b: ff 15 e7 82 00 00 callq *0x82e7(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> + 66350f51: 48 85 c0 test %rax,%rax + 66350f54: 0f 84 a3 00 00 00 je 66350ffd <__report_gsfailure+0xdd> + 66350f5a: 48 8d 55 e0 lea -0x20(%rbp),%rdx + 66350f5e: 49 89 c1 mov %rax,%r9 + 66350f61: 49 89 d8 mov %rbx,%r8 + 66350f64: 48 c7 44 24 38 00 00 movq $0x0,0x38(%rsp) + 66350f6b: 00 00 + 66350f6d: 48 8d 0d cc 60 00 00 lea 0x60cc(%rip),%rcx # 66357040 + 66350f74: 48 89 54 24 30 mov %rdx,0x30(%rsp) + 66350f79: 48 8d 55 e8 lea -0x18(%rbp),%rdx + 66350f7d: 48 89 4c 24 20 mov %rcx,0x20(%rsp) + 66350f82: 31 c9 xor %ecx,%ecx + 66350f84: 48 89 54 24 28 mov %rdx,0x28(%rsp) + 66350f89: 48 8b 55 d8 mov -0x28(%rbp),%rdx + 66350f8d: ff 15 ad 82 00 00 callq *0x82ad(%rip) # 66359240 <__imp_RtlVirtualUnwind> + 66350f93: 48 8b 05 9e 61 00 00 mov 0x619e(%rip),%rax # 66357138 + 66350f9a: 31 c9 xor %ecx,%ecx + 66350f9c: 48 89 35 1d 61 00 00 mov %rsi,0x611d(%rip) # 663570c0 + 66350fa3: 48 89 05 86 65 00 00 mov %rax,0x6586(%rip) # 66357530 + 66350faa: 48 b8 09 04 00 c0 01 movabs $0x1c0000409,%rax + 66350fb1: 00 00 00 + 66350fb4: 48 89 05 65 65 00 00 mov %rax,0x6565(%rip) # 66357520 + 66350fbb: 48 8b 05 7e 24 00 00 mov 0x247e(%rip),%rax # 66353440 <__security_cookie> + 66350fc2: 48 89 45 f0 mov %rax,-0x10(%rbp) + 66350fc6: 48 8b 05 83 24 00 00 mov 0x2483(%rip),%rax # 66353450 <__security_cookie_complement> + 66350fcd: 48 89 45 f8 mov %rax,-0x8(%rbp) + 66350fd1: ff 15 71 82 00 00 callq *0x8271(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> + 66350fd7: 48 8d 0d 52 30 00 00 lea 0x3052(%rip),%rcx # 66354030 + 66350fde: ff 15 84 82 00 00 callq *0x8284(%rip) # 66359268 <__imp_UnhandledExceptionFilter> + 66350fe4: ff 15 ee 81 00 00 callq *0x81ee(%rip) # 663591d8 <__imp_GetCurrentProcess> + 66350fea: ba 09 04 00 c0 mov $0xc0000409,%edx + 66350fef: 48 89 c1 mov %rax,%rcx + 66350ff2: ff 15 60 82 00 00 callq *0x8260(%rip) # 66359258 <__imp_TerminateProcess> + 66350ff8: e8 4b 13 00 00 callq 66352348 + 66350ffd: 48 8b 45 18 mov 0x18(%rbp),%rax + 66351001: 48 89 05 30 61 00 00 mov %rax,0x6130(%rip) # 66357138 + 66351008: 48 8d 45 08 lea 0x8(%rbp),%rax + 6635100c: 48 89 05 c5 60 00 00 mov %rax,0x60c5(%rip) # 663570d8 + 66351013: e9 7b ff ff ff jmpq 66350f93 <__report_gsfailure+0x73> + 66351018: 90 nop + 66351019: 90 nop + 6635101a: 90 nop + 6635101b: 90 nop + 6635101c: 90 nop + 6635101d: 90 nop + 6635101e: 90 nop + 6635101f: 90 nop + +0000000066351020 <__dyn_tls_dtor>: + 66351020: 48 83 ec 28 sub $0x28,%rsp + 66351024: 83 fa 03 cmp $0x3,%edx + 66351027: 74 17 je 66351040 <__dyn_tls_dtor+0x20> + 66351029: 85 d2 test %edx,%edx + 6635102b: 74 13 je 66351040 <__dyn_tls_dtor+0x20> + 6635102d: b8 01 00 00 00 mov $0x1,%eax + 66351032: 48 83 c4 28 add $0x28,%rsp + 66351036: c3 retq + 66351037: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6635103e: 00 00 + 66351040: e8 5b 0b 00 00 callq 66351ba0 <__mingw_TLScallback> + 66351045: b8 01 00 00 00 mov $0x1,%eax + 6635104a: 48 83 c4 28 add $0x28,%rsp + 6635104e: c3 retq + 6635104f: 90 nop + +0000000066351050 <__dyn_tls_init>: + 66351050: 56 push %rsi + 66351051: 53 push %rbx + 66351052: 48 83 ec 28 sub $0x28,%rsp + 66351056: 48 8b 05 43 32 00 00 mov 0x3243(%rip),%rax # 663542a0 <.refptr._CRT_MT> + 6635105d: 83 38 02 cmpl $0x2,(%rax) + 66351060: 74 06 je 66351068 <__dyn_tls_init+0x18> + 66351062: c7 00 02 00 00 00 movl $0x2,(%rax) + 66351068: 83 fa 02 cmp $0x2,%edx + 6635106b: 74 13 je 66351080 <__dyn_tls_init+0x30> + 6635106d: 83 fa 01 cmp $0x1,%edx + 66351070: 74 40 je 663510b2 <__dyn_tls_init+0x62> + 66351072: b8 01 00 00 00 mov $0x1,%eax + 66351077: 48 83 c4 28 add $0x28,%rsp + 6635107b: 5b pop %rbx + 6635107c: 5e pop %rsi + 6635107d: c3 retq + 6635107e: 66 90 xchg %ax,%ax + 66351080: 48 8d 1d c9 8f 00 00 lea 0x8fc9(%rip),%rbx # 6635a050 <__xd_z> + 66351087: 48 8d 35 c2 8f 00 00 lea 0x8fc2(%rip),%rsi # 6635a050 <__xd_z> + 6635108e: 48 39 de cmp %rbx,%rsi + 66351091: 74 df je 66351072 <__dyn_tls_init+0x22> + 66351093: 48 8b 03 mov (%rbx),%rax + 66351096: 48 85 c0 test %rax,%rax + 66351099: 74 02 je 6635109d <__dyn_tls_init+0x4d> + 6635109b: ff d0 callq *%rax + 6635109d: 48 83 c3 08 add $0x8,%rbx + 663510a1: 48 39 de cmp %rbx,%rsi + 663510a4: 75 ed jne 66351093 <__dyn_tls_init+0x43> + 663510a6: b8 01 00 00 00 mov $0x1,%eax + 663510ab: 48 83 c4 28 add $0x28,%rsp + 663510af: 5b pop %rbx + 663510b0: 5e pop %rsi + 663510b1: c3 retq + 663510b2: e8 e9 0a 00 00 callq 66351ba0 <__mingw_TLScallback> + 663510b7: b8 01 00 00 00 mov $0x1,%eax + 663510bc: 48 83 c4 28 add $0x28,%rsp + 663510c0: 5b pop %rbx + 663510c1: 5e pop %rsi + 663510c2: c3 retq + 663510c3: 0f 1f 00 nopl (%rax) + 663510c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663510cd: 00 00 00 + +00000000663510d0 <__tlregdtor>: + 663510d0: 31 c0 xor %eax,%eax + 663510d2: c3 retq + 663510d3: 90 nop + 663510d4: 90 nop + 663510d5: 90 nop + 663510d6: 90 nop + 663510d7: 90 nop + 663510d8: 90 nop + 663510d9: 90 nop + 663510da: 90 nop + 663510db: 90 nop + 663510dc: 90 nop + 663510dd: 90 nop + 663510de: 90 nop + 663510df: 90 nop + +00000000663510e0 <_decode_pointer>: + 663510e0: 48 89 c8 mov %rcx,%rax + 663510e3: c3 retq + 663510e4: 66 90 xchg %ax,%ax + 663510e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663510ed: 00 00 00 + +00000000663510f0 <_encode_pointer>: + 663510f0: 48 89 c8 mov %rcx,%rax + 663510f3: c3 retq + 663510f4: 90 nop + 663510f5: 90 nop + 663510f6: 90 nop + 663510f7: 90 nop + 663510f8: 90 nop + 663510f9: 90 nop + 663510fa: 90 nop + 663510fb: 90 nop + 663510fc: 90 nop + 663510fd: 90 nop + 663510fe: 90 nop + 663510ff: 90 nop + +0000000066351100 <__write_memory.part.0>: + 66351100: 41 54 push %r12 + 66351102: 55 push %rbp + 66351103: 57 push %rdi + 66351104: 56 push %rsi + 66351105: 53 push %rbx + 66351106: 48 83 ec 50 sub $0x50,%rsp + 6635110a: 48 63 35 d3 64 00 00 movslq 0x64d3(%rip),%rsi # 663575e4 + 66351111: 85 f6 test %esi,%esi + 66351113: 48 89 cb mov %rcx,%rbx + 66351116: 48 89 d5 mov %rdx,%rbp + 66351119: 4c 89 c7 mov %r8,%rdi + 6635111c: 0f 8e 66 01 00 00 jle 66351288 <__write_memory.part.0+0x188> + 66351122: 48 8b 05 bf 64 00 00 mov 0x64bf(%rip),%rax # 663575e8 + 66351129: 31 c9 xor %ecx,%ecx + 6635112b: 48 83 c0 18 add $0x18,%rax + 6635112f: 90 nop + 66351130: 48 8b 10 mov (%rax),%rdx + 66351133: 48 39 d3 cmp %rdx,%rbx + 66351136: 72 14 jb 6635114c <__write_memory.part.0+0x4c> + 66351138: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6635113c: 45 8b 40 08 mov 0x8(%r8),%r8d + 66351140: 4c 01 c2 add %r8,%rdx + 66351143: 48 39 d3 cmp %rdx,%rbx + 66351146: 0f 82 89 00 00 00 jb 663511d5 <__write_memory.part.0+0xd5> + 6635114c: 83 c1 01 add $0x1,%ecx + 6635114f: 48 83 c0 28 add $0x28,%rax + 66351153: 39 f1 cmp %esi,%ecx + 66351155: 75 d9 jne 66351130 <__write_memory.part.0+0x30> + 66351157: 48 89 d9 mov %rbx,%rcx + 6635115a: e8 41 0c 00 00 callq 66351da0 <__mingw_GetSectionForAddress> + 6635115f: 48 85 c0 test %rax,%rax + 66351162: 49 89 c4 mov %rax,%r12 + 66351165: 0f 84 52 01 00 00 je 663512bd <__write_memory.part.0+0x1bd> + 6635116b: 48 8b 05 76 64 00 00 mov 0x6476(%rip),%rax # 663575e8 + 66351172: 48 8d 34 b6 lea (%rsi,%rsi,4),%rsi + 66351176: 48 c1 e6 03 shl $0x3,%rsi + 6635117a: 48 01 f0 add %rsi,%rax + 6635117d: 4c 89 60 20 mov %r12,0x20(%rax) + 66351181: c7 00 00 00 00 00 movl $0x0,(%rax) + 66351187: e8 44 0d 00 00 callq 66351ed0 <_GetPEImageBase> + 6635118c: 41 8b 4c 24 0c mov 0xc(%r12),%ecx + 66351191: 48 8d 54 24 20 lea 0x20(%rsp),%rdx + 66351196: 41 b8 30 00 00 00 mov $0x30,%r8d + 6635119c: 48 01 c1 add %rax,%rcx + 6635119f: 48 8b 05 42 64 00 00 mov 0x6442(%rip),%rax # 663575e8 + 663511a6: 48 89 4c 30 18 mov %rcx,0x18(%rax,%rsi,1) + 663511ab: ff 15 c7 80 00 00 callq *0x80c7(%rip) # 66359278 <__imp_VirtualQuery> + 663511b1: 48 85 c0 test %rax,%rax + 663511b4: 0f 84 e6 00 00 00 je 663512a0 <__write_memory.part.0+0x1a0> + 663511ba: 8b 44 24 44 mov 0x44(%rsp),%eax + 663511be: 8d 50 fc lea -0x4(%rax),%edx + 663511c1: 83 e2 fb and $0xfffffffb,%edx + 663511c4: 74 08 je 663511ce <__write_memory.part.0+0xce> + 663511c6: 83 e8 40 sub $0x40,%eax + 663511c9: 83 e0 bf and $0xffffffbf,%eax + 663511cc: 75 62 jne 66351230 <__write_memory.part.0+0x130> + 663511ce: 83 05 0f 64 00 00 01 addl $0x1,0x640f(%rip) # 663575e4 + 663511d5: 83 ff 08 cmp $0x8,%edi + 663511d8: 73 29 jae 66351203 <__write_memory.part.0+0x103> + 663511da: 40 f6 c7 04 test $0x4,%dil + 663511de: 0f 85 90 00 00 00 jne 66351274 <__write_memory.part.0+0x174> + 663511e4: 85 ff test %edi,%edi + 663511e6: 74 10 je 663511f8 <__write_memory.part.0+0xf8> + 663511e8: 0f b6 45 00 movzbl 0x0(%rbp),%eax + 663511ec: 40 f6 c7 02 test $0x2,%dil + 663511f0: 88 03 mov %al,(%rbx) + 663511f2: 0f 85 97 00 00 00 jne 6635128f <__write_memory.part.0+0x18f> + 663511f8: 48 83 c4 50 add $0x50,%rsp + 663511fc: 5b pop %rbx + 663511fd: 5e pop %rsi + 663511fe: 5f pop %rdi + 663511ff: 5d pop %rbp + 66351200: 41 5c pop %r12 + 66351202: c3 retq + 66351203: 89 f8 mov %edi,%eax + 66351205: 83 ef 01 sub $0x1,%edi + 66351208: 48 8b 54 05 f8 mov -0x8(%rbp,%rax,1),%rdx + 6635120d: 83 ff 08 cmp $0x8,%edi + 66351210: 48 89 54 03 f8 mov %rdx,-0x8(%rbx,%rax,1) + 66351215: 72 e1 jb 663511f8 <__write_memory.part.0+0xf8> + 66351217: 83 e7 f8 and $0xfffffff8,%edi + 6635121a: 31 c0 xor %eax,%eax + 6635121c: 89 c2 mov %eax,%edx + 6635121e: 83 c0 08 add $0x8,%eax + 66351221: 48 8b 4c 15 00 mov 0x0(%rbp,%rdx,1),%rcx + 66351226: 39 f8 cmp %edi,%eax + 66351228: 48 89 0c 13 mov %rcx,(%rbx,%rdx,1) + 6635122c: 72 ee jb 6635121c <__write_memory.part.0+0x11c> + 6635122e: eb c8 jmp 663511f8 <__write_memory.part.0+0xf8> + 66351230: 48 03 35 b1 63 00 00 add 0x63b1(%rip),%rsi # 663575e8 + 66351237: 41 b8 40 00 00 00 mov $0x40,%r8d + 6635123d: 48 8b 4c 24 20 mov 0x20(%rsp),%rcx + 66351242: 48 8b 54 24 38 mov 0x38(%rsp),%rdx + 66351247: 49 89 f1 mov %rsi,%r9 + 6635124a: 48 89 4e 08 mov %rcx,0x8(%rsi) + 6635124e: 48 89 56 10 mov %rdx,0x10(%rsi) + 66351252: ff 15 18 80 00 00 callq *0x8018(%rip) # 66359270 <__imp_VirtualProtect> + 66351258: 85 c0 test %eax,%eax + 6635125a: 0f 85 6e ff ff ff jne 663511ce <__write_memory.part.0+0xce> + 66351260: ff 15 8a 7f 00 00 callq *0x7f8a(%rip) # 663591f0 <__imp_GetLastError> + 66351266: 48 8d 0d ab 2e 00 00 lea 0x2eab(%rip),%rcx # 66354118 <.rdata+0x78> + 6635126d: 89 c2 mov %eax,%edx + 6635126f: e8 7c 13 00 00 callq 663525f0 <__report_error> + 66351274: 8b 45 00 mov 0x0(%rbp),%eax + 66351277: 89 ff mov %edi,%edi + 66351279: 89 03 mov %eax,(%rbx) + 6635127b: 8b 44 3d fc mov -0x4(%rbp,%rdi,1),%eax + 6635127f: 89 44 3b fc mov %eax,-0x4(%rbx,%rdi,1) + 66351283: e9 70 ff ff ff jmpq 663511f8 <__write_memory.part.0+0xf8> + 66351288: 31 f6 xor %esi,%esi + 6635128a: e9 c8 fe ff ff jmpq 66351157 <__write_memory.part.0+0x57> + 6635128f: 89 ff mov %edi,%edi + 66351291: 0f b7 44 3d fe movzwl -0x2(%rbp,%rdi,1),%eax + 66351296: 66 89 44 3b fe mov %ax,-0x2(%rbx,%rdi,1) + 6635129b: e9 58 ff ff ff jmpq 663511f8 <__write_memory.part.0+0xf8> + 663512a0: 48 8b 05 41 63 00 00 mov 0x6341(%rip),%rax # 663575e8 + 663512a7: 48 8d 0d 32 2e 00 00 lea 0x2e32(%rip),%rcx # 663540e0 <.rdata+0x40> + 663512ae: 41 8b 54 24 08 mov 0x8(%r12),%edx + 663512b3: 4c 8b 44 30 18 mov 0x18(%rax,%rsi,1),%r8 + 663512b8: e8 33 13 00 00 callq 663525f0 <__report_error> + 663512bd: 48 8d 0d fc 2d 00 00 lea 0x2dfc(%rip),%rcx # 663540c0 <.rdata+0x20> + 663512c4: 48 89 da mov %rbx,%rdx + 663512c7: e8 24 13 00 00 callq 663525f0 <__report_error> 663512cc: 90 nop - 663512cd: 90 nop - 663512ce: 90 nop - 663512cf: 90 nop + 663512cd: 0f 1f 00 nopl (%rax) -00000000663512d0 <__mingw_SEH_error_handler>: - 663512d0: 48 83 ec 28 sub $0x28,%rsp - 663512d4: 8b 01 mov (%rcx),%eax - 663512d6: 3d 91 00 00 c0 cmp $0xc0000091,%eax - 663512db: 77 63 ja 66351340 <__mingw_SEH_error_handler+0x70> - 663512dd: 3d 8d 00 00 c0 cmp $0xc000008d,%eax - 663512e2: 73 7b jae 6635135f <__mingw_SEH_error_handler+0x8f> - 663512e4: 3d 08 00 00 c0 cmp $0xc0000008,%eax - 663512e9: 0f 84 05 01 00 00 je 663513f4 <__mingw_SEH_error_handler+0x124> - 663512ef: 0f 87 cb 00 00 00 ja 663513c0 <__mingw_SEH_error_handler+0xf0> - 663512f5: 3d 02 00 00 80 cmp $0x80000002,%eax - 663512fa: 0f 84 f4 00 00 00 je 663513f4 <__mingw_SEH_error_handler+0x124> - 66351300: 3d 05 00 00 c0 cmp $0xc0000005,%eax - 66351305: 0f 85 c3 00 00 00 jne 663513ce <__mingw_SEH_error_handler+0xfe> - 6635130b: 31 d2 xor %edx,%edx - 6635130d: b9 0b 00 00 00 mov $0xb,%ecx - 66351312: e8 39 0d 00 00 callq 66352050 - 66351317: 48 83 f8 01 cmp $0x1,%rax - 6635131b: 0f 84 2f 01 00 00 je 66351450 <__mingw_SEH_error_handler+0x180> - 66351321: 48 85 c0 test %rax,%rax - 66351324: 0f 84 3c 01 00 00 je 66351466 <__mingw_SEH_error_handler+0x196> - 6635132a: b9 0b 00 00 00 mov $0xb,%ecx - 6635132f: ff d0 callq *%rax - 66351331: 31 c0 xor %eax,%eax - 66351333: 48 83 c4 28 add $0x28,%rsp - 66351337: c3 retq - 66351338: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635133f: 00 - 66351340: 3d 94 00 00 c0 cmp $0xc0000094,%eax - 66351345: 0f 84 b5 00 00 00 je 66351400 <__mingw_SEH_error_handler+0x130> - 6635134b: 77 37 ja 66351384 <__mingw_SEH_error_handler+0xb4> - 6635134d: 3d 92 00 00 c0 cmp $0xc0000092,%eax - 66351352: 0f 84 9c 00 00 00 je 663513f4 <__mingw_SEH_error_handler+0x124> - 66351358: 3d 93 00 00 c0 cmp $0xc0000093,%eax - 6635135d: 75 6f jne 663513ce <__mingw_SEH_error_handler+0xfe> - 6635135f: 31 d2 xor %edx,%edx - 66351361: b9 08 00 00 00 mov $0x8,%ecx - 66351366: e8 e5 0c 00 00 callq 66352050 - 6635136b: 48 83 f8 01 cmp $0x1,%rax - 6635136f: 74 6f je 663513e0 <__mingw_SEH_error_handler+0x110> - 66351371: 48 85 c0 test %rax,%rax - 66351374: 74 58 je 663513ce <__mingw_SEH_error_handler+0xfe> - 66351376: b9 08 00 00 00 mov $0x8,%ecx - 6635137b: ff d0 callq *%rax - 6635137d: 31 c0 xor %eax,%eax - 6635137f: 48 83 c4 28 add $0x28,%rsp - 66351383: c3 retq - 66351384: 3d 95 00 00 c0 cmp $0xc0000095,%eax - 66351389: 74 69 je 663513f4 <__mingw_SEH_error_handler+0x124> - 6635138b: 3d 96 00 00 c0 cmp $0xc0000096,%eax - 66351390: 75 3c jne 663513ce <__mingw_SEH_error_handler+0xfe> - 66351392: 31 d2 xor %edx,%edx - 66351394: b9 04 00 00 00 mov $0x4,%ecx - 66351399: e8 b2 0c 00 00 callq 66352050 - 6635139e: 48 83 f8 01 cmp $0x1,%rax - 663513a2: 0f 84 88 00 00 00 je 66351430 <__mingw_SEH_error_handler+0x160> - 663513a8: 48 85 c0 test %rax,%rax - 663513ab: 0f 84 b5 00 00 00 je 66351466 <__mingw_SEH_error_handler+0x196> - 663513b1: b9 04 00 00 00 mov $0x4,%ecx - 663513b6: ff d0 callq *%rax - 663513b8: 31 c0 xor %eax,%eax - 663513ba: 48 83 c4 28 add $0x28,%rsp - 663513be: c3 retq - 663513bf: 90 nop - 663513c0: 3d 1d 00 00 c0 cmp $0xc000001d,%eax - 663513c5: 74 cb je 66351392 <__mingw_SEH_error_handler+0xc2> - 663513c7: 3d 8c 00 00 c0 cmp $0xc000008c,%eax - 663513cc: 74 26 je 663513f4 <__mingw_SEH_error_handler+0x124> - 663513ce: b8 01 00 00 00 mov $0x1,%eax - 663513d3: 48 83 c4 28 add $0x28,%rsp - 663513d7: c3 retq - 663513d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663513df: 00 - 663513e0: ba 01 00 00 00 mov $0x1,%edx - 663513e5: b9 08 00 00 00 mov $0x8,%ecx - 663513ea: e8 61 0c 00 00 callq 66352050 - 663513ef: e8 ac 09 00 00 callq 66351da0 <_fpreset> - 663513f4: 31 c0 xor %eax,%eax - 663513f6: 48 83 c4 28 add $0x28,%rsp - 663513fa: c3 retq - 663513fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351400: 31 d2 xor %edx,%edx - 66351402: b9 08 00 00 00 mov $0x8,%ecx - 66351407: e8 44 0c 00 00 callq 66352050 - 6635140c: 48 83 f8 01 cmp $0x1,%rax - 66351410: 0f 85 5b ff ff ff jne 66351371 <__mingw_SEH_error_handler+0xa1> - 66351416: ba 01 00 00 00 mov $0x1,%edx - 6635141b: b9 08 00 00 00 mov $0x8,%ecx - 66351420: e8 2b 0c 00 00 callq 66352050 - 66351425: 31 c0 xor %eax,%eax - 66351427: e9 07 ff ff ff jmpq 66351333 <__mingw_SEH_error_handler+0x63> - 6635142c: 0f 1f 40 00 nopl 0x0(%rax) - 66351430: ba 01 00 00 00 mov $0x1,%edx - 66351435: b9 04 00 00 00 mov $0x4,%ecx - 6635143a: e8 11 0c 00 00 callq 66352050 - 6635143f: 31 c0 xor %eax,%eax - 66351441: e9 ed fe ff ff jmpq 66351333 <__mingw_SEH_error_handler+0x63> - 66351446: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6635144d: 00 00 00 - 66351450: ba 01 00 00 00 mov $0x1,%edx - 66351455: b9 0b 00 00 00 mov $0xb,%ecx - 6635145a: e8 f1 0b 00 00 callq 66352050 - 6635145f: 31 c0 xor %eax,%eax - 66351461: e9 cd fe ff ff jmpq 66351333 <__mingw_SEH_error_handler+0x63> - 66351466: b8 04 00 00 00 mov $0x4,%eax - 6635146b: e9 c3 fe ff ff jmpq 66351333 <__mingw_SEH_error_handler+0x63> +00000000663512d0 <_pei386_runtime_relocator>: + 663512d0: 55 push %rbp + 663512d1: 41 57 push %r15 + 663512d3: 41 56 push %r14 + 663512d5: 41 55 push %r13 + 663512d7: 41 54 push %r12 + 663512d9: 57 push %rdi + 663512da: 56 push %rsi + 663512db: 53 push %rbx + 663512dc: 48 83 ec 38 sub $0x38,%rsp + 663512e0: 48 8d ac 24 80 00 00 lea 0x80(%rsp),%rbp + 663512e7: 00 + 663512e8: 8b 1d f2 62 00 00 mov 0x62f2(%rip),%ebx # 663575e0 + 663512ee: 85 db test %ebx,%ebx + 663512f0: 74 11 je 66351303 <_pei386_runtime_relocator+0x33> + 663512f2: 48 8d 65 b8 lea -0x48(%rbp),%rsp + 663512f6: 5b pop %rbx + 663512f7: 5e pop %rsi + 663512f8: 5f pop %rdi + 663512f9: 41 5c pop %r12 + 663512fb: 41 5d pop %r13 + 663512fd: 41 5e pop %r14 + 663512ff: 41 5f pop %r15 + 66351301: 5d pop %rbp + 66351302: c3 retq + 66351303: c7 05 d3 62 00 00 01 movl $0x1,0x62d3(%rip) # 663575e0 + 6635130a: 00 00 00 + 6635130d: e8 0e 0b 00 00 callq 66351e20 <__mingw_GetSectionCount> + 66351312: 48 98 cltq + 66351314: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66351318: 48 8d 04 c5 1e 00 00 lea 0x1e(,%rax,8),%rax + 6635131f: 00 + 66351320: 48 83 e0 f0 and $0xfffffffffffffff0,%rax + 66351324: e8 47 0d 00 00 callq 66352070 <___chkstk_ms> + 66351329: 4c 8b 25 90 2f 00 00 mov 0x2f90(%rip),%r12 # 663542c0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST_END__> + 66351330: c7 05 aa 62 00 00 00 movl $0x0,0x62aa(%rip) # 663575e4 + 66351337: 00 00 00 + 6635133a: 48 8b 35 8f 2f 00 00 mov 0x2f8f(%rip),%rsi # 663542d0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST__> + 66351341: 48 29 c4 sub %rax,%rsp + 66351344: 48 8d 44 24 20 lea 0x20(%rsp),%rax + 66351349: 48 89 05 98 62 00 00 mov %rax,0x6298(%rip) # 663575e8 + 66351350: 4c 89 e0 mov %r12,%rax + 66351353: 48 29 f0 sub %rsi,%rax + 66351356: 48 83 f8 07 cmp $0x7,%rax + 6635135a: 7e 96 jle 663512f2 <_pei386_runtime_relocator+0x22> + 6635135c: 48 83 f8 0b cmp $0xb,%rax + 66351360: 8b 16 mov (%rsi),%edx + 66351362: 0f 8e c8 00 00 00 jle 66351430 <_pei386_runtime_relocator+0x160> + 66351368: 85 d2 test %edx,%edx + 6635136a: 0f 84 a4 00 00 00 je 66351414 <_pei386_runtime_relocator+0x144> + 66351370: 4c 39 e6 cmp %r12,%rsi + 66351373: 0f 83 79 ff ff ff jae 663512f2 <_pei386_runtime_relocator+0x22> + 66351379: 4c 8d 76 08 lea 0x8(%rsi),%r14 + 6635137d: 49 83 c4 07 add $0x7,%r12 + 66351381: 4c 8b 2d 68 2f 00 00 mov 0x2f68(%rip),%r13 # 663542f0 <.refptr.__image_base__> + 66351388: 48 8d 7d a8 lea -0x58(%rbp),%rdi + 6635138c: 4d 29 f4 sub %r14,%r12 + 6635138f: 49 c1 ec 03 shr $0x3,%r12 + 66351393: 4e 8d 64 e6 08 lea 0x8(%rsi,%r12,8),%r12 + 66351398: eb 0a jmp 663513a4 <_pei386_runtime_relocator+0xd4> + 6635139a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663513a0: 49 83 c6 08 add $0x8,%r14 + 663513a4: 8b 4e 04 mov 0x4(%rsi),%ecx + 663513a7: 41 b8 04 00 00 00 mov $0x4,%r8d + 663513ad: 48 89 fa mov %rdi,%rdx + 663513b0: 8b 06 mov (%rsi),%eax + 663513b2: 4c 89 f6 mov %r14,%rsi + 663513b5: 4c 01 e9 add %r13,%rcx + 663513b8: 03 01 add (%rcx),%eax + 663513ba: 89 45 a8 mov %eax,-0x58(%rbp) + 663513bd: e8 3e fd ff ff callq 66351100 <__write_memory.part.0> + 663513c2: 4d 39 e6 cmp %r12,%r14 + 663513c5: 75 d9 jne 663513a0 <_pei386_runtime_relocator+0xd0> + 663513c7: 8b 05 17 62 00 00 mov 0x6217(%rip),%eax # 663575e4 + 663513cd: 31 f6 xor %esi,%esi + 663513cf: 4c 8b 25 9a 7e 00 00 mov 0x7e9a(%rip),%r12 # 66359270 <__imp_VirtualProtect> + 663513d6: 85 c0 test %eax,%eax + 663513d8: 0f 8e 14 ff ff ff jle 663512f2 <_pei386_runtime_relocator+0x22> + 663513de: 66 90 xchg %ax,%ax + 663513e0: 48 8b 05 01 62 00 00 mov 0x6201(%rip),%rax # 663575e8 + 663513e7: 48 01 f0 add %rsi,%rax + 663513ea: 44 8b 00 mov (%rax),%r8d + 663513ed: 45 85 c0 test %r8d,%r8d + 663513f0: 74 0e je 66351400 <_pei386_runtime_relocator+0x130> + 663513f2: 48 8b 50 10 mov 0x10(%rax),%rdx + 663513f6: 49 89 f9 mov %rdi,%r9 + 663513f9: 48 8b 48 08 mov 0x8(%rax),%rcx + 663513fd: 41 ff d4 callq *%r12 + 66351400: 83 c3 01 add $0x1,%ebx + 66351403: 48 83 c6 28 add $0x28,%rsi + 66351407: 3b 1d d7 61 00 00 cmp 0x61d7(%rip),%ebx # 663575e4 + 6635140d: 7c d1 jl 663513e0 <_pei386_runtime_relocator+0x110> + 6635140f: e9 de fe ff ff jmpq 663512f2 <_pei386_runtime_relocator+0x22> + 66351414: 8b 4e 04 mov 0x4(%rsi),%ecx + 66351417: 85 c9 test %ecx,%ecx + 66351419: 0f 85 51 ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> + 6635141f: 8b 56 08 mov 0x8(%rsi),%edx + 66351422: 85 d2 test %edx,%edx + 66351424: 75 1d jne 66351443 <_pei386_runtime_relocator+0x173> + 66351426: 8b 56 0c mov 0xc(%rsi),%edx + 66351429: 48 83 c6 0c add $0xc,%rsi + 6635142d: 0f 1f 00 nopl (%rax) + 66351430: 85 d2 test %edx,%edx + 66351432: 0f 85 38 ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> + 66351438: 8b 46 04 mov 0x4(%rsi),%eax + 6635143b: 85 c0 test %eax,%eax + 6635143d: 0f 85 2d ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> + 66351443: 8b 56 08 mov 0x8(%rsi),%edx + 66351446: 83 fa 01 cmp $0x1,%edx + 66351449: 0f 85 2f 01 00 00 jne 6635157e <_pei386_runtime_relocator+0x2ae> + 6635144f: 4c 8b 2d 9a 2e 00 00 mov 0x2e9a(%rip),%r13 # 663542f0 <.refptr.__image_base__> + 66351456: 48 83 c6 0c add $0xc,%rsi + 6635145a: 49 bf 00 00 00 00 ff movabs $0xffffffff00000000,%r15 + 66351461: ff ff ff + 66351464: 4c 8d 75 a8 lea -0x58(%rbp),%r14 + 66351468: 4c 39 e6 cmp %r12,%rsi + 6635146b: 72 48 jb 663514b5 <_pei386_runtime_relocator+0x1e5> + 6635146d: e9 80 fe ff ff jmpq 663512f2 <_pei386_runtime_relocator+0x22> + 66351472: 0f 86 b8 00 00 00 jbe 66351530 <_pei386_runtime_relocator+0x260> + 66351478: 83 fa 20 cmp $0x20,%edx + 6635147b: 0f 84 7f 00 00 00 je 66351500 <_pei386_runtime_relocator+0x230> + 66351481: 83 fa 40 cmp $0x40,%edx + 66351484: 0f 85 e0 00 00 00 jne 6635156a <_pei386_runtime_relocator+0x29a> + 6635148a: 48 8b 11 mov (%rcx),%rdx + 6635148d: 41 b8 08 00 00 00 mov $0x8,%r8d + 66351493: 4c 89 f7 mov %r14,%rdi + 66351496: 48 29 c2 sub %rax,%rdx + 66351499: 4c 01 ca add %r9,%rdx + 6635149c: 48 89 55 a8 mov %rdx,-0x58(%rbp) + 663514a0: 4c 89 f2 mov %r14,%rdx + 663514a3: e8 58 fc ff ff callq 66351100 <__write_memory.part.0> + 663514a8: 48 83 c6 0c add $0xc,%rsi + 663514ac: 4c 39 e6 cmp %r12,%rsi + 663514af: 0f 83 12 ff ff ff jae 663513c7 <_pei386_runtime_relocator+0xf7> + 663514b5: 8b 4e 04 mov 0x4(%rsi),%ecx + 663514b8: 8b 06 mov (%rsi),%eax + 663514ba: 0f b6 56 08 movzbl 0x8(%rsi),%edx + 663514be: 4c 01 e9 add %r13,%rcx + 663514c1: 4c 01 e8 add %r13,%rax + 663514c4: 83 fa 10 cmp $0x10,%edx + 663514c7: 4c 8b 08 mov (%rax),%r9 + 663514ca: 75 a6 jne 66351472 <_pei386_runtime_relocator+0x1a2> + 663514cc: 44 0f b7 01 movzwl (%rcx),%r8d + 663514d0: 4c 89 f2 mov %r14,%rdx + 663514d3: 4c 89 f7 mov %r14,%rdi + 663514d6: 4d 89 c2 mov %r8,%r10 + 663514d9: 49 81 ca 00 00 ff ff or $0xffffffffffff0000,%r10 + 663514e0: 66 45 85 c0 test %r8w,%r8w + 663514e4: 4d 0f 48 c2 cmovs %r10,%r8 + 663514e8: 49 29 c0 sub %rax,%r8 + 663514eb: 4d 01 c8 add %r9,%r8 + 663514ee: 4c 89 45 a8 mov %r8,-0x58(%rbp) + 663514f2: 41 b8 02 00 00 00 mov $0x2,%r8d + 663514f8: e8 03 fc ff ff callq 66351100 <__write_memory.part.0> + 663514fd: eb a9 jmp 663514a8 <_pei386_runtime_relocator+0x1d8> + 663514ff: 90 nop + 66351500: 8b 11 mov (%rcx),%edx + 66351502: 4c 89 f7 mov %r14,%rdi + 66351505: 49 89 d0 mov %rdx,%r8 + 66351508: 4c 09 fa or %r15,%rdx + 6635150b: 45 85 c0 test %r8d,%r8d + 6635150e: 49 0f 49 d0 cmovns %r8,%rdx + 66351512: 41 b8 04 00 00 00 mov $0x4,%r8d + 66351518: 48 29 c2 sub %rax,%rdx + 6635151b: 4c 01 ca add %r9,%rdx + 6635151e: 48 89 55 a8 mov %rdx,-0x58(%rbp) + 66351522: 4c 89 f2 mov %r14,%rdx + 66351525: e8 d6 fb ff ff callq 66351100 <__write_memory.part.0> + 6635152a: e9 79 ff ff ff jmpq 663514a8 <_pei386_runtime_relocator+0x1d8> + 6635152f: 90 nop + 66351530: 83 fa 08 cmp $0x8,%edx + 66351533: 75 35 jne 6635156a <_pei386_runtime_relocator+0x29a> + 66351535: 44 0f b6 01 movzbl (%rcx),%r8d + 66351539: 4c 89 f2 mov %r14,%rdx + 6635153c: 4c 89 f7 mov %r14,%rdi + 6635153f: 4d 89 c2 mov %r8,%r10 + 66351542: 49 81 ca 00 ff ff ff or $0xffffffffffffff00,%r10 + 66351549: 45 84 c0 test %r8b,%r8b + 6635154c: 4d 0f 48 c2 cmovs %r10,%r8 + 66351550: 49 29 c0 sub %rax,%r8 + 66351553: 4d 01 c8 add %r9,%r8 + 66351556: 4c 89 45 a8 mov %r8,-0x58(%rbp) + 6635155a: 41 b8 01 00 00 00 mov $0x1,%r8d + 66351560: e8 9b fb ff ff callq 66351100 <__write_memory.part.0> + 66351565: e9 3e ff ff ff jmpq 663514a8 <_pei386_runtime_relocator+0x1d8> + 6635156a: 48 8d 0d 07 2c 00 00 lea 0x2c07(%rip),%rcx # 66354178 <.rdata+0xd8> + 66351571: 48 c7 45 a8 00 00 00 movq $0x0,-0x58(%rbp) + 66351578: 00 + 66351579: e8 72 10 00 00 callq 663525f0 <__report_error> + 6635157e: 48 8d 0d bb 2b 00 00 lea 0x2bbb(%rip),%rcx # 66354140 <.rdata+0xa0> + 66351585: e8 66 10 00 00 callq 663525f0 <__report_error> + 6635158a: 90 nop + 6635158b: 90 nop + 6635158c: 90 nop + 6635158d: 90 nop + 6635158e: 90 nop + 6635158f: 90 nop -0000000066351470 <__mingw_init_ehandler>: - 66351470: 41 54 push %r12 - 66351472: 55 push %rbp - 66351473: 57 push %rdi - 66351474: 56 push %rsi - 66351475: 53 push %rbx - 66351476: 48 83 ec 20 sub $0x20,%rsp - 6635147a: e8 91 07 00 00 callq 66351c10 <_GetPEImageBase> - 6635147f: 48 89 c5 mov %rax,%rbp - 66351482: 8b 05 80 61 00 00 mov 0x6180(%rip),%eax # 66357608 - 66351488: 85 c0 test %eax,%eax - 6635148a: 75 25 jne 663514b1 <__mingw_init_ehandler+0x41> - 6635148c: 48 85 ed test %rbp,%rbp - 6635148f: 74 20 je 663514b1 <__mingw_init_ehandler+0x41> - 66351491: 48 8d 0d 18 2d 00 00 lea 0x2d18(%rip),%rcx # 663541b0 <.rdata> - 66351498: c7 05 66 61 00 00 01 movl $0x1,0x6166(%rip) # 66357608 - 6635149f: 00 00 00 - 663514a2: e8 a9 05 00 00 callq 66351a50 <_FindPESectionByName> - 663514a7: 48 85 c0 test %rax,%rax - 663514aa: 74 14 je 663514c0 <__mingw_init_ehandler+0x50> - 663514ac: b8 01 00 00 00 mov $0x1,%eax - 663514b1: 48 83 c4 20 add $0x20,%rsp - 663514b5: 5b pop %rbx - 663514b6: 5e pop %rsi - 663514b7: 5f pop %rdi - 663514b8: 5d pop %rbp - 663514b9: 41 5c pop %r12 - 663514bb: c3 retq - 663514bc: 0f 1f 40 00 nopl 0x0(%rax) - 663514c0: 48 8d 1d 59 62 00 00 lea 0x6259(%rip),%rbx # 66357720 - 663514c7: b9 30 00 00 00 mov $0x30,%ecx - 663514cc: 31 f6 xor %esi,%esi - 663514ce: 48 8d 15 4b 61 00 00 lea 0x614b(%rip),%rdx # 66357620 - 663514d5: 48 89 df mov %rbx,%rdi - 663514d8: f3 48 ab rep stos %rax,%es:(%rdi) - 663514db: 4c 8d 25 ee fd ff ff lea -0x212(%rip),%r12 # 663512d0 <__mingw_SEH_error_handler> - 663514e2: b9 20 00 00 00 mov $0x20,%ecx - 663514e7: 48 89 d7 mov %rdx,%rdi - 663514ea: f3 48 ab rep stos %rax,%es:(%rdi) - 663514ed: 49 29 ec sub %rbp,%r12 - 663514f0: 48 89 d7 mov %rdx,%rdi - 663514f3: eb 2e jmp 66351523 <__mingw_init_ehandler+0xb3> - 663514f5: c6 07 09 movb $0x9,(%rdi) - 663514f8: 48 83 c6 01 add $0x1,%rsi - 663514fc: 48 83 c3 0c add $0xc,%rbx - 66351500: 44 89 67 04 mov %r12d,0x4(%rdi) - 66351504: 8b 48 0c mov 0xc(%rax),%ecx - 66351507: 89 4b f4 mov %ecx,-0xc(%rbx) - 6635150a: 03 48 08 add 0x8(%rax),%ecx - 6635150d: 48 89 f8 mov %rdi,%rax - 66351510: 48 83 c7 08 add $0x8,%rdi - 66351514: 48 29 e8 sub %rbp,%rax - 66351517: 89 43 fc mov %eax,-0x4(%rbx) - 6635151a: 89 4b f8 mov %ecx,-0x8(%rbx) - 6635151d: 48 83 fe 20 cmp $0x20,%rsi - 66351521: 74 32 je 66351555 <__mingw_init_ehandler+0xe5> - 66351523: 48 89 f1 mov %rsi,%rcx - 66351526: e8 75 06 00 00 callq 66351ba0 <_FindPESectionExec> - 6635152b: 48 85 c0 test %rax,%rax - 6635152e: 75 c5 jne 663514f5 <__mingw_init_ehandler+0x85> - 66351530: 48 85 f6 test %rsi,%rsi - 66351533: 89 f2 mov %esi,%edx - 66351535: 0f 84 71 ff ff ff je 663514ac <__mingw_init_ehandler+0x3c> - 6635153b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351540: 48 8d 0d d9 61 00 00 lea 0x61d9(%rip),%rcx # 66357720 - 66351547: 49 89 e8 mov %rbp,%r8 - 6635154a: ff 15 d8 7c 00 00 callq *0x7cd8(%rip) # 66359228 <__imp_RtlAddFunctionTable> - 66351550: e9 57 ff ff ff jmpq 663514ac <__mingw_init_ehandler+0x3c> - 66351555: ba 20 00 00 00 mov $0x20,%edx - 6635155a: eb e4 jmp 66351540 <__mingw_init_ehandler+0xd0> - 6635155c: 0f 1f 40 00 nopl 0x0(%rax) +0000000066351590 <__mingw_SEH_error_handler>: + 66351590: 48 83 ec 28 sub $0x28,%rsp + 66351594: 8b 01 mov (%rcx),%eax + 66351596: 3d 91 00 00 c0 cmp $0xc0000091,%eax + 6635159b: 77 63 ja 66351600 <__mingw_SEH_error_handler+0x70> + 6635159d: 3d 8d 00 00 c0 cmp $0xc000008d,%eax + 663515a2: 73 7b jae 6635161f <__mingw_SEH_error_handler+0x8f> + 663515a4: 3d 08 00 00 c0 cmp $0xc0000008,%eax + 663515a9: 0f 84 05 01 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> + 663515af: 0f 87 cb 00 00 00 ja 66351680 <__mingw_SEH_error_handler+0xf0> + 663515b5: 3d 02 00 00 80 cmp $0x80000002,%eax + 663515ba: 0f 84 f4 00 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> + 663515c0: 3d 05 00 00 c0 cmp $0xc0000005,%eax + 663515c5: 0f 85 c3 00 00 00 jne 6635168e <__mingw_SEH_error_handler+0xfe> + 663515cb: 31 d2 xor %edx,%edx + 663515cd: b9 0b 00 00 00 mov $0xb,%ecx + 663515d2: e8 39 0d 00 00 callq 66352310 + 663515d7: 48 83 f8 01 cmp $0x1,%rax + 663515db: 0f 84 2f 01 00 00 je 66351710 <__mingw_SEH_error_handler+0x180> + 663515e1: 48 85 c0 test %rax,%rax + 663515e4: 0f 84 3c 01 00 00 je 66351726 <__mingw_SEH_error_handler+0x196> + 663515ea: b9 0b 00 00 00 mov $0xb,%ecx + 663515ef: ff d0 callq *%rax + 663515f1: 31 c0 xor %eax,%eax + 663515f3: 48 83 c4 28 add $0x28,%rsp + 663515f7: c3 retq + 663515f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663515ff: 00 + 66351600: 3d 94 00 00 c0 cmp $0xc0000094,%eax + 66351605: 0f 84 b5 00 00 00 je 663516c0 <__mingw_SEH_error_handler+0x130> + 6635160b: 77 37 ja 66351644 <__mingw_SEH_error_handler+0xb4> + 6635160d: 3d 92 00 00 c0 cmp $0xc0000092,%eax + 66351612: 0f 84 9c 00 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> + 66351618: 3d 93 00 00 c0 cmp $0xc0000093,%eax + 6635161d: 75 6f jne 6635168e <__mingw_SEH_error_handler+0xfe> + 6635161f: 31 d2 xor %edx,%edx + 66351621: b9 08 00 00 00 mov $0x8,%ecx + 66351626: e8 e5 0c 00 00 callq 66352310 + 6635162b: 48 83 f8 01 cmp $0x1,%rax + 6635162f: 74 6f je 663516a0 <__mingw_SEH_error_handler+0x110> + 66351631: 48 85 c0 test %rax,%rax + 66351634: 74 58 je 6635168e <__mingw_SEH_error_handler+0xfe> + 66351636: b9 08 00 00 00 mov $0x8,%ecx + 6635163b: ff d0 callq *%rax + 6635163d: 31 c0 xor %eax,%eax + 6635163f: 48 83 c4 28 add $0x28,%rsp + 66351643: c3 retq + 66351644: 3d 95 00 00 c0 cmp $0xc0000095,%eax + 66351649: 74 69 je 663516b4 <__mingw_SEH_error_handler+0x124> + 6635164b: 3d 96 00 00 c0 cmp $0xc0000096,%eax + 66351650: 75 3c jne 6635168e <__mingw_SEH_error_handler+0xfe> + 66351652: 31 d2 xor %edx,%edx + 66351654: b9 04 00 00 00 mov $0x4,%ecx + 66351659: e8 b2 0c 00 00 callq 66352310 + 6635165e: 48 83 f8 01 cmp $0x1,%rax + 66351662: 0f 84 88 00 00 00 je 663516f0 <__mingw_SEH_error_handler+0x160> + 66351668: 48 85 c0 test %rax,%rax + 6635166b: 0f 84 b5 00 00 00 je 66351726 <__mingw_SEH_error_handler+0x196> + 66351671: b9 04 00 00 00 mov $0x4,%ecx + 66351676: ff d0 callq *%rax + 66351678: 31 c0 xor %eax,%eax + 6635167a: 48 83 c4 28 add $0x28,%rsp + 6635167e: c3 retq + 6635167f: 90 nop + 66351680: 3d 1d 00 00 c0 cmp $0xc000001d,%eax + 66351685: 74 cb je 66351652 <__mingw_SEH_error_handler+0xc2> + 66351687: 3d 8c 00 00 c0 cmp $0xc000008c,%eax + 6635168c: 74 26 je 663516b4 <__mingw_SEH_error_handler+0x124> + 6635168e: b8 01 00 00 00 mov $0x1,%eax + 66351693: 48 83 c4 28 add $0x28,%rsp + 66351697: c3 retq + 66351698: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635169f: 00 + 663516a0: ba 01 00 00 00 mov $0x1,%edx + 663516a5: b9 08 00 00 00 mov $0x8,%ecx + 663516aa: e8 61 0c 00 00 callq 66352310 + 663516af: e8 ac 09 00 00 callq 66352060 <_fpreset> + 663516b4: 31 c0 xor %eax,%eax + 663516b6: 48 83 c4 28 add $0x28,%rsp + 663516ba: c3 retq + 663516bb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663516c0: 31 d2 xor %edx,%edx + 663516c2: b9 08 00 00 00 mov $0x8,%ecx + 663516c7: e8 44 0c 00 00 callq 66352310 + 663516cc: 48 83 f8 01 cmp $0x1,%rax + 663516d0: 0f 85 5b ff ff ff jne 66351631 <__mingw_SEH_error_handler+0xa1> + 663516d6: ba 01 00 00 00 mov $0x1,%edx + 663516db: b9 08 00 00 00 mov $0x8,%ecx + 663516e0: e8 2b 0c 00 00 callq 66352310 + 663516e5: 31 c0 xor %eax,%eax + 663516e7: e9 07 ff ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> + 663516ec: 0f 1f 40 00 nopl 0x0(%rax) + 663516f0: ba 01 00 00 00 mov $0x1,%edx + 663516f5: b9 04 00 00 00 mov $0x4,%ecx + 663516fa: e8 11 0c 00 00 callq 66352310 + 663516ff: 31 c0 xor %eax,%eax + 66351701: e9 ed fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> + 66351706: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6635170d: 00 00 00 + 66351710: ba 01 00 00 00 mov $0x1,%edx + 66351715: b9 0b 00 00 00 mov $0xb,%ecx + 6635171a: e8 f1 0b 00 00 callq 66352310 + 6635171f: 31 c0 xor %eax,%eax + 66351721: e9 cd fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> + 66351726: b8 04 00 00 00 mov $0x4,%eax + 6635172b: e9 c3 fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> -0000000066351560 <_gnu_exception_handler>: - 66351560: 53 push %rbx - 66351561: 48 83 ec 20 sub $0x20,%rsp - 66351565: 48 8b 11 mov (%rcx),%rdx - 66351568: 8b 02 mov (%rdx),%eax - 6635156a: 48 89 cb mov %rcx,%rbx - 6635156d: 89 c1 mov %eax,%ecx - 6635156f: 81 e1 ff ff ff 20 and $0x20ffffff,%ecx - 66351575: 81 f9 43 43 47 20 cmp $0x20474343,%ecx - 6635157b: 0f 84 bf 00 00 00 je 66351640 <_gnu_exception_handler+0xe0> - 66351581: 3d 91 00 00 c0 cmp $0xc0000091,%eax - 66351586: 77 68 ja 663515f0 <_gnu_exception_handler+0x90> - 66351588: 3d 8d 00 00 c0 cmp $0xc000008d,%eax - 6635158d: 73 7c jae 6635160b <_gnu_exception_handler+0xab> - 6635158f: 3d 08 00 00 c0 cmp $0xc0000008,%eax - 66351594: 0f 84 b0 00 00 00 je 6635164a <_gnu_exception_handler+0xea> - 6635159a: 0f 87 f4 00 00 00 ja 66351694 <_gnu_exception_handler+0x134> - 663515a0: 3d 02 00 00 80 cmp $0x80000002,%eax - 663515a5: 0f 84 9f 00 00 00 je 6635164a <_gnu_exception_handler+0xea> - 663515ab: 3d 05 00 00 c0 cmp $0xc0000005,%eax - 663515b0: 75 1f jne 663515d1 <_gnu_exception_handler+0x71> - 663515b2: 31 d2 xor %edx,%edx - 663515b4: b9 0b 00 00 00 mov $0xb,%ecx - 663515b9: e8 92 0a 00 00 callq 66352050 - 663515be: 48 83 f8 01 cmp $0x1,%rax - 663515c2: 0f 84 51 01 00 00 je 66351719 <_gnu_exception_handler+0x1b9> - 663515c8: 48 85 c0 test %rax,%rax - 663515cb: 0f 85 0f 01 00 00 jne 663516e0 <_gnu_exception_handler+0x180> - 663515d1: 48 8b 05 28 60 00 00 mov 0x6028(%rip),%rax # 66357600 <__mingw_oldexcpt_handler> - 663515d8: 48 85 c0 test %rax,%rax - 663515db: 0f 84 10 01 00 00 je 663516f1 <_gnu_exception_handler+0x191> - 663515e1: 48 89 d9 mov %rbx,%rcx - 663515e4: 48 83 c4 20 add $0x20,%rsp - 663515e8: 5b pop %rbx - 663515e9: 48 ff e0 rex.W jmpq *%rax - 663515ec: 0f 1f 40 00 nopl 0x0(%rax) - 663515f0: 3d 94 00 00 c0 cmp $0xc0000094,%eax - 663515f5: 0f 84 b5 00 00 00 je 663516b0 <_gnu_exception_handler+0x150> - 663515fb: 77 58 ja 66351655 <_gnu_exception_handler+0xf5> - 663515fd: 3d 92 00 00 c0 cmp $0xc0000092,%eax - 66351602: 74 46 je 6635164a <_gnu_exception_handler+0xea> - 66351604: 3d 93 00 00 c0 cmp $0xc0000093,%eax - 66351609: 75 c6 jne 663515d1 <_gnu_exception_handler+0x71> - 6635160b: 31 d2 xor %edx,%edx - 6635160d: b9 08 00 00 00 mov $0x8,%ecx - 66351612: e8 39 0a 00 00 callq 66352050 - 66351617: 48 83 f8 01 cmp $0x1,%rax - 6635161b: 0f 84 df 00 00 00 je 66351700 <_gnu_exception_handler+0x1a0> - 66351621: 48 85 c0 test %rax,%rax - 66351624: 74 ab je 663515d1 <_gnu_exception_handler+0x71> - 66351626: b9 08 00 00 00 mov $0x8,%ecx - 6635162b: ff d0 callq *%rax - 6635162d: b8 ff ff ff ff mov $0xffffffff,%eax - 66351632: 48 83 c4 20 add $0x20,%rsp - 66351636: 5b pop %rbx - 66351637: c3 retq - 66351638: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635163f: 00 - 66351640: f6 42 04 01 testb $0x1,0x4(%rdx) - 66351644: 0f 85 37 ff ff ff jne 66351581 <_gnu_exception_handler+0x21> - 6635164a: b8 ff ff ff ff mov $0xffffffff,%eax - 6635164f: 48 83 c4 20 add $0x20,%rsp - 66351653: 5b pop %rbx - 66351654: c3 retq - 66351655: 3d 95 00 00 c0 cmp $0xc0000095,%eax - 6635165a: 74 ee je 6635164a <_gnu_exception_handler+0xea> - 6635165c: 3d 96 00 00 c0 cmp $0xc0000096,%eax - 66351661: 0f 85 6a ff ff ff jne 663515d1 <_gnu_exception_handler+0x71> - 66351667: 31 d2 xor %edx,%edx - 66351669: b9 04 00 00 00 mov $0x4,%ecx - 6635166e: e8 dd 09 00 00 callq 66352050 - 66351673: 48 83 f8 01 cmp $0x1,%rax - 66351677: 0f 84 b3 00 00 00 je 66351730 <_gnu_exception_handler+0x1d0> - 6635167d: 48 85 c0 test %rax,%rax - 66351680: 0f 84 4b ff ff ff je 663515d1 <_gnu_exception_handler+0x71> - 66351686: b9 04 00 00 00 mov $0x4,%ecx - 6635168b: ff d0 callq *%rax - 6635168d: b8 ff ff ff ff mov $0xffffffff,%eax - 66351692: eb 9e jmp 66351632 <_gnu_exception_handler+0xd2> - 66351694: 3d 1d 00 00 c0 cmp $0xc000001d,%eax - 66351699: 74 cc je 66351667 <_gnu_exception_handler+0x107> - 6635169b: 3d 8c 00 00 c0 cmp $0xc000008c,%eax - 663516a0: 0f 85 2b ff ff ff jne 663515d1 <_gnu_exception_handler+0x71> - 663516a6: eb a2 jmp 6635164a <_gnu_exception_handler+0xea> - 663516a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663516af: 00 - 663516b0: 31 d2 xor %edx,%edx - 663516b2: b9 08 00 00 00 mov $0x8,%ecx - 663516b7: e8 94 09 00 00 callq 66352050 - 663516bc: 48 83 f8 01 cmp $0x1,%rax - 663516c0: 0f 85 5b ff ff ff jne 66351621 <_gnu_exception_handler+0xc1> - 663516c6: ba 01 00 00 00 mov $0x1,%edx - 663516cb: b9 08 00 00 00 mov $0x8,%ecx - 663516d0: e8 7b 09 00 00 callq 66352050 - 663516d5: b8 ff ff ff ff mov $0xffffffff,%eax - 663516da: e9 53 ff ff ff jmpq 66351632 <_gnu_exception_handler+0xd2> - 663516df: 90 nop - 663516e0: b9 0b 00 00 00 mov $0xb,%ecx - 663516e5: ff d0 callq *%rax - 663516e7: b8 ff ff ff ff mov $0xffffffff,%eax - 663516ec: e9 41 ff ff ff jmpq 66351632 <_gnu_exception_handler+0xd2> - 663516f1: 31 c0 xor %eax,%eax - 663516f3: e9 3a ff ff ff jmpq 66351632 <_gnu_exception_handler+0xd2> - 663516f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663516ff: 00 - 66351700: ba 01 00 00 00 mov $0x1,%edx - 66351705: b9 08 00 00 00 mov $0x8,%ecx - 6635170a: e8 41 09 00 00 callq 66352050 - 6635170f: e8 8c 06 00 00 callq 66351da0 <_fpreset> - 66351714: e9 31 ff ff ff jmpq 6635164a <_gnu_exception_handler+0xea> - 66351719: ba 01 00 00 00 mov $0x1,%edx - 6635171e: b9 0b 00 00 00 mov $0xb,%ecx - 66351723: e8 28 09 00 00 callq 66352050 - 66351728: 83 c8 ff or $0xffffffff,%eax - 6635172b: e9 02 ff ff ff jmpq 66351632 <_gnu_exception_handler+0xd2> - 66351730: ba 01 00 00 00 mov $0x1,%edx - 66351735: b9 04 00 00 00 mov $0x4,%ecx - 6635173a: e8 11 09 00 00 callq 66352050 - 6635173f: 83 c8 ff or $0xffffffff,%eax - 66351742: e9 eb fe ff ff jmpq 66351632 <_gnu_exception_handler+0xd2> - 66351747: 90 nop - 66351748: 90 nop - 66351749: 90 nop - 6635174a: 90 nop - 6635174b: 90 nop - 6635174c: 90 nop - 6635174d: 90 nop - 6635174e: 90 nop - 6635174f: 90 nop +0000000066351730 <__mingw_init_ehandler>: + 66351730: 41 54 push %r12 + 66351732: 55 push %rbp + 66351733: 57 push %rdi + 66351734: 56 push %rsi + 66351735: 53 push %rbx + 66351736: 48 83 ec 20 sub $0x20,%rsp + 6635173a: e8 91 07 00 00 callq 66351ed0 <_GetPEImageBase> + 6635173f: 48 89 c5 mov %rax,%rbp + 66351742: 8b 05 c0 5e 00 00 mov 0x5ec0(%rip),%eax # 66357608 + 66351748: 85 c0 test %eax,%eax + 6635174a: 75 25 jne 66351771 <__mingw_init_ehandler+0x41> + 6635174c: 48 85 ed test %rbp,%rbp + 6635174f: 74 20 je 66351771 <__mingw_init_ehandler+0x41> + 66351751: 48 8d 0d 58 2a 00 00 lea 0x2a58(%rip),%rcx # 663541b0 <.rdata> + 66351758: c7 05 a6 5e 00 00 01 movl $0x1,0x5ea6(%rip) # 66357608 + 6635175f: 00 00 00 + 66351762: e8 a9 05 00 00 callq 66351d10 <_FindPESectionByName> + 66351767: 48 85 c0 test %rax,%rax + 6635176a: 74 14 je 66351780 <__mingw_init_ehandler+0x50> + 6635176c: b8 01 00 00 00 mov $0x1,%eax + 66351771: 48 83 c4 20 add $0x20,%rsp + 66351775: 5b pop %rbx + 66351776: 5e pop %rsi + 66351777: 5f pop %rdi + 66351778: 5d pop %rbp + 66351779: 41 5c pop %r12 + 6635177b: c3 retq + 6635177c: 0f 1f 40 00 nopl 0x0(%rax) + 66351780: 48 8d 1d 99 5f 00 00 lea 0x5f99(%rip),%rbx # 66357720 + 66351787: b9 30 00 00 00 mov $0x30,%ecx + 6635178c: 31 f6 xor %esi,%esi + 6635178e: 48 8d 15 8b 5e 00 00 lea 0x5e8b(%rip),%rdx # 66357620 + 66351795: 48 89 df mov %rbx,%rdi + 66351798: f3 48 ab rep stos %rax,%es:(%rdi) + 6635179b: 4c 8d 25 ee fd ff ff lea -0x212(%rip),%r12 # 66351590 <__mingw_SEH_error_handler> + 663517a2: b9 20 00 00 00 mov $0x20,%ecx + 663517a7: 48 89 d7 mov %rdx,%rdi + 663517aa: f3 48 ab rep stos %rax,%es:(%rdi) + 663517ad: 49 29 ec sub %rbp,%r12 + 663517b0: 48 89 d7 mov %rdx,%rdi + 663517b3: eb 2e jmp 663517e3 <__mingw_init_ehandler+0xb3> + 663517b5: c6 07 09 movb $0x9,(%rdi) + 663517b8: 48 83 c6 01 add $0x1,%rsi + 663517bc: 48 83 c3 0c add $0xc,%rbx + 663517c0: 44 89 67 04 mov %r12d,0x4(%rdi) + 663517c4: 8b 48 0c mov 0xc(%rax),%ecx + 663517c7: 89 4b f4 mov %ecx,-0xc(%rbx) + 663517ca: 03 48 08 add 0x8(%rax),%ecx + 663517cd: 48 89 f8 mov %rdi,%rax + 663517d0: 48 83 c7 08 add $0x8,%rdi + 663517d4: 48 29 e8 sub %rbp,%rax + 663517d7: 89 43 fc mov %eax,-0x4(%rbx) + 663517da: 89 4b f8 mov %ecx,-0x8(%rbx) + 663517dd: 48 83 fe 20 cmp $0x20,%rsi + 663517e1: 74 32 je 66351815 <__mingw_init_ehandler+0xe5> + 663517e3: 48 89 f1 mov %rsi,%rcx + 663517e6: e8 75 06 00 00 callq 66351e60 <_FindPESectionExec> + 663517eb: 48 85 c0 test %rax,%rax + 663517ee: 75 c5 jne 663517b5 <__mingw_init_ehandler+0x85> + 663517f0: 48 85 f6 test %rsi,%rsi + 663517f3: 89 f2 mov %esi,%edx + 663517f5: 0f 84 71 ff ff ff je 6635176c <__mingw_init_ehandler+0x3c> + 663517fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66351800: 48 8d 0d 19 5f 00 00 lea 0x5f19(%rip),%rcx # 66357720 + 66351807: 49 89 e8 mov %rbp,%r8 + 6635180a: ff 15 18 7a 00 00 callq *0x7a18(%rip) # 66359228 <__imp_RtlAddFunctionTable> + 66351810: e9 57 ff ff ff jmpq 6635176c <__mingw_init_ehandler+0x3c> + 66351815: ba 20 00 00 00 mov $0x20,%edx + 6635181a: eb e4 jmp 66351800 <__mingw_init_ehandler+0xd0> + 6635181c: 0f 1f 40 00 nopl 0x0(%rax) -0000000066351750 <__mingwthr_run_key_dtors.part.0>: - 66351750: 55 push %rbp - 66351751: 57 push %rdi - 66351752: 56 push %rsi - 66351753: 53 push %rbx - 66351754: 48 83 ec 28 sub $0x28,%rsp - 66351758: 48 8d 0d 61 61 00 00 lea 0x6161(%rip),%rcx # 663578c0 <__mingwthr_cs> - 6635175f: ff 15 6b 7a 00 00 callq *0x7a6b(%rip) # 663591d0 <__imp_EnterCriticalSection> - 66351765: 48 8b 1d 34 61 00 00 mov 0x6134(%rip),%rbx # 663578a0 - 6635176c: 48 85 db test %rbx,%rbx - 6635176f: 74 33 je 663517a4 <__mingwthr_run_key_dtors.part.0+0x54> - 66351771: 48 8b 2d e8 7a 00 00 mov 0x7ae8(%rip),%rbp # 66359260 <__imp_TlsGetValue> - 66351778: 48 8b 3d 71 7a 00 00 mov 0x7a71(%rip),%rdi # 663591f0 <__imp_GetLastError> - 6635177f: 90 nop - 66351780: 8b 0b mov (%rbx),%ecx - 66351782: ff d5 callq *%rbp - 66351784: 48 89 c6 mov %rax,%rsi - 66351787: ff d7 callq *%rdi - 66351789: 85 c0 test %eax,%eax - 6635178b: 75 0e jne 6635179b <__mingwthr_run_key_dtors.part.0+0x4b> - 6635178d: 48 85 f6 test %rsi,%rsi - 66351790: 74 09 je 6635179b <__mingwthr_run_key_dtors.part.0+0x4b> - 66351792: 48 8b 43 08 mov 0x8(%rbx),%rax - 66351796: 48 89 f1 mov %rsi,%rcx - 66351799: ff d0 callq *%rax - 6635179b: 48 8b 5b 10 mov 0x10(%rbx),%rbx - 6635179f: 48 85 db test %rbx,%rbx - 663517a2: 75 dc jne 66351780 <__mingwthr_run_key_dtors.part.0+0x30> - 663517a4: 48 8d 0d 15 61 00 00 lea 0x6115(%rip),%rcx # 663578c0 <__mingwthr_cs> - 663517ab: 48 83 c4 28 add $0x28,%rsp - 663517af: 5b pop %rbx - 663517b0: 5e pop %rsi - 663517b1: 5f pop %rdi - 663517b2: 5d pop %rbp - 663517b3: 48 ff 25 5e 7a 00 00 rex.W jmpq *0x7a5e(%rip) # 66359218 <__imp_LeaveCriticalSection> - 663517ba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - -00000000663517c0 <___w64_mingwthr_add_key_dtor>: - 663517c0: 55 push %rbp - 663517c1: 57 push %rdi - 663517c2: 56 push %rsi - 663517c3: 53 push %rbx - 663517c4: 48 83 ec 28 sub $0x28,%rsp - 663517c8: 8b 05 da 60 00 00 mov 0x60da(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 663517ce: 31 f6 xor %esi,%esi - 663517d0: 85 c0 test %eax,%eax - 663517d2: 89 cd mov %ecx,%ebp - 663517d4: 48 89 d7 mov %rdx,%rdi - 663517d7: 75 0b jne 663517e4 <___w64_mingwthr_add_key_dtor+0x24> - 663517d9: 89 f0 mov %esi,%eax - 663517db: 48 83 c4 28 add $0x28,%rsp - 663517df: 5b pop %rbx - 663517e0: 5e pop %rsi - 663517e1: 5f pop %rdi - 663517e2: 5d pop %rbp - 663517e3: c3 retq - 663517e4: ba 18 00 00 00 mov $0x18,%edx - 663517e9: b9 01 00 00 00 mov $0x1,%ecx - 663517ee: e8 8d 08 00 00 callq 66352080 - 663517f3: 48 85 c0 test %rax,%rax - 663517f6: 48 89 c3 mov %rax,%rbx - 663517f9: 74 3d je 66351838 <___w64_mingwthr_add_key_dtor+0x78> - 663517fb: 89 28 mov %ebp,(%rax) - 663517fd: 48 8d 0d bc 60 00 00 lea 0x60bc(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351804: 48 89 78 08 mov %rdi,0x8(%rax) - 66351808: ff 15 c2 79 00 00 callq *0x79c2(%rip) # 663591d0 <__imp_EnterCriticalSection> - 6635180e: 48 8b 05 8b 60 00 00 mov 0x608b(%rip),%rax # 663578a0 - 66351815: 48 8d 0d a4 60 00 00 lea 0x60a4(%rip),%rcx # 663578c0 <__mingwthr_cs> - 6635181c: 48 89 1d 7d 60 00 00 mov %rbx,0x607d(%rip) # 663578a0 - 66351823: 48 89 43 10 mov %rax,0x10(%rbx) - 66351827: ff 15 eb 79 00 00 callq *0x79eb(%rip) # 66359218 <__imp_LeaveCriticalSection> - 6635182d: 89 f0 mov %esi,%eax - 6635182f: 48 83 c4 28 add $0x28,%rsp - 66351833: 5b pop %rbx - 66351834: 5e pop %rsi - 66351835: 5f pop %rdi - 66351836: 5d pop %rbp - 66351837: c3 retq - 66351838: be ff ff ff ff mov $0xffffffff,%esi - 6635183d: eb 9a jmp 663517d9 <___w64_mingwthr_add_key_dtor+0x19> - 6635183f: 90 nop - -0000000066351840 <___w64_mingwthr_remove_key_dtor>: - 66351840: 53 push %rbx - 66351841: 48 83 ec 20 sub $0x20,%rsp - 66351845: 8b 05 5d 60 00 00 mov 0x605d(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 6635184b: 85 c0 test %eax,%eax - 6635184d: 89 cb mov %ecx,%ebx - 6635184f: 75 0f jne 66351860 <___w64_mingwthr_remove_key_dtor+0x20> - 66351851: 31 c0 xor %eax,%eax - 66351853: 48 83 c4 20 add $0x20,%rsp - 66351857: 5b pop %rbx - 66351858: c3 retq - 66351859: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66351860: 48 8d 0d 59 60 00 00 lea 0x6059(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351867: ff 15 63 79 00 00 callq *0x7963(%rip) # 663591d0 <__imp_EnterCriticalSection> - 6635186d: 48 8b 05 2c 60 00 00 mov 0x602c(%rip),%rax # 663578a0 - 66351874: 48 85 c0 test %rax,%rax - 66351877: 74 1a je 66351893 <___w64_mingwthr_remove_key_dtor+0x53> - 66351879: 8b 10 mov (%rax),%edx - 6635187b: 39 d3 cmp %edx,%ebx - 6635187d: 75 0b jne 6635188a <___w64_mingwthr_remove_key_dtor+0x4a> - 6635187f: eb 4f jmp 663518d0 <___w64_mingwthr_remove_key_dtor+0x90> - 66351881: 8b 11 mov (%rcx),%edx - 66351883: 39 da cmp %ebx,%edx - 66351885: 74 29 je 663518b0 <___w64_mingwthr_remove_key_dtor+0x70> - 66351887: 48 89 c8 mov %rcx,%rax - 6635188a: 48 8b 48 10 mov 0x10(%rax),%rcx - 6635188e: 48 85 c9 test %rcx,%rcx - 66351891: 75 ee jne 66351881 <___w64_mingwthr_remove_key_dtor+0x41> - 66351893: 48 8d 0d 26 60 00 00 lea 0x6026(%rip),%rcx # 663578c0 <__mingwthr_cs> - 6635189a: ff 15 78 79 00 00 callq *0x7978(%rip) # 66359218 <__imp_LeaveCriticalSection> - 663518a0: 31 c0 xor %eax,%eax - 663518a2: 48 83 c4 20 add $0x20,%rsp - 663518a6: 5b pop %rbx - 663518a7: c3 retq - 663518a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663518af: 00 - 663518b0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663518b4: 48 89 50 10 mov %rdx,0x10(%rax) - 663518b8: e8 bb 07 00 00 callq 66352078 - 663518bd: 48 8d 0d fc 5f 00 00 lea 0x5ffc(%rip),%rcx # 663578c0 <__mingwthr_cs> - 663518c4: ff 15 4e 79 00 00 callq *0x794e(%rip) # 66359218 <__imp_LeaveCriticalSection> - 663518ca: eb d4 jmp 663518a0 <___w64_mingwthr_remove_key_dtor+0x60> - 663518cc: 0f 1f 40 00 nopl 0x0(%rax) - 663518d0: 48 8b 50 10 mov 0x10(%rax),%rdx - 663518d4: 48 89 c1 mov %rax,%rcx - 663518d7: 48 89 15 c2 5f 00 00 mov %rdx,0x5fc2(%rip) # 663578a0 - 663518de: eb d8 jmp 663518b8 <___w64_mingwthr_remove_key_dtor+0x78> - -00000000663518e0 <__mingw_TLScallback>: - 663518e0: 53 push %rbx - 663518e1: 48 83 ec 20 sub $0x20,%rsp - 663518e5: 83 fa 01 cmp $0x1,%edx - 663518e8: 0f 84 92 00 00 00 je 66351980 <__mingw_TLScallback+0xa0> - 663518ee: 72 30 jb 66351920 <__mingw_TLScallback+0x40> - 663518f0: 83 fa 02 cmp $0x2,%edx - 663518f3: 74 1b je 66351910 <__mingw_TLScallback+0x30> - 663518f5: 83 fa 03 cmp $0x3,%edx - 663518f8: 75 1b jne 66351915 <__mingw_TLScallback+0x35> - 663518fa: 8b 05 a8 5f 00 00 mov 0x5fa8(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351900: 85 c0 test %eax,%eax - 66351902: 74 11 je 66351915 <__mingw_TLScallback+0x35> - 66351904: e8 47 fe ff ff callq 66351750 <__mingwthr_run_key_dtors.part.0> - 66351909: eb 0a jmp 66351915 <__mingw_TLScallback+0x35> - 6635190b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351910: e8 8b 04 00 00 callq 66351da0 <_fpreset> - 66351915: b8 01 00 00 00 mov $0x1,%eax - 6635191a: 48 83 c4 20 add $0x20,%rsp - 6635191e: 5b pop %rbx - 6635191f: c3 retq - 66351920: 8b 05 82 5f 00 00 mov 0x5f82(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351926: 85 c0 test %eax,%eax - 66351928: 0f 85 82 00 00 00 jne 663519b0 <__mingw_TLScallback+0xd0> - 6635192e: 8b 05 74 5f 00 00 mov 0x5f74(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351934: 83 f8 01 cmp $0x1,%eax - 66351937: 75 dc jne 66351915 <__mingw_TLScallback+0x35> - 66351939: 48 8b 0d 60 5f 00 00 mov 0x5f60(%rip),%rcx # 663578a0 - 66351940: 48 85 c9 test %rcx,%rcx - 66351943: 74 11 je 66351956 <__mingw_TLScallback+0x76> - 66351945: 48 8b 59 10 mov 0x10(%rcx),%rbx - 66351949: e8 2a 07 00 00 callq 66352078 - 6635194e: 48 85 db test %rbx,%rbx - 66351951: 48 89 d9 mov %rbx,%rcx - 66351954: 75 ef jne 66351945 <__mingw_TLScallback+0x65> - 66351956: 48 8d 0d 63 5f 00 00 lea 0x5f63(%rip),%rcx # 663578c0 <__mingwthr_cs> - 6635195d: 48 c7 05 38 5f 00 00 movq $0x0,0x5f38(%rip) # 663578a0 - 66351964: 00 00 00 00 - 66351968: c7 05 36 5f 00 00 00 movl $0x0,0x5f36(%rip) # 663578a8 <__mingwthr_cs_init> - 6635196f: 00 00 00 - 66351972: ff 15 50 78 00 00 callq *0x7850(%rip) # 663591c8 <__IAT_start__> - 66351978: eb 9b jmp 66351915 <__mingw_TLScallback+0x35> - 6635197a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351980: 8b 05 22 5f 00 00 mov 0x5f22(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351986: 85 c0 test %eax,%eax - 66351988: 74 16 je 663519a0 <__mingw_TLScallback+0xc0> - 6635198a: c7 05 14 5f 00 00 01 movl $0x1,0x5f14(%rip) # 663578a8 <__mingwthr_cs_init> - 66351991: 00 00 00 - 66351994: b8 01 00 00 00 mov $0x1,%eax - 66351999: 48 83 c4 20 add $0x20,%rsp - 6635199d: 5b pop %rbx - 6635199e: c3 retq +0000000066351820 <_gnu_exception_handler>: + 66351820: 53 push %rbx + 66351821: 48 83 ec 20 sub $0x20,%rsp + 66351825: 48 8b 11 mov (%rcx),%rdx + 66351828: 8b 02 mov (%rdx),%eax + 6635182a: 48 89 cb mov %rcx,%rbx + 6635182d: 89 c1 mov %eax,%ecx + 6635182f: 81 e1 ff ff ff 20 and $0x20ffffff,%ecx + 66351835: 81 f9 43 43 47 20 cmp $0x20474343,%ecx + 6635183b: 0f 84 bf 00 00 00 je 66351900 <_gnu_exception_handler+0xe0> + 66351841: 3d 91 00 00 c0 cmp $0xc0000091,%eax + 66351846: 77 68 ja 663518b0 <_gnu_exception_handler+0x90> + 66351848: 3d 8d 00 00 c0 cmp $0xc000008d,%eax + 6635184d: 73 7c jae 663518cb <_gnu_exception_handler+0xab> + 6635184f: 3d 08 00 00 c0 cmp $0xc0000008,%eax + 66351854: 0f 84 b0 00 00 00 je 6635190a <_gnu_exception_handler+0xea> + 6635185a: 0f 87 f4 00 00 00 ja 66351954 <_gnu_exception_handler+0x134> + 66351860: 3d 02 00 00 80 cmp $0x80000002,%eax + 66351865: 0f 84 9f 00 00 00 je 6635190a <_gnu_exception_handler+0xea> + 6635186b: 3d 05 00 00 c0 cmp $0xc0000005,%eax + 66351870: 75 1f jne 66351891 <_gnu_exception_handler+0x71> + 66351872: 31 d2 xor %edx,%edx + 66351874: b9 0b 00 00 00 mov $0xb,%ecx + 66351879: e8 92 0a 00 00 callq 66352310 + 6635187e: 48 83 f8 01 cmp $0x1,%rax + 66351882: 0f 84 51 01 00 00 je 663519d9 <_gnu_exception_handler+0x1b9> + 66351888: 48 85 c0 test %rax,%rax + 6635188b: 0f 85 0f 01 00 00 jne 663519a0 <_gnu_exception_handler+0x180> + 66351891: 48 8b 05 68 5d 00 00 mov 0x5d68(%rip),%rax # 66357600 <__mingw_oldexcpt_handler> + 66351898: 48 85 c0 test %rax,%rax + 6635189b: 0f 84 10 01 00 00 je 663519b1 <_gnu_exception_handler+0x191> + 663518a1: 48 89 d9 mov %rbx,%rcx + 663518a4: 48 83 c4 20 add $0x20,%rsp + 663518a8: 5b pop %rbx + 663518a9: 48 ff e0 rex.W jmpq *%rax + 663518ac: 0f 1f 40 00 nopl 0x0(%rax) + 663518b0: 3d 94 00 00 c0 cmp $0xc0000094,%eax + 663518b5: 0f 84 b5 00 00 00 je 66351970 <_gnu_exception_handler+0x150> + 663518bb: 77 58 ja 66351915 <_gnu_exception_handler+0xf5> + 663518bd: 3d 92 00 00 c0 cmp $0xc0000092,%eax + 663518c2: 74 46 je 6635190a <_gnu_exception_handler+0xea> + 663518c4: 3d 93 00 00 c0 cmp $0xc0000093,%eax + 663518c9: 75 c6 jne 66351891 <_gnu_exception_handler+0x71> + 663518cb: 31 d2 xor %edx,%edx + 663518cd: b9 08 00 00 00 mov $0x8,%ecx + 663518d2: e8 39 0a 00 00 callq 66352310 + 663518d7: 48 83 f8 01 cmp $0x1,%rax + 663518db: 0f 84 df 00 00 00 je 663519c0 <_gnu_exception_handler+0x1a0> + 663518e1: 48 85 c0 test %rax,%rax + 663518e4: 74 ab je 66351891 <_gnu_exception_handler+0x71> + 663518e6: b9 08 00 00 00 mov $0x8,%ecx + 663518eb: ff d0 callq *%rax + 663518ed: b8 ff ff ff ff mov $0xffffffff,%eax + 663518f2: 48 83 c4 20 add $0x20,%rsp + 663518f6: 5b pop %rbx + 663518f7: c3 retq + 663518f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663518ff: 00 + 66351900: f6 42 04 01 testb $0x1,0x4(%rdx) + 66351904: 0f 85 37 ff ff ff jne 66351841 <_gnu_exception_handler+0x21> + 6635190a: b8 ff ff ff ff mov $0xffffffff,%eax + 6635190f: 48 83 c4 20 add $0x20,%rsp + 66351913: 5b pop %rbx + 66351914: c3 retq + 66351915: 3d 95 00 00 c0 cmp $0xc0000095,%eax + 6635191a: 74 ee je 6635190a <_gnu_exception_handler+0xea> + 6635191c: 3d 96 00 00 c0 cmp $0xc0000096,%eax + 66351921: 0f 85 6a ff ff ff jne 66351891 <_gnu_exception_handler+0x71> + 66351927: 31 d2 xor %edx,%edx + 66351929: b9 04 00 00 00 mov $0x4,%ecx + 6635192e: e8 dd 09 00 00 callq 66352310 + 66351933: 48 83 f8 01 cmp $0x1,%rax + 66351937: 0f 84 b3 00 00 00 je 663519f0 <_gnu_exception_handler+0x1d0> + 6635193d: 48 85 c0 test %rax,%rax + 66351940: 0f 84 4b ff ff ff je 66351891 <_gnu_exception_handler+0x71> + 66351946: b9 04 00 00 00 mov $0x4,%ecx + 6635194b: ff d0 callq *%rax + 6635194d: b8 ff ff ff ff mov $0xffffffff,%eax + 66351952: eb 9e jmp 663518f2 <_gnu_exception_handler+0xd2> + 66351954: 3d 1d 00 00 c0 cmp $0xc000001d,%eax + 66351959: 74 cc je 66351927 <_gnu_exception_handler+0x107> + 6635195b: 3d 8c 00 00 c0 cmp $0xc000008c,%eax + 66351960: 0f 85 2b ff ff ff jne 66351891 <_gnu_exception_handler+0x71> + 66351966: eb a2 jmp 6635190a <_gnu_exception_handler+0xea> + 66351968: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635196f: 00 + 66351970: 31 d2 xor %edx,%edx + 66351972: b9 08 00 00 00 mov $0x8,%ecx + 66351977: e8 94 09 00 00 callq 66352310 + 6635197c: 48 83 f8 01 cmp $0x1,%rax + 66351980: 0f 85 5b ff ff ff jne 663518e1 <_gnu_exception_handler+0xc1> + 66351986: ba 01 00 00 00 mov $0x1,%edx + 6635198b: b9 08 00 00 00 mov $0x8,%ecx + 66351990: e8 7b 09 00 00 callq 66352310 + 66351995: b8 ff ff ff ff mov $0xffffffff,%eax + 6635199a: e9 53 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> 6635199f: 90 nop - 663519a0: 48 8d 0d 19 5f 00 00 lea 0x5f19(%rip),%rcx # 663578c0 <__mingwthr_cs> - 663519a7: ff 15 63 78 00 00 callq *0x7863(%rip) # 66359210 <__imp_InitializeCriticalSection> - 663519ad: eb db jmp 6635198a <__mingw_TLScallback+0xaa> - 663519af: 90 nop - 663519b0: e8 9b fd ff ff callq 66351750 <__mingwthr_run_key_dtors.part.0> - 663519b5: e9 74 ff ff ff jmpq 6635192e <__mingw_TLScallback+0x4e> - 663519ba: 90 nop - 663519bb: 90 nop - 663519bc: 90 nop - 663519bd: 90 nop - 663519be: 90 nop - 663519bf: 90 nop + 663519a0: b9 0b 00 00 00 mov $0xb,%ecx + 663519a5: ff d0 callq *%rax + 663519a7: b8 ff ff ff ff mov $0xffffffff,%eax + 663519ac: e9 41 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> + 663519b1: 31 c0 xor %eax,%eax + 663519b3: e9 3a ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> + 663519b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663519bf: 00 + 663519c0: ba 01 00 00 00 mov $0x1,%edx + 663519c5: b9 08 00 00 00 mov $0x8,%ecx + 663519ca: e8 41 09 00 00 callq 66352310 + 663519cf: e8 8c 06 00 00 callq 66352060 <_fpreset> + 663519d4: e9 31 ff ff ff jmpq 6635190a <_gnu_exception_handler+0xea> + 663519d9: ba 01 00 00 00 mov $0x1,%edx + 663519de: b9 0b 00 00 00 mov $0xb,%ecx + 663519e3: e8 28 09 00 00 callq 66352310 + 663519e8: 83 c8 ff or $0xffffffff,%eax + 663519eb: e9 02 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> + 663519f0: ba 01 00 00 00 mov $0x1,%edx + 663519f5: b9 04 00 00 00 mov $0x4,%ecx + 663519fa: e8 11 09 00 00 callq 66352310 + 663519ff: 83 c8 ff or $0xffffffff,%eax + 66351a02: e9 eb fe ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> + 66351a07: 90 nop + 66351a08: 90 nop + 66351a09: 90 nop + 66351a0a: 90 nop + 66351a0b: 90 nop + 66351a0c: 90 nop + 66351a0d: 90 nop + 66351a0e: 90 nop + 66351a0f: 90 nop -00000000663519c0 <_ValidateImageBase.part.0>: - 663519c0: 48 63 41 3c movslq 0x3c(%rcx),%rax - 663519c4: 48 01 c1 add %rax,%rcx - 663519c7: 31 c0 xor %eax,%eax - 663519c9: 81 39 50 45 00 00 cmpl $0x4550,(%rcx) - 663519cf: 74 01 je 663519d2 <_ValidateImageBase.part.0+0x12> - 663519d1: c3 retq - 663519d2: 31 c0 xor %eax,%eax - 663519d4: 66 81 79 18 0b 02 cmpw $0x20b,0x18(%rcx) - 663519da: 0f 94 c0 sete %al - 663519dd: c3 retq - 663519de: 66 90 xchg %ax,%ax +0000000066351a10 <__mingwthr_run_key_dtors.part.0>: + 66351a10: 55 push %rbp + 66351a11: 57 push %rdi + 66351a12: 56 push %rsi + 66351a13: 53 push %rbx + 66351a14: 48 83 ec 28 sub $0x28,%rsp + 66351a18: 48 8d 0d a1 5e 00 00 lea 0x5ea1(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351a1f: ff 15 ab 77 00 00 callq *0x77ab(%rip) # 663591d0 <__imp_EnterCriticalSection> + 66351a25: 48 8b 1d 74 5e 00 00 mov 0x5e74(%rip),%rbx # 663578a0 + 66351a2c: 48 85 db test %rbx,%rbx + 66351a2f: 74 33 je 66351a64 <__mingwthr_run_key_dtors.part.0+0x54> + 66351a31: 48 8b 2d 28 78 00 00 mov 0x7828(%rip),%rbp # 66359260 <__imp_TlsGetValue> + 66351a38: 48 8b 3d b1 77 00 00 mov 0x77b1(%rip),%rdi # 663591f0 <__imp_GetLastError> + 66351a3f: 90 nop + 66351a40: 8b 0b mov (%rbx),%ecx + 66351a42: ff d5 callq *%rbp + 66351a44: 48 89 c6 mov %rax,%rsi + 66351a47: ff d7 callq *%rdi + 66351a49: 85 c0 test %eax,%eax + 66351a4b: 75 0e jne 66351a5b <__mingwthr_run_key_dtors.part.0+0x4b> + 66351a4d: 48 85 f6 test %rsi,%rsi + 66351a50: 74 09 je 66351a5b <__mingwthr_run_key_dtors.part.0+0x4b> + 66351a52: 48 8b 43 08 mov 0x8(%rbx),%rax + 66351a56: 48 89 f1 mov %rsi,%rcx + 66351a59: ff d0 callq *%rax + 66351a5b: 48 8b 5b 10 mov 0x10(%rbx),%rbx + 66351a5f: 48 85 db test %rbx,%rbx + 66351a62: 75 dc jne 66351a40 <__mingwthr_run_key_dtors.part.0+0x30> + 66351a64: 48 8d 0d 55 5e 00 00 lea 0x5e55(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351a6b: 48 83 c4 28 add $0x28,%rsp + 66351a6f: 5b pop %rbx + 66351a70: 5e pop %rsi + 66351a71: 5f pop %rdi + 66351a72: 5d pop %rbp + 66351a73: 48 ff 25 9e 77 00 00 rex.W jmpq *0x779e(%rip) # 66359218 <__imp_LeaveCriticalSection> + 66351a7a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -00000000663519e0 <_ValidateImageBase>: - 663519e0: 66 81 39 4d 5a cmpw $0x5a4d,(%rcx) - 663519e5: 74 09 je 663519f0 <_ValidateImageBase+0x10> - 663519e7: 31 c0 xor %eax,%eax - 663519e9: c3 retq - 663519ea: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663519f0: eb ce jmp 663519c0 <_ValidateImageBase.part.0> - 663519f2: 0f 1f 40 00 nopl 0x0(%rax) - 663519f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663519fd: 00 00 00 +0000000066351a80 <___w64_mingwthr_add_key_dtor>: + 66351a80: 55 push %rbp + 66351a81: 57 push %rdi + 66351a82: 56 push %rsi + 66351a83: 53 push %rbx + 66351a84: 48 83 ec 28 sub $0x28,%rsp + 66351a88: 8b 05 1a 5e 00 00 mov 0x5e1a(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351a8e: 31 f6 xor %esi,%esi + 66351a90: 85 c0 test %eax,%eax + 66351a92: 89 cd mov %ecx,%ebp + 66351a94: 48 89 d7 mov %rdx,%rdi + 66351a97: 75 0b jne 66351aa4 <___w64_mingwthr_add_key_dtor+0x24> + 66351a99: 89 f0 mov %esi,%eax + 66351a9b: 48 83 c4 28 add $0x28,%rsp + 66351a9f: 5b pop %rbx + 66351aa0: 5e pop %rsi + 66351aa1: 5f pop %rdi + 66351aa2: 5d pop %rbp + 66351aa3: c3 retq + 66351aa4: ba 18 00 00 00 mov $0x18,%edx + 66351aa9: b9 01 00 00 00 mov $0x1,%ecx + 66351aae: e8 8d 08 00 00 callq 66352340 + 66351ab3: 48 85 c0 test %rax,%rax + 66351ab6: 48 89 c3 mov %rax,%rbx + 66351ab9: 74 3d je 66351af8 <___w64_mingwthr_add_key_dtor+0x78> + 66351abb: 89 28 mov %ebp,(%rax) + 66351abd: 48 8d 0d fc 5d 00 00 lea 0x5dfc(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351ac4: 48 89 78 08 mov %rdi,0x8(%rax) + 66351ac8: ff 15 02 77 00 00 callq *0x7702(%rip) # 663591d0 <__imp_EnterCriticalSection> + 66351ace: 48 8b 05 cb 5d 00 00 mov 0x5dcb(%rip),%rax # 663578a0 + 66351ad5: 48 8d 0d e4 5d 00 00 lea 0x5de4(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351adc: 48 89 1d bd 5d 00 00 mov %rbx,0x5dbd(%rip) # 663578a0 + 66351ae3: 48 89 43 10 mov %rax,0x10(%rbx) + 66351ae7: ff 15 2b 77 00 00 callq *0x772b(%rip) # 66359218 <__imp_LeaveCriticalSection> + 66351aed: 89 f0 mov %esi,%eax + 66351aef: 48 83 c4 28 add $0x28,%rsp + 66351af3: 5b pop %rbx + 66351af4: 5e pop %rsi + 66351af5: 5f pop %rdi + 66351af6: 5d pop %rbp + 66351af7: c3 retq + 66351af8: be ff ff ff ff mov $0xffffffff,%esi + 66351afd: eb 9a jmp 66351a99 <___w64_mingwthr_add_key_dtor+0x19> + 66351aff: 90 nop -0000000066351a00 <_FindPESection>: - 66351a00: 48 63 41 3c movslq 0x3c(%rcx),%rax - 66351a04: 48 01 c1 add %rax,%rcx - 66351a07: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351a0b: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax - 66351a10: 0f b7 49 06 movzwl 0x6(%rcx),%ecx - 66351a14: 85 c9 test %ecx,%ecx - 66351a16: 74 29 je 66351a41 <_FindPESection+0x41> - 66351a18: 83 e9 01 sub $0x1,%ecx - 66351a1b: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx - 66351a1f: 4c 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%r9 - 66351a24: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351a28: 49 39 d0 cmp %rdx,%r8 - 66351a2b: 4c 89 c1 mov %r8,%rcx - 66351a2e: 77 08 ja 66351a38 <_FindPESection+0x38> - 66351a30: 03 48 08 add 0x8(%rax),%ecx - 66351a33: 48 39 d1 cmp %rdx,%rcx - 66351a36: 77 0b ja 66351a43 <_FindPESection+0x43> - 66351a38: 48 83 c0 28 add $0x28,%rax - 66351a3c: 4c 39 c8 cmp %r9,%rax - 66351a3f: 75 e3 jne 66351a24 <_FindPESection+0x24> - 66351a41: 31 c0 xor %eax,%eax - 66351a43: c3 retq - 66351a44: 66 90 xchg %ax,%ax - 66351a46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351a4d: 00 00 00 +0000000066351b00 <___w64_mingwthr_remove_key_dtor>: + 66351b00: 53 push %rbx + 66351b01: 48 83 ec 20 sub $0x20,%rsp + 66351b05: 8b 05 9d 5d 00 00 mov 0x5d9d(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351b0b: 85 c0 test %eax,%eax + 66351b0d: 89 cb mov %ecx,%ebx + 66351b0f: 75 0f jne 66351b20 <___w64_mingwthr_remove_key_dtor+0x20> + 66351b11: 31 c0 xor %eax,%eax + 66351b13: 48 83 c4 20 add $0x20,%rsp + 66351b17: 5b pop %rbx + 66351b18: c3 retq + 66351b19: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66351b20: 48 8d 0d 99 5d 00 00 lea 0x5d99(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351b27: ff 15 a3 76 00 00 callq *0x76a3(%rip) # 663591d0 <__imp_EnterCriticalSection> + 66351b2d: 48 8b 05 6c 5d 00 00 mov 0x5d6c(%rip),%rax # 663578a0 + 66351b34: 48 85 c0 test %rax,%rax + 66351b37: 74 1a je 66351b53 <___w64_mingwthr_remove_key_dtor+0x53> + 66351b39: 8b 10 mov (%rax),%edx + 66351b3b: 39 d3 cmp %edx,%ebx + 66351b3d: 75 0b jne 66351b4a <___w64_mingwthr_remove_key_dtor+0x4a> + 66351b3f: eb 4f jmp 66351b90 <___w64_mingwthr_remove_key_dtor+0x90> + 66351b41: 8b 11 mov (%rcx),%edx + 66351b43: 39 da cmp %ebx,%edx + 66351b45: 74 29 je 66351b70 <___w64_mingwthr_remove_key_dtor+0x70> + 66351b47: 48 89 c8 mov %rcx,%rax + 66351b4a: 48 8b 48 10 mov 0x10(%rax),%rcx + 66351b4e: 48 85 c9 test %rcx,%rcx + 66351b51: 75 ee jne 66351b41 <___w64_mingwthr_remove_key_dtor+0x41> + 66351b53: 48 8d 0d 66 5d 00 00 lea 0x5d66(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351b5a: ff 15 b8 76 00 00 callq *0x76b8(%rip) # 66359218 <__imp_LeaveCriticalSection> + 66351b60: 31 c0 xor %eax,%eax + 66351b62: 48 83 c4 20 add $0x20,%rsp + 66351b66: 5b pop %rbx + 66351b67: c3 retq + 66351b68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66351b6f: 00 + 66351b70: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66351b74: 48 89 50 10 mov %rdx,0x10(%rax) + 66351b78: e8 bb 07 00 00 callq 66352338 + 66351b7d: 48 8d 0d 3c 5d 00 00 lea 0x5d3c(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351b84: ff 15 8e 76 00 00 callq *0x768e(%rip) # 66359218 <__imp_LeaveCriticalSection> + 66351b8a: eb d4 jmp 66351b60 <___w64_mingwthr_remove_key_dtor+0x60> + 66351b8c: 0f 1f 40 00 nopl 0x0(%rax) + 66351b90: 48 8b 50 10 mov 0x10(%rax),%rdx + 66351b94: 48 89 c1 mov %rax,%rcx + 66351b97: 48 89 15 02 5d 00 00 mov %rdx,0x5d02(%rip) # 663578a0 + 66351b9e: eb d8 jmp 66351b78 <___w64_mingwthr_remove_key_dtor+0x78> -0000000066351a50 <_FindPESectionByName>: - 66351a50: 57 push %rdi - 66351a51: 56 push %rsi - 66351a52: 53 push %rbx - 66351a53: 48 83 ec 20 sub $0x20,%rsp - 66351a57: 48 89 ce mov %rcx,%rsi - 66351a5a: e8 e9 05 00 00 callq 66352048 - 66351a5f: 48 83 f8 08 cmp $0x8,%rax - 66351a63: 77 6b ja 66351ad0 <_FindPESectionByName+0x80> - 66351a65: 48 8b 15 84 28 00 00 mov 0x2884(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351a6c: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351a71: 75 5d jne 66351ad0 <_FindPESectionByName+0x80> - 66351a73: 48 89 d1 mov %rdx,%rcx - 66351a76: e8 45 ff ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351a7b: 85 c0 test %eax,%eax - 66351a7d: 74 51 je 66351ad0 <_FindPESectionByName+0x80> - 66351a7f: 48 63 4a 3c movslq 0x3c(%rdx),%rcx - 66351a83: 48 01 d1 add %rdx,%rcx - 66351a86: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351a8a: 48 8d 5c 01 18 lea 0x18(%rcx,%rax,1),%rbx - 66351a8f: 0f b7 41 06 movzwl 0x6(%rcx),%eax - 66351a93: 85 c0 test %eax,%eax - 66351a95: 74 39 je 66351ad0 <_FindPESectionByName+0x80> - 66351a97: 83 e8 01 sub $0x1,%eax - 66351a9a: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351a9e: 48 8d 7c c3 28 lea 0x28(%rbx,%rax,8),%rdi - 66351aa3: eb 09 jmp 66351aae <_FindPESectionByName+0x5e> - 66351aa5: 48 83 c3 28 add $0x28,%rbx - 66351aa9: 48 39 fb cmp %rdi,%rbx - 66351aac: 74 22 je 66351ad0 <_FindPESectionByName+0x80> - 66351aae: 41 b8 08 00 00 00 mov $0x8,%r8d - 66351ab4: 48 89 f2 mov %rsi,%rdx - 66351ab7: 48 89 d9 mov %rbx,%rcx - 66351aba: e8 81 05 00 00 callq 66352040 - 66351abf: 85 c0 test %eax,%eax - 66351ac1: 75 e2 jne 66351aa5 <_FindPESectionByName+0x55> - 66351ac3: 48 89 d8 mov %rbx,%rax - 66351ac6: 48 83 c4 20 add $0x20,%rsp - 66351aca: 5b pop %rbx - 66351acb: 5e pop %rsi - 66351acc: 5f pop %rdi - 66351acd: c3 retq - 66351ace: 66 90 xchg %ax,%ax - 66351ad0: 31 db xor %ebx,%ebx - 66351ad2: 48 89 d8 mov %rbx,%rax - 66351ad5: 48 83 c4 20 add $0x20,%rsp - 66351ad9: 5b pop %rbx - 66351ada: 5e pop %rsi - 66351adb: 5f pop %rdi - 66351adc: c3 retq - 66351add: 0f 1f 00 nopl (%rax) - -0000000066351ae0 <__mingw_GetSectionForAddress>: - 66351ae0: 48 83 ec 28 sub $0x28,%rsp - 66351ae4: 4c 8b 05 05 28 00 00 mov 0x2805(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351aeb: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351af1: 48 89 ca mov %rcx,%rdx - 66351af4: 75 57 jne 66351b4d <__mingw_GetSectionForAddress+0x6d> - 66351af6: 4c 89 c1 mov %r8,%rcx - 66351af9: e8 c2 fe ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351afe: 85 c0 test %eax,%eax - 66351b00: 74 4b je 66351b4d <__mingw_GetSectionForAddress+0x6d> - 66351b02: 49 63 40 3c movslq 0x3c(%r8),%rax - 66351b06: 48 89 d1 mov %rdx,%rcx - 66351b09: 4c 29 c1 sub %r8,%rcx - 66351b0c: 49 01 c0 add %rax,%r8 - 66351b0f: 41 0f b7 50 06 movzwl 0x6(%r8),%edx - 66351b14: 41 0f b7 40 14 movzwl 0x14(%r8),%eax - 66351b19: 85 d2 test %edx,%edx - 66351b1b: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax - 66351b20: 74 2b je 66351b4d <__mingw_GetSectionForAddress+0x6d> - 66351b22: 83 ea 01 sub $0x1,%edx - 66351b25: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx - 66351b29: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 - 66351b2e: 66 90 xchg %ax,%ax - 66351b30: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351b34: 4c 39 c1 cmp %r8,%rcx - 66351b37: 4c 89 c2 mov %r8,%rdx - 66351b3a: 72 08 jb 66351b44 <__mingw_GetSectionForAddress+0x64> - 66351b3c: 03 50 08 add 0x8(%rax),%edx - 66351b3f: 48 39 d1 cmp %rdx,%rcx - 66351b42: 72 0b jb 66351b4f <__mingw_GetSectionForAddress+0x6f> - 66351b44: 48 83 c0 28 add $0x28,%rax - 66351b48: 4c 39 c8 cmp %r9,%rax - 66351b4b: 75 e3 jne 66351b30 <__mingw_GetSectionForAddress+0x50> - 66351b4d: 31 c0 xor %eax,%eax - 66351b4f: 48 83 c4 28 add $0x28,%rsp - 66351b53: c3 retq - 66351b54: 66 90 xchg %ax,%ax - 66351b56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351b5d: 00 00 00 - -0000000066351b60 <__mingw_GetSectionCount>: - 66351b60: 48 83 ec 28 sub $0x28,%rsp - 66351b64: 48 8b 15 85 27 00 00 mov 0x2785(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351b6b: 45 31 c0 xor %r8d,%r8d - 66351b6e: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351b73: 74 0b je 66351b80 <__mingw_GetSectionCount+0x20> - 66351b75: 44 89 c0 mov %r8d,%eax - 66351b78: 48 83 c4 28 add $0x28,%rsp - 66351b7c: c3 retq - 66351b7d: 0f 1f 00 nopl (%rax) - 66351b80: 48 89 d1 mov %rdx,%rcx - 66351b83: e8 38 fe ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351b88: 85 c0 test %eax,%eax - 66351b8a: 74 e9 je 66351b75 <__mingw_GetSectionCount+0x15> - 66351b8c: 48 63 42 3c movslq 0x3c(%rdx),%rax - 66351b90: 44 0f b7 44 10 06 movzwl 0x6(%rax,%rdx,1),%r8d - 66351b96: 44 89 c0 mov %r8d,%eax - 66351b99: 48 83 c4 28 add $0x28,%rsp - 66351b9d: c3 retq - 66351b9e: 66 90 xchg %ax,%ax - -0000000066351ba0 <_FindPESectionExec>: - 66351ba0: 48 83 ec 28 sub $0x28,%rsp - 66351ba4: 4c 8b 05 45 27 00 00 mov 0x2745(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351bab: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351bb1: 48 89 ca mov %rcx,%rdx - 66351bb4: 75 52 jne 66351c08 <_FindPESectionExec+0x68> - 66351bb6: 4c 89 c1 mov %r8,%rcx - 66351bb9: e8 02 fe ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351bbe: 85 c0 test %eax,%eax - 66351bc0: 74 46 je 66351c08 <_FindPESectionExec+0x68> - 66351bc2: 49 63 48 3c movslq 0x3c(%r8),%rcx - 66351bc6: 4c 01 c1 add %r8,%rcx - 66351bc9: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351bcd: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax - 66351bd2: 0f b7 49 06 movzwl 0x6(%rcx),%ecx - 66351bd6: 85 c9 test %ecx,%ecx - 66351bd8: 74 2e je 66351c08 <_FindPESectionExec+0x68> - 66351bda: 83 e9 01 sub $0x1,%ecx - 66351bdd: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx - 66351be1: 48 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%rcx - 66351be6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351bed: 00 00 00 - 66351bf0: f6 40 27 20 testb $0x20,0x27(%rax) - 66351bf4: 74 09 je 66351bff <_FindPESectionExec+0x5f> - 66351bf6: 48 85 d2 test %rdx,%rdx - 66351bf9: 74 0f je 66351c0a <_FindPESectionExec+0x6a> - 66351bfb: 48 83 ea 01 sub $0x1,%rdx - 66351bff: 48 83 c0 28 add $0x28,%rax - 66351c03: 48 39 c8 cmp %rcx,%rax - 66351c06: 75 e8 jne 66351bf0 <_FindPESectionExec+0x50> - 66351c08: 31 c0 xor %eax,%eax - 66351c0a: 48 83 c4 28 add $0x28,%rsp - 66351c0e: c3 retq - 66351c0f: 90 nop - -0000000066351c10 <_GetPEImageBase>: - 66351c10: 48 83 ec 28 sub $0x28,%rsp - 66351c14: 48 8b 15 d5 26 00 00 mov 0x26d5(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351c1b: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351c20: 75 1e jne 66351c40 <_GetPEImageBase+0x30> - 66351c22: 48 89 d1 mov %rdx,%rcx - 66351c25: e8 96 fd ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351c2a: 85 c0 test %eax,%eax - 66351c2c: b8 00 00 00 00 mov $0x0,%eax - 66351c31: 48 0f 45 c2 cmovne %rdx,%rax - 66351c35: 48 83 c4 28 add $0x28,%rsp - 66351c39: c3 retq +0000000066351ba0 <__mingw_TLScallback>: + 66351ba0: 53 push %rbx + 66351ba1: 48 83 ec 20 sub $0x20,%rsp + 66351ba5: 83 fa 01 cmp $0x1,%edx + 66351ba8: 0f 84 92 00 00 00 je 66351c40 <__mingw_TLScallback+0xa0> + 66351bae: 72 30 jb 66351be0 <__mingw_TLScallback+0x40> + 66351bb0: 83 fa 02 cmp $0x2,%edx + 66351bb3: 74 1b je 66351bd0 <__mingw_TLScallback+0x30> + 66351bb5: 83 fa 03 cmp $0x3,%edx + 66351bb8: 75 1b jne 66351bd5 <__mingw_TLScallback+0x35> + 66351bba: 8b 05 e8 5c 00 00 mov 0x5ce8(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351bc0: 85 c0 test %eax,%eax + 66351bc2: 74 11 je 66351bd5 <__mingw_TLScallback+0x35> + 66351bc4: e8 47 fe ff ff callq 66351a10 <__mingwthr_run_key_dtors.part.0> + 66351bc9: eb 0a jmp 66351bd5 <__mingw_TLScallback+0x35> + 66351bcb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66351bd0: e8 8b 04 00 00 callq 66352060 <_fpreset> + 66351bd5: b8 01 00 00 00 mov $0x1,%eax + 66351bda: 48 83 c4 20 add $0x20,%rsp + 66351bde: 5b pop %rbx + 66351bdf: c3 retq + 66351be0: 8b 05 c2 5c 00 00 mov 0x5cc2(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351be6: 85 c0 test %eax,%eax + 66351be8: 0f 85 82 00 00 00 jne 66351c70 <__mingw_TLScallback+0xd0> + 66351bee: 8b 05 b4 5c 00 00 mov 0x5cb4(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351bf4: 83 f8 01 cmp $0x1,%eax + 66351bf7: 75 dc jne 66351bd5 <__mingw_TLScallback+0x35> + 66351bf9: 48 8b 0d a0 5c 00 00 mov 0x5ca0(%rip),%rcx # 663578a0 + 66351c00: 48 85 c9 test %rcx,%rcx + 66351c03: 74 11 je 66351c16 <__mingw_TLScallback+0x76> + 66351c05: 48 8b 59 10 mov 0x10(%rcx),%rbx + 66351c09: e8 2a 07 00 00 callq 66352338 + 66351c0e: 48 85 db test %rbx,%rbx + 66351c11: 48 89 d9 mov %rbx,%rcx + 66351c14: 75 ef jne 66351c05 <__mingw_TLScallback+0x65> + 66351c16: 48 8d 0d a3 5c 00 00 lea 0x5ca3(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351c1d: 48 c7 05 78 5c 00 00 movq $0x0,0x5c78(%rip) # 663578a0 + 66351c24: 00 00 00 00 + 66351c28: c7 05 76 5c 00 00 00 movl $0x0,0x5c76(%rip) # 663578a8 <__mingwthr_cs_init> + 66351c2f: 00 00 00 + 66351c32: ff 15 90 75 00 00 callq *0x7590(%rip) # 663591c8 <__IAT_start__> + 66351c38: eb 9b jmp 66351bd5 <__mingw_TLScallback+0x35> 66351c3a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351c40: 31 c0 xor %eax,%eax - 66351c42: 48 83 c4 28 add $0x28,%rsp - 66351c46: c3 retq - 66351c47: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66351c4e: 00 00 + 66351c40: 8b 05 62 5c 00 00 mov 0x5c62(%rip),%eax # 663578a8 <__mingwthr_cs_init> + 66351c46: 85 c0 test %eax,%eax + 66351c48: 74 16 je 66351c60 <__mingw_TLScallback+0xc0> + 66351c4a: c7 05 54 5c 00 00 01 movl $0x1,0x5c54(%rip) # 663578a8 <__mingwthr_cs_init> + 66351c51: 00 00 00 + 66351c54: b8 01 00 00 00 mov $0x1,%eax + 66351c59: 48 83 c4 20 add $0x20,%rsp + 66351c5d: 5b pop %rbx + 66351c5e: c3 retq + 66351c5f: 90 nop + 66351c60: 48 8d 0d 59 5c 00 00 lea 0x5c59(%rip),%rcx # 663578c0 <__mingwthr_cs> + 66351c67: ff 15 a3 75 00 00 callq *0x75a3(%rip) # 66359210 <__imp_InitializeCriticalSection> + 66351c6d: eb db jmp 66351c4a <__mingw_TLScallback+0xaa> + 66351c6f: 90 nop + 66351c70: e8 9b fd ff ff callq 66351a10 <__mingwthr_run_key_dtors.part.0> + 66351c75: e9 74 ff ff ff jmpq 66351bee <__mingw_TLScallback+0x4e> + 66351c7a: 90 nop + 66351c7b: 90 nop + 66351c7c: 90 nop + 66351c7d: 90 nop + 66351c7e: 90 nop + 66351c7f: 90 nop -0000000066351c50 <_IsNonwritableInCurrentImage>: - 66351c50: 48 83 ec 28 sub $0x28,%rsp - 66351c54: 4c 8b 05 95 26 00 00 mov 0x2695(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351c5b: 31 c0 xor %eax,%eax - 66351c5d: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351c63: 48 89 ca mov %rcx,%rdx - 66351c66: 74 08 je 66351c70 <_IsNonwritableInCurrentImage+0x20> - 66351c68: 48 83 c4 28 add $0x28,%rsp - 66351c6c: c3 retq - 66351c6d: 0f 1f 00 nopl (%rax) - 66351c70: 4c 89 c1 mov %r8,%rcx - 66351c73: e8 48 fd ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351c78: 85 c0 test %eax,%eax - 66351c7a: 74 ec je 66351c68 <_IsNonwritableInCurrentImage+0x18> - 66351c7c: 49 63 40 3c movslq 0x3c(%r8),%rax - 66351c80: 48 89 d1 mov %rdx,%rcx - 66351c83: 4c 29 c1 sub %r8,%rcx - 66351c86: 49 01 c0 add %rax,%r8 - 66351c89: 41 0f b7 50 06 movzwl 0x6(%r8),%edx - 66351c8e: 41 0f b7 40 14 movzwl 0x14(%r8),%eax - 66351c93: 85 d2 test %edx,%edx - 66351c95: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax - 66351c9a: 74 31 je 66351ccd <_IsNonwritableInCurrentImage+0x7d> - 66351c9c: 83 ea 01 sub $0x1,%edx - 66351c9f: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx - 66351ca3: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 - 66351ca8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66351caf: 00 - 66351cb0: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351cb4: 4c 39 c1 cmp %r8,%rcx - 66351cb7: 4c 89 c2 mov %r8,%rdx - 66351cba: 72 08 jb 66351cc4 <_IsNonwritableInCurrentImage+0x74> - 66351cbc: 03 50 08 add 0x8(%rax),%edx - 66351cbf: 48 39 d1 cmp %rdx,%rcx - 66351cc2: 72 10 jb 66351cd4 <_IsNonwritableInCurrentImage+0x84> - 66351cc4: 48 83 c0 28 add $0x28,%rax - 66351cc8: 4c 39 c8 cmp %r9,%rax - 66351ccb: 75 e3 jne 66351cb0 <_IsNonwritableInCurrentImage+0x60> - 66351ccd: 31 c0 xor %eax,%eax - 66351ccf: 48 83 c4 28 add $0x28,%rsp - 66351cd3: c3 retq - 66351cd4: 8b 40 24 mov 0x24(%rax),%eax - 66351cd7: f7 d0 not %eax - 66351cd9: c1 e8 1f shr $0x1f,%eax - 66351cdc: 48 83 c4 28 add $0x28,%rsp - 66351ce0: c3 retq - 66351ce1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351ce6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351ced: 00 00 00 +0000000066351c80 <_ValidateImageBase.part.0>: + 66351c80: 48 63 41 3c movslq 0x3c(%rcx),%rax + 66351c84: 48 01 c1 add %rax,%rcx + 66351c87: 31 c0 xor %eax,%eax + 66351c89: 81 39 50 45 00 00 cmpl $0x4550,(%rcx) + 66351c8f: 74 01 je 66351c92 <_ValidateImageBase.part.0+0x12> + 66351c91: c3 retq + 66351c92: 31 c0 xor %eax,%eax + 66351c94: 66 81 79 18 0b 02 cmpw $0x20b,0x18(%rcx) + 66351c9a: 0f 94 c0 sete %al + 66351c9d: c3 retq + 66351c9e: 66 90 xchg %ax,%ax -0000000066351cf0 <__mingw_enum_import_library_names>: - 66351cf0: 48 83 ec 28 sub $0x28,%rsp - 66351cf4: 4c 8b 1d f5 25 00 00 mov 0x25f5(%rip),%r11 # 663542f0 <.refptr.__image_base__> - 66351cfb: 66 41 81 3b 4d 5a cmpw $0x5a4d,(%r11) - 66351d01: 41 89 c9 mov %ecx,%r9d - 66351d04: 75 58 jne 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d06: 4c 89 d9 mov %r11,%rcx - 66351d09: e8 b2 fc ff ff callq 663519c0 <_ValidateImageBase.part.0> - 66351d0e: 85 c0 test %eax,%eax - 66351d10: 74 4c je 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d12: 49 63 43 3c movslq 0x3c(%r11),%rax - 66351d16: 4c 01 d8 add %r11,%rax - 66351d19: 8b 90 90 00 00 00 mov 0x90(%rax),%edx - 66351d1f: 85 d2 test %edx,%edx - 66351d21: 74 3b je 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d23: 0f b7 48 14 movzwl 0x14(%rax),%ecx - 66351d27: 48 8d 4c 08 18 lea 0x18(%rax,%rcx,1),%rcx - 66351d2c: 0f b7 40 06 movzwl 0x6(%rax),%eax - 66351d30: 85 c0 test %eax,%eax - 66351d32: 74 2a je 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d34: 83 e8 01 sub $0x1,%eax - 66351d37: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351d3b: 48 8d 44 c1 28 lea 0x28(%rcx,%rax,8),%rax - 66351d40: 44 8b 51 0c mov 0xc(%rcx),%r10d - 66351d44: 4c 39 d2 cmp %r10,%rdx - 66351d47: 4d 89 d0 mov %r10,%r8 - 66351d4a: 72 09 jb 66351d55 <__mingw_enum_import_library_names+0x65> - 66351d4c: 44 03 41 08 add 0x8(%rcx),%r8d - 66351d50: 4c 39 c2 cmp %r8,%rdx - 66351d53: 72 10 jb 66351d65 <__mingw_enum_import_library_names+0x75> - 66351d55: 48 83 c1 28 add $0x28,%rcx - 66351d59: 48 39 c1 cmp %rax,%rcx - 66351d5c: 75 e2 jne 66351d40 <__mingw_enum_import_library_names+0x50> - 66351d5e: 31 c0 xor %eax,%eax - 66351d60: 48 83 c4 28 add $0x28,%rsp - 66351d64: c3 retq - 66351d65: 4c 01 da add %r11,%rdx - 66351d68: 75 0e jne 66351d78 <__mingw_enum_import_library_names+0x88> - 66351d6a: eb f2 jmp 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d6c: 0f 1f 40 00 nopl 0x0(%rax) - 66351d70: 41 83 e9 01 sub $0x1,%r9d - 66351d74: 48 83 c2 14 add $0x14,%rdx - 66351d78: 8b 4a 04 mov 0x4(%rdx),%ecx - 66351d7b: 85 c9 test %ecx,%ecx - 66351d7d: 75 07 jne 66351d86 <__mingw_enum_import_library_names+0x96> - 66351d7f: 8b 42 0c mov 0xc(%rdx),%eax - 66351d82: 85 c0 test %eax,%eax - 66351d84: 74 d8 je 66351d5e <__mingw_enum_import_library_names+0x6e> - 66351d86: 45 85 c9 test %r9d,%r9d - 66351d89: 7f e5 jg 66351d70 <__mingw_enum_import_library_names+0x80> - 66351d8b: 8b 42 0c mov 0xc(%rdx),%eax - 66351d8e: 4c 01 d8 add %r11,%rax - 66351d91: 48 83 c4 28 add $0x28,%rsp - 66351d95: c3 retq - 66351d96: 90 nop - 66351d97: 90 nop - 66351d98: 90 nop - 66351d99: 90 nop - 66351d9a: 90 nop - 66351d9b: 90 nop - 66351d9c: 90 nop - 66351d9d: 90 nop - 66351d9e: 90 nop - 66351d9f: 90 nop +0000000066351ca0 <_ValidateImageBase>: + 66351ca0: 66 81 39 4d 5a cmpw $0x5a4d,(%rcx) + 66351ca5: 74 09 je 66351cb0 <_ValidateImageBase+0x10> + 66351ca7: 31 c0 xor %eax,%eax + 66351ca9: c3 retq + 66351caa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66351cb0: eb ce jmp 66351c80 <_ValidateImageBase.part.0> + 66351cb2: 0f 1f 40 00 nopl 0x0(%rax) + 66351cb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66351cbd: 00 00 00 -0000000066351da0 <_fpreset>: - 66351da0: db e3 fninit - 66351da2: c3 retq - 66351da3: 90 nop - 66351da4: 90 nop - 66351da5: 90 nop - 66351da6: 90 nop - 66351da7: 90 nop - 66351da8: 90 nop - 66351da9: 90 nop - 66351daa: 90 nop - 66351dab: 90 nop - 66351dac: 90 nop - 66351dad: 90 nop - 66351dae: 90 nop - 66351daf: 90 nop +0000000066351cc0 <_FindPESection>: + 66351cc0: 48 63 41 3c movslq 0x3c(%rcx),%rax + 66351cc4: 48 01 c1 add %rax,%rcx + 66351cc7: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66351ccb: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax + 66351cd0: 0f b7 49 06 movzwl 0x6(%rcx),%ecx + 66351cd4: 85 c9 test %ecx,%ecx + 66351cd6: 74 29 je 66351d01 <_FindPESection+0x41> + 66351cd8: 83 e9 01 sub $0x1,%ecx + 66351cdb: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx + 66351cdf: 4c 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%r9 + 66351ce4: 44 8b 40 0c mov 0xc(%rax),%r8d + 66351ce8: 49 39 d0 cmp %rdx,%r8 + 66351ceb: 4c 89 c1 mov %r8,%rcx + 66351cee: 77 08 ja 66351cf8 <_FindPESection+0x38> + 66351cf0: 03 48 08 add 0x8(%rax),%ecx + 66351cf3: 48 39 d1 cmp %rdx,%rcx + 66351cf6: 77 0b ja 66351d03 <_FindPESection+0x43> + 66351cf8: 48 83 c0 28 add $0x28,%rax + 66351cfc: 4c 39 c8 cmp %r9,%rax + 66351cff: 75 e3 jne 66351ce4 <_FindPESection+0x24> + 66351d01: 31 c0 xor %eax,%eax + 66351d03: c3 retq + 66351d04: 66 90 xchg %ax,%ax + 66351d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66351d0d: 00 00 00 -0000000066351db0 <___chkstk_ms>: - 66351db0: 51 push %rcx - 66351db1: 50 push %rax - 66351db2: 48 3d 00 10 00 00 cmp $0x1000,%rax - 66351db8: 48 8d 4c 24 18 lea 0x18(%rsp),%rcx - 66351dbd: 72 19 jb 66351dd8 <___chkstk_ms+0x28> - 66351dbf: 48 81 e9 00 10 00 00 sub $0x1000,%rcx - 66351dc6: 48 83 09 00 orq $0x0,(%rcx) - 66351dca: 48 2d 00 10 00 00 sub $0x1000,%rax - 66351dd0: 48 3d 00 10 00 00 cmp $0x1000,%rax - 66351dd6: 77 e7 ja 66351dbf <___chkstk_ms+0xf> - 66351dd8: 48 29 c1 sub %rax,%rcx - 66351ddb: 48 83 09 00 orq $0x0,(%rcx) - 66351ddf: 58 pop %rax - 66351de0: 59 pop %rcx - 66351de1: c3 retq - 66351de2: 90 nop - 66351de3: 90 nop - 66351de4: 90 nop - 66351de5: 90 nop - 66351de6: 90 nop - 66351de7: 90 nop - 66351de8: 90 nop - 66351de9: 90 nop - 66351dea: 90 nop - 66351deb: 90 nop - 66351dec: 90 nop - 66351ded: 90 nop - 66351dee: 90 nop - 66351def: 90 nop +0000000066351d10 <_FindPESectionByName>: + 66351d10: 57 push %rdi + 66351d11: 56 push %rsi + 66351d12: 53 push %rbx + 66351d13: 48 83 ec 20 sub $0x20,%rsp + 66351d17: 48 89 ce mov %rcx,%rsi + 66351d1a: e8 e9 05 00 00 callq 66352308 + 66351d1f: 48 83 f8 08 cmp $0x8,%rax + 66351d23: 77 6b ja 66351d90 <_FindPESectionByName+0x80> + 66351d25: 48 8b 15 c4 25 00 00 mov 0x25c4(%rip),%rdx # 663542f0 <.refptr.__image_base__> + 66351d2c: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66351d31: 75 5d jne 66351d90 <_FindPESectionByName+0x80> + 66351d33: 48 89 d1 mov %rdx,%rcx + 66351d36: e8 45 ff ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351d3b: 85 c0 test %eax,%eax + 66351d3d: 74 51 je 66351d90 <_FindPESectionByName+0x80> + 66351d3f: 48 63 4a 3c movslq 0x3c(%rdx),%rcx + 66351d43: 48 01 d1 add %rdx,%rcx + 66351d46: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66351d4a: 48 8d 5c 01 18 lea 0x18(%rcx,%rax,1),%rbx + 66351d4f: 0f b7 41 06 movzwl 0x6(%rcx),%eax + 66351d53: 85 c0 test %eax,%eax + 66351d55: 74 39 je 66351d90 <_FindPESectionByName+0x80> + 66351d57: 83 e8 01 sub $0x1,%eax + 66351d5a: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66351d5e: 48 8d 7c c3 28 lea 0x28(%rbx,%rax,8),%rdi + 66351d63: eb 09 jmp 66351d6e <_FindPESectionByName+0x5e> + 66351d65: 48 83 c3 28 add $0x28,%rbx + 66351d69: 48 39 fb cmp %rdi,%rbx + 66351d6c: 74 22 je 66351d90 <_FindPESectionByName+0x80> + 66351d6e: 41 b8 08 00 00 00 mov $0x8,%r8d + 66351d74: 48 89 f2 mov %rsi,%rdx + 66351d77: 48 89 d9 mov %rbx,%rcx + 66351d7a: e8 81 05 00 00 callq 66352300 + 66351d7f: 85 c0 test %eax,%eax + 66351d81: 75 e2 jne 66351d65 <_FindPESectionByName+0x55> + 66351d83: 48 89 d8 mov %rbx,%rax + 66351d86: 48 83 c4 20 add $0x20,%rsp + 66351d8a: 5b pop %rbx + 66351d8b: 5e pop %rsi + 66351d8c: 5f pop %rdi + 66351d8d: c3 retq + 66351d8e: 66 90 xchg %ax,%ax + 66351d90: 31 db xor %ebx,%ebx + 66351d92: 48 89 d8 mov %rbx,%rax + 66351d95: 48 83 c4 20 add $0x20,%rsp + 66351d99: 5b pop %rbx + 66351d9a: 5e pop %rsi + 66351d9b: 5f pop %rdi + 66351d9c: c3 retq + 66351d9d: 0f 1f 00 nopl (%rax) -0000000066351df0 : - 66351df0: b8 01 00 00 00 mov $0x1,%eax - 66351df5: c3 retq - 66351df6: 90 nop - 66351df7: 90 nop - 66351df8: 90 nop - 66351df9: 90 nop - 66351dfa: 90 nop - 66351dfb: 90 nop - 66351dfc: 90 nop - 66351dfd: 90 nop - 66351dfe: 90 nop - 66351dff: 90 nop +0000000066351da0 <__mingw_GetSectionForAddress>: + 66351da0: 48 83 ec 28 sub $0x28,%rsp + 66351da4: 4c 8b 05 45 25 00 00 mov 0x2545(%rip),%r8 # 663542f0 <.refptr.__image_base__> + 66351dab: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66351db1: 48 89 ca mov %rcx,%rdx + 66351db4: 75 57 jne 66351e0d <__mingw_GetSectionForAddress+0x6d> + 66351db6: 4c 89 c1 mov %r8,%rcx + 66351db9: e8 c2 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351dbe: 85 c0 test %eax,%eax + 66351dc0: 74 4b je 66351e0d <__mingw_GetSectionForAddress+0x6d> + 66351dc2: 49 63 40 3c movslq 0x3c(%r8),%rax + 66351dc6: 48 89 d1 mov %rdx,%rcx + 66351dc9: 4c 29 c1 sub %r8,%rcx + 66351dcc: 49 01 c0 add %rax,%r8 + 66351dcf: 41 0f b7 50 06 movzwl 0x6(%r8),%edx + 66351dd4: 41 0f b7 40 14 movzwl 0x14(%r8),%eax + 66351dd9: 85 d2 test %edx,%edx + 66351ddb: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax + 66351de0: 74 2b je 66351e0d <__mingw_GetSectionForAddress+0x6d> + 66351de2: 83 ea 01 sub $0x1,%edx + 66351de5: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx + 66351de9: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 + 66351dee: 66 90 xchg %ax,%ax + 66351df0: 44 8b 40 0c mov 0xc(%rax),%r8d + 66351df4: 4c 39 c1 cmp %r8,%rcx + 66351df7: 4c 89 c2 mov %r8,%rdx + 66351dfa: 72 08 jb 66351e04 <__mingw_GetSectionForAddress+0x64> + 66351dfc: 03 50 08 add 0x8(%rax),%edx + 66351dff: 48 39 d1 cmp %rdx,%rcx + 66351e02: 72 0b jb 66351e0f <__mingw_GetSectionForAddress+0x6f> + 66351e04: 48 83 c0 28 add $0x28,%rax + 66351e08: 4c 39 c8 cmp %r9,%rax + 66351e0b: 75 e3 jne 66351df0 <__mingw_GetSectionForAddress+0x50> + 66351e0d: 31 c0 xor %eax,%eax + 66351e0f: 48 83 c4 28 add $0x28,%rsp + 66351e13: c3 retq + 66351e14: 66 90 xchg %ax,%ax + 66351e16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66351e1d: 00 00 00 -0000000066351e00 : - 66351e00: b8 01 00 00 00 mov $0x1,%eax - 66351e05: c3 retq - 66351e06: 90 nop - 66351e07: 90 nop - 66351e08: 90 nop - 66351e09: 90 nop - 66351e0a: 90 nop - 66351e0b: 90 nop - 66351e0c: 90 nop - 66351e0d: 90 nop - 66351e0e: 90 nop - 66351e0f: 90 nop +0000000066351e20 <__mingw_GetSectionCount>: + 66351e20: 48 83 ec 28 sub $0x28,%rsp + 66351e24: 48 8b 15 c5 24 00 00 mov 0x24c5(%rip),%rdx # 663542f0 <.refptr.__image_base__> + 66351e2b: 45 31 c0 xor %r8d,%r8d + 66351e2e: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66351e33: 74 0b je 66351e40 <__mingw_GetSectionCount+0x20> + 66351e35: 44 89 c0 mov %r8d,%eax + 66351e38: 48 83 c4 28 add $0x28,%rsp + 66351e3c: c3 retq + 66351e3d: 0f 1f 00 nopl (%rax) + 66351e40: 48 89 d1 mov %rdx,%rcx + 66351e43: e8 38 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351e48: 85 c0 test %eax,%eax + 66351e4a: 74 e9 je 66351e35 <__mingw_GetSectionCount+0x15> + 66351e4c: 48 63 42 3c movslq 0x3c(%rdx),%rax + 66351e50: 44 0f b7 44 10 06 movzwl 0x6(%rax,%rdx,1),%r8d + 66351e56: 44 89 c0 mov %r8d,%eax + 66351e59: 48 83 c4 28 add $0x28,%rsp + 66351e5d: c3 retq + 66351e5e: 66 90 xchg %ax,%ax -0000000066351e10 <_wassert>: - 66351e10: 41 54 push %r12 - 66351e12: 55 push %rbp - 66351e13: 57 push %rdi - 66351e14: 56 push %rsi - 66351e15: 53 push %rbx - 66351e16: 48 81 ec 50 02 00 00 sub $0x250,%rsp - 66351e1d: 48 89 d3 mov %rdx,%rbx - 66351e20: 48 89 ce mov %rcx,%rsi - 66351e23: b9 00 40 00 00 mov $0x4000,%ecx - 66351e28: 45 89 c4 mov %r8d,%r12d - 66351e2b: e8 30 02 00 00 callq 66352060 - 66351e30: 48 85 db test %rbx,%rbx - 66351e33: 48 89 c5 mov %rax,%rbp - 66351e36: 0f 84 c4 00 00 00 je 66351f00 <_wassert+0xf0> - 66351e3c: 66 83 3b 00 cmpw $0x0,(%rbx) - 66351e40: 48 8d 05 79 23 00 00 lea 0x2379(%rip),%rax # 663541c0 <.rdata> - 66351e47: 48 0f 44 d8 cmove %rax,%rbx - 66351e4b: 48 85 f6 test %rsi,%rsi - 66351e4e: 0f 84 9d 00 00 00 je 66351ef1 <_wassert+0xe1> - 66351e54: 66 83 3e 00 cmpw $0x0,(%rsi) - 66351e58: 48 8d 05 75 23 00 00 lea 0x2375(%rip),%rax # 663541d4 <.rdata+0x14> - 66351e5f: 48 0f 44 f0 cmove %rax,%rsi - 66351e63: 31 c9 xor %ecx,%ecx - 66351e65: 41 b8 04 01 00 00 mov $0x104,%r8d - 66351e6b: 48 8d 7c 24 40 lea 0x40(%rsp),%rdi - 66351e70: 48 89 fa mov %rdi,%rdx - 66351e73: ff 15 7f 73 00 00 callq *0x737f(%rip) # 663591f8 <__imp_GetModuleFileNameW> - 66351e79: 85 c0 test %eax,%eax - 66351e7b: 74 63 je 66351ee0 <_wassert+0xd0> - 66351e7d: 48 89 74 24 30 mov %rsi,0x30(%rsp) - 66351e82: 49 89 f9 mov %rdi,%r9 - 66351e85: ba ff 1f 00 00 mov $0x1fff,%edx - 66351e8a: 48 89 e9 mov %rbp,%rcx - 66351e8d: 44 89 64 24 28 mov %r12d,0x28(%rsp) - 66351e92: 4c 8d 05 3f 23 00 00 lea 0x233f(%rip),%r8 # 663541d8 <.rdata+0x18> - 66351e99: 48 89 5c 24 20 mov %rbx,0x20(%rsp) - 66351e9e: e8 ed 01 00 00 callq 66352090 <_snwprintf> - 66351ea3: 48 8b 05 c6 24 00 00 mov 0x24c6(%rip),%rax # 66354370 <.refptr.mingw_app_type> - 66351eaa: 8b 00 mov (%rax),%eax - 66351eac: 85 c0 test %eax,%eax - 66351eae: 74 75 je 66351f25 <_wassert+0x115> - 66351eb0: 31 c9 xor %ecx,%ecx - 66351eb2: 41 b9 12 20 01 00 mov $0x12012,%r9d - 66351eb8: 48 89 ea mov %rbp,%rdx - 66351ebb: 4c 8d 05 ae 23 00 00 lea 0x23ae(%rip),%r8 # 66354270 <.rdata+0xb0> - 66351ec2: ff 15 68 74 00 00 callq *0x7468(%rip) # 66359330 <__imp_MessageBoxW> - 66351ec8: 83 f8 03 cmp $0x3,%eax - 66351ecb: 74 44 je 66351f11 <_wassert+0x101> - 66351ecd: 83 f8 05 cmp $0x5,%eax - 66351ed0: 75 3a jne 66351f0c <_wassert+0xfc> - 66351ed2: 48 81 c4 50 02 00 00 add $0x250,%rsp - 66351ed9: 5b pop %rbx - 66351eda: 5e pop %rsi - 66351edb: 5f pop %rdi - 66351edc: 5d pop %rbp - 66351edd: 41 5c pop %r12 - 66351edf: c3 retq - 66351ee0: 48 8d 15 d9 22 00 00 lea 0x22d9(%rip),%rdx # 663541c0 <.rdata> - 66351ee7: 48 89 f9 mov %rdi,%rcx - 66351eea: e8 41 01 00 00 callq 66352030 - 66351eef: eb 8c jmp 66351e7d <_wassert+0x6d> - 66351ef1: 48 8d 35 dc 22 00 00 lea 0x22dc(%rip),%rsi # 663541d4 <.rdata+0x14> - 66351ef8: e9 66 ff ff ff jmpq 66351e63 <_wassert+0x53> - 66351efd: 0f 1f 00 nopl (%rax) - 66351f00: 48 8d 1d b9 22 00 00 lea 0x22b9(%rip),%rbx # 663541c0 <.rdata> - 66351f07: e9 3f ff ff ff jmpq 66351e4b <_wassert+0x3b> - 66351f0c: e8 77 01 00 00 callq 66352088 - 66351f11: b9 16 00 00 00 mov $0x16,%ecx - 66351f16: e8 3d 01 00 00 callq 66352058 - 66351f1b: b9 03 00 00 00 mov $0x3,%ecx - 66351f20: e8 7b 01 00 00 callq 663520a0 <_exit> - 66351f25: b9 02 00 00 00 mov $0x2,%ecx - 66351f2a: e8 f1 02 00 00 callq 66352220 <__acrt_iob_func> - 66351f2f: 48 8d 15 2a 23 00 00 lea 0x232a(%rip),%rdx # 66354260 <.rdata+0xa0> - 66351f36: 49 89 e8 mov %rbp,%r8 - 66351f39: 48 89 c1 mov %rax,%rcx - 66351f3c: e8 2f 01 00 00 callq 66352070 - 66351f41: e8 42 01 00 00 callq 66352088 - 66351f46: 90 nop - 66351f47: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66351f4e: 00 00 +0000000066351e60 <_FindPESectionExec>: + 66351e60: 48 83 ec 28 sub $0x28,%rsp + 66351e64: 4c 8b 05 85 24 00 00 mov 0x2485(%rip),%r8 # 663542f0 <.refptr.__image_base__> + 66351e6b: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66351e71: 48 89 ca mov %rcx,%rdx + 66351e74: 75 52 jne 66351ec8 <_FindPESectionExec+0x68> + 66351e76: 4c 89 c1 mov %r8,%rcx + 66351e79: e8 02 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351e7e: 85 c0 test %eax,%eax + 66351e80: 74 46 je 66351ec8 <_FindPESectionExec+0x68> + 66351e82: 49 63 48 3c movslq 0x3c(%r8),%rcx + 66351e86: 4c 01 c1 add %r8,%rcx + 66351e89: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66351e8d: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax + 66351e92: 0f b7 49 06 movzwl 0x6(%rcx),%ecx + 66351e96: 85 c9 test %ecx,%ecx + 66351e98: 74 2e je 66351ec8 <_FindPESectionExec+0x68> + 66351e9a: 83 e9 01 sub $0x1,%ecx + 66351e9d: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx + 66351ea1: 48 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%rcx + 66351ea6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66351ead: 00 00 00 + 66351eb0: f6 40 27 20 testb $0x20,0x27(%rax) + 66351eb4: 74 09 je 66351ebf <_FindPESectionExec+0x5f> + 66351eb6: 48 85 d2 test %rdx,%rdx + 66351eb9: 74 0f je 66351eca <_FindPESectionExec+0x6a> + 66351ebb: 48 83 ea 01 sub $0x1,%rdx + 66351ebf: 48 83 c0 28 add $0x28,%rax + 66351ec3: 48 39 c8 cmp %rcx,%rax + 66351ec6: 75 e8 jne 66351eb0 <_FindPESectionExec+0x50> + 66351ec8: 31 c0 xor %eax,%eax + 66351eca: 48 83 c4 28 add $0x28,%rsp + 66351ece: c3 retq + 66351ecf: 90 nop -0000000066351f50 <_assert>: - 66351f50: 55 push %rbp - 66351f51: 57 push %rdi - 66351f52: 56 push %rsi - 66351f53: 53 push %rbx - 66351f54: 48 83 ec 38 sub $0x38,%rsp - 66351f58: 48 89 d7 mov %rdx,%rdi - 66351f5b: 44 89 44 24 2c mov %r8d,0x2c(%rsp) - 66351f60: 48 89 cd mov %rcx,%rbp - 66351f63: e8 e0 00 00 00 callq 66352048 - 66351f68: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx - 66351f6d: e8 ee 00 00 00 callq 66352060 - 66351f72: 48 89 f9 mov %rdi,%rcx - 66351f75: 48 89 c6 mov %rax,%rsi - 66351f78: e8 cb 00 00 00 callq 66352048 - 66351f7d: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx - 66351f82: e8 d9 00 00 00 callq 66352060 - 66351f87: 0f b6 4d 00 movzbl 0x0(%rbp),%ecx - 66351f8b: 48 89 c3 mov %rax,%rbx - 66351f8e: 44 8b 44 24 2c mov 0x2c(%rsp),%r8d - 66351f93: 84 c9 test %cl,%cl - 66351f95: 74 79 je 66352010 <_assert+0xc0> - 66351f97: 45 31 c9 xor %r9d,%r9d - 66351f9a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351fa0: 66 42 89 0c 4e mov %cx,(%rsi,%r9,2) - 66351fa5: 49 83 c1 01 add $0x1,%r9 - 66351fa9: 42 0f b6 4c 0d 00 movzbl 0x0(%rbp,%r9,1),%ecx - 66351faf: 84 c9 test %cl,%cl - 66351fb1: 75 ed jne 66351fa0 <_assert+0x50> - 66351fb3: 4a 8d 04 4e lea (%rsi,%r9,2),%rax - 66351fb7: 31 c9 xor %ecx,%ecx - 66351fb9: 66 89 08 mov %cx,(%rax) - 66351fbc: 0f b6 0f movzbl (%rdi),%ecx - 66351fbf: 84 c9 test %cl,%cl - 66351fc1: 74 5d je 66352020 <_assert+0xd0> - 66351fc3: 45 31 c9 xor %r9d,%r9d - 66351fc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351fcd: 00 00 00 - 66351fd0: 66 42 89 0c 4b mov %cx,(%rbx,%r9,2) - 66351fd5: 49 83 c1 01 add $0x1,%r9 - 66351fd9: 42 0f b6 0c 0f movzbl (%rdi,%r9,1),%ecx - 66351fde: 84 c9 test %cl,%cl - 66351fe0: 75 ee jne 66351fd0 <_assert+0x80> - 66351fe2: 4a 8d 04 4b lea (%rbx,%r9,2),%rax - 66351fe6: 31 d2 xor %edx,%edx - 66351fe8: 48 89 f1 mov %rsi,%rcx - 66351feb: 66 89 10 mov %dx,(%rax) - 66351fee: 48 89 da mov %rbx,%rdx - 66351ff1: e8 1a fe ff ff callq 66351e10 <_wassert> - 66351ff6: 48 89 f1 mov %rsi,%rcx - 66351ff9: e8 7a 00 00 00 callq 66352078 - 66351ffe: 48 89 d9 mov %rbx,%rcx - 66352001: 48 83 c4 38 add $0x38,%rsp - 66352005: 5b pop %rbx - 66352006: 5e pop %rsi - 66352007: 5f pop %rdi - 66352008: 5d pop %rbp - 66352009: e9 6a 00 00 00 jmpq 66352078 - 6635200e: 66 90 xchg %ax,%ax - 66352010: 31 c9 xor %ecx,%ecx - 66352012: 48 89 f0 mov %rsi,%rax - 66352015: 66 89 08 mov %cx,(%rax) - 66352018: 0f b6 0f movzbl (%rdi),%ecx - 6635201b: 84 c9 test %cl,%cl - 6635201d: 75 a4 jne 66351fc3 <_assert+0x73> - 6635201f: 90 nop - 66352020: 48 89 d8 mov %rbx,%rax - 66352023: eb c1 jmp 66351fe6 <_assert+0x96> - 66352025: 90 nop - 66352026: 90 nop - 66352027: 90 nop - 66352028: 90 nop - 66352029: 90 nop - 6635202a: 90 nop - 6635202b: 90 nop - 6635202c: 90 nop - 6635202d: 90 nop - 6635202e: 90 nop - 6635202f: 90 nop +0000000066351ed0 <_GetPEImageBase>: + 66351ed0: 48 83 ec 28 sub $0x28,%rsp + 66351ed4: 48 8b 15 15 24 00 00 mov 0x2415(%rip),%rdx # 663542f0 <.refptr.__image_base__> + 66351edb: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66351ee0: 75 1e jne 66351f00 <_GetPEImageBase+0x30> + 66351ee2: 48 89 d1 mov %rdx,%rcx + 66351ee5: e8 96 fd ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351eea: 85 c0 test %eax,%eax + 66351eec: b8 00 00 00 00 mov $0x0,%eax + 66351ef1: 48 0f 45 c2 cmovne %rdx,%rax + 66351ef5: 48 83 c4 28 add $0x28,%rsp + 66351ef9: c3 retq + 66351efa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66351f00: 31 c0 xor %eax,%eax + 66351f02: 48 83 c4 28 add $0x28,%rsp + 66351f06: c3 retq + 66351f07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66351f0e: 00 00 -0000000066352030 : - 66352030: ff 25 ea 72 00 00 jmpq *0x72ea(%rip) # 66359320 <__imp_wcscpy> - 66352036: 90 nop - 66352037: 90 nop +0000000066351f10 <_IsNonwritableInCurrentImage>: + 66351f10: 48 83 ec 28 sub $0x28,%rsp + 66351f14: 4c 8b 05 d5 23 00 00 mov 0x23d5(%rip),%r8 # 663542f0 <.refptr.__image_base__> + 66351f1b: 31 c0 xor %eax,%eax + 66351f1d: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66351f23: 48 89 ca mov %rcx,%rdx + 66351f26: 74 08 je 66351f30 <_IsNonwritableInCurrentImage+0x20> + 66351f28: 48 83 c4 28 add $0x28,%rsp + 66351f2c: c3 retq + 66351f2d: 0f 1f 00 nopl (%rax) + 66351f30: 4c 89 c1 mov %r8,%rcx + 66351f33: e8 48 fd ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351f38: 85 c0 test %eax,%eax + 66351f3a: 74 ec je 66351f28 <_IsNonwritableInCurrentImage+0x18> + 66351f3c: 49 63 40 3c movslq 0x3c(%r8),%rax + 66351f40: 48 89 d1 mov %rdx,%rcx + 66351f43: 4c 29 c1 sub %r8,%rcx + 66351f46: 49 01 c0 add %rax,%r8 + 66351f49: 41 0f b7 50 06 movzwl 0x6(%r8),%edx + 66351f4e: 41 0f b7 40 14 movzwl 0x14(%r8),%eax + 66351f53: 85 d2 test %edx,%edx + 66351f55: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax + 66351f5a: 74 31 je 66351f8d <_IsNonwritableInCurrentImage+0x7d> + 66351f5c: 83 ea 01 sub $0x1,%edx + 66351f5f: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx + 66351f63: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 + 66351f68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66351f6f: 00 + 66351f70: 44 8b 40 0c mov 0xc(%rax),%r8d + 66351f74: 4c 39 c1 cmp %r8,%rcx + 66351f77: 4c 89 c2 mov %r8,%rdx + 66351f7a: 72 08 jb 66351f84 <_IsNonwritableInCurrentImage+0x74> + 66351f7c: 03 50 08 add 0x8(%rax),%edx + 66351f7f: 48 39 d1 cmp %rdx,%rcx + 66351f82: 72 10 jb 66351f94 <_IsNonwritableInCurrentImage+0x84> + 66351f84: 48 83 c0 28 add $0x28,%rax + 66351f88: 4c 39 c8 cmp %r9,%rax + 66351f8b: 75 e3 jne 66351f70 <_IsNonwritableInCurrentImage+0x60> + 66351f8d: 31 c0 xor %eax,%eax + 66351f8f: 48 83 c4 28 add $0x28,%rsp + 66351f93: c3 retq + 66351f94: 8b 40 24 mov 0x24(%rax),%eax + 66351f97: f7 d0 not %eax + 66351f99: c1 e8 1f shr $0x1f,%eax + 66351f9c: 48 83 c4 28 add $0x28,%rsp + 66351fa0: c3 retq + 66351fa1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66351fa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66351fad: 00 00 00 -0000000066352038 : - 66352038: ff 25 da 72 00 00 jmpq *0x72da(%rip) # 66359318 <__imp_vfprintf> - 6635203e: 90 nop - 6635203f: 90 nop - -0000000066352040 : - 66352040: ff 25 ca 72 00 00 jmpq *0x72ca(%rip) # 66359310 <__imp_strncmp> - 66352046: 90 nop - 66352047: 90 nop - -0000000066352048 : - 66352048: ff 25 ba 72 00 00 jmpq *0x72ba(%rip) # 66359308 <__imp_strlen> - 6635204e: 90 nop - 6635204f: 90 nop - -0000000066352050 : - 66352050: ff 25 aa 72 00 00 jmpq *0x72aa(%rip) # 66359300 <__imp_signal> +0000000066351fb0 <__mingw_enum_import_library_names>: + 66351fb0: 48 83 ec 28 sub $0x28,%rsp + 66351fb4: 4c 8b 1d 35 23 00 00 mov 0x2335(%rip),%r11 # 663542f0 <.refptr.__image_base__> + 66351fbb: 66 41 81 3b 4d 5a cmpw $0x5a4d,(%r11) + 66351fc1: 41 89 c9 mov %ecx,%r9d + 66351fc4: 75 58 jne 6635201e <__mingw_enum_import_library_names+0x6e> + 66351fc6: 4c 89 d9 mov %r11,%rcx + 66351fc9: e8 b2 fc ff ff callq 66351c80 <_ValidateImageBase.part.0> + 66351fce: 85 c0 test %eax,%eax + 66351fd0: 74 4c je 6635201e <__mingw_enum_import_library_names+0x6e> + 66351fd2: 49 63 43 3c movslq 0x3c(%r11),%rax + 66351fd6: 4c 01 d8 add %r11,%rax + 66351fd9: 8b 90 90 00 00 00 mov 0x90(%rax),%edx + 66351fdf: 85 d2 test %edx,%edx + 66351fe1: 74 3b je 6635201e <__mingw_enum_import_library_names+0x6e> + 66351fe3: 0f b7 48 14 movzwl 0x14(%rax),%ecx + 66351fe7: 48 8d 4c 08 18 lea 0x18(%rax,%rcx,1),%rcx + 66351fec: 0f b7 40 06 movzwl 0x6(%rax),%eax + 66351ff0: 85 c0 test %eax,%eax + 66351ff2: 74 2a je 6635201e <__mingw_enum_import_library_names+0x6e> + 66351ff4: 83 e8 01 sub $0x1,%eax + 66351ff7: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66351ffb: 48 8d 44 c1 28 lea 0x28(%rcx,%rax,8),%rax + 66352000: 44 8b 51 0c mov 0xc(%rcx),%r10d + 66352004: 4c 39 d2 cmp %r10,%rdx + 66352007: 4d 89 d0 mov %r10,%r8 + 6635200a: 72 09 jb 66352015 <__mingw_enum_import_library_names+0x65> + 6635200c: 44 03 41 08 add 0x8(%rcx),%r8d + 66352010: 4c 39 c2 cmp %r8,%rdx + 66352013: 72 10 jb 66352025 <__mingw_enum_import_library_names+0x75> + 66352015: 48 83 c1 28 add $0x28,%rcx + 66352019: 48 39 c1 cmp %rax,%rcx + 6635201c: 75 e2 jne 66352000 <__mingw_enum_import_library_names+0x50> + 6635201e: 31 c0 xor %eax,%eax + 66352020: 48 83 c4 28 add $0x28,%rsp + 66352024: c3 retq + 66352025: 4c 01 da add %r11,%rdx + 66352028: 75 0e jne 66352038 <__mingw_enum_import_library_names+0x88> + 6635202a: eb f2 jmp 6635201e <__mingw_enum_import_library_names+0x6e> + 6635202c: 0f 1f 40 00 nopl 0x0(%rax) + 66352030: 41 83 e9 01 sub $0x1,%r9d + 66352034: 48 83 c2 14 add $0x14,%rdx + 66352038: 8b 4a 04 mov 0x4(%rdx),%ecx + 6635203b: 85 c9 test %ecx,%ecx + 6635203d: 75 07 jne 66352046 <__mingw_enum_import_library_names+0x96> + 6635203f: 8b 42 0c mov 0xc(%rdx),%eax + 66352042: 85 c0 test %eax,%eax + 66352044: 74 d8 je 6635201e <__mingw_enum_import_library_names+0x6e> + 66352046: 45 85 c9 test %r9d,%r9d + 66352049: 7f e5 jg 66352030 <__mingw_enum_import_library_names+0x80> + 6635204b: 8b 42 0c mov 0xc(%rdx),%eax + 6635204e: 4c 01 d8 add %r11,%rax + 66352051: 48 83 c4 28 add $0x28,%rsp + 66352055: c3 retq 66352056: 90 nop 66352057: 90 nop - -0000000066352058 : - 66352058: ff 25 92 72 00 00 jmpq *0x7292(%rip) # 663592f0 <__imp_raise> + 66352058: 90 nop + 66352059: 90 nop + 6635205a: 90 nop + 6635205b: 90 nop + 6635205c: 90 nop + 6635205d: 90 nop 6635205e: 90 nop 6635205f: 90 nop -0000000066352060 : - 66352060: ff 25 82 72 00 00 jmpq *0x7282(%rip) # 663592e8 <__imp_malloc> +0000000066352060 <_fpreset>: + 66352060: db e3 fninit + 66352062: c3 retq + 66352063: 90 nop + 66352064: 90 nop + 66352065: 90 nop 66352066: 90 nop 66352067: 90 nop - -0000000066352068 : - 66352068: ff 25 72 72 00 00 jmpq *0x7272(%rip) # 663592e0 <__imp_fwrite> + 66352068: 90 nop + 66352069: 90 nop + 6635206a: 90 nop + 6635206b: 90 nop + 6635206c: 90 nop + 6635206d: 90 nop 6635206e: 90 nop 6635206f: 90 nop -0000000066352070 : - 66352070: ff 25 62 72 00 00 jmpq *0x7262(%rip) # 663592d8 <__imp_fwprintf> - 66352076: 90 nop - 66352077: 90 nop - -0000000066352078 : - 66352078: ff 25 52 72 00 00 jmpq *0x7252(%rip) # 663592d0 <__imp_free> - 6635207e: 90 nop - 6635207f: 90 nop - -0000000066352080 : - 66352080: ff 25 42 72 00 00 jmpq *0x7242(%rip) # 663592c8 <__imp_calloc> - 66352086: 90 nop - 66352087: 90 nop - -0000000066352088 : - 66352088: ff 25 32 72 00 00 jmpq *0x7232(%rip) # 663592c0 <__imp_abort> - 6635208e: 90 nop - 6635208f: 90 nop - -0000000066352090 <_snwprintf>: - 66352090: ff 25 1a 72 00 00 jmpq *0x721a(%rip) # 663592b0 <__imp__snwprintf> - 66352096: 90 nop - 66352097: 90 nop - -0000000066352098 <_initterm>: - 66352098: ff 25 02 72 00 00 jmpq *0x7202(%rip) # 663592a0 <__imp__initterm> - 6635209e: 90 nop - 6635209f: 90 nop - -00000000663520a0 <_exit>: - 663520a0: ff 25 f2 71 00 00 jmpq *0x71f2(%rip) # 66359298 <__imp__exit> +0000000066352070 <___chkstk_ms>: + 66352070: 51 push %rcx + 66352071: 50 push %rax + 66352072: 48 3d 00 10 00 00 cmp $0x1000,%rax + 66352078: 48 8d 4c 24 18 lea 0x18(%rsp),%rcx + 6635207d: 72 19 jb 66352098 <___chkstk_ms+0x28> + 6635207f: 48 81 e9 00 10 00 00 sub $0x1000,%rcx + 66352086: 48 83 09 00 orq $0x0,(%rcx) + 6635208a: 48 2d 00 10 00 00 sub $0x1000,%rax + 66352090: 48 3d 00 10 00 00 cmp $0x1000,%rax + 66352096: 77 e7 ja 6635207f <___chkstk_ms+0xf> + 66352098: 48 29 c1 sub %rax,%rcx + 6635209b: 48 83 09 00 orq $0x0,(%rcx) + 6635209f: 58 pop %rax + 663520a0: 59 pop %rcx + 663520a1: c3 retq + 663520a2: 90 nop + 663520a3: 90 nop + 663520a4: 90 nop + 663520a5: 90 nop 663520a6: 90 nop 663520a7: 90 nop - -00000000663520a8 <_amsg_exit>: - 663520a8: ff 25 e2 71 00 00 jmpq *0x71e2(%rip) # 66359290 <__imp__amsg_exit> + 663520a8: 90 nop + 663520a9: 90 nop + 663520aa: 90 nop + 663520ab: 90 nop + 663520ac: 90 nop + 663520ad: 90 nop 663520ae: 90 nop 663520af: 90 nop -00000000663520b0 <_initialize_onexit_table>: - 663520b0: 48 85 c9 test %rcx,%rcx - 663520b3: 74 1a je 663520cf <_initialize_onexit_table+0x1f> - 663520b5: 31 c0 xor %eax,%eax - 663520b7: 48 c7 41 10 00 00 00 movq $0x0,0x10(%rcx) - 663520be: 00 - 663520bf: 48 c7 41 08 00 00 00 movq $0x0,0x8(%rcx) - 663520c6: 00 - 663520c7: 48 c7 01 00 00 00 00 movq $0x0,(%rcx) - 663520ce: c3 retq - 663520cf: b8 ff ff ff ff mov $0xffffffff,%eax - 663520d4: c3 retq - 663520d5: 90 nop - 663520d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663520dd: 00 00 00 +00000000663520b0 : + 663520b0: b8 01 00 00 00 mov $0x1,%eax + 663520b5: c3 retq + 663520b6: 90 nop + 663520b7: 90 nop + 663520b8: 90 nop + 663520b9: 90 nop + 663520ba: 90 nop + 663520bb: 90 nop + 663520bc: 90 nop + 663520bd: 90 nop + 663520be: 90 nop + 663520bf: 90 nop -00000000663520e0 <_register_onexit_function>: - 663520e0: 55 push %rbp - 663520e1: 57 push %rdi - 663520e2: 56 push %rsi - 663520e3: 53 push %rbx - 663520e4: 48 83 ec 28 sub $0x28,%rsp - 663520e8: 48 85 c9 test %rcx,%rcx - 663520eb: 48 89 cb mov %rcx,%rbx - 663520ee: 48 89 d7 mov %rdx,%rdi - 663520f1: 0f 84 99 00 00 00 je 66352190 <_register_onexit_function+0xb0> - 663520f7: b9 08 00 00 00 mov $0x8,%ecx - 663520fc: e8 4f 01 00 00 callq 66352250 <_lock> - 66352101: 48 83 3b 00 cmpq $0x0,(%rbx) - 66352105: 74 5d je 66352164 <_register_onexit_function+0x84> - 66352107: 48 8b 73 08 mov 0x8(%rbx),%rsi - 6635210b: 48 8b 43 10 mov 0x10(%rbx),%rax - 6635210f: 48 39 f0 cmp %rsi,%rax - 66352112: 74 20 je 66352134 <_register_onexit_function+0x54> - 66352114: 48 8d 46 08 lea 0x8(%rsi),%rax - 66352118: b9 08 00 00 00 mov $0x8,%ecx - 6635211d: 48 89 43 08 mov %rax,0x8(%rbx) - 66352121: 48 89 3e mov %rdi,(%rsi) - 66352124: e8 1f 01 00 00 callq 66352248 <_unlock> - 66352129: 31 c0 xor %eax,%eax - 6635212b: 48 83 c4 28 add $0x28,%rsp - 6635212f: 5b pop %rbx - 66352130: 5e pop %rsi - 66352131: 5f pop %rdi - 66352132: 5d pop %rbp - 66352133: c3 retq - 66352134: 48 8b 0b mov (%rbx),%rcx - 66352137: 48 29 ce sub %rcx,%rsi - 6635213a: 48 89 f0 mov %rsi,%rax - 6635213d: 48 c1 f8 03 sar $0x3,%rax - 66352141: 48 c1 e0 04 shl $0x4,%rax - 66352145: 48 89 c2 mov %rax,%rdx - 66352148: 48 89 c5 mov %rax,%rbp - 6635214b: e8 f0 00 00 00 callq 66352240 - 66352150: 48 85 c0 test %rax,%rax - 66352153: 74 42 je 66352197 <_register_onexit_function+0xb7> - 66352155: 48 89 03 mov %rax,(%rbx) - 66352158: 48 01 c6 add %rax,%rsi - 6635215b: 48 01 e8 add %rbp,%rax - 6635215e: 48 89 43 10 mov %rax,0x10(%rbx) - 66352162: eb b0 jmp 66352114 <_register_onexit_function+0x34> - 66352164: ba 08 00 00 00 mov $0x8,%edx - 66352169: b9 20 00 00 00 mov $0x20,%ecx - 6635216e: e8 0d ff ff ff callq 66352080 - 66352173: 48 85 c0 test %rax,%rax - 66352176: 48 89 c6 mov %rax,%rsi - 66352179: 48 89 03 mov %rax,(%rbx) - 6635217c: 74 19 je 66352197 <_register_onexit_function+0xb7> - 6635217e: 48 89 43 08 mov %rax,0x8(%rbx) - 66352182: 48 8d 80 00 01 00 00 lea 0x100(%rax),%rax - 66352189: 48 89 43 10 mov %rax,0x10(%rbx) - 6635218d: eb 80 jmp 6635210f <_register_onexit_function+0x2f> - 6635218f: 90 nop - 66352190: b8 ff ff ff ff mov $0xffffffff,%eax - 66352195: eb 94 jmp 6635212b <_register_onexit_function+0x4b> - 66352197: b9 08 00 00 00 mov $0x8,%ecx - 6635219c: e8 a7 00 00 00 callq 66352248 <_unlock> - 663521a1: b8 ff ff ff ff mov $0xffffffff,%eax - 663521a6: eb 83 jmp 6635212b <_register_onexit_function+0x4b> - 663521a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663521af: 00 +00000000663520c0 : + 663520c0: b8 01 00 00 00 mov $0x1,%eax + 663520c5: c3 retq + 663520c6: 90 nop + 663520c7: 90 nop + 663520c8: 90 nop + 663520c9: 90 nop + 663520ca: 90 nop + 663520cb: 90 nop + 663520cc: 90 nop + 663520cd: 90 nop + 663520ce: 90 nop + 663520cf: 90 nop -00000000663521b0 <_execute_onexit_table>: - 663521b0: 57 push %rdi - 663521b1: 56 push %rsi - 663521b2: 53 push %rbx - 663521b3: 48 83 ec 20 sub $0x20,%rsp - 663521b7: 48 89 cf mov %rcx,%rdi - 663521ba: b9 08 00 00 00 mov $0x8,%ecx - 663521bf: e8 8c 00 00 00 callq 66352250 <_lock> - 663521c4: 48 8b 37 mov (%rdi),%rsi - 663521c7: b9 08 00 00 00 mov $0x8,%ecx - 663521cc: 48 c7 47 10 00 00 00 movq $0x0,0x10(%rdi) - 663521d3: 00 - 663521d4: 48 8b 5f 08 mov 0x8(%rdi),%rbx - 663521d8: 48 c7 07 00 00 00 00 movq $0x0,(%rdi) - 663521df: 48 c7 47 08 00 00 00 movq $0x0,0x8(%rdi) - 663521e6: 00 - 663521e7: e8 5c 00 00 00 callq 66352248 <_unlock> - 663521ec: 48 85 f6 test %rsi,%rsi - 663521ef: 74 24 je 66352215 <_execute_onexit_table+0x65> - 663521f1: 48 83 eb 08 sub $0x8,%rbx - 663521f5: 48 39 de cmp %rbx,%rsi - 663521f8: 77 13 ja 6635220d <_execute_onexit_table+0x5d> - 663521fa: 48 8b 03 mov (%rbx),%rax - 663521fd: 48 85 c0 test %rax,%rax - 66352200: 74 ef je 663521f1 <_execute_onexit_table+0x41> - 66352202: ff d0 callq *%rax - 66352204: 48 83 eb 08 sub $0x8,%rbx - 66352208: 48 39 de cmp %rbx,%rsi - 6635220b: 76 ed jbe 663521fa <_execute_onexit_table+0x4a> - 6635220d: 48 89 f1 mov %rsi,%rcx - 66352210: e8 63 fe ff ff callq 66352078 - 66352215: 31 c0 xor %eax,%eax - 66352217: 48 83 c4 20 add $0x20,%rsp - 6635221b: 5b pop %rbx - 6635221c: 5e pop %rsi - 6635221d: 5f pop %rdi - 6635221e: c3 retq - 6635221f: 90 nop +00000000663520d0 <_wassert>: + 663520d0: 41 54 push %r12 + 663520d2: 55 push %rbp + 663520d3: 57 push %rdi + 663520d4: 56 push %rsi + 663520d5: 53 push %rbx + 663520d6: 48 81 ec 50 02 00 00 sub $0x250,%rsp + 663520dd: 48 89 d3 mov %rdx,%rbx + 663520e0: 48 89 ce mov %rcx,%rsi + 663520e3: b9 00 40 00 00 mov $0x4000,%ecx + 663520e8: 45 89 c4 mov %r8d,%r12d + 663520eb: e8 30 02 00 00 callq 66352320 + 663520f0: 48 85 db test %rbx,%rbx + 663520f3: 48 89 c5 mov %rax,%rbp + 663520f6: 0f 84 c4 00 00 00 je 663521c0 <_wassert+0xf0> + 663520fc: 66 83 3b 00 cmpw $0x0,(%rbx) + 66352100: 48 8d 05 b9 20 00 00 lea 0x20b9(%rip),%rax # 663541c0 <.rdata> + 66352107: 48 0f 44 d8 cmove %rax,%rbx + 6635210b: 48 85 f6 test %rsi,%rsi + 6635210e: 0f 84 9d 00 00 00 je 663521b1 <_wassert+0xe1> + 66352114: 66 83 3e 00 cmpw $0x0,(%rsi) + 66352118: 48 8d 05 b5 20 00 00 lea 0x20b5(%rip),%rax # 663541d4 <.rdata+0x14> + 6635211f: 48 0f 44 f0 cmove %rax,%rsi + 66352123: 31 c9 xor %ecx,%ecx + 66352125: 41 b8 04 01 00 00 mov $0x104,%r8d + 6635212b: 48 8d 7c 24 40 lea 0x40(%rsp),%rdi + 66352130: 48 89 fa mov %rdi,%rdx + 66352133: ff 15 bf 70 00 00 callq *0x70bf(%rip) # 663591f8 <__imp_GetModuleFileNameW> + 66352139: 85 c0 test %eax,%eax + 6635213b: 74 63 je 663521a0 <_wassert+0xd0> + 6635213d: 48 89 74 24 30 mov %rsi,0x30(%rsp) + 66352142: 49 89 f9 mov %rdi,%r9 + 66352145: ba ff 1f 00 00 mov $0x1fff,%edx + 6635214a: 48 89 e9 mov %rbp,%rcx + 6635214d: 44 89 64 24 28 mov %r12d,0x28(%rsp) + 66352152: 4c 8d 05 7f 20 00 00 lea 0x207f(%rip),%r8 # 663541d8 <.rdata+0x18> + 66352159: 48 89 5c 24 20 mov %rbx,0x20(%rsp) + 6635215e: e8 ed 01 00 00 callq 66352350 <_snwprintf> + 66352163: 48 8b 05 06 22 00 00 mov 0x2206(%rip),%rax # 66354370 <.refptr.mingw_app_type> + 6635216a: 8b 00 mov (%rax),%eax + 6635216c: 85 c0 test %eax,%eax + 6635216e: 74 75 je 663521e5 <_wassert+0x115> + 66352170: 31 c9 xor %ecx,%ecx + 66352172: 41 b9 12 20 01 00 mov $0x12012,%r9d + 66352178: 48 89 ea mov %rbp,%rdx + 6635217b: 4c 8d 05 ee 20 00 00 lea 0x20ee(%rip),%r8 # 66354270 <.rdata+0xb0> + 66352182: ff 15 a8 71 00 00 callq *0x71a8(%rip) # 66359330 <__imp_MessageBoxW> + 66352188: 83 f8 03 cmp $0x3,%eax + 6635218b: 74 44 je 663521d1 <_wassert+0x101> + 6635218d: 83 f8 05 cmp $0x5,%eax + 66352190: 75 3a jne 663521cc <_wassert+0xfc> + 66352192: 48 81 c4 50 02 00 00 add $0x250,%rsp + 66352199: 5b pop %rbx + 6635219a: 5e pop %rsi + 6635219b: 5f pop %rdi + 6635219c: 5d pop %rbp + 6635219d: 41 5c pop %r12 + 6635219f: c3 retq + 663521a0: 48 8d 15 19 20 00 00 lea 0x2019(%rip),%rdx # 663541c0 <.rdata> + 663521a7: 48 89 f9 mov %rdi,%rcx + 663521aa: e8 41 01 00 00 callq 663522f0 + 663521af: eb 8c jmp 6635213d <_wassert+0x6d> + 663521b1: 48 8d 35 1c 20 00 00 lea 0x201c(%rip),%rsi # 663541d4 <.rdata+0x14> + 663521b8: e9 66 ff ff ff jmpq 66352123 <_wassert+0x53> + 663521bd: 0f 1f 00 nopl (%rax) + 663521c0: 48 8d 1d f9 1f 00 00 lea 0x1ff9(%rip),%rbx # 663541c0 <.rdata> + 663521c7: e9 3f ff ff ff jmpq 6635210b <_wassert+0x3b> + 663521cc: e8 77 01 00 00 callq 66352348 + 663521d1: b9 16 00 00 00 mov $0x16,%ecx + 663521d6: e8 3d 01 00 00 callq 66352318 + 663521db: b9 03 00 00 00 mov $0x3,%ecx + 663521e0: e8 7b 01 00 00 callq 66352360 <_exit> + 663521e5: b9 02 00 00 00 mov $0x2,%ecx + 663521ea: e8 f1 02 00 00 callq 663524e0 <__acrt_iob_func> + 663521ef: 48 8d 15 6a 20 00 00 lea 0x206a(%rip),%rdx # 66354260 <.rdata+0xa0> + 663521f6: 49 89 e8 mov %rbp,%r8 + 663521f9: 48 89 c1 mov %rax,%rcx + 663521fc: e8 2f 01 00 00 callq 66352330 + 66352201: e8 42 01 00 00 callq 66352348 + 66352206: 90 nop + 66352207: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6635220e: 00 00 -0000000066352220 <__acrt_iob_func>: - 66352220: 53 push %rbx - 66352221: 48 83 ec 20 sub $0x20,%rsp - 66352225: 89 cb mov %ecx,%ebx - 66352227: e8 2c 00 00 00 callq 66352258 <__iob_func> - 6635222c: 89 d9 mov %ebx,%ecx - 6635222e: 48 8d 14 49 lea (%rcx,%rcx,2),%rdx - 66352232: 48 c1 e2 04 shl $0x4,%rdx - 66352236: 48 01 d0 add %rdx,%rax - 66352239: 48 83 c4 20 add $0x20,%rsp - 6635223d: 5b pop %rbx - 6635223e: c3 retq - 6635223f: 90 nop - -0000000066352240 : - 66352240: ff 25 b2 70 00 00 jmpq *0x70b2(%rip) # 663592f8 <__imp_realloc> - 66352246: 90 nop - 66352247: 90 nop - -0000000066352248 <_unlock>: - 66352248: ff 25 6a 70 00 00 jmpq *0x706a(%rip) # 663592b8 <__imp__unlock> - 6635224e: 90 nop - 6635224f: 90 nop - -0000000066352250 <_lock>: - 66352250: ff 25 52 70 00 00 jmpq *0x7052(%rip) # 663592a8 <__imp__lock> - 66352256: 90 nop - 66352257: 90 nop - -0000000066352258 <__iob_func>: - 66352258: ff 25 2a 70 00 00 jmpq *0x702a(%rip) # 66359288 <__imp___iob_func> - 6635225e: 90 nop - 6635225f: 90 nop - -0000000066352260 : - 66352260: ff 25 ca 70 00 00 jmpq *0x70ca(%rip) # 66359330 <__imp_MessageBoxW> - 66352266: 90 nop - 66352267: 90 nop - 66352268: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635226f: 00 - -0000000066352270 : - 66352270: ff 25 02 70 00 00 jmpq *0x7002(%rip) # 66359278 <__imp_VirtualQuery> - 66352276: 90 nop - 66352277: 90 nop - -0000000066352278 : - 66352278: ff 25 f2 6f 00 00 jmpq *0x6ff2(%rip) # 66359270 <__imp_VirtualProtect> - 6635227e: 90 nop - 6635227f: 90 nop - -0000000066352280 : - 66352280: ff 25 e2 6f 00 00 jmpq *0x6fe2(%rip) # 66359268 <__imp_UnhandledExceptionFilter> - 66352286: 90 nop - 66352287: 90 nop - -0000000066352288 : - 66352288: ff 25 d2 6f 00 00 jmpq *0x6fd2(%rip) # 66359260 <__imp_TlsGetValue> - 6635228e: 90 nop - 6635228f: 90 nop - -0000000066352290 : - 66352290: ff 25 c2 6f 00 00 jmpq *0x6fc2(%rip) # 66359258 <__imp_TerminateProcess> - 66352296: 90 nop - 66352297: 90 nop - -0000000066352298 : - 66352298: ff 25 b2 6f 00 00 jmpq *0x6fb2(%rip) # 66359250 <__imp_Sleep> - 6635229e: 90 nop - 6635229f: 90 nop - -00000000663522a0 : - 663522a0: ff 25 a2 6f 00 00 jmpq *0x6fa2(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> - 663522a6: 90 nop - 663522a7: 90 nop - -00000000663522a8 : - 663522a8: ff 25 92 6f 00 00 jmpq *0x6f92(%rip) # 66359240 <__imp_RtlVirtualUnwind> - 663522ae: 90 nop - 663522af: 90 nop - -00000000663522b0 : - 663522b0: ff 25 82 6f 00 00 jmpq *0x6f82(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> - 663522b6: 90 nop - 663522b7: 90 nop - -00000000663522b8 : - 663522b8: ff 25 72 6f 00 00 jmpq *0x6f72(%rip) # 66359230 <__imp_RtlCaptureContext> - 663522be: 90 nop - 663522bf: 90 nop - -00000000663522c0 : - 663522c0: ff 25 62 6f 00 00 jmpq *0x6f62(%rip) # 66359228 <__imp_RtlAddFunctionTable> - 663522c6: 90 nop - 663522c7: 90 nop - -00000000663522c8 : - 663522c8: ff 25 52 6f 00 00 jmpq *0x6f52(%rip) # 66359220 <__imp_QueryPerformanceCounter> - 663522ce: 90 nop - 663522cf: 90 nop - -00000000663522d0 : - 663522d0: ff 25 42 6f 00 00 jmpq *0x6f42(%rip) # 66359218 <__imp_LeaveCriticalSection> - 663522d6: 90 nop - 663522d7: 90 nop - -00000000663522d8 : - 663522d8: ff 25 32 6f 00 00 jmpq *0x6f32(%rip) # 66359210 <__imp_InitializeCriticalSection> - 663522de: 90 nop +0000000066352210 <_assert>: + 66352210: 55 push %rbp + 66352211: 57 push %rdi + 66352212: 56 push %rsi + 66352213: 53 push %rbx + 66352214: 48 83 ec 38 sub $0x38,%rsp + 66352218: 48 89 d7 mov %rdx,%rdi + 6635221b: 44 89 44 24 2c mov %r8d,0x2c(%rsp) + 66352220: 48 89 cd mov %rcx,%rbp + 66352223: e8 e0 00 00 00 callq 66352308 + 66352228: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx + 6635222d: e8 ee 00 00 00 callq 66352320 + 66352232: 48 89 f9 mov %rdi,%rcx + 66352235: 48 89 c6 mov %rax,%rsi + 66352238: e8 cb 00 00 00 callq 66352308 + 6635223d: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx + 66352242: e8 d9 00 00 00 callq 66352320 + 66352247: 0f b6 4d 00 movzbl 0x0(%rbp),%ecx + 6635224b: 48 89 c3 mov %rax,%rbx + 6635224e: 44 8b 44 24 2c mov 0x2c(%rsp),%r8d + 66352253: 84 c9 test %cl,%cl + 66352255: 74 79 je 663522d0 <_assert+0xc0> + 66352257: 45 31 c9 xor %r9d,%r9d + 6635225a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66352260: 66 42 89 0c 4e mov %cx,(%rsi,%r9,2) + 66352265: 49 83 c1 01 add $0x1,%r9 + 66352269: 42 0f b6 4c 0d 00 movzbl 0x0(%rbp,%r9,1),%ecx + 6635226f: 84 c9 test %cl,%cl + 66352271: 75 ed jne 66352260 <_assert+0x50> + 66352273: 4a 8d 04 4e lea (%rsi,%r9,2),%rax + 66352277: 31 c9 xor %ecx,%ecx + 66352279: 66 89 08 mov %cx,(%rax) + 6635227c: 0f b6 0f movzbl (%rdi),%ecx + 6635227f: 84 c9 test %cl,%cl + 66352281: 74 5d je 663522e0 <_assert+0xd0> + 66352283: 45 31 c9 xor %r9d,%r9d + 66352286: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6635228d: 00 00 00 + 66352290: 66 42 89 0c 4b mov %cx,(%rbx,%r9,2) + 66352295: 49 83 c1 01 add $0x1,%r9 + 66352299: 42 0f b6 0c 0f movzbl (%rdi,%r9,1),%ecx + 6635229e: 84 c9 test %cl,%cl + 663522a0: 75 ee jne 66352290 <_assert+0x80> + 663522a2: 4a 8d 04 4b lea (%rbx,%r9,2),%rax + 663522a6: 31 d2 xor %edx,%edx + 663522a8: 48 89 f1 mov %rsi,%rcx + 663522ab: 66 89 10 mov %dx,(%rax) + 663522ae: 48 89 da mov %rbx,%rdx + 663522b1: e8 1a fe ff ff callq 663520d0 <_wassert> + 663522b6: 48 89 f1 mov %rsi,%rcx + 663522b9: e8 7a 00 00 00 callq 66352338 + 663522be: 48 89 d9 mov %rbx,%rcx + 663522c1: 48 83 c4 38 add $0x38,%rsp + 663522c5: 5b pop %rbx + 663522c6: 5e pop %rsi + 663522c7: 5f pop %rdi + 663522c8: 5d pop %rbp + 663522c9: e9 6a 00 00 00 jmpq 66352338 + 663522ce: 66 90 xchg %ax,%ax + 663522d0: 31 c9 xor %ecx,%ecx + 663522d2: 48 89 f0 mov %rsi,%rax + 663522d5: 66 89 08 mov %cx,(%rax) + 663522d8: 0f b6 0f movzbl (%rdi),%ecx + 663522db: 84 c9 test %cl,%cl + 663522dd: 75 a4 jne 66352283 <_assert+0x73> 663522df: 90 nop - -00000000663522e0 : - 663522e0: ff 25 22 6f 00 00 jmpq *0x6f22(%rip) # 66359208 <__imp_GetTickCount> + 663522e0: 48 89 d8 mov %rbx,%rax + 663522e3: eb c1 jmp 663522a6 <_assert+0x96> + 663522e5: 90 nop 663522e6: 90 nop 663522e7: 90 nop - -00000000663522e8 : - 663522e8: ff 25 12 6f 00 00 jmpq *0x6f12(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> + 663522e8: 90 nop + 663522e9: 90 nop + 663522ea: 90 nop + 663522eb: 90 nop + 663522ec: 90 nop + 663522ed: 90 nop 663522ee: 90 nop 663522ef: 90 nop -00000000663522f0 : - 663522f0: ff 25 02 6f 00 00 jmpq *0x6f02(%rip) # 663591f8 <__imp_GetModuleFileNameW> +00000000663522f0 : + 663522f0: ff 25 2a 70 00 00 jmpq *0x702a(%rip) # 66359320 <__imp_wcscpy> 663522f6: 90 nop 663522f7: 90 nop -00000000663522f8 : - 663522f8: ff 25 f2 6e 00 00 jmpq *0x6ef2(%rip) # 663591f0 <__imp_GetLastError> +00000000663522f8 : + 663522f8: ff 25 1a 70 00 00 jmpq *0x701a(%rip) # 66359318 <__imp_vfprintf> 663522fe: 90 nop 663522ff: 90 nop -0000000066352300 : - 66352300: ff 25 e2 6e 00 00 jmpq *0x6ee2(%rip) # 663591e8 <__imp_GetCurrentThreadId> +0000000066352300 : + 66352300: ff 25 0a 70 00 00 jmpq *0x700a(%rip) # 66359310 <__imp_strncmp> 66352306: 90 nop 66352307: 90 nop -0000000066352308 : - 66352308: ff 25 d2 6e 00 00 jmpq *0x6ed2(%rip) # 663591e0 <__imp_GetCurrentProcessId> +0000000066352308 : + 66352308: ff 25 fa 6f 00 00 jmpq *0x6ffa(%rip) # 66359308 <__imp_strlen> 6635230e: 90 nop 6635230f: 90 nop -0000000066352310 : - 66352310: ff 25 c2 6e 00 00 jmpq *0x6ec2(%rip) # 663591d8 <__imp_GetCurrentProcess> +0000000066352310 : + 66352310: ff 25 ea 6f 00 00 jmpq *0x6fea(%rip) # 66359300 <__imp_signal> 66352316: 90 nop 66352317: 90 nop -0000000066352318 : - 66352318: ff 25 b2 6e 00 00 jmpq *0x6eb2(%rip) # 663591d0 <__imp_EnterCriticalSection> +0000000066352318 : + 66352318: ff 25 d2 6f 00 00 jmpq *0x6fd2(%rip) # 663592f0 <__imp_raise> 6635231e: 90 nop 6635231f: 90 nop -0000000066352320 : - 66352320: ff 25 a2 6e 00 00 jmpq *0x6ea2(%rip) # 663591c8 <__IAT_start__> +0000000066352320 : + 66352320: ff 25 c2 6f 00 00 jmpq *0x6fc2(%rip) # 663592e8 <__imp_malloc> 66352326: 90 nop 66352327: 90 nop - 66352328: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635232f: 00 -0000000066352330 <__report_error>: - 66352330: 56 push %rsi - 66352331: 53 push %rbx - 66352332: 48 83 ec 38 sub $0x38,%rsp - 66352336: 48 8d 44 24 58 lea 0x58(%rsp),%rax - 6635233b: 48 89 cb mov %rcx,%rbx - 6635233e: b9 02 00 00 00 mov $0x2,%ecx - 66352343: 48 89 54 24 58 mov %rdx,0x58(%rsp) - 66352348: 4c 89 44 24 60 mov %r8,0x60(%rsp) - 6635234d: 4c 89 4c 24 68 mov %r9,0x68(%rsp) - 66352352: 48 89 44 24 28 mov %rax,0x28(%rsp) - 66352357: e8 c4 fe ff ff callq 66352220 <__acrt_iob_func> - 6635235c: 41 b8 1b 00 00 00 mov $0x1b,%r8d - 66352362: ba 01 00 00 00 mov $0x1,%edx - 66352367: 48 8d 0d 32 1d 00 00 lea 0x1d32(%rip),%rcx # 663540a0 <.rdata> - 6635236e: 49 89 c1 mov %rax,%r9 - 66352371: e8 f2 fc ff ff callq 66352068 - 66352376: 48 8b 74 24 28 mov 0x28(%rsp),%rsi - 6635237b: b9 02 00 00 00 mov $0x2,%ecx - 66352380: e8 9b fe ff ff callq 66352220 <__acrt_iob_func> - 66352385: 48 89 da mov %rbx,%rdx - 66352388: 48 89 c1 mov %rax,%rcx - 6635238b: 49 89 f0 mov %rsi,%r8 - 6635238e: e8 a5 fc ff ff callq 66352038 - 66352393: e8 f0 fc ff ff callq 66352088 - 66352398: 90 nop - 66352399: 90 nop - 6635239a: 90 nop - 6635239b: 90 nop - 6635239c: 90 nop - 6635239d: 90 nop - 6635239e: 90 nop - 6635239f: 90 nop +0000000066352328 : + 66352328: ff 25 b2 6f 00 00 jmpq *0x6fb2(%rip) # 663592e0 <__imp_fwrite> + 6635232e: 90 nop + 6635232f: 90 nop -00000000663523a0 : - 663523a0: 48 83 ec 18 sub $0x18,%rsp - 663523a4: 0f ae 5c 24 0c stmxcsr 0xc(%rsp) - 663523a9: 81 4c 24 0c 40 80 00 orl $0x8040,0xc(%rsp) - 663523b0: 00 - 663523b1: 0f ae 54 24 0c ldmxcsr 0xc(%rsp) - 663523b6: 48 83 c4 18 add $0x18,%rsp - 663523ba: c3 retq - 663523bb: 90 nop - 663523bc: 90 nop - 663523bd: 90 nop - 663523be: 90 nop - 663523bf: 90 nop +0000000066352330 : + 66352330: ff 25 a2 6f 00 00 jmpq *0x6fa2(%rip) # 663592d8 <__imp_fwprintf> + 66352336: 90 nop + 66352337: 90 nop -00000000663523c0 : - 663523c0: e9 cb ef fe ff jmpq 66341390 <__gcc_register_frame> - 663523c5: 90 nop - 663523c6: 90 nop - 663523c7: 90 nop - 663523c8: 90 nop - 663523c9: 90 nop - 663523ca: 90 nop - 663523cb: 90 nop - 663523cc: 90 nop - 663523cd: 90 nop - 663523ce: 90 nop - 663523cf: 90 nop +0000000066352338 : + 66352338: ff 25 92 6f 00 00 jmpq *0x6f92(%rip) # 663592d0 <__imp_free> + 6635233e: 90 nop + 6635233f: 90 nop -00000000663523d0 <__CTOR_LIST__>: - 663523d0: ff (bad) - 663523d1: ff (bad) - 663523d2: ff (bad) - 663523d3: ff (bad) - 663523d4: ff (bad) - 663523d5: ff (bad) - 663523d6: ff (bad) - 663523d7: ff .byte 0xff +0000000066352340 : + 66352340: ff 25 82 6f 00 00 jmpq *0x6f82(%rip) # 663592c8 <__imp_calloc> + 66352346: 90 nop + 66352347: 90 nop -00000000663523d8 <.ctors>: - 663523d8: a0 .byte 0xa0 - 663523d9: 23 35 66 00 00 00 and 0x66(%rip),%esi # 66352445 <__DTOR_LIST__+0x55> +0000000066352348 : + 66352348: ff 25 72 6f 00 00 jmpq *0x6f72(%rip) # 663592c0 <__imp_abort> + 6635234e: 90 nop + 6635234f: 90 nop + +0000000066352350 <_snwprintf>: + 66352350: ff 25 5a 6f 00 00 jmpq *0x6f5a(%rip) # 663592b0 <__imp__snwprintf> + 66352356: 90 nop + 66352357: 90 nop + +0000000066352358 <_initterm>: + 66352358: ff 25 42 6f 00 00 jmpq *0x6f42(%rip) # 663592a0 <__imp__initterm> + 6635235e: 90 nop + 6635235f: 90 nop + +0000000066352360 <_exit>: + 66352360: ff 25 32 6f 00 00 jmpq *0x6f32(%rip) # 66359298 <__imp__exit> + 66352366: 90 nop + 66352367: 90 nop + +0000000066352368 <_amsg_exit>: + 66352368: ff 25 22 6f 00 00 jmpq *0x6f22(%rip) # 66359290 <__imp__amsg_exit> + 6635236e: 90 nop + 6635236f: 90 nop + +0000000066352370 <_initialize_onexit_table>: + 66352370: 48 85 c9 test %rcx,%rcx + 66352373: 74 1a je 6635238f <_initialize_onexit_table+0x1f> + 66352375: 31 c0 xor %eax,%eax + 66352377: 48 c7 41 10 00 00 00 movq $0x0,0x10(%rcx) + 6635237e: 00 + 6635237f: 48 c7 41 08 00 00 00 movq $0x0,0x8(%rcx) + 66352386: 00 + 66352387: 48 c7 01 00 00 00 00 movq $0x0,(%rcx) + 6635238e: c3 retq + 6635238f: b8 ff ff ff ff mov $0xffffffff,%eax + 66352394: c3 retq + 66352395: 90 nop + 66352396: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6635239d: 00 00 00 + +00000000663523a0 <_register_onexit_function>: + 663523a0: 55 push %rbp + 663523a1: 57 push %rdi + 663523a2: 56 push %rsi + 663523a3: 53 push %rbx + 663523a4: 48 83 ec 28 sub $0x28,%rsp + 663523a8: 48 85 c9 test %rcx,%rcx + 663523ab: 48 89 cb mov %rcx,%rbx + 663523ae: 48 89 d7 mov %rdx,%rdi + 663523b1: 0f 84 99 00 00 00 je 66352450 <_register_onexit_function+0xb0> + 663523b7: b9 08 00 00 00 mov $0x8,%ecx + 663523bc: e8 4f 01 00 00 callq 66352510 <_lock> + 663523c1: 48 83 3b 00 cmpq $0x0,(%rbx) + 663523c5: 74 5d je 66352424 <_register_onexit_function+0x84> + 663523c7: 48 8b 73 08 mov 0x8(%rbx),%rsi + 663523cb: 48 8b 43 10 mov 0x10(%rbx),%rax + 663523cf: 48 39 f0 cmp %rsi,%rax + 663523d2: 74 20 je 663523f4 <_register_onexit_function+0x54> + 663523d4: 48 8d 46 08 lea 0x8(%rsi),%rax + 663523d8: b9 08 00 00 00 mov $0x8,%ecx + 663523dd: 48 89 43 08 mov %rax,0x8(%rbx) + 663523e1: 48 89 3e mov %rdi,(%rsi) + 663523e4: e8 1f 01 00 00 callq 66352508 <_unlock> + 663523e9: 31 c0 xor %eax,%eax + 663523eb: 48 83 c4 28 add $0x28,%rsp + 663523ef: 5b pop %rbx + 663523f0: 5e pop %rsi + 663523f1: 5f pop %rdi + 663523f2: 5d pop %rbp + 663523f3: c3 retq + 663523f4: 48 8b 0b mov (%rbx),%rcx + 663523f7: 48 29 ce sub %rcx,%rsi + 663523fa: 48 89 f0 mov %rsi,%rax + 663523fd: 48 c1 f8 03 sar $0x3,%rax + 66352401: 48 c1 e0 04 shl $0x4,%rax + 66352405: 48 89 c2 mov %rax,%rdx + 66352408: 48 89 c5 mov %rax,%rbp + 6635240b: e8 f0 00 00 00 callq 66352500 + 66352410: 48 85 c0 test %rax,%rax + 66352413: 74 42 je 66352457 <_register_onexit_function+0xb7> + 66352415: 48 89 03 mov %rax,(%rbx) + 66352418: 48 01 c6 add %rax,%rsi + 6635241b: 48 01 e8 add %rbp,%rax + 6635241e: 48 89 43 10 mov %rax,0x10(%rbx) + 66352422: eb b0 jmp 663523d4 <_register_onexit_function+0x34> + 66352424: ba 08 00 00 00 mov $0x8,%edx + 66352429: b9 20 00 00 00 mov $0x20,%ecx + 6635242e: e8 0d ff ff ff callq 66352340 + 66352433: 48 85 c0 test %rax,%rax + 66352436: 48 89 c6 mov %rax,%rsi + 66352439: 48 89 03 mov %rax,(%rbx) + 6635243c: 74 19 je 66352457 <_register_onexit_function+0xb7> + 6635243e: 48 89 43 08 mov %rax,0x8(%rbx) + 66352442: 48 8d 80 00 01 00 00 lea 0x100(%rax),%rax + 66352449: 48 89 43 10 mov %rax,0x10(%rbx) + 6635244d: eb 80 jmp 663523cf <_register_onexit_function+0x2f> + 6635244f: 90 nop + 66352450: b8 ff ff ff ff mov $0xffffffff,%eax + 66352455: eb 94 jmp 663523eb <_register_onexit_function+0x4b> + 66352457: b9 08 00 00 00 mov $0x8,%ecx + 6635245c: e8 a7 00 00 00 callq 66352508 <_unlock> + 66352461: b8 ff ff ff ff mov $0xffffffff,%eax + 66352466: eb 83 jmp 663523eb <_register_onexit_function+0x4b> + 66352468: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635246f: 00 + +0000000066352470 <_execute_onexit_table>: + 66352470: 57 push %rdi + 66352471: 56 push %rsi + 66352472: 53 push %rbx + 66352473: 48 83 ec 20 sub $0x20,%rsp + 66352477: 48 89 cf mov %rcx,%rdi + 6635247a: b9 08 00 00 00 mov $0x8,%ecx + 6635247f: e8 8c 00 00 00 callq 66352510 <_lock> + 66352484: 48 8b 37 mov (%rdi),%rsi + 66352487: b9 08 00 00 00 mov $0x8,%ecx + 6635248c: 48 c7 47 10 00 00 00 movq $0x0,0x10(%rdi) + 66352493: 00 + 66352494: 48 8b 5f 08 mov 0x8(%rdi),%rbx + 66352498: 48 c7 07 00 00 00 00 movq $0x0,(%rdi) + 6635249f: 48 c7 47 08 00 00 00 movq $0x0,0x8(%rdi) + 663524a6: 00 + 663524a7: e8 5c 00 00 00 callq 66352508 <_unlock> + 663524ac: 48 85 f6 test %rsi,%rsi + 663524af: 74 24 je 663524d5 <_execute_onexit_table+0x65> + 663524b1: 48 83 eb 08 sub $0x8,%rbx + 663524b5: 48 39 de cmp %rbx,%rsi + 663524b8: 77 13 ja 663524cd <_execute_onexit_table+0x5d> + 663524ba: 48 8b 03 mov (%rbx),%rax + 663524bd: 48 85 c0 test %rax,%rax + 663524c0: 74 ef je 663524b1 <_execute_onexit_table+0x41> + 663524c2: ff d0 callq *%rax + 663524c4: 48 83 eb 08 sub $0x8,%rbx + 663524c8: 48 39 de cmp %rbx,%rsi + 663524cb: 76 ed jbe 663524ba <_execute_onexit_table+0x4a> + 663524cd: 48 89 f1 mov %rsi,%rcx + 663524d0: e8 63 fe ff ff callq 66352338 + 663524d5: 31 c0 xor %eax,%eax + 663524d7: 48 83 c4 20 add $0x20,%rsp + 663524db: 5b pop %rbx + 663524dc: 5e pop %rsi + 663524dd: 5f pop %rdi + 663524de: c3 retq + 663524df: 90 nop + +00000000663524e0 <__acrt_iob_func>: + 663524e0: 53 push %rbx + 663524e1: 48 83 ec 20 sub $0x20,%rsp + 663524e5: 89 cb mov %ecx,%ebx + 663524e7: e8 2c 00 00 00 callq 66352518 <__iob_func> + 663524ec: 89 d9 mov %ebx,%ecx + 663524ee: 48 8d 14 49 lea (%rcx,%rcx,2),%rdx + 663524f2: 48 c1 e2 04 shl $0x4,%rdx + 663524f6: 48 01 d0 add %rdx,%rax + 663524f9: 48 83 c4 20 add $0x20,%rsp + 663524fd: 5b pop %rbx + 663524fe: c3 retq + 663524ff: 90 nop + +0000000066352500 : + 66352500: ff 25 f2 6d 00 00 jmpq *0x6df2(%rip) # 663592f8 <__imp_realloc> + 66352506: 90 nop + 66352507: 90 nop + +0000000066352508 <_unlock>: + 66352508: ff 25 aa 6d 00 00 jmpq *0x6daa(%rip) # 663592b8 <__imp__unlock> + 6635250e: 90 nop + 6635250f: 90 nop + +0000000066352510 <_lock>: + 66352510: ff 25 92 6d 00 00 jmpq *0x6d92(%rip) # 663592a8 <__imp__lock> + 66352516: 90 nop + 66352517: 90 nop + +0000000066352518 <__iob_func>: + 66352518: ff 25 6a 6d 00 00 jmpq *0x6d6a(%rip) # 66359288 <__imp___iob_func> + 6635251e: 90 nop + 6635251f: 90 nop + +0000000066352520 : + 66352520: ff 25 0a 6e 00 00 jmpq *0x6e0a(%rip) # 66359330 <__imp_MessageBoxW> + 66352526: 90 nop + 66352527: 90 nop + 66352528: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635252f: 00 + +0000000066352530 : + 66352530: ff 25 42 6d 00 00 jmpq *0x6d42(%rip) # 66359278 <__imp_VirtualQuery> + 66352536: 90 nop + 66352537: 90 nop + +0000000066352538 : + 66352538: ff 25 32 6d 00 00 jmpq *0x6d32(%rip) # 66359270 <__imp_VirtualProtect> + 6635253e: 90 nop + 6635253f: 90 nop + +0000000066352540 : + 66352540: ff 25 22 6d 00 00 jmpq *0x6d22(%rip) # 66359268 <__imp_UnhandledExceptionFilter> + 66352546: 90 nop + 66352547: 90 nop + +0000000066352548 : + 66352548: ff 25 12 6d 00 00 jmpq *0x6d12(%rip) # 66359260 <__imp_TlsGetValue> + 6635254e: 90 nop + 6635254f: 90 nop + +0000000066352550 : + 66352550: ff 25 02 6d 00 00 jmpq *0x6d02(%rip) # 66359258 <__imp_TerminateProcess> + 66352556: 90 nop + 66352557: 90 nop + +0000000066352558 : + 66352558: ff 25 f2 6c 00 00 jmpq *0x6cf2(%rip) # 66359250 <__imp_Sleep> + 6635255e: 90 nop + 6635255f: 90 nop + +0000000066352560 : + 66352560: ff 25 e2 6c 00 00 jmpq *0x6ce2(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> + 66352566: 90 nop + 66352567: 90 nop + +0000000066352568 : + 66352568: ff 25 d2 6c 00 00 jmpq *0x6cd2(%rip) # 66359240 <__imp_RtlVirtualUnwind> + 6635256e: 90 nop + 6635256f: 90 nop + +0000000066352570 : + 66352570: ff 25 c2 6c 00 00 jmpq *0x6cc2(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> + 66352576: 90 nop + 66352577: 90 nop + +0000000066352578 : + 66352578: ff 25 b2 6c 00 00 jmpq *0x6cb2(%rip) # 66359230 <__imp_RtlCaptureContext> + 6635257e: 90 nop + 6635257f: 90 nop + +0000000066352580 : + 66352580: ff 25 a2 6c 00 00 jmpq *0x6ca2(%rip) # 66359228 <__imp_RtlAddFunctionTable> + 66352586: 90 nop + 66352587: 90 nop + +0000000066352588 : + 66352588: ff 25 92 6c 00 00 jmpq *0x6c92(%rip) # 66359220 <__imp_QueryPerformanceCounter> + 6635258e: 90 nop + 6635258f: 90 nop + +0000000066352590 : + 66352590: ff 25 82 6c 00 00 jmpq *0x6c82(%rip) # 66359218 <__imp_LeaveCriticalSection> + 66352596: 90 nop + 66352597: 90 nop + +0000000066352598 : + 66352598: ff 25 72 6c 00 00 jmpq *0x6c72(%rip) # 66359210 <__imp_InitializeCriticalSection> + 6635259e: 90 nop + 6635259f: 90 nop + +00000000663525a0 : + 663525a0: ff 25 62 6c 00 00 jmpq *0x6c62(%rip) # 66359208 <__imp_GetTickCount> + 663525a6: 90 nop + 663525a7: 90 nop + +00000000663525a8 : + 663525a8: ff 25 52 6c 00 00 jmpq *0x6c52(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> + 663525ae: 90 nop + 663525af: 90 nop + +00000000663525b0 : + 663525b0: ff 25 42 6c 00 00 jmpq *0x6c42(%rip) # 663591f8 <__imp_GetModuleFileNameW> + 663525b6: 90 nop + 663525b7: 90 nop + +00000000663525b8 : + 663525b8: ff 25 32 6c 00 00 jmpq *0x6c32(%rip) # 663591f0 <__imp_GetLastError> + 663525be: 90 nop + 663525bf: 90 nop + +00000000663525c0 : + 663525c0: ff 25 22 6c 00 00 jmpq *0x6c22(%rip) # 663591e8 <__imp_GetCurrentThreadId> + 663525c6: 90 nop + 663525c7: 90 nop + +00000000663525c8 : + 663525c8: ff 25 12 6c 00 00 jmpq *0x6c12(%rip) # 663591e0 <__imp_GetCurrentProcessId> + 663525ce: 90 nop + 663525cf: 90 nop + +00000000663525d0 : + 663525d0: ff 25 02 6c 00 00 jmpq *0x6c02(%rip) # 663591d8 <__imp_GetCurrentProcess> + 663525d6: 90 nop + 663525d7: 90 nop + +00000000663525d8 : + 663525d8: ff 25 f2 6b 00 00 jmpq *0x6bf2(%rip) # 663591d0 <__imp_EnterCriticalSection> + 663525de: 90 nop + 663525df: 90 nop + +00000000663525e0 : + 663525e0: ff 25 e2 6b 00 00 jmpq *0x6be2(%rip) # 663591c8 <__IAT_start__> + 663525e6: 90 nop + 663525e7: 90 nop + 663525e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663525ef: 00 + +00000000663525f0 <__report_error>: + 663525f0: 56 push %rsi + 663525f1: 53 push %rbx + 663525f2: 48 83 ec 38 sub $0x38,%rsp + 663525f6: 48 8d 44 24 58 lea 0x58(%rsp),%rax + 663525fb: 48 89 cb mov %rcx,%rbx + 663525fe: b9 02 00 00 00 mov $0x2,%ecx + 66352603: 48 89 54 24 58 mov %rdx,0x58(%rsp) + 66352608: 4c 89 44 24 60 mov %r8,0x60(%rsp) + 6635260d: 4c 89 4c 24 68 mov %r9,0x68(%rsp) + 66352612: 48 89 44 24 28 mov %rax,0x28(%rsp) + 66352617: e8 c4 fe ff ff callq 663524e0 <__acrt_iob_func> + 6635261c: 41 b8 1b 00 00 00 mov $0x1b,%r8d + 66352622: ba 01 00 00 00 mov $0x1,%edx + 66352627: 48 8d 0d 72 1a 00 00 lea 0x1a72(%rip),%rcx # 663540a0 <.rdata> + 6635262e: 49 89 c1 mov %rax,%r9 + 66352631: e8 f2 fc ff ff callq 66352328 + 66352636: 48 8b 74 24 28 mov 0x28(%rsp),%rsi + 6635263b: b9 02 00 00 00 mov $0x2,%ecx + 66352640: e8 9b fe ff ff callq 663524e0 <__acrt_iob_func> + 66352645: 48 89 da mov %rbx,%rdx + 66352648: 48 89 c1 mov %rax,%rcx + 6635264b: 49 89 f0 mov %rsi,%r8 + 6635264e: e8 a5 fc ff ff callq 663522f8 + 66352653: e8 f0 fc ff ff callq 66352348 + 66352658: 90 nop + 66352659: 90 nop + 6635265a: 90 nop + 6635265b: 90 nop + 6635265c: 90 nop + 6635265d: 90 nop + 6635265e: 90 nop + 6635265f: 90 nop + +0000000066352660 : + 66352660: 48 83 ec 18 sub $0x18,%rsp + 66352664: 0f ae 5c 24 0c stmxcsr 0xc(%rsp) + 66352669: 81 4c 24 0c 40 80 00 orl $0x8040,0xc(%rsp) + 66352670: 00 + 66352671: 0f ae 54 24 0c ldmxcsr 0xc(%rsp) + 66352676: 48 83 c4 18 add $0x18,%rsp + 6635267a: c3 retq + 6635267b: 90 nop + 6635267c: 90 nop + 6635267d: 90 nop + 6635267e: 90 nop + 6635267f: 90 nop + +0000000066352680 : + 66352680: e9 0b ed fe ff jmpq 66341390 <__gcc_register_frame> + 66352685: 90 nop + 66352686: 90 nop + 66352687: 90 nop + 66352688: 90 nop + 66352689: 90 nop + 6635268a: 90 nop + 6635268b: 90 nop + 6635268c: 90 nop + 6635268d: 90 nop + 6635268e: 90 nop + 6635268f: 90 nop + +0000000066352690 <__CTOR_LIST__>: + 66352690: ff (bad) + 66352691: ff (bad) + 66352692: ff (bad) + 66352693: ff (bad) + 66352694: ff (bad) + 66352695: ff (bad) + 66352696: ff (bad) + 66352697: ff .byte 0xff + +0000000066352698 <.ctors>: + 66352698: 60 (bad) + 66352699: 26 35 66 00 00 00 es xor $0x66,%eax ... -00000000663523e0 <.ctors.65535>: - 663523e0: c0 23 35 shlb $0x35,(%rbx) - 663523e3: 66 00 00 data16 add %al,(%rax) +00000000663526a0 <.ctors.65535>: + 663526a0: 80 26 35 andb $0x35,(%rsi) + 663526a3: 66 00 00 data16 add %al,(%rax) ... -00000000663523f0 <__DTOR_LIST__>: - 663523f0: ff (bad) - 663523f1: ff (bad) - 663523f2: ff (bad) - 663523f3: ff (bad) - 663523f4: ff (bad) - 663523f5: ff (bad) - 663523f6: ff (bad) - 663523f7: ff 00 incl (%rax) - 663523f9: 00 00 add %al,(%rax) - 663523fb: 00 00 add %al,(%rax) - 663523fd: 00 00 add %al,(%rax) +00000000663526b0 <__DTOR_LIST__>: + 663526b0: ff (bad) + 663526b1: ff (bad) + 663526b2: ff (bad) + 663526b3: ff (bad) + 663526b4: ff (bad) + 663526b5: ff (bad) + 663526b6: ff (bad) + 663526b7: ff 00 incl (%rax) + 663526b9: 00 00 add %al,(%rax) + 663526bb: 00 00 add %al,(%rax) + 663526bd: 00 00 add %al,(%rax) ... diff --git a/sim/gencfuncs.lua b/sim/gencfuncs.lua index 1393b36..4ee0b5e 100644 --- a/sim/gencfuncs.lua +++ b/sim/gencfuncs.lua @@ -70,9 +70,10 @@ local function log2(n) return math.log(n)/math.log(2) end local function createEnabler(n) return { name = "Enabler"..n, names = {"Enabler " ..n.." Bit", "Enabler " ..n.." Bit Up", "Enabler " ..n.." Bit Down"}, func = "if(getport("..(n*2+1)..")) { copyword("..n..", 1, "..(n+1).."); } else { clearword("..n..", "..(n+1).."); }" } end local function createBuffer (n) return { name = "Buffer" ..n, names = {"Buffer " ..n.." Bit", "Buffer " ..n.." Bit Up", "Buffer " ..n.." Bit Down"}, func = "if(getport("..(n*2+1)..")) { copyword("..n..", 1, "..(n+1).."); } else { clearword("..n..", "..(n+1).."); }" } end local function createDFF (n) return { name = "DFF" ..n, names = {"D FlipFlop " ..n.." Bit", "D FlipFlop " ..n.." Bit Up", "D FlipFlop " ..n.." Bit Down"}, func = "if(getport("..(n*2+1)..")) { copyword("..n..", 1, "..(n+1).."); }" } end -local function createMux(n) return { name = "Mux"..n, names = {"Mux "..n.." Bit", "Mux "..n.." Bit Vertical"}, func = "if(getport("..(n+math.pow(2,n)+1)..")) { setport("..(n+math.pow(2,n)+2)..", getport(getword("..n..", 1)+"..(n+1)..")); } else { setport("..(n+math.pow(2,n)+2)..", 0); }"} end -local function createDemux(n) return { name = "Demux"..n, names = {"Demux "..n.." Bit", "Demux "..n.." Bit Vertical"}, size = 1, func = "int pa = getdata(0); if(getport("..(n+math.pow(2,n)+1)..")) { int a = getword("..n..", 1) + "..(n+1).."; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } }"} end -local function createRom(x, y, z) local w = log2(x*y); return {name = "Rom"..w.."x"..z, names = {"ROM "..x.."x"..y..(z>1 and ("x"..z) or "")}, size = x*y*z, func="if(getport("..(w+z+1)..")) { int a = getword("..w..", 1); for(int i=0; i<"..z.."; i++) { setport("..(w+1).."+i, getdata(a + i*"..(x*y)..")); } } else { clearword("..z..", "..(w+1).."); }" } end +local function createMux(n) return { name = "Mux"..n, names = {"Mux "..n.." Bit", "Mux "..n.." Bit Vertical"}, func = "if(getport("..(n+math.pow(2,n)+1)..")) { setport("..(n+math.pow(2,n)+2)..", getport(getword("..n..", 1)+"..(n+1)..")); } else { setport("..(n+math.pow(2,n)+2)..", 0); }" } end +local function createDemux(n) return { name = "Demux"..n, names = {"Demux "..n.." Bit", "Demux "..n.." Bit Vertical"}, size = 1, func = "int pa = getdata(0); if(getport("..(n+math.pow(2,n)+1)..")) { int a = getword("..n..", 1) + "..(n+1).."; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } }" } end +local function createRom(x, y, z) local w = log2(x*y); return { name = "Rom"..w.."x"..z, names = {"ROM "..x.."x"..y..(z>1 and ("x"..z) or "")}, size = x*y*z, func="if(getport("..(w+z+1)..")) { int a = getword("..w..", 1); for(int i=0; i<"..z.."; i++) { setport("..(w+1).."+i, getdata(a + i*"..(x*y)..")); } } else { clearword("..z..", "..(w+1).."); }" } end +local function createAdder(n) return { name = "Adder"..n, names = {"Adder "..n.." Bit"}, func = (n>=32 and "unsigned long long" or "int").." v = getword("..n..", 1) + getword("..n..", "..(n+1)..") + getport("..(n*3+1).."); setword("..n..", "..(n*2+1)..", v); setport("..(n*3+1)..", (v>>"..n..") & 1);" } end local romsizes = { -- copied from brick gen -- 1 bit data 4 bit data 8 bit data 16 bit data 32 bit data 48 bit data 64 bit data @@ -92,6 +93,7 @@ local gates = { createDFF (1), createDFF (2), createDFF (3), createDFF (4), createDFF (5), createDFF (6), createDFF (7), createDFF (8), createDFF (9), createDFF (10), createDFF (11), createDFF (12), createDFF (13), createDFF (14), createDFF (15), createDFF (16), createDFF (24), createDFF (32), createDFF (48), createDFF (64), createMux (1), createMux (2), createMux (3), createMux (4), createMux (5), createMux (6), createMux (7), createMux (8), createDemux(1), createDemux(2), createDemux(3), createDemux(4), createDemux(5), createDemux(6), createDemux(7), createDemux(8), + createAdder(1), createAdder(2), createAdder(4), createAdder(8), createAdder(16), createAdder(32), } for i, size in ipairs(romsizes) do table.insert(gates, createRom(size[1], size[2], size[3] or 1)) end